From 35503ac28568b1178b1f0baa9997803e19074f67 Mon Sep 17 00:00:00 2001 From: MrVauxs Date: Mon, 13 Jun 2022 14:30:37 +0200 Subject: [PATCH] v0.5.3 --- .eslintrc.js | 28 +- .github/workflows/main.yml | 84 + README.md | 2 +- css/style.css | 4 +- data/book/book-crb.json | 233 +- data/changelog.json | 7 +- data/class/class-alchemist.json | 4 +- data/class/class-barbarian.json | 4 +- data/class/class-champion.json | 12 +- data/class/class-fighter.json | 2 +- data/class/class-inventor.json | 4 +- data/class/class-investigator.json | 12 +- data/class/class-magus.json | 4 +- data/class/class-monk.json | 2 +- data/class/class-ranger.json | 2 +- data/class/class-rogue.json | 4 +- data/class/class-summoner.json | 26 +- data/class/class-swashbuckler.json | 4 +- data/class/class-wizard.json | 2 +- data/generated/bookref-gmscreen-index.json | 2 +- data/generated/bookref-gmscreen.json | 2 +- data/generated/bookref-quick.json | 2 +- data/items/baseitems.json | 7 +- data/items/items-av3.json | 1 - data/items/items-crb.json | 61 +- data/renderdemo.json | 11 +- data/spells/spells-crb.json | 2 +- data/traits.json | 2 +- data/variantrules.json | 26 +- js/bestiary.js | 2 +- js/companionsfamiliars.js | 2 +- js/optionalfeatures.js | 2 +- js/render.js | 47 +- js/utils.js | 9 +- node/build-sw.mjs | 9 +- node/prepare-data-prod.js | 4 +- node/rm.js | 7 + node/util.js | 12 + package.json | 16 +- scss/pf2.scss | 1 + search/index.json | 2 +- sw.js | 2511 +------------------- test/schema-template/entry.json | 2 +- 43 files changed, 425 insertions(+), 2757 deletions(-) create mode 100644 .github/workflows/main.yml create mode 100644 node/rm.js diff --git a/.eslintrc.js b/.eslintrc.js index b45e17622d..d2ed4e4926 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -3,11 +3,11 @@ module.exports = { "env": { "browser": true, "es6": true, - "jquery": true + "jquery": true, }, "parserOptions": { "ecmaVersion": 2020, - "sourceType": "module" + "sourceType": "module", }, "rules": { "accessor-pairs": "off", @@ -19,7 +19,7 @@ module.exports = { "objects": "always-multiline", "imports": "always-multiline", "exports": "always-multiline", - "functions": "always-multiline" + "functions": "always-multiline", }], "comma-spacing": ["error", {"before": false, "after": true}], "comma-style": ["error", "last"], @@ -34,8 +34,8 @@ module.exports = { "error", "tab", { - "SwitchCase": 1 - } + "SwitchCase": 1, + }, ], "key-spacing": ["error", {"beforeColon": false, "afterColon": true}], "keyword-spacing": ["error", {"before": true, "after": true}], @@ -78,9 +78,9 @@ module.exports = { "groups": [ ["==", "!=", "===", "!==", ">", ">=", "<", "<="], ["&&", "||"], - ["in", "instanceof"] + ["in", "instanceof"], ], - "allowSamePrecedence": true + "allowSamePrecedence": true, }], "no-mixed-spaces-and-tabs": "error", "no-multi-spaces": "error", @@ -121,7 +121,7 @@ module.exports = { "no-unused-expressions": ["error", { "allowShortCircuit": true, "allowTernary": true, - "allowTaggedTemplates": true + "allowTaggedTemplates": true, }], "no-unused-vars": "off", "no-use-before-define": ["error", {"functions": false, "classes": false, "variables": false}], @@ -144,8 +144,8 @@ module.exports = { "*": "before", "/": "before", "||": "before", - "&&": "before" - } + "&&": "before", + }, }], "padded-blocks": ["error", {"blocks": "never", "switches": "never", "classes": "never"}], "prefer-promise-reject-errors": "error", @@ -161,8 +161,8 @@ module.exports = { "block": { "balanced": true, "markers": ["*package", "!", ",", ":", "::", "flow-include"], - "exceptions": ["*"] - } + "exceptions": ["*"], + }, }], "symbol-description": "error", "template-curly-spacing": ["error", "never"], @@ -178,6 +178,6 @@ module.exports = { "no-console": "error", "prefer-template": "error", "quotes": ["error", "double", {"allowTemplateLiterals": true}], - "no-var": "error" - } + "no-var": "error", + }, }; diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000000..39374545a8 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,84 @@ +name: Build and Deploy + +on: + push: + tags: + - 'v**' + +env: + # See: https://docs.github.com/en/packages/managing-github-packages-using-github-actions-workflows/publishing-and-installing-a-package-with-github-actions#upgrading-a-workflow-that-accesses-ghcrio + IMAGE_NAME: pf2etools + +jobs: + build-and-deploy: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@master + + # See: https://stackoverflow.com/a/58178121 + - name: Set Env + run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV + + - name: Archive Release + run: | + zip -r pf2ools-${{ env.RELEASE_VERSION }}.zip . -x '*.git*' '*node_modules*' '*.github*' '*img*' '*.editorconfig*' '*CNAME*' + - name: Set Deployed Flag + run: | + bash ./.github/set-deployed-flag.sh ${{ env.RELEASE_VERSION }} + # Remove entries from the `.gitignore` so the gh-pages action can correctly add+commit them to the pages branch + - name: Build Service Worker + run: | + node --version + npm --version + npm i + npm run build:sw:prod + sed -i 's/sw.js//g' .gitignore + sed -i 's/sw-injector.js//g' .gitignore + - name: Build SEO Pages + env: + VET_BASE_SITE_URL: https://pf2etools.com/ + VET_SEO_IS_SKIP_UA_ETC: true + run: | + npm run build:seo -- ${{ env.RELEASE_VERSION }} + # See: https://github.com/JamesIves/github-pages-deploy-action + - name: Deploy + uses: JamesIves/github-pages-deploy-action@releases/v4 + with: + branch: prod + folder: . + + - name: Archive Images + run: | + zip -r -s 500m img-${{ env.RELEASE_VERSION }}.zip img/ + - name: Upload Release + # Add the files one-by-one in an effort to avoid timeouts + run: | + hub release create -a pf2ools-${{ env.RELEASE_VERSION }}.zip -m ${{ env.RELEASE_VERSION }} ${{ env.RELEASE_VERSION }} + for f in $(find . -name 'img-${{ env.RELEASE_VERSION }}.*' -print); do hub release edit ${{ env.RELEASE_VERSION }} -m '' -a $f; done + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + + # region See: https://docs.github.com/en/packages/managing-github-packages-using-github-actions-workflows/publishing-and-installing-a-package-with-github-actions#upgrading-a-workflow-that-accesses-ghcrio + - name: Build Image + run: | + docker build -t $IMAGE_NAME . + - name: Log In to Registry + run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin + + - name: Push Image + run: | + IMAGE_ID=ghcr.io/${{ github.repository_owner }}/$IMAGE_NAME + # Change all uppercase to lowercase + IMAGE_ID=$(echo $IMAGE_ID | tr '[A-Z]' '[a-z]') + # Strip git ref prefix from version + VERSION=$(echo "${{ github.ref }}" | sed -e 's,.*/\(.*\),\1,') + # Strip "v" prefix from tag name + [[ "${{ github.ref }}" == "refs/tags/"* ]] && VERSION=$(echo $VERSION | sed -e 's/^v//') + echo IMAGE_ID=$IMAGE_ID + echo VERSION=$VERSION + docker tag $IMAGE_NAME $IMAGE_ID:$VERSION + # Always tag latest when pushing a tag, as we don't expect to ever merge old tags + [[ "${{ github.ref }}" == "refs/tags/"* ]] && docker tag $IMAGE_NAME $IMAGE_ID:latest + docker push $IMAGE_ID:$VERSION + docker push $IMAGE_ID:latest + # endregion \ No newline at end of file diff --git a/README.md b/README.md index 3730845810..8c3ce29ba4 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ ## Pf2e.Tools -[![Automated Build](https://github.com/Pf2eToolsOrg/Pf2eTools/actions/workflows/build.yml/badge.svg?branch=master)](https://github.com/Pf2eToolsOrg/Pf2eTools/actions/workflows/build.yml) +[![Automated Build](https://github.com/Pf2eToolsOrg/Pf2eTools/actions/workflows/main.yml/badge.svg?branch=master)](https://github.com/Pf2eToolsOrg/Pf2eTools/actions/workflows/main.yml) Visit the main site (not yet) or go to the unofficial GitHub [mirror](https://pf2etools.com). diff --git a/css/style.css b/css/style.css index cf709ea893..e0e99124b3 100644 --- a/css/style.css +++ b/css/style.css @@ -1,2 +1,2 @@ -@font-face{font-family:'Convergence';font-style:normal;font-weight:400;src:local("Convergence-Regular"),url("../fonts/Convergence-Regular.ttf") format("truetype")}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;src:local("Roboto"),url("../fonts/Roboto-regular.ttf") format("truetype")}@font-face{font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;src:local("glyphicons-halflings-regular"),url("../fonts/glyphicons-halflings-regular.ttf") format("truetype")}@font-face{font-family:'Blambot Casual';src:local("Blambot-Casual"),url("../fonts/Blambot-Casual-Regular.ttf") format("truetype")}@-webkit-keyframes kf-fade-out{from{opacity:1}to{opacity:0}}@keyframes kf-fade-out{from{opacity:1}to{opacity:0}}.linked-titles .rd__h--0 .entry-title-inner:hover::before{font-size:50%}.linked-titles .rd__h--1 .entry-title-inner:hover::before{font-size:55%}.linked-titles .rd__h--2 .entry-title-inner:hover::before{font-size:60%}.linked-titles .rd__h .entry-title-inner{cursor:copy}.linked-titles .rd__h .entry-title-inner:hover::before{content:' 🔗';color:rgba(0,0,0,0.2);position:relative;float:left;width:14px;height:14px;right:20px;margin-right:-30px;font-size:85%}@font-face{font-family:'Convergence';font-style:normal;font-weight:400;src:local("Convergence-Regular"),url("../fonts/Convergence-Regular.ttf") format("truetype")}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;src:local("Roboto"),url("../fonts/Roboto-regular.ttf") format("truetype")}@font-face{font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;src:local("glyphicons-halflings-regular"),url("../fonts/glyphicons-halflings-regular.ttf") format("truetype")}@font-face{font-family:'Blambot Casual';src:local("Blambot-Casual"),url("../fonts/Blambot-Casual-Regular.ttf") format("truetype")}@keyframes kf-fade-out{from{opacity:1}to{opacity:0}}.linked-titles .rd__h--0 .entry-title-inner:hover::before{font-size:50%}.linked-titles .rd__h--1 .entry-title-inner:hover::before{font-size:55%}.linked-titles .rd__h--2 .entry-title-inner:hover::before{font-size:60%}.linked-titles .rd__h .entry-title-inner{cursor:copy}.linked-titles .rd__h .entry-title-inner:hover::before{content:' 🔗';color:rgba(0,0,0,0.2);position:relative;float:left;width:14px;height:14px;right:20px;margin-right:-30px;font-size:85%}input[type='checkbox']:checked{-webkit-filter:grayscale(100%)}input[type='radio']:checked{-webkit-filter:grayscale(100%)}.glyphicon-send{top:2px;right:1px}.roller{color:#337ab7;cursor:pointer}.text-muted a{color:#7096b7}.font-ui{font-family:Arial, sans-serif}.code{font-family:'Courier New', monospace}.code--narrow{font-family:monospace}.ve-muted{color:#777 !important}.ve-small{font-size:85% !important}.clickable{cursor:pointer !important}.clickable--link{color:#337ab7 !important}.not-clickable{cursor:default !important}.copyable{cursor:copy !important}.no-select{-webkit-user-select:none !important;-moz-user-select:none !important;-ms-user-select:none !important;user-select:none !important}.bold{font-weight:bold !important}.italic{font-style:italic !important}i>i{font-style:initial}.underline{text-decoration:underline}.line-through{text-decoration:line-through}.plain{font-weight:initial !important;font-style:initial !important}.no-wrap{white-space:nowrap !important}.no-events{pointer-events:none !important}.smooth-scroll{transform:translateZ(0) !important}.no-breaks{-moz-column-break-before:auto;break-before:auto;-moz-column-break-after:auto;break-after:auto;-moz-column-break-inside:avoid;break-inside:avoid}.overflow-y-auto{overflow-y:auto}.overflow-y-scroll{overflow-y:scroll}.overflow-y-hidden{overflow-y:hidden}.overflow-x-scroll{overflow-x:scroll}.overflow-x-hidden{overflow-x:hidden}.overflow-ellipsis{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.resize-vertical{resize:vertical}.resize-none{resize:none}.whitespace-normal{white-space:normal}.whitespace-pre{white-space:pre}.help,.help--hover{cursor:help;text-decoration:underline;-webkit-text-decoration-style:dotted;text-decoration-style:dotted}.help:hover,.help:active,.help:focus{text-decoration:underline;-webkit-text-decoration-style:dotted;text-decoration-style:dotted}.help--subtle{cursor:help}.small-caps{font-variant:small-caps}.capitalise{text-transform:capitalize}@media (max-width: 780px){.help--hover{cursor:default;text-decoration:none}}.w-100{width:100% !important}.w-90{width:90% !important}.w-80{width:80% !important}.w-75{width:75% !important}.w-70{width:70% !important}.w-66{width:66.6666666% !important}.w-60{width:60% !important}.w-50{width:50% !important}.w-50--mr-2{width:calc(50% - .5rem) !important}.w-40{width:40% !important}.w-33{width:33.3333333% !important}.mw-33{max-width:33.3333333% !important}.w-30{width:30% !important}.w-25{width:25% !important}.mw-25{max-width:25% !important}.w-20{width:20% !important}.w-15{width:15% !important}.w-initial{width:initial !important}.h-100{height:100% !important}.min-h-0{min-height:0}.min-h-100{min-height:100% !important}.max-w-80{min-width:80% !important}.max-w-100{max-width:100% !important}.grid{display:grid !important}.flex{display:flex !important}.relative{position:relative}.absolute{position:absolute}.flex-col{display:flex !important;flex-direction:column !important}.flex-inline-col{display:inline-flex !important;flex-direction:column !important}.inline-flex{display:inline-flex}.block{display:block !important}.inline-block{display:inline-block}.flex-1{flex:1}.flex-2{flex:2}.flex-3{flex:3}.flex-fill{flex-basis:100%}.no-shrink{flex-shrink:0}.ve-grow{flex-grow:1}.flex-wrap{flex-wrap:wrap}.split{display:flex;justify-content:space-between}.split-v-center{display:flex;justify-content:space-between;align-items:center}.inline-split-v-center{display:inline-flex !important;justify-content:space-between;align-items:center}.split-v-end{display:flex !important;justify-content:space-between;align-items:flex-end}.split-child{width:50%;flex-shrink:0;flex-grow:0}.split-column{display:flex;justify-content:space-between;flex-direction:column}.split-column--inline{display:inline-flex}.flex-v-center{display:flex !important;align-items:center !important}.flex-h-center{display:flex;justify-content:center}.flex-v-top{display:flex;align-items:flex-start}.flex-v-bottom{display:flex;align-items:flex-end}.flex-v-baseline{display:flex;align-items:baseline}.flex-vh-center{display:flex;align-items:center;justify-content:center}.flex-vh-center-around{display:flex;align-items:center;justify-content:space-around}.flex-inline-v-center{display:inline-flex;align-items:center;justify-content:center}.flex-h-right{display:flex;justify-content:flex-end}.self-flex-end{align-self:flex-end}.columns-2{-moz-column-count:2;column-count:2;-moz-column-break-inside:avoid;break-inside:avoid-column}.columns-2>*{-moz-column-break-inside:avoid;break-inside:avoid-column}@media (max-width: 768px){.columns-2{-moz-column-count:1;column-count:1}}.columns-3{-moz-column-count:3;column-count:3;-moz-column-break-inside:avoid;break-inside:avoid-column}.columns-3>*{-moz-column-break-inside:avoid;break-inside:avoid-column}@media (max-width: 768px){.columns-3{-moz-column-count:2;column-count:2}}@media (max-width: 480px){.columns-3{-moz-column-count:1;column-count:1}}.columns-4{-moz-column-count:4;column-count:4;-moz-column-break-inside:avoid;break-inside:avoid-column}.columns-4>*{-moz-column-break-inside:avoid;break-inside:avoid-column}@media (max-width: 768px){.columns-4{-moz-column-count:3;column-count:3}}@media (max-width: 480px){.columns-4{-moz-column-count:2;column-count:2}}.columns-5{-moz-column-count:5;column-count:5;-moz-column-break-inside:avoid;break-inside:avoid-column}.columns-5>*{-moz-column-break-inside:avoid;break-inside:avoid-column}@media (max-width: 768px){.columns-5{-moz-column-count:3;column-count:3}}@media (max-width: 480px){.columns-5{-moz-column-count:2;column-count:2}}.columns-6{-moz-column-count:6;column-count:6;-moz-column-break-inside:avoid;break-inside:avoid-column}.columns-6>*{-moz-column-break-inside:avoid;break-inside:avoid-column}@media (max-width: 768px){.columns-6{-moz-column-count:3;column-count:3}}@media (max-width: 480px){.columns-6{-moz-column-count:2;column-count:2}}.float-clear{clear:both}body{min-height:100%;position:relative}body.is-fullscreen .page__header{display:none}body.is-fullscreen .page__nav{display:none}input{min-width:0}label{font-weight:initial}input[type=checkbox],input[type=radio]{margin:0}main{padding:10px 15px}footer{padding:20px 15px;font-size:90%}pre,textarea{-moz-tab-size:2;-o-tab-size:2;tab-size:2}hr{flex-shrink:0}.hr--dotted{border-style:dashed}*{scrollbar-width:thin}::-webkit-scrollbar{width:9px;height:9px}::-webkit-scrollbar-track{background:transparent}::-webkit-scrollbar-thumb{background:#cbcbcb}body{scrollbar-width:auto}body::-webkit-scrollbar{width:15px}.container{position:relative}.tooltip{pointer-events:none}.tooltip-inner{white-space:nowrap}.input-xs{height:22px;padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.form-control--minimal{border-radius:0;padding:0 2px}.flex-label{display:inline-flex;align-items:center}.flex-label>input[type=checkbox],.flex-label>input[type=radio]{margin:0 0 0 5px}.btn-xxs{padding:0 2px;font-size:12px;line-height:1.5;border-radius:3px}.btn-primary--half{background:repeating-linear-gradient(135deg, #337ab7, #337ab7 16px, #b8b8b8 16px, #b8b8b8 32px)}.fade{transition:opacity 51ms linear}.dropdown-menu--side{top:-10px;left:100%;max-height:calc(100vh - 130px);overflow-y:auto}.nav>li>a{padding:5px 14px 6px}@media (min-width: 992px){.nav>li>a{border-top-left-radius:0;border-top-right-radius:0}}@media (max-width: 991px){.nav>li{margin-top:2px;margin-bottom:2px}}.page__nav-inner>li.active>a,.page__nav-inner>li.active>a:focus,.page__nav-inner>li.active>a:hover{background-color:#002664;border-top:0}@media (min-width: 992px){.page__nav-inner>li.active>a,.page__nav-inner>li.active>a:focus,.page__nav-inner>li.active>a:hover{border-left:1px solid transparent;border-right:1px solid transparent;border-bottom:1px solid #999}}.nav>li>a:focus,.nav>li>a:hover{background-color:rgba(0,0,0,0.1)}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:rgba(0,0,0,0.1)}.row{margin-right:0;margin-left:0}.col-12,.col-11,.col-11-9,.col-11-8,.col-11-7,.col-11-6,.col-11-5,.col-11-4,.col-11-3,.col-11-2,.col-11-1,.col-10,.col-10-9,.col-10-8,.col-10-7,.col-10-6,.col-10-5,.col-10-4,.col-10-3,.col-10-2,.col-10-1,.col-9,.col-9-9,.col-9-8,.col-9-7,.col-9-6,.col-9-5,.col-9-4,.col-9-3,.col-9-2,.col-9-1,.col-8,.col-8-9,.col-8-8,.col-8-7,.col-8-6,.col-8-5,.col-8-4,.col-8-3,.col-8-2,.col-8-1,.col-7,.col-7-9,.col-7-8,.col-7-7,.col-7-6,.col-7-5,.col-7-4,.col-7-3,.col-7-2,.col-7-1,.col-6,.col-6-9,.col-6-8,.col-6-7,.col-6-6,.col-6-5,.col-6-4,.col-6-3,.col-6-2,.col-6-1,.col-5,.col-5-9,.col-5-8,.col-5-7,.col-5-6,.col-5-5,.col-5-4,.col-5-3,.col-5-2,.col-5-1,.col-4,.col-4-9,.col-4-8,.col-4-7,.col-4-6,.col-4-5,.col-4-4,.col-4-3,.col-4-2,.col-4-1,.col-3,.col-3-9,.col-3-8,.col-3-7,.col-3-6,.col-3-5,.col-3-4,.col-3-3,.col-3-2,.col-3-1,.col-2,.col-2-9,.col-2-8,.col-2-7,.col-2-6,.col-2-5,.col-2-4,.col-2-3,.col-2-2,.col-2-1,.col-1,.col-1-9,.col-1-8,.col-1-7,.col-1-6,.col-1-5,.col-1-4,.col-1-3,.col-1-2,.col-1-1,.col-0-9,.col-0-8,.col-0-7,.col-0-6,.col-0-5,.col-0-4,.col-0-3,.col-0-2,.col-0-1,.col-ml-9,.col-ml-3{position:relative;min-height:1px;padding-right:7px;padding-left:7px;float:left}.col-12{width:100% !important}.col-11{width:91.66666666666667% !important}.col-11-9{width:99.16666666666667% !important}.col-11-8{width:98.33333333333333% !important}.col-11-7{width:97.5% !important}.col-11-6{width:96.66666666666667% !important}.col-11-5{width:95.83333333333333% !important}.col-11-4{width:95% !important}.col-11-3{width:94.16666666666667% !important}.col-11-2{width:93.33333333333333% !important}.col-11-1{width:92.5% !important}.col-10{width:83.33333333333333% !important}.col-10-9{width:90.83333333333333% !important}.col-10-8{width:90% !important}.col-10-7{width:89.16666666666667% !important}.col-10-6{width:88.33333333333333% !important}.col-10-5{width:87.5% !important}.col-10-4{width:86.66666666666667% !important}.col-10-3{width:85.83333333333333% !important}.col-10-2{width:85% !important}.col-10-1{width:84.16666666666667% !important}.col-9{width:75% !important}.col-9-9{width:82.5% !important}.col-9-8{width:81.66666666666667% !important}.col-9-7{width:80.83333333333333% !important}.col-9-6{width:80% !important}.col-9-5{width:79.16666666666667% !important}.col-9-4{width:78.33333333333333% !important}.col-9-3{width:77.5% !important}.col-9-2{width:76.66666666666667% !important}.col-9-1{width:75.83333333333333% !important}.col-8{width:66.666666666666667% !important}.col-8-9{width:74.16666666666667% !important}.col-8-8{width:73.33333333333333% !important}.col-8-7{width:72.5% !important}.col-8-6{width:71.66666666666667% !important}.col-8-5{width:70.83333333333333% !important}.col-8-4{width:70% !important}.col-8-3{width:69.16666666666667% !important}.col-8-2{width:68.33333333333333% !important}.col-8-1{width:67.5% !important}.col-7{width:58.33333333333333% !important}.col-7-9{width:65.83333333333333% !important}.col-7-8{width:65% !important}.col-7-7{width:64.16666666666667% !important}.col-7-6{width:63.33333333333333% !important}.col-7-5{width:62.5% !important}.col-7-4{width:61.66666666666667% !important}.col-7-3{width:60.83333333333333% !important}.col-7-2{width:60% !important}.col-7-1{width:59.16666666666667% !important}.col-6{width:50% !important}.col-6-9{width:57.5% !important}.col-6-8{width:56.66666666666667% !important}.col-6-7{width:55.83333333333333% !important}.col-6-6{width:55% !important}.col-6-5{width:54.16666666666667% !important}.col-6-4{width:53.33333333333333% !important}.col-6-3{width:52.5% !important}.col-6-2{width:51.66666666666667% !important}.col-6-1{width:50.83333333333333% !important}.col-5{width:41.66666666666667% !important}.col-5-9{width:49.16666666666667% !important}.col-5-8{width:48.33333333333333% !important}.col-5-7{width:47.5% !important}.col-5-6{width:46.66666666666667% !important}.col-5-5{width:45.83333333333333% !important}.col-5-4{width:45% !important}.col-5-3{width:44.16666666666667% !important}.col-5-2{width:43.33333333333333% !important}.col-5-1{width:42.5% !important}.col-4{width:33.33333333333333% !important}.col-4-9{width:40.83333333333333% !important}.col-4-8{width:40% !important}.col-4-7{width:39.16666666666667% !important}.col-4-6{width:38.33333333333333% !important}.col-4-5{width:37.5% !important}.col-4-4{width:36.66666666666667% !important}.col-4-3{width:35.83333333333333% !important}.col-4-2{width:35% !important}.col-4-1{width:34.16666666666667% !important}.col-3{width:25% !important}.col-3-9{width:32.5% !important}.col-3-8{width:31.66666666666667% !important}.col-3-7{width:30.83333333333333% !important}.col-3-6{width:30% !important}.col-3-5{width:29.16666666666667% !important}.col-3-4{width:28.33333333333333% !important}.col-3-3{width:27.5% !important}.col-3-2{width:26.66666666666667% !important}.col-3-1{width:25.83333333333333% !important}.col-2{width:16.66666666666667% !important}.col-2-9{width:24.16666666666667% !important}.col-2-8{width:23.33333333333333% !important}.col-2-7{width:22.5% !important}.col-2-6{width:21.66666666666667% !important}.col-2-5{width:20.83333333333333% !important}.col-2-4{width:20% !important}.col-2-3{width:19.16666666666667% !important}.col-2-2{width:18.33333333333333% !important}.col-2-1{width:17.5% !important}.col-1{width:8.33333333333333% !important}.col-1-9{width:15.83333333333333% !important}.col-1-8{width:15% !important}.col-1-7{width:14.16666666666667% !important}.col-1-6{width:13.33333333333333% !important}.col-1-5{width:12.5% !important}.col-1-4{width:11.66666666666667% !important}.col-1-3{width:10.83333333333333% !important}.col-1-2{width:10% !important}.col-1-1{width:9.16666666666667% !important}.col-0-9{width:7.5% !important}.col-0-8{width:6.66666666666667% !important}.col-0-7{width:5.83333333333333% !important}.col-0-6{width:5% !important}.col-0-5{width:4.16666666666667% !important}.col-0-4{width:3.33333333333333% !important}.col-0-3{width:2.5% !important}.col-0-2{width:1.66666666666667% !important}.col-0-1{width:0.83333333333333% !important}@media (min-width: 887px){.col-ml-9{width:75%}.col-ml-3{width:25%}}.b-0{border:0 !important}.b-1{border-width:.25rem !important}.b-2{border-width:.5rem !important}.b-3{border-width:1rem !important}.b-4{border-width:1.5rem !important}.b-5{border-width:3rem !important}.bt-0{border-top-width:0 !important}.bt-1{border-top-width:.25rem !important}.bt-2{border-top-width:.5rem !important}.bt-3{border-top-width:1rem !important}.bt-4{border-top-width:1.5rem !important}.bt-5{border-top-width:3rem !important}.br-0{border-right-width:0 !important}.br-1{border-right-width:.25rem !important}.br-2{border-right-width:.5rem !important}.br-3{border-right-width:1rem !important}.br-4{border-right-width:1.5rem !important}.br-5{border-right-width:3rem !important}.bb-0{border-bottom-width:0 !important}.bb-1{border-bottom-width:.25rem !important}.bb-2{border-bottom-width:.5rem !important}.bb-3{border-bottom-width:1rem !important}.bb-4{border-bottom-width:1.5rem !important}.bb-5{border-bottom-width:3rem !important}.bl-0{border-left-width:0 !important}.bl-1{border-left-width:.25rem !important}.bl-2{border-left-width:.5rem !important}.bl-3{border-left-width:1rem !important}.bl-4{border-left-width:1.5rem !important}.bl-5{border-left-width:3rem !important}.by-0{border-top-width:0 !important;border-bottom-width:0 !important}.by-1{border-top-width:.25rem !important;border-bottom-width:.25rem !important}.by-2{border-top-width:.5rem !important;border-bottom-width:.5rem !important}.by-3{border-top-width:1rem !important;border-bottom-width:1rem !important}.by-4{border-top-width:1.5rem !important;border-bottom-width:1.5rem !important}.by-5{border-top-width:3rem !important;border-bottom-width:3rem !important}.bx-0{border-right-width:0 !important;border-left-width:0 !important}.bx-1{border-right-width:.25rem !important;border-left-width:.25rem !important}.bx-2{border-right-width:.5rem !important;border-left-width:.5rem !important}.bx-3{border-right-width:1rem !important;border-left-width:1rem !important}.bx-4{border-right-width:1.5rem !important;border-left-width:1.5rem !important}.bx-5{border-right-width:3rem !important;border-left-width:3rem !important}.hr-0{margin-top:0 !important;margin-bottom:0 !important;width:100%}.hr-1{margin-top:.25rem !important;margin-bottom:.25rem !important;width:100%}.hr-2{margin-top:.5rem !important;margin-bottom:.5rem !important;width:100%}.hr-3{margin-top:1rem;margin-bottom:1rem;width:100%}.hr-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important;width:100%}.hr-5{margin-top:3rem !important;margin-bottom:3rem !important;width:100%}.m-auto{margin:auto !important}.m-0{margin:0 !important}.m-1{margin:.25rem !important}.m-2{margin:.5rem !important}.m-3{margin:1rem !important}.m-4{margin:1.5rem !important}.m-5{margin:3rem !important}.mt-auto{margin-top:auto !important}.mt-0{margin-top:0 !important}.mt-1{margin-top:.25rem !important}.mt-2{margin-top:.5rem !important}.mt-3{margin-top:1rem !important}.mt-4{margin-top:1.5rem !important}.mt-5{margin-top:3rem !important}.mr-auto{margin-right:auto !important}.mr-0{margin-right:0 !important}.mr-1{margin-right:.25rem !important}.mr-2{margin-right:.5rem !important}.mr-3{margin-right:1rem !important}.mr-4{margin-right:1.5rem !important}.mr-5{margin-right:3rem !important}.mb-auto{margin-bottom:auto !important}.mb-0{margin-bottom:0 !important}.mb-1{margin-bottom:.25rem !important}.mb-2{margin-bottom:.5rem !important}.mb-3{margin-bottom:1rem !important}.mb-4{margin-bottom:1.5rem !important}.mb-5{margin-bottom:3rem !important}.ml-auto{margin-left:auto !important}.ml-0{margin-left:0 !important}.ml-1{margin-left:.25rem !important}.ml-2{margin-left:.5rem !important}.ml-3{margin-left:1rem !important}.ml-4{margin-left:1.5rem !important}.ml-5{margin-left:3rem !important}.my-auto{margin-top:auto !important;margin-bottom:auto !important}.my-0{margin-top:0 !important;margin-bottom:0 !important}.my-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-5{margin-top:3rem !important;margin-bottom:3rem !important}.mx-auto{margin-right:auto !important;margin-left:auto !important}.mx-0{margin-right:0 !important;margin-left:0 !important}.mx-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-3{margin-right:1rem !important;margin-left:1rem !important}.mx-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-5{margin-right:3rem !important;margin-left:3rem !important}.p-0{padding:0 !important}.p-1{padding:.25rem !important}.p-2{padding:.5rem !important}.p-3{padding:1rem !important}.p-4{padding:1.5rem !important}.p-5{padding:3rem !important}.pt-0{padding-top:0 !important}.pt-1{padding-top:.25rem !important}.pt-2{padding-top:.5rem !important}.pt-3{padding-top:1rem !important}.pt-4{padding-top:1.5rem !important}.pt-5{padding-top:3rem !important}.pr-0{padding-right:0 !important}.pr-1{padding-right:.25rem !important}.pr-2{padding-right:.5rem !important}.pr-3{padding-right:1rem !important}.pr-4{padding-right:1.5rem !important}.pr-5{padding-right:3rem !important}.pb-0{padding-bottom:0 !important}.pb-1{padding-bottom:.25rem !important}.pb-2{padding-bottom:.5rem !important}.pb-3{padding-bottom:1rem !important}.pb-4{padding-bottom:1.5rem !important}.pb-5{padding-bottom:3rem !important}.pl-0{padding-left:0 !important}.pl-1{padding-left:.25rem !important}.pl-2{padding-left:.5rem !important}.pl-3{padding-left:1rem !important}.pl-4{padding-left:1.5rem !important}.pl-5{padding-left:3rem !important}.py-0{padding-top:0 !important;padding-bottom:0 !important}.py-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-5{padding-top:3rem !important;padding-bottom:3rem !important}.px-0{padding-right:0 !important;padding-left:0 !important}.px-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-3{padding-right:1rem !important;padding-left:1rem !important}.px-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-5{padding-right:3rem !important;padding-left:3rem !important}.py-1px{padding-top:1px !important;padding-bottom:1px !important}.dropdown-menu>li>a.dropdown-ext-link{display:flex;justify-content:space-between}.dropdown-menu>li>a.dropdown-ext-link:hover{padding-right:10px}.dropdown-menu>li>span{cursor:pointer;display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>span:focus,.dropdown-menu>li>span:hover{color:#262626;text-decoration:none;background-color:whitesmoke}.dropdown-menu>.disabled>span{pointer-events:none;color:#777}.dropdown-menu>.disabled>span:focus,.dropdown-menu>.disabled>span:hover{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none}.dropdown-menu>.ctx-danger>span{background:#d9534f;color:white}.dropdown-menu>.ctx-danger>span:focus,.dropdown-menu>.ctx-danger>span:hover{color:white;text-decoration:none;background-color:#ac2925}.dropdown-ext-link>.glyphicon{top:3px;display:none}.dropdown-ext-link:hover>.glyphicon{display:inline-block}nav .dropdown-menu>.active>a{background-color:#002664}.caret--right{transform:rotate(270deg)}.caret--reverse{transform:rotate(180deg)}.dnd-font{font-family:'Andada', serif;font-variant:small-caps;font-weight:500}.stripe-even:nth-child(even){background:rgba(136,136,136,0.0941176)}.stripe-even--faint:nth-child(even){background:rgba(187,187,187,0.0941176)}.stripe-odd:nth-child(odd){background:rgba(136,136,136,0.0941176)}.stripe-odd--faint:nth-child(odd){background:rgba(187,187,187,0.0941176)}.border-dotted{border-style:dotted !important}.input-group>input.form-control,.input-group>label,.input-group>button,.input-group>a.btn{border-radius:0;border-right:0}.input-group>input.form-control:first-child,.input-group>label:first-child,.input-group>button:first-child,.input-group>a.btn:first-child{border-top-left-radius:3px;border-bottom-left-radius:3px}.input-group>input.form-control:last-child,.input-group>label:last-child,.input-group>button:last-child,.input-group>a.btn:last-child{border-top-right-radius:3px;border-bottom-right-radius:3px;border-right:1px solid #ccc}.input-group--top input.form-control:first-child,.input-group--top label:first-child,.input-group--top button:first-child,.input-group--top a.btn:first-child{border-bottom-left-radius:0}.input-group--top input.form-control:last-child,.input-group--top label:last-child,.input-group--top button:last-child,.input-group--top a.btn:last-child{border-bottom-right-radius:0}.input-group--middle input.form-control,.input-group--middle label,.input-group--middle button,.input-group--middle a.btn{border-top:0}.input-group--middle input.form-control:first-child,.input-group--middle label:first-child,.input-group--middle button:first-child,.input-group--middle a.btn:first-child{border-radius:0}.input-group--middle input.form-control:last-child,.input-group--middle label:last-child,.input-group--middle button:last-child,.input-group--middle a.btn:last-child{border-radius:0}.input-group--bottom input.form-control,.input-group--bottom label,.input-group--bottom button,.input-group--bottom a.btn{border-top:0}.input-group--bottom input.form-control:first-child,.input-group--bottom label:first-child,.input-group--bottom button:first-child,.input-group--bottom a.btn:first-child{border-top-left-radius:0}.input-group--bottom input.form-control:last-child,.input-group--bottom label:last-child,.input-group--bottom button:last-child,.input-group--bottom a.btn:last-child{border-top-right-radius:0}.night-mode .input-group>input.form-control:last-child,.night-mode .input-group>label:last-child,.night-mode .input-group>button:last-child,.night-mode .input-group>a.btn:last-child{border-right-color:#555}.hidden,.ve-hidden{display:none !important}@media only screen and (min-width: 769px){.mobile__visible{display:none !important}}@media only screen and (max-width: 768px){.mobile__hidden{display:none !important}.mobile__text-center{text-align:center !important}.mobile__flex-col{display:flex !important;flex-direction:column !important}.mobile__flex-col-reverse{display:flex !important;flex-direction:column-reverse !important}.mobile__flex-ai-start{align-items:flex-start !important}.mobile__w-100{width:100% !important}.mobile__max-w-100{max-width:100% !important}.mobile__m-1{margin:.25rem !important}.mobile__mb-2{margin-bottom:.5rem !important}}.last-mr-0:last-child{margin-right:0 !important}.bootstrap-select .dropdown-menu .notify{background-color:#d9534f;color:white;border-color:#d43f3a}.night-mode .bootstrap-select .dropdown-menu .notify{background-color:#7e3a38;color:#bbb;border-color:#d43f3a}.bootstrap-select .dropdown-menu .notify{background-color:#d9534f;color:white;border-color:#d43f3a}.night-mode .bootstrap-select .dropdown-menu .notify{background-color:#7e3a38;color:#bbb;border-color:#d43f3a}@font-face{font-family:'Convergence';font-style:normal;font-weight:400;src:local("Convergence-Regular"),url("../fonts/Convergence-Regular.ttf") format("truetype")}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;src:local("Roboto"),url("../fonts/Roboto-regular.ttf") format("truetype")}@font-face{font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;src:local("glyphicons-halflings-regular"),url("../fonts/glyphicons-halflings-regular.ttf") format("truetype")}@font-face{font-family:'Blambot Casual';src:local("Blambot-Casual"),url("../fonts/Blambot-Casual-Regular.ttf") format("truetype")}@keyframes kf-fade-out{from{opacity:1}to{opacity:0}}.linked-titles .rd__h--0 .entry-title-inner:hover::before{font-size:50%}.linked-titles .rd__h--1 .entry-title-inner:hover::before{font-size:55%}.linked-titles .rd__h--2 .entry-title-inner:hover::before{font-size:60%}.linked-titles .rd__h .entry-title-inner{cursor:copy}.linked-titles .rd__h .entry-title-inner:hover::before{content:' 🔗';color:rgba(0,0,0,0.2);position:relative;float:left;width:14px;height:14px;right:20px;margin-right:-30px;font-size:85%}@-webkit-keyframes rd__spin{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}@keyframes rd__spin{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}.rd__b p{margin-bottom:5px}.rd__b--0,.rd__b--1,.rd__b--2,.rd__b--3,.rd__b--4{margin-bottom:5px}.rd__b--0:last-child,.rd__b--1:last-child,.rd__b--2:last-child,.rd__b--3:last-child,.rd__b--4:last-child{margin-bottom:0}.rd__b--0>*:last-child,.rd__b--1>*:last-child,.rd__b--2>*:last-child,.rd__b--3>*:last-child,.rd__b--4>*:last-child{margin-bottom:0}.rd__hr{border-color:#aaa6;margin:17px 0 5px}.rd__hr--section{margin:30px 0 5px}.rd__list{margin-top:5px;margin-bottom:10px;padding-left:24px;text-indent:0}.rd__list+.rd__list{margin-top:-5px}.rd__list>.rd__list{margin-bottom:0}.rd__li{margin-bottom:5px}.rd__compact-stats{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:flex-start;align-content:flex-start}.rd__title-link{opacity:0.3;font-size:14px;font-weight:normal}.rd__title-link--inset{font-size:12px}.rd__wrp-image{margin:5px auto 0;text-align:center}.rd__image{max-width:100%;max-height:60vh;cursor:zoom-in}.rd__wrp-map{max-width:33%;margin:0 auto}.rd__wrp-gallery{display:flex;flex-wrap:wrap;justify-content:center;align-items:flex-end}.rd__wrp-gallery-image{padding:0 10px 10px;max-width:33%}.rd__quote-line--last{margin-bottom:5px}.rd__quote-by{width:100%;text-align:right;display:block}.rd__p-cont-indent{display:block;text-indent:1em}.rd__tab-indent{width:1em;display:inline-block}.rd__image-title{width:100%;text-align:center;font-style:italic;margin-top:3px}.rd__image-title-inner{border-bottom:1px solid #ccc;display:inline}.rd__image-btn-viewer{font-style:initial}.rd__scroller-viewer{scrollbar-width:auto}.rd__scroller-viewer::-webkit-scrollbar{width:15px;height:15px}.rd__prerequisite{font-style:italic;display:block}.rd__li-spell{margin:0}.rd__list-hang-notitle{text-indent:-1.1em;margin-left:1.1em;padding:0;list-style:none}.rd__list-hang-notitle>.rd__li{margin-bottom:3px}.rd__list-hang-notitle>.rd__li>*{margin:0 0 3px}.rd__list-hang-notitle>.rd__li>ul{text-indent:0}.rd__list-hang{list-style:none}.rd__list-hang>li>*:not(::marker){text-indent:-1.1em;margin-left:1.1em}.rd__list-decimal{list-style:decimal}.rd__list-lower-roman{list-style:lower-roman}.rd__list-no-bullets{list-style:none;padding:0 1em}.rd__list-no-bullets>.rd__li{margin-bottom:0}.rd__list-no-bullets-indent{list-style:none;padding:0 0 0 1em}.rd__list-no-bullets-indent>.rd__li{margin-bottom:0;text-indent:-1em;padding-left:1em}.rd__list-name{margin:0;font-weight:bold}.rd__h--0{color:#822000;font-family:'Andada', serif;font-variant:small-caps;font-weight:500;display:flex;justify-content:space-between;align-items:center;font-size:1.8em}.rd__h--1{color:#822000;font-family:'Andada', serif;font-variant:small-caps;font-weight:500;display:flex;justify-content:space-between;align-items:center;font-size:1.5em;border-bottom:1px solid #822000;margin:0 0 0.2em}.rd__h--2{color:#822000;font-family:'Andada', serif;font-variant:small-caps;font-weight:500;display:flex;justify-content:space-between;align-items:center;font-size:1.4em}.rd__h--2-inset{font-variant:small-caps;font-weight:bolder;font-size:1.1em;display:flex;justify-content:space-between;align-items:center}.rd__h--2-flow-block{display:block;font-variant:small-caps;font-weight:bolder;font-size:1.1em;text-align:center}.rd__h--3{font-weight:bold;font-style:italic}.rd__h--4{font-style:italic}.rd__b--3>p,.rd__b--4>p{text-indent:0.7em;margin-bottom:0}.rd__b--3>p:first-of-type,.rd__b--4>p:first-of-type{display:inline}.rd__b-inset>p{text-indent:0.7em;margin-bottom:0}.rd__b-inset{margin:7px 15px;padding:5px 10px;box-shadow:0 0 4px 0 #988e7c;border:1px solid #656565;border-top:2px solid #656565;border-bottom:2px solid #656565;background-color:#e9ecda}.rd__b-inset>*:last-of-type{margin-bottom:0}.rd__b-inset--readaloud{box-shadow:0 0 4px 0 #988e7c;border:1px solid #656565;border-left:2px solid #656565;border-right:2px solid #656565;background-color:#eef0f3}.rd__b-inset-inner{margin-top:10px}.rd__b-data{box-shadow:0 0 4px 0 #988e7c;background-color:rgba(156,150,120,0.1);margin:0.3em;padding:0.3em;clear:both}.rd__data-embed-header{cursor:pointer;font-family:'Andada', serif;font-variant:small-caps;text-transform:uppercase;font-weight:bold}.rd__data-embed-header:hover{background:rgba(100,100,100,0.08)}.rd__data-embed-toggle{margin-left:0.3em;font-weight:700}.rd__wrp-loadbrew--ready{cursor:pointer;text-decoration:underline}.rd__loadbrew-icon{text-indent:0;margin-left:2px;transition-property:transform;transition-duration:1s}.rd__loadbrew-icon--active{-webkit-animation-name:rd__spin;animation-name:rd__spin;-webkit-animation-duration:1.2s;animation-duration:1.2s;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-timing-function:linear;animation-timing-function:linear}.rd__comic{font-family:'Blambot Casual', sans-serif;color:#1942be}.rd__comic--h1{font-size:140%;font-variant:small-caps}.rd__comic--h2{font-size:130%}.rd__comic--h3{font-size:120%}.rd__comic--h4{font-size:110%}.rd__comic--note{opacity:0.7}.rd__comic-img-speaker{margin-top:-20px;margin-bottom:-20px}.rd__comic-img-speaker--left{float:left;margin-right:0;margin-left:-20px}.rd__comic-img-speaker--right{float:right;margin-right:-20px;margin-left:0}.rd__comic-img-speaker::after{content:'';clear:both;display:block}.rd__img-small{max-width:25vw;max-height:25vh}.rd__img-cover{max-width:100%;max-height:100vh}.rd__s-v-flow{height:15px;width:0;border-left:1px solid #656565;border-right:1px solid #656565;margin:0 auto}.rd__b-flow{margin:0 15px;padding:5px 10px;box-shadow:0 0 4px 0 #988e7c;border:1px solid #656565;border-top:2px solid #656565;border-bottom:2px solid #656565;background-color:#ece4da}.rd__b-flow>*:last-of-type{margin-bottom:0}.rd__stats-name-page{font-family:'Convergence', Arial, sans-serif;font-size:12px;color:#333;font-weight:100}.rd__pre-wrap{white-space:pre-wrap}.rd__highlight{background-color:#ff0}.rd-item__type-rarity-attunement{font-style:italic;color:black}.rd-spell__level-school-ritual{font-style:italic;color:black}td>.rd__b:last-child{margin-bottom:0}.subclass-feature .rd__h--0,.subclass-feature .rd__h--1,.subclass-feature .rd__h--2{color:#337ab7;border-bottom-color:#337ab7}.spicy-sauce .rd__h--0,.spicy-sauce .rd__h--1,.spicy-sauce .rd__h--2{color:#1d965d;border-bottom-color:#1d965d}.spicy-sauce:not(.subclass-feature):not(.subclass-feature--sub) .rd__h--0,.spicy-sauce:not(.subclass-feature):not(.subclass-feature--sub) .rd__h--1,.spicy-sauce:not(.subclass-feature):not(.subclass-feature--sub) .rd__h--2{color:#827e00;border-bottom-color:#827e00}.refreshing-brew .rd__h--0,.refreshing-brew .rd__h--1,.refreshing-brew .rd__h--2{color:#8c3b96;border-bottom-color:#8c3b96}@font-face{font-family:'Convergence';font-style:normal;font-weight:400;src:local("Convergence-Regular"),url("../fonts/Convergence-Regular.ttf") format("truetype")}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;src:local("Roboto"),url("../fonts/Roboto-regular.ttf") format("truetype")}@font-face{font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;src:local("glyphicons-halflings-regular"),url("../fonts/glyphicons-halflings-regular.ttf") format("truetype")}@font-face{font-family:'Blambot Casual';src:local("Blambot-Casual"),url("../fonts/Blambot-Casual-Regular.ttf") format("truetype")}@keyframes kf-fade-out{from{opacity:1}to{opacity:0}}.linked-titles .rd__h--0 .entry-title-inner:hover::before{font-size:50%}.linked-titles .rd__h--1 .entry-title-inner:hover::before{font-size:55%}.linked-titles .rd__h--2 .entry-title-inner:hover::before{font-size:60%}.linked-titles .rd__h .entry-title-inner{cursor:copy}.linked-titles .rd__h .entry-title-inner:hover::before{content:' 🔗';color:rgba(0,0,0,0.2);position:relative;float:left;width:14px;height:14px;right:20px;margin-right:-30px;font-size:85%}.night-mode .rd__h--0,.night-mode .rd__h--1,.night-mode .rd__h--2{color:#d29a38}.night-mode .rd__h--1{border-bottom-color:#d29a38}.night-mode .rd__h--4{color:#c2c2c2}.night-mode .rd__h--3{color:#c2c2c2}.night-mode .rd__-image-title-inner{border-color:#555}.night-mode .rd__b-inset{background-color:#323431}.night-mode .rd__b-inset--readaloud{background-color:#28303a}.night-mode .rd__b-flow{background-color:#38352f}.night-mode .rd__comic{color:#95aaea}.night-mode .rd__stats-name-page{color:#bbb}.night-mode .rd__highlight{background-color:#cc0;color:#222}.night-mode .rd-item__type-rarity-attunement{color:#bbb}.night-mode .rd-spell__level-school-ritual{color:#bbb}.subclass-feature .rd__h--0,.subclass-feature .rd__h--1,.subclass-feature .rd__h--2{color:#337ab7;border-bottom-color:#337ab7}.spicy-sauce .rd__h--0,.spicy-sauce .rd__h--1,.spicy-sauce .rd__h--2{color:#179e50;border-bottom-color:#179e50}.spicy-sauce:not(.subclass-feature):not(.subclass-feature--sub) .rd__h--0,.spicy-sauce:not(.subclass-feature):not(.subclass-feature--sub) .rd__h--1,.spicy-sauce:not(.subclass-feature):not(.subclass-feature--sub) .rd__h--2{color:#a2ce42;border-bottom-color:#a2ce42}.refreshing-brew .rd__h--0,.refreshing-brew .rd__h--1,.refreshing-brew .rd__h--2{color:#aa40b4;border-bottom-color:#aa40b4}@font-face{font-family:'Convergence';font-style:normal;font-weight:400;src:local("Convergence-Regular"),url("../fonts/Convergence-Regular.ttf") format("truetype")}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;src:local("Roboto"),url("../fonts/Roboto-regular.ttf") format("truetype")}@font-face{font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;src:local("glyphicons-halflings-regular"),url("../fonts/glyphicons-halflings-regular.ttf") format("truetype")}@font-face{font-family:'Blambot Casual';src:local("Blambot-Casual"),url("../fonts/Blambot-Casual-Regular.ttf") format("truetype")}@keyframes kf-fade-out{from{opacity:1}to{opacity:0}}.linked-titles .rd__h--0 .entry-title-inner:hover::before{font-size:50%}.linked-titles .rd__h--1 .entry-title-inner:hover::before{font-size:55%}.linked-titles .rd__h--2 .entry-title-inner:hover::before{font-size:60%}.linked-titles .rd__h .entry-title-inner{cursor:copy}.linked-titles .rd__h .entry-title-inner:hover::before{content:' 🔗';color:rgba(0,0,0,0.2);position:relative;float:left;width:14px;height:14px;right:20px;margin-right:-30px;font-size:85%}.nav .dropdown-menu--top{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}@media (max-width: 768px){.nav>li>a{border:1px solid #ccc}.night-mode .nav>li>a{border-color:#555}.nav .caret--right{transform:none}.nav .dropdown-menu--side{top:100%;left:0}}.night-mode .nav>li:not(.active)>a{color:#bbb;background-color:#222;border:1px solid rgba(85,85,85,0.627451);border-top:0}.night-mode .nav>li:not(.active)>a:focus,.night-mode .nav>li:not(.active)>a:hover{background-color:#272727;color:white}.night-mode .nav>li.active>a:focus,.night-mode .nav>li.active>a:hover{color:white}.night-mode .nav li.open>a,.night-mode .nav li.open>a:focus,.night-mode .nav li.open>a:hover{background-color:#272727;border-left:1px solid #337ab7;border-right:1px solid #337ab7;border-color:#337ab7}.night-mode .nav li.active.open>a,.night-mode .nav li.active.open>a:focus,.night-mode .nav li.active.open>a:hover{background-color:#333}.nav2-list__label{padding:0 20px}.nav2-list__disp-source{display:inline-block;height:15px;border-left:1px solid;position:relative;border-right:1px solid;top:2px;margin-right:7px;margin-left:4px}.nav2-accord__head{padding:3px 7px 3px 20px}.nav2-accord__head:focus,.nav2-accord__head:hover{background-color:#f5f5f5}.nav2-accord__head--active{background:#337ab7;color:white}.nav2-accord__head--active:focus,.nav2-accord__head--active:hover{background:#7398b7}.nav2-accord__body{padding:3px 0 3px 35px;display:flex;flex-direction:column}.nav2-accord__lnk-item{padding:3px 20px;color:#333}.nav2-accord__lnk-item:focus,.nav2-accord__lnk-item:hover{background-color:#f5f5f5;text-decoration:none}.nav2-accord__lnk-item--active{background:#337ab7;color:white}.nav2-accord__lnk-item--active:focus,.nav2-accord__lnk-item--active:hover{background:#7398b7;color:white}.night-mode .nav2-accord__head:focus,.night-mode .nav2-accord__head:hover{background-color:#383838;color:white}.night-mode .nav2-accord__head--active{color:white}.night-mode .nav2-accord__head--active:focus,.night-mode .nav2-accord__head--active:hover{background:#7398b7}.night-mode .nav2-accord__lnk-item{color:#bbb}.night-mode .nav2-accord__lnk-item:focus,.night-mode .nav2-accord__lnk-item:hover{background-color:#383838;color:white}.night-mode .nav2-accord__lnk-item--active{color:white}.night-mode .nav2-accord__lnk-item--active:focus,.night-mode .nav2-accord__lnk-item--active:hover{background:#7398b7}@font-face{font-family:'Convergence';font-style:normal;font-weight:400;src:local("Convergence-Regular"),url("../fonts/Convergence-Regular.ttf") format("truetype")}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;src:local("Roboto"),url("../fonts/Roboto-regular.ttf") format("truetype")}@font-face{font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;src:local("glyphicons-halflings-regular"),url("../fonts/glyphicons-halflings-regular.ttf") format("truetype")}@font-face{font-family:'Blambot Casual';src:local("Blambot-Casual"),url("../fonts/Blambot-Casual-Regular.ttf") format("truetype")}@keyframes kf-fade-out{from{opacity:1}to{opacity:0}}.linked-titles .rd__h--0 .entry-title-inner:hover::before{font-size:50%}.linked-titles .rd__h--1 .entry-title-inner:hover::before{font-size:55%}.linked-titles .rd__h--2 .entry-title-inner:hover::before{font-size:60%}.linked-titles .rd__h .entry-title-inner{cursor:copy}.linked-titles .rd__h .entry-title-inner:hover::before{content:' 🔗';color:rgba(0,0,0,0.2);position:relative;float:left;width:14px;height:14px;right:20px;margin-right:-30px;font-size:85%}@-webkit-keyframes kf-fade-in{from{opacity:0}to{opacity:1}}@keyframes kf-fade-in{from{opacity:0}to{opacity:1}}@-webkit-keyframes kf-pop-in{from{transform:scale(0)}to{transform:scale(1)}}@keyframes kf-pop-in{from{transform:scale(0)}to{transform:scale(1)}}.hwin{position:fixed;width:600px;max-width:92vw;min-width:150px;z-index:200;box-shadow:0 0 12px 0 black;-webkit-animation-name:kf-fade-in, kf-pop-in;animation-name:kf-fade-in, kf-pop-in;-webkit-animation-duration:150ms, 75ms;animation-duration:150ms, 75ms;display:flex;flex-direction:column}.hwin--minified .hoverborder__resize-n,.hwin--minified .hoverborder__resize-ne,.hwin--minified .hoverborder__resize-e,.hwin--minified .hoverborder__resize-se,.hwin--minified .hoverborder__resize-s,.hwin--minified .hoverborder__resize-sw,.hwin--minified .hoverborder__resize-w,.hwin--minified .hoverborder__resize-nw{display:none}.hwin--popout{box-shadow:initial;width:100%;-webkit-animation-duration:initial;animation-duration:initial;overflow-y:scroll;height:100%;max-width:initial;max-height:initial}@media (max-width: 1023px){.hwin{max-width:95vw}}.hwin::-webkit-scrollbar-track{background:#a0a0a0}.hwin::-webkit-scrollbar{width:4px}.hwin__wrp-table{max-height:92vh;min-height:20px;overflow-y:auto;background:#f6f4f2;transform:translateZ(0);line-height:1em}.hwin__wrp-table .stats{padding:0.3em}.hwin .rnd-name{font-size:22.4px}.hwin td div.border{height:2px;background-color:#822000;margin:0 3px;padding:0;border-right:5px transparent}.hoverborder{position:relative;min-height:3px;max-height:16px;text-align:right}.hoverborder--btm{cursor:ns-resize}.hoverborder--top{cursor:move;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:flex;justify-content:space-between}.hoverborder .hwin__top-border-icon{display:none}.hoverborder[data-perm=true] .hwin__top-border-icon{display:block}.hoverborder .glyphicon{display:none}.hoverborder[data-perm=true] .glyphicon{display:block}.hoverborder .window-title{overflow:hidden;max-width:calc(100% - 45px);text-align:left;margin-left:4px;padding:1px 0;font-size:12px;display:none;font-family:'Andada', serif;font-variant:small-caps;text-transform:uppercase;font-weight:bold;flex-shrink:0}.hoverborder[data-perm=true] .window-title{display:block}.hoverborder__resize-n{position:absolute;top:-4px;right:4px;left:4px;height:4px;cursor:ns-resize}.hoverborder__resize-ne{position:absolute;top:-6px;right:-6px;height:10px;width:10px;cursor:ne-resize}.hoverborder__resize-e{position:absolute;top:4px;right:-4px;bottom:4px;width:4px;cursor:ew-resize}.hoverborder__resize-se{position:absolute;right:-6px;bottom:-6px;height:10px;width:10px;cursor:se-resize}.hoverborder__resize-s{position:absolute;top:3px;right:4px;left:4px;height:2px}.hoverborder__resize-sw{position:absolute;bottom:-6px;left:-6px;height:10px;width:10px;cursor:sw-resize}.hoverborder__resize-w{position:absolute;top:4px;bottom:4px;left:-4px;width:4px;cursor:ew-resize}.hoverborder__resize-nw{position:absolute;top:-6px;left:-6px;height:10px;width:10px;cursor:nw-resize}.hoverborder[data-display-title=true] ~ .hwin__wrp-table,.hoverborder[data-display-title=true] ~ .hoverborder{display:none}@font-face{font-family:'Convergence';font-style:normal;font-weight:400;src:local("Convergence-Regular"),url("../fonts/Convergence-Regular.ttf") format("truetype")}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;src:local("Roboto"),url("../fonts/Roboto-regular.ttf") format("truetype")}@font-face{font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;src:local("glyphicons-halflings-regular"),url("../fonts/glyphicons-halflings-regular.ttf") format("truetype")}@font-face{font-family:'Blambot Casual';src:local("Blambot-Casual"),url("../fonts/Blambot-Casual-Regular.ttf") format("truetype")}@keyframes kf-fade-out{from{opacity:1}to{opacity:0}}.linked-titles .rd__h--0 .entry-title-inner:hover::before{font-size:50%}.linked-titles .rd__h--1 .entry-title-inner:hover::before{font-size:55%}.linked-titles .rd__h--2 .entry-title-inner:hover::before{font-size:60%}.linked-titles .rd__h .entry-title-inner{cursor:copy}.linked-titles .rd__h .entry-title-inner:hover::before{content:' 🔗';color:rgba(0,0,0,0.2);position:relative;float:left;width:14px;height:14px;right:20px;margin-right:-30px;font-size:85%}.sourceAAWS{color:#365fac !important;border-color:#365fac !important;-webkit-text-decoration-color:#365fac !important;text-decoration-color:#365fac !important}.sourceAPG{color:#4a6898 !important;border-color:#4a6898 !important;-webkit-text-decoration-color:#4a6898 !important;text-decoration-color:#4a6898 !important}.sourceGMG{color:purple !important;border-color:purple !important;-webkit-text-decoration-color:purple !important;text-decoration-color:purple !important}.sourceBst{color:#008900 !important;border-color:#008900 !important;-webkit-text-decoration-color:#008900 !important;text-decoration-color:#008900 !important}.sourceBst2{color:#006b00 !important;border-color:#006b00 !important;-webkit-text-decoration-color:#006b00 !important;text-decoration-color:#006b00 !important}.sourceBst3{color:#004d00 !important;border-color:#004d00 !important;-webkit-text-decoration-color:#004d00 !important;text-decoration-color:#004d00 !important}.sourceLOME{color:#9b7c27 !important;border-color:#9b7c27 !important;-webkit-text-decoration-color:#9b7c27 !important;text-decoration-color:#9b7c27 !important}.sourceLOGM,.sourceLOCG,.sourceLOWG,.sourceLOL,.sourceLOPSG,.sourceLOAG{color:#69af9a !important;border-color:#69af9a !important;-webkit-text-decoration-color:#69af9a !important;text-decoration-color:#69af9a !important}.sourceLOTGB{color:#ac408b !important;border-color:#ac408b !important;-webkit-text-decoration-color:#ac408b !important;text-decoration-color:#ac408b !important}.sourceHomebrew{color:#8c3b96 !important;border-color:#8c3b96 !important;-webkit-text-decoration-color:#8c3b96 !important;text-decoration-color:#8c3b96 !important}.sourceSpicy{color:#1d965d !important;border-color:#1d965d !important;-webkit-text-decoration-color:#1d965d !important;text-decoration-color:#1d965d !important}.sourceCRB{color:#a2201f !important;border-color:#a2201f !important;-webkit-text-decoration-color:#a2201f !important;text-decoration-color:#a2201f !important}.sourceSoM{color:#a24d08 !important;border-color:#a24d08 !important;-webkit-text-decoration-color:#a24d08 !important;text-decoration-color:#a24d08 !important}.sourceG_G{color:#754f2f !important;border-color:#754f2f !important;-webkit-text-decoration-color:#754f2f !important;text-decoration-color:#754f2f !important}.sp__school-A{color:#00b921}.sp__school-V{color:#bb0100}.sp__school-E{color:#b30083}.sp__school-I{color:#006dbd}.sp__school-D{color:#00adb3}.sp__school-N{color:#6c00cc}.sp__school-T{color:#ccbe00}.sp__school-C{color:#bd0044}@font-face{font-family:'Convergence';font-style:normal;font-weight:400;src:local("Convergence-Regular"),url("../fonts/Convergence-Regular.ttf") format("truetype")}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;src:local("Roboto"),url("../fonts/Roboto-regular.ttf") format("truetype")}@font-face{font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;src:local("glyphicons-halflings-regular"),url("../fonts/glyphicons-halflings-regular.ttf") format("truetype")}@font-face{font-family:'Blambot Casual';src:local("Blambot-Casual"),url("../fonts/Blambot-Casual-Regular.ttf") format("truetype")}@keyframes kf-fade-out{from{opacity:1}to{opacity:0}}.linked-titles .rd__h--0 .entry-title-inner:hover::before{font-size:50%}.linked-titles .rd__h--1 .entry-title-inner:hover::before{font-size:55%}.linked-titles .rd__h--2 .entry-title-inner:hover::before{font-size:60%}.linked-titles .rd__h .entry-title-inner{cursor:copy}.linked-titles .rd__h .entry-title-inner:hover::before{content:' 🔗';color:rgba(0,0,0,0.2);position:relative;float:left;width:14px;height:14px;right:20px;margin-right:-30px;font-size:85%}.page__header{padding:0 15px 1px;box-shadow:0 1px 4px rgba(0,0,0,0.475);color:white;background-color:#002664;min-height:0;flex-shrink:0}.page__title{margin-right:10px;display:inline}.page__title::after{color:#e0e0e0;content:'.'}.page__title--home span{color:#e0e0e0}.page__subtitle{display:inline;font-style:italic;color:#d0d0d0}.page__btn-toggle-nav{margin-top:5px;text-align:center;width:6em;flex-shrink:0;height:32px;line-height:1;margin-right:2px}@media (min-width: 769px){.page__btn-toggle-nav{display:none}}.page__nav{position:relative;min-height:33px;flex-shrink:0}@media (max-width: 768px){.page__nav{width:100%;display:flex}}@media (max-width: 768px){.page__nav-inner{display:flex;margin-top:3px;flex-direction:column;width:calc(100% - 6em);flex-shrink:0}}.page__nav-date{margin-left:-16px;width:27px}.page__wrp-download{box-shadow:0 6px 12px rgba(0,0,0,0.175);position:fixed;z-index:2000;top:5px;min-height:40px;min-width:100px;max-width:850px;display:flex;width:90vw;right:0;left:0;margin:0 auto;padding:5px;justify-content:space-between;align-items:center;border:1px solid transparent;border-radius:4px;background:white}.page__wrp-download-bar{border:1px solid #2a6496;height:34px;border-radius:4px}.page__wrp-download-bar--error{border-color:#711617}.page__disp-download-progress-bar{position:absolute;top:0;bottom:0;left:0;background:#337ab7}.page__disp-download-progress-bar--error{background:#8a1a1b}.page__disp-download-progress-text{position:absolute;top:0;right:calc(50% - 30px);bottom:0;left:calc(50% - 30px);width:90px;text-shadow:1px 1px 0 white, -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white, 3px 3px 5px black}.night-mode .page__wrp-download{background:#222}.night-mode .page__disp-download-progress-text{color:#333}@media (max-width: 768px){#navigation .page__nav-hidden-mobile{display:none;margin-left:0}}.nav .dropdown-menu--top{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}@media (max-width: 768px){.nav>li>a{border:1px solid #ccc}.night-mode .nav>li>a{border-color:#555}.nav .caret--right{transform:none}.nav .dropdown-menu--side{top:100%;left:0}}#legal-notice{box-shadow:0 6px 12px rgba(0,0,0,0.175);position:fixed;z-index:10000;bottom:0;width:100vw;height:10em;display:flex;flex-direction:column;align-items:center;justify-content:space-evenly;font-weight:bold;padding:3rem;border:1px solid rgba(0,0,0,0.15);background:#f8f8f8}.viewport-wrapper{position:absolute;top:0;right:0;bottom:0;left:0;display:flex;flex-flow:column nowrap;overflow:auto;height:100vh;width:100%}@media (max-width: 991px){.viewport-wrapper{bottom:auto;height:initial;min-height:100vh}}.view-col-group{display:flex;flex-direction:column;position:relative;overflow-y:auto}.view-col-wrapper{display:flex;flex-direction:row;max-height:100%;height:100%;min-height:0}@media (max-width: 991px){.view-col-wrapper{flex-direction:column;max-height:none;height:initial;display:block}}.sidemenu{box-shadow:0 6px 12px rgba(0,0,0,0.175);background:white;border:1px solid #ccc;position:fixed;z-index:60;top:0;bottom:0;left:-260px;width:250px;transition:left 51ms;cursor:default;display:flex;flex-direction:column;padding:4px 7px;overflow-y:auto}.sidemenu>*{flex-shrink:0}.sidemenu__toggle{box-shadow:0 6px 12px rgba(0,0,0,0.175);background:lightgrey;position:absolute;z-index:60;top:46px;left:-7px;width:32px;height:32px;cursor:pointer;transition:left 51ms;display:flex;flex-direction:column;justify-content:space-around;padding:3px 4px}.sidemenu__hotzone{position:fixed;top:0;bottom:0;left:0;width:1px}.sidemenu__burger{background:white;height:3px;box-shadow:inset 0 0 1px 0 #888}.sidemenu__toggle:hover .sidemenu{left:0;transition:left 51ms}.sidemenu__toggle:hover .sidemenu--offset{left:-12px}.sidemenu__row{width:100%;margin-bottom:5px}.sidemenu__row--vert{display:flex;flex-direction:column;justify-content:space-around;align-items:center}.sidemenu__row__divider{background:rgba(204,204,204,0.627451);height:1px;width:calc(100% - 16px);margin:2px 8px 7px}.sidemenu__row__divider--heavy{background:#aaa;width:calc(100% + 6px);margin:2px -3px 7px}.sidemenu__row__label{min-width:46px;flex-shrink:0}.sidemenu__row__label--cb-label{font-weight:initial;display:flex;margin-bottom:0;justify-content:space-between;align-items:center;width:100%}input[type=checkbox].sidemenu__row__label__cb{margin-right:3px;margin-left:7px}.night-mode .sidemenu{border-color:#555}.omni__wrp-output{width:100%;justify-content:flex-end;display:none}.omni__output{box-shadow:0 6px 12px rgba(0,0,0,0.175);position:absolute;z-index:100;padding:0.2em 0.7em;border-radius:0.2em;border:1px solid rgba(0,0,0,0.15);background:white}.omni__output--scrolled{position:fixed;top:42px;right:10px}@media only screen and (min-width: 320px){.omni__output{max-width:300px;min-width:270px}}@media only screen and (min-width: 481px){.omni__output{max-width:460px;min-width:430px}}@media only screen and (min-width: 769px){.omni__output{max-width:740px;min-width:500px}}@media only screen and (max-width: 768px){.omni__output{top:40px}}@media only screen and (max-width: 768px){.omni__wrp-input{margin-top:2px;margin-left:0}}.omni__wrp-input--scrolled{position:fixed;z-index:100;top:5px;right:10px;width:85px;padding:2px 0;border-left:40px solid transparent}.omni__wrp-input--scrolled .omni__input{min-width:initial;border-top-left-radius:4px;border-top-color:#ccc}.omni__wrp-input--scrolled .omni__submit{border-top-right-radius:4px;border-top-color:#ccc}.omni__wrp-input--scrolled input{padding:0;color:transparent}.omni__wrp-input--scrolled:focus,.omni__wrp-input--scrolled:focus-within,.omni__wrp-input--scrolled:active,.omni__wrp-input--scrolled:hover{width:250px;border-left:0}.omni__wrp-input--scrolled:focus input,.omni__wrp-input--scrolled:focus-within input,.omni__wrp-input--scrolled:active input,.omni__wrp-input--scrolled:hover input{padding:6px 12px;color:inherit}.omni__input{height:32px;min-width:100px}@media (min-width: 992px){.omni__input{border-top-left-radius:0;border-top-color:transparent}}.omni__submit{height:32px;padding:3px 7px}@media (min-width: 992px){.omni__submit{border-top-right-radius:0;border-top-color:transparent}}.omni__wrp-paginate{display:flex;justify-content:space-between}.omni__wrp-paginate>span{display:inline-block;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;padding:2px;font-size:1.1em;min-width:20px}.omni__paginate-ctrl{cursor:pointer}.omni__paginate-ctrl:hover{color:#337ab7}.omni__paginate-left{margin-right:auto}.omni__paginate-count{margin:0 auto}.omni__paginate-right{margin-left:auto}.btn-name-pronounce,.btn-stats-name{vertical-align:top;height:24px;width:24px}.name-pronounce-icon{line-height:16px}.name-pronounce{display:none}.hwin__top-border-icon{top:0;margin-left:auto;padding:2px;color:#f5f5f5;cursor:pointer;font-size:12px;width:18px;text-align:center}.hwin__top-border-icon--text{line-height:11px;font-weight:bolder;font-family:monospace}.hwin__top-border-icon:hover,.hwin__top-border-icon:active,.hwin__top-border-icon:visited{color:#e8e8e8;text-decoration:none}.glyphicon.top-border-icon,.glyphicon.delete-icon{top:0;margin-left:auto;padding:2px;color:rgba(255,255,255,0.7);cursor:pointer;font-size:12px}.glyphicon.top-border-icon:hover,.glyphicon.top-border-icon:active,.glyphicon.top-border-icon:visited,.glyphicon.delete-icon:hover,.glyphicon.delete-icon:active,.glyphicon.delete-icon:visited{text-decoration:none}#btn-popout,#btn-popout-feat{margin-left:auto}#tabs-right,#tabs-right-feats{margin-left:auto;display:flex}#tabs-right>#btn-popout,#tabs-right-feats>#btn-popout{margin-left:0}.rollbox-min{box-shadow:0 6px 12px rgba(0,0,0,0.175);position:fixed;z-index:100;right:7px;bottom:0;color:rgba(255,255,255,0.7);width:24px;height:24px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.rollbox-min .glyphicon{position:absolute;top:5px;left:6px}.rollbox{box-shadow:0 6px 12px rgba(0,0,0,0.175);display:none;position:fixed;width:260px;height:335px;z-index:110;border:1px solid rgba(0,0,0,0.15);right:1em;bottom:0;flex-direction:column}.rollbox .ipt-roll{flex-shrink:0;overflow-x:auto;height:30px;width:100%}.rollbox .out-roll{overflow-y:auto;height:100%;display:flex;flex-direction:column-reverse;transform:translateZ(0)}.rollbox .head-roll{height:24px;flex-shrink:0;width:100%;box-shadow:0 0 3px rgba(0,0,0,0.25);display:flex;flex-direction:row;justify-content:space-between;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer}.rollbox .head-roll .hdr-roll{line-height:24px;padding:0 6px}.rollbox .head-roll .delete-icon{padding:6px}.rollbox .out-roll .out-roll-wrp .out-roll-item:first-child{border-top-left-radius:6px;border-top-right-radius:6px}.rollbox .out-roll .out-roll-wrp .out-roll-item:last-child{border-bottom-left-radius:6px;border-bottom-right-radius:6px}.rollbox .out-roll .out-roll-item{position:relative;margin:1px 3px;padding:1px 3px;width:calc(100% - 6px);word-wrap:break-word;display:flex;align-items:center;justify-content:space-between}.rollbox .out-roll .out-roll-item--message{display:block}.rollbox .out-roll-item-button-wrp{display:none;position:absolute}.rollbox .out-roll-item:hover .out-roll-item-button-wrp{display:flex;right:3px}.rollbox .btn-copy-roll{padding:0 2px;line-height:1.4}.rollbox .out-roll .out-roll-item .roll-label{font-style:italic}.rollbox .out-roll .out-roll-item .roll{font-weight:bold}.rollbox .out-roll .out-roll-item .roll-min{color:#ff3100}.rollbox .out-roll .out-roll-item .roll-max{color:#00b400}.rollbox .out-roll .out-roll-id{width:100%;font-size:70%;padding:1px 3px}.rll__prompt-header{font-size:32px}.rll__dropped{-webkit-text-decoration:red line-through;text-decoration:red line-through}.rll__list{margin-bottom:0;padding-left:24px}.rll__exploded{color:#6f99b8}.rll__success{-webkit-text-decoration:#209520 underline;text-decoration:#209520 underline}.rll__min--muted{color:#d24c2d}.rll__max--muted{color:#209520}.rll__exploded{color:#6f99b8}.rll__min--muted{color:#d24c2d}.rll__max--muted{color:#209520}.wrp-stat-tab{width:100%;display:flex}.view-col{position:relative;margin:7px 13px 12px;flex:1;display:flex;flex-direction:column;height:calc(100% - 19px)}.view-col--wrp-book-contents{height:initial;position:relative;flex:1}.wrp-footer-buttons{margin-top:3px}#listcontainer.view-col{display:flex;flex-flow:column nowrap}#listcontainer .list a.book-name{display:flex;justify-content:space-between;padding:0}#contentwrapper.view-col{overflow-x:hidden;margin-bottom:5px}#contentwrapper.view-col>*:not(.wrp-stats-table){flex-shrink:0}.wrp-stats-table{overflow-x:hidden;overflow-y:auto;border-top:2px solid #5e0000;border-bottom:2px solid #5e0000;transform:translateZ(0);flex-shrink:1;background:#f6f4f2}@media (max-width: 991px){.wrp-stats-table{overflow-y:initial}}.filtertools,#filtertools{font-size:0.8em}.filtertools select,#filtertools select{margin:1px}.filtertools small:hover,#filtertools small:hover{cursor:pointer}#pointbuy input{margin:2px;text-align:right;width:3em}#pointbuy input[type=number]{-webkit-appearance:textfield;-moz-appearance:textfield;appearance:textfield}#pointbuy input[type=checkbox]{width:initial;margin:initial}.list,.list-display-only{transform:translateZ(0);position:relative;padding-left:0;list-style-type:none;height:100%;overflow-y:auto;overflow-x:hidden;clear:both;font-size:0.8em}@media (min-width: 992px){.list--stats,.list-display-only--stats{overflow-y:scroll;margin-right:-9px}}@media (max-width: 991px){.list,.list-display-only{max-height:40vh}}.list.rules,.list-display-only.rules{overflow-y:auto !important;padding-top:0}.list li,.list-display-only li{cursor:pointer;line-height:14px}.list .list-multi-selected,.list-display-only .list-multi-selected{box-shadow:inset 0 0 0 200px rgba(0,107,196,0.3)}.lst--border{border-bottom:1px solid #ddd}.list-multi-selected .lst--border{border-color:#6fa4d0}.row--blacklisted{display:none !important}.manbrew__source{overflow:hidden}.manbrew__search{border-bottom-left-radius:0;border-bottom-right-radius:0}.manbrew__filtertools button{border-top:0;border-top-left-radius:0;border-top-right-radius:0}.manbrew__filtertools .wrp-cb-all{border-bottom:1px solid #ccc;border-right:1px solid #ccc;line-height:14px;border-bottom-right-radius:3px;text-align:center;vertical-align:middle}.manbrew__wrp_btn_del_selected{text-align:right;padding-bottom:5px}.manbrew__current_brew{margin-bottom:5px}.manbrew__row.row{margin-right:0;margin-left:0;padding:4px 0}.manbrew__col--tall{line-height:30px}.manbrew__list{position:absolute;top:0;right:0;bottom:0;left:0;height:initial;overflow-y:initial;width:100%}.night-mode .manbrew__filtertools .wrp-cb-all{border-color:#555}.rnd-name{position:relative;font-size:1.8em;font-family:'Andada', serif;font-variant:small-caps;font-weight:500;padding-left:0.2em !important}.rnd-name div.name-inner{display:flex;justify-content:space-between;align-items:flex-end}.monster .rnd-name .source{position:relative;margin-right:0.2em}.stats{width:100%;font-size:1.1em;overflow-wrap:break-word;padding:0.4em}.stats:last-child{margin-bottom:0}td,th{padding:1px 0.3em}.stats table{width:100%;margin-bottom:5px}.stats table.statsDataInset{margin:10px;width:calc(100% - 20px);border:1px solid rgba(0,0,0,0.4);box-shadow:0 0 4px 0 #988d7c}.stats table caption{margin-left:5px;padding:0;font-weight:bold;font-size:1.1em}th.border{height:4px}.wrp-stats-table th.border{height:3px}th.border-thin{height:1px}td.divider div{background:#822000;height:2px;margin:6px 0}.stats span.name{font-weight:bold}.stats span.name{font-weight:bold}tr.text>td{padding-bottom:0.7em}tr.text.compact>td{padding-bottom:0}tr.text.compact>td p:last-child{margin-bottom:0}span.dc-roller[mode=dice]{color:#337ab7;cursor:pointer}.night-mode span.dc-roller[mode=dice]{color:#7db6e8}div#lootoutput{height:100%;clear:both}.mon__btn-reset-lvl,.mon__btn-scale-lvl{margin:-4px 2px 0 0;padding:0 5px;font-size:10px;line-height:1.2em;height:80%}.mon__cr_slider_wrp{position:absolute;top:23px;left:0;background:white;border:1px solid #ccc;width:calc(100% - 30px);margin:0 10px;padding:5px 7px 10px;border-radius:4px;box-shadow:0 0 3px 0 black;font-size:15px}.mon__cr_slider_wrp--compact{top:41px}.mon__cr_slider{width:100%}.mon__ability-names th{text-align:center;font-weight:bold;color:inherit}.mon__ability-scores{text-align:center;width:16%}.mon__wrp-size-type-align--token,.mon__wrp-avoid-token{max-width:calc(100% - 11rem)}.mon__sect-header-inner{display:block;margin-top:-0.3rem;margin-bottom:-0.3rem;font-weight:100}.mon__sect-row-inner{padding-top:0.5rem !important}.mon__sect-row-inner>*:last-of-type{margin-bottom:0.5rem !important}.mon__stat-header-underline{font-size:1.6rem;font-family:'Andada', serif;font-variant:small-caps;border-bottom:2px solid #822000;color:#822000;vertical-align:bottom !important;padding-left:0.2rem}.mon__wrp-token{display:block;position:absolute;z-index:10;top:0;right:0.5rem;width:auto;max-width:11rem;height:auto;transition:opacity 34ms,max-width 34ms,right 34ms}.mon__wrp-token:hover{max-width:100%;right:0;opacity:1 !important;transition:opacity 34ms,max-width 34ms,right 34ms}.mon__wrp-token:hover .mon__btn-token-cycle{opacity:1;transition:opacity 34ms}.mon__wrp-token:hover .mon__wrp-token-footer{opacity:1;transition:opacity 34ms}.mon__token{width:100%;height:100%}.mon__btn-token-cycle{position:absolute;top:50%;bottom:50%;display:flex;align-items:center;justify-content:center;width:40px;height:40px;background:rgba(0,0,0,0.475);cursor:pointer;color:white;border:1px solid rgba(204,204,204,0.627451);opacity:0;transition:opacity 34ms}.mon__btn-token-cycle--left{left:0;border-top-left-radius:5px;border-bottom-left-radius:5px;border-right:0}.mon__btn-token-cycle--right{right:0;border-top-right-radius:5px;border-bottom-right-radius:5px;border-left:0}.mon__btn-token-cycle:hover{color:#ddd}.mon__wrp-token-footer{display:flex;position:absolute;height:22px;right:5px;bottom:0;left:5px;align-items:center;justify-content:center;opacity:0;transition:opacity 34ms}.mon__token-footer{background:rgba(0,0,0,0.475);color:white;font-family:'Andada', serif;font-variant:small-caps;font-size:16px;border-radius:5px;padding:1px 5px;border:1px solid rgba(204,204,204,0.627451)}.night-mode .mon__cr_slider_wrp{border-color:#555}tr th.mon__name--token{padding-right:calc(12rem)}#crcalc input[type=number],#crcalc input[type=checkbox],#crcalc .inputwrap{text-align:right;width:6em}#crcalc input[type=checkbox]{width:auto}#crcalc input#hd{float:none;width:4em}#crcalc span#hdval{width:2.1em;text-align:center;display:inline-block}#crcalc input[type=number]#hd::-webkit-inner-spin-button,#crcalc input[type=number]#hd::-webkit-outer-spin-button{margin:0}#crcalc .explanation{font-weight:normal;width:26em}#crcalc input#hd:focus{border:1px solid initial}#msbcr{text-align:center;font-size:0.8em;margin:0 auto}#msbcr th{text-align:center;padding:0 0.5em;cursor:initial !important}#msbcr tr{cursor:pointer}#croutput{padding:0.2em 0.7em;border-radius:7px}#instructions p{font-size:small}#expectedcr{text-align:center}img.token{position:absolute;z-index:10;top:0;right:0.5rem;float:right;width:auto;max-width:11rem;height:auto;transition:opacity 34ms,max-width 34ms,right 34ms}img.token:hover{max-width:100%;right:0;opacity:1 !important;transition:opacity 34ms,max-width 34ms,right 34ms}.stats p.subtrait{padding:0 1em;font-size:0.9em}.gm-screen-panel{background-color:#f0f0f0}.gm-screen-panel.faux-hover{background:#e0e0e0}.gm-screen-panel.faux-hover .panel-content-wrapper-inner::after{background:#e0e0e080}.panel-history-control-remove-wrapper,.panel-control-bar{background:#80808080}.panel-control-icon{color:rgba(255,255,255,0.7)}.panel-add{color:#ccc}.btn-panel-add{border:1px solid #ccc}.btn-panel-add:hover,.btn-panel-add.faux-hover{background:#e0e0e0}.night-mode .btn-panel-add{border-color:#555}.panel-content-wrapper-inner{background:white}.panel-control-top,.panel-control-right,.panel-control-bottom,.panel-control-left,.panel-control-middle{background:rgba(204,204,204,0.627451);border:1px solid #ccc}.night-mode .panel-control-top,.night-mode .panel-control-right,.night-mode .panel-control-bottom,.night-mode .panel-control-left,.night-mode .panel-control-middle{background:#777a;border-color:#aaa}.panel-addmenu-tab-head[active='true']{background-color:#e6e6e6;border-color:#adadad}.btn-spotlight{background-color:#e8f5ff;border-color:#c4cace}.btn-spotlight:focus{color:#333;background-color:#d2dee6;border-color:#85898c}.btn-spotlight:hover{color:#333;background-color:#d2dee6;border-color:#85898c}.panel-addmenu-tab-head.btn-spotlight[active='true']{background-color:#d2dee6;border-color:#85898c}.underline-tabs{border-top:1px solid #ccc}.night-mode .underline-tabs{border-color:#555}.panel-content-wrapper-inner td div.border{background-color:#822000}.panel-history-control-remove{color:rgba(255,255,255,0.7)}.panel-history-control-middle{background:rgba(204,204,204,0.627451);border:1px solid #ccc}.night-mode .panel-history-control-middle{background:#777a;border-color:#aaa}.gm-init-row.gm-init-row-active input{background:#cfe5ff78}.gm-init-row.gm-init-row-active .init-wrp-creature{background:#cfe5ff78}.gm__panel-bg{background:white}.init__wrp_conds{display:flex}.init__cond{width:7px;margin-right:3px;display:grid;grid-gap:3px;cursor:pointer}.init__cond:hover{box-shadow:0 0 5px 0 gray}.init__cond_bar{width:7px;height:100%}.initp__content{overflow-y:auto;overflow-x:hidden;height:100%;width:100%}.initp__wrp_active{display:flex;flex-direction:column;width:100%;height:100%}.initp__meta{font-size:1.6rem}.initp__header{width:100%;display:flex;justify-content:space-between;font-variant:small-caps;border-bottom:1px solid #ccc}.initp__h_name,.initp__r_name{min-width:115px;width:100%}.initp__h_name--compact{text-align:center}.initp__r_name{display:flex;justify-content:space-between}.initp__h_hp,.initp__r_hp{min-width:100px;width:100%}.initp__h_hp--compact{text-align:center}.initp__h_stat,.initp__r_stat{width:40px;text-align:center;flex-shrink:0;flex-grow:0}.initp__r_hp_pill{padding:2px 4px;border-radius:3px;color:white;text-align:center}.initp__h_score,.initp__r_score{flex:none;width:80px;text-align:center}.initp__h_score--compact,.initp__r_score--compact{width:40px}.initp__r_score{line-height:24px}.initp__r{width:100%;display:flex;justify-content:space-between;padding:2px 3px;border-bottom:1px solid #e0e0e0}.initp__r:last-of-type{border-bottom:0}.initp__r:hover{background:#00000010}.initp__r--active{background:#cfe5ff78}.initp__r--active:hover{background:#bfd5ef78}.night-mode .initp__header{border-color:#555}.lst__form-top{display:flex;flex-shrink:0}.lst__form-top>*{min-width:0}.lst__form-top>button{flex-shrink:0}.lst__form-top>*:first-child{border-bottom-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:0;border-right:0}.lst__form-top>*:last-child{border-bottom-right-radius:0;border-top-left-radius:0;border-bottom-left-radius:0}.lst__form-top>*:not(:first-child):not(:last-child){border-radius:0;border-right:0}.lst__wrp-search-glass{position:absolute;z-index:3;top:0;bottom:2px;left:6px;opacity:0.5}.lst__wrp-search-visible{position:absolute;top:0;right:6px;bottom:0;opacity:0.5}.lst__search{padding-left:23px}.lst__search--no-border-r{border-bottom-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:0;border-right:0}.lst__search--no-border-h{border-radius:0;border-right:0}*:first-child>.lst__search--no-border-h{border-top-left-radius:4px}div#showsearch{display:none}.psi-order-and-talent{font-style:italic}.psi-focus-title{font-style:italic;font-weight:bold}.stats-sub-header{font-style:italic;font-weight:bold}.stats-list-sub-header{font-style:italic;font-weight:bold;margin-left:5px}.list-entry-none{font-style:italic}.filter-sublist-item-wrapper{display:flex}.filter-sublist-item-text{margin-right:20px}input[type=checkbox].filter-checkbox{margin-left:auto;padding:0 10px}input[type=checkbox].readonly{pointer-events:none}#sublistcontainer>ul>li,#featlistcontainer>ul>li,#listcontainer>ul>li{padding:0}.lst__wrp-cells,#sublistcontainer .list a,#featlistcontainer .list a,#listcontainer .list a{color:inherit;display:flex;align-items:center;overflow:hidden;padding:0 2px 1px;text-decoration:none}.lst__wrp-cells.bk__contents_header_link,#sublistcontainer .list a.bk__contents_header_link,#featlistcontainer .list a.bk__contents_header_link,#listcontainer .list a.bk__contents_header_link{padding:0}.lst__wrp-cells.bk__contents_show_all,#sublistcontainer .list a.bk__contents_show_all,#featlistcontainer .list a.bk__contents_show_all,#listcontainer .list a.bk__contents_show_all{height:16px}.lst__row--focusable:focus{box-shadow:inset 0 0 0 200px rgba(0,107,196,0.3)}.sublist{display:none;position:relative;padding:0 0 2px;flex-direction:column;flex-shrink:0;height:130px}.sublist .list{margin-bottom:3px;padding-top:3px}.sublist--visible{display:flex}.sublist--resizable{margin-bottom:3px;min-height:75px;max-height:80%}.sublist--resizable::after{content:'...';background-color:#aaa4;border:1px solid rgba(204,204,204,0.4);position:absolute;bottom:0;height:1px;width:100%;cursor:ns-resize;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;line-height:1px;font-size:10px;text-align:center}.sublist__wrp-cols{display:flex}.sublist__wrp-cols>*:last-child{flex-grow:1}.ecgen__visible,.ecgen__visible--flex,.ecgen__visible--flex-col{display:none}.ecgen__btn_list{padding:0 1px;line-height:12px;font-size:9px;border-radius:3px}.ecgen__del_players,.ecgen__advanced_add_col,.ecgen__advanced_remove_col{padding:0 2px;font-size:10px;flex-shrink:0;flex-grow:0}.ecgen__cr_input{width:100%;text-align:center}.night-mode .ecgen__wrp{background:#222}.ecgen_active .ecgen__visible{display:block}.ecgen_active .ecgen__visible--flex{display:flex}.ecgen_active .ecgen__visible--flex-col{display:flex;flex-direction:column}.ecgen_active .ecgen__hidden{display:none !important}.ecgen_active .ecgen__name{width:26.66666666%}.ecgen_active .ecgen__name--sub{width:29.16666667%}tr.trait .rd__b--3,tr.action .rd__b--3,tr.reaction .rd__b--3,tr.legendary .rd__b--3,tr.mythic .rd__b--3,tr.lairaction .rd__b--3,tr.regionaleffect .rd__b--3{margin-bottom:1rem}tr.lairaction p,tr.regionaleffect p{margin-bottom:5px}.stats--book-large{border-radius:0;line-height:1.7;font-size:1em}.stats--book-large .rd__h--0{font-size:2.5em}.stats--book-large .rd__h--1{font-size:1.9em}.stats--book-large .rd__h--2{font-size:1.6em}.stats--book-large .rd__b--3,.stats--book-large table,.stats--book-large p{margin:0 0 15px;text-indent:0}.stats--book-large .rd__spc-inline-post{width:100%;height:15px}.stats--book-large .rd__spc-inline-post:last-child{height:0}.stats--book-large .rd__list{margin-bottom:15px}.stats--book-large .rd__list+.rd__list{margin-top:-10px}.stats--book-large .rd__list>.rd__list{margin-bottom:0}.stats--book-large .rd__list-hang-notitle p{text-indent:-1.1em}.stats--book-large .rd__list-hang-notitle>.rd__li{margin-bottom:5px}.stats--book-large .rd__list-hang-notitle>.rd__li>*{margin:0 0 5px}.stats--book-large .rd__p-cont-indent{text-indent:0;margin-top:5px}.stats--book-large .rd__quote-line{margin-bottom:10px}.stats--book-large .rd__quote-line--last{margin-bottom:5px}#listcontainer.book-contents>ul>li{max-height:initial}.book-view.view-col{flex:5}.book-contents .list li:hover{background:inherit}.book-contents .list li:active{color:inherit}.book-contents ul{margin-left:0;padding-left:20px}.book-contents .list li{max-height:none}.book-contents ul.contents>li:last-child,.book-contents ul.contents>li>ul>ul>li:last-child{border-bottom:0}.bk-contents ul,.bk-contents li,.book-contents ul.contents li{list-style:none}.bk-contents__sub_spacer--1{color:grey;display:inline-block;margin:0 4px}.book-contents ul.contents{height:initial;position:-webkit-sticky;position:sticky;top:0;overflow-y:auto;max-height:100vh;padding:0 0 22px}@media only screen and (min-width: 1600px){#listcontainer.book-contents{position:fixed;top:0;left:0;max-width:calc((100vw - 1170px) / 2);margin:0;min-height:100vh}.book-contents ul.contents{position:relative}}.book-contents li.contents-item>ul>li{font-weight:bold}.initial-message{color:#5e0000;font-family:'Taroca', serif;font-weight:500;text-align:center;text-transform:uppercase;line-height:1.3em;font-size:0.75em}.book-view .initial-message{font-size:1.8em}.stats .initial-message,.prntv .initial-message{font-size:1.4em}.book-contents .list li:hover span{display:initial}.book-contents span.sect{width:100%}.f-all-wrapper{position:fixed;z-index:100;right:calc((50vw - (1170px / 2)) + 1.5em);bottom:10px;left:calc(((100vw - (1170px * (4 / 6))) / 2) + 1.5em);padding:0 20px}@media (max-width: 1200px){.f-all-wrapper{right:calc((50vw - (970px / 2)) + 1.5em);left:calc(((100vw - (970px * (4 / 6))) / 2) + 1.5em)}}@media (max-width: 991px){.f-all-wrapper{right:calc(((100vw - 750px) / 2) + 1.5em);left:calc(((100vw - 750px) / 2) + 1.5em)}}@media only screen and (max-width: 768px){.f-all-wrapper{right:calc(((100vw - 750px) / 2) + 1.5em);left:calc(((100vw - 750px) / 2) + 1.5em)}}@media only screen and (max-width: 480px){.f-all-wrapper{right:calc(3.5em);left:calc(3.5em)}}.f-all-wrapper>input{width:100%}.f-all-out{box-shadow:0 6px 12px rgba(0,0,0,0.175);overflow-y:auto;max-height:400px;width:100%;border:1px solid rgba(0,0,0,0.15);padding:0.2em 0.7em;border-radius:0.2em;display:none}.f-result{display:flex;justify-content:space-between;margin:0;padding:5px 0}.f-result>span{display:inline-block}.highlight{background-color:#ff0}header p.lead{color:lightgrey}ul.list li:hover{background:lightgrey}.stats{background:#f6f4f2}@media only screen and (min-width: 1600px){#listcontainer.book-contents{box-shadow:0 6px 12px rgba(0,0,0,0.175);background:white}}.shadow-big{box-shadow:0 6px 12px rgba(0,0,0,0.175)}.night-mode .night__shadow-big{box-shadow:0 6px 12px rgba(0,0,0,0.175)}.stats--book{box-shadow:0 6px 12px rgba(0,0,0,0.175)}.stats--book ::-moz-selection{background:#242527;color:white;text-shadow:none}.stats--book ::selection{background:#242527;color:white;text-shadow:none}.prntv{position:fixed;z-index:100;top:0;right:0;bottom:0;left:0;width:100vw;height:100vh;background:white;display:flex;flex-direction:column}.prntv__spacer-name{font-family:'Andada', serif;font-variant:small-caps;text-transform:uppercase;font-weight:bold;padding:0 5px;height:16px;background:silver;font-size:12px;-moz-column-break-before:auto;break-before:auto;-moz-column-break-after:auto;break-after:auto;-moz-column-break-inside:avoid;break-inside:avoid}.prntv__wrp{-moz-column-count:6;column-count:6;-moz-column-gap:7px;column-gap:7px;-moz-column-break-inside:avoid;break-inside:avoid-column}@media (max-width: 2160px){.prntv__wrp{-moz-column-count:5;column-count:5}}@media (max-width: 1800px){.prntv__wrp{-moz-column-count:4;column-count:4}}@media (max-width: 1440px){.prntv__wrp{-moz-column-count:3;column-count:3}}@media (max-width: 1080px){.prntv__wrp{-moz-column-count:2;column-count:2}}@media only screen and (max-width: 720px){.prntv__wrp{-moz-column-count:1;column-count:1}}.prntv__wrp-item{margin:0;width:100%;display:inline-block;border-radius:0.2em;border:#ccc 1px solid}.prntv__no-breaks{-moz-column-break-before:auto;break-before:auto;-moz-column-break-after:auto;break-after:auto;-moz-column-break-inside:avoid;break-inside:avoid}.night-mode .prntv__wrp-item{border-color:#555}.stats--prntv{padding:0.3em;font-size:1em;background:none}.stats--prntv p{margin-bottom:4px}.mode div.pnl-menu{background:lightgrey}.stripe-odd:nth-child(odd),.stripe-even:nth-child(even),.stripe-odd-table>tbody>tr:nth-child(odd),.stripe-even-table>tbody>tr:nth-child(even){background:#c0c0c080}.stats .stripe-odd-table>tbody>tr:nth-child(odd),.stats .stripe-even-table>tbody>tr:nth-child(even){background:#cbbfaa80}.hwin .hoverborder,th.border{background:#5e0000}.hwin .hoverborder.hoverborder-book,.stats--book th.border{background:silver}.bk__stats--narrow{max-width:640px;margin:0 auto}.bk__contents-header{color:inherit;display:flex;align-items:center;overflow:hidden;margin-top:-1px;padding:1px 0 1px 5px;text-decoration:none;border-bottom:1px solid #ccc;border-top:1px solid #ccc;justify-content:space-between}.bk__nav-head-foot-item{min-width:75px}.bk__to-top{display:none}.bk__to-top--scrolled{display:flex;flex-direction:column;position:fixed;z-index:99;top:42px;right:10px;padding:2px 0}@media (max-width: 768px){.bk__to-top--scrolled{display:none}}.bk__overlay-loading{position:absolute;top:4px;right:0;bottom:4px;left:0;background:white;border-bottom:4px solid silver}.bk__wrp-btns-open-find{position:fixed;bottom:0;left:7px}.bk__btn-find{border-bottom-left-radius:0}.bk__btn-goto{border-bottom-right-radius:0}.night-mode .bk__contents-header{border-color:#555}.night-mode .bk__overlay-loading{background:#222;border-bottom-color:#565656}.bks__wrp-bookshelf{align-items:stretch}.bks__wrp-bookshelf-item,.bks__wrp-bookshelf-item:hover{box-shadow:0 6px 12px rgba(0,0,0,0.175);border:2px solid #ccc;color:#333;-webkit-text-decoration-color:#333;text-decoration-color:#333}.bks__bookshelf-item-name{min-height:40px;max-width:220px;font-weight:bold;flex-grow:1}.bks__bookshelf-image{width:300px;height:300px;-o-object-fit:none;object-fit:none}.night-mode .bks__wrp-bookshelf-item,.night-mode .bks__wrp-bookshelf-item:hover{background:#222;border-color:#555;color:#bbb;-webkit-text-decoration-color:#bbb;text-decoration-color:#bbb}.f-all-out{background:white}.life__output{background:lightgrey}.f-all-out>p:nth-child(odd){background:#f4f4f4}#msbcr tr:nth-child(even){background:lightgrey}#croutput{background:lightgrey}#lootgen hr{border-top:2px solid #ccc}.night-mode #lootgen hr{border-top:2px solid #555}li.contents-item{position:relative;border-bottom:0}li.contents-item>a{border-bottom:1px solid #ddd;border-top:1px solid #ddd;margin-top:-1px}li.contents-item>ul>li.active,li.contents-item>ul>ul.active>li>a{background:#f0f0f0}li.contents-item>ul>ul.active>li>a:hover{background:lightgrey}ul.list.books ul a:hover,ul.list.contents>li a:hover,ul.list.contents>li>ul.bk-contents>li>a>span:hover,.bk__contents-toggle-all:hover{background:lightgrey}ul.list.contents>li>ul.bk-contents>li a:hover{background:initial}ul.list.books>li>a>span.showhide:hover,ul.list.books>li>a>span.name:hover{background:lightgrey}.hwin .hoverborder .window-title{color:white;font-family:'good-pro-condensed', sans-serif}.rollbox{background:white}.rollbox .ipt-roll{background:white;border-radius:0}.rollbox-min,.rollbox .head-roll{background:lightgrey}.rollbox-min:hover,.rollbox .head-roll:hover{background:#e3e3e3}.rollbox .out-roll .out-roll-item{background:#b0b0b035}.rollbox .out-roll .out-roll-item .out-roll-item-code{font-family:'Courier New', monospace;background:white;border-radius:3px;padding:0 2px;cursor:pointer}.life__output-wrp-border{border:1px solid rgba(0,0,0,0.15)}.homebrew-section{background-color:rgba(255,0,0,0.05)}.homebrew-section .homebrew-float{float:right;border:1px dotted;margin-bottom:5px;margin-left:5px;padding-right:2px;padding-left:2px}.homebrew-section .homebrew-old-content{color:#a00;margin-left:5px}.homebrew-section .homebrew-notice::before{content:'Homebrew'}.homebrew-inline{background-color:rgba(255,0,0,0.05);-webkit-text-decoration:underline dotted;text-decoration:underline dotted}.stats tr.homebrew-hover>td{padding:5px 0.3em}.stats tr.homebrew-hover>td>div>*:last-child{margin-bottom:0}.don__bar{width:calc(100% - 40px);height:20px;margin:20px 20px 5px;box-shadow:0 0 3px 0 black;border-radius:4px;border:1px solid #ccc;background:#f0f0f0}.don__bar--home{width:calc(100% - 10px);height:20px;margin:5px}.don__bar_inner{height:18px;background:gold;width:0;text-align:right;color:#333}.toast{box-shadow:0 6px 12px rgba(0,0,0,0.175);position:fixed;z-index:2000;top:-50px;min-height:40px;min-width:600px;max-width:850px;display:flex;width:90vw;right:0;left:0;margin:0 auto;justify-content:space-between;align-items:center;padding:5px 15px;border:1px solid transparent;border-radius:4px;opacity:1;transition:top 84ms}.toast--animate:nth-of-type(1){top:5px;transition:top 84ms}.toast--animate:nth-of-type(2){top:50px;transition:top 84ms}.toast--animate:nth-of-type(3){top:95px;transition:top 84ms}.toast--animate:nth-of-type(4){top:140px;transition:top 84ms}.toast--deleted{z-index:1999}.toast__wrp-control{flex:0;display:flex;align-items:center;justify-content:center;align-self:stretch;margin:-5px -15px -5px 0}.toast__btn-close{height:100%;margin:0;border-top-left-radius:0;border-bottom-left-radius:0;border-top:0;border-right:0;border-bottom:0;border-left:1px solid #80808040;background:transparent}.toast__btn-close:hover,.toast__btn-close:focus{background:#80808020}.toast--type-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.toast--type-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.toast--type-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.toast--type-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.night-mode .toast--type-info{color:white;background-color:#354e5a;border-color:#bce8f1}.cards__btn-choose-icon{width:26px;height:26px;padding:0}.cards__disp-btn-icon{width:24px;height:24px;background-repeat:no-repeat;background-size:24px 24px;filter:invert(1)}.cards__disp-typeahead-icon{width:24px;height:24px;background-repeat:no-repeat;background-size:24px 24px;display:inline-block}.cards-cfg__ipt-color{width:40px}.night-mode .cards__disp-btn-icon{filter:initial}.night-mode .cards__disp-typeahead-img{filter:invert(1)}.form-control--error,.form-control--error[readonly],.form-control--error[disabled]{background-color:#ff000018;border:1px solid #843534}.form-control--error:focus,.form-control--error[readonly]:focus,.form-control--error[disabled]:focus{border-color:#843534;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px #ce8483}.form-control--warning,.form-control--warning[readonly],.form-control--warning[disabled]{background-color:#ffaa0018;border:1px solid #846334}.form-control--warning:focus,.form-control--warning[readonly]:focus,.form-control--warning[disabled]:focus{border-color:#846334;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px #ceaa83}.night-mode body{color:#bbb;background:#222 url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEYAAABGBAMAAACDAP+3AAAAGFBMVEUfHx8eHh4dHR0bGxshISEiIiIlJSUjIyM9IpsJAAAFjUlEQVR4AT3UuZLcOBaF4QuI2XJxboIhF/eQFe1WovoBAAqccpkaZpc5+4yrXa8/RGpx/lrIXPjFCYjTp9z8REqF4VYNWB3Av3zQJ6b6xBwlKB/9kRkCjXVwGH3ziK5UcjFHVkmgY6osiBsGDFfseqq2ZbTz7E00qBDpzOxnD7ToABeros1vM6MX0rBQaG1ith1A/HJkvkHxsPGJ82dP8vVCyWmbyPTaAfGzg40bgIdrv2f3pBVPycUcufx+BSUUWDuCZi6zBqdM50ElKYPODqtLDjc31rBb9CZ59lbN/JScuMxHLUBcGiy6QRH9zpwgZGhRj8qSydPVgNNVgbWqYX3HbM9K2rqTnKVmsmwKWzc1ffEd20+Zq3Ji65kl6TSjALNvzmJt4Pi2f1etytGJmy5erLAgbNY4bjykC3YCLIS3nSZMKgwRsBarWgjdeVzIEDzpTkoOUArTF4WFXYHwxY585sT0nmTYMxmXfs8fzwswfnam8TMU49bvqSRnyRPnqlno4tVQQiH2A9Za8tNTfXQ0lxbSxUaZna0uLlj9Q0XzD96CpsOZUftolINKBWJpAOoAJC0T6QqZnOtfvcfJFcDrD4Cuy5Hng316XrqzJ204HynyHwWed6i+XGF40Uw2T7Lc71HyssngEOrgONfBY7wvW0UZdVAma5xmSNjRp3xkvKJkW6aSg7PK4K0+mbKqYB0WYBgWwxCXiS74zBCVlEFpYQDEwjcA1qccb5yO6ZL8ozt/h3wHSCdWzLuqxU2ZZ9ev9MvRMbMvV9BQgN0qrFjlkzPQanI9nuaGCokVK2LV1Y2egyY1aFQGxjM9I7RBBAgyGEJtpKHP0lUySSeWCpyKHMT2pmM/vyP55u2Rw5lcSeabAfgiG5TPDX3uP3QvcoSipJXQByUCjS4C8VXqxEEZOJxzmJoyogFNJBRsCJs2XmoWWrWFqTsnbwtSn43gNFTTob9/SEpaPJNhUBKDGoZGCMINxvBv8vuKbb//lg/sK0wfPgBica/QsSk5F3KK4Ui6Yw+uv4+DWEOFbhdPOnbY5PLFpzrZMhakeqomY0Vz0TO+elQGTWdCk1IYFAOaoZg0IJQhT+YreXF+yia+O1cgtGufjXxQw28f85RPXfd15zv13ABoD15kB7FKJ/7pbHKP6+9TgNgkVj68NeV8Tp24f7OOndCgJzR3RNJBPNFReCmstMVqvjjzBoeK4GOFoBN32CPxu+4TwwBDa4DJTe/OU9c9ku7EGyfOVxh+fw9g/AATxPqKTEXJKEdCIBkB4iBUlO6MjUrWi6M5Kz31YAqFsYaCeB0KJC5d1+foo3LQWSfRaDrwdAQrMEC27yDZXJf7TlOJ2Bczr1di3OWvZB6XrvvqPuWJPDk9dAHgm7LvuZJTEdKqO3J3XgostArEnvkqgUznx3PX7cSzz1FXZyvakTA4XVVMbCPFPK1cFj66S0WoqQI1XG2uoU7CMPquO2VaUDJFQMdVgXKD2bpz6ufzzxXbxszHQ9fGO/F7A998yBQG6cShE+P+Pk7t1FwfF1QHN1Eui1VapRxCdj8tCtI1bog1Fo011Sx9u3o6c9bufI6wAT26Av9xJ+WWpTKbbBPp3K/1LbC4Vuhv396RCbJw4untjxVPndj+dIB9dVD8z2dylZ+6vMeJwbYChHJkvHV2J3fdHsJPASeHhrXq6QheXu1nBhUr5u6ryT0I13BFKD01ViZ/n3oaziRG7c6Ayg7g1LPeztNdT36ueMqcN4XGv3finjfv+7I/kMJ4d046MUanOA1QtMH1kLlfFasm99NiutSw63yNDeH4zeL1Uu8XKHNfcThPSSNwchGMbgUETScwkCcK77pH2jsgrAssvVyB8FLJ7GrmwyD8eVqsHoY/FwIv9T7lPu9+Yf8/9+w4nS1ma78AAAAASUVORK5CYII=") repeat scroll left top}.night-mode .page__header{color:#bbb;background:#333}.night-mode .page__title--home span{color:#909090}.night-mode .page__title--home::after{color:#909090}.night-mode .page__title{color:#d0d0d0}.night-mode .page__nav-inner>li.active>a,.night-mode .page__nav-inner>li.active>a:focus,.night-mode .page__nav-inner>li.active>a:hover{background-color:#333;border-top:0;border-color:#555;border-left-color:transparent;border-right-color:transparent;color:#d0d0d0}.night-mode .text-muted{color:#959595 !important}.night-mode h1,.night-mode h2,.night-mode h3,.night-mode h4,.night-mode h5,.night-mode h6{color:#bbb}.night-mode pre{color:#bbb;background:#222;border-color:#555}.night-mode hr{border-color:#555}.night-mode #legal-notice{background:#222;color:#999}.night-mode a,.night-mode .roller{color:#7db6e8}.night-mode .hwin__top-border-icon{color:#bbb}.night-mode .hwin__top-border-icon:hover{color:#c8c8c8}.night-mode .text-muted a,.night-mode .text-muted .roller{color:#6e8eab}.night-mode .nav>li:not(.active)>a{color:#bbb;background-color:#222;border:1px solid rgba(85,85,85,0.627451);border-top:0}.night-mode .nav>li:not(.active)>a:focus,.night-mode .nav>li:not(.active)>a:hover{background-color:#272727;color:white}.night-mode .nav>li.active>a:focus,.night-mode .nav>li.active>a:hover{color:white}.night-mode .nav li.active>a>span.page__nav-date{color:black !important}.night-mode .nav li.open>a,.night-mode .nav li.open>a:focus,.night-mode .nav li.open>a:hover{background-color:#272727;border-left:1px solid #337ab7;border-right:1px solid #337ab7;border-color:#337ab7}.night-mode .nav li.active.open>a,.night-mode .nav li.active.open>a:focus,.night-mode .nav li.active.open>a:hover{background-color:#333;color:white}.night-mode .btn:hover{box-shadow:0 0 1px 1px #888}.night-mode .btn[disabled]:hover{box-shadow:initial}.night-mode .btn-default,.night-mode .btn-default:hover,.night-mode .btn-default:focus,.night-mode .btn-default:active{background-color:#222;color:#bbb;border-color:#555}.night-mode .btn-primary,.night-mode .btn-primary:hover,.night-mode .btn-primary:focus,.night-mode .btn-primary:active{background-color:#2a4e6c;color:#bbb}.night-mode .btn-danger,.night-mode .btn-danger:hover,.night-mode .btn-danger:focus,.night-mode .btn-danger:active{background-color:#7e3a38;color:#bbb}.night-mode .btn-danger:hover{box-shadow:0 0 1px 1px #d43f3a}.night-mode .btn-warning,.night-mode .btn-warning:hover,.night-mode .btn-warning:focus,.night-mode .btn-warning:active{background-color:#896838;color:#bbb}.night-mode .btn-info,.night-mode .btn-info:hover,.night-mode .btn-info:focus,.night-mode .btn-info:active{background-color:#2a697c;color:#bbb}.night-mode .btn-success,.night-mode .btn-success:hover,.night-mode .btn-success:focus,.night-mode .btn-success:active{background-color:#427442;color:#bbb}.night-mode .btn-default.active{background-color:#888;box-shadow:inset 0 3px 7px #111e;color:#222}.night-mode .btn-primary.active,.night-mode .btn-danger.active,.night-mode .btn-warning.active,.night-mode .btn-info.active,.night-mode .btn-success.active{box-shadow:inset 0 3px 7px #111e}.night-mode .btn-nowrap{word-wrap:break-word;overflow-wrap:break-word}.night-mode dialog.dialog-modal,.night-mode .dropdown-menu{background:#222;color:#bbb;box-shadow:0 6px 12px rgba(0,0,0,0.56)}.night-mode .dropdown-menu>li>a,.night-mode .dropdown-menu>li>span{color:#bbb}.night-mode .dropdown-menu>li>a:focus,.night-mode .dropdown-menu>li>a:hover,.night-mode .dropdown-menu>li>span:focus,.night-mode .dropdown-menu>li>span:hover{background-color:#383838;color:white}.night-mode .dropdown-menu>li.ctx-danger>a,.night-mode .dropdown-menu>li.ctx-danger>span{color:white;background-color:#7e3a38}.night-mode .dropdown-menu>li.ctx-danger>a:focus,.night-mode .dropdown-menu>li.ctx-danger>a:hover,.night-mode .dropdown-menu>li.ctx-danger>span:focus,.night-mode .dropdown-menu>li.ctx-danger>span:hover{color:white;background-color:#ac2925}.night-mode .dropdown-menu>li.active>a,.night-mode .dropdown-menu>li.active>span{color:black;background:#e06565}.night-mode .dropdown-menu>li.disabled>a,.night-mode .dropdown-menu>li.disabled>span{color:#777}.night-mode .dropdown-menu>li.disabled>a:focus,.night-mode .dropdown-menu>li.disabled>a:hover,.night-mode .dropdown-menu>li.disabled>span:focus,.night-mode .dropdown-menu>li.disabled>span:hover{color:#777;background:transparent}.night-mode .dropdown-menu .divider{background-color:#555}.night-mode select,.night-mode input{background-color:#222;color:#bbb}.night-mode select option{color:#bbb;background:#222}.night-mode .list .row{background:#222}.night-mode .table-striped>tbody>tr:nth-of-type(odd){background-color:#444}.night-mode .alert-info{color:white;background-color:#354e5a}.night-mode .don__bar{background:#222}.night-mode .input-group-addon,.night-mode .form-control{background:#222;color:#bbb;border-color:#555}.night-mode .form-control[disabled]{background:#0e0e0e88}.night-mode .form-control--error,.night-mode .form-control--error[readonly],.night-mode .form-control--error[disabled]{background-color:#3e0000;border:1px solid #843534}.night-mode .form-control--error:focus,.night-mode .form-control--error[readonly]:focus,.night-mode .form-control--error[disabled]:focus{border-color:#843534;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px #ce8483}.night-mode .form-control--warning,.night-mode .form-control--warning[readonly],.night-mode .form-control--warning[disabled]{background-color:#483700;border-color:#846334}.night-mode .form-control--warning:focus,.night-mode .form-control--warning[readonly]:focus,.night-mode .form-control--warning[disabled]:focus{border-color:#846334;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px #ceaa83}.night-mode .omni__wrp-input--scrolled .omni__input{border-color:#555;background-color:#222;color:transparent}.night-mode .omni__wrp-input--scrolled .omni__input:focus,.night-mode .omni__wrp-input--scrolled .omni__input:focus-within,.night-mode .omni__wrp-input--scrolled .omni__input:active,.night-mode .omni__wrp-input--scrolled .omni__input:hover{color:#bbb}.night-mode .omni__wrp-input--scrolled .omni__submit{border-color:#555}@media (min-width: 992px){.night-mode .omni__input{border-top-color:transparent}}.night-mode .omni__input:focus{border-color:#66afe9}.night-mode .omni__submit{border-top-color:#555}@media (min-width: 992px){.night-mode .omni__submit{border-top-color:transparent}}.night-mode .omni__submit.btn-default:active:focus,.night-mode .omni__submit.btn-default:active:hover,.night-mode .omni__submit.btn-default{background-color:#222;color:#bbb}.night-mode #pointbuy input[type='number']{border:1px solid #555;outline-offset:0;outline:none}.night-mode #pointbuy input.form-control--error[type='number']{border:1px solid red}.night-mode ul.list li:hover{background:#333}.night-mode .book-contents .list li:hover{background:initial}.night-mode .list--stats>.row,.night-mode .stats{background:#222}@media only screen and (min-width: 1600px){.night-mode #listcontainer.book-contents{background:#222;border-right:1px solid #404040}}.night-mode .hwin .hoverborder,.night-mode th.border,.night-mode .stats--book th.border{background:#565656}.night-mode .hwin__wrp-table{background:#222}.night-mode .wrp-stats-table{border-top:2px solid #565656;border-bottom:2px solid #565656}.night-mode .stats--book ::-moz-selection{color:#242527;background:white}.night-mode .stats--book ::selection{color:#242527;background:white}.night-mode tr.text td{color:#bbb !important}.night-mode tr.text td{color:#bbb !important}.night-mode .mon__btn-token-cycle{color:#ddd;background:rgba(255,255,255,0.15)}.night-mode .mon__btn-token-cycle:hover{color:#bbb}.night-mode .mon__token-footer{color:#ddd;background:rgba(255,255,255,0.15)}.night-mode tr.trait td,.night-mode tr.action td,.night-mode tr.reaction td,.night-mode tr.legendary td{color:#bbb !important}.night-mode .life__output{background:#222}.night-mode .f-all-wrapper>input,.night-mode .f-all-out,.night-mode .omni__output{background:#303030}.night-mode .f-all-out>p:nth-child(odd){background:#202020}.night-mode .omni__paginate-ctrl:hover{color:#999}.night-mode #msbcr tr:nth-child(even){background:rgba(0,0,0,0.31)}.night-mode #croutput{background:rgba(0,0,0,0.31)}.night-mode .stats .divider div{background-color:#d29a38}.night-mode .wrp-stats-table{background:#222}.night-mode .stripe-odd:nth-child(odd),.night-mode .stripe-even:nth-child(even),.night-mode .stripe-odd-table>tbody>tr:nth-child(odd),.night-mode .stripe-even-table>tbody>tr:nth-child(even){background-color:#4e4e4e80}.night-mode #please-select-message.showing>td{color:#d29a38}.night-mode #actions td,.night-mode #reactions td,.night-mode #legendaries td,.night-mode #lairactions td,.night-mode #regionaleffects td{border-bottom-color:#d29a38;color:#d29a38}.night-mode .mon__stat-header-underline{border-bottom-color:#d29a38;color:#d29a38}.night-mode .sourcePHB{color:#337ab7 !important;border-color:#337ab7 !important;-webkit-text-decoration-color:#337ab7 !important;text-decoration-color:#337ab7 !important}.night-mode .sourceSADS{color:#4f63f5 !important;border-color:#4f63f5 !important;-webkit-text-decoration-color:#4f63f5 !important;text-decoration-color:#4f63f5 !important}.night-mode .prntv{background:#272727}.night-mode .prntv__spacer-name{background-color:#565656}.night-mode ul.list.encounters>li>span:first-child,.night-mode ul.list.names>li>span:first-child{color:#999}.night-mode li.contents-item>a{border-bottom:1px solid #404040;border-top:1px solid #404040}.night-mode li.contents-item>ul>li.active,.night-mode li.contents-item>ul>ul.active>li>a{background:#303030}.night-mode ul.list.books>li>a:hover,.night-mode ul.list.adventures>li>a:hover,.night-mode li.contents-item>ul>ul.active>li>a:hover,.night-mode ul.list.books ul a:hover,.night-mode ul.list.contents>li a:hover,.night-mode ul.list.contents>li>ul.bk-contents>li>a>span:hover,.night-mode ul.list.books>li>a>span.showhide:hover,.night-mode ul.list.books>li>a>span.name:hover,.night-mode .bk__contents-toggle-all:hover{background:#333}.night-mode ul.list.contents>li>ul.bk-contents>li a:hover{background:initial}.night-mode ul.list.encounters>li>ul>li>a:hover,.night-mode ul.list.names>li>ul>li>a:hover,.night-mode ul.bk-headers>li>a:hover,.night-mode li.contents-item>ul>ul.active>li>a:hover,.night-mode ul.list.contents>li>ul.bk-headers a:hover{background:#333}.night-mode ul.list.encounters li:nth-child(odd),.night-mode ul.list.names li:nth-child(odd),.night-mode ul.list.books>li:nth-child(odd),.night-mode ul.bk-contents>li:nth-child(odd),.night-mode ul.list.contents>li:nth-child(odd){background:none}.night-mode ul.list.encounters li:nth-child(odd):hover,.night-mode ul.list.encounters li:nth-child(even):hover,.night-mode ul.list.books li:nth-child(odd):hover,.night-mode ul.list.books li:nth-child(even):hover,.night-mode ul.bk-contents li:nth-child(odd):hover,.night-mode ul.list.names li:nth-child(even):hover,.night-mode ul.list.names li:nth-child(odd):hover{background:none}.night-mode .lst--border{border-color:#444}.night-mode .list-multi-selected .lst--border{border-color:#416482}.night-mode #rulescontent caption{color:#bbb}.night-mode tr.trait td{color:#bbb !important}.night-mode ::-webkit-scrollbar-thumb{background:#475b6b}.night-mode .ui-slider{background:#222}.night-mode .ui-slider .ui-slider-tip{background:#333;color:#bbb}.night-mode .ui-slider-pips .ui-slider-pip{color:#ccc}.night-mode .ui-slider-pips:not(.ui-slider-disabled) .ui-slider-pip:hover .ui-slider-label,.night-mode .ui-slider .ui-slider-label{color:#7db6e8}.night-mode .ui-slider-pips .ui-slider-line{background-color:#337ab7}.night-mode .ui-slider .ui-slider-handle,.night-mode .ui-slider .ui-slider-range{background:rgba(128,128,128,0.5)}.night-mode .ui-slider .ui-slider-handle.ui-state-active{border:1px solid white}.night-mode .mon__cr_slider_wrp{background:#222;color:#bbb}.night-mode .hwin table.summary-noback th,.night-mode .hwin table.summary th{color:#bbb}.night-mode .hwin .hoverborder .window-title{color:#bbb}.night-mode .rollbox{background:#272727}.night-mode .rollbox .ipt-roll{background:#272727}.night-mode .rollbox-min,.night-mode .rollbox .head-roll{background:#101010}.night-mode .rollbox-min:hover,.night-mode .rollbox .head-roll:hover{background:#161616}.night-mode .rollbox .out-roll .out-roll-item{background:rgba(80,80,80,0.4)}.night-mode .rollbox .out-roll .out-roll-item .out-roll-item-code{background:#555}.night-mode .life__output-wrp-border{border:1px solid rgba(255,255,255,0.15)}.night-mode .gm-screen-panel{background-color:#303030}.night-mode .gm-screen-panel.faux-hover{background:#404040}.night-mode .gm-screen-panel.faux-hover .panel-content-wrapper-inner::after{background:#40404080}.night-mode .panel-control-icon{color:rgba(255,255,255,0.7)}.night-mode .panel-add{color:#ccc}.night-mode .btn-panel-add:hover,.night-mode .btn-panel-add.faux-hover{background:#404040}.night-mode .panel-content-wrapper-inner{background:#222}.night-mode .panel-addmenu-tab-head[active='true']{background-color:rgba(255,255,255,0.25098) !important}.night-mode .panel-content-wrapper-inner td div.border,.night-mode .hwin td div.border{background-color:#d29a38}.night-mode .initial-message{color:#d29a38}.night-mode .ui-modal__row-sep{background:#999}.night-mode .panel-content-textarea{background:#222}.night-mode .gm-init-row.gm-init-row-active input,.night-mode .gm-init-row.gm-init-row-active .init-wrp-creature{background:#8dc1ff20}.night-mode .gm__panel-bg{background:#222}.night-mode .content-tab-bar{background:#222}.night-mode .homebrew-section{background-color:rgba(255,0,0,0.1)}.night-mode .homebrew-section .homebrew-old-content{color:#f99}.night-mode .homebrew-inline{background-color:rgba(255,0,0,0.1)}.night-mode .highlight{color:#222;background-color:#cc0}.night-mode .ace_editor{background:#222;color:#bbb}.night-mode .ace_editor .ace_gutter{background:#333;color:#bbb}.night-mode .ace_editor .ace_gutter-active-line{background:#222}.night-mode .ace_editor .ace_marker-layer .ace_selection{background:rgba(181,213,255,0.4)}.night-mode .ace_editor .ace_marker-layer .ace_active-line{background:rgba(0,116,255,0.3)}.night-mode .ace_editor .ace_cursor{color:#bbb}.night-mode .ace_editor .ace_marker-layer .ace_step{background:#665200}.night-mode .ace_editor .ace_indent-guide{background:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAEklEQVQImWOQkpLyZfD09PwPAAfYAnaStpHRAAAAAElFTkSuQmCC") right repeat-y}.night-mode .sidemenu__row__divider{background:#9998}.night-mode .sidemenu{background:#222}.night-mode .sidemenu__toggle{background:#444}.night-mode .sidemenu__burger{background:#222}.night-mode .initp__r--active{background:#8dc1ff20}.night-mode .ui-modal__row--cb:hover{background:#383838}.edge__body{overflow:hidden !important}.edge__overlay{background:darkred;position:fixed;z-index:99999;top:0;right:0;bottom:0;left:0;width:100vw;height:100vh;color:white;font-family:monospace}.edge__title{font-size:72px}.edge__btn-close{position:absolute;top:8px;right:8px;font-size:16px}.edge__link{color:white !important;text-decoration:underline}.TEST_LEADER{background:fuchsia;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;color:white;width:728px;height:90px}.TEST_RHS_TOP{background:fuchsia;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;color:white;width:300px;height:600px}.TEST_RHS_BOTTOM{background:lime;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;color:white;width:300px;height:250px}@supports (-webkit-touch-callout: none){select.form-control{color:black}}@media print{@page{margin:10mm 15mm}body{color:black !important;overflow:visible !important;background:none !important;font-size:10px !important}header,nav{display:none !important}strong,.bold{font-weight:600}a[href]::after{content:none !important}.help,.help--hover{text-decoration:none !important}.no-print,.btn-reroll,.rollbox-min,.rollbox,.spacer-name{display:none !important}a,.roller{color:black !important}.stats,.stats.monster{background:transparent !important}.stats-source,.stats th{color:black !important}th.border,.wrp-stats-table th.border{background:black !important;height:1px !important}td.divider div{height:1px !important;background:black !important;margin:0 !important}.stats td,.stats th{padding:1px 2px !important}.stats--book-large .rd__b--3,.stats--book-large table,.stats--book-large p{margin:0 0 3px !important}.stats--book{box-shadow:none !important}#listcontainer,#stat-tabs,.wrp-footer-buttons,#float-token,.btn-name-pronounce,.btn-stats-name{display:none !important}.wrp-stats-table{border-top:0 !important;border-bottom:0 !important}#sticky-nav{display:none !important}#classtable table tr:nth-child(odd) td{background:lightgrey !important}.cls-prntv__wrp-tabs{display:none !important}.mon__btn-scale-lvl,.mon__btn-scale-lvl{display:none !important}.mon__name--token{padding-right:0 !important}.mon__stat-header-underline{border-bottom:1px solid black !important;color:black !important}.rd__b-inset{background:none !important;box-shadow:none !important;border-color:black !important}.bk__to-top,.bk__nav-head-foot-item{display:none !important}.prntv-active>*:not(.prntv){display:none !important}.prntv-active .prntv{position:relative;top:unset;right:unset;bottom:unset;left:unset;width:calc(100vw - 20px);display:block}.prntv-active .prntv__scroller{overflow:visible !important;height:initial}.prntv-active .prntv__wrp-controls,.prntv-active .prntv__spacer-name,.prntv-active .prntv__footer{display:none !important}.prntv-active .prntv__no-breaks{-moz-column-break-before:unset !important;break-before:unset !important;-moz-column-break-after:unset !important;break-after:unset !important;-moz-column-break-inside:unset !important;break-inside:unset !important}.prntv-active .prntv th.border{border:0 !important;padding:0 !important}.prntv-active .prntv .pnl-menu{display:none}.stats--prntv{-moz-column-break-before:auto !important;break-before:auto !important;-moz-column-break-after:auto !important;break-after:auto !important;-moz-column-break-inside:avoid !important;break-inside:avoid !important}}@font-face{font-family:'Convergence';font-style:normal;font-weight:400;src:local("Convergence-Regular"),url("../fonts/Convergence-Regular.ttf") format("truetype")}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;src:local("Roboto"),url("../fonts/Roboto-regular.ttf") format("truetype")}@font-face{font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;src:local("glyphicons-halflings-regular"),url("../fonts/glyphicons-halflings-regular.ttf") format("truetype")}@font-face{font-family:'Blambot Casual';src:local("Blambot-Casual"),url("../fonts/Blambot-Casual-Regular.ttf") format("truetype")}@keyframes kf-fade-out{from{opacity:1}to{opacity:0}}.linked-titles .rd__h--0 .entry-title-inner:hover::before{font-size:50%}.linked-titles .rd__h--1 .entry-title-inner:hover::before{font-size:55%}.linked-titles .rd__h--2 .entry-title-inner:hover::before{font-size:60%}.linked-titles .rd__h .entry-title-inner{cursor:copy}.linked-titles .rd__h .entry-title-inner:hover::before{content:' 🔗';color:rgba(0,0,0,0.2);position:relative;float:left;width:14px;height:14px;right:20px;margin-right:-30px;font-size:85%}@media (max-width: 991px){.dropdown-menu-filter{max-height:525px}}.fltr__btn-close{min-width:100px}.fltr__minimal-hide{display:none}.fltr__no-items{display:none !important}.fltr__h{display:flex;justify-content:space-between;font-size:15px;align-items:center}@media only screen and (max-width: 768px){.fltr__h{flex-direction:column}.fltr__h--multi{flex-direction:initial}}@media only screen and (max-width: 768px){.fltr__h-text{align-self:flex-start}}@media only screen and (max-width: 768px){.fltr__h-wrp-btns-outer{width:100%;flex-direction:column;align-items:initial !important}.fltr__h-wrp-btns-outer>*{width:100%;margin:.25rem !important}}@media only screen and (max-width: 768px){.fltr__h-wrp-state-btns-outer{flex-direction:column}.fltr__h-wrp-state-btns-outer>*{width:100%}}.fltr__h-btn-mobile-settings{min-width:30px}.fltr__h-btn-logic{min-width:46px;font-weight:bold}.fltr__h-btn-logic.btn-xxs{min-width:34px}.fltr__h-btn-logic--blue{color:#337ab7}.fltr__h-btn-logic--blue:hover{color:#2a6496}.fltr__h-btn-logic--red{color:#8a1a1b}.fltr__h-btn-logic--red:hover{color:#711617}.fltr__h-btn--all,.fltr__h-btn--all:focus,.fltr__h-btn--all:hover{text-decoration:underline;-webkit-text-decoration-color:#337ab7;text-decoration-color:#337ab7}.fltr__h-btn--clear,.fltr__h-btn--clear:focus,.fltr__h-btn--clear:hover{text-decoration:underline;-webkit-text-decoration-color:#c3c3c3;text-decoration-color:#c3c3c3}.fltr__h-btn--none,.fltr__h-btn--none:focus,.fltr__h-btn--none:hover{text-decoration:underline;-webkit-text-decoration-color:#8a1a1b;text-decoration-color:#8a1a1b}.fltr__summary_item{cursor:help;margin:0 3px;font-weight:bold;font-size:12px;line-height:12px}.fltr__summary_nest{display:flex;padding:2px 0;font-size:12px;align-items:center}.fltr__summary_item--include{color:#337ab7;text-shadow:0 0 1px #337ab7}.fltr__summary_item--exclude{color:#8a1a1b;text-shadow:0 0 1px #8a1a1b}.fltr__summary_item_spacer{margin:0 3px;padding-left:1px;cursor:default;background:rgba(204,204,204,0.627451);min-height:12px}.fltr__btn_nest{margin:2px;padding:2px 6px;white-space:nowrap;text-align:center;font-size:10.5px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background:#f0f0f0;border:1px solid #ccc}.fltr__btn_nest:hover{background-color:#e6e6e6}.fltr__btn_nest--include{background:repeating-linear-gradient(135deg, #337ab7, #337ab7 11px, transparent 11px, transparent 22px)}.fltr__btn_nest--include:hover{background:repeating-linear-gradient(135deg, #2d6da3, #2d6da3 11px, transparent 11px, transparent 22px)}.fltr__btn_nest--include span{background:white;padding:1px 0}.fltr__btn_nest--include-all{background:#337ab7;color:white}.fltr__btn_nest--include-all:hover{background:#2d6da3}.fltr__btn_nest--exclude{background:repeating-linear-gradient(135deg, transparent, transparent 11px, #8a1a1b 11px, #8a1a1b 22px)}.fltr__btn_nest--exclude:hover{background:repeating-linear-gradient(135deg, transparent, transparent 11px, #751617 11px, #751617 22px)}.fltr__btn_nest--exclude span{background:white;padding:1px 0}.fltr__btn_nest--exclude-all{background:#8a1a1b;color:white}.fltr__btn_nest--exclude-all:hover{background:#751617}.fltr__btn_nest--both{background:repeating-linear-gradient(135deg, #337ab7, #337ab7 11px, #8a1a1b 11px, #8a1a1b 22px);color:white}.fltr__btn_nest--both:hover{background:repeating-linear-gradient(135deg, #2d6da3, #2d6da3 11px, #751617 11px, #751617 22px)}.fltr__dropdown-divider{border-bottom:#ccc 1px dotted;width:100%}@media only screen and (max-width: 768px){.fltr__dropdown-divider{box-shadow:inset 0 0 2px 2px #eee;height:7px;flex-shrink:0;border:0;background:#ccc;margin-top:0.5rem;margin-bottom:0.75rem !important}}.fltr__dropdown-divider--indented{opacity:0.4;width:calc(100% - 80px);margin:0 auto}.fltr__dropdown-divider--sub{border-style:dashed;width:calc(100% - 2rem);border-color:rgba(204,204,204,0.627451)}.fltr__pill{margin:2px;padding:2px 6px;background:#f0f0f0;white-space:nowrap;text-align:center;font-size:10.5px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid #ccc;float:left}.fltr__pill:hover{background-color:#e6e6e6}.fltr__pill[state=yes]{background:#337ab7;color:white;border:1px solid #22527b}.fltr__pill[state=yes]:hover{background:#2d6da3}.fltr__pill[state=no]{background:#8a1a1b;color:white;border:1px solid #4a0e0e}.fltr__pill[state=no]:hover{background:#751617}.fltr__wrp-pills,.fltr__wrp-pills--sub{flex-wrap:wrap;margin-bottom:7px}.fltr__wrp-pills{display:block}.fltr__wrp-pills::after{content:'';clear:both;display:block}.fltr__wrp-pills--flex,.fltr__wrp-pills--sub{display:flex}.fltr__wrp-subs{display:block}.fltr__mini-view{border-left:#ccc 1px solid;border-right:#ccc 1px solid;background:linear-gradient(to top, #ccc, whitesmoke 1px);display:flex;flex-wrap:wrap;flex-shrink:0}.fltr__mini-view--no-sort-buttons{border-bottom:1px solid #ccc;background:whitesmoke;border-bottom-left-radius:3px;border-bottom-right-radius:3px;min-height:3px}.fltr__mini-pill{margin:1px 2px;padding:1px 2px;white-space:nowrap;text-align:center;font-size:9.4px;border-radius:3px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:none}.fltr__mini-pill:hover{-webkit-text-decoration:red line-through;text-decoration:red line-through}.fltr__mini-pill[state=yes]{background:#337ab7;color:white;display:block}.fltr__mini-pill--default-sel[state=yes]{background:#48637a}.fltr__mini-pill[state=no]{background:#822000;color:white;display:block}.fltr__mini-pill--default-desel[state=no]{background:#7a564f}.fltr__h-summary{position:relative;display:inline-block;vertical-align:middle;box-sizing:border-box;font-size:11px;line-height:22px;margin-left:auto}.fltr__h-summary-filtering{color:#333;text-shadow:0 0 1px #333}.fltr__h-btn-toggle-display{min-width:43px}.fltr__slider{width:100%}.fltr__slider.ui-slider-pips{margin:5px 40px 35px}.fltr__slider:not(.ui-slider-disabled) .ui-slider-pip:hover .ui-slider-label,.fltr__slider .ui-slider-label{color:#337ab7}.fltr__slider .ui-slider-pip-label .ui-slider-label{display:flex;justify-content:center}.fltr__slider .ui-slider-handle .ui-slider-tip{white-space:nowrap;width:60px;margin-left:-30px}.fltr__range-inline-label{margin-left:15px;flex-shrink:0;min-width:75px;text-align:right;font-style:italic}.fltr__group-comb-toggle{font-style:italic;cursor:pointer;letter-spacing:-1px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.fltr__hidden--search{display:none !important}.fltr-src__wrp-slider{background:#f0f0f0;border-radius:4px}.fltr-src__slider .ui-slider-pip .ui-slider-label{top:10px;margin-left:-36px;width:72px}.fltr-src__slider .ui-slider-handle .ui-slider-tip{margin-left:-36px;width:72px}.fltr-cls__tgl{width:16px;height:16px;padding:0;flex-shrink:0;flex-grow:0;display:inline-block;cursor:pointer;border:1px solid #ccc;border-radius:4px;outline:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border-radius:7px}.fltr-cls__tgl:active{box-shadow:0 0 2px 0 #000b}.fltr-cls__tgl.active{background:#666;border-color:#8c8c8c}.ui-slider-tip{pointer-events:none}@font-face{font-family:'Convergence';font-style:normal;font-weight:400;src:local("Convergence-Regular"),url("../fonts/Convergence-Regular.ttf") format("truetype")}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;src:local("Roboto"),url("../fonts/Roboto-regular.ttf") format("truetype")}@font-face{font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;src:local("glyphicons-halflings-regular"),url("../fonts/glyphicons-halflings-regular.ttf") format("truetype")}@font-face{font-family:'Blambot Casual';src:local("Blambot-Casual"),url("../fonts/Blambot-Casual-Regular.ttf") format("truetype")}@keyframes kf-fade-out{from{opacity:1}to{opacity:0}}.linked-titles .rd__h--0 .entry-title-inner:hover::before{font-size:50%}.linked-titles .rd__h--1 .entry-title-inner:hover::before{font-size:55%}.linked-titles .rd__h--2 .entry-title-inner:hover::before{font-size:60%}.linked-titles .rd__h .entry-title-inner{cursor:copy}.linked-titles .rd__h .entry-title-inner:hover::before{content:' 🔗';color:rgba(0,0,0,0.2);position:relative;float:left;width:14px;height:14px;right:20px;margin-right:-30px;font-size:85%}.night-mode .fltr__btn_nest{background:#222;border-color:#555}.night-mode .fltr__btn_nest:hover{background:#323232}.night-mode .fltr__btn_nest--include{background:repeating-linear-gradient(135deg, #337ab7, #337ab7 11px, transparent 11px, transparent 22px)}.night-mode .fltr__btn_nest--include:hover{background:repeating-linear-gradient(135deg, #2d6da3, #2d6da3 11px, transparent 11px, transparent 22px)}.night-mode .fltr__btn_nest--include span{background:#222}.night-mode .fltr__btn_nest--include-all{background:#337ab7}.night-mode .fltr__btn_nest--include-all:hover{background:#2d6da3}.night-mode .fltr__btn_nest--exclude{background:repeating-linear-gradient(135deg, transparent, transparent 11px, #8a1a1b 11px, #8a1a1b 22px)}.night-mode .fltr__btn_nest--exclude:hover{background:repeating-linear-gradient(135deg, transparent, transparent 11px, #751617 11px, #751617 22px)}.night-mode .fltr__btn_nest--exclude span{background:#222}.night-mode .fltr__btn_nest--exclude-all{background:#8a1a1b}.night-mode .fltr__btn_nest--exclude-all:hover{background:#751617}.night-mode .fltr__btn_nest--both{background:repeating-linear-gradient(135deg, #337ab7, #337ab7 11px, #8a1a1b 11px, #8a1a1b 22px)}.night-mode .fltr__btn_nest--both:hover{background:repeating-linear-gradient(135deg, #2d6da3, #2d6da3 11px, #751617 11px, #751617 22px)}.night-mode .fltr__dropdown-divider{border-color:#555}@media only screen and (max-width: 768px){.night-mode .fltr__dropdown-divider{box-shadow:inset 0 0 2px 2px #333;background:#555}}.night-mode .fltr__dropdown-divider--sub{border-color:rgba(85,85,85,0.627451)}.night-mode .fltr__pill{border-color:#555}.night-mode .fltr__pill[state=ignore]{background:#222}.night-mode .fltr__pill[state=ignore]:hover{background:#323232}.night-mode .fltr__pill[state=yes]{border-color:#22527b}.night-mode .fltr__pill[state=no]{border-color:#4a0e0e}.night-mode .fltr__mini-view{background:#343434;border-color:#555;background:linear-gradient(to top, #555, #343434 1px)}.night-mode .fltr__h-btn-logic--blue{color:#337ab7}.night-mode .fltr__h-btn-logic--blue:hover{color:#7398b7}.night-mode .fltr__h-btn-logic--red{color:#8a1a1b}.night-mode .fltr__h-btn-logic--red:hover{color:#8a4b4b}.night-mode .fltr-src__wrp-slider{background:#333a}.night-mode .fltr-cls__tgl{background:#222;border-color:#555}.night-mode .fltr-cls__tgl:active{box-shadow:0 0 3px 0 #fffb}.night-mode .fltr-cls__tgl.active{background:#555;border-color:#6f6f6f}@font-face{font-family:'Convergence';font-style:normal;font-weight:400;src:local("Convergence-Regular"),url("../fonts/Convergence-Regular.ttf") format("truetype")}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;src:local("Roboto"),url("../fonts/Roboto-regular.ttf") format("truetype")}@font-face{font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;src:local("glyphicons-halflings-regular"),url("../fonts/glyphicons-halflings-regular.ttf") format("truetype")}@font-face{font-family:'Blambot Casual';src:local("Blambot-Casual"),url("../fonts/Blambot-Casual-Regular.ttf") format("truetype")}@keyframes kf-fade-out{from{opacity:1}to{opacity:0}}.linked-titles .rd__h--0 .entry-title-inner:hover::before{font-size:50%}.linked-titles .rd__h--1 .entry-title-inner:hover::before{font-size:55%}.linked-titles .rd__h--2 .entry-title-inner:hover::before{font-size:60%}.linked-titles .rd__h .entry-title-inner{cursor:copy}.linked-titles .rd__h .entry-title-inner:hover::before{content:' 🔗';color:rgba(0,0,0,0.2);position:relative;float:left;width:14px;height:14px;right:20px;margin-right:-30px;font-size:85%}.ui__btn-xxl-square{width:110px;height:110px}.ui__ipt-color{width:40px;padding:0}.ui__ipt-color::-webkit-color-swatch-wrapper{padding:3px}.ui__ipt-color::-webkit-color-swatch{border:1px solid #ccc}.ui-list__wrp{transform:translateZ(0);font-size:11.2px}.ui-list__wrp-preview{font-size:13.5px}.ui-source__row{margin-left:calc(-96px - 0.5rem)}.ui-source__name{min-width:96px;white-space:nowrap;text-align:right}.ui-source__divider{height:1px;width:30px;background:#ccc;display:inline-block;margin:0 3px}.ui-modal__body-active{overflow-y:hidden !important}.ui-modal__row{margin-bottom:5px;display:flex;justify-content:space-between;align-items:center;font-weight:initial;min-height:30px}.ui-modal__row:first-of-type{margin-top:-1px}.ui-modal__row--cb{padding:0 3px;border-radius:3px}.ui-modal__row--cb:hover{background:whitesmoke}.ui-modal__row--sel{padding:0 3px}.ui-modal__row--stats-header{min-height:initial;font-weight:bold;font-size:12px;margin-bottom:0}.ui-modal__row--stats{flex-direction:column}.ui-modal__row>*{margin-right:5px}.ui-modal__row>*:last-child{margin-right:0}.ui-modal__row-sep{height:1px;width:calc(100% - 12px);margin:2px 2px 7px;background:#ccc}.ui-modal__header--border{border-bottom:1px solid rgba(204,204,204,0.627451)}.ui-modal__header--fullscreen{box-shadow:0 3px 6px rgba(0,0,0,0.175)}.ui-modal__footer{border-top:1px solid rgba(204,204,204,0.627451)}.ui-modal__footer--fullscreen{box-shadow:0 3px 6px rgba(0,0,0,0.175)}.ui-modal__overlay{position:fixed;z-index:1000;top:0;left:0;width:100vw;height:100vh;display:flex;justify-content:center;align-items:center;background-color:rgba(69,69,69,0.533333)}.ui-modal__overlay-blind{background-color:white}.ui-modal__inner{position:relative;z-index:1001;top:initial;left:initial;margin:60px auto;padding:5px 10px;float:none;height:400px;min-width:600px;max-height:400px;min-height:400px}@media (max-width: 767px){.ui-modal__inner{min-width:0}}@media (min-width: 768px){.ui-modal__inner{max-width:750px}}@media (min-width: 992px){.ui-modal__inner{max-width:970px}}@media (min-width: 1200px){.ui-modal__inner{max-width:1170px}}.ui-modal__inner--no-min-height{min-height:0;height:initial}.ui-modal__inner--uncap-height{max-height:calc(100% - 120px);height:initial}.ui-modal__inner--uncap-width{max-width:calc(100% - 180px);width:initial}.ui-modal__inner--max-width-640p{max-width:640px}.ui-modal__inner--mode-fullscreen{max-height:0;height:100vh;flex-shrink:0;min-height:100vh;border-radius:0;box-shadow:none;border:0}.ui-modal__scroller{height:100%;width:100%;min-height:0;overflow-y:auto}.ui-search__wrp-output{position:relative;height:100%;width:100%;display:flex;flex-direction:column}.ui-search__wrp-controls{width:100%;display:flex;z-index:900}.ui-search__wrp-controls--in-tabs{margin-top:-1px}.ui-search__wrp-results{position:relative;padding:3px;transform:translateZ(0);height:100%;overflow-y:auto;overflow-x:hidden;font-size:11.2px}.ui-search__row{cursor:pointer;font-weight:bold;padding:1px 2px;display:flex;justify-content:space-between;border-bottom:1px solid #ccc}.ui-search__row:hover{background:lightgrey}.ui-search__row:focus{box-shadow:inset 0 0 0 200px rgba(0,107,196,0.3)}.ui-search__sel-category{border-radius:0;max-width:180px;flex-shrink:0;border-right:0}.ui-search__ipt-search{border-radius:0;width:100%}.ui-search__ipt-search-sub-ipt[type=radio]{display:inline-block;margin:0 3px 0 0}.ui-search__ipt-search-sub-ipt-custom{max-width:30px;border-radius:0;border-left:0;margin-right:-1px;border-right-color:#e0e0e0;border-left-color:#e0e0e0;padding-left:0}.ui-search__ipt-search-sub-ipt-custom[type=number]::-webkit-inner-spin-button{margin:0;-webkit-appearance:none}.ui-search__ipt-search-sub-wrp{flex-shrink:0;margin-bottom:0;padding:5px;font-weight:normal;border:1px solid #ccc;height:34px;border-left:0;display:flex}.ui-search__ipt-search-sub-lbl{display:flex;align-items:center;height:100%}.ui-search__ipt-search-sub-lbl:not(:last-child){margin-right:7px}.ui-search__message{font-size:1.4rem;width:100%;height:100%;display:flex;justify-content:center;align-items:center;font-family:'Andada', serif;font-variant:small-caps;font-weight:500}.ui-tab__btn-tab-head{display:inline-block;padding:2px 4px 0;border-bottom-right-radius:0;border-bottom-left-radius:0;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border-bottom:0}.ui-tab__btn-tab-head--active{background-color:#e6e6e6;border-color:#adadad}.ui-tab__wrp-tab-body{width:100%;height:100%;overflow-y:auto;overflow-x:hidden}.ui-tab__wrp-tab-body--border{padding:3px 0}.ui-tab__wrp-tab-body--background{background:#fff}.ui-tab__wrp-tab-heads--border{border-bottom:1px solid #ccc}.ui-prof__btn-cycle{width:16px;height:16px;padding:0;flex-shrink:0;flex-grow:0;display:inline-block;cursor:pointer;border:1px solid #ccc;border-radius:4px;outline:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ui-prof__btn-cycle:active{box-shadow:0 0 2px 0 #000b}.ui-prof__btn-cycle.active{background:#666;border-color:#8c8c8c}.ui-prof__btn-cycle[data-state='0']{background:white}.ui-prof__btn-cycle[data-state='1']{background:#666;border-color:#8c8c8c}.ui-prof__btn-cycle[data-state='2']{background:#666;border-color:#8c8c8c;display:flex;line-height:14px;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-style:normal;font-variant:normal;text-rendering:auto;font-family:'Font Awesome 5 Pro';font-weight:900;color:white;font-size:12px}.ui-prof__btn-cycle[data-state='2']::before{content:'\f005'}.ui-prof__btn-cycle[data-state='3']{background:repeating-linear-gradient(135deg, white, white 10px, #666 10px, #666 20px);border-color:#8c8c8c}.ui-dir__face{position:relative;width:92px;height:92px;border-radius:46px;background:#f0f0f0;border:1px solid #ccc;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:-webkit-grab;cursor:grab}.ui-dir__arm{width:1px;height:40px;background:#333;position:absolute;top:46px;left:46px;transform:rotate(180deg);transform-origin:top;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;box-shadow:0 0 2px 0 rgba(0,0,0,0.75)}.ui-icn__wrp-icon{font-size:24px}.ui-drag__wrp-drag-block{position:absolute;top:0;right:0;bottom:0;left:0}.ui-drag__wrp-drag-dummy--highlight{background:#cfe5ff78}.ui-drag__wrp-drag-dummy--lowlight{background:transparent}.ui-drag__patch{cursor:move;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:flex;flex-shrink:0;padding:5px 3px;width:14px;font-size:14px}.ui-drag__dummy-patch{width:14px}.ui-drag__patch-col{display:flex;flex-direction:column;flex-shrink:0}.ui-drag__patch-col>div{line-height:4px;text-align:center}.ui-tip__parent{cursor:help;position:relative}.ui-tip__child{box-shadow:0 6px 12px rgba(0,0,0,0.175);display:none;position:absolute;border:1px solid #ccc;background:white;border-radius:3px;z-index:1;top:calc(100% + 5px);padding:5px;opacity:0;transition:opacity 84ms ease-in-out;pointer-events:none}.ui-tip__parent:hover .ui-tip__child{display:flex;opacity:1}.ui-ctx__wrp{box-shadow:0 6px 12px rgba(0,0,0,0.475);z-index:1100;font-size:14px;background:#fff;border:1px solid rgba(204,204,204,0.627451);border-top-color:#ccc}.ui-ctx__divider{height:1px;width:100%;background:#ccc}.ui-ctx__row{cursor:pointer;min-width:160px}.ui-ctx__row:hover{background:#f5f5f5}.ui-ctx__row.disabled,.ui-ctx__row.disabled:hover{cursor:default;background:#fff}.ui-pick__btn-add{font-weight:bold;padding:1px 2px;line-height:8px;font-size:18px;display:flex;height:16px}.ui-pick__btn-add--sub{line-height:11px;height:14px;font-size:16px;border-radius:0;padding:0 1px;font-weight:bold}.ui-pick__btn-remove{width:8px;line-height:20px;padding:0;border-radius:0;font-size:12px;flex-shrink:0;flex-grow:0;cursor:pointer;font-style:initial;text-indent:-1px}.ui-pick__btn-remove--sub{height:18px;line-height:16px}.ui-pick__pill{align-items:stretch}.ui-pick__disp-text{border:1px solid #ccc}.fa--btn-sm{position:relative;top:1px;font-size:15px}.fa--btn-xs{position:relative;font-size:12px}.fa--btn-xs::before{width:12px;height:14px;display:inline-block;text-align:center}.fa--btn-xs.fa-dice{left:-2px}.clp__wrp-temp{position:fixed;top:-10000px;left:-10000px;width:1px;height:1px}.clp__disp-copied{box-shadow:0 3px 6px rgba(0,0,0,0.175);position:fixed;white-space:nowrap;width:auto;transform:translateX(-50%);pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;height:24px;line-height:24px;font-size:12px;z-index:2000;display:block}.ui-ideco__ipt--left{padding-left:22px !important}.ui-ideco__ipt--right{padding-right:22px !important}.ui-ideco__wrp{position:absolute;top:0;bottom:0;opacity:0.5;justify-content:center}.ui-ideco__wrp>.glyphicon{top:0}.ui-ideco__wrp--left{left:5px}.ui-ideco__wrp--right{right:5px}.ui-ideco__btn-ticker{transition:opacity 34ms;opacity:0;padding:0;width:14px;height:10px;border:0;font-size:14px;line-height:10px;border-radius:0;background:#0003;color:#333}.ui-ideco__btn-ticker:hover,.ui-ideco__btn-ticker:active,.ui-ideco__btn-ticker:focus,.ui-ideco__btn-ticker:active:focus{box-shadow:none;outline:none}.ui-ideco__btn-ticker:hover{background:#0005;color:#333}.ui-ideco__btn-ticker:active,.ui-ideco__btn-ticker:focus,.ui-ideco__btn-ticker:active:focus{background:#0007;color:#333}.ui-ideco__ipt:hover+.ui-ideco__wrp .ui-ideco__btn-ticker,.ui-ideco__wrp:hover .ui-ideco__btn-ticker{transition:opacity 34ms;opacity:1}.ui-sel2__ipt-search{top:0;right:0;left:0;opacity:0;background:transparent}.ui-sel2__wrp:focus>.ui-sel2__ipt-search,.ui-sel2__wrp:focus-within>.ui-sel2__ipt-search{opacity:1}.ui-sel2__wrp:focus>.ui-sel2__ipt-display,.ui-sel2__wrp:focus-within>.ui-sel2__ipt-display{text-align:right;color:#777;font-weight:bold}.ui-sel2__wrp:focus>.ui-sel2__wrp-options,.ui-sel2__wrp:focus-within>.ui-sel2__wrp-options{display:flex}.ui-sel2__wrp-options{top:22px;right:0;left:0;display:none;flex-direction:column;background:#fff;border:1px solid #ccc;border-top:0;max-height:160px}.ui-sel2__wrp-options:hover,.ui-sel2__wrp-options:active,.ui-sel2__wrp-options:focus,.ui-sel2__wrp-options:focus-within{display:flex}.ui-sel2__disp-option.active,.ui-sel2__disp-option:focus,.ui-sel2__disp-option:hover{background:#f5f5f5}.ui-sel2__disp-option:focus.active,.ui-sel2__disp-option:hover.active{background:#dcdcdc}.ui-slidr__wrp{font-size:14px}.ui-slidr__thumb{width:14px;height:18px;top:-5px;background:#f5f5f5;border:1px solid #ccc;border-radius:2px}.ui-slidr__thumb--hover,.ui-slidr__thumb:hover{background:#dcdcdc;border-color:#b3b3b3}.ui-slidr__wrp-track{padding-top:6px;padding-bottom:7px}.ui-slidr__track-outer{border:1px solid #ccc;height:10px;border-radius:3px}.ui-slidr__track-inner{background:#eee}.ui-slidr__disp-value{width:86px;height:26px;border-radius:4px}.ui-slidr__disp-value--visible{border:1px solid #ccc;background:#fff}.ui-slidr__disp-value--left{margin-right:15px;margin-left:7px}.ui-slidr__disp-value--right{margin-right:7px;margin-left:15px}.ui-slidr__wrp-bottom{height:3em}.ui-slidr__wrp-pips{padding-top:6px}.ui-slidr__pip{width:1px;height:4px;background:#ccc}.ui-slidr__pip--major{height:6px;background:#a6a6a6}.ui-slidr__pip-label{top:0;width:24px;height:20px;padding-top:20px}.ui-slidr__btn{width:80px;height:26px;border-radius:4px;flex-grow:1;margin:0 7px;border:1px solid #ccc;background:#fff}@font-face{font-family:'Convergence';font-style:normal;font-weight:400;src:local("Convergence-Regular"),url("../fonts/Convergence-Regular.ttf") format("truetype")}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;src:local("Roboto"),url("../fonts/Roboto-regular.ttf") format("truetype")}@font-face{font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;src:local("glyphicons-halflings-regular"),url("../fonts/glyphicons-halflings-regular.ttf") format("truetype")}@font-face{font-family:'Blambot Casual';src:local("Blambot-Casual"),url("../fonts/Blambot-Casual-Regular.ttf") format("truetype")}@keyframes kf-fade-out{from{opacity:1}to{opacity:0}}.linked-titles .rd__h--0 .entry-title-inner:hover::before{font-size:50%}.linked-titles .rd__h--1 .entry-title-inner:hover::before{font-size:55%}.linked-titles .rd__h--2 .entry-title-inner:hover::before{font-size:60%}.linked-titles .rd__h .entry-title-inner{cursor:copy}.linked-titles .rd__h .entry-title-inner:hover::before{content:' 🔗';color:rgba(0,0,0,0.2);position:relative;float:left;width:14px;height:14px;right:20px;margin-right:-30px;font-size:85%}.ui__ipt-color::-webkit-color-swatch{border:0}.night-mode .ui-source__divider{background:#555}.night-mode .ui-modal__header--border{border-color:rgba(85,85,85,0.627451)}.night-mode .ui-modal__footer{border-color:rgba(85,85,85,0.627451)}.night-mode .ui-modal__overlay-blind{background-color:#222}.night-mode .ui-modal__row-sep{border-color:#555}.night-mode .ui-modal__inner--mode-fullscreen{box-shadow:none}.night-mode .ui-search__row{border-color:#555}.night-mode .ui-search__row:hover{background:#333}.night-mode .ui-search__ipt-search-sub-wrp{border-color:#555}.night-mode .ui-tab__btn-tab-head--active,.night-mode .ui-tab__btn-tab-head--active:focus,.night-mode .ui-tab__btn-tab-head--active:hover,.night-mode .ui-tab__btn-tab-head--active:active{background-color:rgba(255,255,255,0.25098)}.night-mode .ui-tab__wrp-tab-body--background{background:#222;border-color:rgba(85,85,85,0.627451)}.night-mode .ui-tab__wrp-tab-heads--border{border-color:#555;border-width:2px}.night-mode .ui-tab-side__wrp-tab{background:#222;border-color:rgba(85,85,85,0.627451)}.night-mode .ui-prof__btn-cycle{border-color:#555}.night-mode .ui-prof__btn-cycle:active{box-shadow:0 0 3px 0 #fffb}.night-mode .ui-prof__btn-cycle[data-state='0']{background:#222}.night-mode .ui-prof__btn-cycle[data-state='1']{background:#555;border-color:#6f6f6f}.night-mode .ui-prof__btn-cycle[data-state='2']{background:#555;border-color:#6f6f6f}.night-mode .ui-prof__btn-cycle[data-state='2']::before{color:#222}.night-mode .ui-prof__btn-cycle[data-state='3']{background:repeating-linear-gradient(135deg, #222, #222 10px, #555 10px, #555 20px);border-color:#6f6f6f}.night-mode .ui-dir__face{background:#222;border-color:#555}.night-mode .ui-dir__arm{background:#bbb;box-shadow:none}.night-mode .ui-tip__child{border-color:#555;background:#222}.night-mode .ui-ctx__wrp{background:#222;border:1px solid rgba(85,85,85,0.627451);border-top-color:#555}.night-mode .ui-ctx__divider{background:#555}.night-mode .ui-ctx__row:hover{background:#383838;color:white}.night-mode .ui-ctx__row.disabled,.night-mode .ui-ctx__row.disabled:hover{background:#222;color:#bbb}.night-mode .ui-pick__disp-text{border-color:#555}.night-mode .ui-ideco__btn-ticker{background:#555;color:white}.night-mode .ui-ideco__btn-ticker:hover,.night-mode .ui-ideco__btn-ticker:active,.night-mode .ui-ideco__btn-ticker:focus,.night-mode .ui-ideco__btn-ticker:active:focus{box-shadow:none;outline:none}.night-mode .ui-ideco__btn-ticker:hover{background:#484848;color:white}.night-mode .ui-ideco__btn-ticker:active,.night-mode .ui-ideco__btn-ticker:focus,.night-mode .ui-ideco__btn-ticker:active:focus{background:#3c3c3c;color:white}.night-mode .ui-sel2__ipt-search{background:transparent}.night-mode .ui-sel2__wrp-options{background-color:#222;border-color:#555}.night-mode .ui-sel2__disp-option.active,.night-mode .ui-sel2__disp-option:focus,.night-mode .ui-sel2__disp-option:hover{background:#383838}.night-mode .ui-sel2__disp-option:focus.active,.night-mode .ui-sel2__disp-option:hover.active{background:#525252}.night-mode .ui-slidr__thumb{background:rgba(204,204,204,0.627451);border-color:#bbb}.night-mode .ui-slidr__thumb--hover,.night-mode .ui-slidr__thumb:hover{background:rgba(230,230,230,0.627451);border-color:#bbb}.night-mode .ui-slidr__track-outer{border-color:#555}.night-mode .ui-slidr__track-inner{background:rgba(85,85,85,0.627451)}.night-mode .ui-slidr__disp-value--visible{border-color:#555;background:#222}.night-mode .ui-slidr__pip{background:#bbb}.night-mode .ui-slidr__btn{border-color:#555;background:#222}@font-face{font-family:'good-pro-condensed';font-style:normal;font-weight:700;src:local("font"),url("../fonts/good-pro-condensed-700.ttf") format("truetype")}@font-face{font-family:'good-pro-condensed';font-style:normal;font-weight:400;src:local("font"),url("../fonts/good-pro-condensed-400.ttf") format("truetype")}@font-face{font-family:'good-pro';font-style:normal;font-weight:400;src:local("font"),url("../fonts/good-pro-400.ttf") format("truetype")}@font-face{font-family:'good-pro';font-style:italic;font-weight:400;src:local("font"),url("../fonts/good-pro-italic-400.ttf") format("truetype")}@font-face{font-family:'good-pro';font-style:normal;font-weight:700;src:local("font"),url("../fonts/good-pro-700.ttf") format("truetype")}@font-face{font-family:'Pathfinder2eActions';font-style:normal;font-weight:700;src:local("font"),url("../fonts/Pathfinder2eActions.ttf") format("truetype")}@font-face{font-family:'dax';font-style:normal;font-weight:400;src:local("font"),url("../fonts/Dax-Regular.ttf") format("truetype")}@font-face{font-family:'dax';font-style:normal;font-weight:700;src:local("font"),url("../fonts/Dax-bold.ttf") format("truetype")}@font-face{font-family:'gin';font-style:normal;font-weight:400;src:local("font"),url("../fonts/Gin-Regular.ttf") format("truetype")}@font-face{font-family:'Sabon';font-style:normal;font-weight:400;src:local("font"),url("../fonts/Sabon-Roman.ttf") format("truetype")}@font-face{font-family:'Sabon';font-style:italic;font-weight:400;src:local("font"),url("../fonts/Sabon-Italic.ttf") format("truetype")}@font-face{font-family:'Sabon';font-style:italic;font-weight:700;src:local("font"),url("../fonts/Sabon-BoldItalic.ttf") format("truetype")}@font-face{font-family:'Sabon';font-style:normal;font-weight:700;src:local("font"),url("../fonts/Sabon-Bold.ttf") format("truetype")}@font-face{font-family:'Taroca';font-style:normal;font-weight:400;src:local("font"),url("../fonts/Taroca.ttf") format("truetype")}@font-face{font-family:'SabonLTStd';font-style:normal;font-weight:400;src:local("font"),url("../fonts/SabonLTStd-Roman.ttf") format("truetype")}@font-face{font-family:'SabonLTStd';font-style:italic;font-weight:400;src:local("font"),url("../fonts/SabonLTStd-Italic.ttf") format("truetype")}@font-face{font-family:'SabonLTStd';font-style:italic;font-weight:700;src:local("font"),url("../fonts/SabonLTStd-BoldItalic.ttf") format("truetype")}@font-face{font-family:'SabonLTStd';font-style:normal;font-weight:700;src:local("font"),url("../fonts/SabonLTStd-Bold.ttf") format("truetype")}@font-face{font-family:'Basing';font-style:normal;font-weight:400;src:local("font"),url("../fonts/Basing.ttf") format("truetype")}@font-face{font-family:'Albertus';font-style:normal;font-weight:400;src:local("font"),url("../fonts/AlbertusMT.ttf") format("truetype")}.pf2-book-wrapper{display:flex;flex-direction:column;align-items:stretch;padding:1em !important;border-top:2px solid #5e0000;border-bottom:2px solid #5e0000;overflow-x:hidden}.pf2-book{font-family:'SabonLTStd', sans-serif}.pf2-book .rd__list li{font-size:1em;line-height:1.35em}.pf2-book--stat{font-size:1em;margin:1em 0}.pf2-book--stat .rd__list li{font-size:1em}.pf2-book__option{font-family:'good-pro', sans-serif;font-size:1em;margin:0;padding-left:1em;text-indent:-1em}.pf2-book .pf2-other-source{font-family:'SabonLTStd', sans-serif;font-size:1em;text-align:justify;line-height:1.35em}.pf2-book .pf2-other-source+.pf2-other-source{text-indent:1em}.pf2-wrp-stat{margin:1em 0;clear:both}.pf2-stat{font-family:'good-pro', sans-serif;text-align:justify;line-height:1.33em;font-weight:400}.pf2-stat__name{margin:0;padding:0;font-family:'good-pro-condensed', sans-serif;font-size:1.35em;font-weight:700;text-transform:uppercase;line-height:1;text-align:left}.pf2-stat__name--level{margin-left:auto !important;padding-left:1em}.pf2-stat__name .pf2-action-icon{font-size:1.5em}.pf2-stat__line{border-top:1px solid black;height:0;margin:0.05em 0 0.2em;display:flex}.pf2-stat__text{margin:0;text-indent:0}.pf2-stat__text--wide{margin:0}.pf2-stat__text--wide+.pf2-stat__text--wide{text-indent:1em}.pf2-stat__text ~ .pf2-stat__text{text-indent:1em}.pf2-stat__section{margin:0;padding-left:1em;text-indent:-1em;display:block}.pf2-stat__section--wide{margin:0}.pf2-stat__source{font-family:'good-pro', sans-serif;line-height:1.33em;font-size:0.75em;font-weight:400;margin:0;padding-top:0.3em;text-align:right;font-style:italic}.pf2-stat__source--other{display:block;font-size:0.95em}.pf2-trait{display:inline-block;box-sizing:border-box;margin:0;padding:0.4em 1.1em 0.25em;min-width:5em;color:white;font-family:'good-pro-condensed', sans-serif;font-size:0.75em;font-weight:700;line-height:1;letter-spacing:0.01em;text-align:center;text-transform:uppercase;background:#5e0000;border:0.12em solid #d9c484;border-bottom-width:0.07em;border-top-width:0.07em}.pf2-trait:hover{text-decoration:none !important;color:yellow !important}.pf2-trait--notag:hover{text-decoration:none !important;color:white !important}.pf2-trait--unique{background:#54166e}.pf2-trait--rare{background:#002664}.pf2-trait--uncommon{background:#98513d}.pf2-trait--alignment{background:#576293;min-width:2em}.pf2-trait--size{background:#3b7b59}.pf2-trait--settlement{background:#004416}.pf2-trait--left{border-left-width:0.33em}.pf2-trait--right{border-right-width:0.33em}.pf2-action-icon{font-family:'Pathfinder2eActions';font-size:1.78em;line-height:0}.pf2-action-icon::after{content:attr(data-symbol)}.pf2-action-icon-copy-text{opacity:0;position:absolute}.night-mode .pf2-stat__line{border-color:#aaa}.night-mode .pf2-trait{color:#dedada}.pf2-h1{color:#5e0000;position:relative;width:100%;margin:0;padding:0.3em 0 0;font-family:'Taroca', sans-serif;font-size:2.3em;font-weight:700;text-transform:uppercase;text-align:center;line-height:1em}.pf2-h1--collapse{position:absolute;right:0;line-height:0.8em}.pf2-h1--blue{color:#002664}.pf2-h1:hover .pf2-h--source{display:inline-block}.pf2-h1-flavor{color:#5e0000;margin:0;padding:0;font-family:'SabonLTStd', sans-serif;font-style:italic;font-size:1.2em;font-weight:400;text-align:justify;line-height:1.34em}.pf2-h1-flavor+.pf2-h1-flavor{text-indent:1em}.pf2-h1-flavor--centered{text-align:center}.pf2-h2{color:#002664;position:relative;width:100%;margin:0 0 0.1em;padding:0;font-family:'Taroca', sans-serif;font-size:2em;font-weight:700;line-height:1em;text-align:left}.pf2-h2--collapse{position:relative;right:0;margin-right:0.5em}.pf2-h2__step{z-index:40;display:flex;flex:1;margin:0 0 0.1em -2em;padding:0.05em 0.05em 0.05em 1.8em;height:-webkit-fit-content;height:-moz-fit-content;height:fit-content;min-width:calc(100% - 3.4em);color:#002664;background:#d1d3d4;font-family:'Taroca', sans-serif;font-size:1.6em;font-weight:700;text-transform:uppercase;line-height:1em}.pf2-h2__step+.pf2-h2{margin:-0.9em 0 0.1em calc(2.02em + 6px)}.pf2-h2__step-num{z-index:50;margin:-0.15em 0.3em 0 0;padding:0;border:3px solid #d9c484;height:1.4em;width:1.4em;border-radius:50%;background:#002664;color:#d9c484;text-align:center;font-family:'Taroca', sans-serif;font-size:2.8em;text-transform:uppercase;line-height:1.4em}.pf2-h2--wrp{display:flex;flex-flow:wrap;margin:1em 0 0}.pf2-h2:hover .pf2-h--source{display:inline-block}.pf2-h3{color:#5e0000;position:relative;margin:0;padding:0.6em 0 0;font-family:'Gin', sans-serif;font-size:1.2em;font-weight:400;line-height:1.2em;display:flex;text-align:left}.pf2-h3--lvl{margin-left:auto !important}.pf2-h3:hover .pf2-h--source{display:inline-block}.pf2-h4{color:#a86753;position:relative;margin:0;padding:0.3em 0 0;font-family:'Gin', sans-serif;font-size:1.2em;font-variant:small-caps;font-weight:400;line-height:1.2em;display:flex;vertical-align:bottom;text-align:left}.pf2-h4--lvl{margin-left:auto !important}.pf2-h4:hover .pf2-h--source{display:inline-block}.pf2-h5{background:#002664;border-top-left-radius:0.4em;border-top-right-radius:0.4em;box-shadow:0 2px #f6f4f2, 0 3px black;color:#ede3c8;margin:0.3em 0;padding:0.3em 0.4em 0.25em;font-family:'Gin', sans-serif;font-size:1.36em;font-weight:400;line-height:0.8em;text-transform:uppercase;display:flex;text-align:left}.pf2-h--collapse{opacity:40%;position:absolute;right:0;font-size:0.5em}.pf2-p{color:black;margin:0;padding:0;font-family:'SabonLTStd', sans-serif;font-size:1em;font-weight:400;text-align:justify;line-height:1.35em}.pf2-p+.pf2-p{text-indent:1em}.pf2-other-source{margin:0;padding:0}.pf2-table{margin:1em 0 0.3em;padding:0;display:grid;grid-gap:0;line-height:1.3em;font-size:1.1em;overflow:auto;clear:left;text-align:left}.pf2-table__name{padding:0;font-family:'good-pro', sans-serif;font-size:1em;font-weight:700;text-transform:uppercase;line-height:1;grid-column-start:1;grid-column-end:-1}.pf2-table__caption{padding:0 0 0 0.2em;font-family:'good-pro-condensed', sans-serif;font-size:1.3em;font-weight:700;text-transform:uppercase;line-height:1;grid-column-start:1;grid-column-end:-1;text-align:left}.pf2-table__label{padding:0 0.3em;background:#5e0000;color:white;font-family:'good-pro', sans-serif;font-size:0.9em;font-weight:700;line-height:1.2em;display:grid;align-content:end}.pf2-table__entry{padding:0 0.3em;color:black;background:#ede3c8;font-family:'good-pro', sans-serif;font-size:0.9em}.pf2-table__entry.odd{background:#f5efe0}.pf2-table__entry.border-left{border-left:1px solid #5e0000}.pf2-table__entry.border-right{border-right:1px solid #5e0000}.pf2-table__entry.border-top{border-top:1px solid #5e0000}.pf2-table__entry.border-bottom{border-bottom:1px solid #5e0000}.pf2-table__entry .rd__list{margin-top:0;margin-bottom:0}.pf2-table__footnote{padding:0 0.3em;font-family:'good-pro', sans-serif;font-size:0.9em;background:#e6d8b0;grid-column-start:1;grid-column-end:-1}.pf2-table__intro{color:black;font-family:'good-pro', sans-serif;font-size:0.9em;grid-column-start:1;grid-column-end:-1}.pf2-table__outro{color:black;font-family:'good-pro', sans-serif;font-size:0.9em;grid-column-start:1;grid-column-end:-1}.pf2-table--advancements{grid-template-columns:1fr 7fr}.pf2-sidebar{float:right;clear:right;border-left:solid 2px #5e0000;color:#5e0000;width:35%;max-width:300px;min-width:170px;margin:0.4em -1em 0.4em 1em;font-family:'good-pro', sans-serif;font-size:1em}.pf2-sidebar .pf2-title{font-size:1.1em;font-weight:700;margin:0;font-family:'good-pro', sans-serif;padding:0.6em 0.82em 0}.pf2-sidebar .pf2-stat{padding:0 1em;text-indent:0;text-align:revert}.pf2-sidebar .rd__list{padding:0 1em 0 calc(1em + 24px)}.pf2-sidebar__title{font-size:1.1em;font-weight:700;margin:0;padding:0 0.82em}.pf2-sidebar__text{margin:0;font-size:0.9em;font-weight:400;padding:0 1em}.pf2-sidebar--left{float:left;clear:left;border-right:solid 2px #5e0000;border-left:unset;width:35%;max-width:300px;min-width:170px;margin:0.4em 2em 0.4em -1em;font-size:1em}.pf2-sidebar--class .pf2-title,.pf2-sidebar--class .pf2-sidebar__title{font-family:'Gin', sans-serif;font-weight:400}.pf2-sidebar--full{height:100%}.pf2-sidebar .rd__quote-line{padding:0 1em}@media only screen and (max-width: 440px){.pf2-sidebar{width:calc(100%);max-width:none;float:none}}.pf2-sidebar--compact{display:grid;grid-template-columns:1fr 1fr;grid-gap:0;color:#5e0000}.pf2-sidebar--compact div:nth-child(2n+1){border-right:2px solid #5e0000}.pf2-sidebar--compact .pf2-title{margin:0;font-family:'good-pro', sans-serif;font-size:1.1em;font-weight:700;padding:0.6em 0.6em 0}.pf2-sidebar--compact .pf2-sidebar__text{margin:0;font-family:'good-pro', sans-serif;font-size:0.9em;font-weight:400;padding:0 0.6em}.pf2-chapter__line{margin-top:0.5em;height:1px;background:#5e0000;width:calc(50% - 1.6em)}.pf2-chapter__line--l{margin-right:-1em;margin-left:0}.pf2-chapter__line--r{margin-right:0;margin-left:-1em}.pf2-chapter__swirl{margin-top:0.22em;padding:0;fill:#5e0000;width:3.2em;height:1.38em}.pf2-chapter__swirl--l{margin-right:-0.12em}.pf2-chapter__swirl--r{margin-left:-0.12em;transform:scaleX(-1)}.pf2-key-abilities{color:white;background:#5e0000;border:2px solid #b29e74;display:flex;margin:0.3em 0}.pf2-key-abilities__ab{box-shadow:8px 0 0 -6px #b29e74;width:calc(50% - 3px);padding:0 1em 1em}.pf2-key-abilities__hp{padding:0 1em 1em;width:calc(50% - 1px)}.pf2-key-abilities__title{margin:0;padding-bottom:0.3em;font-family:'Gin', sans-serif;font-weight:400;font-size:1.2em;text-align:left}.pf2-key-abilities__text{font-family:'good-pro', sans-serif;font-weight:700;font-size:0.9em;text-align:left;line-height:1.2em;margin:0}.pf2-key-abilities__text ~ .pf2-key-abilities__text{font-weight:400}@media only screen and (max-width: 520px){.pf2-key-abilities{flex-direction:column}.pf2-key-abilities__ab{box-shadow:0 8px 0 -6px #b29e74;width:100%}.pf2-key-abilities__hp{width:100%;padding:0.3em 1em 1em}}.pf2-combo{display:flex;margin:0.3em 0}.pf2-combo__title{margin:0;padding:0;border-bottom:1px solid #333;font-family:'good-pro-condensed', sans-serif;font-size:1.15em;font-weight:700;text-transform:uppercase;line-height:1;text-align:left}.pf2-combo__start{width:calc(50% - 3px);padding:0 1em 0 0}.pf2-combo__end{border-left:1px solid #333;padding:0 1em 0 0.4em;width:calc(50% - 1px)}@media only screen and (max-width: 520px){.pf2-combo{flex-direction:column}.pf2-combo__start{width:100%;padding:0.05em 0 0 0.2em}.pf2-combo__end{border-top:1px solid black;border-left:0;padding:0.05em 0 0 0.2em;width:100%}}.pf2-key-box{color:white;overflow:auto;background:#5e0000;border:2px solid #b29e74;margin:0.3em 0;padding:0.6em}.pf2-key-box__title{margin:0;font-family:'Gin', sans-serif;font-weight:700;font-size:1.4em;text-align:center}.pf2-key-box__text{font-family:'good-pro', sans-serif;font-weight:400;font-size:1.2em;text-align:left;line-height:1.2em;margin:0}.pf2-key-box .pf2-title{margin:0;font-family:'Gin', sans-serif;font-weight:700;font-size:1.4em;text-align:center}.pf2-tips-box{display:flex;flex-direction:column;font-family:'good-pro', sans-serif;background:#d1d3d4;margin:0.3em 0;padding:0;font-size:0.9em;max-width:100%}.pf2-tips-box__title{margin:0;padding:0.2em 0.3em 0;background:#002664;color:#d9c484;font-weight:700;font-size:1.22em;text-transform:uppercase;text-align:left;line-height:1.2em}.pf2-tips-box__text{line-height:1.2em;text-align:justify;margin:0;padding:0.1em 0.3em}.pf2-sample-box{background:#eae4d8;margin:0.3em 0;padding:0 1em 0.3em;font-family:'good-pro', sans-serif;font-size:1em;max-width:100%;overflow:auto}.pf2-sample-box__title{margin:0;padding:0.3em 1em;font-weight:700;line-height:1.2em;text-align:center}.pf2-sample-box__section{margin:0;padding:0 1em 0 1.3em;font-weight:400;line-height:1.2em;text-indent:-1em}.pf2-sample-box__text{margin:0;padding:0 0.3em 0.3em;font-weight:400;line-height:1.2em}.pf2-sample-box .pf2-title{margin:0;padding:0.3em 1em;font-weight:700;line-height:1.2em;text-align:center}.pf2-sample-box *+.pf2-title{margin-top:0.6em}.pf2-beige-box{background:#f1e9d4;margin:0.6em 0;padding:0.3em 1em;overflow:auto;font-family:'good-pro', sans-serif;font-size:1em;max-width:100%}.pf2-beige-box__title{margin:0;font-weight:700;line-height:1.2em;text-align:left}.pf2-beige-box__text{margin:0;font-weight:400;line-height:1.2em;text-align:justify}.pf2-beige-box__text+.pf2-beige-box__text{text-indent:1em}.pf2-beige-box .pf2-title{margin:0;font-weight:700;line-height:1.2em;text-align:left}.pf2-beige-box *+.pf2-title{margin-top:0.6em}.pf2-inset{background:#eae4d8;overflow:auto;border-top:1px solid #c99a89;border-bottom:1px solid #c99a89;font-family:'good-pro', sans-serif;font-size:1em;font-weight:700;line-height:1.2em;text-align:center;margin:0.3em 0.6em;padding:0 1em;height:-webkit-fit-content;height:-moz-fit-content;height:fit-content}.pf2-box{position:relative;left:3%;margin:1.6em 0 0.6em;padding:0.6em 1.6em;font-family:'good-pro', sans-serif;width:94%;min-width:120px;border-radius:2px;font-size:1em}.pf2-box__title{position:relative;z-index:2;top:-0.36em;left:0;padding:0 0.3em;display:block;font-weight:bold;font-size:1.22em;text-transform:uppercase;text-align:center}.pf2-box__text{margin:0;text-indent:0;text-align:justify;line-height:1.2em}.pf2-box__text+.pf2-box__text{text-indent:0.9em}.pf2-box__swirl{position:absolute;z-index:1;top:-2em;background:none !important;display:flex;width:4em;height:4em}.pf2-box__swirl--right{right:-0.6107em}.pf2-box__swirl--left{left:-0.6107em}.pf2-box__swirl-connection{position:absolute;z-index:1;top:-0.476em;right:2em;height:2em;width:calc(100% - 4em);display:flex}.pf2-box__table--red{margin-top:1em;font-family:'good-pro', sans-serif;border-collapse:collapse;display:grid;overflow:auto}.pf2-box__table--red .pf2-table__label{padding:0 1em;font-size:1em;text-align:center}.pf2-box__table--red .pf2-table__entry{padding:0 1em;background:#5e0000;color:white;border-left:1px solid #b29e74;border-right:1px solid #b29e74}.pf2-box--red{background-color:#5e0000;fill:#5e0000;color:white}.pf2-box--brown{background-color:#c8bca5;fill:#c8bca5;color:black}.pf2-box .pf2-title{margin:1em 1em 0;font-size:1.22em;font-weight:700;text-align:center;text-transform:uppercase}.pf2-paper-wrp{display:flex;flex-direction:column}.pf2-paper{position:relative;color:black;left:3%;margin:0.3em 0 0.6em;padding:0.6em 1.6em;width:94%;min-width:120px;border-style:solid;border-width:30px;border-image-source:url("../img/letter.webp");border-image-slice:30 fill;border-image-repeat:round}.pf2-paper__header{margin-bottom:0.6em;text-align:end}.pf2-paper__signature{margin-top:0.3em;text-align:end}.pf2-paper__text{margin:0}.pf2-paper__footer{font-size:0.7em;margin-top:1em}.pf2-paper__footer .pf2-paper__text{padding-left:1em;text-indent:-1em}.pf2-paper__entries .pf2-paper__text+.pf2-paper__text{text-indent:1em}.pf2-paper--dark{color:black !important;border-image-source:url("../img/letter-dark.webp")}.pf2-paper .pf2-title{font-size:1.3em;font-weight:bold;margin:0}.pf2-paper-title{font-family:'good-pro', sans-serif;font-size:1.1em;position:relative;left:6%;width:88%;margin:1em 0 0}.pf2-letter{font-family:'Basing', sans-serif;color:#492706;font-size:1.18em;font-style:italic}.pf2-letter .pf2-title{font-size:1.3em;font-weight:bold;letter-spacing:0.03em;margin:0}.pf2-research{font-family:'Albertus', sans-serif}.pf2-research .pf2-title{font-weight:normal;font-size:1.6em;margin:0}.pf2-handwriting{font-family:'Basing', sans-serif;font-size:1.18em;font-style:italic}.no-border-left{border-left-style:none !important}.no-border-right{border-right-style:none !important}.no-font-style{font-weight:normal !important;font-style:normal !important;font-variant:none !important;text-decoration:none !important}.text-no-indent{text-indent:0 !important}.text-indent-first{text-indent:1em !important}.text-indent-subsequent{padding-left:1em !important;text-indent:-1em !important}.hidden-fluff{display:none !important}.scroll-to-highlight .rd__h{-webkit-animation:flash-highlight 1s linear 2;animation:flash-highlight 1s linear 2}@-webkit-keyframes flash-highlight{50%{opacity:10%}}@keyframes flash-highlight{50%{opacity:10%}}.rigen__visible{display:none}.rigen__btn_list{padding:0 1px;line-height:12px;font-size:9px;border-radius:3px}.rigen_active .rigen__visible{display:block}.rigen_active .rigen__visible--flex{display:flex}.rigen_active .rigen__visible--flex-col{display:flex;flex-direction:column}.rigen_active .rigen__hidden{display:none !important}.rigen_active .rigen__name{width:26.66666666%}.rigen_active .rigen__name--sub{width:29.16666667%}#rigen__runelist{min-height:0}.ecgen__xp_total{font-size:0.8em;margin-left:auto !important;line-height:28px}.ecgen__overlevel{color:red;margin-top:10px;margin-bottom:-10px}.hr-other-source{margin:15px 0;border-top:1px solid #ddd}.pf2-summary{height:50vh;display:flex;flex-direction:row}.pf2-summary__text{margin:1em;font-size:1.3em;width:100%;display:flex;flex-direction:column;flex-grow:1}.pf2-summary__text .pf2-p{text-align:left}.pf2-summary__text .pf2-h1-flavor{text-align:left}.pf2-summary__text .pf2-h4{margin-top:auto}.pf2-summary__image{height:100%;display:none;width:100%;align-items:center}.pf2-summary__image--no-image{width:55%}.pf2-summary__image--no-image p{width:100%;text-align:center;align-self:center;font-style:italic;color:#5e0000}.pf2-summary__image img{height:calc(100% - 2em);max-width:100%;-o-object-fit:scale-down;object-fit:scale-down;margin:1em 0 1em auto}.pf2-summary__image a{width:100%;text-align:center}.feat-view--resizable{min-height:100px;max-height:80%}.feat-view--active .feat-view--resizable::after{content:'...';background-color:#aaa4;border:1px solid rgba(204,204,204,0.4);position:absolute;bottom:3px;height:2px;width:100%;cursor:ns-resize;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;line-height:1px;font-size:10px;text-align:center}.feat-view--active .wrp-stats-table{max-height:calc(100% - 15px)}.feat-view--inactive .feat-view{display:none !important}.feat-view--inactive .feat-view+.fltr__mini-view{display:none !important}.feat-view--inactive .feat-view--resizable{height:revert !important}.feat-view--inactive .feat-view--resizable .wrp-stats-table{max-height:100% !important}.feat-view--resizable{position:relative;overflow:hidden}.bkv__content-wrp{overflow-x:hidden;overflow-y:scroll}.cls-sc-tabs__wrp::before{content:attr(data-sc-type);width:100%;margin:1rem 0.25rem 0.25rem;font-weight:bold;border-bottom:1px solid #ccc}.anc-h-tabs__wrp::before{content:attr(data-h-type);width:100%;margin:1rem 0.25rem 0.25rem;font-weight:bold;border-bottom:1px solid #ccc}.cap-first::first-letter{text-transform:uppercase}.night-mode .pf2-h1,.night-mode .pf2-h1-flavor,.night-mode .pf2-h3,.night-mode .pf2-sidebar{color:#e06565}.night-mode .pf2-sidebar{border-color:#e06565}.night-mode .pf2-sidebar--compact{color:#e06565}.night-mode .pf2-sidebar--compact div{border-color:#e06565}.night-mode .pf2-chapter__line{background:#e06565}.night-mode .pf2-chapter__swirl{fill:#e06565}.night-mode .pf2-h1--blue{color:#6594e0}.night-mode .pf2-h2{color:#6594e0}.night-mode .pf2-h2__step{color:#6594e0;background:#021830}.night-mode .pf2-h2__step-num{color:#021830;border-color:#021830;background:#6594e0}.night-mode .pf2-h4{color:#eb9d86}.night-mode .pf2-h5{color:#c99d51;background:#021830;box-shadow:0 2px #222,0 3px #021830}.night-mode .pf2-p{color:#bbb}.night-mode .pf2-trait{background:#472c2c;border-color:#c99d51;color:#dbdbdb}.night-mode .pf2-trait--notag:hover{text-decoration:none !important;color:#dbdbdb !important}.night-mode .pf2-trait--alignment{background:#4c505e}.night-mode .pf2-trait--size{background:#334f40}.night-mode .pf2-trait--settlement{background:#263d2d}.night-mode .pf2-trait--uncommon{background:#664e47}.night-mode .pf2-trait--rare{background:#29364a}.night-mode .pf2-trait--unique{background:#44354a}.night-mode .pf2-table__label{background:#472c2c;color:#c9c9c9}.night-mode .pf2-table__entry{background-color:#3b3a38;color:#bbb}.night-mode .pf2-table__entry.odd{background-color:#333230}.night-mode .pf2-table__entry.border-left{border-color:#472c2c}.night-mode .pf2-table__entry.border-right{border-color:#472c2c}.night-mode .pf2-table__footnote{background-color:#141414}.night-mode .pf2-table__intro,.night-mode .pf2-table__outro{color:#bbb}.night-mode .pf2-box--brown{background-color:#2e2c27;fill:#2e2c27;color:#bbb}.night-mode .pf2-box--red{background-color:#472c2c;fill:#472c2c;color:#c9c9c9}.night-mode .pf2-box__table--red .pf2-table__entry{background:#472c2c;border-color:#c99d51;color:#c9c9c9}.night-mode .pf2-beige-box,.night-mode .pf2-sample-box{background:#2e2c27}.night-mode .pf2-tips-box{background:#021830}.night-mode .pf2-tips-box__title{color:#021830;background:#6594e0}.night-mode .pf2-inset{border-color:#544c3a;background:#2e2c27}.night-mode .pf2-key-box,.night-mode .pf2-key-abilities{background:#472c2c;border-color:#c99d51;color:#c9c9c9}.night-mode .pf2-key-box__ab,.night-mode .pf2-key-abilities__ab{box-shadow:8px 0 0 -6px #c99d51}@media only screen and (max-width: 520px){.night-mode .pf2-key-box__ab,.night-mode .pf2-key-abilities__ab{box-shadow:0 8px 0 -6px #c99d51}}.night-mode .pf2-combo__end{border-color:#bbb}.night-mode .pf2-combo__title{border-color:#bbb}@media only screen and (max-width: 520px){.night-mode .pf2-combo__end{border-top:1px solid #bbb;border-left:0}}.night-mode .pf2-paper{filter:saturate(0.9) brightness(0.9)}.night-mode .pf2-book-wrapper{border-color:#e06565}.night-mode .pf2-summary__image--no-image p{color:#e06565}.night-mode .initial-message{color:#e06565}.night-mode .anc-h-tabs__wrp::before,.night-mode .cls-sc-tabs__wrp::before{border-color:#555}.rd__list-decimal--bold{padding:0 1em;list-style:decimal}.rd__list-decimal--bold li::marker{font-weight:bold} -/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uL3Njc3MvdmFycy5zY3NzIiwiLi4vc2Nzcy9ib290c3RyYXAtY3VzdG9tLnNjc3MiLCIuLi9zY3NzL3N0eWxlLnNjc3MiLCIuLi9zY3NzL3JlbmRlci5zY3NzIiwiLi4vc2Nzcy9yZW5kZXItbmlnaHQuc2NzcyIsIi4uL3Njc3MvbmF2LnNjc3MiLCIuLi9zY3NzL2hvdmVyLnNjc3MiLCIuLi9zY3NzL3NvdXJjZS5zY3NzIiwiLi4vc2Nzcy9maWx0ZXIuc2NzcyIsIi4uL3Njc3MvZmlsdGVyLW5pZ2h0LnNjc3MiLCIuLi9zY3NzL3VpLnNjc3MiLCIuLi9zY3NzL3VpLW5pZ2h0LnNjc3MiLCIuLi9zY3NzL3BmMi5zY3NzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLFdBQ0MseUJBQTBCLENBQzFCLGlCQUFrQixDQUNsQixlQUFnQixDQUNoQiwyRkFBNkYsQ0FHOUYsV0FDQyxvQkFBcUIsQ0FDckIsaUJBQWtCLENBQ2xCLGVBQWdCLENBQ2hCLHlFQUEyRSxDQUc1RSxXQUNDLGtDQUFtQyxDQUNuQyxpQkFBa0IsQ0FDbEIsZUFBZ0IsQ0FDaEIsNkdBQStHLENBR2hILFdBQ0MsNEJBQTZCLENBQzdCLHlGQUEyRixDQUc1RiwrQkFDQyxLQUNDLFNBQVUsQ0FHWCxHQUNDLFNBQVUsQ0FBQSxDQU5aLHVCQUNDLEtBQ0MsU0FBVSxDQUdYLEdBQ0MsU0FBVSxDQUFBLENBMk1YLDBEQUNDLGFBQWMsQ0FDZCwwREFHQSxhQUFjLENBQ2QsMERBR0EsYUFBYyxDQUNkLHlDQUlELFdBQVksQ0FFWix1REFDQyxhQUFTLENBQU0scUJBQ1IsQ0FBa0IsaUJBQ2YsQ0FBUSxVQUNYLENBQUksVUFDSixDQUFJLFdBQ0gsQ0FBSSxVQUNMLENBQUksa0JBQ0csQ0FBSyxhQUNSLENBQUcsV0FwUU4seUJBQ0ksQ0FBYSxpQkFDZCxDQUFNLGVBQ0wsQ0FBRywyRkFDMkQsQ0FBa0IsV0FHcEYsb0JBQ0ksQ0FBUSxpQkFDVCxDQUFNLGVBQ0wsQ0FBRyx5RUFDeUMsQ0FBa0IsV0FHbEUsa0NBQ0ksQ0FBc0IsaUJBQ3ZCLENBQU0sZUFDTCxDQUFHLDZHQUM2RSxDQUFrQixXQUd0Ryw0QkFDSSxDQUFnQix5RkFDNEMsQ0FBa0IsdUJBR2xGLEtBQ0wsU0FDTSxDQUFDLEdBR1QsU0FDUSxDQUFDLENBQUEsMERBMk0rQixhQUM5QixDQUFHLDBEQUcyQixhQUM5QixDQUFHLDBEQUcyQixhQUM5QixDQUFHLHlDQUlVLFdBQ2pCLENBQUksdURBRUcsYUFDTCxDQUFBLHFCQUNGLENBQUEsaUJBQ0csQ0FBQSxVQUNILENBQUEsVUFDQSxDQUFBLFdBQ0MsQ0FBQSxVQUNELENBQUEsa0JBQ08sQ0FBQSxhQUNILENBQUEsK0JDalFTLDhCQUVMLENBQUEsNEJBR0UsOEJBRUYsQ0FBQSxnQkFDaEIsT0FLSyxDQUFBLFNBQ0UsQ0FBQSxRQUNQLGFEOEJpQixDQUFBLGNDekJULENBQUEsY0FHRyxhRG9DVyxDQUFBLFNDbEN0Qiw2QkFHYSxDQUFBLE1BQ2Isb0NBSWEsQ0FBQSxjQUViLHFCQUVjLENBQUEsVUFDYixxQkFJdUIsQ0FBQSxVQUN4Qix3QkFHVyxDQUFBLFdBQ1gseUJBR1EsQ0FBQSxpQkFFUix3QkFDdUIsQ0FBQSxlQUN0Qix5QkFJTyxDQUFBLFVBQ1Isc0JBR1EsQ0FBQSxXQUNSLG1DQUdhLENBSGIsZ0NBR2EsQ0FIYiwrQkFHYSxDQUhiLDJCQUdhLENBQUEsTUFDYiwyQkFHYSxDQUFBLFFBQ2IsNEJBR1ksQ0FBQSxJQUdULGtCQUNTLENBQUEsV0FDWix5QkFHaUIsQ0FBQSxjQUNqQiw0QkFHaUIsQ0FBQSxPQUNqQiw4QkFHYSxDQUFBLDZCQUNELENBQUEsU0FDWiw2QkFHYSxDQUFBLFdBQ2IsOEJBR2dCLENBQUEsZUFDaEIsa0NBR3lCLENBQUEsV0FDekIsNkJBR2MsQ0FIZCxpQkFHYyxDQUFBLDRCQUNELENBREMsZ0JBQ0QsQ0FBQSw4QkFDQyxDQURELGtCQUNDLENBQUEsaUJBQ2QsZUFHWSxDQUFBLG1CQUNaLGlCQUdZLENBQUEsbUJBQ1osaUJBR1ksQ0FBQSxtQkFDWixpQkFHWSxDQUFBLG1CQUNaLGlCQUdZLENBQUEsbUJBQ1osZUQ2RVUsQ0FBQSxzQkFDSyxDQUFBLGtCQUNGLENBQUEsaUJDM0ViLGVBR1EsQ0FBQSxhQUNSLFdBR1EsQ0FBQSxtQkFDUixrQkFHYSxDQUFBLGdCQUNiLGVBR2EsQ0FBQSxtQkFJZCxXQUNTLENBQUEseUJBQ1MsQ0FBQSxvQ0FDTSxDQUROLDRCQUNNLENBQUEscUNBS25CLHlCQUNhLENBQUEsb0NBQ00sQ0FETiw0QkFDTSxDQUFBLGNBQ3ZCLFdBR1EsQ0FBQSxZQUNSLHVCQUdjLENBQUEsWUFDZCx5QkFHZ0IsQ0FBQSwwQkFNUSxhQUh6QixjQUlVLENBQUEsb0JBQ1MsQ0FBQSxDQUFJLE9BSXZCLHFCQUNRLENBQUEsTUFDUCxvQkFHTyxDQUFBLE1BQ1Asb0JBR08sQ0FBQSxNQUNQLG9CQUdPLENBQUEsTUFDUCxvQkFHTyxDQUFBLE1BQ1AsNEJBR08sQ0FBQSxNQUNQLG9CQUdPLENBQUEsTUFDUCxvQkFHTyxDQUFBLFlBRVAsa0NBQ3FDLENBQUEsTUFDcEMsb0JBSU0sQ0FBQSxNQUNQLDRCQUdPLENBQUEsT0FDUCxnQ0FHVyxDQUFBLE1BQ1gsb0JBR08sQ0FBQSxNQUNQLG9CQUdPLENBQUEsT0FDUCx3QkFHVyxDQUFBLE1BQ1gsb0JBR08sQ0FBQSxNQUNQLG9CQUdPLENBQUEsV0FDUCx3QkFHTyxDQUFBLE9BQ1Asc0JBR1EsQ0FBQSxTQUNSLFlBSVUsQ0FBRSxXQUNaLDBCQUdZLENBQUEsVUFDWix3QkFHVyxDQUFBLFdBQ1gseUJBR1csQ0FBQSxNQUNYLHVCQUdTLENBQUEsTUFDVCx1QkFHUyxDQUFBLFVBQ1QsaUJBR1UsQ0FBQSxVQUNWLGlCQUdVLENBQUEsVUFDVix1QkFHUyxDQUFBLGdDQUNPLENBQUEsaUJBQ2hCLDhCQUdTLENBQUEsZ0NBQ08sQ0FBQSxhQUNoQixtQkFHUyxDQUFBLE9BQ1Qsd0JBR1MsQ0FBQSxjQUNULG9CQUdTLENBQUEsUUFDVCxNQUdJLENBQUUsUUFDTixNQUdJLENBQUUsUUFDTixNQUdJLENBQUUsV0FDTixlQUdZLENBQUEsV0FDWixhQUdXLENBQUUsU0FDYixXQUdTLENBQUUsV0FDWCxjQUdXLENBQUEsT0FDWCxZQUdTLENBQUEsNkJBQ1EsQ0FBQSxnQkFDakIsWUFHUyxDQUFBLDZCQUNRLENBQUEsa0JBQ0osQ0FBQSx1QkFDYiw4QkFHUyxDQUFBLDZCQUNRLENBQUEsa0JBQ0osQ0FBQSxhQUNiLHVCQUdTLENBQUEsNkJBQ1EsQ0FBQSxvQkFDSixDQUFBLGFBQ2IsU0FHTyxDQUFBLGFBQ0ksQ0FBRSxXQUNKLENBQUUsY0FDWCxZQUdTLENBQUEsNkJBQ1EsQ0FBQSxxQkFDRCxDQUFBLHNCQUNoQixtQkFHUyxDQUFBLGVBQ1QsdUJBR1MsQ0FBQSw2QkFDSSxDQUFBLGVBQ2IsWUFHUyxDQUFBLHNCQUNRLENBQUEsWUFDakIsWUFHUyxDQUFBLHNCQUNJLENBQUEsZUFDYixZQUdTLENBQUEsb0JBQ0ksQ0FBQSxpQkFDYixZQUdTLENBQUEsb0JBQ0ksQ0FBQSxnQkFDYixZQUdTLENBQUEsa0JBQ0ksQ0FBQSxzQkFDSSxDQUFBLHVCQUNqQixZQUdTLENBQUEsa0JBQ0ksQ0FBQSw0QkFDSSxDQUFBLHNCQUNqQixtQkFHUyxDQUFBLGtCQUNJLENBQUEsc0JBQ0ksQ0FBQSxjQUNqQixZQUdTLENBQUEsd0JBQ1EsQ0FBQSxlQUNqQixtQkFHWSxDQUFBLFdBQ1osbUJBR1ksQ0FIWixjQUdZLENBQUUsOEJBQ0EsQ0FEQSx5QkFDQSxDQUFBLGFBRVosOEJBQ2EsQ0FEYix5QkFDYSxDQUFBLDBCQUdTLFdBUnpCLG1CQVNFLENBVEYsY0FTYyxDQUFFLENBQUMsV0FJakIsbUJBQ2EsQ0FEYixjQUNhLENBQUUsOEJBQ0EsQ0FEQSx5QkFDQSxDQUFBLGFBRVosOEJBQ2EsQ0FEYix5QkFDYSxDQUFBLDBCQUdTLFdBUnpCLG1CQVNFLENBVEYsY0FTYyxDQUFFLENBQUMsMEJBR1EsV0FaekIsbUJBYUUsQ0FiRixjQWFjLENBQUUsQ0FBQyxXQUlqQixtQkFDYSxDQURiLGNBQ2EsQ0FBRSw4QkFDQSxDQURBLHlCQUNBLENBQUEsYUFFWiw4QkFDYSxDQURiLHlCQUNhLENBQUEsMEJBR1MsV0FSekIsbUJBU0UsQ0FURixjQVNjLENBQUUsQ0FBQywwQkFHUSxXQVp6QixtQkFhRSxDQWJGLGNBYWMsQ0FBRSxDQUFDLFdBSWpCLG1CQUNhLENBRGIsY0FDYSxDQUFFLDhCQUNBLENBREEseUJBQ0EsQ0FBQSxhQUVaLDhCQUNhLENBRGIseUJBQ2EsQ0FBQSwwQkFHUyxXQVJ6QixtQkFTRSxDQVRGLGNBU2MsQ0FBRSxDQUFDLDBCQUdRLFdBWnpCLG1CQWFFLENBYkYsY0FhYyxDQUFFLENBQUMsV0FJakIsbUJBQ2EsQ0FEYixjQUNhLENBQUUsOEJBQ0EsQ0FEQSx5QkFDQSxDQUFBLGFBRVosOEJBQ2EsQ0FEYix5QkFDYSxDQUFBLDBCQUdTLFdBUnpCLG1CQVNFLENBVEYsY0FTYyxDQUFFLENBQUMsMEJBR1EsV0FaekIsbUJBYUUsQ0FiRixjQWFjLENBQUUsQ0FBQyxhQUlqQixVQUNRLENBQUEsS0FDUCxlQU1ZLENBQUEsaUJBQ0YsQ0FBQSxpQ0FFTSxZQUNOLENBQUEsOEJBR00sWUFDTixDQUFBLE1BQ1QsV0FLUSxDQUFFLE1BQ1gsbUJBR2EsQ0FBQSx1Q0FJUixRQUNDLENBQUUsS0FDUixpQkFHUyxDQUFBLE9BQ1QsaUJBR1MsQ0FBQSxhQUNFLENBQUEsYUFJWixlQUNDLENBREQsYUFDQyxDQURELFVBQ1MsQ0FBRSxHQUNWLGFBR1csQ0FBRSxZQUNiLG1CQUdjLENBQUEsRUFDZCxvQkFJaUIsQ0FBQSxvQkFDakIsU0FHTyxDQUFBLFVBQ0MsQ0FBQSwwQkFDUixzQkFHWSxDQUFBLDBCQUNaLGtCQUdZLENBQUEsS0FoRWIsb0JBcUVrQixDQUFBLHdCQUdkLFVEbGFZLENBQUEsV0NvYWYsaUJBTVUsQ0FBQSxTQUNWLG1CQUdnQixDQUFBLGVBQ2hCLGtCQUdhLENBQUEsVUFDYixXQUdRLENBQUEsZUFDQyxDQUFBLGNBQ0UsQ0FBQSxlQUNFLENBQUEsaUJBQ0UsQ0FBQSx1QkFDZixlQUdhLENBQUUsYUFDTixDQUFBLFlBQ1QsbUJBR1MsQ0FBQSxrQkFDSSxDQUFBLCtEQUdMLGdCQUNDLENBQUEsU0FDUixhQUlRLENBQUEsY0FDRSxDQUFBLGVBQ0UsQ0FBQSxpQkFDRSxDQUFBLG1CQUNmLCtGQUdZLENBQUEsTUFDWiw4QkFHbUMsQ0FBQSxxQkFDbkMsU0FHSyxDQUFBLFNBQ0MsQ0FBQSw4QkFDTSxDQUFBLGVBQ0EsQ0FBQSxVQUlWLG9CQUNRLENBQUEsMEJBRWUsVUFIdkIsd0JBSXNCLENBQUUseUJBQ0QsQ0FBRSxDQUFDLDBCQUlKLFFBVmxCLGNBV08sQ0FBQSxpQkFDRyxDQUFBLENBQUcsbUdBTVksd0JBQ2IsQ0FBQSxZQUNSLENBQUUsMEJBRVksbUdBSk8saUNBS2pCLENBQUEsa0NBQ0MsQ0FBQSw0QkFDQyxDQUFBLENBQWMsZ0NBS2xCLGdDQUNNLENBQUEsbURBS0wsZ0NBQ0ssQ0FBQSxLQUNsQixjQUdZLENBQUUsYUFDSCxDQUFFLHlrQ0FxbUJkLGlCQWhtQlcsQ0FBQSxjQUNFLENBQUEsaUJBQ0csQ0FBQSxnQkFDRCxDQUFBLFVBQ1AsQ0FBQSxRQUNQLHFCQUlPLENBQUEsUUFDUCxtQ0FJTyxDQUFBLFVBQ1AsbUNBSU8sQ0FBQSxVQUNQLG1DQUlPLENBQUEsVUFDUCxzQkFJTyxDQUFBLFVBQ1AsbUNBSU8sQ0FBQSxVQUNQLG1DQUlPLENBQUEsVUFDUCxvQkFJTyxDQUFBLFVBQ1AsbUNBSU8sQ0FBQSxVQUNQLG1DQUlPLENBQUEsVUFDUCxzQkFJTyxDQUFBLFFBQ1AsbUNBSU8sQ0FBQSxVQUNQLG1DQUlPLENBQUEsVUFDUCxvQkFJTyxDQUFBLFVBQ1AsbUNBSU8sQ0FBQSxVQUNQLG1DQUlPLENBQUEsVUFDUCxzQkFJTyxDQUFBLFVBQ1AsbUNBSU8sQ0FBQSxVQUNQLG1DQUlPLENBQUEsVUFDUCxvQkFJTyxDQUFBLFVBQ1AsbUNBSU8sQ0FBQSxPQUNQLG9CQUlPLENBQUEsU0FDUCxzQkFJTyxDQUFBLFNBQ1AsbUNBSU8sQ0FBQSxTQUNQLG1DQUlPLENBQUEsU0FDUCxvQkFJTyxDQUFBLFNBQ1AsbUNBSU8sQ0FBQSxTQUNQLG1DQUlPLENBQUEsU0FDUCxzQkFJTyxDQUFBLFNBQ1AsbUNBSU8sQ0FBQSxTQUNQLG1DQUlPLENBQUEsT0FDUCxvQ0FJTyxDQUFBLFNBQ1AsbUNBSU8sQ0FBQSxTQUNQLG1DQUlPLENBQUEsU0FDUCxzQkFJTyxDQUFBLFNBQ1AsbUNBSU8sQ0FBQSxTQUNQLG1DQUlPLENBQUEsU0FDUCxvQkFJTyxDQUFBLFNBQ1AsbUNBSU8sQ0FBQSxTQUNQLG1DQUlPLENBQUEsU0FDUCxzQkFJTyxDQUFBLE9BQ1AsbUNBSU8sQ0FBQSxTQUNQLG1DQUlPLENBQUEsU0FDUCxvQkFJTyxDQUFBLFNBQ1AsbUNBSU8sQ0FBQSxTQUNQLG1DQUlPLENBQUEsU0FDUCxzQkFJTyxDQUFBLFNBQ1AsbUNBSU8sQ0FBQSxTQUNQLG1DQUlPLENBQUEsU0FDUCxvQkFJTyxDQUFBLFNBQ1AsbUNBSU8sQ0FBQSxPQUNQLG9CQUlPLENBQUEsU0FDUCxzQkFJTyxDQUFBLFNBQ1AsbUNBSU8sQ0FBQSxTQUNQLG1DQUlPLENBQUEsU0FDUCxvQkFJTyxDQUFBLFNBQ1AsbUNBSU8sQ0FBQSxTQUNQLG1DQUlPLENBQUEsU0FDUCxzQkFJTyxDQUFBLFNBQ1AsbUNBSU8sQ0FBQSxTQUNQLG1DQUlPLENBQUEsT0FDUCxtQ0FJTyxDQUFBLFNBQ1AsbUNBSU8sQ0FBQSxTQUNQLG1DQUlPLENBQUEsU0FDUCxzQkFJTyxDQUFBLFNBQ1AsbUNBSU8sQ0FBQSxTQUNQLG1DQUlPLENBQUEsU0FDUCxvQkFJTyxDQUFBLFNBQ1AsbUNBSU8sQ0FBQSxTQUNQLG1DQUlPLENBQUEsU0FDUCxzQkFJTyxDQUFBLE9BQ1AsbUNBSU8sQ0FBQSxTQUNQLG1DQUlPLENBQUEsU0FDUCxvQkFJTyxDQUFBLFNBQ1AsbUNBSU8sQ0FBQSxTQUNQLG1DQUlPLENBQUEsU0FDUCxzQkFJTyxDQUFBLFNBQ1AsbUNBSU8sQ0FBQSxTQUNQLG1DQUlPLENBQUEsU0FDUCxvQkFJTyxDQUFBLFNBQ1AsbUNBSU8sQ0FBQSxPQUNQLG9CQUlPLENBQUEsU0FDUCxzQkFJTyxDQUFBLFNBQ1AsbUNBSU8sQ0FBQSxTQUNQLG1DQUlPLENBQUEsU0FDUCxvQkFJTyxDQUFBLFNBQ1AsbUNBSU8sQ0FBQSxTQUNQLG1DQUlPLENBQUEsU0FDUCxzQkFJTyxDQUFBLFNBQ1AsbUNBSU8sQ0FBQSxTQUNQLG1DQUlPLENBQUEsT0FDUCxtQ0FJTyxDQUFBLFNBQ1AsbUNBSU8sQ0FBQSxTQUNQLG1DQUlPLENBQUEsU0FDUCxzQkFJTyxDQUFBLFNBQ1AsbUNBSU8sQ0FBQSxTQUNQLG1DQUlPLENBQUEsU0FDUCxvQkFJTyxDQUFBLFNBQ1AsbUNBSU8sQ0FBQSxTQUNQLG1DQUlPLENBQUEsU0FDUCxzQkFJTyxDQUFBLE9BQ1Asa0NBSU8sQ0FBQSxTQUNQLG1DQUlPLENBQUEsU0FDUCxvQkFJTyxDQUFBLFNBQ1AsbUNBSU8sQ0FBQSxTQUNQLG1DQUlPLENBQUEsU0FDUCxzQkFJTyxDQUFBLFNBQ1AsbUNBSU8sQ0FBQSxTQUNQLG1DQUlPLENBQUEsU0FDUCxvQkFJTyxDQUFBLFNBQ1Asa0NBSU8sQ0FBQSxTQUNQLHFCQUlPLENBQUEsU0FDUCxrQ0FJTyxDQUFBLFNBQ1Asa0NBSU8sQ0FBQSxTQUNQLG1CQUlPLENBQUEsU0FDUCxrQ0FJTyxDQUFBLFNBQ1Asa0NBSU8sQ0FBQSxTQUNQLHFCQUlPLENBQUEsU0FDUCxrQ0FJTyxDQUFBLFNBQ1Asa0NBSU8sQ0FBQSwwQkFRZ0IsVUFDdkIsU0FDUSxDQUFBLFVBQ1AsU0FHTyxDQUFBLENBQUcsS0FJWixtQkFDUyxDQUFBLEtBQ1IsOEJBRytCLENBQUEsS0FDL0IsNkJBRzhCLENBQUEsS0FDOUIsNEJBR3NCLENBQUEsS0FDdEIsOEJBRzhCLENBQUEsS0FDOUIsNEJBRzRCLENBQUEsTUFDNUIsNkJBR2tCLENBQUEsTUFDbEIsa0NBR21DLENBQUEsTUFDbkMsaUNBR2tDLENBQUEsTUFDbEMsZ0NBRzBCLENBQUEsTUFDMUIsa0NBR2tDLENBQUEsTUFDbEMsZ0NBR2dDLENBQUEsTUFDaEMsK0JBR29CLENBQUEsTUFDcEIsb0NBR3FDLENBQUEsTUFDckMsbUNBR29DLENBQUEsTUFDcEMsa0NBRzRCLENBQUEsTUFDNUIsb0NBR29DLENBQUEsTUFDcEMsa0NBR2tDLENBQUEsTUFDbEMsZ0NBR3FCLENBQUEsTUFDckIscUNBR3NDLENBQUEsTUFDdEMsb0NBR3FDLENBQUEsTUFDckMsbUNBRzZCLENBQUEsTUFDN0IscUNBR3FDLENBQUEsTUFDckMsbUNBR21DLENBQUEsTUFDbkMsOEJBR21CLENBQUEsTUFDbkIsbUNBR29DLENBQUEsTUFDcEMsa0NBR21DLENBQUEsTUFDbkMsaUNBRzJCLENBQUEsTUFDM0IsbUNBR21DLENBQUEsTUFDbkMsaUNBR2lDLENBQUEsTUFDakMsNkJBR2tCLENBQUEsZ0NBQ0csQ0FBQSxNQUNyQixrQ0FHbUMsQ0FBQSxxQ0FDRyxDQUFBLE1BQ3RDLGlDQUdrQyxDQUFBLG9DQUNHLENBQUEsTUFDckMsZ0NBRzBCLENBQUEsbUNBQ0csQ0FBQSxNQUM3QixrQ0FHa0MsQ0FBQSxxQ0FDRyxDQUFBLE1BQ3JDLGdDQUdnQyxDQUFBLG1DQUNHLENBQUEsTUFDbkMsK0JBR29CLENBQUEsOEJBQ0QsQ0FBQSxNQUNuQixvQ0FHcUMsQ0FBQSxtQ0FDRCxDQUFBLE1BQ3BDLG1DQUdvQyxDQUFBLGtDQUNELENBQUEsTUFDbkMsa0NBRzRCLENBQUEsaUNBQ0QsQ0FBQSxNQUMzQixvQ0FHb0MsQ0FBQSxtQ0FDRCxDQUFBLE1BQ25DLGtDQUdrQyxDQUFBLGlDQUNELENBQUEsTUFDakMsdUJBR1ksQ0FBQSwwQkFDRyxDQUFBLFVBQ1IsQ0FBQSxNQUNQLDRCQUc2QixDQUFBLCtCQUNHLENBQUEsVUFDekIsQ0FBQSxNQUNQLDJCQUc0QixDQUFBLDhCQUNHLENBQUEsVUFDeEIsQ0FBQSxNQUNQLGVEOThDUSxDQUFBLGtCQUFBLENBQUEsVUNtOUNELENBQUEsTUFDUCw0QkFHNEIsQ0FBQSwrQkFDRyxDQUFBLFVBQ3hCLENBQUEsTUFDUCwwQkFHMEIsQ0FBQSw2QkFDRyxDQUFBLFVBQ3RCLENBQUEsUUFDUCxzQkFHUSxDQUFBLEtBQ1IsbUJBR1EsQ0FBQSxLQUNSLHdCQUd5QixDQUFBLEtBQ3pCLHVCQUd3QixDQUFBLEtBQ3hCLHNCQUdnQixDQUFBLEtBQ2hCLHdCQUd3QixDQUFBLEtBQ3hCLHNCQUdzQixDQUFBLFNBQ3RCLDBCQUdZLENBQUEsTUFDWix1QkFHWSxDQUFBLE1BQ1osNEJBRzZCLENBQUEsTUFDN0IsMkJBRzRCLENBQUEsTUFDNUIsMEJBR29CLENBQUEsTUFDcEIsNEJBRzRCLENBQUEsTUFDNUIsMEJBRzBCLENBQUEsU0FDMUIsNEJBR2MsQ0FBQSxNQUNkLHlCQUdjLENBQUEsTUFDZCw4QkFHK0IsQ0FBQSxNQUMvQiw2QkFHOEIsQ0FBQSxNQUM5Qiw0QkFHc0IsQ0FBQSxNQUN0Qiw4QkFHOEIsQ0FBQSxNQUM5Qiw0QkFHNEIsQ0FBQSxTQUM1Qiw2QkFHZSxDQUFBLE1BQ2YsMEJBR2UsQ0FBQSxNQUNmLCtCQUdnQyxDQUFBLE1BQ2hDLDhCQUcrQixDQUFBLE1BQy9CLDZCQUd1QixDQUFBLE1BQ3ZCLCtCQUcrQixDQUFBLE1BQy9CLDZCQUc2QixDQUFBLFNBQzdCLDJCQUdhLENBQUEsTUFDYix3QkFHYSxDQUFBLE1BQ2IsNkJBRzhCLENBQUEsTUFDOUIsNEJBRzZCLENBQUEsTUFDN0IsMkJBR3FCLENBQUEsTUFDckIsNkJBRzZCLENBQUEsTUFDN0IsMkJBRzJCLENBQUEsU0FDM0IsMEJBR1ksQ0FBQSw2QkFDRyxDQUFBLE1BQ2YsdUJBR1ksQ0FBQSwwQkFDRyxDQUFBLE1BQ2YsNEJBRzZCLENBQUEsK0JBQ0csQ0FBQSxNQUNoQywyQkFHNEIsQ0FBQSw4QkFDRyxDQUFBLE1BQy9CLDBCQUdvQixDQUFBLDZCQUNHLENBQUEsTUFDdkIsNEJBRzRCLENBQUEsK0JBQ0csQ0FBQSxNQUMvQiwwQkFHMEIsQ0FBQSw2QkFDRyxDQUFBLFNBQzdCLDRCQUdjLENBQUEsMkJBQ0QsQ0FBQSxNQUNiLHlCQUdjLENBQUEsd0JBQ0QsQ0FBQSxNQUNiLDhCQUcrQixDQUFBLDZCQUNELENBQUEsTUFDOUIsNkJBRzhCLENBQUEsNEJBQ0QsQ0FBQSxNQUM3Qiw0QkFHc0IsQ0FBQSwyQkFDRCxDQUFBLE1BQ3JCLDhCQUc4QixDQUFBLDZCQUNELENBQUEsTUFDN0IsNEJBRzRCLENBQUEsMkJBQ0QsQ0FBQSxLQUMzQixvQkFHUyxDQUFBLEtBQ1QseUJBRzBCLENBQUEsS0FDMUIsd0JBR3lCLENBQUEsS0FDekIsdUJBR2lCLENBQUEsS0FDakIseUJBR3lCLENBQUEsS0FDekIsdUJBR3VCLENBQUEsTUFDdkIsd0JBR2EsQ0FBQSxNQUNiLDZCQUc4QixDQUFBLE1BQzlCLDRCQUc2QixDQUFBLE1BQzdCLDJCQUdxQixDQUFBLE1BQ3JCLDZCQUc2QixDQUFBLE1BQzdCLDJCQUcyQixDQUFBLE1BQzNCLDBCQUdlLENBQUEsTUFDZiwrQkFHZ0MsQ0FBQSxNQUNoQyw4QkFHK0IsQ0FBQSxNQUMvQiw2QkFHdUIsQ0FBQSxNQUN2QiwrQkFHK0IsQ0FBQSxNQUMvQiw2QkFHNkIsQ0FBQSxNQUM3QiwyQkFHZ0IsQ0FBQSxNQUNoQixnQ0FHaUMsQ0FBQSxNQUNqQywrQkFHZ0MsQ0FBQSxNQUNoQyw4QkFHd0IsQ0FBQSxNQUN4QixnQ0FHZ0MsQ0FBQSxNQUNoQyw4QkFHOEIsQ0FBQSxNQUM5Qix5QkFHYyxDQUFBLE1BQ2QsOEJBRytCLENBQUEsTUFDL0IsNkJBRzhCLENBQUEsTUFDOUIsNEJBR3NCLENBQUEsTUFDdEIsOEJBRzhCLENBQUEsTUFDOUIsNEJBRzRCLENBQUEsTUFDNUIsd0JBR2EsQ0FBQSwyQkFDRyxDQUFBLE1BQ2hCLDZCQUc4QixDQUFBLGdDQUNHLENBQUEsTUFDakMsNEJBRzZCLENBQUEsK0JBQ0csQ0FBQSxNQUNoQywyQkFHcUIsQ0FBQSw4QkFDRyxDQUFBLE1BQ3hCLDZCQUc2QixDQUFBLGdDQUNHLENBQUEsTUFDaEMsMkJBRzJCLENBQUEsOEJBQ0csQ0FBQSxNQUM5QiwwQkFHZSxDQUFBLHlCQUNELENBQUEsTUFDZCwrQkFHZ0MsQ0FBQSw4QkFDRCxDQUFBLE1BQy9CLDhCQUcrQixDQUFBLDZCQUNELENBQUEsTUFDOUIsNkJBR3VCLENBQUEsNEJBQ0QsQ0FBQSxNQUN0QiwrQkFHK0IsQ0FBQSw4QkFDRCxDQUFBLE1BQzlCLDZCQUc2QixDQUFBLDRCQUNELENBQUEsUUFDNUIsMEJBSWEsQ0FBQSw2QkFDRyxDQUFBLHNDQUlNLFlBQ2IsQ0FBQSw2QkFDUSxDQUFBLDRDQUd1QixrQkFDekIsQ0FBQSx1QkFJTSxjQUNiLENBQUEsYUFDQyxDQUFBLGdCQUNBLENBQUEsVUFDRixDQUFBLGVBQ00sQ0FBQSxzQkFDQSxDQUFBLFVBQ04sQ0FBQSxrQkFDTSxDQUFBLDBEQVJZLGFBWWpCLENBQUEsb0JBQ1UsQ0FBQSwyQkFDQyxDQUFBLDhCQUlTLG1CQUNaLENBQUEsVUR2MURZLENBQUEsd0VDczFESSxVRHQxREosQ0FBQSxvQkM2MURWLENBQUEsa0JBQ1QsQ0FBQSw0QkFDVSxDQUFBLHFCQUNBLENBQUEsZ0NBSVcsa0JEMzFEUCxDQUFBLFdDNjFEaEIsQ0FBQSw0RUFGMkIsV0FNMUIsQ0FBQSxvQkFDVSxDQUFBLHdCRC8xRFMsQ0FBQSw4QkNxMkRQLE9BQ2YsQ0FBQSxZQUNJLENBQUEsb0NBR2lCLG9CQUNqQixDQUFBLDZCQUdxQix3QkFDWixDQUFBLGNBQ2xCLHdCQUdXLENBQUEsZ0JBQ1gsd0JBR1csQ0FBQSxVQUNYLDJCQUdhLENBQUEsdUJBQ0MsQ0FBQSxlQUNELENBQUEsNkJBS0ksc0NEajZEQSxDQUFBLG9DQ2k2REEsc0NEaDZETyxDQUFBLDJCQzA2RFIsc0NEMzZEQyxDQUFBLGtDQzI2REQsc0NEMTZEUSxDQUFBLGVDZzdEdEIsOEJBS1ksQ0FBQSwwRkFRWCxlQUNXLENBQUUsY0FDSCxDQUFFLDBJQUZSLDBCQUttQixDQUFBLDZCQUNHLENBQUEsc0lBTnRCLDJCQVVvQixDQUFBLDhCQUNHLENBQUEsMkJEcDlEYixDQUFBLDhKQzg5RFgsMkJBRXNCLENBQUUsMEpBRnhCLDRCQU11QixDQUFFLDBIQVM3QixZQUNVLENBQUUsMEtBRFIsZUFJVSxDQUFFLHNLQUpaLGVBUVUsQ0FBRSwwSEFTaEIsWUFDVSxDQUFFLDBLQURSLHdCQUltQixDQUFFLHNLQUpyQix5QkFRb0IsQ0FBRSxzTEFVckIsdUJENWdFaUIsQ0FBQSxtQkN1aEV6Qix1QkFDVSxDQUFBLDBDQUkrQixpQkFDdkMsdUJBQ1UsQ0FBQSxDQUFlLDBDQUljLGdCQUN2Qyx1QkFDVSxDQUFBLHFCQUNULDRCQUdZLENBQUEsa0JBQ1osdUJBR1MsQ0FBQSxnQ0FDTyxDQUFBLDBCQUNoQix1QkFHUyxDQUFBLHdDQUNPLENBQUEsdUJBQ2hCLGlDQUdhLENBQUEsZUFDYixxQkFHTyxDQUFBLG1CQUNQLHlCQUdXLENBQUEsYUFDWCx3QkFHeUIsQ0FBQSxjQUN6Qiw4QkFHK0IsQ0FBQSxDQUFVLHNCQUtsQyx5QkFDSyxDQUFBLHlDQU1iLHdCRC9pRXNCLENBQUEsV0NpakVkLENBQUEsb0JBQ08sQ0FBQSxxREFRZCx3QkR6akU0QixDQUFBLFVDMmpFcEIsQ0FBQSxvQkFDTyxDQUFBLHlDQWRoQix3QkQvaUVzQixDQUFBLFdDeWtFZCxDQUFBLG9CQUNPLENBQUEscURBaEJkLHdCRHpqRTRCLENBQUEsVUNtbEVwQixDQUFBLG9CQUNPLENBQUEsV0Q5ckVsQix5QkFDYyxDQUFBLGlCQUNELENBQUEsZUFDQyxDQUFBLDJGQUM4RCxDQUFBLFdBRzVFLG9CQUNjLENBQUEsaUJBQ0QsQ0FBQSxlQUNDLENBQUEseUVBQzRDLENBQUEsV0FHMUQsa0NBQ2MsQ0FBQSxpQkFDRCxDQUFBLGVBQ0MsQ0FBQSw2R0FDZ0YsQ0FBQSxXQUc5Riw0QkFDYyxDQUFBLHlGQUM0RCxDQUFBLHVCQUcxRSxLQUNDLFNBQ1EsQ0FBRSxHQUdWLFNBQ1EsQ0FBRSxDQUFDLDBEQTJNdUIsYUFDdEIsQ0FBQSwwREFHc0IsYUFDdEIsQ0FBQSwwREFHc0IsYUFDdEIsQ0FBQSx5Q0V5c0RMLFdGcHNEQyxDQUFBLHVEQUVELGFBQ0csQ0FBQSxxQkFDRixDQUFBLGlCQUNHLENBQUEsVUFDSCxDQUFBLFVBQ0EsQ0FBQSxXQUNDLENBQUEsVUFDRCxDQUFBLGtCQUNPLENBQUEsYUFDSCxDQUFBLDRCR2xQYixLQUNDLHNCQUNZLENBQUEsR0FHWix3QkFDWSxDQUFBLENINE9BLG9CR2xQYixLQUNDLHNCQUNZLENBQUEsR0FHWix3QkFDWSxDQUFBLENBQUEsU0FNVCxpQkFFZSxDQUFBLGtEQVFoQixpQkFDZSxDQUFBLHlHQURYLGVBSUgsQ0FBYSxtSEFHWCxlQUNGLENBQWEsUUFDYixrQkFJYSxDQUFBLGlCQUNOLENBQUEsaUJBRVIsaUJBQ1MsQ0FBQSxVQUNSLGNBSVcsQ0FBQSxrQkFDRyxDQUFBLGlCQUNELENBQUEsYUFDZCxDQUFXLG9CQUtULGVBQ1csQ0FBQSxvQkFHWCxlQUNELENBQWEsUUFDYixpQkFJYyxDQUFBLG1CQUNmLFlBR1MsQ0FBQSxjQUNFLENBQUEsNkJBQ00sQ0FBQSxzQkFDSixDQUFBLHdCQUNFLENBQUEsZ0JBQ2YsV0FHUyxDQUFBLGNBQ0UsQ0FBQSxrQkFDRSxDQUFBLHVCQUViLGNBQ1ksQ0FBQSxlQUNYLGlCQUlPLENBQUEsaUJBQ0ksQ0FBQSxXQUNaLGNBR1csQ0FBQSxlQUNDLENBQUEsY0FDSixDQUFBLGFBQ1IsYUFHVyxDQUFBLGFBQ0gsQ0FBQSxpQkFDUixZQUdTLENBQUEsY0FDRSxDQUFBLHNCQUNNLENBQUEsb0JBQ0osQ0FBQSx1QkFDYixtQkFHUyxDQUFBLGFBQ0UsQ0FBQSxzQkFDWCxpQkFLaUIsQ0FBQSxjQUNmLFVBSU0sQ0FBQSxnQkFDSyxDQUFBLGFBQ0gsQ0FBQSxtQkFDVCxhQUlRLENBQUEsZUFDSSxDQUFBLGdCQUNiLFNBR08sQ0FBQSxvQkFDRSxDQUFBLGlCQUNULFVBR08sQ0FBQSxpQkFDSyxDQUFBLGlCQUNBLENBQUEsY0FDQSxDQUFBLHVCQUNaLDRCSDVGZSxDQUFBLGNHZ0dOLENBQUEsc0JBQ1Qsa0JBR1ksQ0FBQSxxQkFDWixvQkFJaUIsQ0FBQSx3Q0FERixVQUlQLENBQUEsV0FDQyxDQUFBLGtCQUNSLGlCQUlXLENBQUEsYUFDSCxDQUFBLGNBQ1QsUUFHQSxDQUFNLHVCQUNOLGtCQUdhLENBQUEsaUJBQ0EsQ0FBQSxTQUNiLENBQU8sZUFDSyxDQUFBLCtCQUVWLGlCQUNjLENBQUEsaUNBRFAsY0FJQyxDQUFBLGtDQUlQLGFBQ0QsQ0FBVyxlQUNYLGVBS1UsQ0FBQSxrQ0FFQyxrQkFDQyxDQUFBLGlCQUNBLENBQUEsa0JBQ2Isa0JBSVcsQ0FBQSxzQkFDWixzQkFHWSxDQUFBLHFCQUNaLGVBR1ksQ0FBQSxhQUNILENBQUEsNkJBRVAsZUFDRCxDQUFhLDRCQUNiLGVBSVcsQ0FBQSxpQkFDSCxDQUFBLG9DQUVQLGVBQ0QsQ0FBYSxnQkFDQSxDQUFBLGdCQUNDLENBQUEsZUFDZCxRQUlELENBQU0sZ0JBQ08sQ0FBQSxVQUNiLGFIak1ZLENBQUEsMkJHN0NELENBQUEsdUJBQ0MsQ0FBQSxlQUNELENBQUEsWUFDSixDQUFBLDZCQUNRLENBQUEsa0JBQ0osQ0FBQSxlQWdQQSxDQUFBLFVBQ1gsYUh6TVksQ0FBQSwyQkc3Q0QsQ0FBQSx1QkFDQyxDQUFBLGVBQ0QsQ0FBQSxZQUNKLENBQUEsNkJBQ1EsQ0FBQSxrQkFDSixDQUFBLGVBd1BBLENBQUEsK0JIaE5DLENBQUEsZ0JHa05KLENBQUEsVUFDUixhSG5OWSxDQUFBLDJCRzdDRCxDQUFBLHVCQUNDLENBQUEsZUFDRCxDQUFBLFlBQ0osQ0FBQSw2QkFDUSxDQUFBLGtCQUNKLENBQUEsZUFrUUEsQ0FBQSxnQkFDWCx1QkFLYyxDQUFBLGtCQUNELENBQUEsZUFDRixDQUFBLFlBQ0YsQ0FBQSw2QkFDUSxDQUFBLGtCQUNKLENBQUEscUJBQ2IsYUFHUyxDQUFBLHVCQUNLLENBQUEsa0JBQ0QsQ0FBQSxlQUNGLENBQUEsaUJBQ0MsQ0FBQSxVQUNaLGdCQUthLENBQUEsaUJBQ0QsQ0FBQSxVQUNaLGlCQUtZLENBQUEsd0JBSVIsaUJBQ1MsQ0FBQSxlQUNiLENBQWEsb0RBRkwsY0FLRSxDQUFBLGVBSUgsaUJBQ00sQ0FBQSxlQUNiLENBQWEsYUFDYixlQUdRLENBQUEsZ0JBQ0MsQ0FBQSw0QkFDYSxDQUFBLHdCQWhVTixDQUFBLDRCQUFBLENBQUEsK0JBQUEsQ0FBQSx3QkFvVUUsQ0FBQSw0QkFFZixlQUNGLENBQWEsd0JBQ2IsNEJBR3NCLENBQUEsd0JBM1VQLENBQUEsNkJBQUEsQ0FBQSw4QkFBQSxDQUFBLHdCQStVRyxDQUFBLG1CQUNsQixlQUdZLENBQUEsWUFDWiw0QkFJcUIsQ0FBQSxzQ0FDSixDQUFBLFlBQ1YsQ0FBQSxhQUNDLENBQUEsVUFDRixDQUFBLHVCQUNQLGNBSVMsQ0FBQSwyQkFDSyxDQUFBLHVCQUNDLENBQUEsd0JBQ0UsQ0FBQSxnQkFDSCxDQUFBLDZCQUxOLGlDQVFNLENBQUEsdUJBQ1osaUJBSVksQ0FBQSxlQUNBLENBQUEseUJBQ2IsY0FJTyxDQUFBLHlCQUNTLENBQUEsbUJBQ2pCLGFBR0EsQ0FBVyxlQUNFLENBQUEsNkJBQ1EsQ0FBQSxzQkFDRixDQUFFLDJCQUVyQiwrQkFDaUIsQ0FEakIsdUJBQ2lCLENBQUEsK0JBQ0ksQ0FESix1QkFDSSxDQUFBLDBDQUNPLENBRFAsa0NBQ08sQ0FBQSx3Q0FDQSxDQURBLGdDQUNBLENBQUEsV0FDM0Isd0NBSVksQ0FBQSxhQUNOLENBQUEsZUFFUCxjQUNZLENBQUEsdUJBQ0csQ0FBQSxlQUNkLGNBR1csQ0FBQSxlQUNYLGNBR1csQ0FBQSxlQUNYLGNBR1csQ0FBQSxpQkFDWCxXQUdTLENBQUEsdUJBQ1QsZ0JBR1ksQ0FBQSxtQkFDRyxDQUFBLDZCQUVmLFVBQ1EsQ0FBQSxjQUNQLENBQVksaUJBQ0MsQ0FBQSw4QkFDYixXQUdPLENBQUEsa0JBQ08sQ0FBQSxhQUNkLENBQVcsOEJBYkEsVUFpQkosQ0FBRSxVQUNGLENBQUEsYUFDRSxDQUFBLGVBQ1QsY0FNVSxDQUFBLGVBQ0MsQ0FBQSxlQUNaLGNBR1csQ0FBQSxnQkFDQyxDQUFBLGNBQ1osV0FJTyxDQUFBLE9BQ1IsQ0FBSyw2QkFwY1csQ0FBQSw4QkFBQSxDQUFBLGFBdWNSLENBQUEsWUFDUixhQUdRLENBQUEsZ0JBQ0MsQ0FBQSw0QkFDYSxDQUFBLHdCQTdjTixDQUFBLDRCQUFBLENBQUEsK0JBQUEsQ0FBQSx3QkFpZEUsQ0FBQSwyQkFFZixlQUNGLENBQWEscUJBQ2IsNENBSVksQ0FBQSxjQUNGLENBQUEsVUhuYkUsQ0FBQSxlR3FiQSxDQUFBLGNBQ2Isb0JBR2EsQ0FBQSxlQUNiLHFCSDVhZ0IsQ0FBQSxpQ0dnYmhCLGlCQUtZLENBQUEsV0FDTCxDQUFBLCtCQUNQLGlCQUtZLENBQUEsV0FDTCxDQUFBLHFCQU1DLGVBQ1YsQ0FBYSxvRkFPYixhSG5aYyxDQUFBLDJCQUFBLENBQUEscUVHNFpkLGFIMVppQixDQUFBLDJCQUFBLENBQUEsOE5HbWFqQixhSHRhYyxDQUFBLDJCQUFBLENBQUEsaUZHK2FkLGFIMWFnQixDQUFBLDJCQUFBLENBQUEsV0F2SGpCLHlCQUNjLENBQUEsaUJBQ0QsQ0FBQSxlQUNDLENBQUEsMkZBQzhELENBQUEsV0FHNUUsb0JBQ2MsQ0FBQSxpQkFDRCxDQUFBLGVBQ0MsQ0FBQSx5RUFDNEMsQ0FBQSxXQUcxRCxrQ0FDYyxDQUFBLGlCQUNELENBQUEsZUFDQyxDQUFBLDZHQUNnRixDQUFBLFdBRzlGLDRCQUNjLENBQUEseUZBQzRELENBQUEsdUJBRzFFLEtBQ0MsU0FDQyxDQUFPLEdBR1IsU0FDQyxDQUFPLENBQUUsMERBMk13QixhQUN0QixDQUFBLDBEQUdzQixhQUN0QixDQUFBLDBEQUdzQixhQUN0QixDQUFBLHlDRXlzREwsV0Zwc0RDLENBQUEsdURBRUQsYUFDRyxDQUFBLHFCQUNGLENBQUEsaUJBQ0csQ0FBQSxVQUNILENBQUEsVUFDQSxDQUFBLFdBQ0MsQ0FBQSxVQUNELENBQUEsa0JBQ08sQ0FBQSxhQUNMLENBQUUsa0VJOVBWLGFKa0RtQixDQUFBLHNCSTlDbkIsMkJKOENtQixDQUFBLHNCSTFDbkIsYUoyQ21CLENBQUEsc0JJdkNuQixhSnVDbUIsQ0FBQSxvQ0luQ25CLGlCSmdEc0IsQ0FBQSx5Qkk1Q3RCLHdCQUNrQixDQUFBLG9DQUVqQix3QkFDa0IsQ0FBQSx3QkFJbkIsd0JBQ2tCLENBQUEsdUJBR2xCLGFBQ08sQ0FBQSxpQ0FHUCxVSmtEZSxDQUFBLDJCSTlDZixxQkoyQ3VCLENBQUEsVUFIVixDQUFBLDZDSWpDYixVSnVDZSxDQUFBLDJDSWpDZixVSmlDZSxDQUFBLG9GRzBhakIsYUhuWmMsQ0FBQSwyQkFBQSxDQUFBLHFFRzRaZCxhSGxad0IsQ0FBQSwyQkFBQSxDQUFBLDhORzJaeEIsYUg5WnFCLENBQUEsMkJBQUEsQ0FBQSxpRkd1YXJCLGFIbGF1QixDQUFBLDJCQUFBLENBQUEsV0EvSHhCLHlCQUNjLENBQUEsaUJBQ0QsQ0FBQSxlQUNELENBQUUsMkZBQzhELENBQUEsV0FHNUUsb0JBQ2MsQ0FBQSxpQkFDRCxDQUFBLGVBQ0QsQ0FBRSx5RUFDNEMsQ0FBQSxXQUcxRCxrQ0FDYyxDQUFBLGlCQUNELENBQUEsZUFDRCxDQUFFLDZHQUNnRixDQUFBLFdBRzlGLDRCQUNjLENBQUEseUZBQzRELENBQUEsdUJBRzFFLEtBQ0MsU0FDQyxDQUFBLEdBQVUsU0FJVixDQUFBLENBQU8sMERBMk0wQixhQUN4QixDQUFFLDBEQUdzQixhQUN4QixDQUFFLDBEQUdzQixhQUN4QixDQUFFLHlDRXlzREwsV0Zwc0RDLENBQUEsdURBRUQsYUFDRyxDQUFBLHFCQUNGLENBQUEsaUJBQ0csQ0FBQSxVQUNMLENBQUUsVUFDRixDQUFFLFdBQ0QsQ0FBRSxVQUNILENBQUUsa0JBQ08sQ0FBQSxhQUNkLENBQVMseUJLaFFWLFlBQ0MsQ0FBQSx3QkFDQSxDQUFBLHlCQUNBLENBQUEsMEJBSWlCLFVKNm9CWixxQkkzb0JZLENMcURELHNCS2xERSxpQkFDTixDTHFEVyxtQktsRG5CLGNBQ0ssQ0FBRSwwQkFHUCxRQUNELENBQUUsTUFDTCxDQUFBLENBQUEsbUNBS2EsVUFDUixDTDREVyxxQkszREEsQ0xxREYsd0NBZmUsQ0FBQSxZS3BDN0IsQ0FBQSxrRkFKeUIsd0JBUU4sQ0FBQSxXQUNYLENBQUEsc0VBSVcsV0FHWCxDQUFBLDZGQU1PLHdCQUNHLENBQUEsNkJMTkYsQ0FBQSw4QkFBQSxDQUFBLG9CQUFBLENBQUEsa0hLY00scUJBQ04sQ0xsQkYsa0JLbUJkLGNBUVUsQ0FBQSx3QkFDVCxvQkFHUyxDQUFBLFdBQ0gsQ0FBRSxxQkFDSyxDQUFBLGlCQUNILENBQUEsc0JBQ0ksQ0FBQSxPQUNkLENBQUcsZ0JBQ0gsQ0FBWSxlQUNaLENBQVcsbUJBQ1gsd0JBS1MsQ0FBQSxrREFETCx3QkxKTyxDQUFBLDJCS1VWLGtCTDlDYyxDQUFBLFdLa0RQLENBQUEsa0VBRkMsa0JMakRhLENBQUEsbUJLd0RwQixzQkFLTyxDQUFBLFlBQ0YsQ0FBRSxxQkFDTyxDQUFBLHVCQUNoQixnQkFHUyxDQUFBLFVBQ0osQ0x0RVEsMERLb0VMLHdCTDdCRyxDQUFBLG9CS29DSyxDQUFFLCtCQUNqQixrQkx6RWMsQ0FBQSxXSzZFUCxDQUFBLDBFQUZDLGtCTDVFYSxDQUFBLFdLbUZiLENBQUEsMEVBU0wsd0JMcERhLENBQUEsV0t3RFQsQ0FBQSx1Q0FHUCxXQUNPLENBQUEsMEZBREMsa0JMbkdhLENBQUEsbUNLNkd0QixVQUNLLENMakVVLGtGS2dFUCx3QkxyRVMsQ0FBQSxXSzJFVCxDQUFBLDJDQUdQLFdBQ08sQ0FBQSxrR0FEQyxrQkx0SGEsQ0FBQSxXQS9DekIseUJBQ2MsQ0FBQSxpQkFDRCxDQUFBLGVBQ1osQ0FBVywyRkFDZ0UsQ0FBQSxXQUc1RSxvQkFDYyxDQUFBLGlCQUNELENBQUEsZUFDWixDQUFXLHlFQUM4QyxDQUFBLFdBRzFELGtDQUNjLENBQUEsaUJBQ0QsQ0FBQSxlQUNaLENBQVcsNkdBQ2tGLENBQUEsV0FHOUYsNEJBQ2MsQ0FBQSx5RkFDNEQsQ0FBQSx1QkFHMUUsS0FDQyxTQUNDLENBQUEsR0FBUyxTQUlULENBQUEsQ0FBQSwwREEyTWlDLGFBQ2pDLENBQVMsMERBR3dCLGFBQ2pDLENBQVMsMERBR3dCLGFBQ2pDLENBQVMseUNFeXNESCxXRnBzREQsQ0FBRSx1REFFRCxhQUNHLENBQUEscUJBQ0YsQ0FBQSxpQkFDRyxDQUFBLFVBQ1YsQ0FBSyxVQUNMLENBQUssV0FDTCxDQUFNLFVBQ04sQ0FBSyxrQkFDTyxDQUFFLGFBQ2QsQ0FBQSw4Qk1sUUYsS0FBVSxTQUVSLENBQUEsR0FBTyxTQUlQLENBQUEsQ040UEEsc0JNbFFGLEtBQVUsU0FFUixDQUFBLEdBQU8sU0FJUCxDQUFBLENBQUEsNkJBSUYsS0FBVSxrQkFFRyxDQUFBLEdBQUEsa0JBSUEsQ0FBQSxDQVZYLHFCQUlGLEtBQVUsa0JBRUcsQ0FBQSxHQUFBLGtCQUlBLENBQUEsQ0FBQSxNQUliLGNBQ1MsQ0FBRSxXQUNMLENBQUUsY0FDUCxDQUFTLGVBQ0EsQ0FBRSxXQUNYLENBQUEsMkJBQ1ksQ0FBQSw0Q0FDSSxDQURKLG9DQUNJLENBQUEsc0NBQ0ksQ0FESiw4QkFDSSxDQUFBLFlBQ3BCLENBQU8scUJBQ1MsQ0FBQSw0VEFXYixZQUNBLENBQU8sY0FDUCxrQkFLVSxDQUFBLFVBQ1osQ0FBSyxrQ0FDZSxDQURmLDBCQUNlLENBQUEsaUJBQ1IsQ0FBQSxXQUNaLENBQU0saUJBQ0ssQ0FBQSxrQkFDQyxDQUFBLDJCQUdNLE1BckNwQixjQXNDRSxDQUFTLENBQUUsK0JBdENSLGtCQTBDUyxDQUFBLHlCQTFDVCxTQThDSCxDQUFBLGlCQUNBLGVBR0EsQ0FBVSxlQUNWLENBQVUsZUFDVixDQUFVLGtCQUNFLENBQUEsdUJBQ0QsQ0FBQSxlQUNYLENBQUEsd0JBRUEsYUFDUSxDQUFFLGdCQUlYLGdCQUNZLENBQUEsb0JBR04sVUFDTCxDQUFBLHdCTmxDYSxDQUFBLFlNb0NQLENBQUUsU0FDUixDQUFBLDRCQUNjLENBQUEsYUFDZCxpQkFJUyxDQUFBLGNBQ1YsQ0FBQSxlQUNBLENBQVUsZ0JBQ0EsQ0FBRSxrQkFFWixnQkFDUyxDQUFBLGtCQUNSLFdBR0EsQ0FBTSx3QkFDTixDQURNLHFCQUNOLENBRE0sb0JBQ04sQ0FETSxnQkFDTixDQUFXLFlBQ1gsQ0FBTyw2QkFDVSxDQUFBLG9DQUdsQixZQUNDLENBQU8sb0RBR1UsYUFDVixDQUFFLHdCQUdWLFlBQ0MsQ0FBTyx3Q0FHVSxhQUNWLENBQUUsMkJBR1YsZUFDVyxDQUFBLDJCQUNDLENBQUEsZUFDWCxDQUFVLGVBQ1YsQ0FBQSxhQUNPLENBQUUsY0FDVCxDQUFTLFlBQ1QsQ0FBTywyQkFDTSxDQUFBLHVCQUNDLENBQUEsd0JBQ0UsQ0FBQSxnQkFDaEIsQ0FBVyxhQUNYLENBQUEsMkNBR2lCLGFBQ1YsQ0FBRSx1QkFDVCxpQkFHVSxDQUFBLFFBQ1YsQ0FBRyxTQUNILENBQUEsUUFDQSxDQUFBLFVBQ0EsQ0FBQSxnQkFDUSxDQUFBLHdCQUNSLGlCQUdVLENBQUEsUUFDVixDQUFHLFVBQ0gsQ0FBSyxXQUNMLENBQU0sVUFDTixDQUFLLGdCQUNHLENBQUEsdUJBQ1IsaUJBR1UsQ0FBQSxPQUNWLENBQUEsVUFDQSxDQUFLLFVBQ0wsQ0FBQSxTQUNBLENBQUEsZ0JBQ1EsQ0FBQSx3QkFDUixpQkFHVSxDQUFBLFVBQ1YsQ0FBSyxXQUNMLENBQU0sV0FDTixDQUFNLFVBQ04sQ0FBSyxnQkFDRyxDQUFBLHVCQUNSLGlCQUdVLENBQUEsT0FDVixDQUFBLFNBQ0EsQ0FBQSxRQUNBLENBQUEsVUFDQSxDQUFBLHdCQUNBLGlCQUdVLENBQUEsV0FDVixDQUFNLFNBQ04sQ0FBSSxXQUNKLENBQU0sVUFDTixDQUFLLGdCQUNHLENBQUEsdUJBQ1IsaUJBR1UsQ0FBQSxPQUNWLENBQUEsVUFDQSxDQUFBLFNBQ0EsQ0FBSSxTQUNKLENBQUEsZ0JBQ1EsQ0FBQSx3QkFDUixpQkFHVSxDQUFBLFFBQ1YsQ0FBRyxTQUNILENBQUksV0FDSixDQUFNLFVBQ04sQ0FBSyxnQkFDRyxDQUFBLDhHQUs4QixZQUN2QyxDQUFPLFdOL05SLHlCQUNjLENBQUEsaUJBQ0QsQ0FBQSxlQUNaLENBQUEsMkZBQzJFLENBQUEsV0FHNUUsb0JBQ2MsQ0FBQSxpQkFDRCxDQUFBLGVBQ1osQ0FBQSx5RUFDeUQsQ0FBQSxXQUcxRCxrQ0FDYyxDQUFBLGlCQUNELENBQUEsZUFDWixDQUFBLDZHQUM2RixDQUFBLFdBRzlGLDRCQUNjLENBQUEseUZBQzRELENBQUEsdUJBRzFFLEtBQVUsU0FFUixDQUFBLEdBQU8sU0FJUCxDQUFBLENBQUEsMERBMk1pQyxhQUNqQyxDQUFBLDBEQUdpQyxhQUNqQyxDQUFBLDBEQUdpQyxhQUNqQyxDQUFBLHlDRXlzRE0sV0Zwc0RQLENBQU0sdURBRUMsYUFDQyxDQUFFLHFCQUNGLENBQUEsaUJBQ0csQ0FBQSxVQUNWLENBQUEsVUFDQSxDQUFBLFdBQ0EsQ0FBQSxVQUNBLENBQUEsa0JBQ0EsQ0FBWSxhQUNaLENBQUEsWUFDQSx3Qk9uUHdCLENBQUEsK0JBQ08sQ0FBQSxnREFDUyxDQURULHdDQUNTLENBQUEsV0FDeEMsd0JBR3VCLENBQUEsK0JBQ08sQ0FBQSxnREFDUyxDQURULHdDQUNTLENBQUEsV0FDdkMsdUJBR3VCLENBQUEsOEJBQ08sQ0FBQSwrQ0FDUyxDQURULHVDQUNTLENBQUEsV0FDdkMsd0JBR3VCLENBQUEsK0JBQ08sQ0FBQSxnREFDUyxDQURULHdDQUNTLENBQUEsWUFDdkMsd0JBR3dCLENBQUEsK0JBQ08sQ0FBQSxnREFDUyxDQURULHdDQUNTLENBQUEsWUFDeEMsd0JBR3dCLENBQUEsK0JBQ08sQ0FBQSxnREFDUyxDQURULHdDQUNTLENBQUEsWUFDeEMsd0JBR3dCLENBQUEsK0JBQ08sQ0FBQSxnREFDUyxDQURULHdDQUNTLENBQUEsd0VBUXhDLHdCQUN3QixDQUFBLCtCQUNPLENBQUEsZ0RBQ1MsQ0FEVCx3Q0FDUyxDQUFBLGFBQ3hDLHdCQUd5QixDQUFBLCtCQUNPLENBQUEsZ0RBQ1MsQ0FEVCx3Q0FDUyxDQUFBLGdCQUN6Qyx3QkFHNEIsQ0FBQSwrQkFDTyxDQUFBLGdEQUNTLENBRFQsd0NBQ1MsQ0FBQSxhQUM1Qyx3QkFHd0IsQ0FBQSwrQkFDTyxDQUFBLGdEQUNTLENBRFQsd0NBQ1MsQ0FBQSxXQUN4Qyx3QkFHdUIsQ0FBQSwrQkFDTyxDQUFBLGdEQUNTLENBRFQsd0NBQ1MsQ0FBQSxXQUN2Qyx3QkFHdUIsQ0FBQSwrQkFDTyxDQUFBLGdEQUNTLENBRFQsd0NBQ1MsQ0FBQSxXQUN2Qyx3QkFHdUIsQ0FBQSwrQkFDTyxDQUFBLGdEQUNTLENBRFQsd0NBQ1MsQ0FBQSxjQUN2QyxhQU1RLENBQUEsY0FDUCxhQUdPLENBQUEsY0FDUCxhQUdPLENBQUEsY0FDUCxhQUdPLENBQUEsY0FDUCxhQUdPLENBQUEsY0FDUCxhQUdPLENBQUEsY0FDUCxhQUdPLENBQUEsY0FDUCxhQUdPLENBQUEsV1AxSVYseUJBQ2MsQ0FBQSxpQkFDSCxDQUFFLGVBQ1osQ0FBQSwyRkFDMkUsQ0FBQSxXQUc1RSxvQkFDYyxDQUFBLGlCQUNILENBQUUsZUFDWixDQUFBLHlFQUN5RCxDQUFBLFdBRzFELGtDQUNjLENBQUEsaUJBQ0gsQ0FBRSxlQUNaLENBQUEsNkdBQzZGLENBQUEsV0FHOUYsNEJBQ2MsQ0FBQSx5RkFDNEQsQ0FBQSx1QkFHMUUsS0FBQSxTQUVFLENBQUEsR0FBQSxTQUlBLENBQUEsQ0FBQSwwREEyTWlDLGFBQ2pDLENBQUEsMERBR2lDLGFBQ2pDLENBQUEsMERBR2lDLGFBQ2pDLENBQUEseUNFeXNETSxXRnBzRFAsQ0FBQSx1REFFTyxhQUNOLENBQU8scUJBQ0EsQ0FBQSxpQkFDRyxDQUFBLFVBQ1YsQ0FBQSxVQUNBLENBQUEsV0FDQSxDQUFBLFVBQ0EsQ0FBQSxrQkFDQSxDQUFBLGFBQ0EsQ0FBQSxjQUNBLGtCRWpRUyxDQUFBLHNDRnVFYSxDQUFBLFdFckV0QixDQUFBLHdCQUNnQixDQUFFLFlBQ2xCLENBQUEsYUFDQSxDQUFBLGFBQ0EsaUJBR0EsQ0FBQSxjQUNBLENBQU8sb0JBRkYsYUFLQyxDQUFFLFdBQ1AsQ0FBQSx3QkFDQSxhQUlNLENBQUUsZ0JBQ1AsY0FLRixDQUFPLGlCQUNQLENBQVUsYUFDTCxDQUFFLHNCQUNQLGNBR0EsQ0FBQSxpQkFDQSxDQUFVLFNBQ1YsQ0FBQSxhQUNBLENBQUEsV0FDQSxDQUFBLGFBQ0EsQ0FBQSxnQkFDQSxDQUFBLDBCQUdpQixzQkFWbEIsWUFXRSxDQUFBLENBQUEsV0FJRixpQkFDVyxDQUFBLGVBQ1YsQ0FBQSxhQUNBLENBQUEsMEJBRWlCLFdBTGxCLFVBTUUsQ0FBQSxZQUNBLENBQUEsQ0FBQSwwQkFLZ0IsaUJBRGxCLFlBRUUsQ0FBQSxjQUNBLENBQUEscUJBQ0EsQ0FBYyxzQkFDUCxDQUFBLGFBQ1AsQ0FBQSxDQUFBLGdCQUlGLGlCQUNDLENBQUEsVUFDQSxDQUFBLG9CQUNBLHVDRkNnQixDQUFBLGNFSWhCLENBQUEsWUFDQSxDQUFBLE9Gb0ZrQixDRW5GbEIsZUFDQSxDQUFBLGVBQ0EsQ0FBQSxlQUNBLENBQUEsWUFDQSxDQUFBLFVBQ0EsQ0FBQSxPQUFXLENBQ1gsTUFBTyxDQUFDLGFBRVIsQ0FBTSxXQUNOLENBQUEsNkJBQ2lCLENBQUEsa0JBQ2pCLENBQVcsNEJBQ0gsQ0FBQSxpQkFDUixDQUFBLGdCQUNBLENBQUEsd0JBQ0Esd0JBR2lCLENGakRLLFdFa0R0QixDQUFBLGlCQUNBLENBQUEsK0JBRUEsb0JBQ2EsQ0ZuRFEsa0NFb0RwQixpQkFJUyxDQUFBLEtBQUEsQ0FBQSxRQUVWLENBQUEsTUFBUSxDQUFDLGtCQUVDLENGaEVNLHlDRWtFaEIsa0JBQ1csQ0ZoRUksbUNFaUVkLGlCQUlTLENBQUEsS0FBQSxDQUFBLHNCQUVILENBQUEsUUFDUCxDQUFBLHFCQUNNLENBQUEsVUFDTixDQUFBLHFHQUNhLENBQUEsZ0NBS2IsZUFDQSxDQUFBLCtDQUdBLFVBQ0EsQ0FBQSwwQkFLZ0IscUNBRE4sWUFFVixDQUFBLGFBQ0EsQ0FBQSxDQUFBLHlCRzNJRCxZSGlKQyxDQUFBLHdCQUNBLENBQUEseUJBQ0EsQ0FBQSwwQkFJZSxVRDZmakIscUJDM2ZjLENBQUEsc0JHN0lELGlCSGlKWCxDQUFBLG1CRzdJSSxjSGlKSixDQUFBLDBCRzdJSSxRSGlKSixDQUFBLE1BQUssQ0FBSSxDQUNULGNBSUYsdUNGcEdrQixDQUFBLGNFdUdqQixDQUFBLGFBQ0EsQ0FBQSxRQUNBLENBQUEsV0FDQSxDQUFBLFdBQ0EsQ0FBQSxZQUNBLENBQUEscUJBQ0EsQ0FBYyxrQkFDZCxDQUFXLDRCQUNNLENBQUEsZ0JBQ2pCLENBQUEsWUFDQSxDQUFBLGlDQUNrQixDQUFBLGtCQUNSLENBQUUsa0JBQ1osaUJBR1UsQ0FBQSxLQUFBLENBQUEsT0FDSixDQUNOLFFBQ0EsQ0FBQSxNQUFRLENBQUMsWUFFVCxDQUFBLHVCQUNXLENBQUEsYUFDWCxDQUFBLFlBQ0EsQ0FBQSxVQUNBLENBQUEsMEJBRWlCLGtCQVpsQixXQWFFLENBQUEsY0FDTSxDQUFFLGdCQUNSLENBQUEsQ0FBVSxnQkFJWixZQUNDLENBQUEscUJBQ0EsQ0FBYyxpQkFDSixDQUFBLGVBQ1YsQ0FBQSxrQkFDQSxZQUdBLENBQUEsa0JBQ0EsQ0FBQSxlQUNBLENBQUEsV0FDQSxDQUFBLFlBQ0EsQ0FBQSwwQkFFaUIsa0JBUGxCLHFCQVFFLENBQWMsZUFDZCxDQUFBLGNBQ00sQ0FBRSxhQUNSLENBQUEsQ0FBTyxVQUtULHVDRmhLa0IsQ0FBQSxnQkVtS2pCLENBQUEscUJBQ1ksQ0FBQSxjQUVaLENBQUEsVUFDQSxDQUFBLEtGakdhLENBQUEsUUVtR2IsQ0FBQSxXQUNBLENBQUksV0FDSixDQUFBLG9CQUNZLENBQUEsY0FDTixDQUFFLFlBQ1IsQ0FBQSxxQkFDQSxDQUFjLGVBQ1AsQ0FBRSxlQUNULENBQUEsWUFqQkQsYUFvQkUsQ0FBQSxrQkFDQSx1Q0ZyTGdCLENBQUEsb0JFMExKLENBQUEsaUJBRUYsQ0FBQSxVQUNWLENBQUEsUUFDQSxDQUFBLFNBQ0EsQ0FBQSxVQUNBLENBQUEsV0FDQSxDQUFBLGNBQ00sQ0FBRSxvQkFDSSxDQUFBLFlBQ1osQ0FBQSxxQkFDQSxDQUFjLDRCQUNHLENBQUEsZUFDVixDQUFFLG1CQUNULGNBR0EsQ0FBQSxLQUFVLENBQUEsUUFFVixDQUFBLE1BQVEsQ0FBQyxTQUVULENBQUEsa0JBQ0EsZ0JBR0EsQ0FBQSxVQUVBLENBQUEsK0JBQ1ksQ0FBQSxrQ0FHRyxNQUFBLENBQVMsb0JBRVosQ0FBQSwwQ0FFWCxVQUNBLENBQUEsZUFDQSxVQUlELENBQUEsaUJBQ0EsQ0FBQSxxQkFDQSxZQUdBLENBQUEscUJBQ0EsQ0FBYyw0QkFDRyxDQUFBLGtCQUNqQixDQUFXLHdCQUNYLHFDRm5QdUIsQ0FBQSxVRXdQdkIsQ0FBQSx1QkFDTyxDQUFBLGtCQUNDLENBQUEsK0JBRVIsZUFDQyxDQUFBLHNCQUVPLENBQUEsbUJBQ0MsQ0FBQSxzQkFDUixjQUlELENBQUEsYUFDQSxDQUFBLGdDQUNBLG1CQUdXLENBQUUsWUFDYixDQUFBLGVBQ0EsQ0FBQSw2QkFDaUIsQ0FBQSxrQkFDakIsQ0FBVyxVQUNYLENBQUEsOENBSWtCLGdCQUNuQixDQUFBLGVBQ0EsQ0FBQSxzQkFHVyxpQkFDWCxDQUFBLGtCQUNBLFVBT0MsQ0FBQSx3QkFDaUIsQ0FBQSxZQUNqQixDQUFBLGNBQ0EsdUNGN1JnQixDQUFBLGlCRWtTTixDQUFBLFdBQ1YsQ0FBQSxtQkFDUyxDQUFBLG1CQUNULENBQUEsaUNBQ2tCLENBQUEsZ0JBQ2xCLENBQUEsd0JBRUEsY0FDQyxDQUFBLFFBQ0EsQ0FBQSxVQUNBLENBQUEsMENBR2dDLGNBaEJsQyxlQWlCRSxDQUFBLGVBQ0EsQ0FBQSxDQUFTLDBDQUd1QixjQXJCbEMsZUFzQkUsQ0FBQSxlQUNBLENBQUEsQ0FBUywwQ0FHdUIsY0ExQmxDLGVBMkJFLENBQUEsZUFDQSxDQUFBLENBQVMsMENBR3VCLGNBL0JsQyxRQWdDRSxDQUFBLENBQUEsMENBS2dDLGlCQURsQyxjQUVFLENBQUEsYUFDQSxDQUFBLENBQUEsMkJBR0QsY0FDQyxDQUFBLFdBQ0EsQ0FBQSxPRm5RZSxDRW9RZixVQUNBLENBQUEsVUFDQSxDQUFBLGFBQ0EsQ0FBQSxrQ0FDYSxDQUFBLHdDQUViLGlCQUNVLENBQUUsMEJBQ1gsQ0FBQSxxQkFDQSxDQUFBLHlDQUdELDJCQUNDLENBQUEscUJBQ0EsQ0FBQSxpQ0FqQkQsU0FxQkMsQ0FBQSxpQkFDTyxDQUFBLDRJQXRCUixXQTZCQyxDQUFBLGFBQ0EsQ0FBQSxvS0E5QlMsZ0JBaUNDLENBQUEsYUFDSixDQUFFLGFBQ1AsV0FNSCxDQUFBLGVBQ0EsQ0FBQSwwQkFFaUIsYUFKbEIsd0JBS0UsQ0FBQSw0QkFDa0IsQ0FBQSxDQUFBLGNBSXBCLFdBQ0MsQ0FBQSxlQUNPLENBQUUsMEJBRVEsY0FKbEIseUJBS0UsQ0FBQSw0QkFDa0IsQ0FBQSxDQUFBLG9CQUlwQixZQUNDLENBQUEsNkJBQ2lCLENBQUEseUJBRmpCLG9CQUtVLENBQUEsd0JBQ1QsQ0FEUyxxQkFDVCxDQURTLG9CQUNULENBRFMsZ0JBQ1QsQ0FBQSxXQUNBLENBQUEsZUFDQSxDQUFBLGNBQ0EsQ0FBQSxxQkFDQSxjQUlLLENBQUUsMkJBRFIsYUFJTSxDRmhiVSxxQkVpYmYsaUJBSUQsQ0FBQSxzQkFDQSxhQUdBLENBQU0sc0JBQ04sZ0JBR0EsQ0FBQSxvQ0FPRixrQkFDQyxDQUFBLFdBQ0EsQ0FBQSxVQUNBLENBQUEscUJBQ0EsZ0JBR0EsQ0FBQSxnQkFDQSxZQUdBLENBQUEsdUJBQ0EsS0FBQSxDQUFBLGdCQUlBLENBQUEsV0FDQSxDQUFBLGFBQ0ssQ0ZsYlEsY0VtYlAsQ0FBRSxjQUNSLENBQUEsVUFDQSxDQUFBLGlCQUNBLENBQVUsNkJBRVYsZ0JBQ0MsQ0FBQSxrQkFDQSxDQUFXLHFCQUNFLENBQUEsMEZBYk8sYUFtQmYsQ0FBRSxvQkFDUCxDQUFBLGtEQUtRLEtBQUEsQ0FBQSxnQkFFVCxDQUFBLFdBQ0EsQ0FBQSwyQkFDTyxDQUFBLGNBQ0QsQ0FBRSxjQUNSLENBQUEsZ01BTnFCLG9CQVdwQixDQUFBLDZCQUtGLGdCQUNDLENBQUEsOEJBSUQsZ0JBQ0MsQ0FBQSxZQUNBLENBQUEsc0RBR0UsYUFDRCxDQUFBLGFBQ0EsdUNGN2VnQixDQUFBLGNFb2ZqQixDQUFBLFdBQ0EsQ0FBQSxTQUNBLENBQUEsUUFDQSxDQUFBLDJCQUNPLENBQUEsVUFDUCxDQUFBLFdBQ0EsQ0FBQSxjQUNNLENBQUUsd0JBQ1IsQ0FEUSxxQkFDUixDQURRLG9CQUNSLENBRFEsZ0JBQ1IsQ0FBQSx3QkFFQSxpQkFDVyxDQUFBLE9BQVEsQ0FDbEIsUUFDQSxDQUFBLFNBQ0EsdUNGbGdCZ0IsQ0FBQSxZRXdnQmpCLENBQUEsY0FDQSxDQUFBLFdBQ0EsQ0FBQSxZQUNBLENBQUEsV0FDQSxDQUFBLGlDQUNrQixDQUFBLFNBQ2xCLENBQUEsUUFDQSxDQUFBLHFCQUNBLENBQWMsbUJBRWQsYUFDQyxDQUFBLGVBQ0EsQ0FBQSxXQUNBLENBQUEsVUFDQSxDQUFBLG1CQUdELGVBQ0MsQ0FBQSxXQUNBLENBQUEsWUFDQSxDQUFBLDZCQUNnQixDQUFBLHVCQUNMLENBQUEsb0JBR1osV0FDQyxDQUFBLGFBQ0EsQ0FBQSxVQUNBLENBQUEsbUNBQ29CLENBQUEsWUFDcEIsQ0FBQSxrQkFDQSxDQUFBLDZCQUNpQixDQUFBLHdCQUNqQixDQURpQixxQkFDakIsQ0FEaUIsb0JBQ2pCLENBRGlCLGdCQUNqQixDQUFBLGNBQ00sQ0FBRSw4QkFHRSxnQkFDVixDQUFBLGFBQ0EsQ0FBQSxpQ0FHVSxXQUNWLENBQUEsNERBR3FDLDBCQUNyQyxDQUFBLDJCQUNBLENBQUEsMkRBR3FDLDZCQUNyQyxDQUFBLDhCQUNBLENBQUEsa0NBR1MsaUJBQ0MsQ0FBQSxjQUNKLENBQUUsZUFDRCxDQUFFLHNCQUNGLENBQUEsb0JBQ0ksQ0FBQSxZQUNYLENBQUEsa0JBQ0EsQ0FBVyw2QkFDTSxDQUFBLDJDQUdSLGFBQ1QsQ0FBQSxtQ0FHRCxZQUNDLENBQUEsaUJBQ1UsQ0FBQSx3REFHVSxZQUNwQixDQUFBLFNBQ0EsQ0FBQSx3QkFHRCxhQUNDLENBQUEsZUFDQSxDQUFBLDhDQUd3QixpQkFDeEIsQ0FBVSx3Q0FHRCxnQkFDVCxDQUFBLDRDQUd3QixhQUNuQixDRmhqQlEsNENFbWpCVyxhQUNuQixDRm5qQlEsZ0NFc2pCSixVQUNULENBQUEsYUFDQSxDQUFBLGVBQ08sQ0FBRSxvQkFDVCxjQU1BLENBQUEsY0FDQSx3Q0FHaUIsQ0FIakIsZ0NBR2lCLENBQUEsV0FDakIsZUFHQSxDQUFBLGlCQUNBLENBQUEsZUFDQSxhQUdLLENBQUUsY0FDUCx5Q0FHc0MsQ0FIdEMsaUNBR3NDLENBQUEsaUJBQ3RDLGFBR0ssQ0ZwbEJlLGlCRXFsQnBCLGFBR0ssQ0Z2bEJlLGVFMGtCckIsYUFpQk0sQ0FBRSxpQkFUUixhQWFNLENGaG1CZSxpQkV1bEJyQixhQWFNLENGbm1CZSxjRW9tQnBCLFVBY0QsQ0FBQSxZQUNBLENBQUEsVUFDQSxpQkFLVSxDQUFBLG9CQUNGLENBQUEsTUFBQSxDQUFhLFlBRXJCLENBQUEscUJBQ0EsQ0FBYyx3QkFDTixDQUFBLDZCQUVSLGNBQ08sQ0FBRSxpQkFDRSxDQUFBLE1BQUEsQ0FBUSxvQkFFbEIsY0FJRCxDQUFBLHdCQUdhLFlBQ2IsQ0FBQSx1QkFDVyxDQUFBLGlDQUdVLFlBQ3JCLENBQUEsNkJBQ2lCLENBQUEsU0FDakIsQ0FBQSx5QkFHYyxpQkFDZCxDQUFVLGlCQUNWLENBQUEsaURBRVEsYUFDUCxDQUFBLGlCQURFLGlCQU1ILENBQVUsZUFDVixDQUFBLDRCQUNZLENBQUEsK0JBQ0csQ0FBQSx1QkFDSixDQUFBLGFBQ1gsQ0FBQSxrQkFDVSxDQUFFLDBCQUVLLGlCQWRkLGtCQWVRLENBQUUsQ0FBQSwwQkFNZCxlQUNDLENBQUEsd0NBRFcsVUFJVixDQUFBLGtEQUdELGNBQ08sQ0FBRSxnQkFDUixVQUlELENBQUEsZ0JBQ0EsQ0FBQSxTQUNBLENBQUEsNkJBRUMsNEJBQ1ksQ0FEWix5QkFDWSxDQURaLG9CQUNZLENBQUEsK0JBR1osYUFDSyxDQUFFLGNBQ0QsQ0FBRSx5QkFLVix1QkFDWSxDQUFBLGlCQUNELENBQUEsY0FDVixDQUFBLG9CQUNBLENBQUEsV0FDQSxDQUFBLGVBQ0EsQ0FBQSxpQkFDQSxDQUFVLFVBQ1YsQ0FBQSxlQUNBLENBQUEsMEJBR2tCLHVDQURqQixpQkFFQyxDQUFVLGlCQUNWLENBQUEsQ0FBQSwwQkFJZSx5QkFsQmxCLGVBbUJFLENBQUEsQ0FBQSxxQ0FuQkYsMEJBdUJjLENBQUEsYUFDWixDQUFBLCtCQXhCRixjQTRCUSxDQUFFLGdCQUNSLENBQUEsbUVBR0QsZ0RGanFCOEIsQ0FBQSxhRW1xQjdCLDRCQUljLENBQUEsa0NBR0ssb0JBQ1IsQ0FBRSxrQkFDZCx1QkFHUyxDQUFBLGlCQUNULGVBSUMsQ0FBUSxpQkFDUiwyQkFHQSxDQUFBLDRCQUNBLENBQUEsNkJBR2EsWUFFWixDQUFBLHdCQUNBLENBQUEseUJBQ0EsQ0FBQSxrQ0FHRCw0QkFDb0IsQ0FBQSwyQkFDRCxDQUFBLGdCQUNsQixDQUFBLDhCQUNBLENBQUEsaUJBQ0EsQ0FBVSxxQkFDVixDQUFjLCtCQUNkLGdCQUlELENBQUEsa0JBQ0EsQ0FBQSx1QkFDQSxpQkFHQSxDQUFBLGtCQUNBLGNBR0EsQ0FBQSxhQUNBLENBQUEsYUFDQSxDQUFBLG9CQUNBLGdCQUdBLENBQUEsZUFDQSxpQkFHVSxDQUFBLEtBQUEsQ0FBQSxPQUNKLENBQ04sUUFDQSxDQUFBLE1BQVEsQ0FBQyxjQUVILENBQUUsa0JBQ0UsQ0FBRSxVQUNaLENBQUEsOENBTUEsaUJBQ0MsQ0FBQSxVQUNBLGlCQUtRLENBQUEsZUFDVixDQUFBLDJCQUNhLENBQUEsdUJBQ0MsQ0FBQSxlQUNkLENBQUEsNkJBQ2MsQ0FBQSx5QkFFWCxZQUNGLENBQUEsNkJBQ2lCLENBQUEsb0JBQ0osQ0FBQSwyQkFJSSxpQkFDUixDQUFBLGtCQUNWLENBQUEsT0FBbUIsVUFJbkIsQ0FBQSxlQUNBLENBQUEsd0JBQ2UsQ0FBQSxhQUNmLENBQUEsa0JBSkssZUFPSixDQUFBLE1BQWUsaUJBTVAsQ0FBQSxhQUNULFVBS0EsQ0FBQSxpQkFDQSxDQUFBLDRCQUdXLFdBQ1gsQ0FBQSx1QkFDTyxDQUFBLGdDQUNXLENBQUEsNEJBQ0csQ0FBQyxxQkFHVixlQUNaLENBQUEsU0FDQSxDQUFBLGdCQUNBLENBQUEsZUFDQSxDQUFBLFVBR0MsVUFDRCxDQUFBLDJCQUdrQixVQUNsQixDQUFBLGVBR0MsVUFDRCxDQUFBLGVBR0Msa0JBQ1MsQ0ZqOUJJLFVFazlCZCxDQUFBLFlBQ0EsQ0FBQSxpQkFHTSxnQkFDTixDQUFBLGlCQURNLGdCQUtOLENBQUEsV0FHQyxvQkFDRCxDQUFBLG1CQUdNLGdCQUNOLENBQUEsZ0NBR3FCLGVBQ3JCLENBQUEsMEJBR2EsYUFDUixDRmwvQlksY0VtL0JYLENBQUUsc0NBR2lCLGFBQ3BCLENGeCtCaUIsZUUyK0JwQixXQUNGLENBQUEsVUFDQSxDQUFBLHdDQUtDLG1CQUNRLENBQUEsYUFDUixDQUFBLGNBQ0EsQ0FBQSxpQkFDQSxDQUFBLFVBQ0EsQ0FBQSxvQkFDQSxpQkFHVSxDQUFBLFFBQ1YsQ0FBQSxNQUFLLENBQUksZ0JBRVQsQ0FBQSxxQkFDWSxDQUFBLHVCQUNMLENBQUEsYUFDUCxDQUFNLG9CQUNHLENBQUEsaUJBQ1QsQ0FBQSwwQkFDWSxDQUFBLGNBQ1osQ0FBQSw2QkFFQSxRQUNDLENBQUEsZ0JBQ0EsVUFJRCxDQUFBLHVCQUNBLGlCQUdBLENBQVUsZ0JBQ1YsQ0FBQSxhQUNLLENBQUUscUJBQ1AsaUJBR0EsQ0FBVSxTQUNWLENBQUEsdURBSUEsNEJBQ1csQ0FBQSx3QkFDWCxhQUdBLENBQUEsa0JBQ1UsQ0FBRSxxQkFDQyxDQUFFLGVBQ2YsQ0FBQSxxQkFDQSw2QkFHYSxDQUFBLG9DQUVWLCtCQUNhLENBQUEsNEJBQ2YsZ0JBSUQsQ0FBUywyQkFDSSxDQUFBLHVCQUNDLENBQUEsK0JBQ1UsQ0YzakNYLGFFNGpDUixDRjVqQ1EsZ0NFNmpDRyxDQUFBLG1CQUNoQixDQUFZLGdCQUNaLGFBR0EsQ0FBQSxpQkFDVSxDQUFBLFVBQ1YsQ0FBQSxLRjcrQmMsQ0FBQSxZRSsrQmQsQ0FBSyxVQUNMLENBQUEsZUFDQSxDQUFBLFdBQ0EsQ0FBQSxpREFDOEQsQ0FBQSxzQkFUOUQsY0FZQyxDQUFBLE9BQWUsQ0FDZixvQkFDUyxDQUFBLGlEQUNxRCxDQUFBLDRDQUU5RCxTQUNDLENBQUEsdUJBQ1ksQ0FBQSw2Q0FHYixTQUNDLENBQUEsdUJBQ1ksQ0FBQSxZQUNaLFVBS0YsQ0FBQSxXQUNBLENBQUEsc0JBQ0EsaUJBR1UsQ0FBQSxPQUFRLENBQ2xCLFVBQ0EsQ0FBQSxZQUNBLENBQUEsa0JBQ0EsQ0FBVyxzQkFDWCxDQUFlLFVBQ2YsQ0FBQSxXQUNBLENBQUEsNEJGdmxDc0IsQ0FBQSxjRXlsQ2hCLENBQUUsV0FDUixDQUFBLDJDRmxtQ3VCLENBQUEsU0VvbUN2QixDQUFBLHVCQUNZLENBQUEsNEJBRVosTUFBQSxDQUFPLDBCQUVOLENBQUEsNkJBQ0EsQ0FBQSxjQUNBLENBQUEsNkJBQ0EsT0FFTyxDQUNQLDJCQUNBLENBQUEsOEJBQ0EsQ0FBQSxhQUNBLENBQUEsNEJBM0JELFVBK0JDLENBQUEsdUJBQ0EsWUFJRCxDQUFBLGlCQUNVLENBQUEsV0FDVixDQUFBLFNBQ0EsQ0FBQSxRQUNBLENBQUEsUUFDQSxDQUFBLGtCQUNBLENBQVcsc0JBQ1gsQ0FBZSxTQUNmLENBQUEsdUJBQ1ksQ0FBQSxtQkFDWiw0QkY3bkNzQixDQUFBLFdFaW9DdEIsQ0FBQSwyQkFDYSxDQUFBLHVCQUNDLENBQUEsY0FDZCxDQUFBLGlCQUNBLENBQUEsZUFDTyxDQUFFLDJDRjlvQ2MsQ0FBQSxnQ0VvcEN2QixpQkFDQSxDQUFBLHVCQUtHLHlCQUNXLENBQUEsMkVBTWYsZ0JBQ0MsQ0FBQSxTQUNBLENBQUEsNkJBR0ksVUFDSixDQUFBLGlCQUdELFVBQ0MsQ0FBQSxTQUNBLENBQUEsbUJBR0QsV0FDQyxDQUFBLGlCQUNBLENBQVUsb0JBQ0QsQ0FBQSxrSEFJVyxRQUNwQixDQUFBLHFCQUdELGtCQUNDLENBQVcsVUFDWCxDQUFBLHVCQUdJLHdCQUNJLENBQUEsT0FBaUIsaUJBSzFCLENBQVUsZUFDVixDQUFBLGFBQ0EsQ0FBTSxVQUNOLGlCQUdBLENBQVUsZUFDSCxDQUFFLHlCQUNELENBQUEsVUFDUixjQUdNLENBQUUsVUFDUixtQkFHUyxDQUFBLGlCQUNULENBQUEsZ0JBQ0EsZUFHQSxDQUFBLFlBQ0EsaUJBR0EsQ0FBVSxVQUNWLGlCQUdVLENBQUEsVUFDVixDQUFBLEtGeHBDZSxDQUFBLFlFMHBDZixDQUFLLFdBQ0wsQ0FBQSxVQUNBLENBQUEsZUFDQSxDQUFBLFdBQ0EsQ0FBQSxpREFDOEQsQ0FBQSxnQkFHNUQsY0FDRixDQUFBLE9BQWUsQ0FDZixvQkFDUyxDQUFBLGlEQUNxRCxDQUFBLGtCQUd2RCxhQUNQLENBQUEsZUFDQSxDQUFBLGlCQUNBLHdCQUlnQixDQUFFLDRCQURILGtCQUlKLENBQUUsZ0VBRWdCLG9CQUNmLENBQUEseURBTWYsb0JBQ2EsQ0FBQSxvQkFDWiwyQkFHTyxDQUFBLFdBQ1AsVUFHQSxDQUFBLGVBQ0EscUJBR1ksQ0FBQSwrQ0FEQyxrQkFLRixDQUFFLDJCQUlGLGlCQUNYLENBQUEsNkJBQ0EsZ0JBR0EsQ0FBQSx3R0FPRCxxQ0Z4eUN5QixDQUFBLHFCRTB5Q1osQ0FBQSxvS0FRWixnQkFDQyxDQUFBLGlCQUNBLENBQUEsdUNBSTZCLHdCQUNkLENBQUUsb0JBQ04sQ0FBRSxlQUNkLHdCQUdnQixDQUFFLG9CQUNOLENBQUUscUJBQ2QsVUFHQSxDQUFBLHdCQUNnQixDQUFFLG9CQUNOLENBQUUscUJBQ2QsVUFHQSxDQUFBLHdCQUNnQixDQUFFLG9CQUNOLENBQUUscURBRzhCLHdCQUM1QixDQUFFLG9CQUNOLENBQUUsZ0JBQ2QseUJBR2dCLENBQUEsNEJBR0wsaUJBQ1gsQ0FBQSwyQ0FHa0Msd0JBQ2xCLENGeDJDRiw4QkV5MkNkLDJCQUdPLENBQUEsOEJBQ1AscUNGajJDd0IsQ0FBQSxxQkVxMkNaLENBQUEsMENBR0QsZ0JBQ1gsQ0FBQSxpQkFDQSxDQUFBLHNDQUdXLG9CQUNDLENBQUEsbURBR21CLG9CQUNuQixDQUFBLGNBQ1osZ0JBR0EsQ0FBQSxpQkFDQSxZQUlDLENBQUEsWUFDQSxTQUdBLENBQUEsZ0JBQ0EsQ0FBQSxZQUNBLENBQUEsWUFDQSxDQUFBLGNBQ00sQ0FBRSxrQkFMUix5QkFRYSxDQUFBLGdCQUNaLFNBSUQsQ0FBQSxXQUNBLENBQUEsZ0JBQ0EsZUFRQSxDQUFBLGlCQUNBLENBQVUsV0FDVixDQUFBLFVBQ0EsQ0FBQSxtQkFDQSxZQUdBLENBQUEscUJBQ0EsQ0FBYyxVQUNkLENBQUEsV0FDQSxDQUFBLGFBQ0EsZ0JBR0EsQ0FBUyxlQUNULFVBR0EsQ0FBQSxZQUNBLENBQUEsNkJBQ2lCLENBQUEsdUJBQ0gsQ0FBQSw0QkFDSyxDQUFBLDhCQUluQixlQUNBLENBQUEsVUFDQSxDQUFBLHdCQUNBLGlCQUdBLENBQVUsZUFDVixZQUdBLENBQUEsNkJBQ2lCLENBQUEsMEJBSWpCLGVBQ0EsQ0FBQSxVQUNBLENBQUEsc0JBQ0EsaUJBR0EsQ0FBVSw4QkFJVixVQUNBLENBQUEsaUJBQ0EsQ0FBVSxhQUNWLENBQUEsV0FDQSxDQUFBLGtCQUNBLGVBR08sQ0FBRSxpQkFDVCxDQUFBLFdBQ0EsQ0FBQSxpQkFDQSxDQUFVLGdDQUlWLFNBQ0EsQ0FBQSxVQUNBLENBQUEsaUJBQ0EsQ0FBVSxrREFFVCxVQUNBLENBQUEsZ0JBQ0EsZ0JBSUQsQ0FBQSxVQUNBLFVBR0EsQ0FBQSxZQUNBLENBQUEsNkJBQ2lCLENBQUEsZUFDVixDQUFFLCtCQUNNLENBQUEsdUJBTGQsZUFRQSxDQUFBLGdCQUNBLG9CQUlXLENBQUEsa0JBQ1osb0JBR1ksQ0FBQSx3QkFDWixvQkFHWSxDQUFBLDJCQUtaLGlCQUNBLENBQUEsZUFDQSxZQVFBLENBQUEsYUFDQSxDQUFBLGlCQUZBLFdBS0MsQ0FBQSxzQkFMTyxhQVNQLENBQUEsNkJBR0UsMkJBQ0YsQ0FBQSx5QkFDQSxDQUFBLDRCQUNBLENBQUEsY0FDQSxDQUFBLDRCQUdFLDRCQUNGLENBQUEsd0JBQ0EsQ0FBQSwyQkFDQSxDQUFBLG9EQUd5QixlQUN6QixDQUFBLGNBQ0EsQ0FBQSx1QkFDQSxpQkFJUyxDQUFBLFNBQ1YsQ0FBQSxLQUFPLENBQUUsVUFFVCxDQUFBLFFBQ0EsQ0FBQSxXQUNBLENBQUEseUJBQ0EsaUJBR1UsQ0FBQSxLQUFBLENBQUEsU0FFVixDQUFBLFFBQ0EsQ0FBQSxXQUNBLENBQUEsYUFDQSxpQkFHQSxDQUFBLDBCQUNBLDJCQUdBLENBQUEseUJBQ0EsQ0FBQSw0QkFDQSxDQUFBLGNBQ0EsQ0FBQSwwQkFDQSxlQUdBLENBQUEsY0FDQSxDQUFBLHdDQUljLDBCQUNmLENBQUEsZUFHRSxZQUNGLENBQUEsc0JBQ0EsaUJBS0EsQ0FBVSxpQkFDVixpQkFHQSxDQUFVLGdCQUNWLENBQUEsa0JBQ0EsaUJBR0EsQ0FBVSxnQkFDVixDQUFBLHVCQUNBLGlCQUdBLENBQVUsZ0JBQ1YsQ0FBQSxlQUNBLENBQUEsaUJBQ0EsaUJBR0EsQ0FBVSw2QkFDVixZQUdBLENBQUEsMEJBQ0EsaUJBR0EsQ0FBQSxxQ0FHbUIsZ0JBQ25CLENBQUEsY0FDQSxDQUFPLDhCQUdZLG1CQUNuQixDQUFBLHNFQUtELFNBQ0MsQ0FBQSw0RkFNYyxhQUNULENBQUUsWUFDUCxDQUFBLGtCQUNBLENBQVcsZUFDWCxDQUFRLGlCQUNDLENBQUEsb0JBQ1QsQ0FBQSxnTUFOcUIsU0FTcEIsQ0FBQSxvTEFUb0IsV0FhcEIsQ0FBQSwyQkFDQSxnREZ4Z0Q2QixDQUFBLFNFNmdEOUIsWUFHQSxDQUFBLGlCQUNVLENBQUEsZUFDSCxDQUFFLHFCQUNULENBQWMsYUFDZCxDQUFBLFlBQ0EsQ0FBQSxlQU5ELGlCQVNFLENBQUEsZUFDQSxDQUFBLGtCQUNBLFlBR0EsQ0FBQSxvQkFDQSxpQkFHQSxDQUFBLGVBQ0EsQ0FBQSxjQUNBLENBQUEsMkJBSFcsYUFNVixDQUFBLHNCQUNBLENBQUEsc0NGanJENEIsQ0FBQSxpQkVtckRsQixDQUFBLFFBQ1YsQ0FBQSxVQUNBLENBQUEsVUFDQSxDQUFBLGdCQUNRLENBQUEsd0JBQ1IsQ0FEUSxxQkFDUixDQURRLG9CQUNSLENBRFEsZ0JBQ1IsQ0FBQSxlQUNBLENBQUEsY0FDQSxDQUFBLGlCQUNBLENBQVUsbUJBQ1YsWUFJRCxDQUFBLGdDQUVHLFdBQ0YsQ0FBQSxnRUFRRCxZQUNBLENBQUEsaUJBQ0EsYUFHQSxDQUFBLGdCQUNBLENBQUEsYUFDQSxDQUFBLGlCQUNBLENBQUEseUVBS0EsYUFDQSxDQUFBLGNBQ0EsQ0FBQSxhQUNBLENBQUEsV0FDQSxDQUFBLGlCQUNBLFVBR0EsQ0FBQSxpQkFDQSxDQUFVLHdCQUtWLGVBQ0EsQ0FBQSw4QkFNQyxhQUNBLENBQUEsb0NBR0EsWUFDQSxDQUFBLHdDQUdBLFlBQ0EsQ0FBQSxxQkFDQSxDQUFjLDZCQUdkLHVCQUNTLENBQUEsMkJBR1Qsa0JBQ08sQ0FBQSxnQ0FHUCxrQkFDTyxDQUFBLDRKQWdCVCxrQkFDQyxDQUFBLG9DQUtBLGlCQUVBLENBQUEsbUJBQ0EsZUFLRCxDQUFBLGVBQ0EsQ0FBQSxhQUNBLENBQUEsNkJBRUEsZUFDQyxDQUFBLDZCQUdELGVBQ0MsQ0FBQSw2QkFHRCxlQUNDLENBQUEsMkVBZEYsZUFzQlUsQ0FBQSxhQUNSLENBQUEsd0NBR0QsVUFDQyxDQUFBLFdBQ0EsQ0FBQSxtREFGbUIsUUFLbEIsQ0FBQSw2QkFJRixrQkFDQyxDQUFBLHVDQUVFLGdCQUNELENBQUEsdUNBR0MsZUFDRCxDQUFBLDRDQUlGLGtCQUVFLENBQVcsa0RBR1YsaUJBQ0QsQ0FBQSxvREFEQyxjQUlNLENBQUUsc0NBS1gsYUFDQyxDQUFBLGNBQ0EsQ0FBQSxtQ0FHRCxrQkFDQyxDQUFBLHlDQUVDLGlCQUNBLENBQUEsbUNBTVcsa0JBQ0gsQ0FBRSxvQkFHSCxNQUFBLENBQ0MsOEJBYVUsa0JBQ1YsQ0FBRSwrQkFHVSxhQUNqQixDQUFFLGtCQUNQLGFBR0EsQ0FBQSxpQkFDQSxDQUFBLHdCQUdjLGVBQ2QsQ0FBQSwyRkFJNkMsZUFDN0MsQ0FBQSw4REFLZ0IsZUFDaEIsQ0FBQSw0QkFDQSxVQUdBLENBQUEsb0JBQ1MsQ0FBQSxZQUNULENBQUEsMkJBR2dCLGNBQ1YsQ0FBRSx1QkFDUixDQURRLGVBQ1IsQ0FBUSxLQUFFLENBQUEsZUFFVixDQUFBLGdCQUNBLENBQUEsZ0JBQ1MsQ0FBQSwyQ0FHeUIsNkJBQ3BCLGNBQ2IsQ0FBQSxLQUFVLENBQUEsTUFDTCxDQUFDLG9DQUVLLENBQUEsUUFDWCxDQUFBLGdCQUNBLENBQUEsMkJBaEJlLGlCQW9CTCxDQUFBLENBQUEsc0NBSUssZ0JBQ2hCLENBQUEsaUJBQ0EsYUFHSyxDQUFFLDJCQUNNLENBQUEsZUFDYixDQUFBLGlCQUNBLENBQVUsd0JBQ00sQ0FBQSxpQkFDaEIsQ0FBQSxnQkFDQSxDQUFTLDRCQUdDLGVBQ1YsQ0FBQSxnREFJTSxlQUNOLENBQUEsbUNBR3NCLGVBQ2YsQ0FBRSx5QkFHSyxVQUNkLENBQUEsZUFDQSxjQUdBLENBQUEsV0FDQSxDQUFBLHlDQUNPLENBQUEsV0FDUCxDQUFBLHFEQUNNLENBQUEsY0FDTixDQUFPLDJCQUdXLGVBVG5CLHdDQVdTLENBQUEsb0RBQ0QsQ0FBQSxDQUFBLDBCQUlTLGVBaEJqQix5Q0FrQlMsQ0FBQSx3Q0FDRCxDQUFBLENBQUEsMENBSXlCLGVBdkJqQyx5Q0F5QlMsQ0FBQSx3Q0FDRCxDQUFBLENBQUEsMENBSXlCLGVBOUJqQyxpQkFnQ1MsQ0FBQSxnQkFDRCxDQUFBLENBQUEscUJBSVIsVUFDQyxDQUFBLFdBQ0EsdUNGeC9EaUIsQ0FBQSxlRTYvRGpCLENBQUEsZ0JBQ0EsQ0FBQSxVQUNBLENBQUEsaUNBQ2tCLENBQUEsbUJBQ1QsQ0FBQSxtQkFDVCxDQUFBLFlBQ0EsQ0FBQSxVQUNBLFlBR0EsQ0FBQSw2QkFDaUIsQ0FBQSxRQUNqQixDQUFBLGFBQ0EsQ0FBQSxlQUNBLG9CQUdTLENBQUEsV0FDVCxxQkFHQSxDQUFBLGNBTUssZUFDRSxDQUFBLGlCQUdBLG9CQUNLLENBQUEsT0FBUyxrQkFJWCxDQUFFLDJDQUdzQiw2QkFoSXBCLHVDRnA2REcsQ0FBQSxnQkV3aUVoQixDQUFBLENBQVUsWUFJWix1Q0Y1aUVrQixDQUFBLCtCRWlqRWhCLHVDRmpqRWdCLENBQUEsYUVtakVoQix1Q0ZuakVnQixDQUFBLDhCRTBqRWpCLGtCQUNXLENBQUUsV0FDWixDQUFBLGdCQUNBLENGN2pFZ0IseUJFMGpFakIsa0JBQ1csQ0FBRSxXQUNaLENBQUEsZ0JBQ0EsQ0FBQSxPQUFpQixjQUtsQixDQUFBLFdBQ0EsQ0FBQSxLRnovRFksQ0FBQSxPRTAvRE4sQ0FDTixRQUNBLENBQUEsTUFBUSxDQUFDLFdBRVQsQ0FBQSxZQUNBLENBQUEsZ0JBQ0EsQ0FBQSxZQUNBLENBQUEscUJBQ0EsQ0FBYyxvQkFHYiwyQkFDYyxDQUFBLHVCQUNDLENBQUEsd0JBQ0UsQ0FBQSxnQkFDaEIsQ0FBQSxhQUNBLENBQUEsV0FDQSxDQUFBLGlCQUNBLENBQVUsY0FDVixDQUFBLDZCQUNBLENBREEsaUJBQ0EsQ0FBQSw0QkFDQSxDQURBLGdCQUNBLENBQUEsOEJBQ0EsQ0FEQSxrQkFDQSxDQUFBLFlBQ0EsbUJBR0EsQ0FIQSxjQUdBLENBQUEsbUJBQ0EsQ0FEQSxjQUNBLENBQUEsOEJBQ2MsQ0FEZCx5QkFDYyxDQUFBLDJCQUVLLFlBTHBCLG1CQU1FLENBTkYsY0FNRSxDQUFBLENBQUEsMkJBR2tCLFlBVHBCLG1CQVVFLENBVkYsY0FVRSxDQUFBLENBQUEsMkJBR2tCLFlBYnBCLG1CQWNFLENBZEYsY0FjRSxDQUFBLENBQUEsMkJBR2tCLFlBakJwQixtQkFrQkUsQ0FsQkYsY0FrQkUsQ0FBQSxDQUFBLDBDQUdnQyxZQXJCbEMsbUJBc0JFLENBdEJGLGNBc0JFLENBQUEsQ0FBQSxpQkFJRixRQUNDLENBQUEsVUFDQSxDQUFBLG9CQUNTLENBQUEsbUJBQ1QsQ0FBQSxxQkFDeUIsQ0FBQSxrQkFDekIsNkJBR0EsQ0FIQSxpQkFHQSxDQUFBLDRCQUNBLENBREEsZ0JBQ0EsQ0FBQSw4QkFDQSxDQURBLGtCQUNBLENBQUEsNkJBT0EsaUJBQ0EsQ0FBQSxjQUNBLGFBS0YsQ0FBQSxhQUNBLENBQUEsZUFDQSxDQUFBLGdCQUhELGlCQU1FLENBQUEsbUJBSU8sb0JBQ0ksQ0FBQSw4SUFNa0Isb0JBQ2xCLENBQUEsb0dBSXlCLG9CQUN6QixDQUFBLDZCQUlYLGtCQUNTLENBQUUsMkRBSUUsaUJBQ2QsQ0FBVSxtQkFDVixlQUlDLENBQUEsYUFDQSxDQUFNLHFCQUNOLGFBR0ssQ0FBRSxZQUNQLENBQUEsa0JBQ0EsQ0FBVyxlQUNYLENBQVEsZUFDUixDQUFBLHFCQUNTLENBQUEsb0JBQ1QsQ0FBQSw0QkFDbUIsQ0FBQSx5QkFDSCxDQUFBLDZCQUNDLENBQUEsd0JBQ2pCLGNBR0EsQ0FBQSxZQUNBLFlBR0EsQ0FBQSxzQkFFQSxZQUNDLENBQUEscUJBQ0EsQ0FBYyxjQUNkLENBQUEsVUFDQSxDQUFBLFFBQ0EsQ0FBQSxVQUNBLENBQUEsYUFDQSxDQUFBLDBCQUVpQixzQkFUbEIsWUFVRSxDQUFBLENBQUEscUJBS0gsaUJBQ1csQ0FBQSxPQUFRLENBQ2xCLE9BQVEsQ0FDUixVQUNBLENBQUEsTUFBUSxDQUFHLGdCQUVYLENBQUEsOEJBQ2UsQ0FBQSx3QkFDZixjQUdBLENBQUEsUUFDQSxDQUFBLFFBQ0EsQ0FBQSxjQUNBLDJCQUdBLENBQUEsY0FDQSw0QkFHQSxDQUFBLGlDQUtBLGlCQUNBLENBQUEsaUNBR0EsZUFDQSxDQUFBLDJCQUNtQixDQUFFLG9CQUNyQixtQkFLVyxDQUFFLHdEQUliLHVDRnR3RWdCLENBQUEscUJFeXdFSixDQUFBLFVBQ1osQ0FBQSxrQ0FDQSxDQURBLDBCQUNBLENBQUEsMEJBQ0EsZUFHQSxDQUFBLGVBQ0EsQ0FBQSxnQkFDQSxDQUFBLFdBQ0EsQ0FBQSxzQkFDQSxXQUdBLENBQUEsWUFDQSxDQUFBLGtCQUNBLENBREEsZUFDQSxDQUFBLGdGQU1BLGVBQ0EsQ0FBQSxpQkFDQSxDQUFBLFVBQ0EsQ0FBQSxrQ0FDQSxDQURBLDBCQUNBLENBQUEsV0F4U0YsZ0JBNlNDLENBQUEsY0FDQSxvQkFHWSxDQUFBLDRCQUdDLGtCQUNILENBQUUsMEJBR0osb0JBQ0ksQ0FBQSxVQXRtQ2Isb0JBMG1DYSxDQUFBLFlBQ1oseUJBS2dCLENBQUEsd0JBR0wseUJBQ0ssQ0FBQSxpQkFLZixpQkFDUyxDQUFBLGVBQ1YsQ0FBQSxtQkFGQyw0QkFLZSxDQUFBLHlCQUNILENBQUEsZUFDWixDQUFBLGlFQUt3QixrQkFDZixDQUFFLHlDQUc0QixvQkFDNUIsQ0FBQSx1SUFNYixvQkFDYSxDQUFBLDhDQUcrQixrQkFDakMsQ0FBRSwwRUFJZ0Isb0JBQ2hCLENBQUEsaUNBR00sV0FDbEIsQ0FBQSw0Q0FDYSxDQUFBLFNBdjJEZCxnQkEyMkRDLENBQUEsbUJBOTFEQSxnQkFrMkRBLENBQUEsZUFDQSxDQUFBLGlDQUlRLG9CQUNJLENBQUEsNkNBSUosa0JBQ0UsQ0FBRSxrQ0EvekRGLG9CQW0wREUsQ0FBQSxzREFHcUIsb0NBQ3BCLENBQUEsZ0JBQ2IsQ0FBQSxpQkFDQSxDQUFBLGFBQ0EsQ0FBQSxjQUNNLENBQUUseUJBQ1IsaUNBR2tCLENBQUEsa0JBQ2xCLG1DQUdrQixDQUFBLGtDQUVsQixXQUNDLENBQUEsaUJBQ1EsQ0FBQSxpQkFDUixDQUFBLGVBQ0EsQ0FBQSxpQkFDQSxDQUFBLGdCQUNBLENBQUEsd0NBR0QsVUFDQyxDQUFBLGVBQ0EsQ0FBQSwyQ0FHZSxrQkFFTCxDQUFBLGlCQUNULG1DQUtnQixDQUFBLHdDQUNELENBREMsZ0NBQ0QsQ0FBQSw0QkFHVCxpQkFFRSxDQUFBLDZDQUVBLGVBQ1IsQ0FBQSxVQUNBLHVCQU1NLENBQUEsV0FDUCxDQUFBLG9CQUNRLENBQUEsMEJBQ0ksQ0FBQSxpQkFDWixDQUFBLHFCQUNZLENBQUEsa0JBQ0YsQ0FBRSxnQkFDWix1QkFHTyxDQUFBLFdBQ1AsQ0FBQSxVQUNBLENBQUEsZ0JBQ0EsV0FHQSxDQUFBLGVBQ0EsQ0FBQSxPQUFnQixDQUNoQixnQkFDQSxDQUFBLFVBQ0EsQ0FBQSxPRjUrRWtCLHVDQTZCRixDQUFBLGNFczlFakIsQ0FBQSxZQUNBLENBQUEsU0FDQSxDQUFBLGVBQ0EsQ0FBQSxlQUNBLENBQUEsZUFDQSxDQUFBLFlBQ0EsQ0FBQSxVQUNBLENBQUEsT0FBVyxDQUNYLE1BQU8sQ0FBQyxhQUVSLENBQU0sNkJBQ1csQ0FBQSxrQkFDakIsQ0FBVyxnQkFDRixDQUFBLDRCQUNELENBQUEsaUJBQ1IsQ0FBQSxTQUNBLENBQUEsbUJBQ1ksQ0FBQSwrQkFFRixPQUFnQixDQUN6QixtQkFDWSxDQUFBLCtCQUdILFFBQ1QsQ0FBQSxtQkFDWSxDQUFBLCtCQUdILFFBQ1QsQ0FBQSxtQkFDWSxDQUFBLCtCQUdILFNBQ1QsQ0FBQSxtQkFDWSxDQUFBLGdCQUNaLFlBR0EsQ0FBQSxvQkFDQSxNQUFBLENBRWEsWUFFYixDQUFBLGtCQUNBLENBQVcsc0JBQ1gsQ0FBZSxrQkFDTCxDQUFFLHdCQUNKLENBQUEsa0JBQ1IsV0FHQSxDQUFBLFFBQ0EsQ0FBQSx3QkFDQSxDQUFBLDJCQUNBLENBQUEsWUFDQSxDQUFBLGNBQ0EsQ0FBQSxlQUNBLENBQUEsK0JBQ2EsQ0FBQSxzQkFDRCxDQUFBLGdEQVRaLG9CQWFhLENBQUEscUJBQ1osYUFJSSxDRnBnRmtCLHdCRXFnRlAsQ0FBRSxvQkFDTixDQUFFLGtCQUNkLGFBR0ssQ0Z6Z0ZlLHdCRTBnRkosQ0FBRSxvQkFDTixDQUFFLHFCQUNkLGFBR0ssQ0Y5Z0ZrQix3QkUrZ0ZQLENBQUUsb0JBQ04sQ0FBRSxvQkFDZCxhQUdLLENGbmhGaUIsd0JFb2hGTixDQUFFLG9CQUNOLENBQUUsOEJBS2QsV0FDQSxDQUFBLHdCQUNnQixDQUFFLG9CQUNOLENBQUUsd0JBQ2QsVUFPQyxDQUFBLFdBQ0EsQ0FBQSxTQUNBLENBQUEsc0JBQ0EsVUFHQSxDQUFBLFdBQ0EsQ0FBQSwyQkFDbUIsQ0FBQSx5QkFDRixDQUFBLGdCQUNULENBQUEsNEJBQ1IsVUFHQSxDQUFBLFdBQ0EsQ0FBQSwyQkFDbUIsQ0FBQSx5QkFDRixDQUFBLG9CQUNSLENBQUEsc0JBQ1QsVUFLQSxDQUFBLGtDQU9BLGNBQ00sQ0FBRSx1Q0FHUixnQkFDUSxDQUFBLG1GQVFTLDBCQUNELENBQUEsd0JBQ1YsQ0FBQSxxR0FLWSxvQkFDUixDQUFFLDREQUMyQyxDQUFDLHlGQUtyQywwQkFDSCxDQUFBLHdCQUNWLENBQUEsMkdBS2Msb0JBQ1YsQ0FBRSw0REFDMkMsQ0FBQyxpQkFDMUQsVUFPQyxDQUFBLHdpRUFDMmlFLENBQUEsMEJBSzFpRSxVQUNBLENBQUEsZUFDQSxDQUFBLG9DQUdBLGFBRU0sQ0FBRSxzQ0FGRyxhQU1MLENBQUUseUJBSVIsYUFDSyxDQUFFLHVJQU1zQixxQkFDOUIsQ0FBQSxZQUNBLENBQUEsaUJBQ0EsQ0FBQSw2QkFDbUIsQ0FBQSw4QkFDQyxDQUFBLGFBQ2YsQ0FBRSx3QkFHUix3QkFDc0MsQ0FBQSwwRkF4Q3ZDLFVBaURFLENBQUEsZ0JBakRGLFVBcURFLENBQUEsZUFDQSxDQUFBLGlCQUNBLENBQUEsZUF2REYsaUJBMkRFLENBQUEsMEJBR0QsZUFDQyxDQUFBLFVBQ0EsQ0FBQSxrQ0FJRCxhQUNNLENGenRGZ0IsbUNFNHRGdEIsVUFDQyxDQUFBLHlDQURELGFBSU8sQ0FBRSwwREFNUixhQUNNLENGdHVGcUIsbUNLakNkLFVINHdGYixDQUFBLHFCQUNBLENBQUEsd0NGcnVGNkIsQ0FBQSxZRXV1RjdCLENBQUEsa0ZHL3dGd0Isd0JIbXhGUCxDQUFFLFdBQ2xCLENBQUEsc0VHdndGaUIsV0g4d0ZqQixDQUFBLGlEQUl1QixzQkFDakIsQ0FBQSw2Rkcxd0ZPLHdCSGd4RkUsQ0FBRSw2QkFDSSxDRnR4Rk4sOEJFdXhGTyxDRnZ4RlAsb0JFd3hGSixDRnh4Rkksa0hLY0sscUJIZ3hGckIsQ0FBQSxXQUNBLENBQUEsdUJBR0QsMkJBQ2EsQ0FBQSxpQ0FHUixrQkFDTSxDQUFFLHVIQU1ELHFCQUNYLENBQUEsVUFDQSxDQUFBLGlCQUNBLENBQUEsdUhBTVcsd0JBQ0ssQ0ZodUZZLFVFaXVGNUIsQ0FBQSxtSEFNVSx3QkFDTSxDRnZ1RlUsVUV3dUYxQixDQUFBLDhCQUdELDhCQUNhLENBQUEsdUhBTUQsd0JBQ0ssQ0ZsdkZjLFVFbXZGOUIsQ0FBQSwyR0FNUSx3QkFDUSxDRnp2RlMsVUUwdkZ6QixDQUFBLHVIQU1XLHdCQUNLLENGaHdGYSxVRWl3RjdCLENBQUEsZ0NBR1cscUJBQ1gsQ0FBQSxnQ0FDWSxDQUFBLFVBQ1osQ0FBQSw0SkFPVyxnQ0FDQyxDQUFBLHdCQUdiLG9CQUNZLENBQUEsd0JBQ0ksQ0FBQSwyREFJaEIsZUFDQyxDQUFBLFVBQ0EsQ0FBQSxzQ0FDdUIsQ0FBQSxtRUFHUCxVQUdmLENBQUEsOEpBREMsd0JBS2dCLENGejFGQSxXRTAxRmhCLENBQUEseUZBUmdCLFdBZWhCLENBQUEsd0JBQ2dCLENGLzBGVywwTUU2MEYxQixXQU1BLENBQUEsd0JBQ2dCLENGbDFGTyxpRkU2ekZSLFdBNkJoQixDQUFBLGtCQUVVLENBQUUscUZBL0JJLFVBc0NoQixDQUFBLGtNQURDLFVBS0EsQ0FBQSxzQkFDWSxDQUFBLG9DQU1ELHFCQUNkLENBQUEscUNBeFFGLHFCQTZRRSxDQUFBLFVBQ0EsQ0FBQSwwQkFHSyxVQUNMLENBQUEsZUFDQSxDQUFBLHVCQUdELGVBQ0MsQ0FBQSxxREFJMEIscUJBQzFCLENBQUEsd0JBR0QsV0FDQyxDQUFBLHdCQUNnQixDQUFFLHNCQUduQixlQUNDLENBQUEseURBSUQsZUFDQyxDQUFBLFVBQ0EsQ0FBQSxpQkFDQSxDQUFBLG9DQUdZLG9CQUNBLENBQUEsdUhBS08sd0JBQ0gsQ0FBRSx3QkFDVixDQUFBLHlJQUtZLG9CQUNSLENBQUUsNERBQzJDLENBQUMsNkhBS3JDLHdCQUNMLENBQUUsb0JBQ04sQ0FBRSwrSUFLUSxvQkFDVixDQUFFLDREQUMyQyxDQUFDLG9EQU94RCxpQkFDQyxDQUFBLHFCQUNBLENBQUEsaUJBQ08sQ0FBQSxnUEFIUixVQVNFLENBQUEscURBSUYsaUJBQ0MsQ0FBQSwwQkFNZSx5QkFEakIsNEJBRW1CLENBQUEsQ0FBQSwrQkFGbkIsb0JBTWEsQ0FBRSwwQkFJZixxQkFDQSxDQUFBLDBCQUVpQiwwQkFIakIsNEJBSW1CLENBQUEsQ0FBQSw0SUFKYixxQkFVTCxDQUFBLFVBQ0EsQ0FBQSwyQ0FPTSxxQkFDTSxDQUFBLGdCQUNaLENBQUEsWUFDQSxDQUFBLCtEQUcwQixvQkFDbEIsQ0FBQSw2QkFLSCxlQUNQLENBQUEsMENBR29CLGtCQUNWLENBQUUsaURBblpILGVBd1pULENBQUEsMkNBR2tDLHlDQUNwQixlQUNiLENBQUEsOEJBQ2MsQ0FBQSxDQUFBLHdGQU1ELGtCQUNKLENBQUUsNkJBR2IsZUFDQyxDQUFBLDZCQUdELDRCQUNhLENBQUEsK0JBQ0csQ0FBQSwwQ0FHSCxhQUNQLENBQUUsZ0JBQ1AsQ0FMZSxxQ0FHSCxhQUNQLENBQUUsZ0JBQ1AsQ0FBQSx1QkFHQyxxQkFDdUIsQ0FBQSx1QkFEdkIscUJBS3VCLENBQUEsa0NBSXZCLFVBQ0EsQ0FBQSxpQ0FDWSxDQUFBLHdDQUZaLFVBS0MsQ0FBQSwrQkFJRCxVQUNBLENBQUEsaUNBQ1ksQ0FBQSx3R0FPWixxQkFDdUIsQ0FBQSwwQkFHekIsZUFDQyxDQUFBLGtGQUtELGtCQUNXLENBQUUsd0NBR0Msa0JBQ0gsQ0FBRSx1Q0FHYixVQUNDLENBQUEsc0NBR1EsMkJBQ0ksQ0FBQSxzQkFHYiwyQkFDYSxDQUFBLGdDQUlOLHdCQUNVLENGNW9HSSw2QkV1a0dyQixlQXlFQyxDQUFBLDhMQU04QiwwQkFDWixDQUFBLDhDQUdHLGFBQ2hCLENGM3BHZSwwSUVrcUdyQiwyQkFFcUIsQ0ZwcUdBLGFFcXFHZCxDRnJxR2Msd0NFeXFHckIsMkJBQ29CLENGMXFHQyxhRTJxR2YsQ0YzcUdlLHVCRWtyR25CLHdCQUN1QixDQUFBLCtCQUNPLENBQUEsZ0RBQ1MsQ0FEVCx3Q0FDUyxDQUFBLHdCQUd2Qyx3QkFDd0IsQ0FBQSwrQkFDTyxDQUFBLGdEQUNTLENBRFQsd0NBQ1MsQ0FBQSxtQkFoaUJoQyxrQkFxaUJDLENBQUUsZ0NBR2Isd0JBQ2lCLENBQUUsaUdBSU0sVUFDeEIsQ0FBQSwrQkFHQywrQkFDYyxDQUFBLDRCQUNILENBQUEseUZBSWEsa0JBQ2YsQ0FBRSw2WkFXYixlQUNDLENBQUEsMERBRzJDLGtCQUNqQyxDQUFFLDJPQU95QixlQUNyQyxDQUFBLHFPQU9vQixlQUNwQixDQUFBLDRXRG56Q2UsZUM2ekNmLENBQUEseUJBR0QsaUJBQ0MsQ0FBQSw4Q0FHb0Isb0JBQ1IsQ0FBRSxrQ0FHRCxVQUNiLENBQUEsd0JBR0MscUJBQ3VCLENBQUEsc0NBR3pCLGtCQUNXLENBQUUsdUJBSWIsZUFDQyxDQUFBLHNDQUdVLGVBQ1YsQ0FBQSxVQUNBLENBQUEsMkNBR2UsVUFDZixDQUFBLG1JQUlVLGFBQ0wsQ0Y3eEdnQiw0Q0VneUdOLHdCQUNDLENGaHpHQSxpRkVvekdOLGdDQUNFLENBQUEseURBR2Usc0JBQ25CLENBQUEsZ0NBbHBFUixlQXNwRUEsQ0FBQSxVQUNBLENBQUEsNkVBSVUsVUFDVixDQUFBLDZDQUdrQixVQUNsQixDQUFBLHFCQUdELGtCQUNXLENBQUUsK0JBR0osa0JBQ0UsQ0FBRSx5REFJSixrQkFDRSxDQUFFLHFFQUlKLGtCQUNFLENBQUUsOENBR00sNkJBQ04sQ0FBQSxrRUFHcUIsZUFDakMsQ0FBQSxxQ0FHRCx1Q0FDbUIsQ0FBQSw2QkFJbkIsd0JBQ2lCLENBQUUsd0NBREgsa0JBSUosQ0FBRSw0RUFFZ0Isb0JBQ2YsQ0FBQSxnQ0FLZiwyQkFDUSxDQUFBLHVCQUdSLFVBQ0MsQ0FBQSx1RUFHYSxrQkFHRixDQUFFLHlDQUlkLGVBQ0MsQ0FBQSxtREFHOEIscURBQ21CLENBQUEsdUZBSXRDLHdCQUNLLENGdDRHSSw2QkV5NEdyQixhQUNNLENGMTRHZSwrQkU2NEdyQixlQUNDLENBQUEsb0NBR0QsZUFDQyxDQUFBLGlIQUkrQixvQkFDbkIsQ0FBQSwwQkFHYixlQUNDLENBQUEsNkJBR0QsZUFDQyxDQUFBLDhCQUdELGtDQUNtQixDQUFBLG9EQUVsQixVQUNDLENBQUEsNkJBSUYsa0NBQ21CLENBQUEsdUJBR25CLFVBQ0MsQ0FBQSxxQkFDQSxDQUFBLHdCQU1ELGVBQ0MsQ0FBQSxVQUNBLENBQUEsb0NBRUEsZUFDQyxDQUFBLFVBQ0EsQ0FBQSxnREFHRCxlQUNDLENBQUEseURBR2lCLGdDQUNMLENBQUEsMkRBR0ssOEJBQ0wsQ0FBQSxvQ0FHYixVQUNDLENBQUEsb0RBR2lCLGtCQUNQLENBQUUsMENBR2IsMkpBQ3FKLENBQUEsb0NBTXRKLGdCQUNDLENBQUEsc0JBeHJHVSxlQTRyR1YsQ0FBQSw4QkFHRCxlQUNDLENBQUEsOEJBR0QsZUFDQyxDQUFBLDhCQUtELG9CQUNhLENBQUEscUNBS2Isa0JBQ1csQ0ZwOUdRLFlFcTlHbEIsMEJBU1UsQ0FBQSxlQUNWLGtCQUdVLENBQUUsY0FDWixDQUFBLGFBQ0EsQ0FBQSxLQUFTLENBQUEsT0FDSCxDQUNOLFFBQ0EsQ0FBQSxNQUFRLENBQUMsV0FFVCxDQUFBLFlBQ0EsQ0FBQSxXQUNBLENBQUEscUJBQ2EsQ0FBQSxhQUNiLGNBR0EsQ0FBQSxpQkFDQSxpQkFHVSxDQUFBLE9BQVEsQ0FDbEIsU0FDQSxDQUFBLGNBQ0EsQ0FBQSxZQUNBLHNCQUdPLENBQUEseUJBQ1UsQ0FBQSxhQUNqQixrQkFLVSxDQUFFLHdCQUNaLENBRFkscUJBQ1osQ0FEWSxvQkFDWixDQURZLGdCQUNaLENBQUEsV0FDQSxDQUFBLFdBQ0EsQ0FBQSxXQUNBLENBQUEsY0FDQSxrQkFHVSxDQUFFLHdCQUNaLENBRFkscUJBQ1osQ0FEWSxvQkFDWixDQURZLGdCQUNaLENBQUEsV0FDQSxDQUFBLFdBQ0EsQ0FBQSxZQUNBLENBQUEsaUJBQ0EsZUFHQSxDQUFBLHdCQUNBLENBREEscUJBQ0EsQ0FEQSxvQkFDQSxDQURBLGdCQUNBLENBQUEsV0FDQSxDQUFBLFdBQ0EsQ0FBQSxZQUNBLENBQUEsd0NBSzhCLG9CQUN6QixXQUNMLENBQUEsQ0FBSyxhQVFQLE1BQU8sZ0JBRUcsQ0FBQSxLQUFBLHNCQUtELENBQUEsMkJBQ0csQ0FBQSwwQkFDRSxDQUFBLHlCQUNELENBQUEsV0FDWCx1QkFJUyxDQUFBLGFBQ1QsZUFJQSxDQUFBLGVBR00sdUJBQ0csQ0FBQSxtQkR4L0dYLCtCQzYvR21CLENBQUEseURBT2xCLHVCQUNVLENBQUEsVUFJVixzQkFDUSxDQUFBLHNCQU1GLGlDQUNPLENBQUEsd0JBSWIsc0JBQ1EsQ0FBQSxxQ0FJVywyQkFDTixDQUFBLHFCQUNKLENBQUEsZUFqckZSLHFCQXFyRlEsQ0FBQSwyQkFDSSxDQUFBLG1CQUNKLENBQUEsb0JBSVQsMEJBQ1UsQ0FBQSwyRUEvMURYLHlCQXMyRFcsQ0FBQSxhQTFrRFgsMEJBK2tEYyxDQUFBLCtGQVViLHVCQUNVLENBQUEsaUJBNTdGUCx1QkFnOEZVLENBQUEsMEJBQ0csQ0FBQSxZQUNmLHVCQUtTLENBQUEsdUNEN3VERywrQkNpdkRBLENBQUEscUJBQ1osdUJBR1MsQ0FBQSx3Q0FNVix1QkFDVSxDQUFBLGtCQUNULDBCQUdlLENBQUEsNEJBMW9GaEIsd0NBOG9GZ0IsQ0FBQSxzQkFDUixDQUFBLGFDMTdHUCwwQkRnOEdZLENBQUEsMEJBQ0EsQ0FBQSw2QkFDRSxDQUFBLG9DQU1mLHVCQUNVLENBQUEsNEJBam9EWCx1QkFzb0RXLENBQUEscUJBR0csaUJBQ0YsQ0FBQSxTQUNWLENBQUEsV0FDQSxDQUFBLFlBQ0EsQ0FBQSxVQUNBLENBQUEsd0JBQ08sQ0FBQSxhQUNQLENBQUEsK0JBR0UsMkJBQ1UsQ0FBQSxjQUNKLENBQUUsa0dBS1IsdUJBQ1MsQ0FBQSxnQ0FHVCx5Q0FDYyxDQURkLDZCQUNjLENBQUEsd0NBQ0QsQ0FEQyw0QkFDRCxDQUFBLHlDQUNDLENBREQsNkJBQ0MsQ0FBQSwrQkFJZCxtQkFDTyxDQUFBLG9CQUNDLENBQUEsK0JBSVYsWUFDQyxDQUFBLGNBOWxESCx3Q0FtbURnQixDQW5tRGhCLDRCQW1tRGdCLENBQUEsdUNBQ0QsQ0FEQywyQkFDRCxDQUFBLHlDQUNDLENBREQsNkJBQ0MsQ0FBQSxDQUFBLFdGOXpIaEIseUJBQ2MsQ0FBQSxpQkFDYixDQUFVLGVBQ1YsQ0FBQSwyRkFDMkUsQ0FBQSxXQUc1RSxvQkFDYyxDQUFBLGlCQUNiLENBQVUsZUFDVixDQUFBLHlFQUN5RCxDQUFBLFdBRzFELGtDQUNjLENBQUEsaUJBQ2IsQ0FBVSxlQUNWLENBQUEsNkdBQzZGLENBQUEsV0FHOUYsNEJBQ2MsQ0FBQSx5RkFDNEQsQ0FBQSx1QkFHMUUsS0FBQSxTQUVFLENBQUEsR0FBQSxTQUlBLENBQUEsQ0FBQSwwREEyTWlDLGFBQ2pDLENBQUEsMERBR2lDLGFBQ2pDLENBQUEsMERBR2lDLGFBQ2pDLENBQUEseUNFeXNETSxXRnBzRFAsQ0FBQSx1REFFTyxhQUNOLENBQUEscUJBQ08sQ0FBQSxpQkFDQyxDQUFFLFVBQ1YsQ0FBQSxVQUNBLENBQUEsV0FDQSxDQUFBLFVBQ0EsQ0FBQSxrQkFDQSxDQUFBLGFBQ0EsQ0FBQSwwQlFsUWUsc0JBQ2hCLGdCQUNDLENBQUEsQ0FBQSxpQkFTQSxlQUNDLENBQUEsb0JBQ0EsWUFHQSxDQUFBLGdCQUNBLHVCQUdTLENBQUEsU0FDVCxZQUdBLENBQUEsNkJBQ2lCLENBQUEsY0FDakIsQ0FBQSxrQkFDQSxDQUFBLDBDQUVpQyxTQU5sQyxxQkFPRSxDQUFBLGdCQUVBLHNCQUNDLENBQWMsQ0FBRSwwQ0FNZSxjQURsQyxxQkFFYyxDQUFBLENBQUEsMENBS29CLHdCQURsQyxVQUVFLENBQUEscUJBQ0EsQ0FBQSw4QkFDYSxDQUFBLDBCQUpkLFVBT0UsQ0FBQSx3QkFDeUIsQ0FBQSxDQUFBLDBDQU1NLDhCQURsQyxxQkFFRSxDQUFBLGdDQUZELFVBS0UsQ0FBQSxDQUFBLDZCQUtILGNBQ0MsQ0FBQSxtQkFDQSxjQUdBLENBQUEsZ0JBQ0EsQ0FBQSwyQkFGVyxjQUtWLENBQUEseUJBQ0EsYUFJRCxDQUFLLCtCQURMLGFBSUMsQ0FBSyx3QkFDTCxhQUlELENBQUssOEJBREwsYUFJQyxDQUFLLGtFQU1OLHlCQUNpQixDQUFBLHFDQUNqQixDQURpQiw2QkFDakIsQ0FBcUIsd0VBS3JCLHlCQUNpQixDQUFBLHFDQUNqQixDQURpQiw2QkFDakIsQ0FBcUIscUVBS3JCLHlCQUNpQixDQUFBLHFDQUNqQixDQURpQiw2QkFDakIsQ0FBcUIsb0JBQ3JCLFdBR0EsQ0FBQSxZQUNBLENBQUEsZ0JBQ0EsQ0FBQSxjQUNBLENBQUEsZ0JBQ0EsQ0FBQSxvQkFDQSxZQUdBLENBQUEsYUFDQSxDQUFBLGNBQ0EsQ0FBQSxrQkFDQSxDQUFBLDZCQUNBLGFBSUMsQ0FBSywyQkFDWSxDQUFHLDZCQUNwQixhQUdBLENBQUssMkJBQ1ksQ0FBRywyQkFDcEIsWUFJRCxDQUFBLGdCQUNBLENBQUEsY0FDQSxDQUFNLHFDUmxGZ0IsQ0FBQSxlUW9GdEIsQ0FBQSxnQkFDQSxVQUdBLENBQUEsZUFDQSxDQUFPLGtCQUNQLENBQUEsaUJBQ0EsQ0FBQSxnQkFDQSxDQUFBLGNBQ0EsQ0FBTSx3QkFDTixDQURNLHFCQUNOLENBRE0sb0JBQ04sQ0FETSxnQkFDTixDQUFBLGtCQUNBLENBQVUscUJBQ0UsQ0FBQSxzQkFUWix3QkFZQyxDQUFnQix5QkFDaEIsdUdBR1ksQ0FBQSwrQkFEWix1R0FJYSxDQUFBLDhCQUpiLGdCQVFDLENBQUEsYUFDQSxDQUFBLDZCQUNBLGtCQUlELENBQVUsV0FDVixDQUFBLG1DQUZBLGtCQUtDLENBQVUseUJBQ1YsdUdBSVcsQ0FBQSwrQkFEWix1R0FJYSxDQUFBLDhCQUpiLGdCQVFDLENBQUEsYUFDQSxDQUFBLDZCQUNBLGtCQUlELENBQVUsV0FDVixDQUFBLG1DQUZBLGtCQUtDLENBQVUsc0JBQ1YsK0ZBSVcsQ0FBQSxXQUNaLENBQUEsNEJBRkEsK0ZBS2EsQ0FBQSx3QkFDWiw2QkFLOEIsQ0FBQSxVQUNoQyxDQUFBLDBDQUVpQyx3QkFKbEMsaUNBSzJCLENBQUMsVUFDMUIsQ0FBQSxhQUNBLENBQUEsUUFBYyxDQUNkLGVBQ0EsQ0FBQSxpQkFDQSxDQUFBLGdDQUNlLENBQUEsQ0FBQSxrQ0FHaEIsV0FDQyxDQUFBLHVCQUNPLENBQUEsYUFDUCxDQUFBLDZCQUNBLG1CQUlELENBQUEsdUJBQ08sQ0FBQSx1Q1JuTGUsQ0FBQSxZUXFMdEIsVUFHQSxDQUFBLGVBQ0EsQ0FBTyxrQkFDUCxDQUFVLGtCQUNWLENBQUEsaUJBQ0EsQ0FBQSxnQkFDQSxDQUFBLGNBQ0EsQ0FBTSx3QkFDTixDQURNLHFCQUNOLENBRE0sb0JBQ04sQ0FETSxnQkFDTixDQUFBLHFCQUNZLENBQUEsVUFDWixDQUFBLGtCQVZBLHdCQWFDLENBQWdCLHVCQUdoQixrQkFDQSxDQUFVLFdBQ1YsQ0FBQSx3QkFDWSxDQUFLLDZCQUhqQixrQkFNQyxDQUFVLHNCQUlYLGtCQUNBLENBQVUsV0FDVixDQUFBLHdCQUNZLENBQUssNEJBSGpCLGtCQU1DLENBQVUsdUNBTVosY0FDQSxDQUFBLGlCQUNBLENBQUEsaUJBQ0EsYUFHQSxDQUFBLHdCQURBLFVBSUMsQ0FBQSxVQUNBLENBQUEsYUFDQSxDQUFBLDZDQUtELFlBQ0EsQ0FBQSxnQkFDQSxhQUdBLENBQUEsaUJBQ0EsMEJBRzhCLENBQUEsMkJBQ0MsQ0FBQSx3REFDbkIsQ0FBQSxZQUNaLENBQUEsY0FDQSxDQUFBLGFBQ0EsQ0FBQSxrQ0FFQSw0QkFDb0IsQ0FBQSxxQkFDUCxDQUFBLDZCQUNaLENBQUEsOEJBQ0EsQ0FBQSxjQUNBLENBQUEsaUJBQ0EsY0FJRCxDQUFNLGVBQ04sQ0FBTyxrQkFDUCxDQUFBLGlCQUNBLENBQUEsZUFDQSxDQUFBLGlCQUNBLENBQUEsY0FDQSxDQUFNLHdCQUNOLENBRE0scUJBQ04sQ0FETSxvQkFDTixDQURNLGdCQUNOLENBQUEsWUFDQSxDQUFBLHVCQVRBLHdDQVlrQixDQVpsQixnQ0FZa0IsQ0FBQSw0QkFHakIsa0JBQ0EsQ0FBVSxXQUNWLENBQUEsYUFDQSxDQUFBLHlDQUdhLGtCQUNiLENBQVUsMkJBR1Ysa0JBQ0EsQ0FBVSxXQUNWLENBQUEsYUFDQSxDQUFBLDBDQUdlLGtCQUNmLENBQVUsaUJBQ1YsaUJBSU8sQ0FBRSxvQkFDRCxDQUFBLHFCQUNULENBQUEscUJBQ1ksQ0FBQSxjQUNaLENBQUEsZ0JBQ0EsQ0FBQSxnQkFDQSxDQUFBLDJCQUNBLFVBR0EsQ0FBQSx3QkFDZ0IsQ0FBQyw0QkFDakIsY0FHQSxDQUFBLGNBQ0EsVUFHQSxDQUFBLDZCQURNLG9CQUtHLENBQUEsNEdBSVQsYUFDQyxDQUFLLG9EQUdlLFlBQ3BCLENBQUEsc0JBQ0EsQ0FBQSwrQ0FHaUIsa0JBQ2pCLENBQUEsVUFDQSxDQUFBLGlCQUNBLENBQUEsMEJBQ0EsZ0JBSUQsQ0FBQSxhQUNBLENBQUEsY0FDQSxDQUFBLGdCQUNBLENBQUEsaUJBQ0EsQ0FBQSx5QkFDQSxpQkFHQSxDQUFBLGNBQ0EsQ0FBTSxtQkFDTixDQUFBLHdCQUNBLENBREEscUJBQ0EsQ0FEQSxvQkFDQSxDQURBLGdCQUNBLENBQUEsc0JBQ0EsdUJBR1MsQ0FBQSxzQkFDVCxrQkFLQSxDQUFVLGlCQUNWLENBQUEsa0RBSWUsUUFBZ0IsQ0FDOUIsaUJBQ0EsQ0FBQSxVQUNBLENBQUEsbURBR2lCLGlCQUNqQixDQUFBLFVBQ0EsQ0FBQSxlQUNBLFVSN0tILENBQUEsV0FDQSxDQUFBLFNBQ0EsQ0FBQSxhQUNBLENBQUEsV0FDQSxDQUFBLG9CQUNTLENBQUEsY0FDVCxDQUFNLHFCQUNNLENBQUEsaUJBQ1osQ0FBQSxZQUNBLENBQUEsd0JBQ0EsQ0FEQSxxQkFDQSxDQURBLG9CQUNBLENBREEsZ0JBQ0EsQ0FBQSxpQlEyS0UsQ0FBQSxzQlJ6S0YsMEJBdEZZLENBQUEsc0JBd0ZYLGVBR0EsQ0FBQSxvQkFDQSxDQUFZLGVBQ1osbUJRd0tELENBQUEsV1IzY0QseUJBQ2MsQ0FBQSxpQkFDYixDQUFBLGVBQ0EsQ0FBQSwyRkFDMkUsQ0FBQSxXQUc1RSxvQkFDWSxDQUFFLGlCQUNiLENBQUEsZUFDQSxDQUFBLHlFQUN5RCxDQUFBLFdBRzFELGtDQUNjLENBQUEsaUJBQ2IsQ0FBQSxlQUNBLENBQUEsNkdBQzZGLENBQUEsV0FHOUYsNEJBQ2MsQ0FBQSx5RkFDNEQsQ0FBQSx1QkFHMUUsS0FBQSxTQUVFLENBQUEsR0FBQSxTQUlBLENBQUEsQ0FBQSwwREEyTWlDLGFBQ2pDLENBQUEsMERBR2lDLGFBQ2pDLENBQUEsMERBR2lDLGFBQ2pDLENBQUEseUNFeXNETSxXRnBzRFAsQ0FBQSx1REFFTyxhQUNOLENBQUEscUJBQ08sQ0FBQSxpQkFDUCxDQUFRLFVBQ1IsQ0FBQSxVQUNBLENBQUEsV0FDQSxDQUFBLFVBQ0EsQ0FBQSxrQkFDQSxDQUFBLGFBQ0EsQ0FBQSw0QlM3UEMsZUFDQSxDQUFBLGlCQUNBLENBQUEsa0NBRkEsa0JBS0MsQ0FBQSxxQ0FHQSx1R0FDWSxDQUFBLDJDQURaLHVHQUlhLENBQUEsMENBSmIsZUFRQyxDQUFBLHlDQUlELGtCQUNBLENBQUEsK0NBREEsa0JBSUMsQ0FBQSxxQ0FJRCx1R0FDWSxDQUFBLDJDQURaLHVHQUlhLENBQUEsMENBSmIsZUFRQyxDQUFBLHlDQUlELGtCQUNBLENBQUEsK0NBREEsa0JBSUMsQ0FBQSxrQ0FJRCwrRkFDWSxDQUFBLHdDQURaLCtGQUlhLENBQUEsb0NBS2QsaUJBQ0EsQ0FBQSwwQ0FFd0Isb0NBSHhCLGlDQUl1QixDQUFHLGVBQ3pCLENBQUEsQ0FBQSx5Q0FJRCxvQ1RGNEIsQ0FBQSx3QlNNNUIsaUJBQ0EsQ0FBQSxzQ0FFQyxlQUNBLENBQUEsNENBREEsa0JBSUMsQ0FBQSxtQ0FJRCxvQkFDQSxDQUFBLGtDQUdBLG9CQUNBLENBQUEsNkJBSUQsa0JBQ0EsQ0FBQSxpQkFDQSxDQUFBLHFEQUNZLENBQUEscUNBR1osYUFDQSxDQUFBLDJDQURBLGFBSUMsQ0FBQSxvQ0FJRCxhQUNBLENBQUEsMENBREEsYUFJQyxDQUFBLGtDQU1ELGdCQUNBLENBQUEsMkJBS0EsZVR3S0YsQ0FBQSxpQkFDQSxDQUFBLGtDU3pLRSwwQlQyRVUsQ0FBQSxrQ1MzRVYsZVRnTEQsQ0FBQSxvQkFDQSxDQUFBLFdBaFRGLHlCQUNjLENBQUEsaUJBQ2IsQ0FBQSxlQUNBLENBQUEsMkZBQzJFLENBQUEsV0FHNUUsb0JBQ0MsQ0FBVyxpQkFDWCxDQUFBLGVBQ0EsQ0FBQSx5RUFDeUQsQ0FBQSxXQUcxRCxrQ0FDYyxDQUFBLGlCQUNiLENBQUEsZUFDQSxDQUFBLDZHQUM2RixDQUFBLFdBRzlGLDRCQUNjLENBQUEseUZBQzRELENBQUEsdUJBRzFFLEtBQUEsU0FDSyxDQUNILEdBQUEsU0FHQyxDQUNELENBQUEsMERBMk0yQixhQUMzQixDQUFBLDBEQUcyQixhQUMzQixDQUFBLDBEQUcyQixhQUMzQixDQUFBLHlDRXlzRE0sV0Zwc0RQLENBQUEsdURBRUMsYUFDQSxDQUFBLHFCQUNPLENBQUEsaUJBQ1AsQ0FBQSxVQUFrQixDQUNsQixVQUFXLENBQ1gsV0FDQSxDQUFBLFVBQVksQ0FDWixrQkFDQSxDQUFBLGFBQ0EsQ0FBQSxvQkFDQSxXVTVQQSxDQUFBLFlBQ0EsQ0FBQSxlQUNBLFVBRVMsQ0FDVCxTVm9LcUIsQ0FBSSw2Q1VyS2hCLFdBS1IsQ0FBQSxxQ0FMUSxxQkFTRyxDQUFDLGNBQ1osdUJBWVUsQ0FBQSxnQkFDWCxDQUFBLHNCQUNBLGdCQUdBLENBQUEsZ0JBQ0EsZ0NBT2EsQ0FBQSxpQkFDYixjQUdBLENBQUEsa0JBQ0EsQ0FBQSxnQkFDQSxDQUFBLG9CQUNBLFVBRU8sQ0FDUCxVQUFXLENBQ1gsZUFDQSxDQUFBLG9CQUNTLENBQUEsWUFDVCxDQUFBLHVCQUNBLDRCQU9ZLENBQUEsZUFDWixpQkFHQSxDQUFBLFlBQ0EsQ0FBQSw2QkFDaUIsQ0FBQSxrQkFDakIsQ0FBQSxtQkFDQSxDQUFBLGVBQ0EsQ0FBQSw2QkFORyxlQVNGLENBQUEsbUJBQ0EsYUFHQSxDQUFBLGlCQUNBLENBQUEseUJBRkEscUJBS1csQ0FBRSxvQkFDWixhQUlELENBQUEsNkJBQ0Esa0JBR0EsQ0FBQSxnQkFDQSxDQUFBLGNBQ0EsQ0FBQSxlQUNBLENBQUEsc0JBQ0EscUJBR0EsQ0FBQSxpQkFqQ0QsZ0JBcUNDLENBQUEsNEJBREUsY0FJRCxDQUFBLG1CQUNBLFVBSUssQ0FDUCx1QkFDTyxDQUFBLGtCQUNDLENBQUEsZUFDUixDQUFBLDBCQUNBLGtEVnhEdUIsQ0FBQSw4QlU2RHRCLHNDVnREZSxDQUFBLGtCVTBEZiwrQ1ZqRXNCLENBQUEsOEJVdUV2QixzQ1ZoRWdCLENBQUEsbUJVa0VmLGNBSUQsQ0FBQSxZQUNBLENBQUEsS0FBTyxDVllTLE1VWGhCLENBQUEsV0FFQSxDQUFBLFlBQ0EsQ0FBQSxZQUNBLENBQUEsc0JBQ0EsQ0FBQSxrQkFDQSxDQUFBLHdDVi9FdUIsQ0FBQSx5QlVpRnZCLHNCQUdBLENBQUEsaUJBQ0EsaUJBR0EsQ0FBQSxZQUNBLENBQUEsV0FDQSxDQUFBLFlBQ0EsQ0FBQSxnQkFDQSxDQUFNLGdCQUNOLENBQUEsVUFBaUIsQ0FDakIsWUFDQSxDQUFBLGVBQ0EsQ0FBQSxnQkFDQSxDQUFBLGdCQUNBLENBQUEsMEJBRVEsaUJBYlQsV0FjRSxDQUFBLENBQUEsMEJBR08saUJBakJULGVBa0JFLENBQUEsQ0FBQSwwQkFHTyxpQkFyQlQsZUFzQkUsQ0FBQSxDQUFBLDJCQUdPLGlCQXpCVCxnQkEwQkUsQ0FBQSxDQUFBLGdDQUdELFlBQ0MsQ0FBQSxjQUNBLENBQUEsK0JBQ0EsNkJBR1ksQ0FBQSxjQUNaLENBQUEsOEJBQ0EsNEJBR1csQ0FBQSxhQUNYLENBQUEsaUNBQ0EsZUFHQSxDQUFBLGtDQUNBLFlBR0EsQ0FBQSxZQUNBLENBQUEsYUFDQSxDQUFBLGdCQUNBLENBQUEsZUFDQSxDQUFBLGVBQ0EsQ0FBQSxRQUFZLENBQUEsb0JBRVosV0FJRCxDQUFBLFVBQVksQ0FDWixZQUNBLENBQUEsZUFDQSxDQUFBLHVCQUNBLGlCQU9BLENBQUEsV0FDQSxDQUFBLFVBQVksQ0FDWixZQUNBLENBQUEscUJBQ0EsQ0FBQSx5QkFDQSxVQUVZLENBQ1osWUFDQSxDQUFBLFdBQ0EsQ0FBQSxrQ0FFQSxlQUNDLENBQUEsd0JBQ0EsaUJBSUQsQ0FBQSxXQUNBLENBQUEsdUJBQ1csQ0FBQSxXQUNYLENBQUEsZUFDQSxDQUFBLGlCQUNBLENBQUEsZ0JBQ0EsQ0FBQSxnQkFDQSxjQUdBLENBQUEsZ0JBQ0EsQ0FBQSxlQUNBLENBQUEsWUFDQSxDQUFBLDZCQUNpQixDQUFBLDRCQUNDLENBQUMsc0JBTm5CLG9CQVNDLENBQVUsc0JBVFgsZ0RWcEQ2QixDQUFBLHlCVWtFNUIsZUFJRCxDQUFBLGVBQ0EsQ0FBQSxhQUNBLENBQUEsY0FDQSxDQUFBLHVCQUNBLGVBR0EsQ0FBQSxVQUFnQixDQUNoQiwyQ0FHa0Isb0JBQ1QsQ0FBQSxnQkFDVCxDQUFNLHNDQUNOLGNBR0EsQ0FBQSxlQUNBLENBQUEsYUFDQSxDQUFBLGlCQUNBLENBQUEsMEJBQ0EsQ0FBQSx5QkFDQSxDQUFBLGNBQ0EsQ0FBQSw4RUFHYyxRQUFBLENBQUEsdUJBR2IsQ0FBQSwrQkFDQSxhQUlELENBQUEsZUFDQSxDQUFBLFdBQ0EsQ0FBQSxrQkFDQSxDQUFBLHFCQUNXLENBQUMsV0FDWixDQUFBLGFBQ0EsQ0FBQSxZQUNBLENBQUEsK0JBQ0EsWUFHQSxDQUFBLGtCQUNBLENBQUEsV0FDQSxDQUFBLGdEUml5QzBCLGdCUTl4Q3pCLENBQUEsb0JBQ0EsZ0JBSUQsQ0FBQSxVQUFpQixDQUNqQixXQUNBLENBQUEsWUFDQSxDQUFBLHNCQUNBLENBQUEsa0JBQ0EsQ0FBQSwyQkFDYSxDQUFBLHVCQUNELENBQUUsZUFDZCxDQUFBLHNCQUNBLG9CQU9TLENBQUEsaUJBQ1QsQ0FBTyw0QkFDUCxDQUFBLDJCQUNBLENBQUEsY0FDQSxDQUFBLHdCQUNBLENBREEscUJBQ0EsQ0FEQSxvQkFDQSxDQURBLGdCQUNBLENBQUEsZUFDQSxDQUFBLDhCQUVBLHdCQUNDLENBQUEsb0JBQ0EsQ0FBQSxzQkFDQSxVQUdXLENBQ1osV0FDQSxDQUFBLGVBQ0EsQ0FBQSxpQkFDQSxDQUFBLDhCQUVBLGFBQ0MsQ0FBQSxrQ0FDQSxlQUdBLENBQUEsK0JBQ0EsNEJBSWlCLENBQUMsb0JBQ25CLFVBTVMsQ1ZoSFYsV0FDQSxDQUFBLFNBQVEsQ0FBSSxhQUVaLENBQUEsV0FDQSxDQUFBLG9CQUNTLENBQUEsY0FDVCxDQUFBLHFCQUNXLENBQUMsaUJBQ1osQ0FBQSxZQUNBLENBQUEsd0JBQ0EsQ0FEQSxxQkFDQSxDQURBLG9CQUNBLENBREEsZ0JBQ0EsQ0FBQSwyQkFFQSwwQkF0RlksQ0FBQSwyQkF3RlgsZUFHQSxDQUFBLG9CQUNBLENBQUEsb0NVaUdDLGdCQUNBLENBQUEsb0NBR0EsZUFDQSxDQUFBLG9CQUNBLENBQUEsb0NBR0EsZUFDQSxDQUFBLG9CQUNBLENBQUEsWUFDQSxDQUFBLGdCQUNBLENBQUEsaUNBQ0EsQ0FBdUIsa0NBQ0MsQ0FBQSxpQkFDeEIsQ0FBQSxtQkFDQSxDQUFBLG1CQUNBLENBQUEsZ0NBQ2EsQ0FBQSxlQUNiLENBQUEsV0FDQSxDQUFBLGNBQ0EsQ0FBQSw0Q0FiWSxlQWdCWCxDQUFBLG9DQUlELHFGQUNZLENBQUEsb0JBQ1osQ0FBQSxjQUNBLGlCQVFELENBQUEsVUFBa0IsQ0FDbEIsV0FDQSxDQUFBLGtCQUNBLENBQUEsa0JBQ0EsQ0FBQSxxQkFDVyxDQUFDLHdCQUNaLENBRFkscUJBQ1osQ0FEWSxvQkFDWixDQURZLGdCQUNaLENBQUEsbUJBQWlCLENBQWpCLFdBQ0EsQ0FBQSxhQUNBLFNBQUEsQ0FFRyxXQUVILENBQUEsZUFDQSxDQUFBLGlCQUNBLENBQUEsUUFBVSxDQUFBLFNBQ0wsQ0FBSSx3QkFFRSxDQUFBLG9CQUNYLENBQUEsbUJBQ0EsQ0FBQSx3QkFDQSxDQURBLHFCQUNBLENBREEsb0JBQ0EsQ0FEQSxnQkFDQSxDQUFBLHFDQUNzQixDQUFBLGtCQUN0QixjQU9BLENBQUEseUJBQ0EsaUJBT0EsQ0FBQSxLQUFVLENBQUEsT0FDVixDQUFHLFFBQ0UsQ0FBRSxNQUNQLENBQUEsb0NBRUEsb0JBR0EsQ0FBVSxtQ0FDVixzQkFHWSxDQUFBLGdCQUNaLFdBR0EsQ0FBQSx3QkFDQSxDQURBLHFCQUNBLENBREEsb0JBQ0EsQ0FEQSxnQkFDQSxDQUFBLFlBQ0EsQ0FBQSxhQUNBLENBQUEsZUFDQSxDQUFBLFVBQWdCLENBQ2hCLGNBQ0EsQ0FBQSxzQkFDQSxVQUVXLENBQ1gsb0JBQ0EsWUFHQSxDQUFBLHFCQUNBLENBQUEsYUFDQSxDQUFBLHdCQUNBLGVBR0EsQ0FBQSxpQkFDQSxDQUFBLGdCQUNBLFdBT0EsQ0FBQSxpQkFDQSxDQUFBLGVBQ0EsdUNWcmJnQixDQUFBLFlVMGJoQixDQUFBLGlCQUNBLENBQUEscUJBQ1csQ0FBQyxnQkFDWixDQUFBLGlCQUNBLENBQUEsU0FBZSxDQUFHLG9CQUViLENBQUEsV0FDTCxDQUFBLFNBQVMsQ0FBRyxtQ0FFdUIsQ0FBQSxtQkFDbkMsQ0FBQSxxQ0FHYSxZQUNiLENBQUEsU0FBUyxDQUFJLGFBRWIsdUNWemNzQixDQUFBLFlVa2R0QixDQUFBLGNBQ0EsQ0FBQSxlQUNBLENBQUEsMkNWNWR1QixDQUFBLHFCVThkdkIsQ0FBQSxpQkFDQSxVQUVTLENBQ1QsVUFBVyxDQUNYLGVBQ0EsQ0FBQSxhQUNBLGNBR0EsQ0FBQSxlQUNBLENBQUEsbUJBRkEsa0JBS0MsQ0FBQSxrREFMSSxjQVVKLENBQUEsZUFDQSxDQUFBLGtCQUNBLGdCQVNBLENBQUEsZUFDQSxDQUFBLGVBRUEsQ0FBQSxjQUNBLENBQUEsWUFDQSxDQUFBLFdBQ0EsQ0FBQSx1QkFFQSxnQkFDQyxDQUFBLFdBQ0EsQ0FBQSxjQUNBLENBQUEsZUFDQSxDQUFBLGFBQ0EsQ0FBQSxnQkFDQSxDQUFBLHFCQUNBLFNBQUEsQ0FHUyxnQkFFVixDQUFBLFNBQWEsQ0FBSSxlQUVqQixDQUFBLGNBQ0EsQ0FBQSxhQUNBLENBQUEsV0FDQSxDQUFBLGNBQ0EsQ0FBQSxrQkFDQSxDQUFBLGdCQUNBLENBQUEsMEJBRUEsV0FDQyxDQUFBLGdCQUNBLENBQUEsZUFDQSxtQkFJRCxDQUFBLG9CQUNBLHFCQUdXLENBQUMsWUFDWixpQkFRRCxDQUFBLE9BQVUsQ0FBQSxjQUVWLENBQUEsWUFDQSxpQkFHQSxDQUFBLGNBQ0EsQ0FBQSxvQkFGQSxVQUlTLENBQ1IsV0FDQSxDQUFBLG9CQUNTLENBQUEsaUJBQ1QsQ0FBQSxvQkFSRCxTQUFRLENBWUMsZUFFUixjQVFELENBQUEsWUFDQSxDQUFBLGFBQ0EsQ0FBQSxTQUFNLENBQVEsVUFDSixDQUNWLGtCQUNBLHNDVnZrQmdCLENBQUEsY1U0a0JoQixDQUFBLGtCQUNBLENBQUEsVUFBbUIsQ0FDbkIsMEJBQ1csQ0FBQSxtQkFDWCxDQUFBLHdCQUNBLENBREEscUJBQ0EsQ0FEQSxvQkFDQSxDQURBLGdCQUNBLENBQUEsV0FDQSxDQUFBLGdCQUNBLENBQUEsY0FDQSxDQUFBLFlBQ0EsQ0FBQSxhQUNBLENBQUEscUJBQ0EsNEJBUWUsQ0FBQSxzQkFDZCw2QkFHZSxDQUFBLGVBQ2YsaUJBSUQsQ0FBQSxLQUFVLENBQUEsUUFDUCxDQUFFLFdBRUwsQ0FBQSxzQkFDQSxDQUFBLDBCQUVFLEtBQUEsQ0FBQSxxQkFFRCxRQUFBLENBQUEsc0JBSUEsU0FBQSxDQUVPLHNCQUVQLHVCQUlXLENBQUEsU1Y3aEJFLENBQUksU1U4aEJULENBQUMsVUFFQSxDQUNWLFdBQ0EsQ0FBQSxRQUFRLENBQUEsY0FFUixDQUFBLGdCQUNBLENBQUEsZUFDQSxDQUFBLGdCQUVBLENBQUEsVUFBaUIsQ0FDakIsd0hBYlUsZUFtQlQsQ0FBQSxZQUNBLENBQUEsNEJBcEJELGdCQXdCQyxDQUFBLFVBQWlCLENBQ2pCLDRGQXpCUyxnQkErQlQsQ0FBQSxVQUFpQixDQUNqQixxR0FLUyx1QkFDRSxDQUFBLFNWbGtCRSxDQUFJLHFCVW9rQmxCLEtBQUEsQ0FBQSxPQU9BLENBQUcsTUFDSCxDQUFBLFNBQ00sQ0FBQyxzQkFFSyxDQUFBLHlGQU1ULFNBQUEsQ0FBb0IsMkZBSXBCLGdCQUNELENBQUEsVUFBaUIsQ0FDakIsZ0JBQ0EsQ0FBQSwyRkFHQyxZQUNELENBQUEsc0JBQ0EsUUFBQSxDQUFBLE9BS0csQ0FBQSxNQUNMLENBQUEsWUFFQSxDQUFBLHFCQUNBLENBQUEsZUFDQSxDQUFBLHFCQUNXLENBQUMsWUFDWixDQUFBLGdCQUNBLENBQUEsd0hBVFcsWUFlVixDQUFBLHFGQUlELGtCQUlDLENBQUEsc0VBSlUsa0JBU1YsQ0FBQSxlQUNBLGNBV0EsQ0FBQSxpQkFDQSxVQUlLLENBQ0wsV0FDQSxDQUFBLFFBQVEsQ0FBQSxrQkFFUixDQUFBLHFCQUNXLENBQUMsaUJBQ1osQ0FBQSwrQ0FOQSxrQkFVQyxDQUFBLG9CQUNBLENBQUEscUJBQ0EsZUFJRCxDQUFBLGtCQUNBLENBQUEsdUJBQ0EscUJBR1csQ0FBQyxXQUNaLENBQUEsaUJBQ0EsQ0FBQSx1QkFDQSxlQUdBLENBQUEsc0JBQ0EsVUFFVSxDQUNWLFdBQ0EsQ0FBQSxpQkFDQSxDQUFBLCtCQUVBLHFCQUNZLENBQUMsZUFDWixDQUFBLDRCQUNBLGlCQUdBLENBQUEsZUFDQSxDQUFBLDZCQUNBLGdCQUdBLENBQUEsZ0JBQ0EsQ0FBQSxzQkFDQSxVQUdTLENBQ1Ysb0JBQ0EsZUFHQSxDQUFBLGVBQ0EsU0FBQSxDQUVHLFVBQ08sQ0FDVixlQUNBLENBQUEsc0JBRUEsVUFBUSxDQUNQLGtCQUNBLENBQUEscUJBQ0EsS0FBQSxDQUFBLFVBSUssQ0FDTixXQUNBLENBQUEsZ0JBQ0EsQ0FBQSxlQUNBLFVBRUcsQ0FDSCxXQUNBLENBQUEsaUJBQ0EsQ0FBQSxXQUNBLENBQUEsWUFDQSxDQUFBLHFCQUNXLENBQUMsZUFDWixDQUFBLFdWLzRCSCx5QkFDYyxDQUFBLGlCQUNiLENBQUEsZUFDQSxDQUFBLDJGQUMyRSxDQUFBLFdBRzVFLG9CQUNDLENBQUEsaUJBQ0EsQ0FBQSxlQUNBLENBQUEseUVBQ3lELENBQUEsV0FHMUQsa0NBQ2MsQ0FBQSxpQkFDYixDQUFBLGVBQ0EsQ0FBQSw2R0FDNkYsQ0FBQSxXQUc5Riw0QkFDYyxDQUFBLHlGQUM0RCxDQUFBLHVCQUcxRSxLQUFBLFNBQ0MsQ0FBSSxHQUNILFNBR0QsQ0FBRSxDQUNELDBEQTJNMkIsYUFDM0IsQ0FBQSwwREFHMkIsYUFDM0IsQ0FBQSwwREFHMkIsYUFDM0IsQ0FBQSx5Q0V5c0RNLFdGcHNEUCxDQUFBLHVEQUVDLGFBQ0EsQ0FBQSxxQkFDTyxDQUFBLGlCQUNQLENBQUEsVUFBVSxDQUFRLFVBQ1gsQ0FBSSxXQUNBLENBQ1gsVUFBUSxDQUFJLGtCQUVaLENBQUEsYUFDQSxDQUFBLHFDVXZQUyxRQUFBLENBQUEsZ0NDS1QsZUFDQSxDQUFBLHNDQVFDLG9DWDRDNEIsQ0FBQSw4Qld2QzdCLG9DWHVDNkIsQ0FBQSxxQ1duQzdCLHFCQUNBLENBQUEsK0JUZzZHRCxpQlM1NUdDLENBQUEsOENBR0EsZUFDQSxDQUFBLDRCQU9BLGlCQUNBLENBQUEsa0NBREEsZUFJQyxDQUFBLDJDQUlELGlCQUNBLENBQUEsMkxBV0MsMENYK0I2QixDQUFBLDhDV3pCN0IsZUFDQSxDQUFBLG9DWFI0QixDQUFBLDJDV2E3QixpQkFDQSxDQUFBLGdCQUNBLENBQUEsa0NBS0EsZUFDQSxDQUFBLG9DWHJCNkIsQ0FBQSxnQ1c2QjdCLGlCQUNBLENBQUEsdUNBREEsMEJYc0dXLENBQUEsZ0RXL0ZWLGVBQ0EsQ0FBQSxnREFHQSxlQUNBLENBQUEsb0JBQ0EsQ0FBQSxnREFHQSxlQUNBLENBQUEsb0JBQ0EsQ0FBQSx3REFGWSxVQUlYLENBQVEsZ0RBS1QsbUZBQ1ksQ0FBQSxvQkFDWixDQUFBLDBCQVFELGVBQ0EsQ0FBQSxpQkFDQSxDQUFBLHlCQUdBLGVBQ0EsQ0FBQSxlQUNBLENBQUEsMkJBT0EsaUJBQ0EsQ0FBQSxlQUNBLENBQUEseUJBT0EsZUFDQSxDQUFBLHdDWHhGNkIsQ0FBQSxxQlcwRjdCLENBQUEsNkJBR0EsZUFDQSxDQUFBLCtCQUdBLGtCQUVDLENBQUEsV1huRndCLENXb0Z4QiwwRUFISSxlQVFKLENBQUEsVVgxRmEsQ0FBSSxnQ1dvR2pCLGlCQUNBLENBQUEsa0NBUUQsZUFDQSxDQUFBLFdYOUgyQixDVytIM0Isd0tBRlUsZUFRVCxDQUFBLFlBQ0EsQ0FBQSx3Q0FURCxrQkFhQyxDQUFBLFdBQThELENBQzlELGdJQWRTLGtCQW9CVCxDQUFBLFdBQStELENBQy9ELGlDQVFELHNCQUNVLENBQUUsa0NBR1oscUJBQ0EsQ0FBQSxpQkFDQSxDQUFBLHlIQUdBLGtCQUlDLENBQUEsOEZBSlUsa0JBU1YsQ0FBQSw2QkFTQSxxQ1h4THNCLENBQUEsaUJXMEx0QixDQUFBLHVFQUZBLHFDQU1hLENBQUEsaUJBQ1osQ0FBQSxtQ0FJRCxpQkFDQSxDQUFBLG1DQUdBLGtDWG5NNEIsQ0FBQSwyQ1d3TTNCLGlCQUNBLENBQUEsZUFDQSxDQUFBLDJCQUlELGVBQ0EsQ0FBQSwyQkFHQSxpQkFDQSxDQUFBLGVBQ0EsQ0FBQSxXWHJNaUIsZ0NZcEZOLENBQUEsaUJBQ2IsQ0FBQSxlQUNBLENBQUEsK0VBQytELENBQUEsV0FBa0IsZ0NBSXBFLENBQUEsaUJBQ2IsQ0FBQSxlQUNBLENBQUEsK0VBQytELENBQUEsV0FBa0Isc0JBSWpGLENBQVcsaUJBQ1gsQ0FBQSxlQUNBLENBQUEscUVBQ3FELENBQUEsV0FBa0Isc0JBSXZFLENBQVcsaUJBQ1gsQ0FBQSxlQUNBLENBQUEsNEVBQzRELENBQUEsV0FBa0Isc0JBSTlFLENBQVcsaUJBQ1gsQ0FBQSxlQUNBLENBQUEscUVBQ3FELENBQUEsV0FBa0IsaUNBSTFELENBQUEsaUJBQ2IsQ0FBQSxlQUNBLENBQUEsNEVBQzRELENBQUEsV0FBa0IsaUJBSTlFLENBQUEsaUJBQ0EsQ0FBQSxlQUNBLENBQUEsb0VBQ29ELENBQUEsV0FBa0IsaUJBSXRFLENBQUEsaUJBQ0EsQ0FBQSxlQUNBLENBQUEsaUVBQ2lELENBQUEsV0FBa0IsaUJBSW5FLENBQUEsaUJBQ0EsQ0FBQSxlQUNBLENBQUEsb0VBQ29ELENBQUEsV0FBa0IsbUJBSXRFLENBQUEsaUJBQ0EsQ0FBQSxlQUNBLENBQUEsb0VBQ29ELENBQUEsV0FBa0IsbUJBSXRFLENBQUEsaUJBQ0EsQ0FBQSxlQUNBLENBQUEscUVBQ3FELENBQUEsV0FBa0IsbUJBSXZFLENBQUEsaUJBQ0EsQ0FBQSxlQUNBLENBQUEseUVBQ3lELENBQUEsV0FBa0IsbUJBSTNFLENBQUEsaUJBQ0EsQ0FBQSxlQUNBLENBQUEsbUVBQ21ELENBQUEsV0FBa0Isb0JBSXJFLENBQUEsaUJBQ0EsQ0FBQSxlQUNBLENBQUEsK0RBQytDLENBQUEsV0FBa0Isd0JBSXBELENBQUEsaUJBQ2IsQ0FBQSxlQUNBLENBQUEseUVBQ3lELENBQUEsV0FBa0Isd0JBSTlELENBQUEsaUJBQ2IsQ0FBQSxlQUNBLENBQUEsMEVBQzBELENBQUEsV0FBa0Isd0JBSS9ELENBQUEsaUJBQ2IsQ0FBQSxlQUNBLENBQUEsOEVBQzhELENBQUEsV0FBa0Isd0JBSW5FLENBQUEsaUJBQ2IsQ0FBQSxlQUNBLENBQUEsd0VBQ3dELENBQUEsV0FBa0Isb0JBSTFFLENBQUEsaUJBQ0EsQ0FBQSxlQUNBLENBQUEsK0RBQytDLENBQUEsV0FBa0Isc0JBSWpFLENBQVcsaUJBQ1gsQ0FBQSxlQUNBLENBQUEsbUVBQ21ELENBQUEsa0JBS3BELFlBQ0MsQ0FBQSxxQkFDQSxDQUFBLG1CQUNBLENBQUEsc0JBQ1MsQ0FBQSw0QkFDRyxDQUFBLCtCQUNHLENBQUEsaUJBQ2YsQ0FBQSxVQUFZLG9DQUtDLENBQUEsdUJBRWIsYUFDQyxDQUFBLGtCQUNBLENBQUEsZ0JBQ0EsYUFHQSxDQUFBLFlBQ0EsQ0FBQSw2QkFFQSxhQUNDLENBQUEsa0JBQ0Esa0NBSVksQ0FBQSxhQUNiLENBQUEsUUFBVyxDQUFBLGdCQUVYLENBQUEsZ0JBQ0EsQ0FBQSw0QkFHRCxvQ0FDYyxDQUFBLGFBQ2IsQ0FBQSxrQkFDQSxDQUFBLGtCQUNBLENBQUEsOENBRUUsZUFDRCxDQUFBLGNBQ0EsWUFLRixDQUFBLFVBQVEsQ0FBSyxVQUNOLGtDQUlNLENBQUEsa0JBQ2IsQ0FBQSxrQkFDQSxDQUFBLGVBQ0EsQ0FBQSxnQkFHQyxRQUFBLENBQUEsU0FDTyxDQUFFLDRDQUVLLENBQUEsZ0JBQ2IsQ0FBQSxlQUNBLENBQUEsd0JBQ0EsQ0FBQSxhQUNBLENBQUEsZUFDQSxDQUFBLHVCQUVBLDJCQUNjLENBQUEsZ0JBQ2IsQ0FBQSxpQ0FHRCxlQUNDLENBQUEsZ0JBQ0EsMEJBSVcsQ0FBQSxRQUFBLENBQUEscUJBRUosQ0FBQSxZQUNSLENBQUEsZ0JBQ0EsUUFBQSxDQUFBLGFBSUEsQ0FBQSxzQkFFQSxRQUFBLENBQUEsNENBR0csZUFDRCxDQUFBLGtDQUlBLGVBQ0QsQ0FBQSxtQkFDQSxRQUFBLENBQUEsZ0JBS0QsQ0FBQSxnQkFDQSxDQUFBLGFBQ0EsQ0FBQSx5QkFFQSxRQUFBLENBQUEsa0JBRUMsa0NBSVksQ0FBQSxrQkFDYixDQUFBLGdCQUNBLENBQUEsZUFDQSxDQUFBLFFBQWEsQ0FBQSxpQkFFYixDQUFBLGdCQUNBLENBQUEsaUJBQ0EsQ0FBQSx5QkFFQSxhQUNDLENBQUEsZ0JBQ0EsQ0FBQSxXQUFpQixvQkFPWCxDQUFBLHFCQUNULENBQVUsUUFBRSxDQUFBLDBCQUVILENBQUEsYUFDVCxDQUFBLFdBQWMsQ0FDZCw0Q0FDYSxDQUFBLGdCQUNiLENBQUEsZUFDQSxDQUFBLGFBQ0EsQ0FBQSxxQkFDQSxDQUFBLGlCQUNBLENBQUEsd0JBQ0EsQ0FBQSxrQkFDQSxDQUFBLDJCQUNRLENBQUEsMEJBQ1IsQ0FBQSx1QkFDQSxDQUFBLGlCQWpCRCwrQkFvQm1CLENBQUEsdUJBQ1YsQ0FBQSx3QkFDUCwrQkFLbUIsQ0FBQSxzQkFDVixDQUFBLG1CQUNQLGtCQUlELENBQUEsaUJBQ0Esa0JBR0EsQ0FBQSxxQkFDQSxrQkFHQSxDQUFBLHNCQUNBLGtCQUdBLENBQUEsYUFDQSxDQUFBLGlCQUNBLGtCQUdBLENBQUEsdUJBQ0Esa0JBR0EsQ0FBQSxpQkFDQSx3QkFHQSxDQUFBLGtCQUNBLHlCQUdBLENBQUEsaUJBQ0EsaUNBS1csQ0FBQSxnQkFDYixDQUFBLGFBQ0EsQ0FBQSx3QkFIRCx5QkFNVyxDQUFBLDJCQUNULFNBQUEsQ0FBQSxpQkFLRCxDQUFBLDRCQU1HLGlCQUNBLENBQUEsdUJBSk8sYUFVVCxDQUFBLFFBQU8sYUFLUixDQUFBLGlCQUNBLENBQUEsVUFBVSxDQUFRLFFBQ1gsQ0FBQSxpQkFFUCxDQUFBLGdDQUNhLENBQUEsZUFDYixDQUFBLGVBQ0EsQ0FBQSx3QkFDQSxDQUFBLGlCQUNBLENBQUEsZUFDQSxDQUFBLGtCQUVBLGlCQUNDLENBQUEsT0FBVSxDQUFBLGlCQUVWLENBQUEsY0FDQSxhQUdBLENBQUEsNkJBSUEsb0JBQ1UsQ0FBQSxlQUNULGFBS0YsQ0FBQSxRQUFPLENBQUEsU0FDRCxDQUFFLG9DQUVLLENBQUEsaUJBQ2IsQ0FBQSxlQUNBLENBQUEsZUFDQSxDQUFBLGtCQUNBLENBQUEsa0JBQ0EsQ0FBQSw4QkFFRSxlQUNELENBQUEseUJBQ0EsaUJBR0EsQ0FBQSxRQUFZLGFBS2IsQ0FBQSxpQkFDQSxDQUFBLFVBQVUsQ0FBUSxnQkFFbEIsQ0FBQSxTQUFRLENBQUEsZ0NBRUssQ0FBQSxhQUNiLENBQUEsZUFDQSxDQUFBLGVBQ0EsQ0FBQSxlQUNBLENBQUEsa0JBRUEsaUJBQ0MsQ0FBQSxPQUFVLENBQUEsa0JBRVYsQ0FBQSxjQUNBLFVBQUEsQ0FFTSxZQUVOLENBQUEsTUFBTyxDQUFFLHFCQUVELENBQUEsa0NBQ0MsQ0FBQSwwQkFDSCxDQURHLHVCQUNILENBREcsa0JBQ0gsQ0FBRSw0QkFDRyxDQUFBLGFBQ1gsQ0FBQSxrQkFDQSxDQUFBLGdDQUNhLENBQUEsZUFDYixDQUFBLGVBQ0EsQ0FBQSx3QkFDQSxDQUFBLGVBQ0EsQ0FBQSxzQkFkQSx3Q0FpQndCLENBQUEsa0JBQ3ZCLFVBQUEsQ0FHUyx3QkFFRixDQUFBLFNBQUEsQ0FBQSx3QkFFQSxDQUFBLFlBQ1IsQ0FBQSxXQUFhLENBQ2IsaUJBQ0EsQ0FBQSxrQkFDQSxDQUFBLGFBQ0EsQ0FBQSxpQkFDQSxDQUFBLGdDQUNhLENBQUEsZUFDYixDQUFBLHdCQUNBLENBQUEsaUJBQ0EsQ0FBQSxhQUNBLFlBR0EsQ0FBQSxjQUNBLENBQUEsY0FDQSxDQUFBLDZCQUlBLG9CQUNVLENBQUEsUUFBQSxhQU1YLENBQUEsaUJBQ0EsQ0FBQSxRQUFVLENBQUEsaUJBRVYsQ0FBQSw2QkFDYSxDQUFBLGVBQ2IsQ0FBQSxlQUNBLENBQUEsaUJBQ0EsQ0FBQSxZQUNBLENBQUEsZUFDQSxDQUFBLGFBRUEsMkJBQ2MsQ0FBQSw2QkFJYixvQkFDVSxDQUFBLFFBQUEsYUFNWCxDQUFBLGlCQUNBLENBQUEsUUFBVSxDQUFBLGlCQUVWLENBQUEsNkJBQ2EsQ0FBQSxlQUNiLENBQUEsdUJBQ0EsQ0FBWSxlQUNaLENBQUEsaUJBQ0EsQ0FBQSxZQUNBLENBQUEscUJBQ0EsQ0FBQSxlQUNBLENBQUEsYUFFQSwyQkFDYyxDQUFBLDZCQUliLG9CQUNVLENBQUEsUUFBQSxrQkFNWCxDQUFBLDRCQUNBLENBQUEsNkJBQ0EsQ0FBQSxxQ0FDWSxDQUFBLGFBQ1osQ0FBQSxjQUNBLENBQUEsMEJBQ1MsQ0FBQSw2QkFDSSxDQUFBLGdCQUNiLENBQUEsZUFDQSxDQUFBLGlCQUNBLENBQUEsd0JBQ0EsQ0FBQSxZQUNBLENBQUEsZUFDQSxDQUFBLGlCQUNBLFdBRWUsQ0FDZixpQkFDQSxDQUFBLE9BQVUsQ0FBQSxlQUVWLENBQUEsT0FBVyxXQUdOLENBQ0wsUUFBTyxDQUFBLFNBQ0QsQ0FBRSxvQ0FFSyxDQUFBLGFBQ2IsQ0FBQSxlQUNBLENBQUEsa0JBQ0EsQ0FBQSxrQkFDQSxDQUFBLGNBUkQsZUFXRSxDQUFBLGtCQUNBLFFBQUEsQ0FBQSxTQUlLLENBQUUsV0FDRSxrQkFJSixDQUFFLFNBQUEsQ0FBQSxZQUVSLENBQUEsVUFBUyxDQUFJLGlCQUViLENBQUEsZUFDQSxDQUFBLGFBQ0EsQ0FBQSxVQUFVLENBQUksZUFFZCxDQUFBLGlCQUdDLFNBQUEsQ0FBQSxrQ0FFYyxDQUFBLGFBQ2IsQ0FBQSxlQUNBLENBQUEsd0JBQ0EsQ0FBQSxhQUNBLENBQUEsbUJBQ0EsQ0FBQSxrQkFDQSxDQUFBLG9CQUNBLG1CQUdPLENBQUUsNENBQ0ksQ0FBQSxlQUNiLENBQUEsZUFDQSxDQUFBLHdCQUNBLENBQUEsYUFDQSxDQUFBLG1CQUNBLENBQUEsa0JBQ0EsQ0FBQSxlQUNBLENBQUEsa0JBQ0EsZUFHQSxDQUFBLGtCQUNBLENBQUEsV0FBbUIsQ0FDbkIsa0NBQ2EsQ0FBQSxlQUNiLENBQUEsZUFDQSxDQUFBLGlCQUNBLENBQUEsWUFDQSxDQUFBLGlCQUNBLENBQUEsa0JBQ0EsZUFHQSxDQUFBLFdBQWdCLENBQ2hCLGtCQUNBLENBQUEsa0NBQ2EsQ0FBQSxlQUNiLENBQUEsc0JBTEEsa0JBUUMsQ0FBQSw4QkFSSSw2QkFZUyxDQUFBLCtCQVpULDhCQWdCVSxDQUFBLDZCQWhCViw0QkFvQlEsQ0FBQSxnQ0FwQlIsK0JBd0JXLENBQUEsNEJBeEJoQixZQTRCQyxDQUFBLGVBQ0EsQ0FBQSxxQkFDQSxlQUlELENBQUEsa0NBQ2EsQ0FBQSxlQUNiLENBQUEsa0JBQ0EsQ0FBQSxtQkFDQSxDQUFBLGtCQUNBLENBQUEsa0JBQ0EsV0FFSyxDQUNMLGtDQUNhLENBQUEsZUFDYixDQUFBLG1CQUNBLENBQUEsa0JBQ0EsQ0FBQSxrQkFDQSxXQUVLLENBQ0wsa0NBQ2EsQ0FBQSxlQUNiLENBQUEsbUJBQ0EsQ0FBQSxrQkFDQSxDQUFBLHlCQUNBLDZCQUtBLENBQUEsYUFDQSxXQUlTLENBQ1gsV0FBWSxDQUNaLDZCQUNhLENBQUEsYUFDYixDQUFBLFNBQU8sQ0FBQSxlQUVQLENBQUEsZUFDQSxDQUFBLDJCQUNRLENBQUEsa0NBQ0ssQ0FBQSxhQUNiLENBQUEsd0JBVlcsZUFhVixDQUFBLGVBQ0EsQ0FBQSxRQUFhLENBQUEsa0NBRUEsQ0FBQSxzQkFDSixDQUFBLHVCQWpCWCxhQXFCRSxDQUFBLGFBQ0EsQ0FBQSxpQkFDQSxDQUFBLHVCQXZCRixnQ0EyQm1CLENBQUEsb0JBQ2pCLGVBSUMsQ0FBQSxlQUNBLENBQUEsUUFBYSxDQUFBLGdCQUViLENBQUEsbUJBQ0EsUUFBQSxDQUFBLGVBSUEsQ0FBQSxlQUNBLENBQUEsYUFDQSxDQUFBLG1CQUNBLFVBQUEsQ0FJSSxVQUNHLENBQUksOEJBRUcsQ0FBQSxpQkFDZCxDQUFBLFNBQWEsQ0FBQSxlQUViLENBQUEsZUFDQSxDQUFBLDJCQUVRLENBQUEsYUFDUixDQUFBLHVFQUtBLDZCQUNjLENBQUEsZUFDYixDQUFBLG1CQUNBLFdBR0csQ0FDSiw2QkFJRixhQUNDLENBQUEsMENBR3VCLGFBN0V6QixnQkE4RUUsQ0FBSyxjQUNMLENBQUEsVUFBVyxDQUFJLENBQ2Ysc0JBSUYsWUFDQyxDQUFBLDZCQUNBLENBQUEsVUFBdUIsQ0FBTyxhQUU5QixDQUFBLDBDQUVHLDhCQUNZLENBQUEsaUNBUEssUUFVcEIsQ0FBQSxrQ0FFYyxDQUFBLGVBQ2IsQ0FBQSxlQUNBLENBQUEscUJBQ1MsQ0FBQSx5Q0FHVixRQUFBLENBQUEsa0NBRWMsQ0FBQSxlQUNiLENBQUEsZUFDQSxDQUFBLGVBQ0EsQ0FBQSxtQkFFQSxnQkFNQyxDQUFBLFVBQVksQ0FBSyxrQkFFakIsQ0FBQSx1QkFDTyxDQUFBLHNCQUdOLGlCQUNDLENBQUEsYUFDQSxDQUFBLHNCQUNBLGNBR0EsQ0FBQSxnQkFDQSxDQUFBLG9CQUNBLGlCQUtGLENBQUEsU0FBWSxDQUFBLFlBRVosQ0FBQSxXQUFhLENBQ2IsYUFDQSxDQUFBLHVCQUdDLG9CQUNDLENBQUEsdUJBQ0EsbUJBR0EsQ0FBQSxvQkFDQSxDQUFTLG1CQUNULFdBTWEsQ0FDakIsa0JBQ0EsQ0FBQSx3QkFDUSxDQUFBLFlBQ1IsQ0FBQSxjQUNBLENBQUEsdUJBR0MsK0JBQ2EsQ0FBQSxxQkFDTCxDQUFBLGlCQUNQLENBQUEsdUJBQ0EsaUJBR0EsQ0FBQSxxQkFDTyxDQUFBLDBCQUNQLFFBQUEsQ0FBQSxvQkFJQSxDQUFBLDZCQUNhLENBQUEsZUFDYixDQUFBLGVBQ0EsQ0FBQSxlQUNBLENBQUEseUJBQ0Esa0NBR2EsQ0FBQSxlQUNiLENBQUEsZUFDQSxDQUFBLGVBQ0EsQ0FBQSxpQkFDQSxDQUFBLFFBQWEsQ0FBQSxvREFHWCxlQUNELENBQUEsMENBS3FCLG1CQTFDekIscUJBMkNFLENBQUEsdUJBbkNBLCtCQXVDYyxDQUFBLFVBQUEsQ0FBb0IsdUJBakNsQyxVQUFBLENBQUcscUJBdUNRLENBQUEsQ0FBQSxXQUNULFlBTUgsQ0FBQSxjQUNBLENBQUEsa0JBR0MsUUFBQSxDQUFBLFNBQ08sQ0FBRSw0QkFFTyxDQUFBLDRDQUNGLENBQUEsZ0JBQ2IsQ0FBQSxlQUNBLENBQUEsd0JBQ0EsQ0FBQSxhQUNBLENBQUEsZUFDQSxDQUFBLGtCQUNBLHFCQUdPLENBQUEsaUJBQ1AsQ0FBQSxnQkFDQSwwQkFHYSxDQUFBLHFCQUNKLENBQUEscUJBQ0YsQ0FBQSwwQ0FJZSxXQUFnQixxQkFDdkMsQ0FBQSxrQkFiQSxVQUFBLENBQU0sd0JBa0JLLENBQUEsZ0JBYlgsMEJBaUJjLENBQUEsYUFDWixDQUFBLHdCQUNTLENBQUEsVUFBQSxDQUFnQixDQUN6QixhQU1KLFdBQVksQ0FDWCxhQUNBLENBQUEsa0JBQ0EsQ0FBQSx3QkFDUSxDQUFBLGNBQ1IsQ0FBQSxhQUNBLENBQUEsb0JBR0MsUUFBQSxDQUFBLDZCQUVjLENBQUEsZUFDYixDQUFBLGVBQ0EsQ0FBQSxpQkFDQSxDQUFBLG1CQUNBLGtDQUdhLENBQUEsZUFDYixDQUFBLGVBQ0EsQ0FBQSxlQUNBLENBQUEsaUJBQ0EsQ0FBQSxRQUFhLENBQUEsd0JBdEJKLFFBMkJYLENBQUEsNkJBRWMsQ0FBQSxlQUNiLENBQUEsZUFDQSxDQUFBLGlCQUNBLENBQUEsY0FDQSxZQUlELENBQUEscUJBQ0EsQ0FBQSxrQ0FDYSxDQUFBLGtCQUNiLENBQUEsY0FDQSxDQUFBLFNBQVEsQ0FBQSxlQUVSLENBQUEsY0FDQSxDQUFBLHFCQUdDLFFBQUEsQ0FBQSxxQkFFVSxDQUFBLGtCQUNULENBQUEsYUFDQSxDQUFBLGVBQ0EsQ0FBQSxnQkFDQSxDQUFBLHdCQUNBLENBQUEsZUFDQSxDQUFBLGlCQUNBLENBQUEsb0JBQ0EsaUJBR0EsQ0FBQSxrQkFDQSxDQUFBLFFBQVksQ0FBQSxtQkFFTCxDQUFFLGdCQUNULGtCQUtGLENBQUEsY0FDQSxDQUFBLG1CQUNPLENBQUUsa0NBQ0ksQ0FBQSxhQUNiLENBQUEsY0FDQSxDQUFBLGFBQ0EsQ0FBQSx1QkFHQyxRQUFBLENBQUEsaUJBRUMsQ0FBQSxlQUNBLENBQUEsaUJBQ0EsQ0FBQSxpQkFDQSxDQUFBLHlCQUNBLFFBQUEsQ0FBQSxxQkFJUyxDQUFBLGVBQ1QsQ0FBQSxpQkFDQSxDQUFBLGdCQUNBLENBQUEsc0JBQ0EsUUFBQSxDQUFBLHFCQUlTLENBQUEsZUFDVCxDQUFBLGlCQUNBLENBQUEsMkJBOUJZLFFBa0NkLENBQUEsaUJBRUMsQ0FBQSxlQUNBLENBQUEsaUJBQ0EsQ0FBQSxpQkFDQSxDQUFBLDZCQUdBLGdCQUNBLENBQUEsZUFDQSxrQkFJRCxDQUFBLGNBQ0EsQ0FBQSxpQkFDQSxDQUFBLGFBQ0EsQ0FBQSxrQ0FDYSxDQUFBLGFBQ2IsQ0FBQSxjQUNBLENBQUEsc0JBR0MsUUFBQSxDQUFBLGVBRUMsQ0FBQSxpQkFDQSxDQUFBLGVBQ0EsQ0FBQSxxQkFDQSxRQUFBLENBQUEsZUFJQSxDQUFBLGlCQUNBLENBQUEsa0JBQ0EsQ0FBQSwwQ0FFRSxlQUNELENBQUEsMEJBeEJVLFFBNkJiLENBQUEsZUFFQyxDQUFBLGlCQUNBLENBQUEsZUFDQSxDQUFBLDRCQUdBLGdCQUNBLENBQUEsV0FBaUIsa0JBS2xCLENBQUEsYUFDQSxDQUFBLDRCQUNZLENBQUEsK0JBQ0csQ0FBQSxrQ0FDRixDQUFBLGFBQ2IsQ0FBQSxlQUNBLENBQUEsaUJBQ0EsQ0FBQSxpQkFDQSxDQUFBLGtCQUNNLENBQUUsYUFDUixDQUFBLDBCQUNBLENBREEsdUJBQ0EsQ0FEQSxrQkFDTSxDQUFFLFNBQUEsaUJBSVIsQ0FBQSxPQUFVLENBQUEsb0JBRUYsQ0FBQSxtQkFDRCxDQUFFLGtDQUNJLENBQUEsU0FBQSxDQUFBLGVBRWIsQ0FBQSxpQkFDQSxDQUFBLGFBQ0EsQ0FBQSxnQkFHQyxpQkFDQyxDQUFBLFNBQVUsQ0FBQSxXQUNBLENBQ1YsTUFBSyxDQUFBLGVBRUwsQ0FBQSxhQUNBLENBQUEsZ0JBQ0EsQ0FBQSxnQkFDQSxDQUFBLHdCQUNBLENBQUEsaUJBQ0EsQ0FBQSxlQUNBLFFBQUEsQ0FBQSxhQUlBLENBQUEsa0JBQ0EsQ0FBQSxpQkFDQSxDQUFBLDhCQUVFLGlCQUNELENBQUEsZ0JBQ0EsaUJBSUQsQ0FBQSxTQUFVLENBQUEsUUFDVixDQUFPLDBCQUVLLENBQUEsWUFDWixDQUFBLFNBQVMsQ0FBQSxVQUNGLENBQUcsdUJBSVQsZUFDQyxDQUFBLHNCQUNBLGNBR0EsQ0FBQSwyQkFDQSxpQkFLRixDQUFBLFNBQVUsQ0FBQSxZQUVWLENBQUEsU0FBSyxDQUFBLFVBQ0UsQ0FBRyxzQkFFSCxDQUFBLFlBQ1AsQ0FBQSxxQkFDQSxjQUdBLENBQUEsa0NBQ2EsQ0FBQSx3QkFDYixDQUFBLFlBQ0EsQ0FBQSxhQUNBLENBQUEsdUNBRUEsYUFDQyxDQUFBLGFBQ0EsQ0FBQSxpQkFDQSxDQUFBLHVDQUdELGFBQ0MsQ0FBQSxrQkFDQSxDQUFBLFdBQW1CLENBQ25CLDZCQUNhLENBQUEsOEJBQ0MsQ0FBQSxjQUNkLHdCQU1ELENBQUEsWUFDQSxDQUFBLFdBQWEsQ0FDYixnQkFDQSx3QkFHQSxDQUFBLFlBQ0EsQ0FBQSxXQUFhLENBQ2Isb0JBbkdLLGdCQXdHTixDQUFBLGdCQUNBLENBQUEsZUFDQSxDQUFBLGlCQUNBLENBQUEsd0JBQ0EsQ0FBQSxlQUNBLFlBSUQsQ0FBQSxxQkFDQSxDQUFBLFdBQXNCLGlCQUl0QixDQUFBLFdBQWtCLENBQ2xCLE9BQU8sQ0FBQSxvQkFFQyxDQUFBLG1CQUNELENBQUUsU0FBQSxDQUFBLGVBRVQsQ0FBQSxrQkFDQSxDQUFBLGlCQUNBLENBQUEsNkNBQ3FCLENBQUEsMEJBQ3JCLENBQUEseUJBQ0EsQ0FBQSxtQkFHQyxtQkFDQyxDQUFBLGNBQ0EsQ0FBQSxzQkFDQSxnQkFHQSxDQUFBLGNBQ0EsQ0FBQSxpQkFDQSxRQUFBLENBQUEsbUJBSUEsZUFHQSxDQUFBLGNBQ0EsQ0FBQSxvQ0FFQSxnQkFDQyxDQUFBLGdCQUNBLENBQUEsc0RBS2tCLGVBQ2xCLENBQUEsaUJBQ0Esc0JBS0ssQ0FBQSxrREFDYyxDQUFBLHNCQWhEYixlQW9EUixDQUFBLGdCQUNBLENBQUEsUUFBYSxDQUFBLGlCQUViLGtDQUlZLENBQUEsZUFDYixDQUFBLGlCQUNBLENBQUEsT0FBVSxDQUFBLFNBQ0osQ0FBQSxjQUVOLENBQUEsWUFDQSxnQ0FHYSxDQUFBLGFBQ2IsQ0FBQSxnQkFDQSxDQUFBLGlCQUNBLENBQUEsdUJBSlUsZUFPVCxDQUFBLGdCQUNBLENBQUEscUJBQ0EsQ0FBQSxRQUFnQixDQUFBLGNBRWhCLGtDQUlZLENBQUEseUJBREQsa0JBSVgsQ0FBQSxlQUNBLENBQUEsUUFBVyxDQUFBLGlCQUVYLGdDQUlZLENBQUEsZ0JBQ2IsQ0FBQSxpQkFDQSxDQUFBLGdCQUNBLGlDQUltQixDQUFBLGlCQUNuQixrQ0FHb0IsQ0FBQSxlQUNwQiw2QkFHYSxDQUFBLDRCQUNELENBQUEsNEJBQ0UsQ0FBQSwrQkFDRyxDQUFBLGdCQUNqQix3QkFHYSxDQUFBLG1CQUNiLDBCQUdhLENBQUEsd0JBQ2IsMkJBR2MsQ0FBQSwyQkFDRCxDQUFBLGNBQ2IsdUJBR1MsQ0FBQSw0QkFDVCw2Q0FJWSxDQUpaLHFDQUlZLENBQUEsbUNBQ1gsSUFBQSxXQUNJLENBQ0YsQ0FIUywyQkFDWCxJQUFBLFdBQ0ksQ0FDRixDQUFBLGdCQU9ILFlBQ0MsQ0FBQSxpQkFDQSxhQUdBLENBQUEsZ0JBQ0EsQ0FBQSxhQUNBLENBQUEsaUJBQ0EsQ0FBQSw4QkFNQyxhQUNBLENBQUEsb0NBR0EsWUFDQSxDQUFBLHdDQUdBLFlBQ0EsQ0FBQSxxQkFDQSxDQUFBLDZCQUdBLHVCQUNTLENBQUEsMkJBR1Qsa0JBQ08sQ0FBQSxnQ0FHUCxrQkFDTyxDQUFBLGlCQUNQLFlBS0YsQ0FBQSxpQkFDQSxlQUdBLENBQUEsMkJBQ2EsQ0FBQSxnQkFDYixDQUFBLGtCQUNBLFNBQUEsQ0FBQSxlQUlBLENBQUEsbUJBQ0EsQ0FBQSxpQkFDQSxhQUdBLENBQUEseUJBQ1ksQ0FBQSxhQUNaLFdBRVcsQ0FDWCxZQUNBLENBQUEsa0JBQ0EsQ0FBQSxtQkFDQSxVQUFBLENBRWlCLGVBRWpCLENBQUEsVUFBVyxDQUFLLFlBR2hCLENBQUEscUJBQ0EsQ0FBQSxXQUFzQixDQUN0QiwwQkFQRCxlQVVFLENBQUEsa0NBR0QsZUFDQyxDQUFBLDJCQWRGLGVBa0JFLENBQUEsb0JBQ0EsV0FHaUIsQ0FDbEIsWUFFQSxDQUFBLFVBQVMsQ0FBSSxrQkFFYixDQUFBLDhCQUVBLFNBQUEsQ0FBQSxnQ0FBQyxVQUdBLENBQUMsaUJBRUEsQ0FBQSxpQkFDQSxDQUFBLGlCQUNBLENBQUEsYUFDQSxDQUFBLHdCQWZILHVCQW9CVSxDQUFBLGNBQ1IsQ0FBQSx3QkFDQSxDQURBLHFCQUNBLENBQVUscUJBQ0YsQ0FBQSxzQkF2QlYsVUEwQkMsQ0FBQyxpQkFFQSxDQUFBLHNCQUNBLGdCQUlELENBQUEsY0FDQSxDQUFBLGdEQUlBLGFBQ0MsQ0FBQSxzQkFDQSxDQUFBLHNDQUNrQixDQUFBLGlCQUNsQixDQUFBLFVBQVUsQ0FBUSxVQUNWLENBQUcsVUFDSCxDQUFHLGdCQUVYLENBQUEsd0JBQ0EsQ0FEQSxxQkFDQSxDQURBLG9CQUNBLENBREEsZ0JBQ0EsQ0FBQSxlQUNBLENBQUEsY0FDQSxDQUFBLGlCQUNBLENBQUEsb0NBR0QsNEJBQ2EsQ0FBQSxnQ0FJTSx1QkFFVCxDQUFBLGlEQUdQLHVCQUNRLENBQUEsMkNBSVgsd0JBQ1MsQ0FBQSw0REFFUiwwQkFDYSxDQUFBLHNCQXhDZixpQkE4Q0MsQ0FBQSxlQUNBLENBQUEsa0JBQ0EsaUJBR0EsQ0FBQSxpQkFDQSxDQUFBLDBCQUNBLDBCQUdTLENBQUEsVUFBQSxDQUFrQiwyQkFFbkIsQ0FBQSxnQkFDUixDQUFBLDRCQUNlLENBQUEseUJBQ2YseUJBR1MsQ0FBQSxVQUFBLENBQWlCLDJCQUVsQixDQUFBLGdCQUNSLENBQUEsNEJBQ2UsQ0FBQSx5QkFHTix3QkFDVCxDQUFBLDRGQWVBLGFBQ0MsQ0FBQSx5QkFHRCxvQkFDQyxDQUFBLGtDQUdELGFBQ0MsQ0FBQSxzQ0FERCxvQkFJRSxDQUFBLCtCQUlGLGtCQUNDLENBQUEsZ0NBR0QsWUFDQyxDQUFBLDBCQUdELGFBQ0MsQ0FBQSxvQkE3QkYsYUFpQ0UsQ0FBQSwwQkFFQyxhQUNBLENBQUEsa0JBQ0EsQ0FBQSw4QkFFQyxhQUNBLENBQUEsb0JBQ0EsQ0FBQSxrQkFDQSxDQUFBLG9CQTFDSixhQWdERSxDQUFBLG9CQWhERixhQW9ERSxDQUFBLGtCQUNBLENBQUEsbUNBQ3lCLENBQUMsbUJBdEQ1QixVQXlEQyxDQUFNLHVCQTN3Q0ksa0JBZ3hDVCxDQUFBLG9CQUNBLENBQUEsYUFDQSxDQUFBLG9DQUdFLCtCQUVrQixDQUFBLHdCQUNWLENBQUEsa0NBSVIsa0JBQ0EsQ0FBQSw2QkFHQSxrQkFDQSxDQUFBLG1DQUdBLGtCQUNBLENBQUEsaUNBR0Esa0JBQ0EsQ0FBQSw2QkFHQSxrQkFDQSxDQUFBLCtCQUdBLGtCQUNBLENBQUEsOEJBT0Esa0JBQ0EsQ0FBQSxhQUNBLENBQUEsOEJBR0Esd0JBQ0EsQ0FBQSxVQUFrQixDQUFPLGtDQUR6Qix3QkFLQyxDQUFBLDBDQUxJLG9CQVNKLENBQUEsMkNBVEksb0JBYUosQ0FBQSxpQ0FJRCx3QkFDQSxDQUFBLDREQUlBLFVBQUEsQ0FBSyw0QkFNUix3QkFDQyxDQUFBLFlBQ0EsQ0FBQSxVQTNJZ0IsQ0FBTywwQkErSXhCLHdCQUNDLENBQUEsWUFDQSxDQUFBLGFBQ0EsQ0FBQSxtREFJQSxrQkFDQyxDQUFBLG9CQUNBLENBQUEsYUFDQSxDQUFBLHVEQUtGLGtCQUNDLENBQUEsMEJBR0Qsa0JBQ0MsQ0FBQSxpQ0FFQyxhQUNBLENBQUEsa0JBQ0EsQ0FBQSx1QkFyS1Esb0JBMEtULENBQUEsa0JBQ0EsQ0FBQSx3REFJRCxrQkFDQyxDQUFBLG9CQUNBLENBQUEsYUFDQSxDQUFBLGdFQUVDLCtCQUNxQixDQUFBLDBDQUdFLGdFQUp2QiwrQkFNc0IsQ0FBQSxDQUFBLDRCQU9yQixpQkFDQSxDQUFBLDhCQUdBLGlCQUNBLENBQUEsMENBSXNCLDRCQVR0Qix5QkFXWSxDQUFBLGFBQ1osQ0FBQSxDQUFBLHVCQTdNTyxvQ0FtTmEsQ0FBQSw4QkFHdkIsb0JBQ0MsQ0FBQSw0Q0FHRCxhQUNDLENBQUEsNkJWOHFERCxhVTFxREMsQ0FBQSwyRUFJRCxpQkFDQyxDQUFBLHdCQUNBLGFBS0QsQ0FBQSxrQkFDQSxDQUFBLG1DQUdzQixnQkFDdEIiLCJmaWxlIjoic3R5bGUuY3NzIn0= */ \ No newline at end of file +@font-face{font-family:'Convergence';font-style:normal;font-weight:400;src:local("Convergence-Regular"),url("../fonts/Convergence-Regular.ttf") format("truetype")}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;src:local("Roboto"),url("../fonts/Roboto-regular.ttf") format("truetype")}@font-face{font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;src:local("glyphicons-halflings-regular"),url("../fonts/glyphicons-halflings-regular.ttf") format("truetype")}@font-face{font-family:'Blambot Casual';src:local("Blambot-Casual"),url("../fonts/Blambot-Casual-Regular.ttf") format("truetype")}@-webkit-keyframes kf-fade-out{from{opacity:1}to{opacity:0}}@keyframes kf-fade-out{from{opacity:1}to{opacity:0}}.linked-titles .rd__h--0 .entry-title-inner:hover::before{font-size:50%}.linked-titles .rd__h--1 .entry-title-inner:hover::before{font-size:55%}.linked-titles .rd__h--2 .entry-title-inner:hover::before{font-size:60%}.linked-titles .rd__h .entry-title-inner{cursor:copy}.linked-titles .rd__h .entry-title-inner:hover::before{content:' 🔗';color:rgba(0,0,0,0.2);position:relative;float:left;width:14px;height:14px;right:20px;margin-right:-30px;font-size:85%}@font-face{font-family:'Convergence';font-style:normal;font-weight:400;src:local("Convergence-Regular"),url("../fonts/Convergence-Regular.ttf") format("truetype")}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;src:local("Roboto"),url("../fonts/Roboto-regular.ttf") format("truetype")}@font-face{font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;src:local("glyphicons-halflings-regular"),url("../fonts/glyphicons-halflings-regular.ttf") format("truetype")}@font-face{font-family:'Blambot Casual';src:local("Blambot-Casual"),url("../fonts/Blambot-Casual-Regular.ttf") format("truetype")}@keyframes kf-fade-out{from{opacity:1}to{opacity:0}}.linked-titles .rd__h--0 .entry-title-inner:hover::before{font-size:50%}.linked-titles .rd__h--1 .entry-title-inner:hover::before{font-size:55%}.linked-titles .rd__h--2 .entry-title-inner:hover::before{font-size:60%}.linked-titles .rd__h .entry-title-inner{cursor:copy}.linked-titles .rd__h .entry-title-inner:hover::before{content:' 🔗';color:rgba(0,0,0,0.2);position:relative;float:left;width:14px;height:14px;right:20px;margin-right:-30px;font-size:85%}input[type='checkbox']:checked{-webkit-filter:grayscale(100%)}input[type='radio']:checked{-webkit-filter:grayscale(100%)}.glyphicon-send{top:2px;right:1px}.roller{color:#337ab7;cursor:pointer}.text-muted a{color:#7096b7}.font-ui{font-family:Arial, sans-serif}.code{font-family:'Courier New', monospace}.code--narrow{font-family:monospace}.ve-muted{color:#777 !important}.ve-small{font-size:85% !important}.clickable{cursor:pointer !important}.clickable--link{color:#337ab7 !important}.not-clickable{cursor:default !important}.copyable{cursor:copy !important}.no-select{-webkit-user-select:none !important;-moz-user-select:none !important;-ms-user-select:none !important;user-select:none !important}.bold{font-weight:bold !important}.italic{font-style:italic !important}i>i{font-style:initial}.underline{text-decoration:underline}.line-through{text-decoration:line-through}.plain{font-weight:initial !important;font-style:initial !important}.no-wrap{white-space:nowrap !important}.no-events{pointer-events:none !important}.smooth-scroll{transform:translateZ(0) !important}.no-breaks{-moz-column-break-before:auto;break-before:auto;-moz-column-break-after:auto;break-after:auto;-moz-column-break-inside:avoid;break-inside:avoid}.overflow-y-auto{overflow-y:auto}.overflow-y-scroll{overflow-y:scroll}.overflow-y-hidden{overflow-y:hidden}.overflow-x-scroll{overflow-x:scroll}.overflow-x-hidden{overflow-x:hidden}.overflow-ellipsis{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.resize-vertical{resize:vertical}.resize-none{resize:none}.whitespace-normal{white-space:normal}.whitespace-pre{white-space:pre}.help,.help--hover{cursor:help;text-decoration:underline;-webkit-text-decoration-style:dotted;text-decoration-style:dotted}.help:hover,.help:active,.help:focus{text-decoration:underline;-webkit-text-decoration-style:dotted;text-decoration-style:dotted}.help--subtle{cursor:help}.small-caps{font-variant:small-caps}.capitalise{text-transform:capitalize}@media (max-width: 780px){.help--hover{cursor:default;text-decoration:none}}.w-100{width:100% !important}.w-90{width:90% !important}.w-80{width:80% !important}.w-75{width:75% !important}.w-70{width:70% !important}.w-66{width:66.6666666% !important}.w-60{width:60% !important}.w-50{width:50% !important}.w-50--mr-2{width:calc(50% - .5rem) !important}.w-40{width:40% !important}.w-33{width:33.3333333% !important}.mw-33{max-width:33.3333333% !important}.w-30{width:30% !important}.w-25{width:25% !important}.mw-25{max-width:25% !important}.w-20{width:20% !important}.w-15{width:15% !important}.w-initial{width:initial !important}.h-100{height:100% !important}.min-h-0{min-height:0}.min-h-100{min-height:100% !important}.max-w-80{min-width:80% !important}.max-w-100{max-width:100% !important}.grid{display:grid !important}.flex{display:flex !important}.relative{position:relative}.absolute{position:absolute}.flex-col{display:flex !important;flex-direction:column !important}.flex-inline-col{display:inline-flex !important;flex-direction:column !important}.inline-flex{display:inline-flex}.block{display:block !important}.inline-block{display:inline-block}.flex-1{flex:1}.flex-2{flex:2}.flex-3{flex:3}.flex-fill{flex-basis:100%}.no-shrink{flex-shrink:0}.ve-grow{flex-grow:1}.flex-wrap{flex-wrap:wrap}.split{display:flex;justify-content:space-between}.split-v-center{display:flex;justify-content:space-between;align-items:center}.inline-split-v-center{display:inline-flex !important;justify-content:space-between;align-items:center}.split-v-end{display:flex !important;justify-content:space-between;align-items:flex-end}.split-child{width:50%;flex-shrink:0;flex-grow:0}.split-column{display:flex;justify-content:space-between;flex-direction:column}.split-column--inline{display:inline-flex}.flex-v-center{display:flex !important;align-items:center !important}.flex-h-center{display:flex;justify-content:center}.flex-v-top{display:flex;align-items:flex-start}.flex-v-bottom{display:flex;align-items:flex-end}.flex-v-baseline{display:flex;align-items:baseline}.flex-vh-center{display:flex;align-items:center;justify-content:center}.flex-vh-center-around{display:flex;align-items:center;justify-content:space-around}.flex-inline-v-center{display:inline-flex;align-items:center;justify-content:center}.flex-h-right{display:flex;justify-content:flex-end}.self-flex-end{align-self:flex-end}.columns-2{-moz-column-count:2;column-count:2;-moz-column-break-inside:avoid;break-inside:avoid-column}.columns-2>*{-moz-column-break-inside:avoid;break-inside:avoid-column}@media (max-width: 768px){.columns-2{-moz-column-count:1;column-count:1}}.columns-3{-moz-column-count:3;column-count:3;-moz-column-break-inside:avoid;break-inside:avoid-column}.columns-3>*{-moz-column-break-inside:avoid;break-inside:avoid-column}@media (max-width: 768px){.columns-3{-moz-column-count:2;column-count:2}}@media (max-width: 480px){.columns-3{-moz-column-count:1;column-count:1}}.columns-4{-moz-column-count:4;column-count:4;-moz-column-break-inside:avoid;break-inside:avoid-column}.columns-4>*{-moz-column-break-inside:avoid;break-inside:avoid-column}@media (max-width: 768px){.columns-4{-moz-column-count:3;column-count:3}}@media (max-width: 480px){.columns-4{-moz-column-count:2;column-count:2}}.columns-5{-moz-column-count:5;column-count:5;-moz-column-break-inside:avoid;break-inside:avoid-column}.columns-5>*{-moz-column-break-inside:avoid;break-inside:avoid-column}@media (max-width: 768px){.columns-5{-moz-column-count:3;column-count:3}}@media (max-width: 480px){.columns-5{-moz-column-count:2;column-count:2}}.columns-6{-moz-column-count:6;column-count:6;-moz-column-break-inside:avoid;break-inside:avoid-column}.columns-6>*{-moz-column-break-inside:avoid;break-inside:avoid-column}@media (max-width: 768px){.columns-6{-moz-column-count:3;column-count:3}}@media (max-width: 480px){.columns-6{-moz-column-count:2;column-count:2}}.float-clear{clear:both}body{min-height:100%;position:relative}body.is-fullscreen .page__header{display:none}body.is-fullscreen .page__nav{display:none}input{min-width:0}label{font-weight:initial}input[type=checkbox],input[type=radio]{margin:0}main{padding:10px 15px}footer{padding:20px 15px;font-size:90%}pre,textarea{-moz-tab-size:2;-o-tab-size:2;tab-size:2}hr{flex-shrink:0}.hr--dotted{border-style:dashed}*{scrollbar-width:thin}::-webkit-scrollbar{width:9px;height:9px}::-webkit-scrollbar-track{background:transparent}::-webkit-scrollbar-thumb{background:#cbcbcb}body{scrollbar-width:auto}body::-webkit-scrollbar{width:15px}.container{position:relative}.tooltip{pointer-events:none}.tooltip-inner{white-space:nowrap}.input-xs{height:22px;padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.form-control--minimal{border-radius:0;padding:0 2px}.flex-label{display:inline-flex;align-items:center}.flex-label>input[type=checkbox],.flex-label>input[type=radio]{margin:0 0 0 5px}.btn-xxs{padding:0 2px;font-size:12px;line-height:1.5;border-radius:3px}.btn-primary--half{background:repeating-linear-gradient(135deg, #337ab7, #337ab7 16px, #b8b8b8 16px, #b8b8b8 32px)}.fade{transition:opacity 51ms linear}.dropdown-menu--side{top:-10px;left:100%;max-height:calc(100vh - 130px);overflow-y:auto}.nav>li>a{padding:5px 14px 6px}@media (min-width: 992px){.nav>li>a{border-top-left-radius:0;border-top-right-radius:0}}@media (max-width: 991px){.nav>li{margin-top:2px;margin-bottom:2px}}.page__nav-inner>li.active>a,.page__nav-inner>li.active>a:focus,.page__nav-inner>li.active>a:hover{background-color:#002664;border-top:0}@media (min-width: 992px){.page__nav-inner>li.active>a,.page__nav-inner>li.active>a:focus,.page__nav-inner>li.active>a:hover{border-left:1px solid transparent;border-right:1px solid transparent;border-bottom:1px solid #999}}.nav>li>a:focus,.nav>li>a:hover{background-color:rgba(0,0,0,0.1)}.nav .open>a,.nav .open>a:focus,.nav .open>a:hover{background-color:rgba(0,0,0,0.1)}.row{margin-right:0;margin-left:0}.col-12,.col-11,.col-11-9,.col-11-8,.col-11-7,.col-11-6,.col-11-5,.col-11-4,.col-11-3,.col-11-2,.col-11-1,.col-10,.col-10-9,.col-10-8,.col-10-7,.col-10-6,.col-10-5,.col-10-4,.col-10-3,.col-10-2,.col-10-1,.col-9,.col-9-9,.col-9-8,.col-9-7,.col-9-6,.col-9-5,.col-9-4,.col-9-3,.col-9-2,.col-9-1,.col-8,.col-8-9,.col-8-8,.col-8-7,.col-8-6,.col-8-5,.col-8-4,.col-8-3,.col-8-2,.col-8-1,.col-7,.col-7-9,.col-7-8,.col-7-7,.col-7-6,.col-7-5,.col-7-4,.col-7-3,.col-7-2,.col-7-1,.col-6,.col-6-9,.col-6-8,.col-6-7,.col-6-6,.col-6-5,.col-6-4,.col-6-3,.col-6-2,.col-6-1,.col-5,.col-5-9,.col-5-8,.col-5-7,.col-5-6,.col-5-5,.col-5-4,.col-5-3,.col-5-2,.col-5-1,.col-4,.col-4-9,.col-4-8,.col-4-7,.col-4-6,.col-4-5,.col-4-4,.col-4-3,.col-4-2,.col-4-1,.col-3,.col-3-9,.col-3-8,.col-3-7,.col-3-6,.col-3-5,.col-3-4,.col-3-3,.col-3-2,.col-3-1,.col-2,.col-2-9,.col-2-8,.col-2-7,.col-2-6,.col-2-5,.col-2-4,.col-2-3,.col-2-2,.col-2-1,.col-1,.col-1-9,.col-1-8,.col-1-7,.col-1-6,.col-1-5,.col-1-4,.col-1-3,.col-1-2,.col-1-1,.col-0-9,.col-0-8,.col-0-7,.col-0-6,.col-0-5,.col-0-4,.col-0-3,.col-0-2,.col-0-1,.col-ml-9,.col-ml-3{position:relative;min-height:1px;padding-right:7px;padding-left:7px;float:left}.col-12{width:100% !important}.col-11{width:91.66666666666667% !important}.col-11-9{width:99.16666666666667% !important}.col-11-8{width:98.33333333333333% !important}.col-11-7{width:97.5% !important}.col-11-6{width:96.66666666666667% !important}.col-11-5{width:95.83333333333333% !important}.col-11-4{width:95% !important}.col-11-3{width:94.16666666666667% !important}.col-11-2{width:93.33333333333333% !important}.col-11-1{width:92.5% !important}.col-10{width:83.33333333333333% !important}.col-10-9{width:90.83333333333333% !important}.col-10-8{width:90% !important}.col-10-7{width:89.16666666666667% !important}.col-10-6{width:88.33333333333333% !important}.col-10-5{width:87.5% !important}.col-10-4{width:86.66666666666667% !important}.col-10-3{width:85.83333333333333% !important}.col-10-2{width:85% !important}.col-10-1{width:84.16666666666667% !important}.col-9{width:75% !important}.col-9-9{width:82.5% !important}.col-9-8{width:81.66666666666667% !important}.col-9-7{width:80.83333333333333% !important}.col-9-6{width:80% !important}.col-9-5{width:79.16666666666667% !important}.col-9-4{width:78.33333333333333% !important}.col-9-3{width:77.5% !important}.col-9-2{width:76.66666666666667% !important}.col-9-1{width:75.83333333333333% !important}.col-8{width:66.666666666666667% !important}.col-8-9{width:74.16666666666667% !important}.col-8-8{width:73.33333333333333% !important}.col-8-7{width:72.5% !important}.col-8-6{width:71.66666666666667% !important}.col-8-5{width:70.83333333333333% !important}.col-8-4{width:70% !important}.col-8-3{width:69.16666666666667% !important}.col-8-2{width:68.33333333333333% !important}.col-8-1{width:67.5% !important}.col-7{width:58.33333333333333% !important}.col-7-9{width:65.83333333333333% !important}.col-7-8{width:65% !important}.col-7-7{width:64.16666666666667% !important}.col-7-6{width:63.33333333333333% !important}.col-7-5{width:62.5% !important}.col-7-4{width:61.66666666666667% !important}.col-7-3{width:60.83333333333333% !important}.col-7-2{width:60% !important}.col-7-1{width:59.16666666666667% !important}.col-6{width:50% !important}.col-6-9{width:57.5% !important}.col-6-8{width:56.66666666666667% !important}.col-6-7{width:55.83333333333333% !important}.col-6-6{width:55% !important}.col-6-5{width:54.16666666666667% !important}.col-6-4{width:53.33333333333333% !important}.col-6-3{width:52.5% !important}.col-6-2{width:51.66666666666667% !important}.col-6-1{width:50.83333333333333% !important}.col-5{width:41.66666666666667% !important}.col-5-9{width:49.16666666666667% !important}.col-5-8{width:48.33333333333333% !important}.col-5-7{width:47.5% !important}.col-5-6{width:46.66666666666667% !important}.col-5-5{width:45.83333333333333% !important}.col-5-4{width:45% !important}.col-5-3{width:44.16666666666667% !important}.col-5-2{width:43.33333333333333% !important}.col-5-1{width:42.5% !important}.col-4{width:33.33333333333333% !important}.col-4-9{width:40.83333333333333% !important}.col-4-8{width:40% !important}.col-4-7{width:39.16666666666667% !important}.col-4-6{width:38.33333333333333% !important}.col-4-5{width:37.5% !important}.col-4-4{width:36.66666666666667% !important}.col-4-3{width:35.83333333333333% !important}.col-4-2{width:35% !important}.col-4-1{width:34.16666666666667% !important}.col-3{width:25% !important}.col-3-9{width:32.5% !important}.col-3-8{width:31.66666666666667% !important}.col-3-7{width:30.83333333333333% !important}.col-3-6{width:30% !important}.col-3-5{width:29.16666666666667% !important}.col-3-4{width:28.33333333333333% !important}.col-3-3{width:27.5% !important}.col-3-2{width:26.66666666666667% !important}.col-3-1{width:25.83333333333333% !important}.col-2{width:16.66666666666667% !important}.col-2-9{width:24.16666666666667% !important}.col-2-8{width:23.33333333333333% !important}.col-2-7{width:22.5% !important}.col-2-6{width:21.66666666666667% !important}.col-2-5{width:20.83333333333333% !important}.col-2-4{width:20% !important}.col-2-3{width:19.16666666666667% !important}.col-2-2{width:18.33333333333333% !important}.col-2-1{width:17.5% !important}.col-1{width:8.33333333333333% !important}.col-1-9{width:15.83333333333333% !important}.col-1-8{width:15% !important}.col-1-7{width:14.16666666666667% !important}.col-1-6{width:13.33333333333333% !important}.col-1-5{width:12.5% !important}.col-1-4{width:11.66666666666667% !important}.col-1-3{width:10.83333333333333% !important}.col-1-2{width:10% !important}.col-1-1{width:9.16666666666667% !important}.col-0-9{width:7.5% !important}.col-0-8{width:6.66666666666667% !important}.col-0-7{width:5.83333333333333% !important}.col-0-6{width:5% !important}.col-0-5{width:4.16666666666667% !important}.col-0-4{width:3.33333333333333% !important}.col-0-3{width:2.5% !important}.col-0-2{width:1.66666666666667% !important}.col-0-1{width:0.83333333333333% !important}@media (min-width: 887px){.col-ml-9{width:75%}.col-ml-3{width:25%}}.b-0{border:0 !important}.b-1{border-width:.25rem !important}.b-2{border-width:.5rem !important}.b-3{border-width:1rem !important}.b-4{border-width:1.5rem !important}.b-5{border-width:3rem !important}.bt-0{border-top-width:0 !important}.bt-1{border-top-width:.25rem !important}.bt-2{border-top-width:.5rem !important}.bt-3{border-top-width:1rem !important}.bt-4{border-top-width:1.5rem !important}.bt-5{border-top-width:3rem !important}.br-0{border-right-width:0 !important}.br-1{border-right-width:.25rem !important}.br-2{border-right-width:.5rem !important}.br-3{border-right-width:1rem !important}.br-4{border-right-width:1.5rem !important}.br-5{border-right-width:3rem !important}.bb-0{border-bottom-width:0 !important}.bb-1{border-bottom-width:.25rem !important}.bb-2{border-bottom-width:.5rem !important}.bb-3{border-bottom-width:1rem !important}.bb-4{border-bottom-width:1.5rem !important}.bb-5{border-bottom-width:3rem !important}.bl-0{border-left-width:0 !important}.bl-1{border-left-width:.25rem !important}.bl-2{border-left-width:.5rem !important}.bl-3{border-left-width:1rem !important}.bl-4{border-left-width:1.5rem !important}.bl-5{border-left-width:3rem !important}.by-0{border-top-width:0 !important;border-bottom-width:0 !important}.by-1{border-top-width:.25rem !important;border-bottom-width:.25rem !important}.by-2{border-top-width:.5rem !important;border-bottom-width:.5rem !important}.by-3{border-top-width:1rem !important;border-bottom-width:1rem !important}.by-4{border-top-width:1.5rem !important;border-bottom-width:1.5rem !important}.by-5{border-top-width:3rem !important;border-bottom-width:3rem !important}.bx-0{border-right-width:0 !important;border-left-width:0 !important}.bx-1{border-right-width:.25rem !important;border-left-width:.25rem !important}.bx-2{border-right-width:.5rem !important;border-left-width:.5rem !important}.bx-3{border-right-width:1rem !important;border-left-width:1rem !important}.bx-4{border-right-width:1.5rem !important;border-left-width:1.5rem !important}.bx-5{border-right-width:3rem !important;border-left-width:3rem !important}.hr-0{margin-top:0 !important;margin-bottom:0 !important;width:100%}.hr-1{margin-top:.25rem !important;margin-bottom:.25rem !important;width:100%}.hr-2{margin-top:.5rem !important;margin-bottom:.5rem !important;width:100%}.hr-3{margin-top:1rem;margin-bottom:1rem;width:100%}.hr-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important;width:100%}.hr-5{margin-top:3rem !important;margin-bottom:3rem !important;width:100%}.m-auto{margin:auto !important}.m-0{margin:0 !important}.m-1{margin:.25rem !important}.m-2{margin:.5rem !important}.m-3{margin:1rem !important}.m-4{margin:1.5rem !important}.m-5{margin:3rem !important}.mt-auto{margin-top:auto !important}.mt-0{margin-top:0 !important}.mt-1{margin-top:.25rem !important}.mt-2{margin-top:.5rem !important}.mt-3{margin-top:1rem !important}.mt-4{margin-top:1.5rem !important}.mt-5{margin-top:3rem !important}.mr-auto{margin-right:auto !important}.mr-0{margin-right:0 !important}.mr-1{margin-right:.25rem !important}.mr-2{margin-right:.5rem !important}.mr-3{margin-right:1rem !important}.mr-4{margin-right:1.5rem !important}.mr-5{margin-right:3rem !important}.mb-auto{margin-bottom:auto !important}.mb-0{margin-bottom:0 !important}.mb-1{margin-bottom:.25rem !important}.mb-2{margin-bottom:.5rem !important}.mb-3{margin-bottom:1rem !important}.mb-4{margin-bottom:1.5rem !important}.mb-5{margin-bottom:3rem !important}.ml-auto{margin-left:auto !important}.ml-0{margin-left:0 !important}.ml-1{margin-left:.25rem !important}.ml-2{margin-left:.5rem !important}.ml-3{margin-left:1rem !important}.ml-4{margin-left:1.5rem !important}.ml-5{margin-left:3rem !important}.my-auto{margin-top:auto !important;margin-bottom:auto !important}.my-0{margin-top:0 !important;margin-bottom:0 !important}.my-1{margin-top:.25rem !important;margin-bottom:.25rem !important}.my-2{margin-top:.5rem !important;margin-bottom:.5rem !important}.my-3{margin-top:1rem !important;margin-bottom:1rem !important}.my-4{margin-top:1.5rem !important;margin-bottom:1.5rem !important}.my-5{margin-top:3rem !important;margin-bottom:3rem !important}.mx-auto{margin-right:auto !important;margin-left:auto !important}.mx-0{margin-right:0 !important;margin-left:0 !important}.mx-1{margin-right:.25rem !important;margin-left:.25rem !important}.mx-2{margin-right:.5rem !important;margin-left:.5rem !important}.mx-3{margin-right:1rem !important;margin-left:1rem !important}.mx-4{margin-right:1.5rem !important;margin-left:1.5rem !important}.mx-5{margin-right:3rem !important;margin-left:3rem !important}.p-0{padding:0 !important}.p-1{padding:.25rem !important}.p-2{padding:.5rem !important}.p-3{padding:1rem !important}.p-4{padding:1.5rem !important}.p-5{padding:3rem !important}.pt-0{padding-top:0 !important}.pt-1{padding-top:.25rem !important}.pt-2{padding-top:.5rem !important}.pt-3{padding-top:1rem !important}.pt-4{padding-top:1.5rem !important}.pt-5{padding-top:3rem !important}.pr-0{padding-right:0 !important}.pr-1{padding-right:.25rem !important}.pr-2{padding-right:.5rem !important}.pr-3{padding-right:1rem !important}.pr-4{padding-right:1.5rem !important}.pr-5{padding-right:3rem !important}.pb-0{padding-bottom:0 !important}.pb-1{padding-bottom:.25rem !important}.pb-2{padding-bottom:.5rem !important}.pb-3{padding-bottom:1rem !important}.pb-4{padding-bottom:1.5rem !important}.pb-5{padding-bottom:3rem !important}.pl-0{padding-left:0 !important}.pl-1{padding-left:.25rem !important}.pl-2{padding-left:.5rem !important}.pl-3{padding-left:1rem !important}.pl-4{padding-left:1.5rem !important}.pl-5{padding-left:3rem !important}.py-0{padding-top:0 !important;padding-bottom:0 !important}.py-1{padding-top:.25rem !important;padding-bottom:.25rem !important}.py-2{padding-top:.5rem !important;padding-bottom:.5rem !important}.py-3{padding-top:1rem !important;padding-bottom:1rem !important}.py-4{padding-top:1.5rem !important;padding-bottom:1.5rem !important}.py-5{padding-top:3rem !important;padding-bottom:3rem !important}.px-0{padding-right:0 !important;padding-left:0 !important}.px-1{padding-right:.25rem !important;padding-left:.25rem !important}.px-2{padding-right:.5rem !important;padding-left:.5rem !important}.px-3{padding-right:1rem !important;padding-left:1rem !important}.px-4{padding-right:1.5rem !important;padding-left:1.5rem !important}.px-5{padding-right:3rem !important;padding-left:3rem !important}.py-1px{padding-top:1px !important;padding-bottom:1px !important}.dropdown-menu>li>a.dropdown-ext-link{display:flex;justify-content:space-between}.dropdown-menu>li>a.dropdown-ext-link:hover{padding-right:10px}.dropdown-menu>li>span{cursor:pointer;display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.42857143;color:#333;white-space:nowrap}.dropdown-menu>li>span:focus,.dropdown-menu>li>span:hover{color:#262626;text-decoration:none;background-color:whitesmoke}.dropdown-menu>.disabled>span{pointer-events:none;color:#777}.dropdown-menu>.disabled>span:focus,.dropdown-menu>.disabled>span:hover{color:#777;text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none}.dropdown-menu>.ctx-danger>span{background:#d9534f;color:white}.dropdown-menu>.ctx-danger>span:focus,.dropdown-menu>.ctx-danger>span:hover{color:white;text-decoration:none;background-color:#ac2925}.dropdown-ext-link>.glyphicon{top:3px;display:none}.dropdown-ext-link:hover>.glyphicon{display:inline-block}nav .dropdown-menu>.active>a{background-color:#002664}.caret--right{transform:rotate(270deg)}.caret--reverse{transform:rotate(180deg)}.dnd-font{font-family:'Andada', serif;font-variant:small-caps;font-weight:500}.stripe-even:nth-child(even){background:rgba(136,136,136,0.0941176)}.stripe-even--faint:nth-child(even){background:rgba(187,187,187,0.0941176)}.stripe-odd:nth-child(odd){background:rgba(136,136,136,0.0941176)}.stripe-odd--faint:nth-child(odd){background:rgba(187,187,187,0.0941176)}.border-dotted{border-style:dotted !important}.input-group>input.form-control,.input-group>label,.input-group>button,.input-group>a.btn{border-radius:0;border-right:0}.input-group>input.form-control:first-child,.input-group>label:first-child,.input-group>button:first-child,.input-group>a.btn:first-child{border-top-left-radius:3px;border-bottom-left-radius:3px}.input-group>input.form-control:last-child,.input-group>label:last-child,.input-group>button:last-child,.input-group>a.btn:last-child{border-top-right-radius:3px;border-bottom-right-radius:3px;border-right:1px solid #ccc}.input-group--top input.form-control:first-child,.input-group--top label:first-child,.input-group--top button:first-child,.input-group--top a.btn:first-child{border-bottom-left-radius:0}.input-group--top input.form-control:last-child,.input-group--top label:last-child,.input-group--top button:last-child,.input-group--top a.btn:last-child{border-bottom-right-radius:0}.input-group--middle input.form-control,.input-group--middle label,.input-group--middle button,.input-group--middle a.btn{border-top:0}.input-group--middle input.form-control:first-child,.input-group--middle label:first-child,.input-group--middle button:first-child,.input-group--middle a.btn:first-child{border-radius:0}.input-group--middle input.form-control:last-child,.input-group--middle label:last-child,.input-group--middle button:last-child,.input-group--middle a.btn:last-child{border-radius:0}.input-group--bottom input.form-control,.input-group--bottom label,.input-group--bottom button,.input-group--bottom a.btn{border-top:0}.input-group--bottom input.form-control:first-child,.input-group--bottom label:first-child,.input-group--bottom button:first-child,.input-group--bottom a.btn:first-child{border-top-left-radius:0}.input-group--bottom input.form-control:last-child,.input-group--bottom label:last-child,.input-group--bottom button:last-child,.input-group--bottom a.btn:last-child{border-top-right-radius:0}.night-mode .input-group>input.form-control:last-child,.night-mode .input-group>label:last-child,.night-mode .input-group>button:last-child,.night-mode .input-group>a.btn:last-child{border-right-color:#555}.hidden,.ve-hidden{display:none !important}@media only screen and (min-width: 769px){.mobile__visible{display:none !important}}@media only screen and (max-width: 768px){.mobile__hidden{display:none !important}.mobile__text-center{text-align:center !important}.mobile__flex-col{display:flex !important;flex-direction:column !important}.mobile__flex-col-reverse{display:flex !important;flex-direction:column-reverse !important}.mobile__flex-ai-start{align-items:flex-start !important}.mobile__w-100{width:100% !important}.mobile__max-w-100{max-width:100% !important}.mobile__m-1{margin:.25rem !important}.mobile__mb-2{margin-bottom:.5rem !important}}.last-mr-0:last-child{margin-right:0 !important}.bootstrap-select .dropdown-menu .notify{background-color:#d9534f;color:white;border-color:#d43f3a}.night-mode .bootstrap-select .dropdown-menu .notify{background-color:#7e3a38;color:#bbb;border-color:#d43f3a}.bootstrap-select .dropdown-menu .notify{background-color:#d9534f;color:white;border-color:#d43f3a}.night-mode .bootstrap-select .dropdown-menu .notify{background-color:#7e3a38;color:#bbb;border-color:#d43f3a}@font-face{font-family:'Convergence';font-style:normal;font-weight:400;src:local("Convergence-Regular"),url("../fonts/Convergence-Regular.ttf") format("truetype")}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;src:local("Roboto"),url("../fonts/Roboto-regular.ttf") format("truetype")}@font-face{font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;src:local("glyphicons-halflings-regular"),url("../fonts/glyphicons-halflings-regular.ttf") format("truetype")}@font-face{font-family:'Blambot Casual';src:local("Blambot-Casual"),url("../fonts/Blambot-Casual-Regular.ttf") format("truetype")}@keyframes kf-fade-out{from{opacity:1}to{opacity:0}}.linked-titles .rd__h--0 .entry-title-inner:hover::before{font-size:50%}.linked-titles .rd__h--1 .entry-title-inner:hover::before{font-size:55%}.linked-titles .rd__h--2 .entry-title-inner:hover::before{font-size:60%}.linked-titles .rd__h .entry-title-inner{cursor:copy}.linked-titles .rd__h .entry-title-inner:hover::before{content:' 🔗';color:rgba(0,0,0,0.2);position:relative;float:left;width:14px;height:14px;right:20px;margin-right:-30px;font-size:85%}@-webkit-keyframes rd__spin{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}@keyframes rd__spin{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}.rd__b p{margin-bottom:5px}.rd__b--0,.rd__b--1,.rd__b--2,.rd__b--3,.rd__b--4{margin-bottom:5px}.rd__b--0:last-child,.rd__b--1:last-child,.rd__b--2:last-child,.rd__b--3:last-child,.rd__b--4:last-child{margin-bottom:0}.rd__b--0>*:last-child,.rd__b--1>*:last-child,.rd__b--2>*:last-child,.rd__b--3>*:last-child,.rd__b--4>*:last-child{margin-bottom:0}.rd__hr{border-color:#aaa6;margin:17px 0 5px}.rd__hr--section{margin:30px 0 5px}.rd__list{margin-top:5px;margin-bottom:10px;padding-left:24px;text-indent:0}.rd__list+.rd__list{margin-top:-5px}.rd__list>.rd__list{margin-bottom:0}.rd__li{margin-bottom:5px}.rd__compact-stats{display:flex;flex-wrap:wrap;justify-content:space-between;align-items:flex-start;align-content:flex-start}.rd__title-link{opacity:0.3;font-size:14px;font-weight:normal}.rd__title-link--inset{font-size:12px}.rd__wrp-image{margin:5px auto 0;text-align:center}.rd__image{max-width:100%;max-height:60vh;cursor:zoom-in}.rd__wrp-map{max-width:33%;margin:0 auto}.rd__wrp-gallery{display:flex;flex-wrap:wrap;justify-content:center;align-items:flex-end}.rd__wrp-gallery-image{padding:0 10px 10px;max-width:33%}.rd__quote-line--last{margin-bottom:5px}.rd__quote-by{width:100%;text-align:right;display:block}.rd__p-cont-indent{display:block;text-indent:1em}.rd__tab-indent{width:1em;display:inline-block}.rd__image-title{width:100%;text-align:center;font-style:italic;margin-top:3px}.rd__image-title-inner{border-bottom:1px solid #ccc;display:inline}.rd__image-btn-viewer{font-style:initial}.rd__scroller-viewer{scrollbar-width:auto}.rd__scroller-viewer::-webkit-scrollbar{width:15px;height:15px}.rd__prerequisite{font-style:italic;display:block}.rd__li-spell{margin:0}.rd__list-hang-notitle{text-indent:-1.1em;margin-left:1.1em;padding:0;list-style:none}.rd__list-hang-notitle>.rd__li{margin-bottom:3px}.rd__list-hang-notitle>.rd__li>*{margin:0 0 3px}.rd__list-hang-notitle>.rd__li>ul{text-indent:0}.rd__list-hang{list-style:none}.rd__list-hang>li>*:not(::marker){text-indent:-1.1em;margin-left:1.1em}.rd__list-decimal{list-style:decimal}.rd__list-lower-roman{list-style:lower-roman}.rd__list-no-bullets{list-style:none;padding:0 1em}.rd__list-no-bullets>.rd__li{margin-bottom:0}.rd__list-no-bullets-indent{list-style:none;padding:0 0 0 1em}.rd__list-no-bullets-indent>.rd__li{margin-bottom:0;text-indent:-1em;padding-left:1em}.rd__list-name{margin:0;font-weight:bold}.rd__h--0{color:#822000;font-family:'Andada', serif;font-variant:small-caps;font-weight:500;display:flex;justify-content:space-between;align-items:center;font-size:1.8em}.rd__h--1{color:#822000;font-family:'Andada', serif;font-variant:small-caps;font-weight:500;display:flex;justify-content:space-between;align-items:center;font-size:1.5em;border-bottom:1px solid #822000;margin:0 0 0.2em}.rd__h--2{color:#822000;font-family:'Andada', serif;font-variant:small-caps;font-weight:500;display:flex;justify-content:space-between;align-items:center;font-size:1.4em}.rd__h--2-inset{font-variant:small-caps;font-weight:bolder;font-size:1.1em;display:flex;justify-content:space-between;align-items:center}.rd__h--2-flow-block{display:block;font-variant:small-caps;font-weight:bolder;font-size:1.1em;text-align:center}.rd__h--3{font-weight:bold;font-style:italic}.rd__h--4{font-style:italic}.rd__b--3>p,.rd__b--4>p{text-indent:0.7em;margin-bottom:0}.rd__b--3>p:first-of-type,.rd__b--4>p:first-of-type{display:inline}.rd__b-inset>p{text-indent:0.7em;margin-bottom:0}.rd__b-inset{margin:7px 15px;padding:5px 10px;box-shadow:0 0 4px 0 #988e7c;border:1px solid #656565;border-top:2px solid #656565;border-bottom:2px solid #656565;background-color:#e9ecda}.rd__b-inset>*:last-of-type{margin-bottom:0}.rd__b-inset--readaloud{box-shadow:0 0 4px 0 #988e7c;border:1px solid #656565;border-left:2px solid #656565;border-right:2px solid #656565;background-color:#eef0f3}.rd__b-inset-inner{margin-top:10px}.rd__b-data{box-shadow:0 0 4px 0 #988e7c;background-color:rgba(156,150,120,0.1);margin:0.3em;padding:0.3em;clear:both}.rd__data-embed-header{cursor:pointer;font-family:'Andada', serif;font-variant:small-caps;text-transform:uppercase;font-weight:bold}.rd__data-embed-header:hover{background:rgba(100,100,100,0.08)}.rd__data-embed-toggle{margin-left:0.3em;font-weight:700}.rd__wrp-loadbrew--ready{cursor:pointer;text-decoration:underline}.rd__loadbrew-icon{text-indent:0;margin-left:2px;transition-property:transform;transition-duration:1s}.rd__loadbrew-icon--active{-webkit-animation-name:rd__spin;animation-name:rd__spin;-webkit-animation-duration:1.2s;animation-duration:1.2s;-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite;-webkit-animation-timing-function:linear;animation-timing-function:linear}.rd__comic{font-family:'Blambot Casual', sans-serif;color:#1942be}.rd__comic--h1{font-size:140%;font-variant:small-caps}.rd__comic--h2{font-size:130%}.rd__comic--h3{font-size:120%}.rd__comic--h4{font-size:110%}.rd__comic--note{opacity:0.7}.rd__comic-img-speaker{margin-top:-20px;margin-bottom:-20px}.rd__comic-img-speaker--left{float:left;margin-right:0;margin-left:-20px}.rd__comic-img-speaker--right{float:right;margin-right:-20px;margin-left:0}.rd__comic-img-speaker::after{content:'';clear:both;display:block}.rd__img-small{max-width:25vw;max-height:25vh}.rd__img-cover{max-width:100%;max-height:100vh}.rd__s-v-flow{height:15px;width:0;border-left:1px solid #656565;border-right:1px solid #656565;margin:0 auto}.rd__b-flow{margin:0 15px;padding:5px 10px;box-shadow:0 0 4px 0 #988e7c;border:1px solid #656565;border-top:2px solid #656565;border-bottom:2px solid #656565;background-color:#ece4da}.rd__b-flow>*:last-of-type{margin-bottom:0}.rd__stats-name-page{font-family:'Convergence', Arial, sans-serif;font-size:12px;color:#333;font-weight:100}.rd__pre-wrap{white-space:pre-wrap}.rd__highlight{background-color:#ff0}.rd-item__type-rarity-attunement{font-style:italic;color:black}.rd-spell__level-school-ritual{font-style:italic;color:black}td>.rd__b:last-child{margin-bottom:0}.subclass-feature .rd__h--0,.subclass-feature .rd__h--1,.subclass-feature .rd__h--2{color:#337ab7;border-bottom-color:#337ab7}.spicy-sauce .rd__h--0,.spicy-sauce .rd__h--1,.spicy-sauce .rd__h--2{color:#1d965d;border-bottom-color:#1d965d}.spicy-sauce:not(.subclass-feature):not(.subclass-feature--sub) .rd__h--0,.spicy-sauce:not(.subclass-feature):not(.subclass-feature--sub) .rd__h--1,.spicy-sauce:not(.subclass-feature):not(.subclass-feature--sub) .rd__h--2{color:#827e00;border-bottom-color:#827e00}.refreshing-brew .rd__h--0,.refreshing-brew .rd__h--1,.refreshing-brew .rd__h--2{color:#8c3b96;border-bottom-color:#8c3b96}@font-face{font-family:'Convergence';font-style:normal;font-weight:400;src:local("Convergence-Regular"),url("../fonts/Convergence-Regular.ttf") format("truetype")}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;src:local("Roboto"),url("../fonts/Roboto-regular.ttf") format("truetype")}@font-face{font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;src:local("glyphicons-halflings-regular"),url("../fonts/glyphicons-halflings-regular.ttf") format("truetype")}@font-face{font-family:'Blambot Casual';src:local("Blambot-Casual"),url("../fonts/Blambot-Casual-Regular.ttf") format("truetype")}@keyframes kf-fade-out{from{opacity:1}to{opacity:0}}.linked-titles .rd__h--0 .entry-title-inner:hover::before{font-size:50%}.linked-titles .rd__h--1 .entry-title-inner:hover::before{font-size:55%}.linked-titles .rd__h--2 .entry-title-inner:hover::before{font-size:60%}.linked-titles .rd__h .entry-title-inner{cursor:copy}.linked-titles .rd__h .entry-title-inner:hover::before{content:' 🔗';color:rgba(0,0,0,0.2);position:relative;float:left;width:14px;height:14px;right:20px;margin-right:-30px;font-size:85%}.night-mode .rd__h--0,.night-mode .rd__h--1,.night-mode .rd__h--2{color:#d29a38}.night-mode .rd__h--1{border-bottom-color:#d29a38}.night-mode .rd__h--4{color:#c2c2c2}.night-mode .rd__h--3{color:#c2c2c2}.night-mode .rd__-image-title-inner{border-color:#555}.night-mode .rd__b-inset{background-color:#323431}.night-mode .rd__b-inset--readaloud{background-color:#28303a}.night-mode .rd__b-flow{background-color:#38352f}.night-mode .rd__comic{color:#95aaea}.night-mode .rd__stats-name-page{color:#bbb}.night-mode .rd__highlight{background-color:#cc0;color:#222}.night-mode .rd-item__type-rarity-attunement{color:#bbb}.night-mode .rd-spell__level-school-ritual{color:#bbb}.subclass-feature .rd__h--0,.subclass-feature .rd__h--1,.subclass-feature .rd__h--2{color:#337ab7;border-bottom-color:#337ab7}.spicy-sauce .rd__h--0,.spicy-sauce .rd__h--1,.spicy-sauce .rd__h--2{color:#179e50;border-bottom-color:#179e50}.spicy-sauce:not(.subclass-feature):not(.subclass-feature--sub) .rd__h--0,.spicy-sauce:not(.subclass-feature):not(.subclass-feature--sub) .rd__h--1,.spicy-sauce:not(.subclass-feature):not(.subclass-feature--sub) .rd__h--2{color:#a2ce42;border-bottom-color:#a2ce42}.refreshing-brew .rd__h--0,.refreshing-brew .rd__h--1,.refreshing-brew .rd__h--2{color:#aa40b4;border-bottom-color:#aa40b4}@font-face{font-family:'Convergence';font-style:normal;font-weight:400;src:local("Convergence-Regular"),url("../fonts/Convergence-Regular.ttf") format("truetype")}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;src:local("Roboto"),url("../fonts/Roboto-regular.ttf") format("truetype")}@font-face{font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;src:local("glyphicons-halflings-regular"),url("../fonts/glyphicons-halflings-regular.ttf") format("truetype")}@font-face{font-family:'Blambot Casual';src:local("Blambot-Casual"),url("../fonts/Blambot-Casual-Regular.ttf") format("truetype")}@keyframes kf-fade-out{from{opacity:1}to{opacity:0}}.linked-titles .rd__h--0 .entry-title-inner:hover::before{font-size:50%}.linked-titles .rd__h--1 .entry-title-inner:hover::before{font-size:55%}.linked-titles .rd__h--2 .entry-title-inner:hover::before{font-size:60%}.linked-titles .rd__h .entry-title-inner{cursor:copy}.linked-titles .rd__h .entry-title-inner:hover::before{content:' 🔗';color:rgba(0,0,0,0.2);position:relative;float:left;width:14px;height:14px;right:20px;margin-right:-30px;font-size:85%}.nav .dropdown-menu--top{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}@media (max-width: 768px){.nav>li>a{border:1px solid #ccc}.night-mode .nav>li>a{border-color:#555}.nav .caret--right{transform:none}.nav .dropdown-menu--side{top:100%;left:0}}.night-mode .nav>li:not(.active)>a{color:#bbb;background-color:#222;border:1px solid rgba(85,85,85,0.627451);border-top:0}.night-mode .nav>li:not(.active)>a:focus,.night-mode .nav>li:not(.active)>a:hover{background-color:#272727;color:white}.night-mode .nav>li.active>a:focus,.night-mode .nav>li.active>a:hover{color:white}.night-mode .nav li.open>a,.night-mode .nav li.open>a:focus,.night-mode .nav li.open>a:hover{background-color:#272727;border-left:1px solid #337ab7;border-right:1px solid #337ab7;border-color:#337ab7}.night-mode .nav li.active.open>a,.night-mode .nav li.active.open>a:focus,.night-mode .nav li.active.open>a:hover{background-color:#333}.nav2-list__label{padding:0 20px}.nav2-list__disp-source{display:inline-block;height:15px;border-left:1px solid;position:relative;border-right:1px solid;top:2px;margin-right:7px;margin-left:4px}.nav2-accord__head{padding:3px 7px 3px 20px}.nav2-accord__head:focus,.nav2-accord__head:hover{background-color:#f5f5f5}.nav2-accord__head--active{background:#337ab7;color:white}.nav2-accord__head--active:focus,.nav2-accord__head--active:hover{background:#7398b7}.nav2-accord__body{padding:3px 0 3px 35px;display:flex;flex-direction:column}.nav2-accord__lnk-item{padding:3px 20px;color:#333}.nav2-accord__lnk-item:focus,.nav2-accord__lnk-item:hover{background-color:#f5f5f5;text-decoration:none}.nav2-accord__lnk-item--active{background:#337ab7;color:white}.nav2-accord__lnk-item--active:focus,.nav2-accord__lnk-item--active:hover{background:#7398b7;color:white}.night-mode .nav2-accord__head:focus,.night-mode .nav2-accord__head:hover{background-color:#383838;color:white}.night-mode .nav2-accord__head--active{color:white}.night-mode .nav2-accord__head--active:focus,.night-mode .nav2-accord__head--active:hover{background:#7398b7}.night-mode .nav2-accord__lnk-item{color:#bbb}.night-mode .nav2-accord__lnk-item:focus,.night-mode .nav2-accord__lnk-item:hover{background-color:#383838;color:white}.night-mode .nav2-accord__lnk-item--active{color:white}.night-mode .nav2-accord__lnk-item--active:focus,.night-mode .nav2-accord__lnk-item--active:hover{background:#7398b7}@font-face{font-family:'Convergence';font-style:normal;font-weight:400;src:local("Convergence-Regular"),url("../fonts/Convergence-Regular.ttf") format("truetype")}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;src:local("Roboto"),url("../fonts/Roboto-regular.ttf") format("truetype")}@font-face{font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;src:local("glyphicons-halflings-regular"),url("../fonts/glyphicons-halflings-regular.ttf") format("truetype")}@font-face{font-family:'Blambot Casual';src:local("Blambot-Casual"),url("../fonts/Blambot-Casual-Regular.ttf") format("truetype")}@keyframes kf-fade-out{from{opacity:1}to{opacity:0}}.linked-titles .rd__h--0 .entry-title-inner:hover::before{font-size:50%}.linked-titles .rd__h--1 .entry-title-inner:hover::before{font-size:55%}.linked-titles .rd__h--2 .entry-title-inner:hover::before{font-size:60%}.linked-titles .rd__h .entry-title-inner{cursor:copy}.linked-titles .rd__h .entry-title-inner:hover::before{content:' 🔗';color:rgba(0,0,0,0.2);position:relative;float:left;width:14px;height:14px;right:20px;margin-right:-30px;font-size:85%}@-webkit-keyframes kf-fade-in{from{opacity:0}to{opacity:1}}@keyframes kf-fade-in{from{opacity:0}to{opacity:1}}@-webkit-keyframes kf-pop-in{from{transform:scale(0)}to{transform:scale(1)}}@keyframes kf-pop-in{from{transform:scale(0)}to{transform:scale(1)}}.hwin{position:fixed;width:600px;max-width:92vw;min-width:150px;z-index:200;box-shadow:0 0 12px 0 black;-webkit-animation-name:kf-fade-in, kf-pop-in;animation-name:kf-fade-in, kf-pop-in;-webkit-animation-duration:150ms, 75ms;animation-duration:150ms, 75ms;display:flex;flex-direction:column}.hwin--minified .hoverborder__resize-n,.hwin--minified .hoverborder__resize-ne,.hwin--minified .hoverborder__resize-e,.hwin--minified .hoverborder__resize-se,.hwin--minified .hoverborder__resize-s,.hwin--minified .hoverborder__resize-sw,.hwin--minified .hoverborder__resize-w,.hwin--minified .hoverborder__resize-nw{display:none}.hwin--popout{box-shadow:initial;width:100%;-webkit-animation-duration:initial;animation-duration:initial;overflow-y:scroll;height:100%;max-width:initial;max-height:initial}@media (max-width: 1023px){.hwin{max-width:95vw}}.hwin::-webkit-scrollbar-track{background:#a0a0a0}.hwin::-webkit-scrollbar{width:4px}.hwin__wrp-table{max-height:92vh;min-height:20px;overflow-y:auto;background:#f6f4f2;transform:translateZ(0);line-height:1em}.hwin__wrp-table .stats{padding:0.3em}.hwin .rnd-name{font-size:22.4px}.hwin td div.border{height:2px;background-color:#822000;margin:0 3px;padding:0;border-right:5px transparent}.hoverborder{position:relative;min-height:3px;max-height:16px;text-align:right}.hoverborder--btm{cursor:ns-resize}.hoverborder--top{cursor:move;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:flex;justify-content:space-between}.hoverborder .hwin__top-border-icon{display:none}.hoverborder[data-perm=true] .hwin__top-border-icon{display:block}.hoverborder .glyphicon{display:none}.hoverborder[data-perm=true] .glyphicon{display:block}.hoverborder .window-title{overflow:hidden;max-width:calc(100% - 45px);text-align:left;margin-left:4px;padding:1px 0;font-size:12px;display:none;font-family:'Andada', serif;font-variant:small-caps;text-transform:uppercase;font-weight:bold;flex-shrink:0}.hoverborder[data-perm=true] .window-title{display:block}.hoverborder__resize-n{position:absolute;top:-4px;right:4px;left:4px;height:4px;cursor:ns-resize}.hoverborder__resize-ne{position:absolute;top:-6px;right:-6px;height:10px;width:10px;cursor:ne-resize}.hoverborder__resize-e{position:absolute;top:4px;right:-4px;bottom:4px;width:4px;cursor:ew-resize}.hoverborder__resize-se{position:absolute;right:-6px;bottom:-6px;height:10px;width:10px;cursor:se-resize}.hoverborder__resize-s{position:absolute;top:3px;right:4px;left:4px;height:2px}.hoverborder__resize-sw{position:absolute;bottom:-6px;left:-6px;height:10px;width:10px;cursor:sw-resize}.hoverborder__resize-w{position:absolute;top:4px;bottom:4px;left:-4px;width:4px;cursor:ew-resize}.hoverborder__resize-nw{position:absolute;top:-6px;left:-6px;height:10px;width:10px;cursor:nw-resize}.hoverborder[data-display-title=true] ~ .hwin__wrp-table,.hoverborder[data-display-title=true] ~ .hoverborder{display:none}@font-face{font-family:'Convergence';font-style:normal;font-weight:400;src:local("Convergence-Regular"),url("../fonts/Convergence-Regular.ttf") format("truetype")}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;src:local("Roboto"),url("../fonts/Roboto-regular.ttf") format("truetype")}@font-face{font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;src:local("glyphicons-halflings-regular"),url("../fonts/glyphicons-halflings-regular.ttf") format("truetype")}@font-face{font-family:'Blambot Casual';src:local("Blambot-Casual"),url("../fonts/Blambot-Casual-Regular.ttf") format("truetype")}@keyframes kf-fade-out{from{opacity:1}to{opacity:0}}.linked-titles .rd__h--0 .entry-title-inner:hover::before{font-size:50%}.linked-titles .rd__h--1 .entry-title-inner:hover::before{font-size:55%}.linked-titles .rd__h--2 .entry-title-inner:hover::before{font-size:60%}.linked-titles .rd__h .entry-title-inner{cursor:copy}.linked-titles .rd__h .entry-title-inner:hover::before{content:' 🔗';color:rgba(0,0,0,0.2);position:relative;float:left;width:14px;height:14px;right:20px;margin-right:-30px;font-size:85%}.sourceAAWS{color:#365fac !important;border-color:#365fac !important;-webkit-text-decoration-color:#365fac !important;text-decoration-color:#365fac !important}.sourceAPG{color:#4a6898 !important;border-color:#4a6898 !important;-webkit-text-decoration-color:#4a6898 !important;text-decoration-color:#4a6898 !important}.sourceGMG{color:purple !important;border-color:purple !important;-webkit-text-decoration-color:purple !important;text-decoration-color:purple !important}.sourceBst{color:#008900 !important;border-color:#008900 !important;-webkit-text-decoration-color:#008900 !important;text-decoration-color:#008900 !important}.sourceBst2{color:#006b00 !important;border-color:#006b00 !important;-webkit-text-decoration-color:#006b00 !important;text-decoration-color:#006b00 !important}.sourceBst3{color:#004d00 !important;border-color:#004d00 !important;-webkit-text-decoration-color:#004d00 !important;text-decoration-color:#004d00 !important}.sourceLOME{color:#9b7c27 !important;border-color:#9b7c27 !important;-webkit-text-decoration-color:#9b7c27 !important;text-decoration-color:#9b7c27 !important}.sourceLOGM,.sourceLOCG,.sourceLOWG,.sourceLOL,.sourceLOPSG,.sourceLOAG{color:#69af9a !important;border-color:#69af9a !important;-webkit-text-decoration-color:#69af9a !important;text-decoration-color:#69af9a !important}.sourceLOTGB{color:#ac408b !important;border-color:#ac408b !important;-webkit-text-decoration-color:#ac408b !important;text-decoration-color:#ac408b !important}.sourceHomebrew{color:#8c3b96 !important;border-color:#8c3b96 !important;-webkit-text-decoration-color:#8c3b96 !important;text-decoration-color:#8c3b96 !important}.sourceSpicy{color:#1d965d !important;border-color:#1d965d !important;-webkit-text-decoration-color:#1d965d !important;text-decoration-color:#1d965d !important}.sourceCRB{color:#a2201f !important;border-color:#a2201f !important;-webkit-text-decoration-color:#a2201f !important;text-decoration-color:#a2201f !important}.sourceSoM{color:#a24d08 !important;border-color:#a24d08 !important;-webkit-text-decoration-color:#a24d08 !important;text-decoration-color:#a24d08 !important}.sourceG_G{color:#754f2f !important;border-color:#754f2f !important;-webkit-text-decoration-color:#754f2f !important;text-decoration-color:#754f2f !important}.sp__school-A{color:#00b921}.sp__school-V{color:#bb0100}.sp__school-E{color:#b30083}.sp__school-I{color:#006dbd}.sp__school-D{color:#00adb3}.sp__school-N{color:#6c00cc}.sp__school-T{color:#ccbe00}.sp__school-C{color:#bd0044}@font-face{font-family:'Convergence';font-style:normal;font-weight:400;src:local("Convergence-Regular"),url("../fonts/Convergence-Regular.ttf") format("truetype")}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;src:local("Roboto"),url("../fonts/Roboto-regular.ttf") format("truetype")}@font-face{font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;src:local("glyphicons-halflings-regular"),url("../fonts/glyphicons-halflings-regular.ttf") format("truetype")}@font-face{font-family:'Blambot Casual';src:local("Blambot-Casual"),url("../fonts/Blambot-Casual-Regular.ttf") format("truetype")}@keyframes kf-fade-out{from{opacity:1}to{opacity:0}}.linked-titles .rd__h--0 .entry-title-inner:hover::before{font-size:50%}.linked-titles .rd__h--1 .entry-title-inner:hover::before{font-size:55%}.linked-titles .rd__h--2 .entry-title-inner:hover::before{font-size:60%}.linked-titles .rd__h .entry-title-inner{cursor:copy}.linked-titles .rd__h .entry-title-inner:hover::before{content:' 🔗';color:rgba(0,0,0,0.2);position:relative;float:left;width:14px;height:14px;right:20px;margin-right:-30px;font-size:85%}.page__header{padding:0 15px 1px;box-shadow:0 1px 4px rgba(0,0,0,0.475);color:white;background-color:#002664;min-height:0;flex-shrink:0}.page__title{margin-right:10px;display:inline}.page__title::after{color:#e0e0e0;content:'.'}.page__title--home span{color:#e0e0e0}.page__subtitle{display:inline;font-style:italic;color:#d0d0d0}.page__btn-toggle-nav{margin-top:5px;text-align:center;width:6em;flex-shrink:0;height:32px;line-height:1;margin-right:2px}@media (min-width: 769px){.page__btn-toggle-nav{display:none}}.page__nav{position:relative;min-height:33px;flex-shrink:0}@media (max-width: 768px){.page__nav{width:100%;display:flex}}@media (max-width: 768px){.page__nav-inner{display:flex;margin-top:3px;flex-direction:column;width:calc(100% - 6em);flex-shrink:0}}.page__nav-date{margin-left:-16px;width:27px}.page__wrp-download{box-shadow:0 6px 12px rgba(0,0,0,0.175);position:fixed;z-index:2000;top:5px;min-height:40px;min-width:100px;max-width:850px;display:flex;width:90vw;right:0;left:0;margin:0 auto;padding:5px;justify-content:space-between;align-items:center;border:1px solid transparent;border-radius:4px;background:white}.page__wrp-download-bar{border:1px solid #2a6496;height:34px;border-radius:4px}.page__wrp-download-bar--error{border-color:#711617}.page__disp-download-progress-bar{position:absolute;top:0;bottom:0;left:0;background:#337ab7}.page__disp-download-progress-bar--error{background:#8a1a1b}.page__disp-download-progress-text{position:absolute;top:0;right:calc(50% - 30px);bottom:0;left:calc(50% - 30px);width:90px;text-shadow:1px 1px 0 white, -1px -1px 0 white, 1px -1px 0 white, -1px 1px 0 white, 3px 3px 5px black}.night-mode .page__wrp-download{background:#222}.night-mode .page__disp-download-progress-text{color:#333}@media (max-width: 768px){#navigation .page__nav-hidden-mobile{display:none;margin-left:0}}.nav .dropdown-menu--top{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}@media (max-width: 768px){.nav>li>a{border:1px solid #ccc}.night-mode .nav>li>a{border-color:#555}.nav .caret--right{transform:none}.nav .dropdown-menu--side{top:100%;left:0}}#legal-notice{box-shadow:0 6px 12px rgba(0,0,0,0.175);position:fixed;z-index:10000;bottom:0;width:100vw;height:10em;display:flex;flex-direction:column;align-items:center;justify-content:space-evenly;font-weight:bold;padding:3rem;border:1px solid rgba(0,0,0,0.15);background:#f8f8f8}.viewport-wrapper{position:absolute;top:0;right:0;bottom:0;left:0;display:flex;flex-flow:column nowrap;overflow:auto;height:100vh;width:100%}@media (max-width: 991px){.viewport-wrapper{bottom:auto;height:initial;min-height:100vh}}.view-col-group{display:flex;flex-direction:column;position:relative;overflow-y:auto}.view-col-wrapper{display:flex;flex-direction:row;max-height:100%;height:100%;min-height:0}@media (max-width: 991px){.view-col-wrapper{flex-direction:column;max-height:none;height:initial;display:block}}.sidemenu{box-shadow:0 6px 12px rgba(0,0,0,0.175);background:white;border:1px solid #ccc;position:fixed;z-index:60;top:0;bottom:0;left:-260px;width:250px;transition:left 51ms;cursor:default;display:flex;flex-direction:column;padding:4px 7px;overflow-y:auto}.sidemenu>*{flex-shrink:0}.sidemenu__toggle{box-shadow:0 6px 12px rgba(0,0,0,0.175);background:lightgrey;position:absolute;z-index:60;top:46px;left:-7px;width:32px;height:32px;cursor:pointer;transition:left 51ms;display:flex;flex-direction:column;justify-content:space-around;padding:3px 4px}.sidemenu__hotzone{position:fixed;top:0;bottom:0;left:0;width:1px}.sidemenu__burger{background:white;height:3px;box-shadow:inset 0 0 1px 0 #888}.sidemenu__toggle:hover .sidemenu{left:0;transition:left 51ms}.sidemenu__toggle:hover .sidemenu--offset{left:-12px}.sidemenu__row{width:100%;margin-bottom:5px}.sidemenu__row--vert{display:flex;flex-direction:column;justify-content:space-around;align-items:center}.sidemenu__row__divider{background:rgba(204,204,204,0.627451);height:1px;width:calc(100% - 16px);margin:2px 8px 7px}.sidemenu__row__divider--heavy{background:#aaa;width:calc(100% + 6px);margin:2px -3px 7px}.sidemenu__row__label{min-width:46px;flex-shrink:0}.sidemenu__row__label--cb-label{font-weight:initial;display:flex;margin-bottom:0;justify-content:space-between;align-items:center;width:100%}input[type=checkbox].sidemenu__row__label__cb{margin-right:3px;margin-left:7px}.night-mode .sidemenu{border-color:#555}.omni__wrp-output{width:100%;justify-content:flex-end;display:none}.omni__output{box-shadow:0 6px 12px rgba(0,0,0,0.175);position:absolute;z-index:100;padding:0.2em 0.7em;border-radius:0.2em;border:1px solid rgba(0,0,0,0.15);background:white}.omni__output--scrolled{position:fixed;top:42px;right:10px}@media only screen and (min-width: 320px){.omni__output{max-width:300px;min-width:270px}}@media only screen and (min-width: 481px){.omni__output{max-width:460px;min-width:430px}}@media only screen and (min-width: 769px){.omni__output{max-width:740px;min-width:500px}}@media only screen and (max-width: 768px){.omni__output{top:40px}}@media only screen and (max-width: 768px){.omni__wrp-input{margin-top:2px;margin-left:0}}.omni__wrp-input--scrolled{position:fixed;z-index:100;top:5px;right:10px;width:85px;padding:2px 0;border-left:40px solid transparent}.omni__wrp-input--scrolled .omni__input{min-width:initial;border-top-left-radius:4px;border-top-color:#ccc}.omni__wrp-input--scrolled .omni__submit{border-top-right-radius:4px;border-top-color:#ccc}.omni__wrp-input--scrolled input{padding:0;color:transparent}.omni__wrp-input--scrolled:focus,.omni__wrp-input--scrolled:focus-within,.omni__wrp-input--scrolled:active,.omni__wrp-input--scrolled:hover{width:250px;border-left:0}.omni__wrp-input--scrolled:focus input,.omni__wrp-input--scrolled:focus-within input,.omni__wrp-input--scrolled:active input,.omni__wrp-input--scrolled:hover input{padding:6px 12px;color:inherit}.omni__input{height:32px;min-width:100px}@media (min-width: 992px){.omni__input{border-top-left-radius:0;border-top-color:transparent}}.omni__submit{height:32px;padding:3px 7px}@media (min-width: 992px){.omni__submit{border-top-right-radius:0;border-top-color:transparent}}.omni__wrp-paginate{display:flex;justify-content:space-between}.omni__wrp-paginate>span{display:inline-block;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;padding:2px;font-size:1.1em;min-width:20px}.omni__paginate-ctrl{cursor:pointer}.omni__paginate-ctrl:hover{color:#337ab7}.omni__paginate-left{margin-right:auto}.omni__paginate-count{margin:0 auto}.omni__paginate-right{margin-left:auto}.btn-name-pronounce,.btn-stats-name{vertical-align:top;height:24px;width:24px}.name-pronounce-icon{line-height:16px}.name-pronounce{display:none}.hwin__top-border-icon{top:0;margin-left:auto;padding:2px;color:#f5f5f5;cursor:pointer;font-size:12px;width:18px;text-align:center}.hwin__top-border-icon--text{line-height:11px;font-weight:bolder;font-family:monospace}.hwin__top-border-icon:hover,.hwin__top-border-icon:active,.hwin__top-border-icon:visited{color:#e8e8e8;text-decoration:none}.glyphicon.top-border-icon,.glyphicon.delete-icon{top:0;margin-left:auto;padding:2px;color:rgba(255,255,255,0.7);cursor:pointer;font-size:12px}.glyphicon.top-border-icon:hover,.glyphicon.top-border-icon:active,.glyphicon.top-border-icon:visited,.glyphicon.delete-icon:hover,.glyphicon.delete-icon:active,.glyphicon.delete-icon:visited{text-decoration:none}#btn-popout,#btn-popout-feat{margin-left:auto}#tabs-right,#tabs-right-feats{margin-left:auto;display:flex}#tabs-right>#btn-popout,#tabs-right-feats>#btn-popout{margin-left:0}.rollbox-min{box-shadow:0 6px 12px rgba(0,0,0,0.175);position:fixed;z-index:100;right:7px;bottom:0;color:rgba(255,255,255,0.7);width:24px;height:24px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.rollbox-min .glyphicon{position:absolute;top:5px;left:6px}.rollbox{box-shadow:0 6px 12px rgba(0,0,0,0.175);display:none;position:fixed;width:260px;height:335px;z-index:110;border:1px solid rgba(0,0,0,0.15);right:1em;bottom:0;flex-direction:column}.rollbox .ipt-roll{flex-shrink:0;overflow-x:auto;height:30px;width:100%}.rollbox .out-roll{overflow-y:auto;height:100%;display:flex;flex-direction:column-reverse;transform:translateZ(0)}.rollbox .head-roll{height:24px;flex-shrink:0;width:100%;box-shadow:0 0 3px rgba(0,0,0,0.25);display:flex;flex-direction:row;justify-content:space-between;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:pointer}.rollbox .head-roll .hdr-roll{line-height:24px;padding:0 6px}.rollbox .head-roll .delete-icon{padding:6px}.rollbox .out-roll .out-roll-wrp .out-roll-item:first-child{border-top-left-radius:6px;border-top-right-radius:6px}.rollbox .out-roll .out-roll-wrp .out-roll-item:last-child{border-bottom-left-radius:6px;border-bottom-right-radius:6px}.rollbox .out-roll .out-roll-item{position:relative;margin:1px 3px;padding:1px 3px;width:calc(100% - 6px);word-wrap:break-word;display:flex;align-items:center;justify-content:space-between}.rollbox .out-roll .out-roll-item--message{display:block}.rollbox .out-roll-item-button-wrp{display:none;position:absolute}.rollbox .out-roll-item:hover .out-roll-item-button-wrp{display:flex;right:3px}.rollbox .btn-copy-roll{padding:0 2px;line-height:1.4}.rollbox .out-roll .out-roll-item .roll-label{font-style:italic}.rollbox .out-roll .out-roll-item .roll{font-weight:bold}.rollbox .out-roll .out-roll-item .roll-min{color:#ff3100}.rollbox .out-roll .out-roll-item .roll-max{color:#00b400}.rollbox .out-roll .out-roll-id{width:100%;font-size:70%;padding:1px 3px}.rll__prompt-header{font-size:32px}.rll__dropped{-webkit-text-decoration:red line-through;text-decoration:red line-through}.rll__list{margin-bottom:0;padding-left:24px}.rll__exploded{color:#6f99b8}.rll__success{-webkit-text-decoration:#209520 underline;text-decoration:#209520 underline}.rll__min--muted{color:#d24c2d}.rll__max--muted{color:#209520}.rll__exploded{color:#6f99b8}.rll__min--muted{color:#d24c2d}.rll__max--muted{color:#209520}.wrp-stat-tab{width:100%;display:flex}.view-col{position:relative;margin:7px 13px 12px;flex:1;display:flex;flex-direction:column;height:calc(100% - 19px)}.view-col--wrp-book-contents{height:initial;position:relative;flex:1}.wrp-footer-buttons{margin-top:3px}#listcontainer.view-col{display:flex;flex-flow:column nowrap}#listcontainer .list a.book-name{display:flex;justify-content:space-between;padding:0}#contentwrapper.view-col{overflow-x:hidden;margin-bottom:5px}#contentwrapper.view-col>*:not(.wrp-stats-table){flex-shrink:0}.wrp-stats-table{overflow-x:hidden;overflow-y:auto;border-top:2px solid #5e0000;border-bottom:2px solid #5e0000;transform:translateZ(0);flex-shrink:1;background:#f6f4f2}@media (max-width: 991px){.wrp-stats-table{overflow-y:initial}}.filtertools,#filtertools{font-size:0.8em}.filtertools select,#filtertools select{margin:1px}.filtertools small:hover,#filtertools small:hover{cursor:pointer}#pointbuy input{margin:2px;text-align:right;width:3em}#pointbuy input[type=number]{-webkit-appearance:textfield;-moz-appearance:textfield;appearance:textfield}#pointbuy input[type=checkbox]{width:initial;margin:initial}.list,.list-display-only{transform:translateZ(0);position:relative;padding-left:0;list-style-type:none;height:100%;overflow-y:auto;overflow-x:hidden;clear:both;font-size:0.8em}@media (min-width: 992px){.list--stats,.list-display-only--stats{overflow-y:scroll;margin-right:-9px}}@media (max-width: 991px){.list,.list-display-only{max-height:40vh}}.list.rules,.list-display-only.rules{overflow-y:auto !important;padding-top:0}.list li,.list-display-only li{cursor:pointer;line-height:14px}.list .list-multi-selected,.list-display-only .list-multi-selected{box-shadow:inset 0 0 0 200px rgba(0,107,196,0.3)}.lst--border{border-bottom:1px solid #ddd}.list-multi-selected .lst--border{border-color:#6fa4d0}.row--blacklisted{display:none !important}.manbrew__source{overflow:hidden}.manbrew__search{border-bottom-left-radius:0;border-bottom-right-radius:0}.manbrew__filtertools button{border-top:0;border-top-left-radius:0;border-top-right-radius:0}.manbrew__filtertools .wrp-cb-all{border-bottom:1px solid #ccc;border-right:1px solid #ccc;line-height:14px;border-bottom-right-radius:3px;text-align:center;vertical-align:middle}.manbrew__wrp_btn_del_selected{text-align:right;padding-bottom:5px}.manbrew__current_brew{margin-bottom:5px}.manbrew__row.row{margin-right:0;margin-left:0;padding:4px 0}.manbrew__col--tall{line-height:30px}.manbrew__list{position:absolute;top:0;right:0;bottom:0;left:0;height:initial;overflow-y:initial;width:100%}.night-mode .manbrew__filtertools .wrp-cb-all{border-color:#555}.rnd-name{position:relative;font-size:1.8em;font-family:'Andada', serif;font-variant:small-caps;font-weight:500;padding-left:0.2em !important}.rnd-name div.name-inner{display:flex;justify-content:space-between;align-items:flex-end}.monster .rnd-name .source{position:relative;margin-right:0.2em}.stats{width:100%;font-size:1.1em;overflow-wrap:break-word;padding:0.4em}.stats:last-child{margin-bottom:0}td,th{padding:1px 0.3em}.stats table{width:100%;margin-bottom:5px}.stats table.statsDataInset{margin:10px;width:calc(100% - 20px);border:1px solid rgba(0,0,0,0.4);box-shadow:0 0 4px 0 #988d7c}.stats table caption{margin-left:5px;padding:0;font-weight:bold;font-size:1.1em}th.border{height:4px}.wrp-stats-table th.border{height:3px}th.border-thin{height:1px}td.divider div{background:#822000;height:2px;margin:6px 0}.stats span.name{font-weight:bold}.stats span.name{font-weight:bold}tr.text>td{padding-bottom:0.7em}tr.text.compact>td{padding-bottom:0}tr.text.compact>td p:last-child{margin-bottom:0}span.dc-roller[mode=dice]{color:#337ab7;cursor:pointer}.night-mode span.dc-roller[mode=dice]{color:#7db6e8}div#lootoutput{height:100%;clear:both}.mon__btn-reset-lvl,.mon__btn-scale-lvl{margin:-4px 2px 0 0;padding:0 5px;font-size:10px;line-height:1.2em;height:80%}.mon__cr_slider_wrp{position:absolute;top:23px;left:0;background:white;border:1px solid #ccc;width:calc(100% - 30px);margin:0 10px;padding:5px 7px 10px;border-radius:4px;box-shadow:0 0 3px 0 black;font-size:15px}.mon__cr_slider_wrp--compact{top:41px}.mon__cr_slider{width:100%}.mon__ability-names th{text-align:center;font-weight:bold;color:inherit}.mon__ability-scores{text-align:center;width:16%}.mon__wrp-size-type-align--token,.mon__wrp-avoid-token{max-width:calc(100% - 11rem)}.mon__sect-header-inner{display:block;margin-top:-0.3rem;margin-bottom:-0.3rem;font-weight:100}.mon__sect-row-inner{padding-top:0.5rem !important}.mon__sect-row-inner>*:last-of-type{margin-bottom:0.5rem !important}.mon__stat-header-underline{font-size:1.6rem;font-family:'Andada', serif;font-variant:small-caps;border-bottom:2px solid #822000;color:#822000;vertical-align:bottom !important;padding-left:0.2rem}.mon__wrp-token{display:block;position:absolute;z-index:10;top:0;right:0.5rem;width:auto;max-width:11rem;height:auto;transition:opacity 34ms,max-width 34ms,right 34ms}.mon__wrp-token:hover{max-width:100%;right:0;opacity:1 !important;transition:opacity 34ms,max-width 34ms,right 34ms}.mon__wrp-token:hover .mon__btn-token-cycle{opacity:1;transition:opacity 34ms}.mon__wrp-token:hover .mon__wrp-token-footer{opacity:1;transition:opacity 34ms}.mon__token{width:100%;height:100%}.mon__btn-token-cycle{position:absolute;top:50%;bottom:50%;display:flex;align-items:center;justify-content:center;width:40px;height:40px;background:rgba(0,0,0,0.475);cursor:pointer;color:white;border:1px solid rgba(204,204,204,0.627451);opacity:0;transition:opacity 34ms}.mon__btn-token-cycle--left{left:0;border-top-left-radius:5px;border-bottom-left-radius:5px;border-right:0}.mon__btn-token-cycle--right{right:0;border-top-right-radius:5px;border-bottom-right-radius:5px;border-left:0}.mon__btn-token-cycle:hover{color:#ddd}.mon__wrp-token-footer{display:flex;position:absolute;height:22px;right:5px;bottom:0;left:5px;align-items:center;justify-content:center;opacity:0;transition:opacity 34ms}.mon__token-footer{background:rgba(0,0,0,0.475);color:white;font-family:'Andada', serif;font-variant:small-caps;font-size:16px;border-radius:5px;padding:1px 5px;border:1px solid rgba(204,204,204,0.627451)}.night-mode .mon__cr_slider_wrp{border-color:#555}tr th.mon__name--token{padding-right:calc(12rem)}#crcalc input[type=number],#crcalc input[type=checkbox],#crcalc .inputwrap{text-align:right;width:6em}#crcalc input[type=checkbox]{width:auto}#crcalc input#hd{float:none;width:4em}#crcalc span#hdval{width:2.1em;text-align:center;display:inline-block}#crcalc input[type=number]#hd::-webkit-inner-spin-button,#crcalc input[type=number]#hd::-webkit-outer-spin-button{margin:0}#crcalc .explanation{font-weight:normal;width:26em}#crcalc input#hd:focus{border:1px solid initial}#msbcr{text-align:center;font-size:0.8em;margin:0 auto}#msbcr th{text-align:center;padding:0 0.5em;cursor:initial !important}#msbcr tr{cursor:pointer}#croutput{padding:0.2em 0.7em;border-radius:7px}#instructions p{font-size:small}#expectedcr{text-align:center}img.token{position:absolute;z-index:10;top:0;right:0.5rem;float:right;width:auto;max-width:11rem;height:auto;transition:opacity 34ms,max-width 34ms,right 34ms}img.token:hover{max-width:100%;right:0;opacity:1 !important;transition:opacity 34ms,max-width 34ms,right 34ms}.stats p.subtrait{padding:0 1em;font-size:0.9em}.gm-screen-panel{background-color:#f0f0f0}.gm-screen-panel.faux-hover{background:#e0e0e0}.gm-screen-panel.faux-hover .panel-content-wrapper-inner::after{background:#e0e0e080}.panel-history-control-remove-wrapper,.panel-control-bar{background:#80808080}.panel-control-icon{color:rgba(255,255,255,0.7)}.panel-add{color:#ccc}.btn-panel-add{border:1px solid #ccc}.btn-panel-add:hover,.btn-panel-add.faux-hover{background:#e0e0e0}.night-mode .btn-panel-add{border-color:#555}.panel-content-wrapper-inner{background:white}.panel-control-top,.panel-control-right,.panel-control-bottom,.panel-control-left,.panel-control-middle{background:rgba(204,204,204,0.627451);border:1px solid #ccc}.night-mode .panel-control-top,.night-mode .panel-control-right,.night-mode .panel-control-bottom,.night-mode .panel-control-left,.night-mode .panel-control-middle{background:#777a;border-color:#aaa}.panel-addmenu-tab-head[active='true']{background-color:#e6e6e6;border-color:#adadad}.btn-spotlight{background-color:#e8f5ff;border-color:#c4cace}.btn-spotlight:focus{color:#333;background-color:#d2dee6;border-color:#85898c}.btn-spotlight:hover{color:#333;background-color:#d2dee6;border-color:#85898c}.panel-addmenu-tab-head.btn-spotlight[active='true']{background-color:#d2dee6;border-color:#85898c}.underline-tabs{border-top:1px solid #ccc}.night-mode .underline-tabs{border-color:#555}.panel-content-wrapper-inner td div.border{background-color:#822000}.panel-history-control-remove{color:rgba(255,255,255,0.7)}.panel-history-control-middle{background:rgba(204,204,204,0.627451);border:1px solid #ccc}.night-mode .panel-history-control-middle{background:#777a;border-color:#aaa}.gm-init-row.gm-init-row-active input{background:#cfe5ff78}.gm-init-row.gm-init-row-active .init-wrp-creature{background:#cfe5ff78}.gm__panel-bg{background:white}.init__wrp_conds{display:flex}.init__cond{width:7px;margin-right:3px;display:grid;grid-gap:3px;cursor:pointer}.init__cond:hover{box-shadow:0 0 5px 0 gray}.init__cond_bar{width:7px;height:100%}.initp__content{overflow-y:auto;overflow-x:hidden;height:100%;width:100%}.initp__wrp_active{display:flex;flex-direction:column;width:100%;height:100%}.initp__meta{font-size:1.6rem}.initp__header{width:100%;display:flex;justify-content:space-between;font-variant:small-caps;border-bottom:1px solid #ccc}.initp__h_name,.initp__r_name{min-width:115px;width:100%}.initp__h_name--compact{text-align:center}.initp__r_name{display:flex;justify-content:space-between}.initp__h_hp,.initp__r_hp{min-width:100px;width:100%}.initp__h_hp--compact{text-align:center}.initp__h_stat,.initp__r_stat{width:40px;text-align:center;flex-shrink:0;flex-grow:0}.initp__r_hp_pill{padding:2px 4px;border-radius:3px;color:white;text-align:center}.initp__h_score,.initp__r_score{flex:none;width:80px;text-align:center}.initp__h_score--compact,.initp__r_score--compact{width:40px}.initp__r_score{line-height:24px}.initp__r{width:100%;display:flex;justify-content:space-between;padding:2px 3px;border-bottom:1px solid #e0e0e0}.initp__r:last-of-type{border-bottom:0}.initp__r:hover{background:#00000010}.initp__r--active{background:#cfe5ff78}.initp__r--active:hover{background:#bfd5ef78}.night-mode .initp__header{border-color:#555}.lst__form-top{display:flex;flex-shrink:0}.lst__form-top>*{min-width:0}.lst__form-top>button{flex-shrink:0}.lst__form-top>*:first-child{border-bottom-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:0;border-right:0}.lst__form-top>*:last-child{border-bottom-right-radius:0;border-top-left-radius:0;border-bottom-left-radius:0}.lst__form-top>*:not(:first-child):not(:last-child){border-radius:0;border-right:0}.lst__wrp-search-glass{position:absolute;z-index:3;top:0;bottom:2px;left:6px;opacity:0.5}.lst__wrp-search-visible{position:absolute;top:0;right:6px;bottom:0;opacity:0.5}.lst__search{padding-left:23px}.lst__search--no-border-r{border-bottom-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:0;border-right:0}.lst__search--no-border-h{border-radius:0;border-right:0}*:first-child>.lst__search--no-border-h{border-top-left-radius:4px}div#showsearch{display:none}.psi-order-and-talent{font-style:italic}.psi-focus-title{font-style:italic;font-weight:bold}.stats-sub-header{font-style:italic;font-weight:bold}.stats-list-sub-header{font-style:italic;font-weight:bold;margin-left:5px}.list-entry-none{font-style:italic}.filter-sublist-item-wrapper{display:flex}.filter-sublist-item-text{margin-right:20px}input[type=checkbox].filter-checkbox{margin-left:auto;padding:0 10px}input[type=checkbox].readonly{pointer-events:none}#sublistcontainer>ul>li,#featlistcontainer>ul>li,#listcontainer>ul>li{padding:0}.lst__wrp-cells,#sublistcontainer .list a,#featlistcontainer .list a,#listcontainer .list a{color:inherit;display:flex;align-items:center;overflow:hidden;padding:0 2px 1px;text-decoration:none}.lst__wrp-cells.bk__contents_header_link,#sublistcontainer .list a.bk__contents_header_link,#featlistcontainer .list a.bk__contents_header_link,#listcontainer .list a.bk__contents_header_link{padding:0}.lst__wrp-cells.bk__contents_show_all,#sublistcontainer .list a.bk__contents_show_all,#featlistcontainer .list a.bk__contents_show_all,#listcontainer .list a.bk__contents_show_all{height:16px}.lst__row--focusable:focus{box-shadow:inset 0 0 0 200px rgba(0,107,196,0.3)}.sublist{display:none;position:relative;padding:0 0 2px;flex-direction:column;flex-shrink:0;height:130px}.sublist .list{margin-bottom:3px;padding-top:3px}.sublist--visible{display:flex}.sublist--resizable{margin-bottom:3px;min-height:75px;max-height:80%}.sublist--resizable::after{content:'...';background-color:#aaa4;border:1px solid rgba(204,204,204,0.4);position:absolute;bottom:0;height:1px;width:100%;cursor:ns-resize;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;line-height:1px;font-size:10px;text-align:center}.sublist__wrp-cols{display:flex}.sublist__wrp-cols>*:last-child{flex-grow:1}.ecgen__visible,.ecgen__visible--flex,.ecgen__visible--flex-col{display:none}.ecgen__btn_list{padding:0 1px;line-height:12px;font-size:9px;border-radius:3px}.ecgen__del_players,.ecgen__advanced_add_col,.ecgen__advanced_remove_col{padding:0 2px;font-size:10px;flex-shrink:0;flex-grow:0}.ecgen__cr_input{width:100%;text-align:center}.night-mode .ecgen__wrp{background:#222}.ecgen_active .ecgen__visible{display:block}.ecgen_active .ecgen__visible--flex{display:flex}.ecgen_active .ecgen__visible--flex-col{display:flex;flex-direction:column}.ecgen_active .ecgen__hidden{display:none !important}.ecgen_active .ecgen__name{width:26.66666666%}.ecgen_active .ecgen__name--sub{width:29.16666667%}tr.trait .rd__b--3,tr.action .rd__b--3,tr.reaction .rd__b--3,tr.legendary .rd__b--3,tr.mythic .rd__b--3,tr.lairaction .rd__b--3,tr.regionaleffect .rd__b--3{margin-bottom:1rem}tr.lairaction p,tr.regionaleffect p{margin-bottom:5px}.stats--book-large{border-radius:0;line-height:1.7;font-size:1em}.stats--book-large .rd__h--0{font-size:2.5em}.stats--book-large .rd__h--1{font-size:1.9em}.stats--book-large .rd__h--2{font-size:1.6em}.stats--book-large .rd__b--3,.stats--book-large table,.stats--book-large p{margin:0 0 15px;text-indent:0}.stats--book-large .rd__spc-inline-post{width:100%;height:15px}.stats--book-large .rd__spc-inline-post:last-child{height:0}.stats--book-large .rd__list{margin-bottom:15px}.stats--book-large .rd__list+.rd__list{margin-top:-10px}.stats--book-large .rd__list>.rd__list{margin-bottom:0}.stats--book-large .rd__list-hang-notitle p{text-indent:-1.1em}.stats--book-large .rd__list-hang-notitle>.rd__li{margin-bottom:5px}.stats--book-large .rd__list-hang-notitle>.rd__li>*{margin:0 0 5px}.stats--book-large .rd__p-cont-indent{text-indent:0;margin-top:5px}.stats--book-large .rd__quote-line{margin-bottom:10px}.stats--book-large .rd__quote-line--last{margin-bottom:5px}#listcontainer.book-contents>ul>li{max-height:initial}.book-view.view-col{flex:5}.book-contents .list li:hover{background:inherit}.book-contents .list li:active{color:inherit}.book-contents ul{margin-left:0;padding-left:20px}.book-contents .list li{max-height:none}.book-contents ul.contents>li:last-child,.book-contents ul.contents>li>ul>ul>li:last-child{border-bottom:0}.bk-contents ul,.bk-contents li,.book-contents ul.contents li{list-style:none}.bk-contents__sub_spacer--1{color:grey;display:inline-block;margin:0 4px}.book-contents ul.contents{height:initial;position:-webkit-sticky;position:sticky;top:0;overflow-y:auto;max-height:100vh;padding:0 0 22px}@media only screen and (min-width: 1600px){#listcontainer.book-contents{position:fixed;top:0;left:0;max-width:calc((100vw - 1170px) / 2);margin:0;min-height:100vh}.book-contents ul.contents{position:relative}}.book-contents li.contents-item>ul>li{font-weight:bold}.initial-message{color:#5e0000;font-family:'Taroca', serif;font-weight:500;text-align:center;text-transform:uppercase;line-height:1.3em;font-size:0.75em}.book-view .initial-message{font-size:1.8em}.stats .initial-message,.prntv .initial-message{font-size:1.4em}.book-contents .list li:hover span{display:initial}.book-contents span.sect{width:100%}.f-all-wrapper{position:fixed;z-index:100;right:calc((50vw - (1170px / 2)) + 1.5em);bottom:10px;left:calc(((100vw - (1170px * (4 / 6))) / 2) + 1.5em);padding:0 20px}@media (max-width: 1200px){.f-all-wrapper{right:calc((50vw - (970px / 2)) + 1.5em);left:calc(((100vw - (970px * (4 / 6))) / 2) + 1.5em)}}@media (max-width: 991px){.f-all-wrapper{right:calc(((100vw - 750px) / 2) + 1.5em);left:calc(((100vw - 750px) / 2) + 1.5em)}}@media only screen and (max-width: 768px){.f-all-wrapper{right:calc(((100vw - 750px) / 2) + 1.5em);left:calc(((100vw - 750px) / 2) + 1.5em)}}@media only screen and (max-width: 480px){.f-all-wrapper{right:calc(3.5em);left:calc(3.5em)}}.f-all-wrapper>input{width:100%}.f-all-out{box-shadow:0 6px 12px rgba(0,0,0,0.175);overflow-y:auto;max-height:400px;width:100%;border:1px solid rgba(0,0,0,0.15);padding:0.2em 0.7em;border-radius:0.2em;display:none}.f-result{display:flex;justify-content:space-between;margin:0;padding:5px 0}.f-result>span{display:inline-block}.highlight{background-color:#ff0}header p.lead{color:lightgrey}ul.list li:hover{background:lightgrey}.stats{background:#f6f4f2}@media only screen and (min-width: 1600px){#listcontainer.book-contents{box-shadow:0 6px 12px rgba(0,0,0,0.175);background:white}}.shadow-big{box-shadow:0 6px 12px rgba(0,0,0,0.175)}.night-mode .night__shadow-big{box-shadow:0 6px 12px rgba(0,0,0,0.175)}.stats--book{box-shadow:0 6px 12px rgba(0,0,0,0.175)}.stats--book ::-moz-selection{background:#242527;color:white;text-shadow:none}.stats--book ::selection{background:#242527;color:white;text-shadow:none}.prntv{position:fixed;z-index:100;top:0;right:0;bottom:0;left:0;width:100vw;height:100vh;background:white;display:flex;flex-direction:column}.prntv__spacer-name{font-family:'Andada', serif;font-variant:small-caps;text-transform:uppercase;font-weight:bold;padding:0 5px;height:16px;background:silver;font-size:12px;-moz-column-break-before:auto;break-before:auto;-moz-column-break-after:auto;break-after:auto;-moz-column-break-inside:avoid;break-inside:avoid}.prntv__wrp{-moz-column-count:6;column-count:6;-moz-column-gap:7px;column-gap:7px;-moz-column-break-inside:avoid;break-inside:avoid-column}@media (max-width: 2160px){.prntv__wrp{-moz-column-count:5;column-count:5}}@media (max-width: 1800px){.prntv__wrp{-moz-column-count:4;column-count:4}}@media (max-width: 1440px){.prntv__wrp{-moz-column-count:3;column-count:3}}@media (max-width: 1080px){.prntv__wrp{-moz-column-count:2;column-count:2}}@media only screen and (max-width: 720px){.prntv__wrp{-moz-column-count:1;column-count:1}}.prntv__wrp-item{margin:0;width:100%;display:inline-block;border-radius:0.2em;border:#ccc 1px solid}.prntv__no-breaks{-moz-column-break-before:auto;break-before:auto;-moz-column-break-after:auto;break-after:auto;-moz-column-break-inside:avoid;break-inside:avoid}.night-mode .prntv__wrp-item{border-color:#555}.stats--prntv{padding:0.3em;font-size:1em;background:none}.stats--prntv p{margin-bottom:4px}.mode div.pnl-menu{background:lightgrey}.stripe-odd:nth-child(odd),.stripe-even:nth-child(even),.stripe-odd-table>tbody>tr:nth-child(odd),.stripe-even-table>tbody>tr:nth-child(even){background:#c0c0c080}.stats .stripe-odd-table>tbody>tr:nth-child(odd),.stats .stripe-even-table>tbody>tr:nth-child(even){background:#cbbfaa80}.hwin .hoverborder,th.border{background:#5e0000}.hwin .hoverborder.hoverborder-book,.stats--book th.border{background:silver}.bk__stats--narrow{max-width:640px;margin:0 auto}.bk__contents-header{color:inherit;display:flex;align-items:center;overflow:hidden;margin-top:-1px;padding:1px 0 1px 5px;text-decoration:none;border-bottom:1px solid #ccc;border-top:1px solid #ccc;justify-content:space-between}.bk__nav-head-foot-item{min-width:75px}.bk__to-top{display:none}.bk__to-top--scrolled{display:flex;flex-direction:column;position:fixed;z-index:99;top:42px;right:10px;padding:2px 0}@media (max-width: 768px){.bk__to-top--scrolled{display:none}}.bk__overlay-loading{position:absolute;top:4px;right:0;bottom:4px;left:0;background:white;border-bottom:4px solid silver}.bk__wrp-btns-open-find{position:fixed;bottom:0;left:7px}.bk__btn-find{border-bottom-left-radius:0}.bk__btn-goto{border-bottom-right-radius:0}.night-mode .bk__contents-header{border-color:#555}.night-mode .bk__overlay-loading{background:#222;border-bottom-color:#565656}.bks__wrp-bookshelf{align-items:stretch}.bks__wrp-bookshelf-item,.bks__wrp-bookshelf-item:hover{box-shadow:0 6px 12px rgba(0,0,0,0.175);border:2px solid #ccc;color:#333;-webkit-text-decoration-color:#333;text-decoration-color:#333}.bks__bookshelf-item-name{min-height:40px;max-width:220px;font-weight:bold;flex-grow:1}.bks__bookshelf-image{width:300px;height:300px;-o-object-fit:none;object-fit:none}.night-mode .bks__wrp-bookshelf-item,.night-mode .bks__wrp-bookshelf-item:hover{background:#222;border-color:#555;color:#bbb;-webkit-text-decoration-color:#bbb;text-decoration-color:#bbb}.f-all-out{background:white}.life__output{background:lightgrey}.f-all-out>p:nth-child(odd){background:#f4f4f4}#msbcr tr:nth-child(even){background:lightgrey}#croutput{background:lightgrey}#lootgen hr{border-top:2px solid #ccc}.night-mode #lootgen hr{border-top:2px solid #555}li.contents-item{position:relative;border-bottom:0}li.contents-item>a{border-bottom:1px solid #ddd;border-top:1px solid #ddd;margin-top:-1px}li.contents-item>ul>li.active,li.contents-item>ul>ul.active>li>a{background:#f0f0f0}li.contents-item>ul>ul.active>li>a:hover{background:lightgrey}ul.list.books ul a:hover,ul.list.contents>li a:hover,ul.list.contents>li>ul.bk-contents>li>a>span:hover,.bk__contents-toggle-all:hover{background:lightgrey}ul.list.contents>li>ul.bk-contents>li a:hover{background:initial}ul.list.books>li>a>span.showhide:hover,ul.list.books>li>a>span.name:hover{background:lightgrey}.hwin .hoverborder .window-title{color:white;font-family:'good-pro-condensed', sans-serif}.rollbox{background:white}.rollbox .ipt-roll{background:white;border-radius:0}.rollbox-min,.rollbox .head-roll{background:lightgrey}.rollbox-min:hover,.rollbox .head-roll:hover{background:#e3e3e3}.rollbox .out-roll .out-roll-item{background:#b0b0b035}.rollbox .out-roll .out-roll-item .out-roll-item-code{font-family:'Courier New', monospace;background:white;border-radius:3px;padding:0 2px;cursor:pointer}.life__output-wrp-border{border:1px solid rgba(0,0,0,0.15)}.homebrew-section{background-color:rgba(255,0,0,0.05)}.homebrew-section .homebrew-float{float:right;border:1px dotted;margin-bottom:5px;margin-left:5px;padding-right:2px;padding-left:2px}.homebrew-section .homebrew-old-content{color:#a00;margin-left:5px}.homebrew-section .homebrew-notice::before{content:'Homebrew'}.homebrew-inline{background-color:rgba(255,0,0,0.05);-webkit-text-decoration:underline dotted;text-decoration:underline dotted}.stats tr.homebrew-hover>td{padding:5px 0.3em}.stats tr.homebrew-hover>td>div>*:last-child{margin-bottom:0}.don__bar{width:calc(100% - 40px);height:20px;margin:20px 20px 5px;box-shadow:0 0 3px 0 black;border-radius:4px;border:1px solid #ccc;background:#f0f0f0}.don__bar--home{width:calc(100% - 10px);height:20px;margin:5px}.don__bar_inner{height:18px;background:gold;width:0;text-align:right;color:#333}.toast{box-shadow:0 6px 12px rgba(0,0,0,0.175);position:fixed;z-index:2000;top:-50px;min-height:40px;min-width:600px;max-width:850px;display:flex;width:90vw;right:0;left:0;margin:0 auto;justify-content:space-between;align-items:center;padding:5px 15px;border:1px solid transparent;border-radius:4px;opacity:1;transition:top 84ms}.toast--animate:nth-of-type(1){top:5px;transition:top 84ms}.toast--animate:nth-of-type(2){top:50px;transition:top 84ms}.toast--animate:nth-of-type(3){top:95px;transition:top 84ms}.toast--animate:nth-of-type(4){top:140px;transition:top 84ms}.toast--deleted{z-index:1999}.toast__wrp-control{flex:0;display:flex;align-items:center;justify-content:center;align-self:stretch;margin:-5px -15px -5px 0}.toast__btn-close{height:100%;margin:0;border-top-left-radius:0;border-bottom-left-radius:0;border-top:0;border-right:0;border-bottom:0;border-left:1px solid #80808040;background:transparent}.toast__btn-close:hover,.toast__btn-close:focus{background:#80808020}.toast--type-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.toast--type-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.toast--type-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.toast--type-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.night-mode .toast--type-info{color:white;background-color:#354e5a;border-color:#bce8f1}.cards__btn-choose-icon{width:26px;height:26px;padding:0}.cards__disp-btn-icon{width:24px;height:24px;background-repeat:no-repeat;background-size:24px 24px;filter:invert(1)}.cards__disp-typeahead-icon{width:24px;height:24px;background-repeat:no-repeat;background-size:24px 24px;display:inline-block}.cards-cfg__ipt-color{width:40px}.night-mode .cards__disp-btn-icon{filter:initial}.night-mode .cards__disp-typeahead-img{filter:invert(1)}.form-control--error,.form-control--error[readonly],.form-control--error[disabled]{background-color:#ff000018;border:1px solid #843534}.form-control--error:focus,.form-control--error[readonly]:focus,.form-control--error[disabled]:focus{border-color:#843534;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px #ce8483}.form-control--warning,.form-control--warning[readonly],.form-control--warning[disabled]{background-color:#ffaa0018;border:1px solid #846334}.form-control--warning:focus,.form-control--warning[readonly]:focus,.form-control--warning[disabled]:focus{border-color:#846334;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px #ceaa83}.night-mode body{color:#bbb;background:#222 url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEYAAABGBAMAAACDAP+3AAAAGFBMVEUfHx8eHh4dHR0bGxshISEiIiIlJSUjIyM9IpsJAAAFjUlEQVR4AT3UuZLcOBaF4QuI2XJxboIhF/eQFe1WovoBAAqccpkaZpc5+4yrXa8/RGpx/lrIXPjFCYjTp9z8REqF4VYNWB3Av3zQJ6b6xBwlKB/9kRkCjXVwGH3ziK5UcjFHVkmgY6osiBsGDFfseqq2ZbTz7E00qBDpzOxnD7ToABeros1vM6MX0rBQaG1ith1A/HJkvkHxsPGJ82dP8vVCyWmbyPTaAfGzg40bgIdrv2f3pBVPycUcufx+BSUUWDuCZi6zBqdM50ElKYPODqtLDjc31rBb9CZ59lbN/JScuMxHLUBcGiy6QRH9zpwgZGhRj8qSydPVgNNVgbWqYX3HbM9K2rqTnKVmsmwKWzc1ffEd20+Zq3Ji65kl6TSjALNvzmJt4Pi2f1etytGJmy5erLAgbNY4bjykC3YCLIS3nSZMKgwRsBarWgjdeVzIEDzpTkoOUArTF4WFXYHwxY585sT0nmTYMxmXfs8fzwswfnam8TMU49bvqSRnyRPnqlno4tVQQiH2A9Za8tNTfXQ0lxbSxUaZna0uLlj9Q0XzD96CpsOZUftolINKBWJpAOoAJC0T6QqZnOtfvcfJFcDrD4Cuy5Hng316XrqzJ204HynyHwWed6i+XGF40Uw2T7Lc71HyssngEOrgONfBY7wvW0UZdVAma5xmSNjRp3xkvKJkW6aSg7PK4K0+mbKqYB0WYBgWwxCXiS74zBCVlEFpYQDEwjcA1qccb5yO6ZL8ozt/h3wHSCdWzLuqxU2ZZ9ev9MvRMbMvV9BQgN0qrFjlkzPQanI9nuaGCokVK2LV1Y2egyY1aFQGxjM9I7RBBAgyGEJtpKHP0lUySSeWCpyKHMT2pmM/vyP55u2Rw5lcSeabAfgiG5TPDX3uP3QvcoSipJXQByUCjS4C8VXqxEEZOJxzmJoyogFNJBRsCJs2XmoWWrWFqTsnbwtSn43gNFTTob9/SEpaPJNhUBKDGoZGCMINxvBv8vuKbb//lg/sK0wfPgBica/QsSk5F3KK4Ui6Yw+uv4+DWEOFbhdPOnbY5PLFpzrZMhakeqomY0Vz0TO+elQGTWdCk1IYFAOaoZg0IJQhT+YreXF+yia+O1cgtGufjXxQw28f85RPXfd15zv13ABoD15kB7FKJ/7pbHKP6+9TgNgkVj68NeV8Tp24f7OOndCgJzR3RNJBPNFReCmstMVqvjjzBoeK4GOFoBN32CPxu+4TwwBDa4DJTe/OU9c9ku7EGyfOVxh+fw9g/AATxPqKTEXJKEdCIBkB4iBUlO6MjUrWi6M5Kz31YAqFsYaCeB0KJC5d1+foo3LQWSfRaDrwdAQrMEC27yDZXJf7TlOJ2Bczr1di3OWvZB6XrvvqPuWJPDk9dAHgm7LvuZJTEdKqO3J3XgostArEnvkqgUznx3PX7cSzz1FXZyvakTA4XVVMbCPFPK1cFj66S0WoqQI1XG2uoU7CMPquO2VaUDJFQMdVgXKD2bpz6ufzzxXbxszHQ9fGO/F7A998yBQG6cShE+P+Pk7t1FwfF1QHN1Eui1VapRxCdj8tCtI1bog1Fo011Sx9u3o6c9bufI6wAT26Av9xJ+WWpTKbbBPp3K/1LbC4Vuhv396RCbJw4untjxVPndj+dIB9dVD8z2dylZ+6vMeJwbYChHJkvHV2J3fdHsJPASeHhrXq6QheXu1nBhUr5u6ryT0I13BFKD01ViZ/n3oaziRG7c6Ayg7g1LPeztNdT36ueMqcN4XGv3finjfv+7I/kMJ4d046MUanOA1QtMH1kLlfFasm99NiutSw63yNDeH4zeL1Uu8XKHNfcThPSSNwchGMbgUETScwkCcK77pH2jsgrAssvVyB8FLJ7GrmwyD8eVqsHoY/FwIv9T7lPu9+Yf8/9+w4nS1ma78AAAAASUVORK5CYII=") repeat scroll left top}.night-mode .page__header{color:#bbb;background:#333}.night-mode .page__title--home span{color:#909090}.night-mode .page__title--home::after{color:#909090}.night-mode .page__title{color:#d0d0d0}.night-mode .page__nav-inner>li.active>a,.night-mode .page__nav-inner>li.active>a:focus,.night-mode .page__nav-inner>li.active>a:hover{background-color:#333;border-top:0;border-color:#555;border-left-color:transparent;border-right-color:transparent;color:#d0d0d0}.night-mode .text-muted{color:#959595 !important}.night-mode h1,.night-mode h2,.night-mode h3,.night-mode h4,.night-mode h5,.night-mode h6{color:#bbb}.night-mode pre{color:#bbb;background:#222;border-color:#555}.night-mode hr{border-color:#555}.night-mode #legal-notice{background:#222;color:#999}.night-mode a,.night-mode .roller{color:#7db6e8}.night-mode .hwin__top-border-icon{color:#bbb}.night-mode .hwin__top-border-icon:hover{color:#c8c8c8}.night-mode .text-muted a,.night-mode .text-muted .roller{color:#6e8eab}.night-mode .nav>li:not(.active)>a{color:#bbb;background-color:#222;border:1px solid rgba(85,85,85,0.627451);border-top:0}.night-mode .nav>li:not(.active)>a:focus,.night-mode .nav>li:not(.active)>a:hover{background-color:#272727;color:white}.night-mode .nav>li.active>a:focus,.night-mode .nav>li.active>a:hover{color:white}.night-mode .nav li.active>a>span.page__nav-date{color:black !important}.night-mode .nav li.open>a,.night-mode .nav li.open>a:focus,.night-mode .nav li.open>a:hover{background-color:#272727;border-left:1px solid #337ab7;border-right:1px solid #337ab7;border-color:#337ab7}.night-mode .nav li.active.open>a,.night-mode .nav li.active.open>a:focus,.night-mode .nav li.active.open>a:hover{background-color:#333;color:white}.night-mode .btn:hover{box-shadow:0 0 1px 1px #888}.night-mode .btn[disabled]:hover{box-shadow:initial}.night-mode .btn-default,.night-mode .btn-default:hover,.night-mode .btn-default:focus,.night-mode .btn-default:active{background-color:#222;color:#bbb;border-color:#555}.night-mode .btn-primary,.night-mode .btn-primary:hover,.night-mode .btn-primary:focus,.night-mode .btn-primary:active{background-color:#2a4e6c;color:#bbb}.night-mode .btn-danger,.night-mode .btn-danger:hover,.night-mode .btn-danger:focus,.night-mode .btn-danger:active{background-color:#7e3a38;color:#bbb}.night-mode .btn-danger:hover{box-shadow:0 0 1px 1px #d43f3a}.night-mode .btn-warning,.night-mode .btn-warning:hover,.night-mode .btn-warning:focus,.night-mode .btn-warning:active{background-color:#896838;color:#bbb}.night-mode .btn-info,.night-mode .btn-info:hover,.night-mode .btn-info:focus,.night-mode .btn-info:active{background-color:#2a697c;color:#bbb}.night-mode .btn-success,.night-mode .btn-success:hover,.night-mode .btn-success:focus,.night-mode .btn-success:active{background-color:#427442;color:#bbb}.night-mode .btn-default.active{background-color:#888;box-shadow:inset 0 3px 7px #111e;color:#222}.night-mode .btn-primary.active,.night-mode .btn-danger.active,.night-mode .btn-warning.active,.night-mode .btn-info.active,.night-mode .btn-success.active{box-shadow:inset 0 3px 7px #111e}.night-mode .btn-nowrap{word-wrap:break-word;overflow-wrap:break-word}.night-mode dialog.dialog-modal,.night-mode .dropdown-menu{background:#222;color:#bbb;box-shadow:0 6px 12px rgba(0,0,0,0.56)}.night-mode .dropdown-menu>li>a,.night-mode .dropdown-menu>li>span{color:#bbb}.night-mode .dropdown-menu>li>a:focus,.night-mode .dropdown-menu>li>a:hover,.night-mode .dropdown-menu>li>span:focus,.night-mode .dropdown-menu>li>span:hover{background-color:#383838;color:white}.night-mode .dropdown-menu>li.ctx-danger>a,.night-mode .dropdown-menu>li.ctx-danger>span{color:white;background-color:#7e3a38}.night-mode .dropdown-menu>li.ctx-danger>a:focus,.night-mode .dropdown-menu>li.ctx-danger>a:hover,.night-mode .dropdown-menu>li.ctx-danger>span:focus,.night-mode .dropdown-menu>li.ctx-danger>span:hover{color:white;background-color:#ac2925}.night-mode .dropdown-menu>li.active>a,.night-mode .dropdown-menu>li.active>span{color:black;background:#e06565}.night-mode .dropdown-menu>li.disabled>a,.night-mode .dropdown-menu>li.disabled>span{color:#777}.night-mode .dropdown-menu>li.disabled>a:focus,.night-mode .dropdown-menu>li.disabled>a:hover,.night-mode .dropdown-menu>li.disabled>span:focus,.night-mode .dropdown-menu>li.disabled>span:hover{color:#777;background:transparent}.night-mode .dropdown-menu .divider{background-color:#555}.night-mode select,.night-mode input{background-color:#222;color:#bbb}.night-mode select option{color:#bbb;background:#222}.night-mode .list .row{background:#222}.night-mode .table-striped>tbody>tr:nth-of-type(odd){background-color:#444}.night-mode .alert-info{color:white;background-color:#354e5a}.night-mode .don__bar{background:#222}.night-mode .input-group-addon,.night-mode .form-control{background:#222;color:#bbb;border-color:#555}.night-mode .form-control[disabled]{background:#0e0e0e88}.night-mode .form-control--error,.night-mode .form-control--error[readonly],.night-mode .form-control--error[disabled]{background-color:#3e0000;border:1px solid #843534}.night-mode .form-control--error:focus,.night-mode .form-control--error[readonly]:focus,.night-mode .form-control--error[disabled]:focus{border-color:#843534;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px #ce8483}.night-mode .form-control--warning,.night-mode .form-control--warning[readonly],.night-mode .form-control--warning[disabled]{background-color:#483700;border-color:#846334}.night-mode .form-control--warning:focus,.night-mode .form-control--warning[readonly]:focus,.night-mode .form-control--warning[disabled]:focus{border-color:#846334;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px #ceaa83}.night-mode .omni__wrp-input--scrolled .omni__input{border-color:#555;background-color:#222;color:transparent}.night-mode .omni__wrp-input--scrolled .omni__input:focus,.night-mode .omni__wrp-input--scrolled .omni__input:focus-within,.night-mode .omni__wrp-input--scrolled .omni__input:active,.night-mode .omni__wrp-input--scrolled .omni__input:hover{color:#bbb}.night-mode .omni__wrp-input--scrolled .omni__submit{border-color:#555}@media (min-width: 992px){.night-mode .omni__input{border-top-color:transparent}}.night-mode .omni__input:focus{border-color:#66afe9}.night-mode .omni__submit{border-top-color:#555}@media (min-width: 992px){.night-mode .omni__submit{border-top-color:transparent}}.night-mode .omni__submit.btn-default:active:focus,.night-mode .omni__submit.btn-default:active:hover,.night-mode .omni__submit.btn-default{background-color:#222;color:#bbb}.night-mode #pointbuy input[type='number']{border:1px solid #555;outline-offset:0;outline:none}.night-mode #pointbuy input.form-control--error[type='number']{border:1px solid red}.night-mode ul.list li:hover{background:#333}.night-mode .book-contents .list li:hover{background:initial}.night-mode .list--stats>.row,.night-mode .stats{background:#222}@media only screen and (min-width: 1600px){.night-mode #listcontainer.book-contents{background:#222;border-right:1px solid #404040}}.night-mode .hwin .hoverborder,.night-mode th.border,.night-mode .stats--book th.border{background:#565656}.night-mode .hwin__wrp-table{background:#222}.night-mode .wrp-stats-table{border-top:2px solid #565656;border-bottom:2px solid #565656}.night-mode .stats--book ::-moz-selection{color:#242527;background:white}.night-mode .stats--book ::selection{color:#242527;background:white}.night-mode tr.text td{color:#bbb !important}.night-mode tr.text td{color:#bbb !important}.night-mode .mon__btn-token-cycle{color:#ddd;background:rgba(255,255,255,0.15)}.night-mode .mon__btn-token-cycle:hover{color:#bbb}.night-mode .mon__token-footer{color:#ddd;background:rgba(255,255,255,0.15)}.night-mode tr.trait td,.night-mode tr.action td,.night-mode tr.reaction td,.night-mode tr.legendary td{color:#bbb !important}.night-mode .life__output{background:#222}.night-mode .f-all-wrapper>input,.night-mode .f-all-out,.night-mode .omni__output{background:#303030}.night-mode .f-all-out>p:nth-child(odd){background:#202020}.night-mode .omni__paginate-ctrl:hover{color:#999}.night-mode #msbcr tr:nth-child(even){background:rgba(0,0,0,0.31)}.night-mode #croutput{background:rgba(0,0,0,0.31)}.night-mode .stats .divider div{background-color:#d29a38}.night-mode .wrp-stats-table{background:#222}.night-mode .stripe-odd:nth-child(odd),.night-mode .stripe-even:nth-child(even),.night-mode .stripe-odd-table>tbody>tr:nth-child(odd),.night-mode .stripe-even-table>tbody>tr:nth-child(even){background-color:#4e4e4e80}.night-mode #please-select-message.showing>td{color:#d29a38}.night-mode #actions td,.night-mode #reactions td,.night-mode #legendaries td,.night-mode #lairactions td,.night-mode #regionaleffects td{border-bottom-color:#d29a38;color:#d29a38}.night-mode .mon__stat-header-underline{border-bottom-color:#d29a38;color:#d29a38}.night-mode .sourcePHB{color:#337ab7 !important;border-color:#337ab7 !important;-webkit-text-decoration-color:#337ab7 !important;text-decoration-color:#337ab7 !important}.night-mode .sourceSADS{color:#4f63f5 !important;border-color:#4f63f5 !important;-webkit-text-decoration-color:#4f63f5 !important;text-decoration-color:#4f63f5 !important}.night-mode .prntv{background:#272727}.night-mode .prntv__spacer-name{background-color:#565656}.night-mode ul.list.encounters>li>span:first-child,.night-mode ul.list.names>li>span:first-child{color:#999}.night-mode li.contents-item>a{border-bottom:1px solid #404040;border-top:1px solid #404040}.night-mode li.contents-item>ul>li.active,.night-mode li.contents-item>ul>ul.active>li>a{background:#303030}.night-mode ul.list.books>li>a:hover,.night-mode ul.list.adventures>li>a:hover,.night-mode li.contents-item>ul>ul.active>li>a:hover,.night-mode ul.list.books ul a:hover,.night-mode ul.list.contents>li a:hover,.night-mode ul.list.contents>li>ul.bk-contents>li>a>span:hover,.night-mode ul.list.books>li>a>span.showhide:hover,.night-mode ul.list.books>li>a>span.name:hover,.night-mode .bk__contents-toggle-all:hover{background:#333}.night-mode ul.list.contents>li>ul.bk-contents>li a:hover{background:initial}.night-mode ul.list.encounters>li>ul>li>a:hover,.night-mode ul.list.names>li>ul>li>a:hover,.night-mode ul.bk-headers>li>a:hover,.night-mode li.contents-item>ul>ul.active>li>a:hover,.night-mode ul.list.contents>li>ul.bk-headers a:hover{background:#333}.night-mode ul.list.encounters li:nth-child(odd),.night-mode ul.list.names li:nth-child(odd),.night-mode ul.list.books>li:nth-child(odd),.night-mode ul.bk-contents>li:nth-child(odd),.night-mode ul.list.contents>li:nth-child(odd){background:none}.night-mode ul.list.encounters li:nth-child(odd):hover,.night-mode ul.list.encounters li:nth-child(even):hover,.night-mode ul.list.books li:nth-child(odd):hover,.night-mode ul.list.books li:nth-child(even):hover,.night-mode ul.bk-contents li:nth-child(odd):hover,.night-mode ul.list.names li:nth-child(even):hover,.night-mode ul.list.names li:nth-child(odd):hover{background:none}.night-mode .lst--border{border-color:#444}.night-mode .list-multi-selected .lst--border{border-color:#416482}.night-mode #rulescontent caption{color:#bbb}.night-mode tr.trait td{color:#bbb !important}.night-mode ::-webkit-scrollbar-thumb{background:#475b6b}.night-mode .ui-slider{background:#222}.night-mode .ui-slider .ui-slider-tip{background:#333;color:#bbb}.night-mode .ui-slider-pips .ui-slider-pip{color:#ccc}.night-mode .ui-slider-pips:not(.ui-slider-disabled) .ui-slider-pip:hover .ui-slider-label,.night-mode .ui-slider .ui-slider-label{color:#7db6e8}.night-mode .ui-slider-pips .ui-slider-line{background-color:#337ab7}.night-mode .ui-slider .ui-slider-handle,.night-mode .ui-slider .ui-slider-range{background:rgba(128,128,128,0.5)}.night-mode .ui-slider .ui-slider-handle.ui-state-active{border:1px solid white}.night-mode .mon__cr_slider_wrp{background:#222;color:#bbb}.night-mode .hwin table.summary-noback th,.night-mode .hwin table.summary th{color:#bbb}.night-mode .hwin .hoverborder .window-title{color:#bbb}.night-mode .rollbox{background:#272727}.night-mode .rollbox .ipt-roll{background:#272727}.night-mode .rollbox-min,.night-mode .rollbox .head-roll{background:#101010}.night-mode .rollbox-min:hover,.night-mode .rollbox .head-roll:hover{background:#161616}.night-mode .rollbox .out-roll .out-roll-item{background:rgba(80,80,80,0.4)}.night-mode .rollbox .out-roll .out-roll-item .out-roll-item-code{background:#555}.night-mode .life__output-wrp-border{border:1px solid rgba(255,255,255,0.15)}.night-mode .gm-screen-panel{background-color:#303030}.night-mode .gm-screen-panel.faux-hover{background:#404040}.night-mode .gm-screen-panel.faux-hover .panel-content-wrapper-inner::after{background:#40404080}.night-mode .panel-control-icon{color:rgba(255,255,255,0.7)}.night-mode .panel-add{color:#ccc}.night-mode .btn-panel-add:hover,.night-mode .btn-panel-add.faux-hover{background:#404040}.night-mode .panel-content-wrapper-inner{background:#222}.night-mode .panel-addmenu-tab-head[active='true']{background-color:rgba(255,255,255,0.25098) !important}.night-mode .panel-content-wrapper-inner td div.border,.night-mode .hwin td div.border{background-color:#d29a38}.night-mode .initial-message{color:#d29a38}.night-mode .ui-modal__row-sep{background:#999}.night-mode .panel-content-textarea{background:#222}.night-mode .gm-init-row.gm-init-row-active input,.night-mode .gm-init-row.gm-init-row-active .init-wrp-creature{background:#8dc1ff20}.night-mode .gm__panel-bg{background:#222}.night-mode .content-tab-bar{background:#222}.night-mode .homebrew-section{background-color:rgba(255,0,0,0.1)}.night-mode .homebrew-section .homebrew-old-content{color:#f99}.night-mode .homebrew-inline{background-color:rgba(255,0,0,0.1)}.night-mode .highlight{color:#222;background-color:#cc0}.night-mode .ace_editor{background:#222;color:#bbb}.night-mode .ace_editor .ace_gutter{background:#333;color:#bbb}.night-mode .ace_editor .ace_gutter-active-line{background:#222}.night-mode .ace_editor .ace_marker-layer .ace_selection{background:rgba(181,213,255,0.4)}.night-mode .ace_editor .ace_marker-layer .ace_active-line{background:rgba(0,116,255,0.3)}.night-mode .ace_editor .ace_cursor{color:#bbb}.night-mode .ace_editor .ace_marker-layer .ace_step{background:#665200}.night-mode .ace_editor .ace_indent-guide{background:url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAACCAYAAACZgbYnAAAAEklEQVQImWOQkpLyZfD09PwPAAfYAnaStpHRAAAAAElFTkSuQmCC") right repeat-y}.night-mode .sidemenu__row__divider{background:#9998}.night-mode .sidemenu{background:#222}.night-mode .sidemenu__toggle{background:#444}.night-mode .sidemenu__burger{background:#222}.night-mode .initp__r--active{background:#8dc1ff20}.night-mode .ui-modal__row--cb:hover{background:#383838}.edge__body{overflow:hidden !important}.edge__overlay{background:darkred;position:fixed;z-index:99999;top:0;right:0;bottom:0;left:0;width:100vw;height:100vh;color:white;font-family:monospace}.edge__title{font-size:72px}.edge__btn-close{position:absolute;top:8px;right:8px;font-size:16px}.edge__link{color:white !important;text-decoration:underline}.TEST_LEADER{background:fuchsia;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;color:white;width:728px;height:90px}.TEST_RHS_TOP{background:fuchsia;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;color:white;width:300px;height:600px}.TEST_RHS_BOTTOM{background:lime;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;color:white;width:300px;height:250px}@supports (-webkit-touch-callout: none){select.form-control{color:black}}@media print{@page{margin:10mm 15mm}body{color:black !important;overflow:visible !important;background:none !important;font-size:10px !important}header,nav{display:none !important}strong,.bold{font-weight:600}a[href]::after{content:none !important}.help,.help--hover{text-decoration:none !important}.no-print,.btn-reroll,.rollbox-min,.rollbox,.spacer-name{display:none !important}a,.roller{color:black !important}.stats,.stats.monster{background:transparent !important}.stats-source,.stats th{color:black !important}th.border,.wrp-stats-table th.border{background:black !important;height:1px !important}td.divider div{height:1px !important;background:black !important;margin:0 !important}.stats td,.stats th{padding:1px 2px !important}.stats--book-large .rd__b--3,.stats--book-large table,.stats--book-large p{margin:0 0 3px !important}.stats--book{box-shadow:none !important}#listcontainer,#stat-tabs,.wrp-footer-buttons,#float-token,.btn-name-pronounce,.btn-stats-name{display:none !important}.wrp-stats-table{border-top:0 !important;border-bottom:0 !important}#sticky-nav{display:none !important}#classtable table tr:nth-child(odd) td{background:lightgrey !important}.cls-prntv__wrp-tabs{display:none !important}.mon__btn-scale-lvl,.mon__btn-scale-lvl{display:none !important}.mon__name--token{padding-right:0 !important}.mon__stat-header-underline{border-bottom:1px solid black !important;color:black !important}.rd__b-inset{background:none !important;box-shadow:none !important;border-color:black !important}.bk__to-top,.bk__nav-head-foot-item{display:none !important}.prntv-active>*:not(.prntv){display:none !important}.prntv-active .prntv{position:relative;top:unset;right:unset;bottom:unset;left:unset;width:calc(100vw - 20px);display:block}.prntv-active .prntv__scroller{overflow:visible !important;height:initial}.prntv-active .prntv__wrp-controls,.prntv-active .prntv__spacer-name,.prntv-active .prntv__footer{display:none !important}.prntv-active .prntv__no-breaks{-moz-column-break-before:unset !important;break-before:unset !important;-moz-column-break-after:unset !important;break-after:unset !important;-moz-column-break-inside:unset !important;break-inside:unset !important}.prntv-active .prntv th.border{border:0 !important;padding:0 !important}.prntv-active .prntv .pnl-menu{display:none}.stats--prntv{-moz-column-break-before:auto !important;break-before:auto !important;-moz-column-break-after:auto !important;break-after:auto !important;-moz-column-break-inside:avoid !important;break-inside:avoid !important}}@font-face{font-family:'Convergence';font-style:normal;font-weight:400;src:local("Convergence-Regular"),url("../fonts/Convergence-Regular.ttf") format("truetype")}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;src:local("Roboto"),url("../fonts/Roboto-regular.ttf") format("truetype")}@font-face{font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;src:local("glyphicons-halflings-regular"),url("../fonts/glyphicons-halflings-regular.ttf") format("truetype")}@font-face{font-family:'Blambot Casual';src:local("Blambot-Casual"),url("../fonts/Blambot-Casual-Regular.ttf") format("truetype")}@keyframes kf-fade-out{from{opacity:1}to{opacity:0}}.linked-titles .rd__h--0 .entry-title-inner:hover::before{font-size:50%}.linked-titles .rd__h--1 .entry-title-inner:hover::before{font-size:55%}.linked-titles .rd__h--2 .entry-title-inner:hover::before{font-size:60%}.linked-titles .rd__h .entry-title-inner{cursor:copy}.linked-titles .rd__h .entry-title-inner:hover::before{content:' 🔗';color:rgba(0,0,0,0.2);position:relative;float:left;width:14px;height:14px;right:20px;margin-right:-30px;font-size:85%}@media (max-width: 991px){.dropdown-menu-filter{max-height:525px}}.fltr__btn-close{min-width:100px}.fltr__minimal-hide{display:none}.fltr__no-items{display:none !important}.fltr__h{display:flex;justify-content:space-between;font-size:15px;align-items:center}@media only screen and (max-width: 768px){.fltr__h{flex-direction:column}.fltr__h--multi{flex-direction:initial}}@media only screen and (max-width: 768px){.fltr__h-text{align-self:flex-start}}@media only screen and (max-width: 768px){.fltr__h-wrp-btns-outer{width:100%;flex-direction:column;align-items:initial !important}.fltr__h-wrp-btns-outer>*{width:100%;margin:.25rem !important}}@media only screen and (max-width: 768px){.fltr__h-wrp-state-btns-outer{flex-direction:column}.fltr__h-wrp-state-btns-outer>*{width:100%}}.fltr__h-btn-mobile-settings{min-width:30px}.fltr__h-btn-logic{min-width:46px;font-weight:bold}.fltr__h-btn-logic.btn-xxs{min-width:34px}.fltr__h-btn-logic--blue{color:#337ab7}.fltr__h-btn-logic--blue:hover{color:#2a6496}.fltr__h-btn-logic--red{color:#8a1a1b}.fltr__h-btn-logic--red:hover{color:#711617}.fltr__h-btn--all,.fltr__h-btn--all:focus,.fltr__h-btn--all:hover{text-decoration:underline;-webkit-text-decoration-color:#337ab7;text-decoration-color:#337ab7}.fltr__h-btn--clear,.fltr__h-btn--clear:focus,.fltr__h-btn--clear:hover{text-decoration:underline;-webkit-text-decoration-color:#c3c3c3;text-decoration-color:#c3c3c3}.fltr__h-btn--none,.fltr__h-btn--none:focus,.fltr__h-btn--none:hover{text-decoration:underline;-webkit-text-decoration-color:#8a1a1b;text-decoration-color:#8a1a1b}.fltr__summary_item{cursor:help;margin:0 3px;font-weight:bold;font-size:12px;line-height:12px}.fltr__summary_nest{display:flex;padding:2px 0;font-size:12px;align-items:center}.fltr__summary_item--include{color:#337ab7;text-shadow:0 0 1px #337ab7}.fltr__summary_item--exclude{color:#8a1a1b;text-shadow:0 0 1px #8a1a1b}.fltr__summary_item_spacer{margin:0 3px;padding-left:1px;cursor:default;background:rgba(204,204,204,0.627451);min-height:12px}.fltr__btn_nest{margin:2px;padding:2px 6px;white-space:nowrap;text-align:center;font-size:10.5px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background:#f0f0f0;border:1px solid #ccc}.fltr__btn_nest:hover{background-color:#e6e6e6}.fltr__btn_nest--include{background:repeating-linear-gradient(135deg, #337ab7, #337ab7 11px, transparent 11px, transparent 22px)}.fltr__btn_nest--include:hover{background:repeating-linear-gradient(135deg, #2d6da3, #2d6da3 11px, transparent 11px, transparent 22px)}.fltr__btn_nest--include span{background:white;padding:1px 0}.fltr__btn_nest--include-all{background:#337ab7;color:white}.fltr__btn_nest--include-all:hover{background:#2d6da3}.fltr__btn_nest--exclude{background:repeating-linear-gradient(135deg, transparent, transparent 11px, #8a1a1b 11px, #8a1a1b 22px)}.fltr__btn_nest--exclude:hover{background:repeating-linear-gradient(135deg, transparent, transparent 11px, #751617 11px, #751617 22px)}.fltr__btn_nest--exclude span{background:white;padding:1px 0}.fltr__btn_nest--exclude-all{background:#8a1a1b;color:white}.fltr__btn_nest--exclude-all:hover{background:#751617}.fltr__btn_nest--both{background:repeating-linear-gradient(135deg, #337ab7, #337ab7 11px, #8a1a1b 11px, #8a1a1b 22px);color:white}.fltr__btn_nest--both:hover{background:repeating-linear-gradient(135deg, #2d6da3, #2d6da3 11px, #751617 11px, #751617 22px)}.fltr__dropdown-divider{border-bottom:#ccc 1px dotted;width:100%}@media only screen and (max-width: 768px){.fltr__dropdown-divider{box-shadow:inset 0 0 2px 2px #eee;height:7px;flex-shrink:0;border:0;background:#ccc;margin-top:0.5rem;margin-bottom:0.75rem !important}}.fltr__dropdown-divider--indented{opacity:0.4;width:calc(100% - 80px);margin:0 auto}.fltr__dropdown-divider--sub{border-style:dashed;width:calc(100% - 2rem);border-color:rgba(204,204,204,0.627451)}.fltr__pill{margin:2px;padding:2px 6px;background:#f0f0f0;white-space:nowrap;text-align:center;font-size:10.5px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border:1px solid #ccc;float:left}.fltr__pill:hover{background-color:#e6e6e6}.fltr__pill[state=yes]{background:#337ab7;color:white;border:1px solid #22527b}.fltr__pill[state=yes]:hover{background:#2d6da3}.fltr__pill[state=no]{background:#8a1a1b;color:white;border:1px solid #4a0e0e}.fltr__pill[state=no]:hover{background:#751617}.fltr__wrp-pills,.fltr__wrp-pills--sub{flex-wrap:wrap;margin-bottom:7px}.fltr__wrp-pills{display:block}.fltr__wrp-pills::after{content:'';clear:both;display:block}.fltr__wrp-pills--flex,.fltr__wrp-pills--sub{display:flex}.fltr__wrp-subs{display:block}.fltr__mini-view{border-left:#ccc 1px solid;border-right:#ccc 1px solid;background:linear-gradient(to top, #ccc, whitesmoke 1px);display:flex;flex-wrap:wrap;flex-shrink:0}.fltr__mini-view--no-sort-buttons{border-bottom:1px solid #ccc;background:whitesmoke;border-bottom-left-radius:3px;border-bottom-right-radius:3px;min-height:3px}.fltr__mini-pill{margin:1px 2px;padding:1px 2px;white-space:nowrap;text-align:center;font-size:9.4px;border-radius:3px;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:none}.fltr__mini-pill:hover{-webkit-text-decoration:red line-through;text-decoration:red line-through}.fltr__mini-pill[state=yes]{background:#337ab7;color:white;display:block}.fltr__mini-pill--default-sel[state=yes]{background:#48637a}.fltr__mini-pill[state=no]{background:#822000;color:white;display:block}.fltr__mini-pill--default-desel[state=no]{background:#7a564f}.fltr__h-summary{position:relative;display:inline-block;vertical-align:middle;box-sizing:border-box;font-size:11px;line-height:22px;margin-left:auto}.fltr__h-summary-filtering{color:#333;text-shadow:0 0 1px #333}.fltr__h-btn-toggle-display{min-width:43px}.fltr__slider{width:100%}.fltr__slider.ui-slider-pips{margin:5px 40px 35px}.fltr__slider:not(.ui-slider-disabled) .ui-slider-pip:hover .ui-slider-label,.fltr__slider .ui-slider-label{color:#337ab7}.fltr__slider .ui-slider-pip-label .ui-slider-label{display:flex;justify-content:center}.fltr__slider .ui-slider-handle .ui-slider-tip{white-space:nowrap;width:60px;margin-left:-30px}.fltr__range-inline-label{margin-left:15px;flex-shrink:0;min-width:75px;text-align:right;font-style:italic}.fltr__group-comb-toggle{font-style:italic;cursor:pointer;letter-spacing:-1px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.fltr__hidden--search{display:none !important}.fltr-src__wrp-slider{background:#f0f0f0;border-radius:4px}.fltr-src__slider .ui-slider-pip .ui-slider-label{top:10px;margin-left:-36px;width:72px}.fltr-src__slider .ui-slider-handle .ui-slider-tip{margin-left:-36px;width:72px}.fltr-cls__tgl{width:16px;height:16px;padding:0;flex-shrink:0;flex-grow:0;display:inline-block;cursor:pointer;border:1px solid #ccc;border-radius:4px;outline:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border-radius:7px}.fltr-cls__tgl:active{box-shadow:0 0 2px 0 #000b}.fltr-cls__tgl.active{background:#666;border-color:#8c8c8c}.ui-slider-tip{pointer-events:none}@font-face{font-family:'Convergence';font-style:normal;font-weight:400;src:local("Convergence-Regular"),url("../fonts/Convergence-Regular.ttf") format("truetype")}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;src:local("Roboto"),url("../fonts/Roboto-regular.ttf") format("truetype")}@font-face{font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;src:local("glyphicons-halflings-regular"),url("../fonts/glyphicons-halflings-regular.ttf") format("truetype")}@font-face{font-family:'Blambot Casual';src:local("Blambot-Casual"),url("../fonts/Blambot-Casual-Regular.ttf") format("truetype")}@keyframes kf-fade-out{from{opacity:1}to{opacity:0}}.linked-titles .rd__h--0 .entry-title-inner:hover::before{font-size:50%}.linked-titles .rd__h--1 .entry-title-inner:hover::before{font-size:55%}.linked-titles .rd__h--2 .entry-title-inner:hover::before{font-size:60%}.linked-titles .rd__h .entry-title-inner{cursor:copy}.linked-titles .rd__h .entry-title-inner:hover::before{content:' 🔗';color:rgba(0,0,0,0.2);position:relative;float:left;width:14px;height:14px;right:20px;margin-right:-30px;font-size:85%}.night-mode .fltr__btn_nest{background:#222;border-color:#555}.night-mode .fltr__btn_nest:hover{background:#323232}.night-mode .fltr__btn_nest--include{background:repeating-linear-gradient(135deg, #337ab7, #337ab7 11px, transparent 11px, transparent 22px)}.night-mode .fltr__btn_nest--include:hover{background:repeating-linear-gradient(135deg, #2d6da3, #2d6da3 11px, transparent 11px, transparent 22px)}.night-mode .fltr__btn_nest--include span{background:#222}.night-mode .fltr__btn_nest--include-all{background:#337ab7}.night-mode .fltr__btn_nest--include-all:hover{background:#2d6da3}.night-mode .fltr__btn_nest--exclude{background:repeating-linear-gradient(135deg, transparent, transparent 11px, #8a1a1b 11px, #8a1a1b 22px)}.night-mode .fltr__btn_nest--exclude:hover{background:repeating-linear-gradient(135deg, transparent, transparent 11px, #751617 11px, #751617 22px)}.night-mode .fltr__btn_nest--exclude span{background:#222}.night-mode .fltr__btn_nest--exclude-all{background:#8a1a1b}.night-mode .fltr__btn_nest--exclude-all:hover{background:#751617}.night-mode .fltr__btn_nest--both{background:repeating-linear-gradient(135deg, #337ab7, #337ab7 11px, #8a1a1b 11px, #8a1a1b 22px)}.night-mode .fltr__btn_nest--both:hover{background:repeating-linear-gradient(135deg, #2d6da3, #2d6da3 11px, #751617 11px, #751617 22px)}.night-mode .fltr__dropdown-divider{border-color:#555}@media only screen and (max-width: 768px){.night-mode .fltr__dropdown-divider{box-shadow:inset 0 0 2px 2px #333;background:#555}}.night-mode .fltr__dropdown-divider--sub{border-color:rgba(85,85,85,0.627451)}.night-mode .fltr__pill{border-color:#555}.night-mode .fltr__pill[state=ignore]{background:#222}.night-mode .fltr__pill[state=ignore]:hover{background:#323232}.night-mode .fltr__pill[state=yes]{border-color:#22527b}.night-mode .fltr__pill[state=no]{border-color:#4a0e0e}.night-mode .fltr__mini-view{background:#343434;border-color:#555;background:linear-gradient(to top, #555, #343434 1px)}.night-mode .fltr__h-btn-logic--blue{color:#337ab7}.night-mode .fltr__h-btn-logic--blue:hover{color:#7398b7}.night-mode .fltr__h-btn-logic--red{color:#8a1a1b}.night-mode .fltr__h-btn-logic--red:hover{color:#8a4b4b}.night-mode .fltr-src__wrp-slider{background:#333a}.night-mode .fltr-cls__tgl{background:#222;border-color:#555}.night-mode .fltr-cls__tgl:active{box-shadow:0 0 3px 0 #fffb}.night-mode .fltr-cls__tgl.active{background:#555;border-color:#6f6f6f}@font-face{font-family:'Convergence';font-style:normal;font-weight:400;src:local("Convergence-Regular"),url("../fonts/Convergence-Regular.ttf") format("truetype")}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;src:local("Roboto"),url("../fonts/Roboto-regular.ttf") format("truetype")}@font-face{font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;src:local("glyphicons-halflings-regular"),url("../fonts/glyphicons-halflings-regular.ttf") format("truetype")}@font-face{font-family:'Blambot Casual';src:local("Blambot-Casual"),url("../fonts/Blambot-Casual-Regular.ttf") format("truetype")}@keyframes kf-fade-out{from{opacity:1}to{opacity:0}}.linked-titles .rd__h--0 .entry-title-inner:hover::before{font-size:50%}.linked-titles .rd__h--1 .entry-title-inner:hover::before{font-size:55%}.linked-titles .rd__h--2 .entry-title-inner:hover::before{font-size:60%}.linked-titles .rd__h .entry-title-inner{cursor:copy}.linked-titles .rd__h .entry-title-inner:hover::before{content:' 🔗';color:rgba(0,0,0,0.2);position:relative;float:left;width:14px;height:14px;right:20px;margin-right:-30px;font-size:85%}.ui__btn-xxl-square{width:110px;height:110px}.ui__ipt-color{width:40px;padding:0}.ui__ipt-color::-webkit-color-swatch-wrapper{padding:3px}.ui__ipt-color::-webkit-color-swatch{border:1px solid #ccc}.ui-list__wrp{transform:translateZ(0);font-size:11.2px}.ui-list__wrp-preview{font-size:13.5px}.ui-source__row{margin-left:calc(-96px - 0.5rem)}.ui-source__name{min-width:96px;white-space:nowrap;text-align:right}.ui-source__divider{height:1px;width:30px;background:#ccc;display:inline-block;margin:0 3px}.ui-modal__body-active{overflow-y:hidden !important}.ui-modal__row{margin-bottom:5px;display:flex;justify-content:space-between;align-items:center;font-weight:initial;min-height:30px}.ui-modal__row:first-of-type{margin-top:-1px}.ui-modal__row--cb{padding:0 3px;border-radius:3px}.ui-modal__row--cb:hover{background:whitesmoke}.ui-modal__row--sel{padding:0 3px}.ui-modal__row--stats-header{min-height:initial;font-weight:bold;font-size:12px;margin-bottom:0}.ui-modal__row--stats{flex-direction:column}.ui-modal__row>*{margin-right:5px}.ui-modal__row>*:last-child{margin-right:0}.ui-modal__row-sep{height:1px;width:calc(100% - 12px);margin:2px 2px 7px;background:#ccc}.ui-modal__header--border{border-bottom:1px solid rgba(204,204,204,0.627451)}.ui-modal__header--fullscreen{box-shadow:0 3px 6px rgba(0,0,0,0.175)}.ui-modal__footer{border-top:1px solid rgba(204,204,204,0.627451)}.ui-modal__footer--fullscreen{box-shadow:0 3px 6px rgba(0,0,0,0.175)}.ui-modal__overlay{position:fixed;z-index:1000;top:0;left:0;width:100vw;height:100vh;display:flex;justify-content:center;align-items:center;background-color:rgba(69,69,69,0.533333)}.ui-modal__overlay-blind{background-color:white}.ui-modal__inner{position:relative;z-index:1001;top:initial;left:initial;margin:60px auto;padding:5px 10px;float:none;height:400px;min-width:600px;max-height:400px;min-height:400px}@media (max-width: 767px){.ui-modal__inner{min-width:0}}@media (min-width: 768px){.ui-modal__inner{max-width:750px}}@media (min-width: 992px){.ui-modal__inner{max-width:970px}}@media (min-width: 1200px){.ui-modal__inner{max-width:1170px}}.ui-modal__inner--no-min-height{min-height:0;height:initial}.ui-modal__inner--uncap-height{max-height:calc(100% - 120px);height:initial}.ui-modal__inner--uncap-width{max-width:calc(100% - 180px);width:initial}.ui-modal__inner--max-width-640p{max-width:640px}.ui-modal__inner--mode-fullscreen{max-height:0;height:100vh;flex-shrink:0;min-height:100vh;border-radius:0;box-shadow:none;border:0}.ui-modal__scroller{height:100%;width:100%;min-height:0;overflow-y:auto}.ui-search__wrp-output{position:relative;height:100%;width:100%;display:flex;flex-direction:column}.ui-search__wrp-controls{width:100%;display:flex;z-index:900}.ui-search__wrp-controls--in-tabs{margin-top:-1px}.ui-search__wrp-results{position:relative;padding:3px;transform:translateZ(0);height:100%;overflow-y:auto;overflow-x:hidden;font-size:11.2px}.ui-search__row{cursor:pointer;font-weight:bold;padding:1px 2px;display:flex;justify-content:space-between;border-bottom:1px solid #ccc}.ui-search__row:hover{background:lightgrey}.ui-search__row:focus{box-shadow:inset 0 0 0 200px rgba(0,107,196,0.3)}.ui-search__sel-category{border-radius:0;max-width:180px;flex-shrink:0;border-right:0}.ui-search__ipt-search{border-radius:0;width:100%}.ui-search__ipt-search-sub-ipt[type=radio]{display:inline-block;margin:0 3px 0 0}.ui-search__ipt-search-sub-ipt-custom{max-width:30px;border-radius:0;border-left:0;margin-right:-1px;border-right-color:#e0e0e0;border-left-color:#e0e0e0;padding-left:0}.ui-search__ipt-search-sub-ipt-custom[type=number]::-webkit-inner-spin-button{margin:0;-webkit-appearance:none}.ui-search__ipt-search-sub-wrp{flex-shrink:0;margin-bottom:0;padding:5px;font-weight:normal;border:1px solid #ccc;height:34px;border-left:0;display:flex}.ui-search__ipt-search-sub-lbl{display:flex;align-items:center;height:100%}.ui-search__ipt-search-sub-lbl:not(:last-child){margin-right:7px}.ui-search__message{font-size:1.4rem;width:100%;height:100%;display:flex;justify-content:center;align-items:center;font-family:'Andada', serif;font-variant:small-caps;font-weight:500}.ui-tab__btn-tab-head{display:inline-block;padding:2px 4px 0;border-bottom-right-radius:0;border-bottom-left-radius:0;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;border-bottom:0}.ui-tab__btn-tab-head--active{background-color:#e6e6e6;border-color:#adadad}.ui-tab__wrp-tab-body{width:100%;height:100%;overflow-y:auto;overflow-x:hidden}.ui-tab__wrp-tab-body--border{padding:3px 0}.ui-tab__wrp-tab-body--background{background:#fff}.ui-tab__wrp-tab-heads--border{border-bottom:1px solid #ccc}.ui-prof__btn-cycle{width:16px;height:16px;padding:0;flex-shrink:0;flex-grow:0;display:inline-block;cursor:pointer;border:1px solid #ccc;border-radius:4px;outline:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.ui-prof__btn-cycle:active{box-shadow:0 0 2px 0 #000b}.ui-prof__btn-cycle.active{background:#666;border-color:#8c8c8c}.ui-prof__btn-cycle[data-state='0']{background:white}.ui-prof__btn-cycle[data-state='1']{background:#666;border-color:#8c8c8c}.ui-prof__btn-cycle[data-state='2']{background:#666;border-color:#8c8c8c;display:flex;line-height:14px;-moz-osx-font-smoothing:grayscale;-webkit-font-smoothing:antialiased;font-style:normal;font-variant:normal;text-rendering:auto;font-family:'Font Awesome 5 Pro';font-weight:900;color:white;font-size:12px}.ui-prof__btn-cycle[data-state='2']::before{content:'\f005'}.ui-prof__btn-cycle[data-state='3']{background:repeating-linear-gradient(135deg, white, white 10px, #666 10px, #666 20px);border-color:#8c8c8c}.ui-dir__face{position:relative;width:92px;height:92px;border-radius:46px;background:#f0f0f0;border:1px solid #ccc;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;cursor:-webkit-grab;cursor:grab}.ui-dir__arm{width:1px;height:40px;background:#333;position:absolute;top:46px;left:46px;transform:rotate(180deg);transform-origin:top;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;box-shadow:0 0 2px 0 rgba(0,0,0,0.75)}.ui-icn__wrp-icon{font-size:24px}.ui-drag__wrp-drag-block{position:absolute;top:0;right:0;bottom:0;left:0}.ui-drag__wrp-drag-dummy--highlight{background:#cfe5ff78}.ui-drag__wrp-drag-dummy--lowlight{background:transparent}.ui-drag__patch{cursor:move;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;display:flex;flex-shrink:0;padding:5px 3px;width:14px;font-size:14px}.ui-drag__dummy-patch{width:14px}.ui-drag__patch-col{display:flex;flex-direction:column;flex-shrink:0}.ui-drag__patch-col>div{line-height:4px;text-align:center}.ui-tip__parent{cursor:help;position:relative}.ui-tip__child{box-shadow:0 6px 12px rgba(0,0,0,0.175);display:none;position:absolute;border:1px solid #ccc;background:white;border-radius:3px;z-index:1;top:calc(100% + 5px);padding:5px;opacity:0;transition:opacity 84ms ease-in-out;pointer-events:none}.ui-tip__parent:hover .ui-tip__child{display:flex;opacity:1}.ui-ctx__wrp{box-shadow:0 6px 12px rgba(0,0,0,0.475);z-index:1100;font-size:14px;background:#fff;border:1px solid rgba(204,204,204,0.627451);border-top-color:#ccc}.ui-ctx__divider{height:1px;width:100%;background:#ccc}.ui-ctx__row{cursor:pointer;min-width:160px}.ui-ctx__row:hover{background:#f5f5f5}.ui-ctx__row.disabled,.ui-ctx__row.disabled:hover{cursor:default;background:#fff}.ui-pick__btn-add{font-weight:bold;padding:1px 2px;line-height:8px;font-size:18px;display:flex;height:16px}.ui-pick__btn-add--sub{line-height:11px;height:14px;font-size:16px;border-radius:0;padding:0 1px;font-weight:bold}.ui-pick__btn-remove{width:8px;line-height:20px;padding:0;border-radius:0;font-size:12px;flex-shrink:0;flex-grow:0;cursor:pointer;font-style:initial;text-indent:-1px}.ui-pick__btn-remove--sub{height:18px;line-height:16px}.ui-pick__pill{align-items:stretch}.ui-pick__disp-text{border:1px solid #ccc}.fa--btn-sm{position:relative;top:1px;font-size:15px}.fa--btn-xs{position:relative;font-size:12px}.fa--btn-xs::before{width:12px;height:14px;display:inline-block;text-align:center}.fa--btn-xs.fa-dice{left:-2px}.clp__wrp-temp{position:fixed;top:-10000px;left:-10000px;width:1px;height:1px}.clp__disp-copied{box-shadow:0 3px 6px rgba(0,0,0,0.175);position:fixed;white-space:nowrap;width:auto;transform:translateX(-50%);pointer-events:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;height:24px;line-height:24px;font-size:12px;z-index:2000;display:block}.ui-ideco__ipt--left{padding-left:22px !important}.ui-ideco__ipt--right{padding-right:22px !important}.ui-ideco__wrp{position:absolute;top:0;bottom:0;opacity:0.5;justify-content:center}.ui-ideco__wrp>.glyphicon{top:0}.ui-ideco__wrp--left{left:5px}.ui-ideco__wrp--right{right:5px}.ui-ideco__btn-ticker{transition:opacity 34ms;opacity:0;padding:0;width:14px;height:10px;border:0;font-size:14px;line-height:10px;border-radius:0;background:#0003;color:#333}.ui-ideco__btn-ticker:hover,.ui-ideco__btn-ticker:active,.ui-ideco__btn-ticker:focus,.ui-ideco__btn-ticker:active:focus{box-shadow:none;outline:none}.ui-ideco__btn-ticker:hover{background:#0005;color:#333}.ui-ideco__btn-ticker:active,.ui-ideco__btn-ticker:focus,.ui-ideco__btn-ticker:active:focus{background:#0007;color:#333}.ui-ideco__ipt:hover+.ui-ideco__wrp .ui-ideco__btn-ticker,.ui-ideco__wrp:hover .ui-ideco__btn-ticker{transition:opacity 34ms;opacity:1}.ui-sel2__ipt-search{top:0;right:0;left:0;opacity:0;background:transparent}.ui-sel2__wrp:focus>.ui-sel2__ipt-search,.ui-sel2__wrp:focus-within>.ui-sel2__ipt-search{opacity:1}.ui-sel2__wrp:focus>.ui-sel2__ipt-display,.ui-sel2__wrp:focus-within>.ui-sel2__ipt-display{text-align:right;color:#777;font-weight:bold}.ui-sel2__wrp:focus>.ui-sel2__wrp-options,.ui-sel2__wrp:focus-within>.ui-sel2__wrp-options{display:flex}.ui-sel2__wrp-options{top:22px;right:0;left:0;display:none;flex-direction:column;background:#fff;border:1px solid #ccc;border-top:0;max-height:160px}.ui-sel2__wrp-options:hover,.ui-sel2__wrp-options:active,.ui-sel2__wrp-options:focus,.ui-sel2__wrp-options:focus-within{display:flex}.ui-sel2__disp-option.active,.ui-sel2__disp-option:focus,.ui-sel2__disp-option:hover{background:#f5f5f5}.ui-sel2__disp-option:focus.active,.ui-sel2__disp-option:hover.active{background:#dcdcdc}.ui-slidr__wrp{font-size:14px}.ui-slidr__thumb{width:14px;height:18px;top:-5px;background:#f5f5f5;border:1px solid #ccc;border-radius:2px}.ui-slidr__thumb--hover,.ui-slidr__thumb:hover{background:#dcdcdc;border-color:#b3b3b3}.ui-slidr__wrp-track{padding-top:6px;padding-bottom:7px}.ui-slidr__track-outer{border:1px solid #ccc;height:10px;border-radius:3px}.ui-slidr__track-inner{background:#eee}.ui-slidr__disp-value{width:86px;height:26px;border-radius:4px}.ui-slidr__disp-value--visible{border:1px solid #ccc;background:#fff}.ui-slidr__disp-value--left{margin-right:15px;margin-left:7px}.ui-slidr__disp-value--right{margin-right:7px;margin-left:15px}.ui-slidr__wrp-bottom{height:3em}.ui-slidr__wrp-pips{padding-top:6px}.ui-slidr__pip{width:1px;height:4px;background:#ccc}.ui-slidr__pip--major{height:6px;background:#a6a6a6}.ui-slidr__pip-label{top:0;width:24px;height:20px;padding-top:20px}.ui-slidr__btn{width:80px;height:26px;border-radius:4px;flex-grow:1;margin:0 7px;border:1px solid #ccc;background:#fff}@font-face{font-family:'Convergence';font-style:normal;font-weight:400;src:local("Convergence-Regular"),url("../fonts/Convergence-Regular.ttf") format("truetype")}@font-face{font-family:'Roboto';font-style:normal;font-weight:400;src:local("Roboto"),url("../fonts/Roboto-regular.ttf") format("truetype")}@font-face{font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;src:local("glyphicons-halflings-regular"),url("../fonts/glyphicons-halflings-regular.ttf") format("truetype")}@font-face{font-family:'Blambot Casual';src:local("Blambot-Casual"),url("../fonts/Blambot-Casual-Regular.ttf") format("truetype")}@keyframes kf-fade-out{from{opacity:1}to{opacity:0}}.linked-titles .rd__h--0 .entry-title-inner:hover::before{font-size:50%}.linked-titles .rd__h--1 .entry-title-inner:hover::before{font-size:55%}.linked-titles .rd__h--2 .entry-title-inner:hover::before{font-size:60%}.linked-titles .rd__h .entry-title-inner{cursor:copy}.linked-titles .rd__h .entry-title-inner:hover::before{content:' 🔗';color:rgba(0,0,0,0.2);position:relative;float:left;width:14px;height:14px;right:20px;margin-right:-30px;font-size:85%}.ui__ipt-color::-webkit-color-swatch{border:0}.night-mode .ui-source__divider{background:#555}.night-mode .ui-modal__header--border{border-color:rgba(85,85,85,0.627451)}.night-mode .ui-modal__footer{border-color:rgba(85,85,85,0.627451)}.night-mode .ui-modal__overlay-blind{background-color:#222}.night-mode .ui-modal__row-sep{border-color:#555}.night-mode .ui-modal__inner--mode-fullscreen{box-shadow:none}.night-mode .ui-search__row{border-color:#555}.night-mode .ui-search__row:hover{background:#333}.night-mode .ui-search__ipt-search-sub-wrp{border-color:#555}.night-mode .ui-tab__btn-tab-head--active,.night-mode .ui-tab__btn-tab-head--active:focus,.night-mode .ui-tab__btn-tab-head--active:hover,.night-mode .ui-tab__btn-tab-head--active:active{background-color:rgba(255,255,255,0.25098)}.night-mode .ui-tab__wrp-tab-body--background{background:#222;border-color:rgba(85,85,85,0.627451)}.night-mode .ui-tab__wrp-tab-heads--border{border-color:#555;border-width:2px}.night-mode .ui-tab-side__wrp-tab{background:#222;border-color:rgba(85,85,85,0.627451)}.night-mode .ui-prof__btn-cycle{border-color:#555}.night-mode .ui-prof__btn-cycle:active{box-shadow:0 0 3px 0 #fffb}.night-mode .ui-prof__btn-cycle[data-state='0']{background:#222}.night-mode .ui-prof__btn-cycle[data-state='1']{background:#555;border-color:#6f6f6f}.night-mode .ui-prof__btn-cycle[data-state='2']{background:#555;border-color:#6f6f6f}.night-mode .ui-prof__btn-cycle[data-state='2']::before{color:#222}.night-mode .ui-prof__btn-cycle[data-state='3']{background:repeating-linear-gradient(135deg, #222, #222 10px, #555 10px, #555 20px);border-color:#6f6f6f}.night-mode .ui-dir__face{background:#222;border-color:#555}.night-mode .ui-dir__arm{background:#bbb;box-shadow:none}.night-mode .ui-tip__child{border-color:#555;background:#222}.night-mode .ui-ctx__wrp{background:#222;border:1px solid rgba(85,85,85,0.627451);border-top-color:#555}.night-mode .ui-ctx__divider{background:#555}.night-mode .ui-ctx__row:hover{background:#383838;color:white}.night-mode .ui-ctx__row.disabled,.night-mode .ui-ctx__row.disabled:hover{background:#222;color:#bbb}.night-mode .ui-pick__disp-text{border-color:#555}.night-mode .ui-ideco__btn-ticker{background:#555;color:white}.night-mode .ui-ideco__btn-ticker:hover,.night-mode .ui-ideco__btn-ticker:active,.night-mode .ui-ideco__btn-ticker:focus,.night-mode .ui-ideco__btn-ticker:active:focus{box-shadow:none;outline:none}.night-mode .ui-ideco__btn-ticker:hover{background:#484848;color:white}.night-mode .ui-ideco__btn-ticker:active,.night-mode .ui-ideco__btn-ticker:focus,.night-mode .ui-ideco__btn-ticker:active:focus{background:#3c3c3c;color:white}.night-mode .ui-sel2__ipt-search{background:transparent}.night-mode .ui-sel2__wrp-options{background-color:#222;border-color:#555}.night-mode .ui-sel2__disp-option.active,.night-mode .ui-sel2__disp-option:focus,.night-mode .ui-sel2__disp-option:hover{background:#383838}.night-mode .ui-sel2__disp-option:focus.active,.night-mode .ui-sel2__disp-option:hover.active{background:#525252}.night-mode .ui-slidr__thumb{background:rgba(204,204,204,0.627451);border-color:#bbb}.night-mode .ui-slidr__thumb--hover,.night-mode .ui-slidr__thumb:hover{background:rgba(230,230,230,0.627451);border-color:#bbb}.night-mode .ui-slidr__track-outer{border-color:#555}.night-mode .ui-slidr__track-inner{background:rgba(85,85,85,0.627451)}.night-mode .ui-slidr__disp-value--visible{border-color:#555;background:#222}.night-mode .ui-slidr__pip{background:#bbb}.night-mode .ui-slidr__btn{border-color:#555;background:#222}@font-face{font-family:'good-pro-condensed';font-style:normal;font-weight:700;src:local("font"),url("../fonts/good-pro-condensed-700.ttf") format("truetype")}@font-face{font-family:'good-pro-condensed';font-style:normal;font-weight:400;src:local("font"),url("../fonts/good-pro-condensed-400.ttf") format("truetype")}@font-face{font-family:'good-pro';font-style:normal;font-weight:400;src:local("font"),url("../fonts/good-pro-400.ttf") format("truetype")}@font-face{font-family:'good-pro';font-style:italic;font-weight:400;src:local("font"),url("../fonts/good-pro-italic-400.ttf") format("truetype")}@font-face{font-family:'good-pro';font-style:normal;font-weight:700;src:local("font"),url("../fonts/good-pro-700.ttf") format("truetype")}@font-face{font-family:'Pathfinder2eActions';font-style:normal;font-weight:700;src:local("font"),url("../fonts/Pathfinder2eActions.ttf") format("truetype")}@font-face{font-family:'dax';font-style:normal;font-weight:400;src:local("font"),url("../fonts/Dax-Regular.ttf") format("truetype")}@font-face{font-family:'dax';font-style:normal;font-weight:700;src:local("font"),url("../fonts/Dax-bold.ttf") format("truetype")}@font-face{font-family:'gin';font-style:normal;font-weight:400;src:local("font"),url("../fonts/Gin-Regular.ttf") format("truetype")}@font-face{font-family:'Sabon';font-style:normal;font-weight:400;src:local("font"),url("../fonts/Sabon-Roman.ttf") format("truetype")}@font-face{font-family:'Sabon';font-style:italic;font-weight:400;src:local("font"),url("../fonts/Sabon-Italic.ttf") format("truetype")}@font-face{font-family:'Sabon';font-style:italic;font-weight:700;src:local("font"),url("../fonts/Sabon-BoldItalic.ttf") format("truetype")}@font-face{font-family:'Sabon';font-style:normal;font-weight:700;src:local("font"),url("../fonts/Sabon-Bold.ttf") format("truetype")}@font-face{font-family:'Taroca';font-style:normal;font-weight:400;src:local("font"),url("../fonts/Taroca.ttf") format("truetype")}@font-face{font-family:'SabonLTStd';font-style:normal;font-weight:400;src:local("font"),url("../fonts/SabonLTStd-Roman.ttf") format("truetype")}@font-face{font-family:'SabonLTStd';font-style:italic;font-weight:400;src:local("font"),url("../fonts/SabonLTStd-Italic.ttf") format("truetype")}@font-face{font-family:'SabonLTStd';font-style:italic;font-weight:700;src:local("font"),url("../fonts/SabonLTStd-BoldItalic.ttf") format("truetype")}@font-face{font-family:'SabonLTStd';font-style:normal;font-weight:700;src:local("font"),url("../fonts/SabonLTStd-Bold.ttf") format("truetype")}@font-face{font-family:'Basing';font-style:normal;font-weight:400;src:local("font"),url("../fonts/Basing.ttf") format("truetype")}@font-face{font-family:'Albertus';font-style:normal;font-weight:400;src:local("font"),url("../fonts/AlbertusMT.ttf") format("truetype")}.pf2-book-wrapper{display:flex;flex-direction:column;align-items:stretch;padding:1em !important;border-top:2px solid #5e0000;border-bottom:2px solid #5e0000;overflow-x:hidden}.pf2-book{font-family:'SabonLTStd', sans-serif}.pf2-book .rd__list li{font-size:1em;line-height:1.35em}.pf2-book--stat{font-size:1em;margin:1em 0}.pf2-book--stat .rd__list li{font-size:1em}.pf2-book__option{font-family:'good-pro', sans-serif;font-size:1em;margin:0;padding-left:1em;text-indent:-1em}.pf2-book .pf2-other-source{font-family:'SabonLTStd', sans-serif;font-size:1em;text-align:justify;line-height:1.35em}.pf2-book .pf2-other-source+.pf2-other-source{text-indent:1em}.pf2-wrp-stat{margin:1em 0;clear:both}.pf2-stat{font-family:'good-pro', sans-serif;text-align:justify;line-height:1.33em;font-weight:400;text-indent:0}.pf2-stat__name{margin:0;padding:0;font-family:'good-pro-condensed', sans-serif;font-size:1.35em;font-weight:700;text-transform:uppercase;line-height:1;text-align:left}.pf2-stat__name--level{margin-left:auto !important;padding-left:1em}.pf2-stat__name .pf2-action-icon{font-size:1.5em}.pf2-stat__line{border-top:1px solid black;height:0;margin:0.05em 0 0.2em;display:flex}.pf2-stat__text{margin:0;text-indent:0}.pf2-stat__text--wide{margin:0}.pf2-stat__text--wide+.pf2-stat__text--wide{text-indent:1em}.pf2-stat__text ~ .pf2-stat__text{text-indent:1em}.pf2-stat__section{margin:0;padding-left:1em;text-indent:-1em;display:block}.pf2-stat__section--wide{margin:0}.pf2-stat__source{font-family:'good-pro', sans-serif;line-height:1.33em;font-size:0.75em;font-weight:400;margin:0;padding-top:0.3em;text-align:right;font-style:italic}.pf2-stat__source--other{display:block;font-size:0.95em}.pf2-trait{display:inline-block;box-sizing:border-box;margin:0;padding:0.4em 1.1em 0.25em;min-width:5em;color:white;font-family:'good-pro-condensed', sans-serif;font-size:0.75em;font-weight:700;line-height:1;letter-spacing:0.01em;text-align:center;text-transform:uppercase;background:#5e0000;border:0.12em solid #d9c484;border-bottom-width:0.07em;border-top-width:0.07em}.pf2-trait:hover{text-decoration:none !important;color:yellow !important}.pf2-trait--notag:hover{text-decoration:none !important;color:white !important}.pf2-trait--unique{background:#54166e}.pf2-trait--rare{background:#002664}.pf2-trait--uncommon{background:#98513d}.pf2-trait--alignment{background:#576293;min-width:2em}.pf2-trait--size{background:#3b7b59}.pf2-trait--settlement{background:#004416}.pf2-trait--left{border-left-width:0.33em}.pf2-trait--right{border-right-width:0.33em}.pf2-action-icon{font-family:'Pathfinder2eActions';font-size:1.78em;line-height:0}.pf2-action-icon::after{content:attr(data-symbol)}.pf2-action-icon-copy-text{opacity:0;position:absolute}.night-mode .pf2-stat__line{border-color:#aaa}.night-mode .pf2-trait{color:#dedada}.pf2-h1{color:#5e0000;position:relative;width:100%;margin:0;padding:0.3em 0 0;font-family:'Taroca', sans-serif;font-size:2.3em;font-weight:700;text-transform:uppercase;text-align:center;line-height:1em}.pf2-h1--collapse{position:absolute;right:0;line-height:0.8em}.pf2-h1--blue{color:#002664}.pf2-h1:hover .pf2-h--source{display:inline-block}.pf2-h1-flavor{color:#5e0000;margin:0;padding:0;font-family:'SabonLTStd', sans-serif;font-style:italic;font-size:1.2em;font-weight:400;text-align:justify;line-height:1.34em}.pf2-h1-flavor+.pf2-h1-flavor{text-indent:1em}.pf2-h1-flavor--centered{text-align:center}.pf2-h2{color:#002664;position:relative;width:100%;margin:0 0 0.1em;padding:0;font-family:'Taroca', sans-serif;font-size:2em;font-weight:700;line-height:1em;text-align:left}.pf2-h2--collapse{position:relative;right:0;margin-right:0.5em}.pf2-h2__step{z-index:40;display:flex;flex:1;margin:0 0 0.1em -2em;padding:0.05em 0.05em 0.05em 1.8em;height:-webkit-fit-content;height:-moz-fit-content;height:fit-content;min-width:calc(100% - 3.4em);color:#002664;background:#d1d3d4;font-family:'Taroca', sans-serif;font-size:1.6em;font-weight:700;text-transform:uppercase;line-height:1em}.pf2-h2__step+.pf2-h2{margin:-0.9em 0 0.1em calc(2.02em + 6px)}.pf2-h2__step-num{z-index:50;margin:-0.15em 0.3em 0 0;padding:0;border:3px solid #d9c484;height:1.4em;width:1.4em;border-radius:50%;background:#002664;color:#d9c484;text-align:center;font-family:'Taroca', sans-serif;font-size:2.8em;text-transform:uppercase;line-height:1.4em}.pf2-h2--wrp{display:flex;flex-flow:wrap;margin:1em 0 0}.pf2-h2:hover .pf2-h--source{display:inline-block}.pf2-h3{color:#5e0000;position:relative;margin:0;padding:0.6em 0 0;font-family:'Gin', sans-serif;font-size:1.2em;font-weight:400;line-height:1.2em;display:flex;text-align:left}.pf2-h3--lvl{margin-left:auto !important}.pf2-h3:hover .pf2-h--source{display:inline-block}.pf2-h4{color:#a86753;position:relative;margin:0;padding:0.3em 0 0;font-family:'Gin', sans-serif;font-size:1.2em;font-variant:small-caps;font-weight:400;line-height:1.2em;display:flex;vertical-align:bottom;text-align:left}.pf2-h4--lvl{margin-left:auto !important}.pf2-h4:hover .pf2-h--source{display:inline-block}.pf2-h5{background:#002664;border-top-left-radius:0.4em;border-top-right-radius:0.4em;box-shadow:0 2px #f6f4f2, 0 3px black;color:#ede3c8;margin:0.3em 0;padding:0.3em 0.4em 0.25em;font-family:'Gin', sans-serif;font-size:1.36em;font-weight:400;line-height:0.8em;text-transform:uppercase;display:flex;text-align:left}.pf2-h--collapse{opacity:40%;position:absolute;right:0;font-size:0.5em}.pf2-p{color:black;margin:0;padding:0;font-family:'SabonLTStd', sans-serif;font-size:1em;font-weight:400;text-align:justify;line-height:1.35em}.pf2-p+.pf2-p{text-indent:1em}.pf2-other-source{margin:0;padding:0}.pf2-table{margin:1em 0 0.3em;padding:0;display:grid;grid-gap:0;line-height:1.3em;font-size:1.1em;overflow:auto;clear:left;text-align:left}.pf2-table__name{padding:0;font-family:'good-pro', sans-serif;font-size:1em;font-weight:700;text-transform:uppercase;line-height:1;grid-column-start:1;grid-column-end:-1}.pf2-table__caption{padding:0 0 0 0.2em;font-family:'good-pro-condensed', sans-serif;font-size:1.3em;font-weight:700;text-transform:uppercase;line-height:1;grid-column-start:1;grid-column-end:-1;text-align:left}.pf2-table__label{padding:0 0.3em;background:#5e0000;color:white;font-family:'good-pro', sans-serif;font-size:0.9em;font-weight:700;line-height:1.2em;display:grid;align-content:end}.pf2-table__entry{padding:0 0.3em;color:black;background:#ede3c8;font-family:'good-pro', sans-serif;font-size:0.9em}.pf2-table__entry.odd{background:#f5efe0}.pf2-table__entry.border-left{border-left:1px solid #5e0000}.pf2-table__entry.border-right{border-right:1px solid #5e0000}.pf2-table__entry.border-top{border-top:1px solid #5e0000}.pf2-table__entry.border-bottom{border-bottom:1px solid #5e0000}.pf2-table__entry .rd__list{margin-top:0;margin-bottom:0}.pf2-table__footnote{padding:0 0.3em;font-family:'good-pro', sans-serif;font-size:0.9em;background:#e6d8b0;grid-column-start:1;grid-column-end:-1}.pf2-table__intro{color:black;font-family:'good-pro', sans-serif;font-size:0.9em;grid-column-start:1;grid-column-end:-1}.pf2-table__outro{color:black;font-family:'good-pro', sans-serif;font-size:0.9em;grid-column-start:1;grid-column-end:-1}.pf2-table--advancements{grid-template-columns:1fr 7fr}.pf2-sidebar{float:right;clear:right;border-left:solid 2px #5e0000;color:#5e0000;width:35%;max-width:300px;min-width:170px;margin:0.4em -1em 0.4em 1em;font-family:'good-pro', sans-serif;font-size:1em}.pf2-sidebar .pf2-title{font-size:1.1em;font-weight:700;margin:0;font-family:'good-pro', sans-serif;padding:0.6em 0.82em 0}.pf2-sidebar .pf2-stat{padding:0 1em;text-indent:0;text-align:revert}.pf2-sidebar .rd__list{padding:0 1em 0 calc(1em + 24px)}.pf2-sidebar__title{font-size:1.1em;font-weight:700;margin:0;padding:0 0.82em}.pf2-sidebar__text{margin:0;font-size:0.9em;font-weight:400;padding:0 1em}.pf2-sidebar--left{float:left;clear:left;border-right:solid 2px #5e0000;border-left:unset;width:35%;max-width:300px;min-width:170px;margin:0.4em 2em 0.4em -1em;font-size:1em}.pf2-sidebar--class .pf2-title,.pf2-sidebar--class .pf2-sidebar__title{font-family:'Gin', sans-serif;font-weight:400}.pf2-sidebar--full{height:100%}.pf2-sidebar .rd__quote-line{padding:0 1em}@media only screen and (max-width: 440px){.pf2-sidebar{width:calc(100%);max-width:none;float:none}}.pf2-sidebar--compact{display:grid;grid-template-columns:1fr 1fr;grid-gap:0;color:#5e0000}.pf2-sidebar--compact div:nth-child(2n+1){border-right:2px solid #5e0000}.pf2-sidebar--compact .pf2-title{margin:0;font-family:'good-pro', sans-serif;font-size:1.1em;font-weight:700;padding:0.6em 0.6em 0}.pf2-sidebar--compact .pf2-sidebar__text{margin:0;font-family:'good-pro', sans-serif;font-size:0.9em;font-weight:400;padding:0 0.6em}.pf2-chapter__line{margin-top:0.5em;height:1px;background:#5e0000;width:calc(50% - 1.6em)}.pf2-chapter__line--l{margin-right:-1em;margin-left:0}.pf2-chapter__line--r{margin-right:0;margin-left:-1em}.pf2-chapter__swirl{margin-top:0.22em;padding:0;fill:#5e0000;width:3.2em;height:1.38em}.pf2-chapter__swirl--l{margin-right:-0.12em}.pf2-chapter__swirl--r{margin-left:-0.12em;transform:scaleX(-1)}.pf2-key-abilities{color:white;background:#5e0000;border:2px solid #b29e74;display:flex;margin:0.3em 0}.pf2-key-abilities__ab{box-shadow:8px 0 0 -6px #b29e74;width:calc(50% - 3px);padding:0 1em 1em}.pf2-key-abilities__hp{padding:0 1em 1em;width:calc(50% - 1px)}.pf2-key-abilities__title{margin:0;padding-bottom:0.3em;font-family:'Gin', sans-serif;font-weight:400;font-size:1.2em;text-align:left}.pf2-key-abilities__text{font-family:'good-pro', sans-serif;font-weight:700;font-size:0.9em;text-align:left;line-height:1.2em;margin:0}.pf2-key-abilities__text ~ .pf2-key-abilities__text{font-weight:400}@media only screen and (max-width: 520px){.pf2-key-abilities{flex-direction:column}.pf2-key-abilities__ab{box-shadow:0 8px 0 -6px #b29e74;width:100%}.pf2-key-abilities__hp{width:100%;padding:0.3em 1em 1em}}.pf2-combo{display:flex;margin:0.3em 0}.pf2-combo__title{margin:0;padding:0;border-bottom:1px solid #333;font-family:'good-pro-condensed', sans-serif;font-size:1.15em;font-weight:700;text-transform:uppercase;line-height:1;text-align:left}.pf2-combo__start{width:calc(50% - 3px);padding:0 1em 0 0}.pf2-combo__end{border-left:1px solid #333;padding:0 1em 0 0.4em;width:calc(50% - 1px)}@media only screen and (max-width: 520px){.pf2-combo{flex-direction:column}.pf2-combo__start{width:100%;padding:0.05em 0 0 0.2em}.pf2-combo__end{border-top:1px solid black;border-left:0;padding:0.05em 0 0 0.2em;width:100%}}.pf2-key-box{color:white;overflow:auto;background:#5e0000;border:2px solid #b29e74;margin:0.3em 0;padding:0.6em}.pf2-key-box__title{margin:0;font-family:'Gin', sans-serif;font-weight:700;font-size:1.4em;text-align:center}.pf2-key-box__text{font-family:'good-pro', sans-serif;font-weight:400;font-size:1.2em;text-align:left;line-height:1.2em;margin:0}.pf2-key-box .pf2-title{margin:0;font-family:'Gin', sans-serif;font-weight:700;font-size:1.4em;text-align:center}.pf2-tips-box{display:flex;flex-direction:column;font-family:'good-pro', sans-serif;background:#d1d3d4;margin:0.3em 0;padding:0;font-size:0.9em;max-width:100%}.pf2-tips-box__title{margin:0;padding:0.2em 0.3em 0;background:#002664;color:#d9c484;font-weight:700;font-size:1.22em;text-transform:uppercase;text-align:left;line-height:1.2em}.pf2-tips-box__text{line-height:1.2em;text-align:justify;margin:0;padding:0.1em 0.3em}.pf2-sample-box{background:#eae4d8;margin:0.3em 0;padding:0 1em 0.3em;font-family:'good-pro', sans-serif;font-size:1em;max-width:100%;overflow:auto}.pf2-sample-box__title{margin:0;padding:0.3em 1em;font-weight:700;line-height:1.2em;text-align:center}.pf2-sample-box__section{margin:0;padding:0 1em 0 1.3em;font-weight:400;line-height:1.2em;text-indent:-1em}.pf2-sample-box__text{margin:0;padding:0 0.3em 0.3em;font-weight:400;line-height:1.2em}.pf2-sample-box .pf2-title{margin:0;padding:0.3em 1em;font-weight:700;line-height:1.2em;text-align:center}.pf2-sample-box *+.pf2-title{margin-top:0.6em}.pf2-beige-box{background:#f1e9d4;margin:0.6em 0;padding:0.3em 1em;overflow:auto;font-family:'good-pro', sans-serif;font-size:1em;max-width:100%}.pf2-beige-box__title{margin:0;font-weight:700;line-height:1.2em;text-align:left}.pf2-beige-box__text{margin:0;font-weight:400;line-height:1.2em;text-align:justify}.pf2-beige-box__text+.pf2-beige-box__text{text-indent:1em}.pf2-beige-box .pf2-title{margin:0;font-weight:700;line-height:1.2em;text-align:left}.pf2-beige-box *+.pf2-title{margin-top:0.6em}.pf2-inset{background:#eae4d8;overflow:auto;border-top:1px solid #c99a89;border-bottom:1px solid #c99a89;font-family:'good-pro', sans-serif;font-size:1em;font-weight:700;line-height:1.2em;text-align:center;margin:0.3em 0.6em;padding:0 1em;height:-webkit-fit-content;height:-moz-fit-content;height:fit-content}.pf2-box{position:relative;left:3%;margin:1.6em 0 0.6em;padding:0.6em 1.6em;font-family:'good-pro', sans-serif;width:94%;min-width:120px;border-radius:2px;font-size:1em}.pf2-box__title{position:relative;z-index:2;top:-0.36em;left:0;padding:0 0.3em;display:block;font-weight:bold;font-size:1.22em;text-transform:uppercase;text-align:center}.pf2-box__text{margin:0;text-indent:0;text-align:justify;line-height:1.2em}.pf2-box__text+.pf2-box__text{text-indent:0.9em}.pf2-box__swirl{position:absolute;z-index:1;top:-2em;background:none !important;display:flex;width:4em;height:4em}.pf2-box__swirl--right{right:-0.6107em}.pf2-box__swirl--left{left:-0.6107em}.pf2-box__swirl-connection{position:absolute;z-index:1;top:-0.476em;right:2em;height:2em;width:calc(100% - 4em);display:flex}.pf2-box__table--red{margin-top:1em;font-family:'good-pro', sans-serif;border-collapse:collapse;display:grid;overflow:auto}.pf2-box__table--red .pf2-table__label{padding:0 1em;font-size:1em;text-align:center}.pf2-box__table--red .pf2-table__entry{padding:0 1em;background:#5e0000;color:white;border-left:1px solid #b29e74;border-right:1px solid #b29e74}.pf2-box--red{background-color:#5e0000;fill:#5e0000;color:white}.pf2-box--brown{background-color:#c8bca5;fill:#c8bca5;color:black}.pf2-box .pf2-title{margin:1em 1em 0;font-size:1.22em;font-weight:700;text-align:center;text-transform:uppercase}.pf2-paper-wrp{display:flex;flex-direction:column}.pf2-paper{position:relative;color:black;left:3%;margin:0.3em 0 0.6em;padding:0.6em 1.6em;width:94%;min-width:120px;border-style:solid;border-width:30px;border-image-source:url("../img/letter.webp");border-image-slice:30 fill;border-image-repeat:round}.pf2-paper__header{margin-bottom:0.6em;text-align:end}.pf2-paper__signature{margin-top:0.3em;text-align:end}.pf2-paper__text{margin:0}.pf2-paper__footer{font-size:0.7em;margin-top:1em}.pf2-paper__footer .pf2-paper__text{padding-left:1em;text-indent:-1em}.pf2-paper__entries .pf2-paper__text+.pf2-paper__text{text-indent:1em}.pf2-paper--dark{color:black !important;border-image-source:url("../img/letter-dark.webp")}.pf2-paper .pf2-title{font-size:1.3em;font-weight:bold;margin:0}.pf2-paper-title{font-family:'good-pro', sans-serif;font-size:1.1em;position:relative;left:6%;width:88%;margin:1em 0 0}.pf2-letter{font-family:'Basing', sans-serif;color:#492706;font-size:1.18em;font-style:italic}.pf2-letter .pf2-title{font-size:1.3em;font-weight:bold;letter-spacing:0.03em;margin:0}.pf2-research{font-family:'Albertus', sans-serif}.pf2-research .pf2-title{font-weight:normal;font-size:1.6em;margin:0}.pf2-handwriting{font-family:'Basing', sans-serif;font-size:1.18em;font-style:italic}.no-border-left{border-left-style:none !important}.no-border-right{border-right-style:none !important}.no-font-style{font-weight:normal !important;font-style:normal !important;font-variant:none !important;text-decoration:none !important}.text-no-indent{text-indent:0 !important}.text-indent-first{text-indent:1em !important}.text-indent-subsequent{padding-left:1em !important;text-indent:-1em !important}.hidden-fluff{display:none !important}.scroll-to-highlight .rd__h{-webkit-animation:flash-highlight 1s linear 2;animation:flash-highlight 1s linear 2}@-webkit-keyframes flash-highlight{50%{opacity:10%}}@keyframes flash-highlight{50%{opacity:10%}}.rigen__visible{display:none}.rigen__btn_list{padding:0 1px;line-height:12px;font-size:9px;border-radius:3px}.rigen_active .rigen__visible{display:block}.rigen_active .rigen__visible--flex{display:flex}.rigen_active .rigen__visible--flex-col{display:flex;flex-direction:column}.rigen_active .rigen__hidden{display:none !important}.rigen_active .rigen__name{width:26.66666666%}.rigen_active .rigen__name--sub{width:29.16666667%}#rigen__runelist{min-height:0}.ecgen__xp_total{font-size:0.8em;margin-left:auto !important;line-height:28px}.ecgen__overlevel{color:red;margin-top:10px;margin-bottom:-10px}.hr-other-source{margin:15px 0;border-top:1px solid #ddd}.pf2-summary{height:50vh;display:flex;flex-direction:row}.pf2-summary__text{margin:1em;font-size:1.3em;width:100%;display:flex;flex-direction:column;flex-grow:1}.pf2-summary__text .pf2-p{text-align:left}.pf2-summary__text .pf2-h1-flavor{text-align:left}.pf2-summary__text .pf2-h4{margin-top:auto}.pf2-summary__image{height:100%;display:none;width:100%;align-items:center}.pf2-summary__image--no-image{width:55%}.pf2-summary__image--no-image p{width:100%;text-align:center;align-self:center;font-style:italic;color:#5e0000}.pf2-summary__image img{height:calc(100% - 2em);max-width:100%;-o-object-fit:scale-down;object-fit:scale-down;margin:1em 0 1em auto}.pf2-summary__image a{width:100%;text-align:center}.feat-view--resizable{min-height:100px;max-height:80%}.feat-view--active .feat-view--resizable::after{content:'...';background-color:#aaa4;border:1px solid rgba(204,204,204,0.4);position:absolute;bottom:3px;height:2px;width:100%;cursor:ns-resize;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;line-height:1px;font-size:10px;text-align:center}.feat-view--active .wrp-stats-table{max-height:calc(100% - 15px)}.feat-view--inactive .feat-view{display:none !important}.feat-view--inactive .feat-view+.fltr__mini-view{display:none !important}.feat-view--inactive .feat-view--resizable{height:revert !important}.feat-view--inactive .feat-view--resizable .wrp-stats-table{max-height:100% !important}.feat-view--resizable{position:relative;overflow:hidden}.bkv__content-wrp{overflow-x:hidden;overflow-y:scroll}.cls-sc-tabs__wrp::before{content:attr(data-sc-type);width:100%;margin:1rem 0.25rem 0.25rem;font-weight:bold;border-bottom:1px solid #ccc}.anc-h-tabs__wrp::before{content:attr(data-h-type);width:100%;margin:1rem 0.25rem 0.25rem;font-weight:bold;border-bottom:1px solid #ccc}.cap-first::first-letter{text-transform:uppercase}.night-mode .pf2-h1,.night-mode .pf2-h1-flavor,.night-mode .pf2-h3,.night-mode .pf2-sidebar{color:#e06565}.night-mode .pf2-sidebar{border-color:#e06565}.night-mode .pf2-sidebar--compact{color:#e06565}.night-mode .pf2-sidebar--compact div{border-color:#e06565}.night-mode .pf2-chapter__line{background:#e06565}.night-mode .pf2-chapter__swirl{fill:#e06565}.night-mode .pf2-h1--blue{color:#6594e0}.night-mode .pf2-h2{color:#6594e0}.night-mode .pf2-h2__step{color:#6594e0;background:#021830}.night-mode .pf2-h2__step-num{color:#021830;border-color:#021830;background:#6594e0}.night-mode .pf2-h4{color:#eb9d86}.night-mode .pf2-h5{color:#c99d51;background:#021830;box-shadow:0 2px #222,0 3px #021830}.night-mode .pf2-p{color:#bbb}.night-mode .pf2-trait{background:#472c2c;border-color:#c99d51;color:#dbdbdb}.night-mode .pf2-trait--notag:hover{text-decoration:none !important;color:#dbdbdb !important}.night-mode .pf2-trait--alignment{background:#4c505e}.night-mode .pf2-trait--size{background:#334f40}.night-mode .pf2-trait--settlement{background:#263d2d}.night-mode .pf2-trait--uncommon{background:#664e47}.night-mode .pf2-trait--rare{background:#29364a}.night-mode .pf2-trait--unique{background:#44354a}.night-mode .pf2-table__label{background:#472c2c;color:#c9c9c9}.night-mode .pf2-table__entry{background-color:#3b3a38;color:#bbb}.night-mode .pf2-table__entry.odd{background-color:#333230}.night-mode .pf2-table__entry.border-left{border-color:#472c2c}.night-mode .pf2-table__entry.border-right{border-color:#472c2c}.night-mode .pf2-table__footnote{background-color:#141414}.night-mode .pf2-table__intro,.night-mode .pf2-table__outro{color:#bbb}.night-mode .pf2-box--brown{background-color:#2e2c27;fill:#2e2c27;color:#bbb}.night-mode .pf2-box--red{background-color:#472c2c;fill:#472c2c;color:#c9c9c9}.night-mode .pf2-box__table--red .pf2-table__entry{background:#472c2c;border-color:#c99d51;color:#c9c9c9}.night-mode .pf2-beige-box,.night-mode .pf2-sample-box{background:#2e2c27}.night-mode .pf2-tips-box{background:#021830}.night-mode .pf2-tips-box__title{color:#021830;background:#6594e0}.night-mode .pf2-inset{border-color:#544c3a;background:#2e2c27}.night-mode .pf2-key-box,.night-mode .pf2-key-abilities{background:#472c2c;border-color:#c99d51;color:#c9c9c9}.night-mode .pf2-key-box__ab,.night-mode .pf2-key-abilities__ab{box-shadow:8px 0 0 -6px #c99d51}@media only screen and (max-width: 520px){.night-mode .pf2-key-box__ab,.night-mode .pf2-key-abilities__ab{box-shadow:0 8px 0 -6px #c99d51}}.night-mode .pf2-combo__end{border-color:#bbb}.night-mode .pf2-combo__title{border-color:#bbb}@media only screen and (max-width: 520px){.night-mode .pf2-combo__end{border-top:1px solid #bbb;border-left:0}}.night-mode .pf2-paper{filter:saturate(0.9) brightness(0.9)}.night-mode .pf2-book-wrapper{border-color:#e06565}.night-mode .pf2-summary__image--no-image p{color:#e06565}.night-mode .initial-message{color:#e06565}.night-mode .anc-h-tabs__wrp::before,.night-mode .cls-sc-tabs__wrp::before{border-color:#555}.rd__list-decimal--bold{padding:0 1em;list-style:decimal}.rd__list-decimal--bold li::marker{font-weight:bold} +/*# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJzb3VyY2VzIjpbIi4uL3Njc3MvdmFycy5zY3NzIiwiLi4vc2Nzcy9ib290c3RyYXAtY3VzdG9tLnNjc3MiLCIuLi9zY3NzL3N0eWxlLnNjc3MiLCIuLi9zY3NzL3JlbmRlci5zY3NzIiwiLi4vc2Nzcy9yZW5kZXItbmlnaHQuc2NzcyIsIi4uL3Njc3MvbmF2LnNjc3MiLCIuLi9zY3NzL2hvdmVyLnNjc3MiLCIuLi9zY3NzL3NvdXJjZS5zY3NzIiwiLi4vc2Nzcy9maWx0ZXIuc2NzcyIsIi4uL3Njc3MvZmlsdGVyLW5pZ2h0LnNjc3MiLCIuLi9zY3NzL3VpLnNjc3MiLCIuLi9zY3NzL3VpLW5pZ2h0LnNjc3MiLCIuLi9zY3NzL3BmMi5zY3NzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLFdBQ0MseUJBQTBCLENBQzFCLGlCQUFrQixDQUNsQixlQUFnQixDQUNoQiwyRkFBNkYsQ0FHOUYsV0FDQyxvQkFBcUIsQ0FDckIsaUJBQWtCLENBQ2xCLGVBQWdCLENBQ2hCLHlFQUEyRSxDQUc1RSxXQUNDLGtDQUFtQyxDQUNuQyxpQkFBa0IsQ0FDbEIsZUFBZ0IsQ0FDaEIsNkdBQStHLENBR2hILFdBQ0MsNEJBQTZCLENBQzdCLHlGQUEyRixDQUc1RiwrQkFDQyxLQUNDLFNBQVUsQ0FHWCxHQUNDLFNBQVUsQ0FBQSxDQU5aLHVCQUNDLEtBQ0MsU0FBVSxDQUdYLEdBQ0MsU0FBVSxDQUFBLENBMk1YLDBEQUNDLGFBQWMsQ0FDZCwwREFHQSxhQUFjLENBQ2QsMERBR0EsYUFBYyxDQUNkLHlDQUlELFdBQVksQ0FFWix1REFDQyxhQUFTLENBQU0scUJBQ1IsQ0FBa0IsaUJBQ2YsQ0FBUSxVQUNYLENBQUksVUFDSixDQUFJLFdBQ0gsQ0FBSSxVQUNMLENBQUksa0JBQ0csQ0FBSyxhQUNSLENBQUcsV0FwUU4seUJBQ0ksQ0FBYSxpQkFDZCxDQUFNLGVBQ0wsQ0FBRywyRkFDMkQsQ0FBa0IsV0FHcEYsb0JBQ0ksQ0FBUSxpQkFDVCxDQUFNLGVBQ0wsQ0FBRyx5RUFDeUMsQ0FBa0IsV0FHbEUsa0NBQ0ksQ0FBc0IsaUJBQ3ZCLENBQU0sZUFDTCxDQUFHLDZHQUM2RSxDQUFrQixXQUd0Ryw0QkFDSSxDQUFnQix5RkFDNEMsQ0FBa0IsdUJBR2xGLEtBQ0wsU0FDTSxDQUFDLEdBR1QsU0FDUSxDQUFDLENBQUEsMERBMk0rQixhQUM5QixDQUFHLDBEQUcyQixhQUM5QixDQUFHLDBEQUcyQixhQUM5QixDQUFHLHlDQUlVLFdBQ2pCLENBQUksdURBRUcsYUFDTCxDQUFBLHFCQUNGLENBQUEsaUJBQ0csQ0FBQSxVQUNILENBQUEsVUFDQSxDQUFBLFdBQ0MsQ0FBQSxVQUNELENBQUEsa0JBQ08sQ0FBQSxhQUNILENBQUEsK0JDalFTLDhCQUVMLENBQUEsNEJBR0UsOEJBRUYsQ0FBQSxnQkFDaEIsT0FLSyxDQUFBLFNBQ0UsQ0FBQSxRQUNQLGFEOEJpQixDQUFBLGNDekJULENBQUEsY0FHRyxhRG9DVyxDQUFBLFNDbEN0Qiw2QkFHYSxDQUFBLE1BQ2Isb0NBSWEsQ0FBQSxjQUViLHFCQUVjLENBQUEsVUFDYixxQkFJdUIsQ0FBQSxVQUN4Qix3QkFHVyxDQUFBLFdBQ1gseUJBR1EsQ0FBQSxpQkFFUix3QkFDdUIsQ0FBQSxlQUN0Qix5QkFJTyxDQUFBLFVBQ1Isc0JBR1EsQ0FBQSxXQUNSLG1DQUdhLENBSGIsZ0NBR2EsQ0FIYiwrQkFHYSxDQUhiLDJCQUdhLENBQUEsTUFDYiwyQkFHYSxDQUFBLFFBQ2IsNEJBR1ksQ0FBQSxJQUdULGtCQUNTLENBQUEsV0FDWix5QkFHaUIsQ0FBQSxjQUNqQiw0QkFHaUIsQ0FBQSxPQUNqQiw4QkFHYSxDQUFBLDZCQUNELENBQUEsU0FDWiw2QkFHYSxDQUFBLFdBQ2IsOEJBR2dCLENBQUEsZUFDaEIsa0NBR3lCLENBQUEsV0FDekIsNkJBR2MsQ0FIZCxpQkFHYyxDQUFBLDRCQUNELENBREMsZ0JBQ0QsQ0FBQSw4QkFDQyxDQURELGtCQUNDLENBQUEsaUJBQ2QsZUFHWSxDQUFBLG1CQUNaLGlCQUdZLENBQUEsbUJBQ1osaUJBR1ksQ0FBQSxtQkFDWixpQkFHWSxDQUFBLG1CQUNaLGlCQUdZLENBQUEsbUJBQ1osZUQ2RVUsQ0FBQSxzQkFDSyxDQUFBLGtCQUNGLENBQUEsaUJDM0ViLGVBR1EsQ0FBQSxhQUNSLFdBR1EsQ0FBQSxtQkFDUixrQkFHYSxDQUFBLGdCQUNiLGVBR2EsQ0FBQSxtQkFJZCxXQUNTLENBQUEseUJBQ1MsQ0FBQSxvQ0FDTSxDQUROLDRCQUNNLENBQUEscUNBS25CLHlCQUNhLENBQUEsb0NBQ00sQ0FETiw0QkFDTSxDQUFBLGNBQ3ZCLFdBR1EsQ0FBQSxZQUNSLHVCQUdjLENBQUEsWUFDZCx5QkFHZ0IsQ0FBQSwwQkFNUSxhQUh6QixjQUlVLENBQUEsb0JBQ1MsQ0FBQSxDQUFJLE9BSXZCLHFCQUNRLENBQUEsTUFDUCxvQkFHTyxDQUFBLE1BQ1Asb0JBR08sQ0FBQSxNQUNQLG9CQUdPLENBQUEsTUFDUCxvQkFHTyxDQUFBLE1BQ1AsNEJBR08sQ0FBQSxNQUNQLG9CQUdPLENBQUEsTUFDUCxvQkFHTyxDQUFBLFlBRVAsa0NBQ3FDLENBQUEsTUFDcEMsb0JBSU0sQ0FBQSxNQUNQLDRCQUdPLENBQUEsT0FDUCxnQ0FHVyxDQUFBLE1BQ1gsb0JBR08sQ0FBQSxNQUNQLG9CQUdPLENBQUEsT0FDUCx3QkFHVyxDQUFBLE1BQ1gsb0JBR08sQ0FBQSxNQUNQLG9CQUdPLENBQUEsV0FDUCx3QkFHTyxDQUFBLE9BQ1Asc0JBR1EsQ0FBQSxTQUNSLFlBSVUsQ0FBRSxXQUNaLDBCQUdZLENBQUEsVUFDWix3QkFHVyxDQUFBLFdBQ1gseUJBR1csQ0FBQSxNQUNYLHVCQUdTLENBQUEsTUFDVCx1QkFHUyxDQUFBLFVBQ1QsaUJBR1UsQ0FBQSxVQUNWLGlCQUdVLENBQUEsVUFDVix1QkFHUyxDQUFBLGdDQUNPLENBQUEsaUJBQ2hCLDhCQUdTLENBQUEsZ0NBQ08sQ0FBQSxhQUNoQixtQkFHUyxDQUFBLE9BQ1Qsd0JBR1MsQ0FBQSxjQUNULG9CQUdTLENBQUEsUUFDVCxNQUdJLENBQUUsUUFDTixNQUdJLENBQUUsUUFDTixNQUdJLENBQUUsV0FDTixlQUdZLENBQUEsV0FDWixhQUdXLENBQUUsU0FDYixXQUdTLENBQUUsV0FDWCxjQUdXLENBQUEsT0FDWCxZQUdTLENBQUEsNkJBQ1EsQ0FBQSxnQkFDakIsWUFHUyxDQUFBLDZCQUNRLENBQUEsa0JBQ0osQ0FBQSx1QkFDYiw4QkFHUyxDQUFBLDZCQUNRLENBQUEsa0JBQ0osQ0FBQSxhQUNiLHVCQUdTLENBQUEsNkJBQ1EsQ0FBQSxvQkFDSixDQUFBLGFBQ2IsU0FHTyxDQUFBLGFBQ0ksQ0FBRSxXQUNKLENBQUUsY0FDWCxZQUdTLENBQUEsNkJBQ1EsQ0FBQSxxQkFDRCxDQUFBLHNCQUNoQixtQkFHUyxDQUFBLGVBQ1QsdUJBR1MsQ0FBQSw2QkFDSSxDQUFBLGVBQ2IsWUFHUyxDQUFBLHNCQUNRLENBQUEsWUFDakIsWUFHUyxDQUFBLHNCQUNJLENBQUEsZUFDYixZQUdTLENBQUEsb0JBQ0ksQ0FBQSxpQkFDYixZQUdTLENBQUEsb0JBQ0ksQ0FBQSxnQkFDYixZQUdTLENBQUEsa0JBQ0ksQ0FBQSxzQkFDSSxDQUFBLHVCQUNqQixZQUdTLENBQUEsa0JBQ0ksQ0FBQSw0QkFDSSxDQUFBLHNCQUNqQixtQkFHUyxDQUFBLGtCQUNJLENBQUEsc0JBQ0ksQ0FBQSxjQUNqQixZQUdTLENBQUEsd0JBQ1EsQ0FBQSxlQUNqQixtQkFHWSxDQUFBLFdBQ1osbUJBR1ksQ0FIWixjQUdZLENBQUUsOEJBQ0EsQ0FEQSx5QkFDQSxDQUFBLGFBRVosOEJBQ2EsQ0FEYix5QkFDYSxDQUFBLDBCQUdTLFdBUnpCLG1CQVNFLENBVEYsY0FTYyxDQUFFLENBQUMsV0FJakIsbUJBQ2EsQ0FEYixjQUNhLENBQUUsOEJBQ0EsQ0FEQSx5QkFDQSxDQUFBLGFBRVosOEJBQ2EsQ0FEYix5QkFDYSxDQUFBLDBCQUdTLFdBUnpCLG1CQVNFLENBVEYsY0FTYyxDQUFFLENBQUMsMEJBR1EsV0FaekIsbUJBYUUsQ0FiRixjQWFjLENBQUUsQ0FBQyxXQUlqQixtQkFDYSxDQURiLGNBQ2EsQ0FBRSw4QkFDQSxDQURBLHlCQUNBLENBQUEsYUFFWiw4QkFDYSxDQURiLHlCQUNhLENBQUEsMEJBR1MsV0FSekIsbUJBU0UsQ0FURixjQVNjLENBQUUsQ0FBQywwQkFHUSxXQVp6QixtQkFhRSxDQWJGLGNBYWMsQ0FBRSxDQUFDLFdBSWpCLG1CQUNhLENBRGIsY0FDYSxDQUFFLDhCQUNBLENBREEseUJBQ0EsQ0FBQSxhQUVaLDhCQUNhLENBRGIseUJBQ2EsQ0FBQSwwQkFHUyxXQVJ6QixtQkFTRSxDQVRGLGNBU2MsQ0FBRSxDQUFDLDBCQUdRLFdBWnpCLG1CQWFFLENBYkYsY0FhYyxDQUFFLENBQUMsV0FJakIsbUJBQ2EsQ0FEYixjQUNhLENBQUUsOEJBQ0EsQ0FEQSx5QkFDQSxDQUFBLGFBRVosOEJBQ2EsQ0FEYix5QkFDYSxDQUFBLDBCQUdTLFdBUnpCLG1CQVNFLENBVEYsY0FTYyxDQUFFLENBQUMsMEJBR1EsV0FaekIsbUJBYUUsQ0FiRixjQWFjLENBQUUsQ0FBQyxhQUlqQixVQUNRLENBQUEsS0FDUCxlQU1ZLENBQUEsaUJBQ0YsQ0FBQSxpQ0FFTSxZQUNOLENBQUEsOEJBR00sWUFDTixDQUFBLE1BQ1QsV0FLUSxDQUFFLE1BQ1gsbUJBR2EsQ0FBQSx1Q0FJUixRQUNDLENBQUUsS0FDUixpQkFHUyxDQUFBLE9BQ1QsaUJBR1MsQ0FBQSxhQUNFLENBQUEsYUFJWixlQUNDLENBREQsYUFDQyxDQURELFVBQ1MsQ0FBRSxHQUNWLGFBR1csQ0FBRSxZQUNiLG1CQUdjLENBQUEsRUFDZCxvQkFJaUIsQ0FBQSxvQkFDakIsU0FHTyxDQUFBLFVBQ0MsQ0FBQSwwQkFDUixzQkFHWSxDQUFBLDBCQUNaLGtCQUdZLENBQUEsS0FoRWIsb0JBcUVrQixDQUFBLHdCQUdkLFVEbGFZLENBQUEsV0NvYWYsaUJBTVUsQ0FBQSxTQUNWLG1CQUdnQixDQUFBLGVBQ2hCLGtCQUdhLENBQUEsVUFDYixXQUdRLENBQUEsZUFDQyxDQUFBLGNBQ0UsQ0FBQSxlQUNFLENBQUEsaUJBQ0UsQ0FBQSx1QkFDZixlQUdhLENBQUUsYUFDTixDQUFBLFlBQ1QsbUJBR1MsQ0FBQSxrQkFDSSxDQUFBLCtEQUdMLGdCQUNDLENBQUEsU0FDUixhQUlRLENBQUEsY0FDRSxDQUFBLGVBQ0UsQ0FBQSxpQkFDRSxDQUFBLG1CQUNmLCtGQUdZLENBQUEsTUFDWiw4QkFHbUMsQ0FBQSxxQkFDbkMsU0FHSyxDQUFBLFNBQ0MsQ0FBQSw4QkFDTSxDQUFBLGVBQ0EsQ0FBQSxVQUlWLG9CQUNRLENBQUEsMEJBRWUsVUFIdkIsd0JBSXNCLENBQUUseUJBQ0QsQ0FBRSxDQUFDLDBCQUlKLFFBVmxCLGNBV08sQ0FBQSxpQkFDRyxDQUFBLENBQUcsbUdBTVksd0JBQ2IsQ0FBQSxZQUNSLENBQUUsMEJBRVksbUdBSk8saUNBS2pCLENBQUEsa0NBQ0MsQ0FBQSw0QkFDQyxDQUFBLENBQWMsZ0NBS2xCLGdDQUNNLENBQUEsbURBS0wsZ0NBQ0ssQ0FBQSxLQUNsQixjQUdZLENBQUUsYUFDSCxDQUFFLHlrQ0FxbUJkLGlCQWhtQlcsQ0FBQSxjQUNFLENBQUEsaUJBQ0csQ0FBQSxnQkFDRCxDQUFBLFVBQ1AsQ0FBQSxRQUNQLHFCQUlPLENBQUEsUUFDUCxtQ0FJTyxDQUFBLFVBQ1AsbUNBSU8sQ0FBQSxVQUNQLG1DQUlPLENBQUEsVUFDUCxzQkFJTyxDQUFBLFVBQ1AsbUNBSU8sQ0FBQSxVQUNQLG1DQUlPLENBQUEsVUFDUCxvQkFJTyxDQUFBLFVBQ1AsbUNBSU8sQ0FBQSxVQUNQLG1DQUlPLENBQUEsVUFDUCxzQkFJTyxDQUFBLFFBQ1AsbUNBSU8sQ0FBQSxVQUNQLG1DQUlPLENBQUEsVUFDUCxvQkFJTyxDQUFBLFVBQ1AsbUNBSU8sQ0FBQSxVQUNQLG1DQUlPLENBQUEsVUFDUCxzQkFJTyxDQUFBLFVBQ1AsbUNBSU8sQ0FBQSxVQUNQLG1DQUlPLENBQUEsVUFDUCxvQkFJTyxDQUFBLFVBQ1AsbUNBSU8sQ0FBQSxPQUNQLG9CQUlPLENBQUEsU0FDUCxzQkFJTyxDQUFBLFNBQ1AsbUNBSU8sQ0FBQSxTQUNQLG1DQUlPLENBQUEsU0FDUCxvQkFJTyxDQUFBLFNBQ1AsbUNBSU8sQ0FBQSxTQUNQLG1DQUlPLENBQUEsU0FDUCxzQkFJTyxDQUFBLFNBQ1AsbUNBSU8sQ0FBQSxTQUNQLG1DQUlPLENBQUEsT0FDUCxvQ0FJTyxDQUFBLFNBQ1AsbUNBSU8sQ0FBQSxTQUNQLG1DQUlPLENBQUEsU0FDUCxzQkFJTyxDQUFBLFNBQ1AsbUNBSU8sQ0FBQSxTQUNQLG1DQUlPLENBQUEsU0FDUCxvQkFJTyxDQUFBLFNBQ1AsbUNBSU8sQ0FBQSxTQUNQLG1DQUlPLENBQUEsU0FDUCxzQkFJTyxDQUFBLE9BQ1AsbUNBSU8sQ0FBQSxTQUNQLG1DQUlPLENBQUEsU0FDUCxvQkFJTyxDQUFBLFNBQ1AsbUNBSU8sQ0FBQSxTQUNQLG1DQUlPLENBQUEsU0FDUCxzQkFJTyxDQUFBLFNBQ1AsbUNBSU8sQ0FBQSxTQUNQLG1DQUlPLENBQUEsU0FDUCxvQkFJTyxDQUFBLFNBQ1AsbUNBSU8sQ0FBQSxPQUNQLG9CQUlPLENBQUEsU0FDUCxzQkFJTyxDQUFBLFNBQ1AsbUNBSU8sQ0FBQSxTQUNQLG1DQUlPLENBQUEsU0FDUCxvQkFJTyxDQUFBLFNBQ1AsbUNBSU8sQ0FBQSxTQUNQLG1DQUlPLENBQUEsU0FDUCxzQkFJTyxDQUFBLFNBQ1AsbUNBSU8sQ0FBQSxTQUNQLG1DQUlPLENBQUEsT0FDUCxtQ0FJTyxDQUFBLFNBQ1AsbUNBSU8sQ0FBQSxTQUNQLG1DQUlPLENBQUEsU0FDUCxzQkFJTyxDQUFBLFNBQ1AsbUNBSU8sQ0FBQSxTQUNQLG1DQUlPLENBQUEsU0FDUCxvQkFJTyxDQUFBLFNBQ1AsbUNBSU8sQ0FBQSxTQUNQLG1DQUlPLENBQUEsU0FDUCxzQkFJTyxDQUFBLE9BQ1AsbUNBSU8sQ0FBQSxTQUNQLG1DQUlPLENBQUEsU0FDUCxvQkFJTyxDQUFBLFNBQ1AsbUNBSU8sQ0FBQSxTQUNQLG1DQUlPLENBQUEsU0FDUCxzQkFJTyxDQUFBLFNBQ1AsbUNBSU8sQ0FBQSxTQUNQLG1DQUlPLENBQUEsU0FDUCxvQkFJTyxDQUFBLFNBQ1AsbUNBSU8sQ0FBQSxPQUNQLG9CQUlPLENBQUEsU0FDUCxzQkFJTyxDQUFBLFNBQ1AsbUNBSU8sQ0FBQSxTQUNQLG1DQUlPLENBQUEsU0FDUCxvQkFJTyxDQUFBLFNBQ1AsbUNBSU8sQ0FBQSxTQUNQLG1DQUlPLENBQUEsU0FDUCxzQkFJTyxDQUFBLFNBQ1AsbUNBSU8sQ0FBQSxTQUNQLG1DQUlPLENBQUEsT0FDUCxtQ0FJTyxDQUFBLFNBQ1AsbUNBSU8sQ0FBQSxTQUNQLG1DQUlPLENBQUEsU0FDUCxzQkFJTyxDQUFBLFNBQ1AsbUNBSU8sQ0FBQSxTQUNQLG1DQUlPLENBQUEsU0FDUCxvQkFJTyxDQUFBLFNBQ1AsbUNBSU8sQ0FBQSxTQUNQLG1DQUlPLENBQUEsU0FDUCxzQkFJTyxDQUFBLE9BQ1Asa0NBSU8sQ0FBQSxTQUNQLG1DQUlPLENBQUEsU0FDUCxvQkFJTyxDQUFBLFNBQ1AsbUNBSU8sQ0FBQSxTQUNQLG1DQUlPLENBQUEsU0FDUCxzQkFJTyxDQUFBLFNBQ1AsbUNBSU8sQ0FBQSxTQUNQLG1DQUlPLENBQUEsU0FDUCxvQkFJTyxDQUFBLFNBQ1Asa0NBSU8sQ0FBQSxTQUNQLHFCQUlPLENBQUEsU0FDUCxrQ0FJTyxDQUFBLFNBQ1Asa0NBSU8sQ0FBQSxTQUNQLG1CQUlPLENBQUEsU0FDUCxrQ0FJTyxDQUFBLFNBQ1Asa0NBSU8sQ0FBQSxTQUNQLHFCQUlPLENBQUEsU0FDUCxrQ0FJTyxDQUFBLFNBQ1Asa0NBSU8sQ0FBQSwwQkFRZ0IsVUFDdkIsU0FDUSxDQUFBLFVBQ1AsU0FHTyxDQUFBLENBQUcsS0FJWixtQkFDUyxDQUFBLEtBQ1IsOEJBRytCLENBQUEsS0FDL0IsNkJBRzhCLENBQUEsS0FDOUIsNEJBR3NCLENBQUEsS0FDdEIsOEJBRzhCLENBQUEsS0FDOUIsNEJBRzRCLENBQUEsTUFDNUIsNkJBR2tCLENBQUEsTUFDbEIsa0NBR21DLENBQUEsTUFDbkMsaUNBR2tDLENBQUEsTUFDbEMsZ0NBRzBCLENBQUEsTUFDMUIsa0NBR2tDLENBQUEsTUFDbEMsZ0NBR2dDLENBQUEsTUFDaEMsK0JBR29CLENBQUEsTUFDcEIsb0NBR3FDLENBQUEsTUFDckMsbUNBR29DLENBQUEsTUFDcEMsa0NBRzRCLENBQUEsTUFDNUIsb0NBR29DLENBQUEsTUFDcEMsa0NBR2tDLENBQUEsTUFDbEMsZ0NBR3FCLENBQUEsTUFDckIscUNBR3NDLENBQUEsTUFDdEMsb0NBR3FDLENBQUEsTUFDckMsbUNBRzZCLENBQUEsTUFDN0IscUNBR3FDLENBQUEsTUFDckMsbUNBR21DLENBQUEsTUFDbkMsOEJBR21CLENBQUEsTUFDbkIsbUNBR29DLENBQUEsTUFDcEMsa0NBR21DLENBQUEsTUFDbkMsaUNBRzJCLENBQUEsTUFDM0IsbUNBR21DLENBQUEsTUFDbkMsaUNBR2lDLENBQUEsTUFDakMsNkJBR2tCLENBQUEsZ0NBQ0csQ0FBQSxNQUNyQixrQ0FHbUMsQ0FBQSxxQ0FDRyxDQUFBLE1BQ3RDLGlDQUdrQyxDQUFBLG9DQUNHLENBQUEsTUFDckMsZ0NBRzBCLENBQUEsbUNBQ0csQ0FBQSxNQUM3QixrQ0FHa0MsQ0FBQSxxQ0FDRyxDQUFBLE1BQ3JDLGdDQUdnQyxDQUFBLG1DQUNHLENBQUEsTUFDbkMsK0JBR29CLENBQUEsOEJBQ0QsQ0FBQSxNQUNuQixvQ0FHcUMsQ0FBQSxtQ0FDRCxDQUFBLE1BQ3BDLG1DQUdvQyxDQUFBLGtDQUNELENBQUEsTUFDbkMsa0NBRzRCLENBQUEsaUNBQ0QsQ0FBQSxNQUMzQixvQ0FHb0MsQ0FBQSxtQ0FDRCxDQUFBLE1BQ25DLGtDQUdrQyxDQUFBLGlDQUNELENBQUEsTUFDakMsdUJBR1ksQ0FBQSwwQkFDRyxDQUFBLFVBQ1IsQ0FBQSxNQUNQLDRCQUc2QixDQUFBLCtCQUNHLENBQUEsVUFDekIsQ0FBQSxNQUNQLDJCQUc0QixDQUFBLDhCQUNHLENBQUEsVUFDeEIsQ0FBQSxNQUNQLGVEOThDUSxDQUFBLGtCQUFBLENBQUEsVUNtOUNELENBQUEsTUFDUCw0QkFHNEIsQ0FBQSwrQkFDRyxDQUFBLFVBQ3hCLENBQUEsTUFDUCwwQkFHMEIsQ0FBQSw2QkFDRyxDQUFBLFVBQ3RCLENBQUEsUUFDUCxzQkFHUSxDQUFBLEtBQ1IsbUJBR1EsQ0FBQSxLQUNSLHdCQUd5QixDQUFBLEtBQ3pCLHVCQUd3QixDQUFBLEtBQ3hCLHNCQUdnQixDQUFBLEtBQ2hCLHdCQUd3QixDQUFBLEtBQ3hCLHNCQUdzQixDQUFBLFNBQ3RCLDBCQUdZLENBQUEsTUFDWix1QkFHWSxDQUFBLE1BQ1osNEJBRzZCLENBQUEsTUFDN0IsMkJBRzRCLENBQUEsTUFDNUIsMEJBR29CLENBQUEsTUFDcEIsNEJBRzRCLENBQUEsTUFDNUIsMEJBRzBCLENBQUEsU0FDMUIsNEJBR2MsQ0FBQSxNQUNkLHlCQUdjLENBQUEsTUFDZCw4QkFHK0IsQ0FBQSxNQUMvQiw2QkFHOEIsQ0FBQSxNQUM5Qiw0QkFHc0IsQ0FBQSxNQUN0Qiw4QkFHOEIsQ0FBQSxNQUM5Qiw0QkFHNEIsQ0FBQSxTQUM1Qiw2QkFHZSxDQUFBLE1BQ2YsMEJBR2UsQ0FBQSxNQUNmLCtCQUdnQyxDQUFBLE1BQ2hDLDhCQUcrQixDQUFBLE1BQy9CLDZCQUd1QixDQUFBLE1BQ3ZCLCtCQUcrQixDQUFBLE1BQy9CLDZCQUc2QixDQUFBLFNBQzdCLDJCQUdhLENBQUEsTUFDYix3QkFHYSxDQUFBLE1BQ2IsNkJBRzhCLENBQUEsTUFDOUIsNEJBRzZCLENBQUEsTUFDN0IsMkJBR3FCLENBQUEsTUFDckIsNkJBRzZCLENBQUEsTUFDN0IsMkJBRzJCLENBQUEsU0FDM0IsMEJBR1ksQ0FBQSw2QkFDRyxDQUFBLE1BQ2YsdUJBR1ksQ0FBQSwwQkFDRyxDQUFBLE1BQ2YsNEJBRzZCLENBQUEsK0JBQ0csQ0FBQSxNQUNoQywyQkFHNEIsQ0FBQSw4QkFDRyxDQUFBLE1BQy9CLDBCQUdvQixDQUFBLDZCQUNHLENBQUEsTUFDdkIsNEJBRzRCLENBQUEsK0JBQ0csQ0FBQSxNQUMvQiwwQkFHMEIsQ0FBQSw2QkFDRyxDQUFBLFNBQzdCLDRCQUdjLENBQUEsMkJBQ0QsQ0FBQSxNQUNiLHlCQUdjLENBQUEsd0JBQ0QsQ0FBQSxNQUNiLDhCQUcrQixDQUFBLDZCQUNELENBQUEsTUFDOUIsNkJBRzhCLENBQUEsNEJBQ0QsQ0FBQSxNQUM3Qiw0QkFHc0IsQ0FBQSwyQkFDRCxDQUFBLE1BQ3JCLDhCQUc4QixDQUFBLDZCQUNELENBQUEsTUFDN0IsNEJBRzRCLENBQUEsMkJBQ0QsQ0FBQSxLQUMzQixvQkFHUyxDQUFBLEtBQ1QseUJBRzBCLENBQUEsS0FDMUIsd0JBR3lCLENBQUEsS0FDekIsdUJBR2lCLENBQUEsS0FDakIseUJBR3lCLENBQUEsS0FDekIsdUJBR3VCLENBQUEsTUFDdkIsd0JBR2EsQ0FBQSxNQUNiLDZCQUc4QixDQUFBLE1BQzlCLDRCQUc2QixDQUFBLE1BQzdCLDJCQUdxQixDQUFBLE1BQ3JCLDZCQUc2QixDQUFBLE1BQzdCLDJCQUcyQixDQUFBLE1BQzNCLDBCQUdlLENBQUEsTUFDZiwrQkFHZ0MsQ0FBQSxNQUNoQyw4QkFHK0IsQ0FBQSxNQUMvQiw2QkFHdUIsQ0FBQSxNQUN2QiwrQkFHK0IsQ0FBQSxNQUMvQiw2QkFHNkIsQ0FBQSxNQUM3QiwyQkFHZ0IsQ0FBQSxNQUNoQixnQ0FHaUMsQ0FBQSxNQUNqQywrQkFHZ0MsQ0FBQSxNQUNoQyw4QkFHd0IsQ0FBQSxNQUN4QixnQ0FHZ0MsQ0FBQSxNQUNoQyw4QkFHOEIsQ0FBQSxNQUM5Qix5QkFHYyxDQUFBLE1BQ2QsOEJBRytCLENBQUEsTUFDL0IsNkJBRzhCLENBQUEsTUFDOUIsNEJBR3NCLENBQUEsTUFDdEIsOEJBRzhCLENBQUEsTUFDOUIsNEJBRzRCLENBQUEsTUFDNUIsd0JBR2EsQ0FBQSwyQkFDRyxDQUFBLE1BQ2hCLDZCQUc4QixDQUFBLGdDQUNHLENBQUEsTUFDakMsNEJBRzZCLENBQUEsK0JBQ0csQ0FBQSxNQUNoQywyQkFHcUIsQ0FBQSw4QkFDRyxDQUFBLE1BQ3hCLDZCQUc2QixDQUFBLGdDQUNHLENBQUEsTUFDaEMsMkJBRzJCLENBQUEsOEJBQ0csQ0FBQSxNQUM5QiwwQkFHZSxDQUFBLHlCQUNELENBQUEsTUFDZCwrQkFHZ0MsQ0FBQSw4QkFDRCxDQUFBLE1BQy9CLDhCQUcrQixDQUFBLDZCQUNELENBQUEsTUFDOUIsNkJBR3VCLENBQUEsNEJBQ0QsQ0FBQSxNQUN0QiwrQkFHK0IsQ0FBQSw4QkFDRCxDQUFBLE1BQzlCLDZCQUc2QixDQUFBLDRCQUNELENBQUEsUUFDNUIsMEJBSWEsQ0FBQSw2QkFDRyxDQUFBLHNDQUlNLFlBQ2IsQ0FBQSw2QkFDUSxDQUFBLDRDQUd1QixrQkFDekIsQ0FBQSx1QkFJTSxjQUNiLENBQUEsYUFDQyxDQUFBLGdCQUNBLENBQUEsVUFDRixDQUFBLGVBQ00sQ0FBQSxzQkFDQSxDQUFBLFVBQ04sQ0FBQSxrQkFDTSxDQUFBLDBEQVJZLGFBWWpCLENBQUEsb0JBQ1UsQ0FBQSwyQkFDQyxDQUFBLDhCQUlTLG1CQUNaLENBQUEsVUR2MURZLENBQUEsd0VDczFESSxVRHQxREosQ0FBQSxvQkM2MURWLENBQUEsa0JBQ1QsQ0FBQSw0QkFDVSxDQUFBLHFCQUNBLENBQUEsZ0NBSVcsa0JEMzFEUCxDQUFBLFdDNjFEaEIsQ0FBQSw0RUFGMkIsV0FNMUIsQ0FBQSxvQkFDVSxDQUFBLHdCRC8xRFMsQ0FBQSw4QkNxMkRQLE9BQ2YsQ0FBQSxZQUNJLENBQUEsb0NBR2lCLG9CQUNqQixDQUFBLDZCQUdxQix3QkFDWixDQUFBLGNBQ2xCLHdCQUdXLENBQUEsZ0JBQ1gsd0JBR1csQ0FBQSxVQUNYLDJCQUdhLENBQUEsdUJBQ0MsQ0FBQSxlQUNELENBQUEsNkJBS0ksc0NEajZEQSxDQUFBLG9DQ2k2REEsc0NEaDZETyxDQUFBLDJCQzA2RFIsc0NEMzZEQyxDQUFBLGtDQzI2REQsc0NEMTZEUSxDQUFBLGVDZzdEdEIsOEJBS1ksQ0FBQSwwRkFRWCxlQUNXLENBQUUsY0FDSCxDQUFFLDBJQUZSLDBCQUttQixDQUFBLDZCQUNHLENBQUEsc0lBTnRCLDJCQVVvQixDQUFBLDhCQUNHLENBQUEsMkJEcDlEYixDQUFBLDhKQzg5RFgsMkJBRXNCLENBQUUsMEpBRnhCLDRCQU11QixDQUFFLDBIQVM3QixZQUNVLENBQUUsMEtBRFIsZUFJVSxDQUFFLHNLQUpaLGVBUVUsQ0FBRSwwSEFTaEIsWUFDVSxDQUFFLDBLQURSLHdCQUltQixDQUFFLHNLQUpyQix5QkFRb0IsQ0FBRSxzTEFVckIsdUJENWdFaUIsQ0FBQSxtQkN1aEV6Qix1QkFDVSxDQUFBLDBDQUkrQixpQkFDdkMsdUJBQ1UsQ0FBQSxDQUFlLDBDQUljLGdCQUN2Qyx1QkFDVSxDQUFBLHFCQUNULDRCQUdZLENBQUEsa0JBQ1osdUJBR1MsQ0FBQSxnQ0FDTyxDQUFBLDBCQUNoQix1QkFHUyxDQUFBLHdDQUNPLENBQUEsdUJBQ2hCLGlDQUdhLENBQUEsZUFDYixxQkFHTyxDQUFBLG1CQUNQLHlCQUdXLENBQUEsYUFDWCx3QkFHeUIsQ0FBQSxjQUN6Qiw4QkFHK0IsQ0FBQSxDQUFVLHNCQUtsQyx5QkFDSyxDQUFBLHlDQU1iLHdCRC9pRXNCLENBQUEsV0NpakVkLENBQUEsb0JBQ08sQ0FBQSxxREFRZCx3QkR6akU0QixDQUFBLFVDMmpFcEIsQ0FBQSxvQkFDTyxDQUFBLHlDQWRoQix3QkQvaUVzQixDQUFBLFdDeWtFZCxDQUFBLG9CQUNPLENBQUEscURBaEJkLHdCRHpqRTRCLENBQUEsVUNtbEVwQixDQUFBLG9CQUNPLENBQUEsV0Q5ckVsQix5QkFDYyxDQUFBLGlCQUNELENBQUEsZUFDQyxDQUFBLDJGQUM4RCxDQUFBLFdBRzVFLG9CQUNjLENBQUEsaUJBQ0QsQ0FBQSxlQUNDLENBQUEseUVBQzRDLENBQUEsV0FHMUQsa0NBQ2MsQ0FBQSxpQkFDRCxDQUFBLGVBQ0MsQ0FBQSw2R0FDZ0YsQ0FBQSxXQUc5Riw0QkFDYyxDQUFBLHlGQUM0RCxDQUFBLHVCQUcxRSxLQUNDLFNBQ1EsQ0FBRSxHQUdWLFNBQ1EsQ0FBRSxDQUFDLDBEQTJNdUIsYUFDdEIsQ0FBQSwwREFHc0IsYUFDdEIsQ0FBQSwwREFHc0IsYUFDdEIsQ0FBQSx5Q0V5c0RMLFdGcHNEQyxDQUFBLHVEQUVELGFBQ0csQ0FBQSxxQkFDRixDQUFBLGlCQUNHLENBQUEsVUFDSCxDQUFBLFVBQ0EsQ0FBQSxXQUNDLENBQUEsVUFDRCxDQUFBLGtCQUNPLENBQUEsYUFDSCxDQUFBLDRCR2xQYixLQUNDLHNCQUNZLENBQUEsR0FHWix3QkFDWSxDQUFBLENINE9BLG9CR2xQYixLQUNDLHNCQUNZLENBQUEsR0FHWix3QkFDWSxDQUFBLENBQUEsU0FNVCxpQkFFZSxDQUFBLGtEQVFoQixpQkFDZSxDQUFBLHlHQURYLGVBSUgsQ0FBYSxtSEFHWCxlQUNGLENBQWEsUUFDYixrQkFJYSxDQUFBLGlCQUNOLENBQUEsaUJBRVIsaUJBQ1MsQ0FBQSxVQUNSLGNBSVcsQ0FBQSxrQkFDRyxDQUFBLGlCQUNELENBQUEsYUFDZCxDQUFXLG9CQUtULGVBQ1csQ0FBQSxvQkFHWCxlQUNELENBQWEsUUFDYixpQkFJYyxDQUFBLG1CQUNmLFlBR1MsQ0FBQSxjQUNFLENBQUEsNkJBQ00sQ0FBQSxzQkFDSixDQUFBLHdCQUNFLENBQUEsZ0JBQ2YsV0FHUyxDQUFBLGNBQ0UsQ0FBQSxrQkFDRSxDQUFBLHVCQUViLGNBQ1ksQ0FBQSxlQUNYLGlCQUlPLENBQUEsaUJBQ0ksQ0FBQSxXQUNaLGNBR1csQ0FBQSxlQUNDLENBQUEsY0FDSixDQUFBLGFBQ1IsYUFHVyxDQUFBLGFBQ0gsQ0FBQSxpQkFDUixZQUdTLENBQUEsY0FDRSxDQUFBLHNCQUNNLENBQUEsb0JBQ0osQ0FBQSx1QkFDYixtQkFHUyxDQUFBLGFBQ0UsQ0FBQSxzQkFDWCxpQkFLaUIsQ0FBQSxjQUNmLFVBSU0sQ0FBQSxnQkFDSyxDQUFBLGFBQ0gsQ0FBQSxtQkFDVCxhQUlRLENBQUEsZUFDSSxDQUFBLGdCQUNiLFNBR08sQ0FBQSxvQkFDRSxDQUFBLGlCQUNULFVBR08sQ0FBQSxpQkFDSyxDQUFBLGlCQUNBLENBQUEsY0FDQSxDQUFBLHVCQUNaLDRCSDVGZSxDQUFBLGNHZ0dOLENBQUEsc0JBQ1Qsa0JBR1ksQ0FBQSxxQkFDWixvQkFJaUIsQ0FBQSx3Q0FERixVQUlQLENBQUEsV0FDQyxDQUFBLGtCQUNSLGlCQUlXLENBQUEsYUFDSCxDQUFBLGNBQ1QsUUFHQSxDQUFNLHVCQUNOLGtCQUdhLENBQUEsaUJBQ0EsQ0FBQSxTQUNiLENBQU8sZUFDSyxDQUFBLCtCQUVWLGlCQUNjLENBQUEsaUNBRFAsY0FJQyxDQUFBLGtDQUlQLGFBQ0QsQ0FBVyxlQUNYLGVBS1UsQ0FBQSxrQ0FFQyxrQkFDQyxDQUFBLGlCQUNBLENBQUEsa0JBQ2Isa0JBSVcsQ0FBQSxzQkFDWixzQkFHWSxDQUFBLHFCQUNaLGVBR1ksQ0FBQSxhQUNILENBQUEsNkJBRVAsZUFDRCxDQUFhLDRCQUNiLGVBSVcsQ0FBQSxpQkFDSCxDQUFBLG9DQUVQLGVBQ0QsQ0FBYSxnQkFDQSxDQUFBLGdCQUNDLENBQUEsZUFDZCxRQUlELENBQU0sZ0JBQ08sQ0FBQSxVQUNiLGFIak1ZLENBQUEsMkJHN0NELENBQUEsdUJBQ0MsQ0FBQSxlQUNELENBQUEsWUFDSixDQUFBLDZCQUNRLENBQUEsa0JBQ0osQ0FBQSxlQWdQQSxDQUFBLFVBQ1gsYUh6TVksQ0FBQSwyQkc3Q0QsQ0FBQSx1QkFDQyxDQUFBLGVBQ0QsQ0FBQSxZQUNKLENBQUEsNkJBQ1EsQ0FBQSxrQkFDSixDQUFBLGVBd1BBLENBQUEsK0JIaE5DLENBQUEsZ0JHa05KLENBQUEsVUFDUixhSG5OWSxDQUFBLDJCRzdDRCxDQUFBLHVCQUNDLENBQUEsZUFDRCxDQUFBLFlBQ0osQ0FBQSw2QkFDUSxDQUFBLGtCQUNKLENBQUEsZUFrUUEsQ0FBQSxnQkFDWCx1QkFLYyxDQUFBLGtCQUNELENBQUEsZUFDRixDQUFBLFlBQ0YsQ0FBQSw2QkFDUSxDQUFBLGtCQUNKLENBQUEscUJBQ2IsYUFHUyxDQUFBLHVCQUNLLENBQUEsa0JBQ0QsQ0FBQSxlQUNGLENBQUEsaUJBQ0MsQ0FBQSxVQUNaLGdCQUthLENBQUEsaUJBQ0QsQ0FBQSxVQUNaLGlCQUtZLENBQUEsd0JBSVIsaUJBQ1MsQ0FBQSxlQUNiLENBQWEsb0RBRkwsY0FLRSxDQUFBLGVBSUgsaUJBQ00sQ0FBQSxlQUNiLENBQWEsYUFDYixlQUdRLENBQUEsZ0JBQ0MsQ0FBQSw0QkFDYSxDQUFBLHdCQWhVTixDQUFBLDRCQUFBLENBQUEsK0JBQUEsQ0FBQSx3QkFvVUUsQ0FBQSw0QkFFZixlQUNGLENBQWEsd0JBQ2IsNEJBR3NCLENBQUEsd0JBM1VQLENBQUEsNkJBQUEsQ0FBQSw4QkFBQSxDQUFBLHdCQStVRyxDQUFBLG1CQUNsQixlQUdZLENBQUEsWUFDWiw0QkFJcUIsQ0FBQSxzQ0FDSixDQUFBLFlBQ1YsQ0FBQSxhQUNDLENBQUEsVUFDRixDQUFBLHVCQUNQLGNBSVMsQ0FBQSwyQkFDSyxDQUFBLHVCQUNDLENBQUEsd0JBQ0UsQ0FBQSxnQkFDSCxDQUFBLDZCQUxOLGlDQVFNLENBQUEsdUJBQ1osaUJBSVksQ0FBQSxlQUNBLENBQUEseUJBQ2IsY0FJTyxDQUFBLHlCQUNTLENBQUEsbUJBQ2pCLGFBR0EsQ0FBVyxlQUNFLENBQUEsNkJBQ1EsQ0FBQSxzQkFDRixDQUFFLDJCQUVyQiwrQkFDaUIsQ0FEakIsdUJBQ2lCLENBQUEsK0JBQ0ksQ0FESix1QkFDSSxDQUFBLDBDQUNPLENBRFAsa0NBQ08sQ0FBQSx3Q0FDQSxDQURBLGdDQUNBLENBQUEsV0FDM0Isd0NBSVksQ0FBQSxhQUNOLENBQUEsZUFFUCxjQUNZLENBQUEsdUJBQ0csQ0FBQSxlQUNkLGNBR1csQ0FBQSxlQUNYLGNBR1csQ0FBQSxlQUNYLGNBR1csQ0FBQSxpQkFDWCxXQUdTLENBQUEsdUJBQ1QsZ0JBR1ksQ0FBQSxtQkFDRyxDQUFBLDZCQUVmLFVBQ1EsQ0FBQSxjQUNQLENBQVksaUJBQ0MsQ0FBQSw4QkFDYixXQUdPLENBQUEsa0JBQ08sQ0FBQSxhQUNkLENBQVcsOEJBYkEsVUFpQkosQ0FBRSxVQUNGLENBQUEsYUFDRSxDQUFBLGVBQ1QsY0FNVSxDQUFBLGVBQ0MsQ0FBQSxlQUNaLGNBR1csQ0FBQSxnQkFDQyxDQUFBLGNBQ1osV0FJTyxDQUFBLE9BQ1IsQ0FBSyw2QkFwY1csQ0FBQSw4QkFBQSxDQUFBLGFBdWNSLENBQUEsWUFDUixhQUdRLENBQUEsZ0JBQ0MsQ0FBQSw0QkFDYSxDQUFBLHdCQTdjTixDQUFBLDRCQUFBLENBQUEsK0JBQUEsQ0FBQSx3QkFpZEUsQ0FBQSwyQkFFZixlQUNGLENBQWEscUJBQ2IsNENBSVksQ0FBQSxjQUNGLENBQUEsVUhuYkUsQ0FBQSxlR3FiQSxDQUFBLGNBQ2Isb0JBR2EsQ0FBQSxlQUNiLHFCSDVhZ0IsQ0FBQSxpQ0dnYmhCLGlCQUtZLENBQUEsV0FDTCxDQUFBLCtCQUNQLGlCQUtZLENBQUEsV0FDTCxDQUFBLHFCQU1DLGVBQ1YsQ0FBYSxvRkFPYixhSG5aYyxDQUFBLDJCQUFBLENBQUEscUVHNFpkLGFIMVppQixDQUFBLDJCQUFBLENBQUEsOE5HbWFqQixhSHRhYyxDQUFBLDJCQUFBLENBQUEsaUZHK2FkLGFIMWFnQixDQUFBLDJCQUFBLENBQUEsV0F2SGpCLHlCQUNjLENBQUEsaUJBQ0QsQ0FBQSxlQUNDLENBQUEsMkZBQzhELENBQUEsV0FHNUUsb0JBQ2MsQ0FBQSxpQkFDRCxDQUFBLGVBQ0MsQ0FBQSx5RUFDNEMsQ0FBQSxXQUcxRCxrQ0FDYyxDQUFBLGlCQUNELENBQUEsZUFDQyxDQUFBLDZHQUNnRixDQUFBLFdBRzlGLDRCQUNjLENBQUEseUZBQzRELENBQUEsdUJBRzFFLEtBQ0MsU0FDQyxDQUFPLEdBR1IsU0FDQyxDQUFPLENBQUUsMERBMk13QixhQUN0QixDQUFBLDBEQUdzQixhQUN0QixDQUFBLDBEQUdzQixhQUN0QixDQUFBLHlDRXlzREwsV0Zwc0RDLENBQUEsdURBRUQsYUFDRyxDQUFBLHFCQUNGLENBQUEsaUJBQ0csQ0FBQSxVQUNILENBQUEsVUFDQSxDQUFBLFdBQ0MsQ0FBQSxVQUNELENBQUEsa0JBQ08sQ0FBQSxhQUNMLENBQUUsa0VJOVBWLGFKa0RtQixDQUFBLHNCSTlDbkIsMkJKOENtQixDQUFBLHNCSTFDbkIsYUoyQ21CLENBQUEsc0JJdkNuQixhSnVDbUIsQ0FBQSxvQ0luQ25CLGlCSmdEc0IsQ0FBQSx5Qkk1Q3RCLHdCQUNrQixDQUFBLG9DQUVqQix3QkFDa0IsQ0FBQSx3QkFJbkIsd0JBQ2tCLENBQUEsdUJBR2xCLGFBQ08sQ0FBQSxpQ0FHUCxVSmtEZSxDQUFBLDJCSTlDZixxQkoyQ3VCLENBQUEsVUFIVixDQUFBLDZDSWpDYixVSnVDZSxDQUFBLDJDSWpDZixVSmlDZSxDQUFBLG9GRzBhakIsYUhuWmMsQ0FBQSwyQkFBQSxDQUFBLHFFRzRaZCxhSGxad0IsQ0FBQSwyQkFBQSxDQUFBLDhORzJaeEIsYUg5WnFCLENBQUEsMkJBQUEsQ0FBQSxpRkd1YXJCLGFIbGF1QixDQUFBLDJCQUFBLENBQUEsV0EvSHhCLHlCQUNjLENBQUEsaUJBQ0QsQ0FBQSxlQUNELENBQUUsMkZBQzhELENBQUEsV0FHNUUsb0JBQ2MsQ0FBQSxpQkFDRCxDQUFBLGVBQ0QsQ0FBRSx5RUFDNEMsQ0FBQSxXQUcxRCxrQ0FDYyxDQUFBLGlCQUNELENBQUEsZUFDRCxDQUFFLDZHQUNnRixDQUFBLFdBRzlGLDRCQUNjLENBQUEseUZBQzRELENBQUEsdUJBRzFFLEtBQ0MsU0FDQyxDQUFBLEdBQVUsU0FJVixDQUFBLENBQU8sMERBMk0wQixhQUN4QixDQUFFLDBEQUdzQixhQUN4QixDQUFFLDBEQUdzQixhQUN4QixDQUFFLHlDRXlzREwsV0Zwc0RDLENBQUEsdURBRUQsYUFDRyxDQUFBLHFCQUNGLENBQUEsaUJBQ0csQ0FBQSxVQUNMLENBQUUsVUFDRixDQUFFLFdBQ0QsQ0FBRSxVQUNILENBQUUsa0JBQ08sQ0FBQSxhQUNkLENBQVMseUJLaFFWLFlBQ0MsQ0FBQSx3QkFDQSxDQUFBLHlCQUNBLENBQUEsMEJBSWlCLFVKNm9CWixxQkkzb0JZLENMcURELHNCS2xERSxpQkFDTixDTHFEVyxtQktsRG5CLGNBQ0ssQ0FBRSwwQkFHUCxRQUNELENBQUUsTUFDTCxDQUFBLENBQUEsbUNBS2EsVUFDUixDTDREVyxxQkszREEsQ0xxREYsd0NBZmUsQ0FBQSxZS3BDN0IsQ0FBQSxrRkFKeUIsd0JBUU4sQ0FBQSxXQUNYLENBQUEsc0VBSVcsV0FHWCxDQUFBLDZGQU1PLHdCQUNHLENBQUEsNkJMTkYsQ0FBQSw4QkFBQSxDQUFBLG9CQUFBLENBQUEsa0hLY00scUJBQ04sQ0xsQkYsa0JLbUJkLGNBUVUsQ0FBQSx3QkFDVCxvQkFHUyxDQUFBLFdBQ0gsQ0FBRSxxQkFDSyxDQUFBLGlCQUNILENBQUEsc0JBQ0ksQ0FBQSxPQUNkLENBQUcsZ0JBQ0gsQ0FBWSxlQUNaLENBQVcsbUJBQ1gsd0JBS1MsQ0FBQSxrREFETCx3QkxKTyxDQUFBLDJCS1VWLGtCTDlDYyxDQUFBLFdLa0RQLENBQUEsa0VBRkMsa0JMakRhLENBQUEsbUJLd0RwQixzQkFLTyxDQUFBLFlBQ0YsQ0FBRSxxQkFDTyxDQUFBLHVCQUNoQixnQkFHUyxDQUFBLFVBQ0osQ0x0RVEsMERLb0VMLHdCTDdCRyxDQUFBLG9CS29DSyxDQUFFLCtCQUNqQixrQkx6RWMsQ0FBQSxXSzZFUCxDQUFBLDBFQUZDLGtCTDVFYSxDQUFBLFdLbUZiLENBQUEsMEVBU0wsd0JMcERhLENBQUEsV0t3RFQsQ0FBQSx1Q0FHUCxXQUNPLENBQUEsMEZBREMsa0JMbkdhLENBQUEsbUNLNkd0QixVQUNLLENMakVVLGtGS2dFUCx3QkxyRVMsQ0FBQSxXSzJFVCxDQUFBLDJDQUdQLFdBQ08sQ0FBQSxrR0FEQyxrQkx0SGEsQ0FBQSxXQS9DekIseUJBQ2MsQ0FBQSxpQkFDRCxDQUFBLGVBQ1osQ0FBVywyRkFDZ0UsQ0FBQSxXQUc1RSxvQkFDYyxDQUFBLGlCQUNELENBQUEsZUFDWixDQUFXLHlFQUM4QyxDQUFBLFdBRzFELGtDQUNjLENBQUEsaUJBQ0QsQ0FBQSxlQUNaLENBQVcsNkdBQ2tGLENBQUEsV0FHOUYsNEJBQ2MsQ0FBQSx5RkFDNEQsQ0FBQSx1QkFHMUUsS0FDQyxTQUNDLENBQUEsR0FBUyxTQUlULENBQUEsQ0FBQSwwREEyTWlDLGFBQ2pDLENBQVMsMERBR3dCLGFBQ2pDLENBQVMsMERBR3dCLGFBQ2pDLENBQVMseUNFeXNESCxXRnBzREQsQ0FBRSx1REFFRCxhQUNHLENBQUEscUJBQ0YsQ0FBQSxpQkFDRyxDQUFBLFVBQ1YsQ0FBSyxVQUNMLENBQUssV0FDTCxDQUFNLFVBQ04sQ0FBSyxrQkFDTyxDQUFFLGFBQ2QsQ0FBQSw4Qk1sUUYsS0FBVSxTQUVSLENBQUEsR0FBTyxTQUlQLENBQUEsQ040UEEsc0JNbFFGLEtBQVUsU0FFUixDQUFBLEdBQU8sU0FJUCxDQUFBLENBQUEsNkJBSUYsS0FBVSxrQkFFRyxDQUFBLEdBQUEsa0JBSUEsQ0FBQSxDQVZYLHFCQUlGLEtBQVUsa0JBRUcsQ0FBQSxHQUFBLGtCQUlBLENBQUEsQ0FBQSxNQUliLGNBQ1MsQ0FBRSxXQUNMLENBQUUsY0FDUCxDQUFTLGVBQ0EsQ0FBRSxXQUNYLENBQUEsMkJBQ1ksQ0FBQSw0Q0FDSSxDQURKLG9DQUNJLENBQUEsc0NBQ0ksQ0FESiw4QkFDSSxDQUFBLFlBQ3BCLENBQU8scUJBQ1MsQ0FBQSw0VEFXYixZQUNBLENBQU8sY0FDUCxrQkFLVSxDQUFBLFVBQ1osQ0FBSyxrQ0FDZSxDQURmLDBCQUNlLENBQUEsaUJBQ1IsQ0FBQSxXQUNaLENBQU0saUJBQ0ssQ0FBQSxrQkFDQyxDQUFBLDJCQUdNLE1BckNwQixjQXNDRSxDQUFTLENBQUUsK0JBdENSLGtCQTBDUyxDQUFBLHlCQTFDVCxTQThDSCxDQUFBLGlCQUNBLGVBR0EsQ0FBVSxlQUNWLENBQVUsZUFDVixDQUFVLGtCQUNFLENBQUEsdUJBQ0QsQ0FBQSxlQUNYLENBQUEsd0JBRUEsYUFDUSxDQUFFLGdCQUlYLGdCQUNZLENBQUEsb0JBR04sVUFDTCxDQUFBLHdCTmxDYSxDQUFBLFlNb0NQLENBQUUsU0FDUixDQUFBLDRCQUNjLENBQUEsYUFDZCxpQkFJUyxDQUFBLGNBQ1YsQ0FBQSxlQUNBLENBQVUsZ0JBQ0EsQ0FBRSxrQkFFWixnQkFDUyxDQUFBLGtCQUNSLFdBR0EsQ0FBTSx3QkFDTixDQURNLHFCQUNOLENBRE0sb0JBQ04sQ0FETSxnQkFDTixDQUFXLFlBQ1gsQ0FBTyw2QkFDVSxDQUFBLG9DQUdsQixZQUNDLENBQU8sb0RBR1UsYUFDVixDQUFFLHdCQUdWLFlBQ0MsQ0FBTyx3Q0FHVSxhQUNWLENBQUUsMkJBR1YsZUFDVyxDQUFBLDJCQUNDLENBQUEsZUFDWCxDQUFVLGVBQ1YsQ0FBQSxhQUNPLENBQUUsY0FDVCxDQUFTLFlBQ1QsQ0FBTywyQkFDTSxDQUFBLHVCQUNDLENBQUEsd0JBQ0UsQ0FBQSxnQkFDaEIsQ0FBVyxhQUNYLENBQUEsMkNBR2lCLGFBQ1YsQ0FBRSx1QkFDVCxpQkFHVSxDQUFBLFFBQ1YsQ0FBRyxTQUNILENBQUEsUUFDQSxDQUFBLFVBQ0EsQ0FBQSxnQkFDUSxDQUFBLHdCQUNSLGlCQUdVLENBQUEsUUFDVixDQUFHLFVBQ0gsQ0FBSyxXQUNMLENBQU0sVUFDTixDQUFLLGdCQUNHLENBQUEsdUJBQ1IsaUJBR1UsQ0FBQSxPQUNWLENBQUEsVUFDQSxDQUFLLFVBQ0wsQ0FBQSxTQUNBLENBQUEsZ0JBQ1EsQ0FBQSx3QkFDUixpQkFHVSxDQUFBLFVBQ1YsQ0FBSyxXQUNMLENBQU0sV0FDTixDQUFNLFVBQ04sQ0FBSyxnQkFDRyxDQUFBLHVCQUNSLGlCQUdVLENBQUEsT0FDVixDQUFBLFNBQ0EsQ0FBQSxRQUNBLENBQUEsVUFDQSxDQUFBLHdCQUNBLGlCQUdVLENBQUEsV0FDVixDQUFNLFNBQ04sQ0FBSSxXQUNKLENBQU0sVUFDTixDQUFLLGdCQUNHLENBQUEsdUJBQ1IsaUJBR1UsQ0FBQSxPQUNWLENBQUEsVUFDQSxDQUFBLFNBQ0EsQ0FBSSxTQUNKLENBQUEsZ0JBQ1EsQ0FBQSx3QkFDUixpQkFHVSxDQUFBLFFBQ1YsQ0FBRyxTQUNILENBQUksV0FDSixDQUFNLFVBQ04sQ0FBSyxnQkFDRyxDQUFBLDhHQUs4QixZQUN2QyxDQUFPLFdOL05SLHlCQUNjLENBQUEsaUJBQ0QsQ0FBQSxlQUNaLENBQUEsMkZBQzJFLENBQUEsV0FHNUUsb0JBQ2MsQ0FBQSxpQkFDRCxDQUFBLGVBQ1osQ0FBQSx5RUFDeUQsQ0FBQSxXQUcxRCxrQ0FDYyxDQUFBLGlCQUNELENBQUEsZUFDWixDQUFBLDZHQUM2RixDQUFBLFdBRzlGLDRCQUNjLENBQUEseUZBQzRELENBQUEsdUJBRzFFLEtBQVUsU0FFUixDQUFBLEdBQU8sU0FJUCxDQUFBLENBQUEsMERBMk1pQyxhQUNqQyxDQUFBLDBEQUdpQyxhQUNqQyxDQUFBLDBEQUdpQyxhQUNqQyxDQUFBLHlDRXlzRE0sV0Zwc0RQLENBQU0sdURBRUMsYUFDQyxDQUFFLHFCQUNGLENBQUEsaUJBQ0csQ0FBQSxVQUNWLENBQUEsVUFDQSxDQUFBLFdBQ0EsQ0FBQSxVQUNBLENBQUEsa0JBQ0EsQ0FBWSxhQUNaLENBQUEsWUFDQSx3Qk9uUHdCLENBQUEsK0JBQ08sQ0FBQSxnREFDUyxDQURULHdDQUNTLENBQUEsV0FDeEMsd0JBR3VCLENBQUEsK0JBQ08sQ0FBQSxnREFDUyxDQURULHdDQUNTLENBQUEsV0FDdkMsdUJBR3VCLENBQUEsOEJBQ08sQ0FBQSwrQ0FDUyxDQURULHVDQUNTLENBQUEsV0FDdkMsd0JBR3VCLENBQUEsK0JBQ08sQ0FBQSxnREFDUyxDQURULHdDQUNTLENBQUEsWUFDdkMsd0JBR3dCLENBQUEsK0JBQ08sQ0FBQSxnREFDUyxDQURULHdDQUNTLENBQUEsWUFDeEMsd0JBR3dCLENBQUEsK0JBQ08sQ0FBQSxnREFDUyxDQURULHdDQUNTLENBQUEsWUFDeEMsd0JBR3dCLENBQUEsK0JBQ08sQ0FBQSxnREFDUyxDQURULHdDQUNTLENBQUEsd0VBUXhDLHdCQUN3QixDQUFBLCtCQUNPLENBQUEsZ0RBQ1MsQ0FEVCx3Q0FDUyxDQUFBLGFBQ3hDLHdCQUd5QixDQUFBLCtCQUNPLENBQUEsZ0RBQ1MsQ0FEVCx3Q0FDUyxDQUFBLGdCQUN6Qyx3QkFHNEIsQ0FBQSwrQkFDTyxDQUFBLGdEQUNTLENBRFQsd0NBQ1MsQ0FBQSxhQUM1Qyx3QkFHd0IsQ0FBQSwrQkFDTyxDQUFBLGdEQUNTLENBRFQsd0NBQ1MsQ0FBQSxXQUN4Qyx3QkFHdUIsQ0FBQSwrQkFDTyxDQUFBLGdEQUNTLENBRFQsd0NBQ1MsQ0FBQSxXQUN2Qyx3QkFHdUIsQ0FBQSwrQkFDTyxDQUFBLGdEQUNTLENBRFQsd0NBQ1MsQ0FBQSxXQUN2Qyx3QkFHdUIsQ0FBQSwrQkFDTyxDQUFBLGdEQUNTLENBRFQsd0NBQ1MsQ0FBQSxjQUN2QyxhQU1RLENBQUEsY0FDUCxhQUdPLENBQUEsY0FDUCxhQUdPLENBQUEsY0FDUCxhQUdPLENBQUEsY0FDUCxhQUdPLENBQUEsY0FDUCxhQUdPLENBQUEsY0FDUCxhQUdPLENBQUEsY0FDUCxhQUdPLENBQUEsV1AxSVYseUJBQ2MsQ0FBQSxpQkFDSCxDQUFFLGVBQ1osQ0FBQSwyRkFDMkUsQ0FBQSxXQUc1RSxvQkFDYyxDQUFBLGlCQUNILENBQUUsZUFDWixDQUFBLHlFQUN5RCxDQUFBLFdBRzFELGtDQUNjLENBQUEsaUJBQ0gsQ0FBRSxlQUNaLENBQUEsNkdBQzZGLENBQUEsV0FHOUYsNEJBQ2MsQ0FBQSx5RkFDNEQsQ0FBQSx1QkFHMUUsS0FBQSxTQUVFLENBQUEsR0FBQSxTQUlBLENBQUEsQ0FBQSwwREEyTWlDLGFBQ2pDLENBQUEsMERBR2lDLGFBQ2pDLENBQUEsMERBR2lDLGFBQ2pDLENBQUEseUNFeXNETSxXRnBzRFAsQ0FBQSx1REFFTyxhQUNOLENBQU8scUJBQ0EsQ0FBQSxpQkFDRyxDQUFBLFVBQ1YsQ0FBQSxVQUNBLENBQUEsV0FDQSxDQUFBLFVBQ0EsQ0FBQSxrQkFDQSxDQUFBLGFBQ0EsQ0FBQSxjQUNBLGtCRWpRUyxDQUFBLHNDRnVFYSxDQUFBLFdFckV0QixDQUFBLHdCQUNnQixDQUFFLFlBQ2xCLENBQUEsYUFDQSxDQUFBLGFBQ0EsaUJBR0EsQ0FBQSxjQUNBLENBQU8sb0JBRkYsYUFLQyxDQUFFLFdBQ1AsQ0FBQSx3QkFDQSxhQUlNLENBQUUsZ0JBQ1AsY0FLRixDQUFPLGlCQUNQLENBQVUsYUFDTCxDQUFFLHNCQUNQLGNBR0EsQ0FBQSxpQkFDQSxDQUFVLFNBQ1YsQ0FBQSxhQUNBLENBQUEsV0FDQSxDQUFBLGFBQ0EsQ0FBQSxnQkFDQSxDQUFBLDBCQUdpQixzQkFWbEIsWUFXRSxDQUFBLENBQUEsV0FJRixpQkFDVyxDQUFBLGVBQ1YsQ0FBQSxhQUNBLENBQUEsMEJBRWlCLFdBTGxCLFVBTUUsQ0FBQSxZQUNBLENBQUEsQ0FBQSwwQkFLZ0IsaUJBRGxCLFlBRUUsQ0FBQSxjQUNBLENBQUEscUJBQ0EsQ0FBYyxzQkFDUCxDQUFBLGFBQ1AsQ0FBQSxDQUFBLGdCQUlGLGlCQUNDLENBQUEsVUFDQSxDQUFBLG9CQUNBLHVDRkNnQixDQUFBLGNFSWhCLENBQUEsWUFDQSxDQUFBLE9Gb0ZrQixDRW5GbEIsZUFDQSxDQUFBLGVBQ0EsQ0FBQSxlQUNBLENBQUEsWUFDQSxDQUFBLFVBQ0EsQ0FBQSxPQUFXLENBQ1gsTUFBTyxDQUFDLGFBRVIsQ0FBTSxXQUNOLENBQUEsNkJBQ2lCLENBQUEsa0JBQ2pCLENBQVcsNEJBQ0gsQ0FBQSxpQkFDUixDQUFBLGdCQUNBLENBQUEsd0JBQ0Esd0JBR2lCLENGakRLLFdFa0R0QixDQUFBLGlCQUNBLENBQUEsK0JBRUEsb0JBQ2EsQ0ZuRFEsa0NFb0RwQixpQkFJUyxDQUFBLEtBQUEsQ0FBQSxRQUVWLENBQUEsTUFBUSxDQUFDLGtCQUVDLENGaEVNLHlDRWtFaEIsa0JBQ1csQ0ZoRUksbUNFaUVkLGlCQUlTLENBQUEsS0FBQSxDQUFBLHNCQUVILENBQUEsUUFDUCxDQUFBLHFCQUNNLENBQUEsVUFDTixDQUFBLHFHQUNhLENBQUEsZ0NBS2IsZUFDQSxDQUFBLCtDQUdBLFVBQ0EsQ0FBQSwwQkFLZ0IscUNBRE4sWUFFVixDQUFBLGFBQ0EsQ0FBQSxDQUFBLHlCRzNJRCxZSGlKQyxDQUFBLHdCQUNBLENBQUEseUJBQ0EsQ0FBQSwwQkFJZSxVRDZmakIscUJDM2ZjLENBQUEsc0JHN0lELGlCSGlKWCxDQUFBLG1CRzdJSSxjSGlKSixDQUFBLDBCRzdJSSxRSGlKSixDQUFBLE1BQUssQ0FBSSxDQUNULGNBSUYsdUNGcEdrQixDQUFBLGNFdUdqQixDQUFBLGFBQ0EsQ0FBQSxRQUNBLENBQUEsV0FDQSxDQUFBLFdBQ0EsQ0FBQSxZQUNBLENBQUEscUJBQ0EsQ0FBYyxrQkFDZCxDQUFXLDRCQUNNLENBQUEsZ0JBQ2pCLENBQUEsWUFDQSxDQUFBLGlDQUNrQixDQUFBLGtCQUNSLENBQUUsa0JBQ1osaUJBR1UsQ0FBQSxLQUFBLENBQUEsT0FDSixDQUNOLFFBQ0EsQ0FBQSxNQUFRLENBQUMsWUFFVCxDQUFBLHVCQUNXLENBQUEsYUFDWCxDQUFBLFlBQ0EsQ0FBQSxVQUNBLENBQUEsMEJBRWlCLGtCQVpsQixXQWFFLENBQUEsY0FDTSxDQUFFLGdCQUNSLENBQUEsQ0FBVSxnQkFJWixZQUNDLENBQUEscUJBQ0EsQ0FBYyxpQkFDSixDQUFBLGVBQ1YsQ0FBQSxrQkFDQSxZQUdBLENBQUEsa0JBQ0EsQ0FBQSxlQUNBLENBQUEsV0FDQSxDQUFBLFlBQ0EsQ0FBQSwwQkFFaUIsa0JBUGxCLHFCQVFFLENBQWMsZUFDZCxDQUFBLGNBQ00sQ0FBRSxhQUNSLENBQUEsQ0FBTyxVQUtULHVDRmhLa0IsQ0FBQSxnQkVtS2pCLENBQUEscUJBQ1ksQ0FBQSxjQUVaLENBQUEsVUFDQSxDQUFBLEtGakdhLENBQUEsUUVtR2IsQ0FBQSxXQUNBLENBQUksV0FDSixDQUFBLG9CQUNZLENBQUEsY0FDTixDQUFFLFlBQ1IsQ0FBQSxxQkFDQSxDQUFjLGVBQ1AsQ0FBRSxlQUNULENBQUEsWUFqQkQsYUFvQkUsQ0FBQSxrQkFDQSx1Q0ZyTGdCLENBQUEsb0JFMExKLENBQUEsaUJBRUYsQ0FBQSxVQUNWLENBQUEsUUFDQSxDQUFBLFNBQ0EsQ0FBQSxVQUNBLENBQUEsV0FDQSxDQUFBLGNBQ00sQ0FBRSxvQkFDSSxDQUFBLFlBQ1osQ0FBQSxxQkFDQSxDQUFjLDRCQUNHLENBQUEsZUFDVixDQUFFLG1CQUNULGNBR0EsQ0FBQSxLQUFVLENBQUEsUUFFVixDQUFBLE1BQVEsQ0FBQyxTQUVULENBQUEsa0JBQ0EsZ0JBR0EsQ0FBQSxVQUVBLENBQUEsK0JBQ1ksQ0FBQSxrQ0FHRyxNQUFBLENBQVMsb0JBRVosQ0FBQSwwQ0FFWCxVQUNBLENBQUEsZUFDQSxVQUlELENBQUEsaUJBQ0EsQ0FBQSxxQkFDQSxZQUdBLENBQUEscUJBQ0EsQ0FBYyw0QkFDRyxDQUFBLGtCQUNqQixDQUFXLHdCQUNYLHFDRm5QdUIsQ0FBQSxVRXdQdkIsQ0FBQSx1QkFDTyxDQUFBLGtCQUNDLENBQUEsK0JBRVIsZUFDQyxDQUFBLHNCQUVPLENBQUEsbUJBQ0MsQ0FBQSxzQkFDUixjQUlELENBQUEsYUFDQSxDQUFBLGdDQUNBLG1CQUdXLENBQUUsWUFDYixDQUFBLGVBQ0EsQ0FBQSw2QkFDaUIsQ0FBQSxrQkFDakIsQ0FBVyxVQUNYLENBQUEsOENBSWtCLGdCQUNuQixDQUFBLGVBQ0EsQ0FBQSxzQkFHVyxpQkFDWCxDQUFBLGtCQUNBLFVBT0MsQ0FBQSx3QkFDaUIsQ0FBQSxZQUNqQixDQUFBLGNBQ0EsdUNGN1JnQixDQUFBLGlCRWtTTixDQUFBLFdBQ1YsQ0FBQSxtQkFDUyxDQUFBLG1CQUNULENBQUEsaUNBQ2tCLENBQUEsZ0JBQ2xCLENBQUEsd0JBRUEsY0FDQyxDQUFBLFFBQ0EsQ0FBQSxVQUNBLENBQUEsMENBR2dDLGNBaEJsQyxlQWlCRSxDQUFBLGVBQ0EsQ0FBQSxDQUFTLDBDQUd1QixjQXJCbEMsZUFzQkUsQ0FBQSxlQUNBLENBQUEsQ0FBUywwQ0FHdUIsY0ExQmxDLGVBMkJFLENBQUEsZUFDQSxDQUFBLENBQVMsMENBR3VCLGNBL0JsQyxRQWdDRSxDQUFBLENBQUEsMENBS2dDLGlCQURsQyxjQUVFLENBQUEsYUFDQSxDQUFBLENBQUEsMkJBR0QsY0FDQyxDQUFBLFdBQ0EsQ0FBQSxPRm5RZSxDRW9RZixVQUNBLENBQUEsVUFDQSxDQUFBLGFBQ0EsQ0FBQSxrQ0FDYSxDQUFBLHdDQUViLGlCQUNVLENBQUUsMEJBQ1gsQ0FBQSxxQkFDQSxDQUFBLHlDQUdELDJCQUNDLENBQUEscUJBQ0EsQ0FBQSxpQ0FqQkQsU0FxQkMsQ0FBQSxpQkFDTyxDQUFBLDRJQXRCUixXQTZCQyxDQUFBLGFBQ0EsQ0FBQSxvS0E5QlMsZ0JBaUNDLENBQUEsYUFDSixDQUFFLGFBQ1AsV0FNSCxDQUFBLGVBQ0EsQ0FBQSwwQkFFaUIsYUFKbEIsd0JBS0UsQ0FBQSw0QkFDa0IsQ0FBQSxDQUFBLGNBSXBCLFdBQ0MsQ0FBQSxlQUNPLENBQUUsMEJBRVEsY0FKbEIseUJBS0UsQ0FBQSw0QkFDa0IsQ0FBQSxDQUFBLG9CQUlwQixZQUNDLENBQUEsNkJBQ2lCLENBQUEseUJBRmpCLG9CQUtVLENBQUEsd0JBQ1QsQ0FEUyxxQkFDVCxDQURTLG9CQUNULENBRFMsZ0JBQ1QsQ0FBQSxXQUNBLENBQUEsZUFDQSxDQUFBLGNBQ0EsQ0FBQSxxQkFDQSxjQUlLLENBQUUsMkJBRFIsYUFJTSxDRmhiVSxxQkVpYmYsaUJBSUQsQ0FBQSxzQkFDQSxhQUdBLENBQU0sc0JBQ04sZ0JBR0EsQ0FBQSxvQ0FPRixrQkFDQyxDQUFBLFdBQ0EsQ0FBQSxVQUNBLENBQUEscUJBQ0EsZ0JBR0EsQ0FBQSxnQkFDQSxZQUdBLENBQUEsdUJBQ0EsS0FBQSxDQUFBLGdCQUlBLENBQUEsV0FDQSxDQUFBLGFBQ0ssQ0ZsYlEsY0VtYlAsQ0FBRSxjQUNSLENBQUEsVUFDQSxDQUFBLGlCQUNBLENBQVUsNkJBRVYsZ0JBQ0MsQ0FBQSxrQkFDQSxDQUFXLHFCQUNFLENBQUEsMEZBYk8sYUFtQmYsQ0FBRSxvQkFDUCxDQUFBLGtEQUtRLEtBQUEsQ0FBQSxnQkFFVCxDQUFBLFdBQ0EsQ0FBQSwyQkFDTyxDQUFBLGNBQ0QsQ0FBRSxjQUNSLENBQUEsZ01BTnFCLG9CQVdwQixDQUFBLDZCQUtGLGdCQUNDLENBQUEsOEJBSUQsZ0JBQ0MsQ0FBQSxZQUNBLENBQUEsc0RBR0UsYUFDRCxDQUFBLGFBQ0EsdUNGN2VnQixDQUFBLGNFb2ZqQixDQUFBLFdBQ0EsQ0FBQSxTQUNBLENBQUEsUUFDQSxDQUFBLDJCQUNPLENBQUEsVUFDUCxDQUFBLFdBQ0EsQ0FBQSxjQUNNLENBQUUsd0JBQ1IsQ0FEUSxxQkFDUixDQURRLG9CQUNSLENBRFEsZ0JBQ1IsQ0FBQSx3QkFFQSxpQkFDVyxDQUFBLE9BQVEsQ0FDbEIsUUFDQSxDQUFBLFNBQ0EsdUNGbGdCZ0IsQ0FBQSxZRXdnQmpCLENBQUEsY0FDQSxDQUFBLFdBQ0EsQ0FBQSxZQUNBLENBQUEsV0FDQSxDQUFBLGlDQUNrQixDQUFBLFNBQ2xCLENBQUEsUUFDQSxDQUFBLHFCQUNBLENBQWMsbUJBRWQsYUFDQyxDQUFBLGVBQ0EsQ0FBQSxXQUNBLENBQUEsVUFDQSxDQUFBLG1CQUdELGVBQ0MsQ0FBQSxXQUNBLENBQUEsWUFDQSxDQUFBLDZCQUNnQixDQUFBLHVCQUNMLENBQUEsb0JBR1osV0FDQyxDQUFBLGFBQ0EsQ0FBQSxVQUNBLENBQUEsbUNBQ29CLENBQUEsWUFDcEIsQ0FBQSxrQkFDQSxDQUFBLDZCQUNpQixDQUFBLHdCQUNqQixDQURpQixxQkFDakIsQ0FEaUIsb0JBQ2pCLENBRGlCLGdCQUNqQixDQUFBLGNBQ00sQ0FBRSw4QkFHRSxnQkFDVixDQUFBLGFBQ0EsQ0FBQSxpQ0FHVSxXQUNWLENBQUEsNERBR3FDLDBCQUNyQyxDQUFBLDJCQUNBLENBQUEsMkRBR3FDLDZCQUNyQyxDQUFBLDhCQUNBLENBQUEsa0NBR1MsaUJBQ0MsQ0FBQSxjQUNKLENBQUUsZUFDRCxDQUFFLHNCQUNGLENBQUEsb0JBQ0ksQ0FBQSxZQUNYLENBQUEsa0JBQ0EsQ0FBVyw2QkFDTSxDQUFBLDJDQUdSLGFBQ1QsQ0FBQSxtQ0FHRCxZQUNDLENBQUEsaUJBQ1UsQ0FBQSx3REFHVSxZQUNwQixDQUFBLFNBQ0EsQ0FBQSx3QkFHRCxhQUNDLENBQUEsZUFDQSxDQUFBLDhDQUd3QixpQkFDeEIsQ0FBVSx3Q0FHRCxnQkFDVCxDQUFBLDRDQUd3QixhQUNuQixDRmhqQlEsNENFbWpCVyxhQUNuQixDRm5qQlEsZ0NFc2pCSixVQUNULENBQUEsYUFDQSxDQUFBLGVBQ08sQ0FBRSxvQkFDVCxjQU1BLENBQUEsY0FDQSx3Q0FHaUIsQ0FIakIsZ0NBR2lCLENBQUEsV0FDakIsZUFHQSxDQUFBLGlCQUNBLENBQUEsZUFDQSxhQUdLLENBQUUsY0FDUCx5Q0FHc0MsQ0FIdEMsaUNBR3NDLENBQUEsaUJBQ3RDLGFBR0ssQ0ZwbEJlLGlCRXFsQnBCLGFBR0ssQ0Z2bEJlLGVFMGtCckIsYUFpQk0sQ0FBRSxpQkFUUixhQWFNLENGaG1CZSxpQkV1bEJyQixhQWFNLENGbm1CZSxjRW9tQnBCLFVBY0QsQ0FBQSxZQUNBLENBQUEsVUFDQSxpQkFLVSxDQUFBLG9CQUNGLENBQUEsTUFBQSxDQUFhLFlBRXJCLENBQUEscUJBQ0EsQ0FBYyx3QkFDTixDQUFBLDZCQUVSLGNBQ08sQ0FBRSxpQkFDRSxDQUFBLE1BQUEsQ0FBUSxvQkFFbEIsY0FJRCxDQUFBLHdCQUdhLFlBQ2IsQ0FBQSx1QkFDVyxDQUFBLGlDQUdVLFlBQ3JCLENBQUEsNkJBQ2lCLENBQUEsU0FDakIsQ0FBQSx5QkFHYyxpQkFDZCxDQUFVLGlCQUNWLENBQUEsaURBRVEsYUFDUCxDQUFBLGlCQURFLGlCQU1ILENBQVUsZUFDVixDQUFBLDRCQUNZLENBQUEsK0JBQ0csQ0FBQSx1QkFDSixDQUFBLGFBQ1gsQ0FBQSxrQkFDVSxDQUFFLDBCQUVLLGlCQWRkLGtCQWVRLENBQUUsQ0FBQSwwQkFNZCxlQUNDLENBQUEsd0NBRFcsVUFJVixDQUFBLGtEQUdELGNBQ08sQ0FBRSxnQkFDUixVQUlELENBQUEsZ0JBQ0EsQ0FBQSxTQUNBLENBQUEsNkJBRUMsNEJBQ1ksQ0FEWix5QkFDWSxDQURaLG9CQUNZLENBQUEsK0JBR1osYUFDSyxDQUFFLGNBQ0QsQ0FBRSx5QkFLVix1QkFDWSxDQUFBLGlCQUNELENBQUEsY0FDVixDQUFBLG9CQUNBLENBQUEsV0FDQSxDQUFBLGVBQ0EsQ0FBQSxpQkFDQSxDQUFVLFVBQ1YsQ0FBQSxlQUNBLENBQUEsMEJBR2tCLHVDQURqQixpQkFFQyxDQUFVLGlCQUNWLENBQUEsQ0FBQSwwQkFJZSx5QkFsQmxCLGVBbUJFLENBQUEsQ0FBQSxxQ0FuQkYsMEJBdUJjLENBQUEsYUFDWixDQUFBLCtCQXhCRixjQTRCUSxDQUFFLGdCQUNSLENBQUEsbUVBR0QsZ0RGanFCOEIsQ0FBQSxhRW1xQjdCLDRCQUljLENBQUEsa0NBR0ssb0JBQ1IsQ0FBRSxrQkFDZCx1QkFHUyxDQUFBLGlCQUNULGVBSUMsQ0FBUSxpQkFDUiwyQkFHQSxDQUFBLDRCQUNBLENBQUEsNkJBR2EsWUFFWixDQUFBLHdCQUNBLENBQUEseUJBQ0EsQ0FBQSxrQ0FHRCw0QkFDb0IsQ0FBQSwyQkFDRCxDQUFBLGdCQUNsQixDQUFBLDhCQUNBLENBQUEsaUJBQ0EsQ0FBVSxxQkFDVixDQUFjLCtCQUNkLGdCQUlELENBQUEsa0JBQ0EsQ0FBQSx1QkFDQSxpQkFHQSxDQUFBLGtCQUNBLGNBR0EsQ0FBQSxhQUNBLENBQUEsYUFDQSxDQUFBLG9CQUNBLGdCQUdBLENBQUEsZUFDQSxpQkFHVSxDQUFBLEtBQUEsQ0FBQSxPQUNKLENBQ04sUUFDQSxDQUFBLE1BQVEsQ0FBQyxjQUVILENBQUUsa0JBQ0UsQ0FBRSxVQUNaLENBQUEsOENBTUEsaUJBQ0MsQ0FBQSxVQUNBLGlCQUtRLENBQUEsZUFDVixDQUFBLDJCQUNhLENBQUEsdUJBQ0MsQ0FBQSxlQUNkLENBQUEsNkJBQ2MsQ0FBQSx5QkFFWCxZQUNGLENBQUEsNkJBQ2lCLENBQUEsb0JBQ0osQ0FBQSwyQkFJSSxpQkFDUixDQUFBLGtCQUNWLENBQUEsT0FBbUIsVUFJbkIsQ0FBQSxlQUNBLENBQUEsd0JBQ2UsQ0FBQSxhQUNmLENBQUEsa0JBSkssZUFPSixDQUFBLE1BQWUsaUJBTVAsQ0FBQSxhQUNULFVBS0EsQ0FBQSxpQkFDQSxDQUFBLDRCQUdXLFdBQ1gsQ0FBQSx1QkFDTyxDQUFBLGdDQUNXLENBQUEsNEJBQ0csQ0FBQyxxQkFHVixlQUNaLENBQUEsU0FDQSxDQUFBLGdCQUNBLENBQUEsZUFDQSxDQUFBLFVBR0MsVUFDRCxDQUFBLDJCQUdrQixVQUNsQixDQUFBLGVBR0MsVUFDRCxDQUFBLGVBR0Msa0JBQ1MsQ0ZqOUJJLFVFazlCZCxDQUFBLFlBQ0EsQ0FBQSxpQkFHTSxnQkFDTixDQUFBLGlCQURNLGdCQUtOLENBQUEsV0FHQyxvQkFDRCxDQUFBLG1CQUdNLGdCQUNOLENBQUEsZ0NBR3FCLGVBQ3JCLENBQUEsMEJBR2EsYUFDUixDRmwvQlksY0VtL0JYLENBQUUsc0NBR2lCLGFBQ3BCLENGeCtCaUIsZUUyK0JwQixXQUNGLENBQUEsVUFDQSxDQUFBLHdDQUtDLG1CQUNRLENBQUEsYUFDUixDQUFBLGNBQ0EsQ0FBQSxpQkFDQSxDQUFBLFVBQ0EsQ0FBQSxvQkFDQSxpQkFHVSxDQUFBLFFBQ1YsQ0FBQSxNQUFLLENBQUksZ0JBRVQsQ0FBQSxxQkFDWSxDQUFBLHVCQUNMLENBQUEsYUFDUCxDQUFNLG9CQUNHLENBQUEsaUJBQ1QsQ0FBQSwwQkFDWSxDQUFBLGNBQ1osQ0FBQSw2QkFFQSxRQUNDLENBQUEsZ0JBQ0EsVUFJRCxDQUFBLHVCQUNBLGlCQUdBLENBQVUsZ0JBQ1YsQ0FBQSxhQUNLLENBQUUscUJBQ1AsaUJBR0EsQ0FBVSxTQUNWLENBQUEsdURBSUEsNEJBQ1csQ0FBQSx3QkFDWCxhQUdBLENBQUEsa0JBQ1UsQ0FBRSxxQkFDQyxDQUFFLGVBQ2YsQ0FBQSxxQkFDQSw2QkFHYSxDQUFBLG9DQUVWLCtCQUNhLENBQUEsNEJBQ2YsZ0JBSUQsQ0FBUywyQkFDSSxDQUFBLHVCQUNDLENBQUEsK0JBQ1UsQ0YzakNYLGFFNGpDUixDRjVqQ1EsZ0NFNmpDRyxDQUFBLG1CQUNoQixDQUFZLGdCQUNaLGFBR0EsQ0FBQSxpQkFDVSxDQUFBLFVBQ1YsQ0FBQSxLRjcrQmMsQ0FBQSxZRSsrQmQsQ0FBSyxVQUNMLENBQUEsZUFDQSxDQUFBLFdBQ0EsQ0FBQSxpREFDOEQsQ0FBQSxzQkFUOUQsY0FZQyxDQUFBLE9BQWUsQ0FDZixvQkFDUyxDQUFBLGlEQUNxRCxDQUFBLDRDQUU5RCxTQUNDLENBQUEsdUJBQ1ksQ0FBQSw2Q0FHYixTQUNDLENBQUEsdUJBQ1ksQ0FBQSxZQUNaLFVBS0YsQ0FBQSxXQUNBLENBQUEsc0JBQ0EsaUJBR1UsQ0FBQSxPQUFRLENBQ2xCLFVBQ0EsQ0FBQSxZQUNBLENBQUEsa0JBQ0EsQ0FBVyxzQkFDWCxDQUFlLFVBQ2YsQ0FBQSxXQUNBLENBQUEsNEJGdmxDc0IsQ0FBQSxjRXlsQ2hCLENBQUUsV0FDUixDQUFBLDJDRmxtQ3VCLENBQUEsU0VvbUN2QixDQUFBLHVCQUNZLENBQUEsNEJBRVosTUFBQSxDQUFPLDBCQUVOLENBQUEsNkJBQ0EsQ0FBQSxjQUNBLENBQUEsNkJBQ0EsT0FFTyxDQUNQLDJCQUNBLENBQUEsOEJBQ0EsQ0FBQSxhQUNBLENBQUEsNEJBM0JELFVBK0JDLENBQUEsdUJBQ0EsWUFJRCxDQUFBLGlCQUNVLENBQUEsV0FDVixDQUFBLFNBQ0EsQ0FBQSxRQUNBLENBQUEsUUFDQSxDQUFBLGtCQUNBLENBQVcsc0JBQ1gsQ0FBZSxTQUNmLENBQUEsdUJBQ1ksQ0FBQSxtQkFDWiw0QkY3bkNzQixDQUFBLFdFaW9DdEIsQ0FBQSwyQkFDYSxDQUFBLHVCQUNDLENBQUEsY0FDZCxDQUFBLGlCQUNBLENBQUEsZUFDTyxDQUFFLDJDRjlvQ2MsQ0FBQSxnQ0VvcEN2QixpQkFDQSxDQUFBLHVCQUtHLHlCQUNXLENBQUEsMkVBTWYsZ0JBQ0MsQ0FBQSxTQUNBLENBQUEsNkJBR0ksVUFDSixDQUFBLGlCQUdELFVBQ0MsQ0FBQSxTQUNBLENBQUEsbUJBR0QsV0FDQyxDQUFBLGlCQUNBLENBQVUsb0JBQ0QsQ0FBQSxrSEFJVyxRQUNwQixDQUFBLHFCQUdELGtCQUNDLENBQVcsVUFDWCxDQUFBLHVCQUdJLHdCQUNJLENBQUEsT0FBaUIsaUJBSzFCLENBQVUsZUFDVixDQUFBLGFBQ0EsQ0FBTSxVQUNOLGlCQUdBLENBQVUsZUFDSCxDQUFFLHlCQUNELENBQUEsVUFDUixjQUdNLENBQUUsVUFDUixtQkFHUyxDQUFBLGlCQUNULENBQUEsZ0JBQ0EsZUFHQSxDQUFBLFlBQ0EsaUJBR0EsQ0FBVSxVQUNWLGlCQUdVLENBQUEsVUFDVixDQUFBLEtGeHBDZSxDQUFBLFlFMHBDZixDQUFLLFdBQ0wsQ0FBQSxVQUNBLENBQUEsZUFDQSxDQUFBLFdBQ0EsQ0FBQSxpREFDOEQsQ0FBQSxnQkFHNUQsY0FDRixDQUFBLE9BQWUsQ0FDZixvQkFDUyxDQUFBLGlEQUNxRCxDQUFBLGtCQUd2RCxhQUNQLENBQUEsZUFDQSxDQUFBLGlCQUNBLHdCQUlnQixDQUFFLDRCQURILGtCQUlKLENBQUUsZ0VBRWdCLG9CQUNmLENBQUEseURBTWYsb0JBQ2EsQ0FBQSxvQkFDWiwyQkFHTyxDQUFBLFdBQ1AsVUFHQSxDQUFBLGVBQ0EscUJBR1ksQ0FBQSwrQ0FEQyxrQkFLRixDQUFFLDJCQUlGLGlCQUNYLENBQUEsNkJBQ0EsZ0JBR0EsQ0FBQSx3R0FPRCxxQ0Z4eUN5QixDQUFBLHFCRTB5Q1osQ0FBQSxvS0FRWixnQkFDQyxDQUFBLGlCQUNBLENBQUEsdUNBSTZCLHdCQUNkLENBQUUsb0JBQ04sQ0FBRSxlQUNkLHdCQUdnQixDQUFFLG9CQUNOLENBQUUscUJBQ2QsVUFHQSxDQUFBLHdCQUNnQixDQUFFLG9CQUNOLENBQUUscUJBQ2QsVUFHQSxDQUFBLHdCQUNnQixDQUFFLG9CQUNOLENBQUUscURBRzhCLHdCQUM1QixDQUFFLG9CQUNOLENBQUUsZ0JBQ2QseUJBR2dCLENBQUEsNEJBR0wsaUJBQ1gsQ0FBQSwyQ0FHa0Msd0JBQ2xCLENGeDJDRiw4QkV5MkNkLDJCQUdPLENBQUEsOEJBQ1AscUNGajJDd0IsQ0FBQSxxQkVxMkNaLENBQUEsMENBR0QsZ0JBQ1gsQ0FBQSxpQkFDQSxDQUFBLHNDQUdXLG9CQUNDLENBQUEsbURBR21CLG9CQUNuQixDQUFBLGNBQ1osZ0JBR0EsQ0FBQSxpQkFDQSxZQUlDLENBQUEsWUFDQSxTQUdBLENBQUEsZ0JBQ0EsQ0FBQSxZQUNBLENBQUEsWUFDQSxDQUFBLGNBQ00sQ0FBRSxrQkFMUix5QkFRYSxDQUFBLGdCQUNaLFNBSUQsQ0FBQSxXQUNBLENBQUEsZ0JBQ0EsZUFRQSxDQUFBLGlCQUNBLENBQVUsV0FDVixDQUFBLFVBQ0EsQ0FBQSxtQkFDQSxZQUdBLENBQUEscUJBQ0EsQ0FBYyxVQUNkLENBQUEsV0FDQSxDQUFBLGFBQ0EsZ0JBR0EsQ0FBUyxlQUNULFVBR0EsQ0FBQSxZQUNBLENBQUEsNkJBQ2lCLENBQUEsdUJBQ0gsQ0FBQSw0QkFDSyxDQUFBLDhCQUluQixlQUNBLENBQUEsVUFDQSxDQUFBLHdCQUNBLGlCQUdBLENBQVUsZUFDVixZQUdBLENBQUEsNkJBQ2lCLENBQUEsMEJBSWpCLGVBQ0EsQ0FBQSxVQUNBLENBQUEsc0JBQ0EsaUJBR0EsQ0FBVSw4QkFJVixVQUNBLENBQUEsaUJBQ0EsQ0FBVSxhQUNWLENBQUEsV0FDQSxDQUFBLGtCQUNBLGVBR08sQ0FBRSxpQkFDVCxDQUFBLFdBQ0EsQ0FBQSxpQkFDQSxDQUFVLGdDQUlWLFNBQ0EsQ0FBQSxVQUNBLENBQUEsaUJBQ0EsQ0FBVSxrREFFVCxVQUNBLENBQUEsZ0JBQ0EsZ0JBSUQsQ0FBQSxVQUNBLFVBR0EsQ0FBQSxZQUNBLENBQUEsNkJBQ2lCLENBQUEsZUFDVixDQUFFLCtCQUNNLENBQUEsdUJBTGQsZUFRQSxDQUFBLGdCQUNBLG9CQUlXLENBQUEsa0JBQ1osb0JBR1ksQ0FBQSx3QkFDWixvQkFHWSxDQUFBLDJCQUtaLGlCQUNBLENBQUEsZUFDQSxZQVFBLENBQUEsYUFDQSxDQUFBLGlCQUZBLFdBS0MsQ0FBQSxzQkFMTyxhQVNQLENBQUEsNkJBR0UsMkJBQ0YsQ0FBQSx5QkFDQSxDQUFBLDRCQUNBLENBQUEsY0FDQSxDQUFBLDRCQUdFLDRCQUNGLENBQUEsd0JBQ0EsQ0FBQSwyQkFDQSxDQUFBLG9EQUd5QixlQUN6QixDQUFBLGNBQ0EsQ0FBQSx1QkFDQSxpQkFJUyxDQUFBLFNBQ1YsQ0FBQSxLQUFPLENBQUUsVUFFVCxDQUFBLFFBQ0EsQ0FBQSxXQUNBLENBQUEseUJBQ0EsaUJBR1UsQ0FBQSxLQUFBLENBQUEsU0FFVixDQUFBLFFBQ0EsQ0FBQSxXQUNBLENBQUEsYUFDQSxpQkFHQSxDQUFBLDBCQUNBLDJCQUdBLENBQUEseUJBQ0EsQ0FBQSw0QkFDQSxDQUFBLGNBQ0EsQ0FBQSwwQkFDQSxlQUdBLENBQUEsY0FDQSxDQUFBLHdDQUljLDBCQUNmLENBQUEsZUFHRSxZQUNGLENBQUEsc0JBQ0EsaUJBS0EsQ0FBVSxpQkFDVixpQkFHQSxDQUFVLGdCQUNWLENBQUEsa0JBQ0EsaUJBR0EsQ0FBVSxnQkFDVixDQUFBLHVCQUNBLGlCQUdBLENBQVUsZ0JBQ1YsQ0FBQSxlQUNBLENBQUEsaUJBQ0EsaUJBR0EsQ0FBVSw2QkFDVixZQUdBLENBQUEsMEJBQ0EsaUJBR0EsQ0FBQSxxQ0FHbUIsZ0JBQ25CLENBQUEsY0FDQSxDQUFPLDhCQUdZLG1CQUNuQixDQUFBLHNFQUtELFNBQ0MsQ0FBQSw0RkFNYyxhQUNULENBQUUsWUFDUCxDQUFBLGtCQUNBLENBQVcsZUFDWCxDQUFRLGlCQUNDLENBQUEsb0JBQ1QsQ0FBQSxnTUFOcUIsU0FTcEIsQ0FBQSxvTEFUb0IsV0FhcEIsQ0FBQSwyQkFDQSxnREZ4Z0Q2QixDQUFBLFNFNmdEOUIsWUFHQSxDQUFBLGlCQUNVLENBQUEsZUFDSCxDQUFFLHFCQUNULENBQWMsYUFDZCxDQUFBLFlBQ0EsQ0FBQSxlQU5ELGlCQVNFLENBQUEsZUFDQSxDQUFBLGtCQUNBLFlBR0EsQ0FBQSxvQkFDQSxpQkFHQSxDQUFBLGVBQ0EsQ0FBQSxjQUNBLENBQUEsMkJBSFcsYUFNVixDQUFBLHNCQUNBLENBQUEsc0NGanJENEIsQ0FBQSxpQkVtckRsQixDQUFBLFFBQ1YsQ0FBQSxVQUNBLENBQUEsVUFDQSxDQUFBLGdCQUNRLENBQUEsd0JBQ1IsQ0FEUSxxQkFDUixDQURRLG9CQUNSLENBRFEsZ0JBQ1IsQ0FBQSxlQUNBLENBQUEsY0FDQSxDQUFBLGlCQUNBLENBQVUsbUJBQ1YsWUFJRCxDQUFBLGdDQUVHLFdBQ0YsQ0FBQSxnRUFRRCxZQUNBLENBQUEsaUJBQ0EsYUFHQSxDQUFBLGdCQUNBLENBQUEsYUFDQSxDQUFBLGlCQUNBLENBQUEseUVBS0EsYUFDQSxDQUFBLGNBQ0EsQ0FBQSxhQUNBLENBQUEsV0FDQSxDQUFBLGlCQUNBLFVBR0EsQ0FBQSxpQkFDQSxDQUFVLHdCQUtWLGVBQ0EsQ0FBQSw4QkFNQyxhQUNBLENBQUEsb0NBR0EsWUFDQSxDQUFBLHdDQUdBLFlBQ0EsQ0FBQSxxQkFDQSxDQUFjLDZCQUdkLHVCQUNTLENBQUEsMkJBR1Qsa0JBQ08sQ0FBQSxnQ0FHUCxrQkFDTyxDQUFBLDRKQWdCVCxrQkFDQyxDQUFBLG9DQUtBLGlCQUVBLENBQUEsbUJBQ0EsZUFLRCxDQUFBLGVBQ0EsQ0FBQSxhQUNBLENBQUEsNkJBRUEsZUFDQyxDQUFBLDZCQUdELGVBQ0MsQ0FBQSw2QkFHRCxlQUNDLENBQUEsMkVBZEYsZUFzQlUsQ0FBQSxhQUNSLENBQUEsd0NBR0QsVUFDQyxDQUFBLFdBQ0EsQ0FBQSxtREFGbUIsUUFLbEIsQ0FBQSw2QkFJRixrQkFDQyxDQUFBLHVDQUVFLGdCQUNELENBQUEsdUNBR0MsZUFDRCxDQUFBLDRDQUlGLGtCQUVFLENBQVcsa0RBR1YsaUJBQ0QsQ0FBQSxvREFEQyxjQUlNLENBQUUsc0NBS1gsYUFDQyxDQUFBLGNBQ0EsQ0FBQSxtQ0FHRCxrQkFDQyxDQUFBLHlDQUVDLGlCQUNBLENBQUEsbUNBTVcsa0JBQ0gsQ0FBRSxvQkFHSCxNQUFBLENBQ0MsOEJBYVUsa0JBQ1YsQ0FBRSwrQkFHVSxhQUNqQixDQUFFLGtCQUNQLGFBR0EsQ0FBQSxpQkFDQSxDQUFBLHdCQUdjLGVBQ2QsQ0FBQSwyRkFJNkMsZUFDN0MsQ0FBQSw4REFLZ0IsZUFDaEIsQ0FBQSw0QkFDQSxVQUdBLENBQUEsb0JBQ1MsQ0FBQSxZQUNULENBQUEsMkJBR2dCLGNBQ1YsQ0FBRSx1QkFDUixDQURRLGVBQ1IsQ0FBUSxLQUFFLENBQUEsZUFFVixDQUFBLGdCQUNBLENBQUEsZ0JBQ1MsQ0FBQSwyQ0FHeUIsNkJBQ3BCLGNBQ2IsQ0FBQSxLQUFVLENBQUEsTUFDTCxDQUFDLG9DQUVLLENBQUEsUUFDWCxDQUFBLGdCQUNBLENBQUEsMkJBaEJlLGlCQW9CTCxDQUFBLENBQUEsc0NBSUssZ0JBQ2hCLENBQUEsaUJBQ0EsYUFHSyxDQUFFLDJCQUNNLENBQUEsZUFDYixDQUFBLGlCQUNBLENBQVUsd0JBQ00sQ0FBQSxpQkFDaEIsQ0FBQSxnQkFDQSxDQUFTLDRCQUdDLGVBQ1YsQ0FBQSxnREFJTSxlQUNOLENBQUEsbUNBR3NCLGVBQ2YsQ0FBRSx5QkFHSyxVQUNkLENBQUEsZUFDQSxjQUdBLENBQUEsV0FDQSxDQUFBLHlDQUNPLENBQUEsV0FDUCxDQUFBLHFEQUNNLENBQUEsY0FDTixDQUFPLDJCQUdXLGVBVG5CLHdDQVdTLENBQUEsb0RBQ0QsQ0FBQSxDQUFBLDBCQUlTLGVBaEJqQix5Q0FrQlMsQ0FBQSx3Q0FDRCxDQUFBLENBQUEsMENBSXlCLGVBdkJqQyx5Q0F5QlMsQ0FBQSx3Q0FDRCxDQUFBLENBQUEsMENBSXlCLGVBOUJqQyxpQkFnQ1MsQ0FBQSxnQkFDRCxDQUFBLENBQUEscUJBSVIsVUFDQyxDQUFBLFdBQ0EsdUNGeC9EaUIsQ0FBQSxlRTYvRGpCLENBQUEsZ0JBQ0EsQ0FBQSxVQUNBLENBQUEsaUNBQ2tCLENBQUEsbUJBQ1QsQ0FBQSxtQkFDVCxDQUFBLFlBQ0EsQ0FBQSxVQUNBLFlBR0EsQ0FBQSw2QkFDaUIsQ0FBQSxRQUNqQixDQUFBLGFBQ0EsQ0FBQSxlQUNBLG9CQUdTLENBQUEsV0FDVCxxQkFHQSxDQUFBLGNBTUssZUFDRSxDQUFBLGlCQUdBLG9CQUNLLENBQUEsT0FBUyxrQkFJWCxDQUFFLDJDQUdzQiw2QkFoSXBCLHVDRnA2REcsQ0FBQSxnQkV3aUVoQixDQUFBLENBQVUsWUFJWix1Q0Y1aUVrQixDQUFBLCtCRWlqRWhCLHVDRmpqRWdCLENBQUEsYUVtakVoQix1Q0ZuakVnQixDQUFBLDhCRTBqRWpCLGtCQUNXLENBQUUsV0FDWixDQUFBLGdCQUNBLENGN2pFZ0IseUJFMGpFakIsa0JBQ1csQ0FBRSxXQUNaLENBQUEsZ0JBQ0EsQ0FBQSxPQUFpQixjQUtsQixDQUFBLFdBQ0EsQ0FBQSxLRnovRFksQ0FBQSxPRTAvRE4sQ0FDTixRQUNBLENBQUEsTUFBUSxDQUFDLFdBRVQsQ0FBQSxZQUNBLENBQUEsZ0JBQ0EsQ0FBQSxZQUNBLENBQUEscUJBQ0EsQ0FBYyxvQkFHYiwyQkFDYyxDQUFBLHVCQUNDLENBQUEsd0JBQ0UsQ0FBQSxnQkFDaEIsQ0FBQSxhQUNBLENBQUEsV0FDQSxDQUFBLGlCQUNBLENBQVUsY0FDVixDQUFBLDZCQUNBLENBREEsaUJBQ0EsQ0FBQSw0QkFDQSxDQURBLGdCQUNBLENBQUEsOEJBQ0EsQ0FEQSxrQkFDQSxDQUFBLFlBQ0EsbUJBR0EsQ0FIQSxjQUdBLENBQUEsbUJBQ0EsQ0FEQSxjQUNBLENBQUEsOEJBQ2MsQ0FEZCx5QkFDYyxDQUFBLDJCQUVLLFlBTHBCLG1CQU1FLENBTkYsY0FNRSxDQUFBLENBQUEsMkJBR2tCLFlBVHBCLG1CQVVFLENBVkYsY0FVRSxDQUFBLENBQUEsMkJBR2tCLFlBYnBCLG1CQWNFLENBZEYsY0FjRSxDQUFBLENBQUEsMkJBR2tCLFlBakJwQixtQkFrQkUsQ0FsQkYsY0FrQkUsQ0FBQSxDQUFBLDBDQUdnQyxZQXJCbEMsbUJBc0JFLENBdEJGLGNBc0JFLENBQUEsQ0FBQSxpQkFJRixRQUNDLENBQUEsVUFDQSxDQUFBLG9CQUNTLENBQUEsbUJBQ1QsQ0FBQSxxQkFDeUIsQ0FBQSxrQkFDekIsNkJBR0EsQ0FIQSxpQkFHQSxDQUFBLDRCQUNBLENBREEsZ0JBQ0EsQ0FBQSw4QkFDQSxDQURBLGtCQUNBLENBQUEsNkJBT0EsaUJBQ0EsQ0FBQSxjQUNBLGFBS0YsQ0FBQSxhQUNBLENBQUEsZUFDQSxDQUFBLGdCQUhELGlCQU1FLENBQUEsbUJBSU8sb0JBQ0ksQ0FBQSw4SUFNa0Isb0JBQ2xCLENBQUEsb0dBSXlCLG9CQUN6QixDQUFBLDZCQUlYLGtCQUNTLENBQUUsMkRBSUUsaUJBQ2QsQ0FBVSxtQkFDVixlQUlDLENBQUEsYUFDQSxDQUFNLHFCQUNOLGFBR0ssQ0FBRSxZQUNQLENBQUEsa0JBQ0EsQ0FBVyxlQUNYLENBQVEsZUFDUixDQUFBLHFCQUNTLENBQUEsb0JBQ1QsQ0FBQSw0QkFDbUIsQ0FBQSx5QkFDSCxDQUFBLDZCQUNDLENBQUEsd0JBQ2pCLGNBR0EsQ0FBQSxZQUNBLFlBR0EsQ0FBQSxzQkFFQSxZQUNDLENBQUEscUJBQ0EsQ0FBYyxjQUNkLENBQUEsVUFDQSxDQUFBLFFBQ0EsQ0FBQSxVQUNBLENBQUEsYUFDQSxDQUFBLDBCQUVpQixzQkFUbEIsWUFVRSxDQUFBLENBQUEscUJBS0gsaUJBQ1csQ0FBQSxPQUFRLENBQ2xCLE9BQVEsQ0FDUixVQUNBLENBQUEsTUFBUSxDQUFHLGdCQUVYLENBQUEsOEJBQ2UsQ0FBQSx3QkFDZixjQUdBLENBQUEsUUFDQSxDQUFBLFFBQ0EsQ0FBQSxjQUNBLDJCQUdBLENBQUEsY0FDQSw0QkFHQSxDQUFBLGlDQUtBLGlCQUNBLENBQUEsaUNBR0EsZUFDQSxDQUFBLDJCQUNtQixDQUFFLG9CQUNyQixtQkFLVyxDQUFFLHdEQUliLHVDRnR3RWdCLENBQUEscUJFeXdFSixDQUFBLFVBQ1osQ0FBQSxrQ0FDQSxDQURBLDBCQUNBLENBQUEsMEJBQ0EsZUFHQSxDQUFBLGVBQ0EsQ0FBQSxnQkFDQSxDQUFBLFdBQ0EsQ0FBQSxzQkFDQSxXQUdBLENBQUEsWUFDQSxDQUFBLGtCQUNBLENBREEsZUFDQSxDQUFBLGdGQU1BLGVBQ0EsQ0FBQSxpQkFDQSxDQUFBLFVBQ0EsQ0FBQSxrQ0FDQSxDQURBLDBCQUNBLENBQUEsV0F4U0YsZ0JBNlNDLENBQUEsY0FDQSxvQkFHWSxDQUFBLDRCQUdDLGtCQUNILENBQUUsMEJBR0osb0JBQ0ksQ0FBQSxVQXRtQ2Isb0JBMG1DYSxDQUFBLFlBQ1oseUJBS2dCLENBQUEsd0JBR0wseUJBQ0ssQ0FBQSxpQkFLZixpQkFDUyxDQUFBLGVBQ1YsQ0FBQSxtQkFGQyw0QkFLZSxDQUFBLHlCQUNILENBQUEsZUFDWixDQUFBLGlFQUt3QixrQkFDZixDQUFFLHlDQUc0QixvQkFDNUIsQ0FBQSx1SUFNYixvQkFDYSxDQUFBLDhDQUcrQixrQkFDakMsQ0FBRSwwRUFJZ0Isb0JBQ2hCLENBQUEsaUNBR00sV0FDbEIsQ0FBQSw0Q0FDYSxDQUFBLFNBdjJEZCxnQkEyMkRDLENBQUEsbUJBOTFEQSxnQkFrMkRBLENBQUEsZUFDQSxDQUFBLGlDQUlRLG9CQUNJLENBQUEsNkNBSUosa0JBQ0UsQ0FBRSxrQ0EvekRGLG9CQW0wREUsQ0FBQSxzREFHcUIsb0NBQ3BCLENBQUEsZ0JBQ2IsQ0FBQSxpQkFDQSxDQUFBLGFBQ0EsQ0FBQSxjQUNNLENBQUUseUJBQ1IsaUNBR2tCLENBQUEsa0JBQ2xCLG1DQUdrQixDQUFBLGtDQUVsQixXQUNDLENBQUEsaUJBQ1EsQ0FBQSxpQkFDUixDQUFBLGVBQ0EsQ0FBQSxpQkFDQSxDQUFBLGdCQUNBLENBQUEsd0NBR0QsVUFDQyxDQUFBLGVBQ0EsQ0FBQSwyQ0FHZSxrQkFFTCxDQUFBLGlCQUNULG1DQUtnQixDQUFBLHdDQUNELENBREMsZ0NBQ0QsQ0FBQSw0QkFHVCxpQkFFRSxDQUFBLDZDQUVBLGVBQ1IsQ0FBQSxVQUNBLHVCQU1NLENBQUEsV0FDUCxDQUFBLG9CQUNRLENBQUEsMEJBQ0ksQ0FBQSxpQkFDWixDQUFBLHFCQUNZLENBQUEsa0JBQ0YsQ0FBRSxnQkFDWix1QkFHTyxDQUFBLFdBQ1AsQ0FBQSxVQUNBLENBQUEsZ0JBQ0EsV0FHQSxDQUFBLGVBQ0EsQ0FBQSxPQUFnQixDQUNoQixnQkFDQSxDQUFBLFVBQ0EsQ0FBQSxPRjUrRWtCLHVDQTZCRixDQUFBLGNFczlFakIsQ0FBQSxZQUNBLENBQUEsU0FDQSxDQUFBLGVBQ0EsQ0FBQSxlQUNBLENBQUEsZUFDQSxDQUFBLFlBQ0EsQ0FBQSxVQUNBLENBQUEsT0FBVyxDQUNYLE1BQU8sQ0FBQyxhQUVSLENBQU0sNkJBQ1csQ0FBQSxrQkFDakIsQ0FBVyxnQkFDRixDQUFBLDRCQUNELENBQUEsaUJBQ1IsQ0FBQSxTQUNBLENBQUEsbUJBQ1ksQ0FBQSwrQkFFRixPQUFnQixDQUN6QixtQkFDWSxDQUFBLCtCQUdILFFBQ1QsQ0FBQSxtQkFDWSxDQUFBLCtCQUdILFFBQ1QsQ0FBQSxtQkFDWSxDQUFBLCtCQUdILFNBQ1QsQ0FBQSxtQkFDWSxDQUFBLGdCQUNaLFlBR0EsQ0FBQSxvQkFDQSxNQUFBLENBRWEsWUFFYixDQUFBLGtCQUNBLENBQVcsc0JBQ1gsQ0FBZSxrQkFDTCxDQUFFLHdCQUNKLENBQUEsa0JBQ1IsV0FHQSxDQUFBLFFBQ0EsQ0FBQSx3QkFDQSxDQUFBLDJCQUNBLENBQUEsWUFDQSxDQUFBLGNBQ0EsQ0FBQSxlQUNBLENBQUEsK0JBQ2EsQ0FBQSxzQkFDRCxDQUFBLGdEQVRaLG9CQWFhLENBQUEscUJBQ1osYUFJSSxDRnBnRmtCLHdCRXFnRlAsQ0FBRSxvQkFDTixDQUFFLGtCQUNkLGFBR0ssQ0Z6Z0ZlLHdCRTBnRkosQ0FBRSxvQkFDTixDQUFFLHFCQUNkLGFBR0ssQ0Y5Z0ZrQix3QkUrZ0ZQLENBQUUsb0JBQ04sQ0FBRSxvQkFDZCxhQUdLLENGbmhGaUIsd0JFb2hGTixDQUFFLG9CQUNOLENBQUUsOEJBS2QsV0FDQSxDQUFBLHdCQUNnQixDQUFFLG9CQUNOLENBQUUsd0JBQ2QsVUFPQyxDQUFBLFdBQ0EsQ0FBQSxTQUNBLENBQUEsc0JBQ0EsVUFHQSxDQUFBLFdBQ0EsQ0FBQSwyQkFDbUIsQ0FBQSx5QkFDRixDQUFBLGdCQUNULENBQUEsNEJBQ1IsVUFHQSxDQUFBLFdBQ0EsQ0FBQSwyQkFDbUIsQ0FBQSx5QkFDRixDQUFBLG9CQUNSLENBQUEsc0JBQ1QsVUFLQSxDQUFBLGtDQU9BLGNBQ00sQ0FBRSx1Q0FHUixnQkFDUSxDQUFBLG1GQVFTLDBCQUNELENBQUEsd0JBQ1YsQ0FBQSxxR0FLWSxvQkFDUixDQUFFLDREQUMyQyxDQUFDLHlGQUtyQywwQkFDSCxDQUFBLHdCQUNWLENBQUEsMkdBS2Msb0JBQ1YsQ0FBRSw0REFDMkMsQ0FBQyxpQkFDMUQsVUFPQyxDQUFBLHdpRUFDMmlFLENBQUEsMEJBSzFpRSxVQUNBLENBQUEsZUFDQSxDQUFBLG9DQUdBLGFBRU0sQ0FBRSxzQ0FGRyxhQU1MLENBQUUseUJBSVIsYUFDSyxDQUFFLHVJQU1zQixxQkFDOUIsQ0FBQSxZQUNBLENBQUEsaUJBQ0EsQ0FBQSw2QkFDbUIsQ0FBQSw4QkFDQyxDQUFBLGFBQ2YsQ0FBRSx3QkFHUix3QkFDc0MsQ0FBQSwwRkF4Q3ZDLFVBaURFLENBQUEsZ0JBakRGLFVBcURFLENBQUEsZUFDQSxDQUFBLGlCQUNBLENBQUEsZUF2REYsaUJBMkRFLENBQUEsMEJBR0QsZUFDQyxDQUFBLFVBQ0EsQ0FBQSxrQ0FJRCxhQUNNLENGenRGZ0IsbUNFNHRGdEIsVUFDQyxDQUFBLHlDQURELGFBSU8sQ0FBRSwwREFNUixhQUNNLENGdHVGcUIsbUNLakNkLFVINHdGYixDQUFBLHFCQUNBLENBQUEsd0NGcnVGNkIsQ0FBQSxZRXV1RjdCLENBQUEsa0ZHL3dGd0Isd0JIbXhGUCxDQUFFLFdBQ2xCLENBQUEsc0VHdndGaUIsV0g4d0ZqQixDQUFBLGlEQUl1QixzQkFDakIsQ0FBQSw2Rkcxd0ZPLHdCSGd4RkUsQ0FBRSw2QkFDSSxDRnR4Rk4sOEJFdXhGTyxDRnZ4RlAsb0JFd3hGSixDRnh4Rkksa0hLY0sscUJIZ3hGckIsQ0FBQSxXQUNBLENBQUEsdUJBR0QsMkJBQ2EsQ0FBQSxpQ0FHUixrQkFDTSxDQUFFLHVIQU1ELHFCQUNYLENBQUEsVUFDQSxDQUFBLGlCQUNBLENBQUEsdUhBTVcsd0JBQ0ssQ0ZodUZZLFVFaXVGNUIsQ0FBQSxtSEFNVSx3QkFDTSxDRnZ1RlUsVUV3dUYxQixDQUFBLDhCQUdELDhCQUNhLENBQUEsdUhBTUQsd0JBQ0ssQ0ZsdkZjLFVFbXZGOUIsQ0FBQSwyR0FNUSx3QkFDUSxDRnp2RlMsVUUwdkZ6QixDQUFBLHVIQU1XLHdCQUNLLENGaHdGYSxVRWl3RjdCLENBQUEsZ0NBR1cscUJBQ1gsQ0FBQSxnQ0FDWSxDQUFBLFVBQ1osQ0FBQSw0SkFPVyxnQ0FDQyxDQUFBLHdCQUdiLG9CQUNZLENBQUEsd0JBQ0ksQ0FBQSwyREFJaEIsZUFDQyxDQUFBLFVBQ0EsQ0FBQSxzQ0FDdUIsQ0FBQSxtRUFHUCxVQUdmLENBQUEsOEpBREMsd0JBS2dCLENGejFGQSxXRTAxRmhCLENBQUEseUZBUmdCLFdBZWhCLENBQUEsd0JBQ2dCLENGLzBGVywwTUU2MEYxQixXQU1BLENBQUEsd0JBQ2dCLENGbDFGTyxpRkU2ekZSLFdBNkJoQixDQUFBLGtCQUVVLENBQUUscUZBL0JJLFVBc0NoQixDQUFBLGtNQURDLFVBS0EsQ0FBQSxzQkFDWSxDQUFBLG9DQU1ELHFCQUNkLENBQUEscUNBeFFGLHFCQTZRRSxDQUFBLFVBQ0EsQ0FBQSwwQkFHSyxVQUNMLENBQUEsZUFDQSxDQUFBLHVCQUdELGVBQ0MsQ0FBQSxxREFJMEIscUJBQzFCLENBQUEsd0JBR0QsV0FDQyxDQUFBLHdCQUNnQixDQUFFLHNCQUduQixlQUNDLENBQUEseURBSUQsZUFDQyxDQUFBLFVBQ0EsQ0FBQSxpQkFDQSxDQUFBLG9DQUdZLG9CQUNBLENBQUEsdUhBS08sd0JBQ0gsQ0FBRSx3QkFDVixDQUFBLHlJQUtZLG9CQUNSLENBQUUsNERBQzJDLENBQUMsNkhBS3JDLHdCQUNMLENBQUUsb0JBQ04sQ0FBRSwrSUFLUSxvQkFDVixDQUFFLDREQUMyQyxDQUFDLG9EQU94RCxpQkFDQyxDQUFBLHFCQUNBLENBQUEsaUJBQ08sQ0FBQSxnUEFIUixVQVNFLENBQUEscURBSUYsaUJBQ0MsQ0FBQSwwQkFNZSx5QkFEakIsNEJBRW1CLENBQUEsQ0FBQSwrQkFGbkIsb0JBTWEsQ0FBRSwwQkFJZixxQkFDQSxDQUFBLDBCQUVpQiwwQkFIakIsNEJBSW1CLENBQUEsQ0FBQSw0SUFKYixxQkFVTCxDQUFBLFVBQ0EsQ0FBQSwyQ0FPTSxxQkFDTSxDQUFBLGdCQUNaLENBQUEsWUFDQSxDQUFBLCtEQUcwQixvQkFDbEIsQ0FBQSw2QkFLSCxlQUNQLENBQUEsMENBR29CLGtCQUNWLENBQUUsaURBblpILGVBd1pULENBQUEsMkNBR2tDLHlDQUNwQixlQUNiLENBQUEsOEJBQ2MsQ0FBQSxDQUFBLHdGQU1ELGtCQUNKLENBQUUsNkJBR2IsZUFDQyxDQUFBLDZCQUdELDRCQUNhLENBQUEsK0JBQ0csQ0FBQSwwQ0FHSCxhQUNQLENBQUUsZ0JBQ1AsQ0FMZSxxQ0FHSCxhQUNQLENBQUUsZ0JBQ1AsQ0FBQSx1QkFHQyxxQkFDdUIsQ0FBQSx1QkFEdkIscUJBS3VCLENBQUEsa0NBSXZCLFVBQ0EsQ0FBQSxpQ0FDWSxDQUFBLHdDQUZaLFVBS0MsQ0FBQSwrQkFJRCxVQUNBLENBQUEsaUNBQ1ksQ0FBQSx3R0FPWixxQkFDdUIsQ0FBQSwwQkFHekIsZUFDQyxDQUFBLGtGQUtELGtCQUNXLENBQUUsd0NBR0Msa0JBQ0gsQ0FBRSx1Q0FHYixVQUNDLENBQUEsc0NBR1EsMkJBQ0ksQ0FBQSxzQkFHYiwyQkFDYSxDQUFBLGdDQUlOLHdCQUNVLENGNW9HSSw2QkV1a0dyQixlQXlFQyxDQUFBLDhMQU04QiwwQkFDWixDQUFBLDhDQUdHLGFBQ2hCLENGM3BHZSwwSUVrcUdyQiwyQkFFcUIsQ0ZwcUdBLGFFcXFHZCxDRnJxR2Msd0NFeXFHckIsMkJBQ29CLENGMXFHQyxhRTJxR2YsQ0YzcUdlLHVCRWtyR25CLHdCQUN1QixDQUFBLCtCQUNPLENBQUEsZ0RBQ1MsQ0FEVCx3Q0FDUyxDQUFBLHdCQUd2Qyx3QkFDd0IsQ0FBQSwrQkFDTyxDQUFBLGdEQUNTLENBRFQsd0NBQ1MsQ0FBQSxtQkFoaUJoQyxrQkFxaUJDLENBQUUsZ0NBR2Isd0JBQ2lCLENBQUUsaUdBSU0sVUFDeEIsQ0FBQSwrQkFHQywrQkFDYyxDQUFBLDRCQUNILENBQUEseUZBSWEsa0JBQ2YsQ0FBRSw2WkFXYixlQUNDLENBQUEsMERBRzJDLGtCQUNqQyxDQUFFLDJPQU95QixlQUNyQyxDQUFBLHFPQU9vQixlQUNwQixDQUFBLDRXRG56Q2UsZUM2ekNmLENBQUEseUJBR0QsaUJBQ0MsQ0FBQSw4Q0FHb0Isb0JBQ1IsQ0FBRSxrQ0FHRCxVQUNiLENBQUEsd0JBR0MscUJBQ3VCLENBQUEsc0NBR3pCLGtCQUNXLENBQUUsdUJBSWIsZUFDQyxDQUFBLHNDQUdVLGVBQ1YsQ0FBQSxVQUNBLENBQUEsMkNBR2UsVUFDZixDQUFBLG1JQUlVLGFBQ0wsQ0Y3eEdnQiw0Q0VneUdOLHdCQUNDLENGaHpHQSxpRkVvekdOLGdDQUNFLENBQUEseURBR2Usc0JBQ25CLENBQUEsZ0NBbHBFUixlQXNwRUEsQ0FBQSxVQUNBLENBQUEsNkVBSVUsVUFDVixDQUFBLDZDQUdrQixVQUNsQixDQUFBLHFCQUdELGtCQUNXLENBQUUsK0JBR0osa0JBQ0UsQ0FBRSx5REFJSixrQkFDRSxDQUFFLHFFQUlKLGtCQUNFLENBQUUsOENBR00sNkJBQ04sQ0FBQSxrRUFHcUIsZUFDakMsQ0FBQSxxQ0FHRCx1Q0FDbUIsQ0FBQSw2QkFJbkIsd0JBQ2lCLENBQUUsd0NBREgsa0JBSUosQ0FBRSw0RUFFZ0Isb0JBQ2YsQ0FBQSxnQ0FLZiwyQkFDUSxDQUFBLHVCQUdSLFVBQ0MsQ0FBQSx1RUFHYSxrQkFHRixDQUFFLHlDQUlkLGVBQ0MsQ0FBQSxtREFHOEIscURBQ21CLENBQUEsdUZBSXRDLHdCQUNLLENGdDRHSSw2QkV5NEdyQixhQUNNLENGMTRHZSwrQkU2NEdyQixlQUNDLENBQUEsb0NBR0QsZUFDQyxDQUFBLGlIQUkrQixvQkFDbkIsQ0FBQSwwQkFHYixlQUNDLENBQUEsNkJBR0QsZUFDQyxDQUFBLDhCQUdELGtDQUNtQixDQUFBLG9EQUVsQixVQUNDLENBQUEsNkJBSUYsa0NBQ21CLENBQUEsdUJBR25CLFVBQ0MsQ0FBQSxxQkFDQSxDQUFBLHdCQU1ELGVBQ0MsQ0FBQSxVQUNBLENBQUEsb0NBRUEsZUFDQyxDQUFBLFVBQ0EsQ0FBQSxnREFHRCxlQUNDLENBQUEseURBR2lCLGdDQUNMLENBQUEsMkRBR0ssOEJBQ0wsQ0FBQSxvQ0FHYixVQUNDLENBQUEsb0RBR2lCLGtCQUNQLENBQUUsMENBR2IsMkpBQ3FKLENBQUEsb0NBTXRKLGdCQUNDLENBQUEsc0JBeHJHVSxlQTRyR1YsQ0FBQSw4QkFHRCxlQUNDLENBQUEsOEJBR0QsZUFDQyxDQUFBLDhCQUtELG9CQUNhLENBQUEscUNBS2Isa0JBQ1csQ0ZwOUdRLFlFcTlHbEIsMEJBU1UsQ0FBQSxlQUNWLGtCQUdVLENBQUUsY0FDWixDQUFBLGFBQ0EsQ0FBQSxLQUFTLENBQUEsT0FDSCxDQUNOLFFBQ0EsQ0FBQSxNQUFRLENBQUMsV0FFVCxDQUFBLFlBQ0EsQ0FBQSxXQUNBLENBQUEscUJBQ2EsQ0FBQSxhQUNiLGNBR0EsQ0FBQSxpQkFDQSxpQkFHVSxDQUFBLE9BQVEsQ0FDbEIsU0FDQSxDQUFBLGNBQ0EsQ0FBQSxZQUNBLHNCQUdPLENBQUEseUJBQ1UsQ0FBQSxhQUNqQixrQkFLVSxDQUFFLHdCQUNaLENBRFkscUJBQ1osQ0FEWSxvQkFDWixDQURZLGdCQUNaLENBQUEsV0FDQSxDQUFBLFdBQ0EsQ0FBQSxXQUNBLENBQUEsY0FDQSxrQkFHVSxDQUFFLHdCQUNaLENBRFkscUJBQ1osQ0FEWSxvQkFDWixDQURZLGdCQUNaLENBQUEsV0FDQSxDQUFBLFdBQ0EsQ0FBQSxZQUNBLENBQUEsaUJBQ0EsZUFHQSxDQUFBLHdCQUNBLENBREEscUJBQ0EsQ0FEQSxvQkFDQSxDQURBLGdCQUNBLENBQUEsV0FDQSxDQUFBLFdBQ0EsQ0FBQSxZQUNBLENBQUEsd0NBSzhCLG9CQUN6QixXQUNMLENBQUEsQ0FBSyxhQVFQLE1BQU8sZ0JBRUcsQ0FBQSxLQUFBLHNCQUtELENBQUEsMkJBQ0csQ0FBQSwwQkFDRSxDQUFBLHlCQUNELENBQUEsV0FDWCx1QkFJUyxDQUFBLGFBQ1QsZUFJQSxDQUFBLGVBR00sdUJBQ0csQ0FBQSxtQkR4L0dYLCtCQzYvR21CLENBQUEseURBT2xCLHVCQUNVLENBQUEsVUFJVixzQkFDUSxDQUFBLHNCQU1GLGlDQUNPLENBQUEsd0JBSWIsc0JBQ1EsQ0FBQSxxQ0FJVywyQkFDTixDQUFBLHFCQUNKLENBQUEsZUFqckZSLHFCQXFyRlEsQ0FBQSwyQkFDSSxDQUFBLG1CQUNKLENBQUEsb0JBSVQsMEJBQ1UsQ0FBQSwyRUEvMURYLHlCQXMyRFcsQ0FBQSxhQTFrRFgsMEJBK2tEYyxDQUFBLCtGQVViLHVCQUNVLENBQUEsaUJBNTdGUCx1QkFnOEZVLENBQUEsMEJBQ0csQ0FBQSxZQUNmLHVCQUtTLENBQUEsdUNEN3VERywrQkNpdkRBLENBQUEscUJBQ1osdUJBR1MsQ0FBQSx3Q0FNVix1QkFDVSxDQUFBLGtCQUNULDBCQUdlLENBQUEsNEJBMW9GaEIsd0NBOG9GZ0IsQ0FBQSxzQkFDUixDQUFBLGFDMTdHUCwwQkRnOEdZLENBQUEsMEJBQ0EsQ0FBQSw2QkFDRSxDQUFBLG9DQU1mLHVCQUNVLENBQUEsNEJBam9EWCx1QkFzb0RXLENBQUEscUJBR0csaUJBQ0YsQ0FBQSxTQUNWLENBQUEsV0FDQSxDQUFBLFlBQ0EsQ0FBQSxVQUNBLENBQUEsd0JBQ08sQ0FBQSxhQUNQLENBQUEsK0JBR0UsMkJBQ1UsQ0FBQSxjQUNKLENBQUUsa0dBS1IsdUJBQ1MsQ0FBQSxnQ0FHVCx5Q0FDYyxDQURkLDZCQUNjLENBQUEsd0NBQ0QsQ0FEQyw0QkFDRCxDQUFBLHlDQUNDLENBREQsNkJBQ0MsQ0FBQSwrQkFJZCxtQkFDTyxDQUFBLG9CQUNDLENBQUEsK0JBSVYsWUFDQyxDQUFBLGNBOWxESCx3Q0FtbURnQixDQW5tRGhCLDRCQW1tRGdCLENBQUEsdUNBQ0QsQ0FEQywyQkFDRCxDQUFBLHlDQUNDLENBREQsNkJBQ0MsQ0FBQSxDQUFBLFdGOXpIaEIseUJBQ2MsQ0FBQSxpQkFDYixDQUFVLGVBQ1YsQ0FBQSwyRkFDMkUsQ0FBQSxXQUc1RSxvQkFDYyxDQUFBLGlCQUNiLENBQVUsZUFDVixDQUFBLHlFQUN5RCxDQUFBLFdBRzFELGtDQUNjLENBQUEsaUJBQ2IsQ0FBVSxlQUNWLENBQUEsNkdBQzZGLENBQUEsV0FHOUYsNEJBQ2MsQ0FBQSx5RkFDNEQsQ0FBQSx1QkFHMUUsS0FBQSxTQUVFLENBQUEsR0FBQSxTQUlBLENBQUEsQ0FBQSwwREEyTWlDLGFBQ2pDLENBQUEsMERBR2lDLGFBQ2pDLENBQUEsMERBR2lDLGFBQ2pDLENBQUEseUNFeXNETSxXRnBzRFAsQ0FBQSx1REFFTyxhQUNOLENBQUEscUJBQ08sQ0FBQSxpQkFDQyxDQUFFLFVBQ1YsQ0FBQSxVQUNBLENBQUEsV0FDQSxDQUFBLFVBQ0EsQ0FBQSxrQkFDQSxDQUFBLGFBQ0EsQ0FBQSwwQlFsUWUsc0JBQ2hCLGdCQUNDLENBQUEsQ0FBQSxpQkFTQSxlQUNDLENBQUEsb0JBQ0EsWUFHQSxDQUFBLGdCQUNBLHVCQUdTLENBQUEsU0FDVCxZQUdBLENBQUEsNkJBQ2lCLENBQUEsY0FDakIsQ0FBQSxrQkFDQSxDQUFBLDBDQUVpQyxTQU5sQyxxQkFPRSxDQUFBLGdCQUVBLHNCQUNDLENBQWMsQ0FBRSwwQ0FNZSxjQURsQyxxQkFFYyxDQUFBLENBQUEsMENBS29CLHdCQURsQyxVQUVFLENBQUEscUJBQ0EsQ0FBQSw4QkFDYSxDQUFBLDBCQUpkLFVBT0UsQ0FBQSx3QkFDeUIsQ0FBQSxDQUFBLDBDQU1NLDhCQURsQyxxQkFFRSxDQUFBLGdDQUZELFVBS0UsQ0FBQSxDQUFBLDZCQUtILGNBQ0MsQ0FBQSxtQkFDQSxjQUdBLENBQUEsZ0JBQ0EsQ0FBQSwyQkFGVyxjQUtWLENBQUEseUJBQ0EsYUFJRCxDQUFLLCtCQURMLGFBSUMsQ0FBSyx3QkFDTCxhQUlELENBQUssOEJBREwsYUFJQyxDQUFLLGtFQU1OLHlCQUNpQixDQUFBLHFDQUNqQixDQURpQiw2QkFDakIsQ0FBcUIsd0VBS3JCLHlCQUNpQixDQUFBLHFDQUNqQixDQURpQiw2QkFDakIsQ0FBcUIscUVBS3JCLHlCQUNpQixDQUFBLHFDQUNqQixDQURpQiw2QkFDakIsQ0FBcUIsb0JBQ3JCLFdBR0EsQ0FBQSxZQUNBLENBQUEsZ0JBQ0EsQ0FBQSxjQUNBLENBQUEsZ0JBQ0EsQ0FBQSxvQkFDQSxZQUdBLENBQUEsYUFDQSxDQUFBLGNBQ0EsQ0FBQSxrQkFDQSxDQUFBLDZCQUNBLGFBSUMsQ0FBSywyQkFDWSxDQUFHLDZCQUNwQixhQUdBLENBQUssMkJBQ1ksQ0FBRywyQkFDcEIsWUFJRCxDQUFBLGdCQUNBLENBQUEsY0FDQSxDQUFNLHFDUmxGZ0IsQ0FBQSxlUW9GdEIsQ0FBQSxnQkFDQSxVQUdBLENBQUEsZUFDQSxDQUFPLGtCQUNQLENBQUEsaUJBQ0EsQ0FBQSxnQkFDQSxDQUFBLGNBQ0EsQ0FBTSx3QkFDTixDQURNLHFCQUNOLENBRE0sb0JBQ04sQ0FETSxnQkFDTixDQUFBLGtCQUNBLENBQVUscUJBQ0UsQ0FBQSxzQkFUWix3QkFZQyxDQUFnQix5QkFDaEIsdUdBR1ksQ0FBQSwrQkFEWix1R0FJYSxDQUFBLDhCQUpiLGdCQVFDLENBQUEsYUFDQSxDQUFBLDZCQUNBLGtCQUlELENBQVUsV0FDVixDQUFBLG1DQUZBLGtCQUtDLENBQVUseUJBQ1YsdUdBSVcsQ0FBQSwrQkFEWix1R0FJYSxDQUFBLDhCQUpiLGdCQVFDLENBQUEsYUFDQSxDQUFBLDZCQUNBLGtCQUlELENBQVUsV0FDVixDQUFBLG1DQUZBLGtCQUtDLENBQVUsc0JBQ1YsK0ZBSVcsQ0FBQSxXQUNaLENBQUEsNEJBRkEsK0ZBS2EsQ0FBQSx3QkFDWiw2QkFLOEIsQ0FBQSxVQUNoQyxDQUFBLDBDQUVpQyx3QkFKbEMsaUNBSzJCLENBQUMsVUFDMUIsQ0FBQSxhQUNBLENBQUEsUUFBYyxDQUNkLGVBQ0EsQ0FBQSxpQkFDQSxDQUFBLGdDQUNlLENBQUEsQ0FBQSxrQ0FHaEIsV0FDQyxDQUFBLHVCQUNPLENBQUEsYUFDUCxDQUFBLDZCQUNBLG1CQUlELENBQUEsdUJBQ08sQ0FBQSx1Q1JuTGUsQ0FBQSxZUXFMdEIsVUFHQSxDQUFBLGVBQ0EsQ0FBTyxrQkFDUCxDQUFVLGtCQUNWLENBQUEsaUJBQ0EsQ0FBQSxnQkFDQSxDQUFBLGNBQ0EsQ0FBTSx3QkFDTixDQURNLHFCQUNOLENBRE0sb0JBQ04sQ0FETSxnQkFDTixDQUFBLHFCQUNZLENBQUEsVUFDWixDQUFBLGtCQVZBLHdCQWFDLENBQWdCLHVCQUdoQixrQkFDQSxDQUFVLFdBQ1YsQ0FBQSx3QkFDWSxDQUFLLDZCQUhqQixrQkFNQyxDQUFVLHNCQUlYLGtCQUNBLENBQVUsV0FDVixDQUFBLHdCQUNZLENBQUssNEJBSGpCLGtCQU1DLENBQVUsdUNBTVosY0FDQSxDQUFBLGlCQUNBLENBQUEsaUJBQ0EsYUFHQSxDQUFBLHdCQURBLFVBSUMsQ0FBQSxVQUNBLENBQUEsYUFDQSxDQUFBLDZDQUtELFlBQ0EsQ0FBQSxnQkFDQSxhQUdBLENBQUEsaUJBQ0EsMEJBRzhCLENBQUEsMkJBQ0MsQ0FBQSx3REFDbkIsQ0FBQSxZQUNaLENBQUEsY0FDQSxDQUFBLGFBQ0EsQ0FBQSxrQ0FFQSw0QkFDb0IsQ0FBQSxxQkFDUCxDQUFBLDZCQUNaLENBQUEsOEJBQ0EsQ0FBQSxjQUNBLENBQUEsaUJBQ0EsY0FJRCxDQUFNLGVBQ04sQ0FBTyxrQkFDUCxDQUFBLGlCQUNBLENBQUEsZUFDQSxDQUFBLGlCQUNBLENBQUEsY0FDQSxDQUFNLHdCQUNOLENBRE0scUJBQ04sQ0FETSxvQkFDTixDQURNLGdCQUNOLENBQUEsWUFDQSxDQUFBLHVCQVRBLHdDQVlrQixDQVpsQixnQ0FZa0IsQ0FBQSw0QkFHakIsa0JBQ0EsQ0FBVSxXQUNWLENBQUEsYUFDQSxDQUFBLHlDQUdhLGtCQUNiLENBQVUsMkJBR1Ysa0JBQ0EsQ0FBVSxXQUNWLENBQUEsYUFDQSxDQUFBLDBDQUdlLGtCQUNmLENBQVUsaUJBQ1YsaUJBSU8sQ0FBRSxvQkFDRCxDQUFBLHFCQUNULENBQUEscUJBQ1ksQ0FBQSxjQUNaLENBQUEsZ0JBQ0EsQ0FBQSxnQkFDQSxDQUFBLDJCQUNBLFVBR0EsQ0FBQSx3QkFDZ0IsQ0FBQyw0QkFDakIsY0FHQSxDQUFBLGNBQ0EsVUFHQSxDQUFBLDZCQURNLG9CQUtHLENBQUEsNEdBSVQsYUFDQyxDQUFLLG9EQUdlLFlBQ3BCLENBQUEsc0JBQ0EsQ0FBQSwrQ0FHaUIsa0JBQ2pCLENBQUEsVUFDQSxDQUFBLGlCQUNBLENBQUEsMEJBQ0EsZ0JBSUQsQ0FBQSxhQUNBLENBQUEsY0FDQSxDQUFBLGdCQUNBLENBQUEsaUJBQ0EsQ0FBQSx5QkFDQSxpQkFHQSxDQUFBLGNBQ0EsQ0FBTSxtQkFDTixDQUFBLHdCQUNBLENBREEscUJBQ0EsQ0FEQSxvQkFDQSxDQURBLGdCQUNBLENBQUEsc0JBQ0EsdUJBR1MsQ0FBQSxzQkFDVCxrQkFLQSxDQUFVLGlCQUNWLENBQUEsa0RBSWUsUUFBZ0IsQ0FDOUIsaUJBQ0EsQ0FBQSxVQUNBLENBQUEsbURBR2lCLGlCQUNqQixDQUFBLFVBQ0EsQ0FBQSxlQUNBLFVSN0tILENBQUEsV0FDQSxDQUFBLFNBQ0EsQ0FBQSxhQUNBLENBQUEsV0FDQSxDQUFBLG9CQUNTLENBQUEsY0FDVCxDQUFNLHFCQUNNLENBQUEsaUJBQ1osQ0FBQSxZQUNBLENBQUEsd0JBQ0EsQ0FEQSxxQkFDQSxDQURBLG9CQUNBLENBREEsZ0JBQ0EsQ0FBQSxpQlEyS0UsQ0FBQSxzQlJ6S0YsMEJBdEZZLENBQUEsc0JBd0ZYLGVBR0EsQ0FBQSxvQkFDQSxDQUFZLGVBQ1osbUJRd0tELENBQUEsV1IzY0QseUJBQ2MsQ0FBQSxpQkFDYixDQUFBLGVBQ0EsQ0FBQSwyRkFDMkUsQ0FBQSxXQUc1RSxvQkFDWSxDQUFFLGlCQUNiLENBQUEsZUFDQSxDQUFBLHlFQUN5RCxDQUFBLFdBRzFELGtDQUNjLENBQUEsaUJBQ2IsQ0FBQSxlQUNBLENBQUEsNkdBQzZGLENBQUEsV0FHOUYsNEJBQ2MsQ0FBQSx5RkFDNEQsQ0FBQSx1QkFHMUUsS0FBQSxTQUVFLENBQUEsR0FBQSxTQUlBLENBQUEsQ0FBQSwwREEyTWlDLGFBQ2pDLENBQUEsMERBR2lDLGFBQ2pDLENBQUEsMERBR2lDLGFBQ2pDLENBQUEseUNFeXNETSxXRnBzRFAsQ0FBQSx1REFFTyxhQUNOLENBQUEscUJBQ08sQ0FBQSxpQkFDUCxDQUFRLFVBQ1IsQ0FBQSxVQUNBLENBQUEsV0FDQSxDQUFBLFVBQ0EsQ0FBQSxrQkFDQSxDQUFBLGFBQ0EsQ0FBQSw0QlM3UEMsZUFDQSxDQUFBLGlCQUNBLENBQUEsa0NBRkEsa0JBS0MsQ0FBQSxxQ0FHQSx1R0FDWSxDQUFBLDJDQURaLHVHQUlhLENBQUEsMENBSmIsZUFRQyxDQUFBLHlDQUlELGtCQUNBLENBQUEsK0NBREEsa0JBSUMsQ0FBQSxxQ0FJRCx1R0FDWSxDQUFBLDJDQURaLHVHQUlhLENBQUEsMENBSmIsZUFRQyxDQUFBLHlDQUlELGtCQUNBLENBQUEsK0NBREEsa0JBSUMsQ0FBQSxrQ0FJRCwrRkFDWSxDQUFBLHdDQURaLCtGQUlhLENBQUEsb0NBS2QsaUJBQ0EsQ0FBQSwwQ0FFd0Isb0NBSHhCLGlDQUl1QixDQUFHLGVBQ3pCLENBQUEsQ0FBQSx5Q0FJRCxvQ1RGNEIsQ0FBQSx3QlNNNUIsaUJBQ0EsQ0FBQSxzQ0FFQyxlQUNBLENBQUEsNENBREEsa0JBSUMsQ0FBQSxtQ0FJRCxvQkFDQSxDQUFBLGtDQUdBLG9CQUNBLENBQUEsNkJBSUQsa0JBQ0EsQ0FBQSxpQkFDQSxDQUFBLHFEQUNZLENBQUEscUNBR1osYUFDQSxDQUFBLDJDQURBLGFBSUMsQ0FBQSxvQ0FJRCxhQUNBLENBQUEsMENBREEsYUFJQyxDQUFBLGtDQU1ELGdCQUNBLENBQUEsMkJBS0EsZVR3S0YsQ0FBQSxpQkFDQSxDQUFBLGtDU3pLRSwwQlQyRVUsQ0FBQSxrQ1MzRVYsZVRnTEQsQ0FBQSxvQkFDQSxDQUFBLFdBaFRGLHlCQUNjLENBQUEsaUJBQ2IsQ0FBQSxlQUNBLENBQUEsMkZBQzJFLENBQUEsV0FHNUUsb0JBQ0MsQ0FBVyxpQkFDWCxDQUFBLGVBQ0EsQ0FBQSx5RUFDeUQsQ0FBQSxXQUcxRCxrQ0FDYyxDQUFBLGlCQUNiLENBQUEsZUFDQSxDQUFBLDZHQUM2RixDQUFBLFdBRzlGLDRCQUNjLENBQUEseUZBQzRELENBQUEsdUJBRzFFLEtBQUEsU0FDSyxDQUNILEdBQUEsU0FHQyxDQUNELENBQUEsMERBMk0yQixhQUMzQixDQUFBLDBEQUcyQixhQUMzQixDQUFBLDBEQUcyQixhQUMzQixDQUFBLHlDRXlzRE0sV0Zwc0RQLENBQUEsdURBRUMsYUFDQSxDQUFBLHFCQUNPLENBQUEsaUJBQ1AsQ0FBQSxVQUFrQixDQUNsQixVQUFXLENBQ1gsV0FDQSxDQUFBLFVBQVksQ0FDWixrQkFDQSxDQUFBLGFBQ0EsQ0FBQSxvQkFDQSxXVTVQQSxDQUFBLFlBQ0EsQ0FBQSxlQUNBLFVBRVMsQ0FDVCxTVm9LcUIsQ0FBSSw2Q1VyS2hCLFdBS1IsQ0FBQSxxQ0FMUSxxQkFTRyxDQUFDLGNBQ1osdUJBWVUsQ0FBQSxnQkFDWCxDQUFBLHNCQUNBLGdCQUdBLENBQUEsZ0JBQ0EsZ0NBT2EsQ0FBQSxpQkFDYixjQUdBLENBQUEsa0JBQ0EsQ0FBQSxnQkFDQSxDQUFBLG9CQUNBLFVBRU8sQ0FDUCxVQUFXLENBQ1gsZUFDQSxDQUFBLG9CQUNTLENBQUEsWUFDVCxDQUFBLHVCQUNBLDRCQU9ZLENBQUEsZUFDWixpQkFHQSxDQUFBLFlBQ0EsQ0FBQSw2QkFDaUIsQ0FBQSxrQkFDakIsQ0FBQSxtQkFDQSxDQUFBLGVBQ0EsQ0FBQSw2QkFORyxlQVNGLENBQUEsbUJBQ0EsYUFHQSxDQUFBLGlCQUNBLENBQUEseUJBRkEscUJBS1csQ0FBRSxvQkFDWixhQUlELENBQUEsNkJBQ0Esa0JBR0EsQ0FBQSxnQkFDQSxDQUFBLGNBQ0EsQ0FBQSxlQUNBLENBQUEsc0JBQ0EscUJBR0EsQ0FBQSxpQkFqQ0QsZ0JBcUNDLENBQUEsNEJBREUsY0FJRCxDQUFBLG1CQUNBLFVBSUssQ0FDUCx1QkFDTyxDQUFBLGtCQUNDLENBQUEsZUFDUixDQUFBLDBCQUNBLGtEVnhEdUIsQ0FBQSw4QlU2RHRCLHNDVnREZSxDQUFBLGtCVTBEZiwrQ1ZqRXNCLENBQUEsOEJVdUV2QixzQ1ZoRWdCLENBQUEsbUJVa0VmLGNBSUQsQ0FBQSxZQUNBLENBQUEsS0FBTyxDVllTLE1VWGhCLENBQUEsV0FFQSxDQUFBLFlBQ0EsQ0FBQSxZQUNBLENBQUEsc0JBQ0EsQ0FBQSxrQkFDQSxDQUFBLHdDVi9FdUIsQ0FBQSx5QlVpRnZCLHNCQUdBLENBQUEsaUJBQ0EsaUJBR0EsQ0FBQSxZQUNBLENBQUEsV0FDQSxDQUFBLFlBQ0EsQ0FBQSxnQkFDQSxDQUFNLGdCQUNOLENBQUEsVUFBaUIsQ0FDakIsWUFDQSxDQUFBLGVBQ0EsQ0FBQSxnQkFDQSxDQUFBLGdCQUNBLENBQUEsMEJBRVEsaUJBYlQsV0FjRSxDQUFBLENBQUEsMEJBR08saUJBakJULGVBa0JFLENBQUEsQ0FBQSwwQkFHTyxpQkFyQlQsZUFzQkUsQ0FBQSxDQUFBLDJCQUdPLGlCQXpCVCxnQkEwQkUsQ0FBQSxDQUFBLGdDQUdELFlBQ0MsQ0FBQSxjQUNBLENBQUEsK0JBQ0EsNkJBR1ksQ0FBQSxjQUNaLENBQUEsOEJBQ0EsNEJBR1csQ0FBQSxhQUNYLENBQUEsaUNBQ0EsZUFHQSxDQUFBLGtDQUNBLFlBR0EsQ0FBQSxZQUNBLENBQUEsYUFDQSxDQUFBLGdCQUNBLENBQUEsZUFDQSxDQUFBLGVBQ0EsQ0FBQSxRQUFZLENBQUEsb0JBRVosV0FJRCxDQUFBLFVBQVksQ0FDWixZQUNBLENBQUEsZUFDQSxDQUFBLHVCQUNBLGlCQU9BLENBQUEsV0FDQSxDQUFBLFVBQVksQ0FDWixZQUNBLENBQUEscUJBQ0EsQ0FBQSx5QkFDQSxVQUVZLENBQ1osWUFDQSxDQUFBLFdBQ0EsQ0FBQSxrQ0FFQSxlQUNDLENBQUEsd0JBQ0EsaUJBSUQsQ0FBQSxXQUNBLENBQUEsdUJBQ1csQ0FBQSxXQUNYLENBQUEsZUFDQSxDQUFBLGlCQUNBLENBQUEsZ0JBQ0EsQ0FBQSxnQkFDQSxjQUdBLENBQUEsZ0JBQ0EsQ0FBQSxlQUNBLENBQUEsWUFDQSxDQUFBLDZCQUNpQixDQUFBLDRCQUNDLENBQUMsc0JBTm5CLG9CQVNDLENBQVUsc0JBVFgsZ0RWcEQ2QixDQUFBLHlCVWtFNUIsZUFJRCxDQUFBLGVBQ0EsQ0FBQSxhQUNBLENBQUEsY0FDQSxDQUFBLHVCQUNBLGVBR0EsQ0FBQSxVQUFnQixDQUNoQiwyQ0FHa0Isb0JBQ1QsQ0FBQSxnQkFDVCxDQUFNLHNDQUNOLGNBR0EsQ0FBQSxlQUNBLENBQUEsYUFDQSxDQUFBLGlCQUNBLENBQUEsMEJBQ0EsQ0FBQSx5QkFDQSxDQUFBLGNBQ0EsQ0FBQSw4RUFHYyxRQUFBLENBQUEsdUJBR2IsQ0FBQSwrQkFDQSxhQUlELENBQUEsZUFDQSxDQUFBLFdBQ0EsQ0FBQSxrQkFDQSxDQUFBLHFCQUNXLENBQUMsV0FDWixDQUFBLGFBQ0EsQ0FBQSxZQUNBLENBQUEsK0JBQ0EsWUFHQSxDQUFBLGtCQUNBLENBQUEsV0FDQSxDQUFBLGdEUml5QzBCLGdCUTl4Q3pCLENBQUEsb0JBQ0EsZ0JBSUQsQ0FBQSxVQUFpQixDQUNqQixXQUNBLENBQUEsWUFDQSxDQUFBLHNCQUNBLENBQUEsa0JBQ0EsQ0FBQSwyQkFDYSxDQUFBLHVCQUNELENBQUUsZUFDZCxDQUFBLHNCQUNBLG9CQU9TLENBQUEsaUJBQ1QsQ0FBTyw0QkFDUCxDQUFBLDJCQUNBLENBQUEsY0FDQSxDQUFBLHdCQUNBLENBREEscUJBQ0EsQ0FEQSxvQkFDQSxDQURBLGdCQUNBLENBQUEsZUFDQSxDQUFBLDhCQUVBLHdCQUNDLENBQUEsb0JBQ0EsQ0FBQSxzQkFDQSxVQUdXLENBQ1osV0FDQSxDQUFBLGVBQ0EsQ0FBQSxpQkFDQSxDQUFBLDhCQUVBLGFBQ0MsQ0FBQSxrQ0FDQSxlQUdBLENBQUEsK0JBQ0EsNEJBSWlCLENBQUMsb0JBQ25CLFVBTVMsQ1ZoSFYsV0FDQSxDQUFBLFNBQVEsQ0FBSSxhQUVaLENBQUEsV0FDQSxDQUFBLG9CQUNTLENBQUEsY0FDVCxDQUFBLHFCQUNXLENBQUMsaUJBQ1osQ0FBQSxZQUNBLENBQUEsd0JBQ0EsQ0FEQSxxQkFDQSxDQURBLG9CQUNBLENBREEsZ0JBQ0EsQ0FBQSwyQkFFQSwwQkF0RlksQ0FBQSwyQkF3RlgsZUFHQSxDQUFBLG9CQUNBLENBQUEsb0NVaUdDLGdCQUNBLENBQUEsb0NBR0EsZUFDQSxDQUFBLG9CQUNBLENBQUEsb0NBR0EsZUFDQSxDQUFBLG9CQUNBLENBQUEsWUFDQSxDQUFBLGdCQUNBLENBQUEsaUNBQ0EsQ0FBdUIsa0NBQ0MsQ0FBQSxpQkFDeEIsQ0FBQSxtQkFDQSxDQUFBLG1CQUNBLENBQUEsZ0NBQ2EsQ0FBQSxlQUNiLENBQUEsV0FDQSxDQUFBLGNBQ0EsQ0FBQSw0Q0FiWSxlQWdCWCxDQUFBLG9DQUlELHFGQUNZLENBQUEsb0JBQ1osQ0FBQSxjQUNBLGlCQVFELENBQUEsVUFBa0IsQ0FDbEIsV0FDQSxDQUFBLGtCQUNBLENBQUEsa0JBQ0EsQ0FBQSxxQkFDVyxDQUFDLHdCQUNaLENBRFkscUJBQ1osQ0FEWSxvQkFDWixDQURZLGdCQUNaLENBQUEsbUJBQWlCLENBQWpCLFdBQ0EsQ0FBQSxhQUNBLFNBQUEsQ0FFRyxXQUVILENBQUEsZUFDQSxDQUFBLGlCQUNBLENBQUEsUUFBVSxDQUFBLFNBQ0wsQ0FBSSx3QkFFRSxDQUFBLG9CQUNYLENBQUEsbUJBQ0EsQ0FBQSx3QkFDQSxDQURBLHFCQUNBLENBREEsb0JBQ0EsQ0FEQSxnQkFDQSxDQUFBLHFDQUNzQixDQUFBLGtCQUN0QixjQU9BLENBQUEseUJBQ0EsaUJBT0EsQ0FBQSxLQUFVLENBQUEsT0FDVixDQUFHLFFBQ0UsQ0FBRSxNQUNQLENBQUEsb0NBRUEsb0JBR0EsQ0FBVSxtQ0FDVixzQkFHWSxDQUFBLGdCQUNaLFdBR0EsQ0FBQSx3QkFDQSxDQURBLHFCQUNBLENBREEsb0JBQ0EsQ0FEQSxnQkFDQSxDQUFBLFlBQ0EsQ0FBQSxhQUNBLENBQUEsZUFDQSxDQUFBLFVBQWdCLENBQ2hCLGNBQ0EsQ0FBQSxzQkFDQSxVQUVXLENBQ1gsb0JBQ0EsWUFHQSxDQUFBLHFCQUNBLENBQUEsYUFDQSxDQUFBLHdCQUNBLGVBR0EsQ0FBQSxpQkFDQSxDQUFBLGdCQUNBLFdBT0EsQ0FBQSxpQkFDQSxDQUFBLGVBQ0EsdUNWcmJnQixDQUFBLFlVMGJoQixDQUFBLGlCQUNBLENBQUEscUJBQ1csQ0FBQyxnQkFDWixDQUFBLGlCQUNBLENBQUEsU0FBZSxDQUFHLG9CQUViLENBQUEsV0FDTCxDQUFBLFNBQVMsQ0FBRyxtQ0FFdUIsQ0FBQSxtQkFDbkMsQ0FBQSxxQ0FHYSxZQUNiLENBQUEsU0FBUyxDQUFJLGFBRWIsdUNWemNzQixDQUFBLFlVa2R0QixDQUFBLGNBQ0EsQ0FBQSxlQUNBLENBQUEsMkNWNWR1QixDQUFBLHFCVThkdkIsQ0FBQSxpQkFDQSxVQUVTLENBQ1QsVUFBVyxDQUNYLGVBQ0EsQ0FBQSxhQUNBLGNBR0EsQ0FBQSxlQUNBLENBQUEsbUJBRkEsa0JBS0MsQ0FBQSxrREFMSSxjQVVKLENBQUEsZUFDQSxDQUFBLGtCQUNBLGdCQVNBLENBQUEsZUFDQSxDQUFBLGVBRUEsQ0FBQSxjQUNBLENBQUEsWUFDQSxDQUFBLFdBQ0EsQ0FBQSx1QkFFQSxnQkFDQyxDQUFBLFdBQ0EsQ0FBQSxjQUNBLENBQUEsZUFDQSxDQUFBLGFBQ0EsQ0FBQSxnQkFDQSxDQUFBLHFCQUNBLFNBQUEsQ0FHUyxnQkFFVixDQUFBLFNBQWEsQ0FBSSxlQUVqQixDQUFBLGNBQ0EsQ0FBQSxhQUNBLENBQUEsV0FDQSxDQUFBLGNBQ0EsQ0FBQSxrQkFDQSxDQUFBLGdCQUNBLENBQUEsMEJBRUEsV0FDQyxDQUFBLGdCQUNBLENBQUEsZUFDQSxtQkFJRCxDQUFBLG9CQUNBLHFCQUdXLENBQUMsWUFDWixpQkFRRCxDQUFBLE9BQVUsQ0FBQSxjQUVWLENBQUEsWUFDQSxpQkFHQSxDQUFBLGNBQ0EsQ0FBQSxvQkFGQSxVQUlTLENBQ1IsV0FDQSxDQUFBLG9CQUNTLENBQUEsaUJBQ1QsQ0FBQSxvQkFSRCxTQUFRLENBWUMsZUFFUixjQVFELENBQUEsWUFDQSxDQUFBLGFBQ0EsQ0FBQSxTQUFNLENBQVEsVUFDSixDQUNWLGtCQUNBLHNDVnZrQmdCLENBQUEsY1U0a0JoQixDQUFBLGtCQUNBLENBQUEsVUFBbUIsQ0FDbkIsMEJBQ1csQ0FBQSxtQkFDWCxDQUFBLHdCQUNBLENBREEscUJBQ0EsQ0FEQSxvQkFDQSxDQURBLGdCQUNBLENBQUEsV0FDQSxDQUFBLGdCQUNBLENBQUEsY0FDQSxDQUFBLFlBQ0EsQ0FBQSxhQUNBLENBQUEscUJBQ0EsNEJBUWUsQ0FBQSxzQkFDZCw2QkFHZSxDQUFBLGVBQ2YsaUJBSUQsQ0FBQSxLQUFVLENBQUEsUUFDUCxDQUFFLFdBRUwsQ0FBQSxzQkFDQSxDQUFBLDBCQUVFLEtBQUEsQ0FBQSxxQkFFRCxRQUFBLENBQUEsc0JBSUEsU0FBQSxDQUVPLHNCQUVQLHVCQUlXLENBQUEsU1Y3aEJFLENBQUksU1U4aEJULENBQUMsVUFFQSxDQUNWLFdBQ0EsQ0FBQSxRQUFRLENBQUEsY0FFUixDQUFBLGdCQUNBLENBQUEsZUFDQSxDQUFBLGdCQUVBLENBQUEsVUFBaUIsQ0FDakIsd0hBYlUsZUFtQlQsQ0FBQSxZQUNBLENBQUEsNEJBcEJELGdCQXdCQyxDQUFBLFVBQWlCLENBQ2pCLDRGQXpCUyxnQkErQlQsQ0FBQSxVQUFpQixDQUNqQixxR0FLUyx1QkFDRSxDQUFBLFNWbGtCRSxDQUFJLHFCVW9rQmxCLEtBQUEsQ0FBQSxPQU9BLENBQUcsTUFDSCxDQUFBLFNBQ00sQ0FBQyxzQkFFSyxDQUFBLHlGQU1ULFNBQUEsQ0FBb0IsMkZBSXBCLGdCQUNELENBQUEsVUFBaUIsQ0FDakIsZ0JBQ0EsQ0FBQSwyRkFHQyxZQUNELENBQUEsc0JBQ0EsUUFBQSxDQUFBLE9BS0csQ0FBQSxNQUNMLENBQUEsWUFFQSxDQUFBLHFCQUNBLENBQUEsZUFDQSxDQUFBLHFCQUNXLENBQUMsWUFDWixDQUFBLGdCQUNBLENBQUEsd0hBVFcsWUFlVixDQUFBLHFGQUlELGtCQUlDLENBQUEsc0VBSlUsa0JBU1YsQ0FBQSxlQUNBLGNBV0EsQ0FBQSxpQkFDQSxVQUlLLENBQ0wsV0FDQSxDQUFBLFFBQVEsQ0FBQSxrQkFFUixDQUFBLHFCQUNXLENBQUMsaUJBQ1osQ0FBQSwrQ0FOQSxrQkFVQyxDQUFBLG9CQUNBLENBQUEscUJBQ0EsZUFJRCxDQUFBLGtCQUNBLENBQUEsdUJBQ0EscUJBR1csQ0FBQyxXQUNaLENBQUEsaUJBQ0EsQ0FBQSx1QkFDQSxlQUdBLENBQUEsc0JBQ0EsVUFFVSxDQUNWLFdBQ0EsQ0FBQSxpQkFDQSxDQUFBLCtCQUVBLHFCQUNZLENBQUMsZUFDWixDQUFBLDRCQUNBLGlCQUdBLENBQUEsZUFDQSxDQUFBLDZCQUNBLGdCQUdBLENBQUEsZ0JBQ0EsQ0FBQSxzQkFDQSxVQUdTLENBQ1Ysb0JBQ0EsZUFHQSxDQUFBLGVBQ0EsU0FBQSxDQUVHLFVBQ08sQ0FDVixlQUNBLENBQUEsc0JBRUEsVUFBUSxDQUNQLGtCQUNBLENBQUEscUJBQ0EsS0FBQSxDQUFBLFVBSUssQ0FDTixXQUNBLENBQUEsZ0JBQ0EsQ0FBQSxlQUNBLFVBRUcsQ0FDSCxXQUNBLENBQUEsaUJBQ0EsQ0FBQSxXQUNBLENBQUEsWUFDQSxDQUFBLHFCQUNXLENBQUMsZUFDWixDQUFBLFdWLzRCSCx5QkFDYyxDQUFBLGlCQUNiLENBQUEsZUFDQSxDQUFBLDJGQUMyRSxDQUFBLFdBRzVFLG9CQUNDLENBQUEsaUJBQ0EsQ0FBQSxlQUNBLENBQUEseUVBQ3lELENBQUEsV0FHMUQsa0NBQ2MsQ0FBQSxpQkFDYixDQUFBLGVBQ0EsQ0FBQSw2R0FDNkYsQ0FBQSxXQUc5Riw0QkFDYyxDQUFBLHlGQUM0RCxDQUFBLHVCQUcxRSxLQUFBLFNBQ0MsQ0FBSSxHQUNILFNBR0QsQ0FBRSxDQUNELDBEQTJNMkIsYUFDM0IsQ0FBQSwwREFHMkIsYUFDM0IsQ0FBQSwwREFHMkIsYUFDM0IsQ0FBQSx5Q0V5c0RNLFdGcHNEUCxDQUFBLHVEQUVDLGFBQ0EsQ0FBQSxxQkFDTyxDQUFBLGlCQUNQLENBQUEsVUFBVSxDQUFRLFVBQ1gsQ0FBSSxXQUNBLENBQ1gsVUFBUSxDQUFJLGtCQUVaLENBQUEsYUFDQSxDQUFBLHFDVXZQUyxRQUFBLENBQUEsZ0NDS1QsZUFDQSxDQUFBLHNDQVFDLG9DWDRDNEIsQ0FBQSw4Qld2QzdCLG9DWHVDNkIsQ0FBQSxxQ1duQzdCLHFCQUNBLENBQUEsK0JUZzZHRCxpQlM1NUdDLENBQUEsOENBR0EsZUFDQSxDQUFBLDRCQU9BLGlCQUNBLENBQUEsa0NBREEsZUFJQyxDQUFBLDJDQUlELGlCQUNBLENBQUEsMkxBV0MsMENYK0I2QixDQUFBLDhDV3pCN0IsZUFDQSxDQUFBLG9DWFI0QixDQUFBLDJDV2E3QixpQkFDQSxDQUFBLGdCQUNBLENBQUEsa0NBS0EsZUFDQSxDQUFBLG9DWHJCNkIsQ0FBQSxnQ1c2QjdCLGlCQUNBLENBQUEsdUNBREEsMEJYc0dXLENBQUEsZ0RXL0ZWLGVBQ0EsQ0FBQSxnREFHQSxlQUNBLENBQUEsb0JBQ0EsQ0FBQSxnREFHQSxlQUNBLENBQUEsb0JBQ0EsQ0FBQSx3REFGWSxVQUlYLENBQVEsZ0RBS1QsbUZBQ1ksQ0FBQSxvQkFDWixDQUFBLDBCQVFELGVBQ0EsQ0FBQSxpQkFDQSxDQUFBLHlCQUdBLGVBQ0EsQ0FBQSxlQUNBLENBQUEsMkJBT0EsaUJBQ0EsQ0FBQSxlQUNBLENBQUEseUJBT0EsZUFDQSxDQUFBLHdDWHhGNkIsQ0FBQSxxQlcwRjdCLENBQUEsNkJBR0EsZUFDQSxDQUFBLCtCQUdBLGtCQUVDLENBQUEsV1huRndCLENXb0Z4QiwwRUFISSxlQVFKLENBQUEsVVgxRmEsQ0FBSSxnQ1dvR2pCLGlCQUNBLENBQUEsa0NBUUQsZUFDQSxDQUFBLFdYOUgyQixDVytIM0Isd0tBRlUsZUFRVCxDQUFBLFlBQ0EsQ0FBQSx3Q0FURCxrQkFhQyxDQUFBLFdBQThELENBQzlELGdJQWRTLGtCQW9CVCxDQUFBLFdBQStELENBQy9ELGlDQVFELHNCQUNVLENBQUUsa0NBR1oscUJBQ0EsQ0FBQSxpQkFDQSxDQUFBLHlIQUdBLGtCQUlDLENBQUEsOEZBSlUsa0JBU1YsQ0FBQSw2QkFTQSxxQ1h4THNCLENBQUEsaUJXMEx0QixDQUFBLHVFQUZBLHFDQU1hLENBQUEsaUJBQ1osQ0FBQSxtQ0FJRCxpQkFDQSxDQUFBLG1DQUdBLGtDWG5NNEIsQ0FBQSwyQ1d3TTNCLGlCQUNBLENBQUEsZUFDQSxDQUFBLDJCQUlELGVBQ0EsQ0FBQSwyQkFHQSxpQkFDQSxDQUFBLGVBQ0EsQ0FBQSxXWHJNaUIsZ0NZcEZOLENBQUEsaUJBQ2IsQ0FBQSxlQUNBLENBQUEsK0VBQytELENBQUEsV0FBa0IsZ0NBSXBFLENBQUEsaUJBQ2IsQ0FBQSxlQUNBLENBQUEsK0VBQytELENBQUEsV0FBa0Isc0JBSWpGLENBQVcsaUJBQ1gsQ0FBQSxlQUNBLENBQUEscUVBQ3FELENBQUEsV0FBa0Isc0JBSXZFLENBQVcsaUJBQ1gsQ0FBQSxlQUNBLENBQUEsNEVBQzRELENBQUEsV0FBa0Isc0JBSTlFLENBQVcsaUJBQ1gsQ0FBQSxlQUNBLENBQUEscUVBQ3FELENBQUEsV0FBa0IsaUNBSTFELENBQUEsaUJBQ2IsQ0FBQSxlQUNBLENBQUEsNEVBQzRELENBQUEsV0FBa0IsaUJBSTlFLENBQUEsaUJBQ0EsQ0FBQSxlQUNBLENBQUEsb0VBQ29ELENBQUEsV0FBa0IsaUJBSXRFLENBQUEsaUJBQ0EsQ0FBQSxlQUNBLENBQUEsaUVBQ2lELENBQUEsV0FBa0IsaUJBSW5FLENBQUEsaUJBQ0EsQ0FBQSxlQUNBLENBQUEsb0VBQ29ELENBQUEsV0FBa0IsbUJBSXRFLENBQUEsaUJBQ0EsQ0FBQSxlQUNBLENBQUEsb0VBQ29ELENBQUEsV0FBa0IsbUJBSXRFLENBQUEsaUJBQ0EsQ0FBQSxlQUNBLENBQUEscUVBQ3FELENBQUEsV0FBa0IsbUJBSXZFLENBQUEsaUJBQ0EsQ0FBQSxlQUNBLENBQUEseUVBQ3lELENBQUEsV0FBa0IsbUJBSTNFLENBQUEsaUJBQ0EsQ0FBQSxlQUNBLENBQUEsbUVBQ21ELENBQUEsV0FBa0Isb0JBSXJFLENBQUEsaUJBQ0EsQ0FBQSxlQUNBLENBQUEsK0RBQytDLENBQUEsV0FBa0Isd0JBSXBELENBQUEsaUJBQ2IsQ0FBQSxlQUNBLENBQUEseUVBQ3lELENBQUEsV0FBa0Isd0JBSTlELENBQUEsaUJBQ2IsQ0FBQSxlQUNBLENBQUEsMEVBQzBELENBQUEsV0FBa0Isd0JBSS9ELENBQUEsaUJBQ2IsQ0FBQSxlQUNBLENBQUEsOEVBQzhELENBQUEsV0FBa0Isd0JBSW5FLENBQUEsaUJBQ2IsQ0FBQSxlQUNBLENBQUEsd0VBQ3dELENBQUEsV0FBa0Isb0JBSTFFLENBQUEsaUJBQ0EsQ0FBQSxlQUNBLENBQUEsK0RBQytDLENBQUEsV0FBa0Isc0JBSWpFLENBQVcsaUJBQ1gsQ0FBQSxlQUNBLENBQUEsbUVBQ21ELENBQUEsa0JBS3BELFlBQ0MsQ0FBQSxxQkFDQSxDQUFBLG1CQUNBLENBQUEsc0JBQ1MsQ0FBQSw0QkFDRyxDQUFBLCtCQUNHLENBQUEsaUJBQ2YsQ0FBQSxVQUFZLG9DQUtDLENBQUEsdUJBRWIsYUFDQyxDQUFBLGtCQUNBLENBQUEsZ0JBQ0EsYUFHQSxDQUFBLFlBQ0EsQ0FBQSw2QkFFQSxhQUNDLENBQUEsa0JBQ0Esa0NBSVksQ0FBQSxhQUNiLENBQUEsUUFBVyxDQUFBLGdCQUVYLENBQUEsZ0JBQ0EsQ0FBQSw0QkFHRCxvQ0FDYyxDQUFBLGFBQ2IsQ0FBQSxrQkFDQSxDQUFBLGtCQUNBLENBQUEsOENBRUUsZUFDRCxDQUFBLGNBQ0EsWUFLRixDQUFBLFVBQVEsQ0FBSyxVQUNOLGtDQUlNLENBQUEsa0JBQ2IsQ0FBQSxrQkFDQSxDQUFBLGVBQ0EsQ0FBQSxhQUNBLENBQUEsZ0JBR0MsUUFBQSxDQUFBLFNBQ08sQ0FBRSw0Q0FFSyxDQUFBLGdCQUNiLENBQUEsZUFDQSxDQUFBLHdCQUNBLENBQUEsYUFDQSxDQUFBLGVBQ0EsQ0FBQSx1QkFFQSwyQkFDYyxDQUFBLGdCQUNiLENBQUEsaUNBR0QsZUFDQyxDQUFBLGdCQUNBLDBCQUlXLENBQUEsUUFBQSxDQUFBLHFCQUVKLENBQUEsWUFDUixDQUFBLGdCQUNBLFFBQUEsQ0FBQSxhQUlBLENBQUEsc0JBRUEsUUFBQSxDQUFBLDRDQUdHLGVBQ0QsQ0FBQSxrQ0FJQSxlQUNELENBQUEsbUJBQ0EsUUFBQSxDQUFBLGdCQUtELENBQUEsZ0JBQ0EsQ0FBQSxhQUNBLENBQUEseUJBRUEsUUFBQSxDQUFBLGtCQUVDLGtDQUlZLENBQUEsa0JBQ2IsQ0FBQSxnQkFDQSxDQUFBLGVBQ0EsQ0FBQSxRQUFhLENBQUEsaUJBRWIsQ0FBQSxnQkFDQSxDQUFBLGlCQUNBLENBQUEseUJBRUEsYUFDQyxDQUFBLGdCQUNBLENBQUEsV0FBaUIsb0JBT1gsQ0FBQSxxQkFDVCxDQUFVLFFBQUUsQ0FBQSwwQkFFSCxDQUFBLGFBQ1QsQ0FBQSxXQUFjLENBQ2QsNENBQ2EsQ0FBQSxnQkFDYixDQUFBLGVBQ0EsQ0FBQSxhQUNBLENBQUEscUJBQ0EsQ0FBQSxpQkFDQSxDQUFBLHdCQUNBLENBQUEsa0JBQ0EsQ0FBQSwyQkFDUSxDQUFBLDBCQUNSLENBQUEsdUJBQ0EsQ0FBQSxpQkFqQkQsK0JBb0JtQixDQUFBLHVCQUNWLENBQUEsd0JBQ1AsK0JBS21CLENBQUEsc0JBQ1YsQ0FBQSxtQkFDUCxrQkFJRCxDQUFBLGlCQUNBLGtCQUdBLENBQUEscUJBQ0Esa0JBR0EsQ0FBQSxzQkFDQSxrQkFHQSxDQUFBLGFBQ0EsQ0FBQSxpQkFDQSxrQkFHQSxDQUFBLHVCQUNBLGtCQUdBLENBQUEsaUJBQ0Esd0JBR0EsQ0FBQSxrQkFDQSx5QkFHQSxDQUFBLGlCQUNBLGlDQUtXLENBQUEsZ0JBQ2IsQ0FBQSxhQUNBLENBQUEsd0JBSEQseUJBTVcsQ0FBQSwyQkFDVCxTQUFBLENBQUEsaUJBS0QsQ0FBQSw0QkFNRyxpQkFDQSxDQUFBLHVCQUpPLGFBVVQsQ0FBQSxRQUFPLGFBS1IsQ0FBQSxpQkFDQSxDQUFBLFVBQVUsQ0FBUSxRQUNYLENBQUEsaUJBRVAsQ0FBQSxnQ0FDYSxDQUFBLGVBQ2IsQ0FBQSxlQUNBLENBQUEsd0JBQ0EsQ0FBQSxpQkFDQSxDQUFBLGVBQ0EsQ0FBQSxrQkFFQSxpQkFDQyxDQUFBLE9BQVUsQ0FBQSxpQkFFVixDQUFBLGNBQ0EsYUFHQSxDQUFBLDZCQUlBLG9CQUNVLENBQUEsZUFDVCxhQUtGLENBQUEsUUFBTyxDQUFBLFNBQ0QsQ0FBRSxvQ0FFSyxDQUFBLGlCQUNiLENBQUEsZUFDQSxDQUFBLGVBQ0EsQ0FBQSxrQkFDQSxDQUFBLGtCQUNBLENBQUEsOEJBRUUsZUFDRCxDQUFBLHlCQUNBLGlCQUdBLENBQUEsUUFBWSxhQUtiLENBQUEsaUJBQ0EsQ0FBQSxVQUFVLENBQVEsZ0JBRWxCLENBQUEsU0FBUSxDQUFBLGdDQUVLLENBQUEsYUFDYixDQUFBLGVBQ0EsQ0FBQSxlQUNBLENBQUEsZUFDQSxDQUFBLGtCQUVBLGlCQUNDLENBQUEsT0FBVSxDQUFBLGtCQUVWLENBQUEsY0FDQSxVQUFBLENBRU0sWUFFTixDQUFBLE1BQU8sQ0FBRSxxQkFFRCxDQUFBLGtDQUNDLENBQUEsMEJBQ0gsQ0FERyx1QkFDSCxDQURHLGtCQUNILENBQUUsNEJBQ0csQ0FBQSxhQUNYLENBQUEsa0JBQ0EsQ0FBQSxnQ0FDYSxDQUFBLGVBQ2IsQ0FBQSxlQUNBLENBQUEsd0JBQ0EsQ0FBQSxlQUNBLENBQUEsc0JBZEEsd0NBaUJ3QixDQUFBLGtCQUN2QixVQUFBLENBR1Msd0JBRUYsQ0FBQSxTQUFBLENBQUEsd0JBRUEsQ0FBQSxZQUNSLENBQUEsV0FBYSxDQUNiLGlCQUNBLENBQUEsa0JBQ0EsQ0FBQSxhQUNBLENBQUEsaUJBQ0EsQ0FBQSxnQ0FDYSxDQUFBLGVBQ2IsQ0FBQSx3QkFDQSxDQUFBLGlCQUNBLENBQUEsYUFDQSxZQUdBLENBQUEsY0FDQSxDQUFBLGNBQ0EsQ0FBQSw2QkFJQSxvQkFDVSxDQUFBLFFBQUEsYUFNWCxDQUFBLGlCQUNBLENBQUEsUUFBVSxDQUFBLGlCQUVWLENBQUEsNkJBQ2EsQ0FBQSxlQUNiLENBQUEsZUFDQSxDQUFBLGlCQUNBLENBQUEsWUFDQSxDQUFBLGVBQ0EsQ0FBQSxhQUVBLDJCQUNjLENBQUEsNkJBSWIsb0JBQ1UsQ0FBQSxRQUFBLGFBTVgsQ0FBQSxpQkFDQSxDQUFBLFFBQVUsQ0FBQSxpQkFFVixDQUFBLDZCQUNhLENBQUEsZUFDYixDQUFBLHVCQUNBLENBQVksZUFDWixDQUFBLGlCQUNBLENBQUEsWUFDQSxDQUFBLHFCQUNBLENBQUEsZUFDQSxDQUFBLGFBRUEsMkJBQ2MsQ0FBQSw2QkFJYixvQkFDVSxDQUFBLFFBQUEsa0JBTVgsQ0FBQSw0QkFDQSxDQUFBLDZCQUNBLENBQUEscUNBQ1ksQ0FBQSxhQUNaLENBQUEsY0FDQSxDQUFBLDBCQUNTLENBQUEsNkJBQ0ksQ0FBQSxnQkFDYixDQUFBLGVBQ0EsQ0FBQSxpQkFDQSxDQUFBLHdCQUNBLENBQUEsWUFDQSxDQUFBLGVBQ0EsQ0FBQSxpQkFDQSxXQUVlLENBQ2YsaUJBQ0EsQ0FBQSxPQUFVLENBQUEsZUFFVixDQUFBLE9BQVcsV0FHTixDQUNMLFFBQU8sQ0FBQSxTQUNELENBQUUsb0NBRUssQ0FBQSxhQUNiLENBQUEsZUFDQSxDQUFBLGtCQUNBLENBQUEsa0JBQ0EsQ0FBQSxjQVJELGVBV0UsQ0FBQSxrQkFDQSxRQUFBLENBQUEsU0FJSyxDQUFFLFdBQ0Usa0JBSUosQ0FBRSxTQUFBLENBQUEsWUFFUixDQUFBLFVBQVMsQ0FBSSxpQkFFYixDQUFBLGVBQ0EsQ0FBQSxhQUNBLENBQUEsVUFBVSxDQUFJLGVBRWQsQ0FBQSxpQkFHQyxTQUFBLENBQUEsa0NBRWMsQ0FBQSxhQUNiLENBQUEsZUFDQSxDQUFBLHdCQUNBLENBQUEsYUFDQSxDQUFBLG1CQUNBLENBQUEsa0JBQ0EsQ0FBQSxvQkFDQSxtQkFHTyxDQUFFLDRDQUNJLENBQUEsZUFDYixDQUFBLGVBQ0EsQ0FBQSx3QkFDQSxDQUFBLGFBQ0EsQ0FBQSxtQkFDQSxDQUFBLGtCQUNBLENBQUEsZUFDQSxDQUFBLGtCQUNBLGVBR0EsQ0FBQSxrQkFDQSxDQUFBLFdBQW1CLENBQ25CLGtDQUNhLENBQUEsZUFDYixDQUFBLGVBQ0EsQ0FBQSxpQkFDQSxDQUFBLFlBQ0EsQ0FBQSxpQkFDQSxDQUFBLGtCQUNBLGVBR0EsQ0FBQSxXQUFnQixDQUNoQixrQkFDQSxDQUFBLGtDQUNhLENBQUEsZUFDYixDQUFBLHNCQUxBLGtCQVFDLENBQUEsOEJBUkksNkJBWVMsQ0FBQSwrQkFaVCw4QkFnQlUsQ0FBQSw2QkFoQlYsNEJBb0JRLENBQUEsZ0NBcEJSLCtCQXdCVyxDQUFBLDRCQXhCaEIsWUE0QkMsQ0FBQSxlQUNBLENBQUEscUJBQ0EsZUFJRCxDQUFBLGtDQUNhLENBQUEsZUFDYixDQUFBLGtCQUNBLENBQUEsbUJBQ0EsQ0FBQSxrQkFDQSxDQUFBLGtCQUNBLFdBRUssQ0FDTCxrQ0FDYSxDQUFBLGVBQ2IsQ0FBQSxtQkFDQSxDQUFBLGtCQUNBLENBQUEsa0JBQ0EsV0FFSyxDQUNMLGtDQUNhLENBQUEsZUFDYixDQUFBLG1CQUNBLENBQUEsa0JBQ0EsQ0FBQSx5QkFDQSw2QkFLQSxDQUFBLGFBQ0EsV0FJUyxDQUNYLFdBQVksQ0FDWiw2QkFDYSxDQUFBLGFBQ2IsQ0FBQSxTQUFPLENBQUEsZUFFUCxDQUFBLGVBQ0EsQ0FBQSwyQkFDUSxDQUFBLGtDQUNLLENBQUEsYUFDYixDQUFBLHdCQVZXLGVBYVYsQ0FBQSxlQUNBLENBQUEsUUFBYSxDQUFBLGtDQUVBLENBQUEsc0JBQ0osQ0FBQSx1QkFqQlgsYUFxQkUsQ0FBQSxhQUNBLENBQUEsaUJBQ0EsQ0FBQSx1QkF2QkYsZ0NBMkJtQixDQUFBLG9CQUNqQixlQUlDLENBQUEsZUFDQSxDQUFBLFFBQWEsQ0FBQSxnQkFFYixDQUFBLG1CQUNBLFFBQUEsQ0FBQSxlQUlBLENBQUEsZUFDQSxDQUFBLGFBQ0EsQ0FBQSxtQkFDQSxVQUFBLENBSUksVUFDRyxDQUFJLDhCQUVHLENBQUEsaUJBQ2QsQ0FBQSxTQUFhLENBQUEsZUFFYixDQUFBLGVBQ0EsQ0FBQSwyQkFFUSxDQUFBLGFBQ1IsQ0FBQSx1RUFLQSw2QkFDYyxDQUFBLGVBQ2IsQ0FBQSxtQkFDQSxXQUdHLENBQ0osNkJBSUYsYUFDQyxDQUFBLDBDQUd1QixhQTdFekIsZ0JBOEVFLENBQUssY0FDTCxDQUFBLFVBQVcsQ0FBSSxDQUNmLHNCQUlGLFlBQ0MsQ0FBQSw2QkFDQSxDQUFBLFVBQXVCLENBQU8sYUFFOUIsQ0FBQSwwQ0FFRyw4QkFDWSxDQUFBLGlDQVBLLFFBVXBCLENBQUEsa0NBRWMsQ0FBQSxlQUNiLENBQUEsZUFDQSxDQUFBLHFCQUNTLENBQUEseUNBR1YsUUFBQSxDQUFBLGtDQUVjLENBQUEsZUFDYixDQUFBLGVBQ0EsQ0FBQSxlQUNBLENBQUEsbUJBRUEsZ0JBTUMsQ0FBQSxVQUFZLENBQUssa0JBRWpCLENBQUEsdUJBQ08sQ0FBQSxzQkFHTixpQkFDQyxDQUFBLGFBQ0EsQ0FBQSxzQkFDQSxjQUdBLENBQUEsZ0JBQ0EsQ0FBQSxvQkFDQSxpQkFLRixDQUFBLFNBQVksQ0FBQSxZQUVaLENBQUEsV0FBYSxDQUNiLGFBQ0EsQ0FBQSx1QkFHQyxvQkFDQyxDQUFBLHVCQUNBLG1CQUdBLENBQUEsb0JBQ0EsQ0FBUyxtQkFDVCxXQU1hLENBQ2pCLGtCQUNBLENBQUEsd0JBQ1EsQ0FBQSxZQUNSLENBQUEsY0FDQSxDQUFBLHVCQUdDLCtCQUNhLENBQUEscUJBQ0wsQ0FBQSxpQkFDUCxDQUFBLHVCQUNBLGlCQUdBLENBQUEscUJBQ08sQ0FBQSwwQkFDUCxRQUFBLENBQUEsb0JBSUEsQ0FBQSw2QkFDYSxDQUFBLGVBQ2IsQ0FBQSxlQUNBLENBQUEsZUFDQSxDQUFBLHlCQUNBLGtDQUdhLENBQUEsZUFDYixDQUFBLGVBQ0EsQ0FBQSxlQUNBLENBQUEsaUJBQ0EsQ0FBQSxRQUFhLENBQUEsb0RBR1gsZUFDRCxDQUFBLDBDQUtxQixtQkExQ3pCLHFCQTJDRSxDQUFBLHVCQW5DQSwrQkF1Q2MsQ0FBQSxVQUFBLENBQW9CLHVCQWpDbEMsVUFBQSxDQUFHLHFCQXVDUSxDQUFBLENBQUEsV0FDVCxZQU1ILENBQUEsY0FDQSxDQUFBLGtCQUdDLFFBQUEsQ0FBQSxTQUNPLENBQUUsNEJBRU8sQ0FBQSw0Q0FDRixDQUFBLGdCQUNiLENBQUEsZUFDQSxDQUFBLHdCQUNBLENBQUEsYUFDQSxDQUFBLGVBQ0EsQ0FBQSxrQkFDQSxxQkFHTyxDQUFBLGlCQUNQLENBQUEsZ0JBQ0EsMEJBR2EsQ0FBQSxxQkFDSixDQUFBLHFCQUNGLENBQUEsMENBSWUsV0FBZ0IscUJBQ3ZDLENBQUEsa0JBYkEsVUFBQSxDQUFNLHdCQWtCSyxDQUFBLGdCQWJYLDBCQWlCYyxDQUFBLGFBQ1osQ0FBQSx3QkFDUyxDQUFBLFVBQUEsQ0FBZ0IsQ0FDekIsYUFNSixXQUFZLENBQ1gsYUFDQSxDQUFBLGtCQUNBLENBQUEsd0JBQ1EsQ0FBQSxjQUNSLENBQUEsYUFDQSxDQUFBLG9CQUdDLFFBQUEsQ0FBQSw2QkFFYyxDQUFBLGVBQ2IsQ0FBQSxlQUNBLENBQUEsaUJBQ0EsQ0FBQSxtQkFDQSxrQ0FHYSxDQUFBLGVBQ2IsQ0FBQSxlQUNBLENBQUEsZUFDQSxDQUFBLGlCQUNBLENBQUEsUUFBYSxDQUFBLHdCQXRCSixRQTJCWCxDQUFBLDZCQUVjLENBQUEsZUFDYixDQUFBLGVBQ0EsQ0FBQSxpQkFDQSxDQUFBLGNBQ0EsWUFJRCxDQUFBLHFCQUNBLENBQUEsa0NBQ2EsQ0FBQSxrQkFDYixDQUFBLGNBQ0EsQ0FBQSxTQUFRLENBQUEsZUFFUixDQUFBLGNBQ0EsQ0FBQSxxQkFHQyxRQUFBLENBQUEscUJBRVUsQ0FBQSxrQkFDVCxDQUFBLGFBQ0EsQ0FBQSxlQUNBLENBQUEsZ0JBQ0EsQ0FBQSx3QkFDQSxDQUFBLGVBQ0EsQ0FBQSxpQkFDQSxDQUFBLG9CQUNBLGlCQUdBLENBQUEsa0JBQ0EsQ0FBQSxRQUFZLENBQUEsbUJBRUwsQ0FBRSxnQkFDVCxrQkFLRixDQUFBLGNBQ0EsQ0FBQSxtQkFDTyxDQUFFLGtDQUNJLENBQUEsYUFDYixDQUFBLGNBQ0EsQ0FBQSxhQUNBLENBQUEsdUJBR0MsUUFBQSxDQUFBLGlCQUVDLENBQUEsZUFDQSxDQUFBLGlCQUNBLENBQUEsaUJBQ0EsQ0FBQSx5QkFDQSxRQUFBLENBQUEscUJBSVMsQ0FBQSxlQUNULENBQUEsaUJBQ0EsQ0FBQSxnQkFDQSxDQUFBLHNCQUNBLFFBQUEsQ0FBQSxxQkFJUyxDQUFBLGVBQ1QsQ0FBQSxpQkFDQSxDQUFBLDJCQTlCWSxRQWtDZCxDQUFBLGlCQUVDLENBQUEsZUFDQSxDQUFBLGlCQUNBLENBQUEsaUJBQ0EsQ0FBQSw2QkFHQSxnQkFDQSxDQUFBLGVBQ0Esa0JBSUQsQ0FBQSxjQUNBLENBQUEsaUJBQ0EsQ0FBQSxhQUNBLENBQUEsa0NBQ2EsQ0FBQSxhQUNiLENBQUEsY0FDQSxDQUFBLHNCQUdDLFFBQUEsQ0FBQSxlQUVDLENBQUEsaUJBQ0EsQ0FBQSxlQUNBLENBQUEscUJBQ0EsUUFBQSxDQUFBLGVBSUEsQ0FBQSxpQkFDQSxDQUFBLGtCQUNBLENBQUEsMENBRUUsZUFDRCxDQUFBLDBCQXhCVSxRQTZCYixDQUFBLGVBRUMsQ0FBQSxpQkFDQSxDQUFBLGVBQ0EsQ0FBQSw0QkFHQSxnQkFDQSxDQUFBLFdBQWlCLGtCQUtsQixDQUFBLGFBQ0EsQ0FBQSw0QkFDWSxDQUFBLCtCQUNHLENBQUEsa0NBQ0YsQ0FBQSxhQUNiLENBQUEsZUFDQSxDQUFBLGlCQUNBLENBQUEsaUJBQ0EsQ0FBQSxrQkFDTSxDQUFFLGFBQ1IsQ0FBQSwwQkFDQSxDQURBLHVCQUNBLENBREEsa0JBQ00sQ0FBRSxTQUFBLGlCQUlSLENBQUEsT0FBVSxDQUFBLG9CQUVGLENBQUEsbUJBQ0QsQ0FBRSxrQ0FDSSxDQUFBLFNBQUEsQ0FBQSxlQUViLENBQUEsaUJBQ0EsQ0FBQSxhQUNBLENBQUEsZ0JBR0MsaUJBQ0MsQ0FBQSxTQUFVLENBQUEsV0FDQSxDQUNWLE1BQUssQ0FBQSxlQUVMLENBQUEsYUFDQSxDQUFBLGdCQUNBLENBQUEsZ0JBQ0EsQ0FBQSx3QkFDQSxDQUFBLGlCQUNBLENBQUEsZUFDQSxRQUFBLENBQUEsYUFJQSxDQUFBLGtCQUNBLENBQUEsaUJBQ0EsQ0FBQSw4QkFFRSxpQkFDRCxDQUFBLGdCQUNBLGlCQUlELENBQUEsU0FBVSxDQUFBLFFBQ1YsQ0FBTywwQkFFSyxDQUFBLFlBQ1osQ0FBQSxTQUFTLENBQUEsVUFDRixDQUFHLHVCQUlULGVBQ0MsQ0FBQSxzQkFDQSxjQUdBLENBQUEsMkJBQ0EsaUJBS0YsQ0FBQSxTQUFVLENBQUEsWUFFVixDQUFBLFNBQUssQ0FBQSxVQUNFLENBQUcsc0JBRUgsQ0FBQSxZQUNQLENBQUEscUJBQ0EsY0FHQSxDQUFBLGtDQUNhLENBQUEsd0JBQ2IsQ0FBQSxZQUNBLENBQUEsYUFDQSxDQUFBLHVDQUVBLGFBQ0MsQ0FBQSxhQUNBLENBQUEsaUJBQ0EsQ0FBQSx1Q0FHRCxhQUNDLENBQUEsa0JBQ0EsQ0FBQSxXQUFtQixDQUNuQiw2QkFDYSxDQUFBLDhCQUNDLENBQUEsY0FDZCx3QkFNRCxDQUFBLFlBQ0EsQ0FBQSxXQUFhLENBQ2IsZ0JBQ0Esd0JBR0EsQ0FBQSxZQUNBLENBQUEsV0FBYSxDQUNiLG9CQW5HSyxnQkF3R04sQ0FBQSxnQkFDQSxDQUFBLGVBQ0EsQ0FBQSxpQkFDQSxDQUFBLHdCQUNBLENBQUEsZUFDQSxZQUlELENBQUEscUJBQ0EsQ0FBQSxXQUFzQixpQkFJdEIsQ0FBQSxXQUFrQixDQUNsQixPQUFPLENBQUEsb0JBRUMsQ0FBQSxtQkFDRCxDQUFFLFNBQUEsQ0FBQSxlQUVULENBQUEsa0JBQ0EsQ0FBQSxpQkFDQSxDQUFBLDZDQUNxQixDQUFBLDBCQUNyQixDQUFBLHlCQUNBLENBQUEsbUJBR0MsbUJBQ0MsQ0FBQSxjQUNBLENBQUEsc0JBQ0EsZ0JBR0EsQ0FBQSxjQUNBLENBQUEsaUJBQ0EsUUFBQSxDQUFBLG1CQUlBLGVBR0EsQ0FBQSxjQUNBLENBQUEsb0NBRUEsZ0JBQ0MsQ0FBQSxnQkFDQSxDQUFBLHNEQUtrQixlQUNsQixDQUFBLGlCQUNBLHNCQUtLLENBQUEsa0RBQ2MsQ0FBQSxzQkFoRGIsZUFvRFIsQ0FBQSxnQkFDQSxDQUFBLFFBQWEsQ0FBQSxpQkFFYixrQ0FJWSxDQUFBLGVBQ2IsQ0FBQSxpQkFDQSxDQUFBLE9BQVUsQ0FBQSxTQUNKLENBQUEsY0FFTixDQUFBLFlBQ0EsZ0NBR2EsQ0FBQSxhQUNiLENBQUEsZ0JBQ0EsQ0FBQSxpQkFDQSxDQUFBLHVCQUpVLGVBT1QsQ0FBQSxnQkFDQSxDQUFBLHFCQUNBLENBQUEsUUFBZ0IsQ0FBQSxjQUVoQixrQ0FJWSxDQUFBLHlCQURELGtCQUlYLENBQUEsZUFDQSxDQUFBLFFBQVcsQ0FBQSxpQkFFWCxnQ0FJWSxDQUFBLGdCQUNiLENBQUEsaUJBQ0EsQ0FBQSxnQkFDQSxpQ0FJbUIsQ0FBQSxpQkFDbkIsa0NBR29CLENBQUEsZUFDcEIsNkJBR2EsQ0FBQSw0QkFDRCxDQUFBLDRCQUNFLENBQUEsK0JBQ0csQ0FBQSxnQkFDakIsd0JBR2EsQ0FBQSxtQkFDYiwwQkFHYSxDQUFBLHdCQUNiLDJCQUdjLENBQUEsMkJBQ0QsQ0FBQSxjQUNiLHVCQUdTLENBQUEsNEJBQ1QsNkNBSVksQ0FKWixxQ0FJWSxDQUFBLG1DQUNYLElBQUEsV0FDSSxDQUNGLENBSFMsMkJBQ1gsSUFBQSxXQUNJLENBQ0YsQ0FBQSxnQkFPSCxZQUNDLENBQUEsaUJBQ0EsYUFHQSxDQUFBLGdCQUNBLENBQUEsYUFDQSxDQUFBLGlCQUNBLENBQUEsOEJBTUMsYUFDQSxDQUFBLG9DQUdBLFlBQ0EsQ0FBQSx3Q0FHQSxZQUNBLENBQUEscUJBQ0EsQ0FBQSw2QkFHQSx1QkFDUyxDQUFBLDJCQUdULGtCQUNPLENBQUEsZ0NBR1Asa0JBQ08sQ0FBQSxpQkFDUCxZQUtGLENBQUEsaUJBQ0EsZUFHQSxDQUFBLDJCQUNhLENBQUEsZ0JBQ2IsQ0FBQSxrQkFDQSxTQUFBLENBQUEsZUFJQSxDQUFBLG1CQUNBLENBQUEsaUJBQ0EsYUFHQSxDQUFBLHlCQUNZLENBQUEsYUFDWixXQUVXLENBQ1gsWUFDQSxDQUFBLGtCQUNBLENBQUEsbUJBQ0EsVUFBQSxDQUVpQixlQUVqQixDQUFBLFVBQVcsQ0FBSyxZQUdoQixDQUFBLHFCQUNBLENBQUEsV0FBc0IsQ0FDdEIsMEJBUEQsZUFVRSxDQUFBLGtDQUdELGVBQ0MsQ0FBQSwyQkFkRixlQWtCRSxDQUFBLG9CQUNBLFdBR2lCLENBQ2xCLFlBRUEsQ0FBQSxVQUFTLENBQUksa0JBRWIsQ0FBQSw4QkFFQSxTQUFBLENBQUEsZ0NBQUMsVUFHQSxDQUFDLGlCQUVBLENBQUEsaUJBQ0EsQ0FBQSxpQkFDQSxDQUFBLGFBQ0EsQ0FBQSx3QkFmSCx1QkFvQlUsQ0FBQSxjQUNSLENBQUEsd0JBQ0EsQ0FEQSxxQkFDQSxDQUFVLHFCQUNGLENBQUEsc0JBdkJWLFVBMEJDLENBQUMsaUJBRUEsQ0FBQSxzQkFDQSxnQkFJRCxDQUFBLGNBQ0EsQ0FBQSxnREFJQSxhQUNDLENBQUEsc0JBQ0EsQ0FBQSxzQ0FDa0IsQ0FBQSxpQkFDbEIsQ0FBQSxVQUFVLENBQVEsVUFDVixDQUFHLFVBQ0gsQ0FBRyxnQkFFWCxDQUFBLHdCQUNBLENBREEscUJBQ0EsQ0FEQSxvQkFDQSxDQURBLGdCQUNBLENBQUEsZUFDQSxDQUFBLGNBQ0EsQ0FBQSxpQkFDQSxDQUFBLG9DQUdELDRCQUNhLENBQUEsZ0NBSU0sdUJBRVQsQ0FBQSxpREFHUCx1QkFDUSxDQUFBLDJDQUlYLHdCQUNTLENBQUEsNERBRVIsMEJBQ2EsQ0FBQSxzQkF4Q2YsaUJBOENDLENBQUEsZUFDQSxDQUFBLGtCQUNBLGlCQUdBLENBQUEsaUJBQ0EsQ0FBQSwwQkFDQSwwQkFHUyxDQUFBLFVBQUEsQ0FBa0IsMkJBRW5CLENBQUEsZ0JBQ1IsQ0FBQSw0QkFDZSxDQUFBLHlCQUNmLHlCQUdTLENBQUEsVUFBQSxDQUFpQiwyQkFFbEIsQ0FBQSxnQkFDUixDQUFBLDRCQUNlLENBQUEseUJBR04sd0JBQ1QsQ0FBQSw0RkFlQSxhQUNDLENBQUEseUJBR0Qsb0JBQ0MsQ0FBQSxrQ0FHRCxhQUNDLENBQUEsc0NBREQsb0JBSUUsQ0FBQSwrQkFJRixrQkFDQyxDQUFBLGdDQUdELFlBQ0MsQ0FBQSwwQkFHRCxhQUNDLENBQUEsb0JBN0JGLGFBaUNFLENBQUEsMEJBRUMsYUFDQSxDQUFBLGtCQUNBLENBQUEsOEJBRUMsYUFDQSxDQUFBLG9CQUNBLENBQUEsa0JBQ0EsQ0FBQSxvQkExQ0osYUFnREUsQ0FBQSxvQkFoREYsYUFvREUsQ0FBQSxrQkFDQSxDQUFBLG1DQUN5QixDQUFDLG1CQXRENUIsVUF5REMsQ0FBTSx1QkEzd0NJLGtCQWd4Q1QsQ0FBQSxvQkFDQSxDQUFBLGFBQ0EsQ0FBQSxvQ0FHRSwrQkFFa0IsQ0FBQSx3QkFDVixDQUFBLGtDQUlSLGtCQUNBLENBQUEsNkJBR0Esa0JBQ0EsQ0FBQSxtQ0FHQSxrQkFDQSxDQUFBLGlDQUdBLGtCQUNBLENBQUEsNkJBR0Esa0JBQ0EsQ0FBQSwrQkFHQSxrQkFDQSxDQUFBLDhCQU9BLGtCQUNBLENBQUEsYUFDQSxDQUFBLDhCQUdBLHdCQUNBLENBQUEsVUFBa0IsQ0FBTyxrQ0FEekIsd0JBS0MsQ0FBQSwwQ0FMSSxvQkFTSixDQUFBLDJDQVRJLG9CQWFKLENBQUEsaUNBSUQsd0JBQ0EsQ0FBQSw0REFJQSxVQUFBLENBQUssNEJBTVIsd0JBQ0MsQ0FBQSxZQUNBLENBQUEsVUEzSWdCLENBQU8sMEJBK0l4Qix3QkFDQyxDQUFBLFlBQ0EsQ0FBQSxhQUNBLENBQUEsbURBSUEsa0JBQ0MsQ0FBQSxvQkFDQSxDQUFBLGFBQ0EsQ0FBQSx1REFLRixrQkFDQyxDQUFBLDBCQUdELGtCQUNDLENBQUEsaUNBRUMsYUFDQSxDQUFBLGtCQUNBLENBQUEsdUJBcktRLG9CQTBLVCxDQUFBLGtCQUNBLENBQUEsd0RBSUQsa0JBQ0MsQ0FBQSxvQkFDQSxDQUFBLGFBQ0EsQ0FBQSxnRUFFQywrQkFDcUIsQ0FBQSwwQ0FHRSxnRUFKdkIsK0JBTXNCLENBQUEsQ0FBQSw0QkFPckIsaUJBQ0EsQ0FBQSw4QkFHQSxpQkFDQSxDQUFBLDBDQUlzQiw0QkFUdEIseUJBV1ksQ0FBQSxhQUNaLENBQUEsQ0FBQSx1QkE3TU8sb0NBbU5hLENBQUEsOEJBR3ZCLG9CQUNDLENBQUEsNENBR0QsYUFDQyxDQUFBLDZCVjZxREQsYVV6cURDLENBQUEsMkVBSUQsaUJBQ0MsQ0FBQSx3QkFDQSxhQUtELENBQUEsa0JBQ0EsQ0FBQSxtQ0FHc0IsZ0JBQ3RCIiwiZmlsZSI6InN0eWxlLmNzcyJ9 */ \ No newline at end of file diff --git a/data/book/book-crb.json b/data/book/book-crb.json index 5d862ab2fb..1eb7b46037 100644 --- a/data/book/book-crb.json +++ b/data/book/book-crb.json @@ -850,7 +850,7 @@ "entries": [ "Once you've finalized your ability scores, you can use them to determine your ability modifiers, which are used in most other statistics in the game. Find the score in {@table ABILITY MODIFIERS||Table 1\u20131: Ability Modifiers} to determine its ability modifier.", { - "type": "statblock", + "type": "data", "tag": "table", "name": "Ability Modifiers", "source": "CRB" @@ -1612,19 +1612,19 @@ "Druidic is a secret language, and is available only to characters who are druids. In fact, druids are prohibited from teaching the language to non-druids (described further in Anathema on page 130).", "It is possible for your character to learn languages later in their adventuring career. Selecting the Multilingual feat, for example, grants a character two new languages chosen from those listed in {@table Common Languages||Table 2\u20131: Common Languages} and {@table Uncommon Languages||Table 2\u20132: Uncommon Languages}. Other abilities and effects might grant access to common or uncommon languages, as detailed in their descriptions.", { - "type": "statblock", + "type": "data", "tag": "table", "name": "Common Languages", "source": "CRB" }, { - "type": "statblock", + "type": "data", "tag": "table", "name": "Uncommon Languages", "source": "CRB" }, { - "type": "statblock", + "type": "data", "tag": "table", "name": "Secret Language", "source": "CRB" @@ -2489,7 +2489,7 @@ "entries": [ "When you encounter particularly archaic or esoteric texts, the GM might require you to Decipher the Writing before you can understand it. You must be trained in the relevant skill to Decipher Writing. {@skill Arcana} is typically used for writing about magic or science, {@skill Occultism} for esoteric texts about mysteries and philosophy, {@skill Religion} for scripture, and Society for coded messages or archaic documents.", { - "type": "statblock", + "type": "data", "tag": "action", "name": "Decipher Writing", "source": "CRB" @@ -2508,7 +2508,7 @@ ] }, { - "type": "statblock", + "type": "data", "tag": "table", "name": "Skills, Key Abilities, and Actions", "source": "CRB" @@ -2535,7 +2535,7 @@ }, "In some cases, the GM might let you use a different skill to Earn Income through specialized work. Usually, this is scholarly work, such as using {@skill Religion} in a monastery to study old texts\u2014but giving sermons at a church would still fall under {@skill Performance} instead of {@skill Religion}. You also might be able to use physical skills to make money, such as using {@skill Acrobatics} to perform feats in a circus or {@skill Thievery} to pick pockets. If you're using a skill other than {@skill Crafting}, Lore, or {@skill Performance}, the DC tends to be significantly higher.", { - "type": "statblock", + "type": "data", "tag": "action", "name": "Earn Income", "source": "CRB" @@ -2553,7 +2553,7 @@ ] }, { - "type": "statblock", + "type": "data", "tag": "table", "name": "Income Earned", "source": "CRB" @@ -2617,7 +2617,7 @@ "entries": [ "Using the skill related to the appropriate tradition, as explained in Magical Traditions and Skills on page 238, you can attempt to identify a magical item, location, or ongoing effect. In many cases, you can use a skill to attempt to Identify Magic of a tradition other than your own at a higher DC. The GM determines whether you can do this and what the DC is.", { - "type": "statblock", + "type": "data", "name": "Identify Magic", "tag": "action", "source": "CRB" @@ -2666,13 +2666,13 @@ "entries": [ "If you're a spellcaster, you can use the skill corresponding to your magical tradition to learn a new spell of that tradition. {@table Learning a Spell||Table 4\u20133: Learning a Spell} lists the Price of the materials needed to Learn a Spell of each level.", { - "type": "statblock", + "type": "data", "name": "Learn a Spell", "tag": "action", "source": "CRB" }, { - "type": "statblock", + "type": "data", "tag": "table", "name": "Learning a Spell", "source": "CRB" @@ -2686,7 +2686,7 @@ "entries": [ "To remember useful information on a topic, you can attempt to Recall Knowledge. You might know basic information about something without needing to attempt a check, but {@action Recall Knowledge} requires you to stop and think for a moment so you can recollect more specific facts and apply them. You might even need to spend time investigating first. For instance, to use {@skill Medicine} to learn the cause of death, you might need to conduct a forensic examination before attempting to Recall Knowledge.", { - "type": "statblock", + "type": "data", "name": "Recall Knowledge", "tag": "action", "source": "CRB" @@ -2728,7 +2728,7 @@ "entries": [ "If you need to provide food and shelter, you can use the {@action Subsist} downtime activity. This typically uses Society if you're in a settlement or {@skill Survival} if you're in the wild.", { - "type": "statblock", + "type": "data", "name": "Subsist", "tag": "action", "source": "CRB" @@ -2763,7 +2763,7 @@ "entries": [ "{@skill Acrobatics} measures your ability to perform tasks requiring coordination and grace. When you use the {@action Escape} basic action (page 470), you can use your {@skill Acrobatics} modifier instead of your unarmed attack modifier.", { - "type": "statblock", + "type": "data", "tag": "action", "name": "Balance", "source": "CRB" @@ -2781,7 +2781,7 @@ ] }, { - "type": "statblock", + "type": "data", "tag": "action", "name": "Tumble Through", "source": "CRB" @@ -2792,7 +2792,7 @@ "name": "Acrobatics Trained Actions", "entries": [ { - "type": "statblock", + "type": "data", "tag": "action", "name": "Maneuver in Flight", "source": "CRB" @@ -2809,7 +2809,7 @@ ] }, { - "type": "statblock", + "type": "data", "tag": "action", "name": "Squeeze", "source": "CRB" @@ -2854,7 +2854,7 @@ ] }, { - "type": "statblock", + "type": "data", "tag": "action", "name": "Borrow an Arcane Spell", "source": "CRB" @@ -2870,7 +2870,7 @@ "entries": [ "{@skill Athletics} allows you to perform deeds of physical prowess. When you use the {@action Escape} basic action, you can use your {@skill Athletics} modifier instead of your unarmed attack modifier.", { - "type": "statblock", + "type": "data", "tag": "action", "name": "Climb", "source": "CRB" @@ -2968,7 +2968,7 @@ ] }, { - "type": "statblock", + "type": "data", "tag": "action", "name": "Force Open", "source": "CRB" @@ -2986,13 +2986,13 @@ ] }, { - "type": "statblock", + "type": "data", "tag": "action", "name": "Grapple", "source": "CRB" }, { - "type": "statblock", + "type": "data", "tag": "action", "name": "High Jump", "source": "CRB" @@ -3006,13 +3006,13 @@ ] }, { - "type": "statblock", + "type": "data", "tag": "action", "name": "Long Jump", "source": "CRB" }, { - "type": "statblock", + "type": "data", "tag": "action", "name": "Shove", "source": "CRB" @@ -3026,7 +3026,7 @@ ] }, { - "type": "statblock", + "type": "data", "tag": "action", "name": "Swim", "source": "CRB" @@ -3044,7 +3044,7 @@ ] }, { - "type": "statblock", + "type": "data", "tag": "action", "name": "Trip", "source": "CRB" @@ -3065,7 +3065,7 @@ "name": "Athletics Trained Action", "entries": [ { - "type": "statblock", + "type": "data", "tag": "action", "name": "Disarm", "source": "CRB" @@ -3088,7 +3088,7 @@ ] }, { - "type": "statblock", + "type": "data", "tag": "action", "name": "Repair", "source": "CRB" @@ -3106,7 +3106,7 @@ ] }, { - "type": "statblock", + "type": "data", "tag": "action", "name": "Craft", "source": "CRB" @@ -3139,7 +3139,7 @@ ] }, { - "type": "statblock", + "type": "data", "tag": "action", "name": "Identify Alchemy", "source": "CRB" @@ -3155,19 +3155,19 @@ "entries": [ "You can trick and mislead others using disguises, lies, and other forms of subterfuge.", { - "type": "statblock", + "type": "data", "tag": "action", "name": "Create a Diversion", "source": "CRB" }, { - "type": "statblock", + "type": "data", "tag": "action", "name": "Impersonate", "source": "CRB" }, { - "type": "statblock", + "type": "data", "tag": "action", "name": "Lie", "source": "CRB" @@ -3178,7 +3178,7 @@ "name": "Deception Trained Action", "entries": [ { - "type": "statblock", + "type": "data", "tag": "action", "name": "Feint", "source": "CRB" @@ -3194,7 +3194,7 @@ "entries": [ "You influence others through negotiation and flattery.", { - "type": "statblock", + "type": "data", "tag": "action", "name": "Gather Information", "source": "CRB" @@ -3212,7 +3212,7 @@ ] }, { - "type": "statblock", + "type": "data", "tag": "action", "name": "Make an Impression", "source": "CRB" @@ -3238,7 +3238,7 @@ ] }, { - "type": "statblock", + "type": "data", "tag": "action", "name": "Request", "source": "CRB" @@ -3252,13 +3252,13 @@ "entries": [ "You bend others to your will using threats.", { - "type": "statblock", + "type": "data", "tag": "action", "name": "Coerce", "source": "CRB" }, { - "type": "statblock", + "type": "data", "tag": "action", "name": "Demoralize", "source": "CRB" @@ -3360,7 +3360,7 @@ ] }, { - "type": "statblock", + "type": "data", "tag": "action", "name": "Administer First Aid", "source": "CRB" @@ -3371,19 +3371,19 @@ "name": "Medicine Trained Actions", "entries": [ { - "type": "statblock", + "type": "data", "tag": "action", "name": "Treat Disease", "source": "CRB" }, { - "type": "statblock", + "type": "data", "tag": "action", "name": "Treat Poison", "source": "CRB" }, { - "type": "statblock", + "type": "data", "tag": "action", "name": "Treat Wounds", "source": "CRB" @@ -3405,7 +3405,7 @@ ] }, { - "type": "statblock", + "type": "data", "tag": "action", "name": "Command an Animal", "source": "CRB" @@ -3515,7 +3515,7 @@ ] }, { - "type": "statblock", + "type": "data", "tag": "action", "name": "Perform", "source": "CRB" @@ -3605,7 +3605,7 @@ ] }, { - "type": "statblock", + "type": "data", "tag": "action", "name": "Create Forgery", "source": "CRB" @@ -3621,7 +3621,7 @@ "entries": [ "You are skilled at avoiding detection, allowing you to slip past foes, hide, or conceal an item.", { - "type": "statblock", + "type": "data", "tag": "action", "name": "Conceal an Object", "source": "CRB" @@ -3660,7 +3660,7 @@ ] }, { - "type": "statblock", + "type": "data", "tag": "action", "name": "Hide", "source": "CRB" @@ -3680,7 +3680,7 @@ ] }, { - "type": "statblock", + "type": "data", "tag": "action", "name": "Sense Direction", "source": "CRB" @@ -3703,13 +3703,13 @@ "name": "Survival Trained Actions", "entries": [ { - "type": "statblock", + "type": "data", "tag": "action", "name": "Cover Tracks", "source": "CRB" }, { - "type": "statblock", + "type": "data", "tag": "action", "name": "Track", "source": "CRB" @@ -3737,13 +3737,13 @@ "entries": [ "You are trained in a particular set of skills favored by thieves and miscreants.", { - "type": "statblock", + "type": "data", "tag": "action", "name": "Palm an Object", "source": "CRB" }, { - "type": "statblock", + "type": "data", "tag": "action", "name": "Steal", "source": "CRB" @@ -3754,13 +3754,13 @@ "name": "Thievery Trained Actions", "entries": [ { - "type": "statblock", + "type": "data", "tag": "action", "name": "Disable a Device", "source": "CRB" }, { - "type": "statblock", + "type": "data", "tag": "action", "name": "Pick a Lock", "source": "CRB" @@ -3789,13 +3789,13 @@ "General feats also include a subcategory of skill feats, which expand on what you can accomplish via skills. These feats also have the skill trait. Most characters gain skill feats at 2nd level and every 2 levels thereafter. When you gain a skill feat, you must select a general feat with the skill trait; you can't select a general feat that lacks the skill trait. The level of a skill feat is typically the minimum level at which a character could meet its proficiency prerequisite.", "Please visit the {@filter feats page|feats||source=CRB} to view all Feats.", { - "type": "statblock", + "type": "data", "tag": "table", "name": "General Feats", "source": "CRB" }, { - "type": "statblock", + "type": "data", "tag": "table", "name": "General Skill Feats", "source": "CRB" @@ -3853,7 +3853,7 @@ ] }, { - "type": "statblock", + "type": "data", "tag": "table", "name": "Coin Values", "source": "CRB" @@ -4024,7 +4024,7 @@ ] }, { - "type": "statblock", + "type": "data", "tag": "table", "name": "Changing Equipment", "source": "CRB" @@ -4163,13 +4163,13 @@ "{@b Flexible:} The armor is flexible enough that it doesn't hinder most actions. You don't apply its check penalty to {@skill Acrobatics} or {@skill Athletics} checks.", "{@b Noisy:} This armor is loud and likely to alert others to your presence when you're using the {@action Avoid Notice} exploration activity (page 479).", { - "type": "statblock", + "type": "data", "tag": "table", "name": "Unarmored Defense", "source": "CRB" }, { - "type": "statblock", + "type": "data", "tag": "table", "name": "Armor", "source": "CRB" @@ -4189,13 +4189,13 @@ ] }, { - "type": "statblock", + "type": "data", "tag": "table", "name": "Unarmored Defense", "source": "CRB" }, { - "type": "statblock", + "type": "data", "tag": "table", "name": "Armor", "source": "CRB" @@ -4230,7 +4230,7 @@ "{@b Splint Mail:} This type of armor is chain mail reinforced with flexible, interlocking metal plates, typically located on the wearer's torso, upper arms, and legs. A suit of this armor comes with an undercoat of padded armor (see above) and a pair of gauntlets (page 285).", "{@b Studded Leather:} This leather armor is reinforced with metal studs and sometimes small metal plates, providing most of the flexibility of leather armor with more robust protection.", { - "type": "statblock", + "type": "data", "tag": "table", "name": "Damaging Armor", "source": "CRB" @@ -4289,7 +4289,7 @@ ] }, { - "type": "statblock", + "type": "data", "tag": "table", "name": "Shields", "source": "CRB" @@ -4525,19 +4525,19 @@ ] }, { - "type": "statblock", + "type": "data", "tag": "table", "name": "Unarmed Attacks", "source": "CRB" }, { - "type": "statblock", + "type": "data", "tag": "table", "name": "Melee Weapons", "source": "CRB" }, { - "type": "statblock", + "type": "data", "tag": "table", "name": "Ranged Weapons", "source": "CRB" @@ -4620,16 +4620,19 @@ "name": "Wearing Tools", "entries": [ "You can make a set of tools (such as {@item alchemist's tools} or {@item healer's tools}) easier to use by wearing it. This allows you to draw and replace the tools as part of the action that uses them. You can wear up to 2 Bulk of tools in this manner; tools beyond this limit must be stowed or drawn with an {@action Interact} action to use." - ] + ], + "data": { + "quickref": 2 + } }, { - "type": "statblock", + "type": "data", "tag": "table", "name": "Adventuring Gear", "source": "CRB" }, { - "type": "statblock", + "type": "data", "tag": "table", "name": "Uncommon Adventuring Gear", "source": "CRB" @@ -4827,7 +4830,7 @@ "entries": [ "The items listed on Table 6\u201311 are the most widely available alchemical items from Chapter 11, which a 1st-level character could likely access. The descriptions below are incomplete; each item's full entry appears in Chapter 11 on the page listed in the table. Your GM might allow you to start with other alchemical items from Chapter 11 on a case-by-case basis.", { - "type": "statblock", + "type": "data", "tag": "table", "name": "Alchemical Gear", "source": "CRB" @@ -4877,7 +4880,7 @@ "entries": [ "The items on Table 6\u201312 are the magic items from Chapter 11 that a 1st-level character could most frequently access. The descriptions below are incomplete; the items' full entries appear in Chapter 11 on the pages listed in the table. Your GM might allow you to start with other magic items from Chapter 11 on a case-by-case basis.", { - "type": "statblock", + "type": "data", "tag": "table", "name": "Magical Gear", "source": "CRB" @@ -4930,7 +4933,7 @@ "If you have an item, you can try to reverse-engineer its formula. This uses the Craft activity and takes the same amount of time as creating the item from a formula would. You must first disassemble the item. After the base downtime, you attempt a {@skill Crafting} check against the same DC it would take to {@action Craft} the item. If you succeed, you {@action Craft} the formula at its full Price, and you can keep working to reduce the Price as normal. If you fail, you're left with raw materials and no formula. If you critically fail, you also waste 10% of the raw materials you'd normally be able to salvage.", "The item's disassembled parts are worth half its Price in raw materials and can't be reassembled unless you successfully reverse-engineer the formula or acquire the formula another way. Reassembling the item from the formula works just like {@action Craft||Crafting} it from scratch; you use the disassembled parts as the necessary raw materials.", { - "type": "statblock", + "type": "data", "tag": "table", "name": "Formulas", "source": "CRB" @@ -4955,7 +4958,7 @@ "entries": [ "The services listed on {@table Basic Services and Consumables||Table 6\u201314} describe expenditures for common services and consumables.", { - "type": "statblock", + "type": "data", "tag": "table", "name": "Basic Services and Consumables", "source": "CRB" @@ -4983,7 +4986,7 @@ "entries": [ "Spellcasting services, listed on {@table Spellcasting Services||Table 6\u201315}, are uncommon. Having a spell cast for you requires finding a spellcaster who knows and is willing to cast it. It's hard to find someone who can cast higher-level spells, and uncommon spells typically cost at least 100% more, if you can find someone who knows them at all. Spells that take a long time to cast (over 1 minute) usually cost 25% more. You must pay any cost listed in the spell in addition to the Price on the table.", { - "type": "statblock", + "type": "data", "tag": "table", "name": "Spellcasting Services", "source": "CRB" @@ -5002,7 +5005,7 @@ "entries": [ "{@table Cost of Living||Table 6\u201316} shows how much it costs to get by. This covers room and board, dues, taxes, and other fees.", { - "type": "statblock", + "type": "data", "tag": "table", "name": "Cost of Living", "source": "CRB" @@ -5017,7 +5020,7 @@ "The Prices for animals are listed both for renting and for purchasing them outright. You usually need to pay for animal rentals up front, and if the vendor believes the animal might be put in danger, they typically require a deposit equal to the purchase Price. Most animals panic in battle. When combat begins, they become {@condition frightened||frightened 4} and {@condition fleeing} as long as they're {@condition frightened}. If you successfully {@action Command your Animal} using {@skill Nature}, you can keep it from fleeing, though this doesn't remove its frightened condition. If the animal is attacked or damaged, it returns to {@condition frightened||frightened 4} and {@condition fleeing}, with the same exceptions.", "Warhorses and warponies are combat trained. They don't become {@condition frightened} or {@condition fleeing} during encounters in this way.", { - "type": "statblock", + "type": "data", "tag": "table", "name": "Animals", "source": "CRB" @@ -5029,7 +5032,7 @@ "entries": [ "You can purchase special armor for animals, called barding (shown on {@table Barding||Table 6\u201318}). All animals have a trained proficiency rank in light barding, and combat-trained animals are trained in heavy barding. Barding uses the same rules as armor except for the following. The Price and Bulk of barding depend on the animal's size. Unlike for a suit of armor, barding's Strength entry is listed as a modifier, not a score. Barding can't be etched with magic runes, though special magical barding might be available.", { - "type": "statblock", + "type": "data", "tag": "table", "name": "Barding", "source": "CRB" @@ -5055,7 +5058,7 @@ "entries": [ "As shown in {@table Bulk Conversions||Table 6\u201319}, {@trait Large} or larger creatures are less encumbered by bulky items than {@trait Small} or {@trait Medium} creatures, while {@trait Tiny} creatures become overburdened more quickly. A {@trait Large} creature treats 10 items of 1 Bulk as 1 Bulk, a {@trait Huge} creature treats 10 items of 2 Bulk as 1 Bulk, and so on. A {@trait Tiny} creature treats 10 items of negligible Bulk as 1 Bulk. Negligible items work in a similar way\u2014a {@trait Huge} creature treats items of 1 Bulk as negligible, so it can carry any number of items of 1 Bulk. A {@trait Tiny} creature doesn't treat any items as having negligible Bulk.", { - "type": "statblock", + "type": "data", "tag": "table", "name": "Bulk conversions", "source": "CRB" @@ -5069,7 +5072,7 @@ "entries": [ "Creatures of sizes other than {@trait Small} or {@trait Medium} need items appropriate to their size. These items have different Bulk and possibly a different Price. {@table Differently Sized Items||Table 6 \u201320} provides the Price and Bulk conversion for such items.", { - "type": "statblock", + "type": "data", "tag": "table", "name": "Differently Sized Items", "source": "CRB" @@ -5397,7 +5400,7 @@ "You replenish all the Focus Points in your pool during your daily preparations. You can also use the {@action Refocus} activity to pray, study, meditate, or otherwise reattune yourself to the source of your focus magic and regain a Focus Point.", "Some abilities allow you to increase the Focus Points in your pool beyond 1. Typically, these are feats that give you a new focus spell and increase the number of points in your pool by 1. Your focus pool can't have a capacity beyond 3 Focus Points, even if feats that increase your pool would cause it to exceed this number.", { - "type": "statblock", + "type": "data", "tag": "action", "name": "Refocus", "source": "CRB" @@ -5453,7 +5456,7 @@ "entries": [ "The casting of a spell can range from a simple word of magical might that creates a fleeting effect to a complex process taking minutes or hours to cast and producing a long-term impact. {@action Cast a Spell||Casting a Spell} is a special activity that takes a number of actions defined by the spell. When you {@action Cast a Spell}, your spellcasting creates obvious visual manifestations of the gathering magic, although feats such as Conceal Spell (page 210) and Melodious Spell (page 101) can help hide such manifestations or otherwise prevent observers from noticing that you are casting.", { - "type": "statblock", + "type": "data", "tag": "action", "name": "Cast a Spell", "source": "CRB" @@ -5593,7 +5596,7 @@ "entries": [ "If the spell's duration is \"sustained,\" it lasts until the end of your next turn unless you use a Sustain a Spell action on that turn to extend the duration of that spell.", { - "type": "statblock", + "type": "data", "tag": "action", "name": "Sustain a Spell", "source": "CRB" @@ -5616,7 +5619,7 @@ "entries": [ "Some spells can be dismissed, ending the duration early. This requires the caster or target to use the Dismiss action.", { - "type": "statblock", + "type": "data", "tag": "action", "name": "Dismiss", "source": "CRB" @@ -5819,7 +5822,7 @@ "At the ritual's culmination, you must attempt the skill check listed in the Primary Check entry to determine the ritual's outcome. Primary checks usually have a very hard DC for a level that's twice the ritual's spell level. As with other downtime activities, fortune and misfortune effects can't modify your checks for the ritual, nor can bonuses or penalties that aren't active throughout the process.", "The GM can adjust the DCs of rituals, add or change primary or secondary checks, or even waive requirements to fit specific circumstances. For example, performing a ritual in a location where ley lines converge on the night of a new moon might make a normally difficult ritual drastically easier.", { - "type": "statblock", + "type": "data", "tag": "table", "name": "Creature Creation Rituals", "source": "CRB" @@ -6256,7 +6259,7 @@ "These languages are uncommon outside the region of their genesis. A character hailing from one of the regions listed below automatically has access to that language. In the Inner Sea region, the language referred to as Common elsewhere in the rules is the same as Taldane\u2014a result of Taldor's legacy of control and influence over the whole region.", "Nearly every language listed here is spoken on the melting-pot streets of Absalom.", { - "type": "statblock", + "type": "data", "tag": "table", "source": "CRB", "name": "Regional Languages" @@ -6565,7 +6568,7 @@ "entries": [ "The following domains are used by the primary deities of Golarion, as listed on pages 437\u2013440.", { - "type": "statblock", + "type": "data", "tag": "table", "source": "CRB", "name": "Domains" @@ -8395,7 +8398,7 @@ "Table 9\u20131 also lists the typical reach for creatures of each size, for both tall creatures (most bipeds) and long creatures (most quadrupeds). See page 455 for more about reach.", "The Space entry lists how many feet on a side a creature's space is, so a Large creature fills a 10-foot-by-10-foot space (4 squares on the grid). Sometimes part of a creature extends beyond its space, such as if a giant octopus is grabbing you with its tentacles. In that case, the GM will usually allow attacking the extended portion, even if you can't reach the main creature. A Small or larger creature or object takes up at least 1 square on a grid, and creatures of these sizes can't usually share spaces except in situations like a character riding a mount. Rules for moving through other creatures' spaces appear below.", { - "type": "statblock", + "type": "data", "tag": "table", "source": "CRB", "name": "Size and Reach" @@ -8705,7 +8708,7 @@ "entries": [ "Depending on how the GM tracks movement, you move in feet or miles based on your character's Speed with the relevant movement type. Typical rates are on the table below.", { - "type": "statblock", + "type": "data", "tag": "table", "source": "CRB", "name": "Travel Speed" @@ -9174,13 +9177,13 @@ ] }, { - "type": "statblock", + "type": "data", "tag": "table", "source": "CRB", "name": "Encounter Budget" }, { - "type": "statblock", + "type": "data", "tag": "table", "source": "CRB", "name": "Creature XP and Role" @@ -9687,7 +9690,7 @@ "Watches and Rest on the next page indicates how long the group needs to set aside for rest, assuming everyone gets a rotating watch assignment of equal length.", "If a surprise encounter would occur during rest, you can roll a die to randomly determine which character is on watch at the time. All characters roll initiative; sleeping characters typically roll Perception with a \u20134 status penalty for being unconscious. They don't automatically wake up when rolling initiative, but they might roll a Perception check to wake up at the start of their turn due to noise. If a savvy enemy waits for a particularly vulnerable character to take watch before attacking, the attack can happen on that character's watch automatically. However, you might have the ambusher attempt a {@skill Stealth} check against the Perception DCs of all characters to see if anyone noticed its approach.", { - "type": "statblock", + "type": "data", "tag": "table", "source": "CRB", "name": "Watches and Rest" @@ -9894,7 +9897,7 @@ "Simple DCs work well when you need a DC on the fly and there's no level associated with the task. They're most useful for skill checks. Because there isn't much gradation between the simple DCs, they don't work as well for hazards or combatants, where the PCs' lives are on the line; you're better off using level-based DCs for such challenges.", { "name": "Simple DCs", - "type": "statblock", + "type": "data", "tag": "table", "source": "CRB", "page": 503 @@ -9913,7 +9916,7 @@ "Use these DCs when a PC needs to Identify a Spell or {@action Recall Knowledge} about a creature, attempts to Earn Income by performing a task of a certain level, and so on. You can also use the level-based DCs for obstacles instead of assigning a simple DC. For example, you might determine that a wall in a high-level dungeon was constructed of smooth metal and is hard to climb. You could simply say only someone with master proficiency could climb it, and use the simple DC of 30. Or you might decide that the 15th-level villain who created the dungeon crafted the wall, and use the 15th-level DC of 34. Either approach is reasonable!", "Note that PCs who invest in a skill become more likely to succeed at a DC of their level as they increase in level, and the listed DCs eventually become very easy for them.", { - "type": "statblock", + "type": "data", "tag": "table", "name": "DCs by Level", "source": "CRB" @@ -9932,7 +9935,7 @@ "Adjustments happen most often with tasks whose DCs are based on their level. Adjustments use a scale of \u201310 to +10, from incredibly easy checks to incredibly hard ones, and are broken into increments of 2, 5, and 10.", "You'll often apply the adjustments for uncommon, rare, or unique subjects.", { - "type": "statblock", + "type": "data", "tag": "table", "name": "DC Adjustments", "source": "CRB" @@ -10035,7 +10038,7 @@ "A character who successfully identifies a creature learns one of its best-known attributes\u2014such as a troll's regeneration (and the fact that it can be stopped by acid or fire) or a manticore's tail spikes. On a critical success, the character also learns something subtler, like a demon's weakness or the trigger for one of the creature's reactions.", "The skill used to identify a creature usually depends on that creature's trait, as shown on Table 10\u20137, but you have leeway on which skills apply. For instance, hags are humanoids but have a strong connection to occult spells and live outside society, so you might allow a character to use {@skill Occultism} to identify them without any DC adjustment, while Society is harder. Lore skills can also be used to identify their specific creature. Using the applicable Lore usually has an easy or very easy DC (before adjusting for rarity).", { - "type": "statblock", + "type": "data", "tag": "table", "name": "Creature Identification Skills", "source": "CRB" @@ -10156,7 +10159,7 @@ ] }, { - "type": "statblock", + "type": "data", "tag": "table", "name": "XP Awards", "source": "CRB" @@ -10267,7 +10270,7 @@ ] }, { - "type": "statblock", + "type": "data", "tag": "table", "name": "Party Treasure by Level", "source": "CRB" @@ -10337,7 +10340,7 @@ ] }, { - "type": "statblock", + "type": "data", "tag": "table", "name": "Character Wealth", "source": "CRB" @@ -10374,7 +10377,7 @@ "Each of the environments presented in this section uses the terrain rules (which are summarized on page 514 and appear in full beginning on page 475) in different ways, so be sure to familiarize yourself with those rules before reading this section. Some environments refer to the rules for climate (page 517) and natural disasters (beginning on page 517). Many places have the traits of multiple environments; a snow-covered mountain might use both the arctic and mountain environments, for example. For environmental features with effects based on how tall or deep they are, those effects vary further based on a creature's size. For instance, a shallow bog for a Medium creature might be a deep bog for smaller creatures, and a deep bog for a Medium creature could be only a shallow bog for a larger creature (and so insignificant for a truly massive creature that it isn't even {@quickref difficult terrain||3|terrain}).", "Table 10\u201312 lists the features of various environments alphabetically for quick reference. The Proficiency DC Band entry indicates a range of appropriate simple DCs for that environmental feature, while also providing a rough estimate of the danger or complexity of the feature.", { - "type": "statblock", + "type": "data", "tag": "table", "name": "Enviromental Features", "source": "CRB" @@ -10387,7 +10390,7 @@ "Some environmental features or natural disasters deal damage. Because the amount of damage can vary based on the specific circumstances, the rules for specific environments and natural disasters use damage categories to describe the damage, rather than exact numbers.", "Use Table 10\u201311 below to determine damage from an environment or natural disaster. When deciding the exact damage amount, use your best judgment based on how extreme you deem the danger to be.", { - "type": "statblock", + "type": "data", "tag": "table", "name": "Enviromental Damage", "source": "CRB" @@ -10947,7 +10950,7 @@ "Particularly hot and cold weather can make creatures fatigued more quickly during overland travel and can cause damage if harsh enough, as shown in Table 10\u201313 on page 518.", "Appropriate cold-weather gear (such as the winter clothing) can negate the damage from severe cold or reduce the damage from extreme cold to that of particularly severe cold.", { - "type": "statblock", + "type": "data", "tag": "table", "name": "Temperature Effects", "source": "CRB" @@ -11055,7 +11058,7 @@ "entries": [ "Though more gradual floods can damage structures and drown creatures, flash floods are similar to avalanches, except with a liquid mass instead of a solid one. Instead of burying creatures, a flash flood carries creatures and even massive objects away, buffeting the creatures and potentially drowning them. The drowning rules appear on page 478.", { - "type": "statblock", + "type": "data", "tag": "table", "name": "Temperature Effects", "source": "CRB" @@ -11292,7 +11295,7 @@ "entries": [ "Characters gain Experience Points for overcoming a hazard, whether they disable it, avoid it, or simply endure its attacks. If they trigger the same hazard later on, they don't gain XP for the hazard again. The XP values for hazards of different levels also appear on page 508, but are repeated here for convenience. The XP for a complex hazard is equal to the XP for a monster of the same level, and the XP for a simple hazard is one-fifth of that. Hazards of a lower level than the party's level \u20134 are trivial and award no XP.", { - "type": "statblock", + "type": "data", "tag": "table", "name": "Hazard XP", "source": "CRB" @@ -11513,7 +11516,7 @@ "You can benefit from no more than 10 invested magic items each day. Because this limit is fairly high, and because it matters only for worn items, you probably won't need to worry about reaching the limit until higher levels, when you've acquired many useful magic items to wear.", "You can still gain the mundane benefits of an item if you don't invest it. A suit of {@i +1 resilient armor} still gives you its item bonus to AC when not invested, but it doesn't give its magical bonus to saving throws, and {@item winged boots} still protect your feet even though you can't activate them to fly. Entirely non-magical items don't need to be invested.", { - "type": "statblock", + "type": "data", "tag": "action", "name": "Invest an Item", "source": "CRB" @@ -11531,7 +11534,7 @@ "Some items produce their effects only when used properly in the moment. Others always offer the same benefits as their mundane counterparts when worn, but have magical abilities you can gain by further spending actions. Either case requires you to use the Activate an Item activity. {@action Activate an Item||Activating an Item} works much like {@action Cast a Spell||Casting a Spell}, in that the activity takes a variable number of actions and can have different components depending on how you Activate the Item. This information appears in the item's Activate entry.", "If an item is used up when activated, as is the case for consumable items, its Activate entry appears toward the top of the stat block. For permanent items with activated abilities, the Activate entry is a paragraph in the description. Activations are not necessarily magical\u2014for instance, drinking an alchemical elixir isn't usually a magical effect.", { - "type": "statblock", + "type": "data", "tag": "action", "name": "Activate an Item", "source": "CRB" @@ -11635,7 +11638,7 @@ "entries": [ "Some items, once activated, have effects that can be sustained if you concentrate on them. This works much like the Sustain a Spell action (found on page 304). If an item's description states that you can sustain the effect, that effect lasts until the end of your turn in the round after you Activated the Item. You can use a Sustain an Activation action on that turn to extend the duration.", { - "type": "statblock", + "type": "data", "tag": "action", "name": "Sustain an Activation", "source": "CRB" @@ -11649,7 +11652,7 @@ "entries": [ "Some item effects can be dismissed, ending the duration early due to you or the target taking action. Dismissing an activation requires using the Dismiss action.", { - "type": "statblock", + "type": "data", "tag": "action", "name": "Dismiss", "source": "CRB" @@ -12053,7 +12056,7 @@ ] }, { - "type": "statblock", + "type": "data", "tag": "table", "name": "Scroll Statistics", "source": "CRB" @@ -12168,7 +12171,7 @@ "entries": [ "Each talisman's stat block indicates the type of item it can be affixed to. Affixing or removing requires using the {@action Affix a Talisman||Affixing the Talisman} activity. A single talisman can be affixed to only one item at a time, and an item can have only one talisman affixed to it at a time.", { - "type": "statblock", + "type": "data", "tag": "action", "name": "Affix a Talisman", "source": "CRB" @@ -12223,7 +12226,7 @@ ] }, { - "type": "statblock", + "type": "data", "tag": "table", "name": "Material Hardness, Hit Points, and Broken Threshold", "source": "CRB" @@ -12308,7 +12311,7 @@ "Four fundamental runes produce the most essential magic of protection and destruction: {@item armor potency (generic)||armor potency} and {@item resilient (generic)||resilient} runes for armor, and {@item weapon potency (generic)||weapon potency} and {@item striking (generic)||striking} runes for weapons. A potency rune is what makes a weapon a magic weapon (page 599) or armor magic armor (page 556).", "An item can have only one fundamental rune of each type, though etching a stronger rune can upgrade an existing rune to the more powerful version (as described in each rune's entry). As you level up, you typically alternate between increasing an item's potency rune and its {@item striking (generic)||striking} or {@item resilient (generic)||resilient} rune when you can afford to.", { - "type": "statblock", + "type": "data", "tag": "table", "name": "Fundamental Runes", "source": "CRB" @@ -12340,13 +12343,13 @@ "entries": [ "You'll often want to upgrade the fundamental runes of magic armor or a magic weapon you already have. This requires upgrading each rune separately. Tables 11\u20135 and 11\u20136 summarize the Price of each step, with a number in parentheses indicating the item's level for the Craft activity. This also indicates the typical progression for an adventurer to follow when upgrading their armor and weapons. The tables here don't include progressions that aren't as likely to come up, like turning a +1 weapon directly into a +1 greater striking weapon.", { - "type": "statblock", + "type": "data", "tag": "table", "name": "Armor Upgrade Prices", "source": "CRB" }, { - "type": "statblock", + "type": "data", "tag": "table", "name": "Weapon Upgrade Price", "source": "CRB" diff --git a/data/changelog.json b/data/changelog.json index cb9ef49958..5af1455b26 100644 --- a/data/changelog.json +++ b/data/changelog.json @@ -103,7 +103,12 @@ { "ver": "0.5.2", "date": "2022-06-12", - "txt": "- Updated the production and release scripts with the mothersite, including Docker containers\n - Hopefully fixed serviceworker on production" + "txt": "- Updated the production and release scripts with the mothersite, including Docker containers\n - Hopefully fixes serviceworker on production" + }, + { + "ver": "0.5.3", + "date": "2022-06-13", + "txt": "- Added a \"Main Item\" footnote to specific variants, allowing you to go back to the generic variant straight from the specific item\n- Added \"exists\" boolean to variants, in an event where the item that you are referencing in a generic variant already exists (ex. Clothing => Explorer's Clothing)\n- Merged \"statblock\" into \"data\" entries\n- (Typos/Tags)" } ] } diff --git a/data/class/class-alchemist.json b/data/class/class-alchemist.json index b0e83c1168..3172a612b8 100644 --- a/data/class/class-alchemist.json +++ b/data/class/class-alchemist.json @@ -435,7 +435,7 @@ "entries": [ "If you need a specific alchemical item on the fly, you can use your infused reagents to quickly create it with the {@action Quick Alchemy} action.", { - "type": "statblock", + "type": "data", "tag": "action", "name": "Quick Alchemy", "source": "CRB" @@ -1053,7 +1053,7 @@ "entries": [ "You focus on bizarre mutagenic transformations that sacrifice one aspect of a creature's physical or psychological being in order to strengthen another. You start with the formulas for two {@filter 1st-level mutagens|items||item=mutagen|level=[1;1]|type=null} in your formula book, in addition to your other formulas.", { - "type": "statblock", + "type": "data", "tag": "action", "name": "Mutagenic Flashback", "source": "CRB" diff --git a/data/class/class-barbarian.json b/data/class/class-barbarian.json index 2da7540789..5dfed49ad2 100644 --- a/data/class/class-barbarian.json +++ b/data/class/class-barbarian.json @@ -317,7 +317,7 @@ "entries": [ "You gain the {@action Rage} action, which lets you fly into a frenzy.", { - "type": "statblock", + "type": "data", "tag": "action", "name": "Rage", "source": "CRB" @@ -479,7 +479,7 @@ "entries": [ "Your rage intensifies and lets you burst into action. Your proficiency rank for your barbarian class DC increases to expert. You gain the {@action Mighty Rage} free action.", { - "type": "statblock", + "type": "data", "tag": "action", "name": "Mighty Rage", "source": "CRB" diff --git a/data/class/class-champion.json b/data/class/class-champion.json index fd6d939738..c50d544530 100644 --- a/data/class/class-champion.json +++ b/data/class/class-champion.json @@ -816,7 +816,7 @@ "level": 1, "entries": [ { - "type": "statblock", + "type": "data", "tag": "action", "name": "Retributive Strike", "source": "CRB" @@ -834,7 +834,7 @@ "level": 1, "entries": [ { - "type": "statblock", + "type": "data", "tag": "action", "name": "Glimpse of Redemption", "source": "CRB" @@ -852,7 +852,7 @@ "level": 1, "entries": [ { - "type": "statblock", + "type": "data", "tag": "action", "name": "Liberating Step", "source": "CRB" @@ -1055,7 +1055,7 @@ "level": 1, "entries": [ { - "type": "statblock", + "type": "data", "tag": "action", "name": "Iron Command", "source": "APG" @@ -1152,7 +1152,7 @@ "level": 1, "entries": [ { - "type": "statblock", + "type": "data", "tag": "action", "name": "Selfish Shield", "source": "APG" @@ -1250,7 +1250,7 @@ "level": 1, "entries": [ { - "type": "statblock", + "type": "data", "tag": "action", "name": "Destructive Vengeance", "source": "APG" diff --git a/data/class/class-fighter.json b/data/class/class-fighter.json index 8bcd161683..d9c2d8f9c1 100644 --- a/data/class/class-fighter.json +++ b/data/class/class-fighter.json @@ -237,7 +237,7 @@ "entries": [ "Ever watchful for weaknesses, you can quickly attack foes that leave an opening in their defenses. You gain the Attack of Opportunity reaction.", { - "type": "statblock", + "type": "data", "tag": "action", "name": "Attack of Opportunity", "source": "CRB" diff --git a/data/class/class-inventor.json b/data/class/class-inventor.json index 2a9e77c484..f7197ff3be 100644 --- a/data/class/class-inventor.json +++ b/data/class/class-inventor.json @@ -364,7 +364,7 @@ "entries": [ "You have a bevy of smaller devices of your own invention, from muscle stimulants to concussive pistons. When it's necessary, you can throw them into overdrive to assist you in combat.", { - "type": "statblock", + "type": "data", "tag": "action", "name": "Overdrive", "source": "G&G" @@ -396,7 +396,7 @@ "Your innovation is a creation barely held together by your own engineering, always on the edge of completely falling apart. Though this adds risk, it also means you can coax it to perform far beyond its design specifications using special {@trait unstable} actions.", "While inventors can learn various unstable actions over their career, all at least know how to make their innovation {@action Explode|G&G}.", { - "type": "statblock", + "type": "data", "tag": "action", "name": "Explode", "source": "G&G" diff --git a/data/class/class-investigator.json b/data/class/class-investigator.json index 1927fafbac..04da257d4c 100644 --- a/data/class/class-investigator.json +++ b/data/class/class-investigator.json @@ -323,13 +323,13 @@ "entries": [ "As an investigator, you think of your adventures as cases waiting to be solved. You gain one activity and one reaction you can use to investigate cases: {@action Pursue a Lead|APG} and {@action Clue In|APG}.", { - "type": "statblock", + "type": "data", "tag": "action", "name": "Pursue a Lead", "source": "APG" }, { - "type": "statblock", + "type": "data", "tag": "action", "name": "Clue In", "source": "APG" @@ -346,7 +346,7 @@ "entries": [ "You can play out a battle in your head, using brains rather than brawn to execute an attack.", { - "type": "statblock", + "type": "data", "tag": "action", "name": "Devise a Stratagem", "source": "APG" @@ -638,7 +638,7 @@ "You're trained in {@skill Crafting} and gain the {@feat Alchemical Crafting} skill feat. In addition, you gain a standard {@item formula book} for free and learn the formulas for two additional {@filter common 1st-level alchemical items|items||general=alchemical|level=[1;1]|rarity=common|category=elixir; tool}, which must be elixirs or tools. Each time you gain a level, you learn the formula for one common alchemical elixir or alchemical tool of any level of item you can create.", "During your daily preparations, you can create a number of versatile vials\u2014alchemical concoctions that can quickly be turned into elixirs and tools\u2014equal to your Intelligence modifier. You can use the {@action Quick Tincture|APG} action to turn one of these vials into an elixir or alchemical tool for which you know the formula.", { - "type": "statblock", + "type": "data", "tag": "action", "name": "Quick Tincture", "source": "APG" @@ -664,7 +664,7 @@ "Everything comes down to data. Calculating statistics, running numbers, and using inductive reasoning allows you to determine the most likely outcome of any scenario, and anything out of place draws your keen attention.", "You are trained in one Intelligence-based skill of your choice. You gain the {@feat That's Odd|APG} investigator feat, and you gain the {@action Expeditious Inspection|APG} free action.", { - "type": "statblock", + "type": "data", "tag": "action", "name": "Expeditious Inspection", "source": "APG" @@ -710,7 +710,7 @@ "People can't help but trust you, whether through your inherent likableness or your firm insistence on sticking to the truth. You have a way about you that gets others talking, and you've developed interrogative techniques to help you get to the truth of your investigations.", "You are trained in {@skill Diplomacy}. You gain the {@feat No Cause for Alarm} skill feat. You can also {@action Pursue a Lead|APG} over the course of a conversation rather than spending dedicated time looking into the lead, provided the conversation lasts 1 minute or longer. For example, while trying to {@action Make an Impression}, you could pursue the creature you're conversing with as a lead, and you could {@action Pursue a Lead|APG} about an object while someone is telling you information about that object. You also gain the {@action Pointed Question} action.", { - "type": "statblock", + "type": "data", "tag": "action", "name": "Pointed Question", "source": "APG" diff --git a/data/class/class-magus.json b/data/class/class-magus.json index a69f237890..d13804d1aa 100644 --- a/data/class/class-magus.json +++ b/data/class/class-magus.json @@ -738,7 +738,7 @@ "entries": [ "You've learned the fundamental magus technique that lets you combine magical and physical attacks together. You gain the {@action Spellstrike|SoM} activity.", { - "type": "statblock", + "type": "data", "tag": "action", "name": "Spellstrike", "source": "SoM" @@ -769,7 +769,7 @@ "entries": [ "After you wield magic, you can enter a special stance to make your attacks more effective.", { - "type": "statblock", + "type": "data", "tag": "action", "name": "Arcane Cascade", "source": "SoM" diff --git a/data/class/class-monk.json b/data/class/class-monk.json index 073a0d9a0f..ed8850da30 100644 --- a/data/class/class-monk.json +++ b/data/class/class-monk.json @@ -229,7 +229,7 @@ "entries": [ "You can attack rapidly with fists, feet, elbows, knees, and other unarmed attacks. You gain the Flurry of Blows action.", { - "type": "statblock", + "type": "data", "tag": "action", "name": "Flurry of Blows", "source": "CRB" diff --git a/data/class/class-ranger.json b/data/class/class-ranger.json index ce837f3ff1..3c9196e0d0 100644 --- a/data/class/class-ranger.json +++ b/data/class/class-ranger.json @@ -283,7 +283,7 @@ "entries": [ "When you focus your attention on a single foe, you become unstoppable in your pursuit. You gain the {@action Hunt Prey} action.", { - "type": "statblock", + "type": "data", "tag": "action", "name": "Hunt Prey", "source": "CRB" diff --git a/data/class/class-rogue.json b/data/class/class-rogue.json index f586dde12c..2be0ae0672 100644 --- a/data/class/class-rogue.json +++ b/data/class/class-rogue.json @@ -485,7 +485,7 @@ "entries": [ "When taking advantage of an opening, you both hinder and harm your foe. You gain the {@action Debilitating Strike} free action.", { - "type": "statblock", + "type": "data", "tag": "action", "name": "Debilitating Strike", "source": "CRB" @@ -612,7 +612,7 @@ "entries": [ "You can incapacitate an unwary foe with a single strike. Your proficiency rank for your rogue class DC increases to master. You gain the {@action Master Strike} free action.", { - "type": "statblock", + "type": "data", "tag": "action", "name": "Master Strike", "source": "CRB" diff --git a/data/class/class-summoner.json b/data/class/class-summoner.json index b931fc8cbe..899eee4808 100644 --- a/data/class/class-summoner.json +++ b/data/class/class-summoner.json @@ -405,7 +405,7 @@ "Your magical connection with your eidolon takes the form of a sigil on each of your bodies. As long as your eidolon is manifested, the sigil glows with light and can't be covered or disguised via any means; it will shine through clothing, appear over cloaks, and remain unaffected by obfuscating magic. This, combined with the way that the two of you clearly act in tandem, makes it readily apparent to an intelligent observer that the two of you are connected in some way, even if the person has never encountered a summoner before.", "You bring your eidolon into reality with the {@action Manifest Eidolon|SoM} action.", { - "type": "statblock", + "type": "data", "tag": "action", "name": "Manifest Eidolon", "source": "SoM" @@ -413,14 +413,14 @@ "Your eidolon is no mere minion. It doesn't have the {@trait minion} or {@trait summoned} trait, and the two of you work together and coordinate your actions. You and your eidolon share your actions and multiple attack penalty. Each round, you can use any of your actions (including reactions and free actions) for yourself or your eidolon.", "You coordinate your actions with your eidolon more efficiently when you {@action Act Together|SoM}.", { - "type": "statblock", + "type": "data", "tag": "action", "name": "Act Together", "source": "SoM" }, "Your connection with your eidolon allows you to communicate with it telepathically at all times, even when it isn't manifested. You also gain the {@action Share Senses} action.", { - "type": "statblock", + "type": "data", "tag": "action", "name": "Share Senses", "source": "SoM" @@ -1136,7 +1136,7 @@ "entries": [ "Your eidolon is a celestial messenger, a member of the angelic host with a unique link to you, allowing them to carry a special message to the mortal world at your side. Most angel eidolons are roughly humanoid in form, with feathered wings, glowing eyes, halos, or similar angelic features. However, some take the form of smaller angelic servitors like the winged helmet cassisian angel instead. The two of you are destined for an important role in the plans of the celestial realms. Though a true angel, your angel eidolon's link to you as a mortal prevents them from casting the {@ritual angelic messenger|bst} ritual, even if they somehow learn it.", { - "type": "statblock", + "type": "data", "tag": "eidolon", "name": "Angel Eidolon", "source": "SoM" @@ -1161,7 +1161,7 @@ "entries": [ "Your eidolon is a lost soul, bound to the mortal world by undying anger or a bitter grudge. Most phantom eidolons are humanoids with a spectral or ectoplasmic appearance, though some take far stranger forms. Your link with your eidolon prevents it from succumbing to corruption and undeath. Together, you will need to decide whether to work with your eidolon to control its anger, or channel its wrath into power.", { - "type": "statblock", + "type": "data", "tag": "eidolon", "name": "Anger Phantom Eidolon", "source": "SoM" @@ -1186,7 +1186,7 @@ "entries": [ "Your eidolon is a manifestation of the life force of nature in the form of a powerful magical beast that often has animal features, possibly even several from different species. You might have learned the way to connect with the world's life force via a specific philosophy or practice, such as the beliefs of the god callers of Sarkoris, or formed a bond on your own. Regardless, your link to your eidolon allows you both to grow in power and influence to keep your home safe from those who would despoil it.", { - "type": "statblock", + "type": "data", "tag": "eidolon", "name": "Beast Eidolon", "source": "SoM" @@ -1211,7 +1211,7 @@ "entries": [ "Your eidolon is a mental construct based on an astral thoughtform and given physical presence and life by its connection to you, its shape limited only by your imagination. Your eidolon's appearance and physical form vary based on your shared vision for its construction, from clockworks to stuffed dolls and everything between, and it's not uncommon for that appearance to change greatly as your construct gains evolutions. Because it arises from an astral entity, your construct is no mindless servitor, but a fully thinking being with its own ideas, goals, and even emotions. These entities are extremely diverse; while many construct eidolons come from a powerful symbiotic connection with astral denizens, just as many arise from the forgotten memories of ancient empires and craftworks drifting across the Silver Sea of the Astral Plane.", { - "type": "statblock", + "type": "data", "tag": "eidolon", "name": "Construct Eidolon", "source": "SoM" @@ -1243,7 +1243,7 @@ }, "Your eidolon is a demon, born of mortal sin congealed amid the chaos and evil of the Abyss, using its link to you to spread chaos at your side. Choose an associated sin for your demon. Demon eidolons have appearances as varied as the infinite Abyss. While demons are inherently untrustworthy, your demon eidolon has reached an accord with you and generally keeps it, though that doesn't mean your eidolon isn't actively working to bring your life deeper into its associated sin. Though a true demon, your demon eidolon's link to you as a mortal prevents them from casting the {@ritual abyssal pact|Bst} ritual, even if they somehow learn it.", { - "type": "statblock", + "type": "data", "tag": "eidolon", "name": "Demon Eidolon", "source": "SoM" @@ -1268,7 +1268,7 @@ "entries": [ "Your eidolon is a demon, born of mortal sin congealed amid the chaos and evil of the Abyss, using its link to you to spread chaos at your side. Choose an associated sin for your demon. Demon eidolons have appearances as varied as the infinite Abyss. While demons are inherently untrustworthy, your demon eidolon has reached an accord with you and generally keeps it, though that doesn't mean your eidolon isn't actively working to bring your life deeper into its associated sin. Though a true demon, your demon eidolon's link to you as a mortal prevents them from casting the {@ritual abyssal pact|Bst} ritual, even if they somehow learn it.", { - "type": "statblock", + "type": "data", "tag": "eidolon", "name": "Devotion Phantom Eidolon", "source": "SoM" @@ -1293,7 +1293,7 @@ "entries": [ "Because dragons have a strong connection to magic, their minds can often leave an echo floating in the Astral Plane. Such an entity is extremely powerful but unable to interact with the outside world on its own. Dragon eidolons manifest in the powerful, scaled forms they had in life; most take the form of true dragons (albeit smaller), but some manifest as drakes or other draconic beings. You have forged a connection with such a dragon eidolon and together, you seek to grow as powerful as an ancient wyrm.", { - "type": "statblock", + "type": "data", "tag": "eidolon", "name": "Dragon Eidolon", "source": "SoM" @@ -1318,7 +1318,7 @@ "entries": [ "Your eidolon is a fey, a capricious being of the mysterious First World. Many fey appear similar to mortal humanoids with unusual features such as pointed ears, wings, or bodies composed of natural elements, but the full variety of fey is endless, and many others appear completely inhuman. Fey from the First World never truly die, instead forming a new creature. Fey eidolons usually come about when a summoner helps stabilize a difficult reformation. This means your fey eidolon likely lived a different life just before meeting you and might remember fragments of its old memories. Together, you might have to unravel a memory from your eidolon's past life among the fey.", { - "type": "statblock", + "type": "data", "tag": "eidolon", "name": "Fey Eidolon", "source": "SoM" @@ -1343,7 +1343,7 @@ "entries": [ "Your eidolon is an intelligent plant, formed from the same disembodied fragments of nature's life energy that become leshys. Plant eidolons tend to be curious and adaptable, with temperaments based on the parts of mortal culture they feel affinity toward. Despite coming from the same source, plant eidolons don't always look like leshys. Plant eidolons have forms that vary greatly and can look like almost any kind of plant creature in existence. Some even resemble plant creatures so strange they are impossible to identify.", { - "type": "statblock", + "type": "data", "tag": "eidolon", "name": "Plant Eidolon", "source": "SoM" @@ -1368,7 +1368,7 @@ "entries": [ "Your eidolon is a psychopomp, a creature whose sworn duty is to usher souls safely to the afterlife and maintain the courts of the dead. Psychopomp eidolons have a variety of appearances, but since they often traffic with mortals, their form typically includes an elaborate mask. You and your psychopomp eidolon share an important fate together, whether it relates directly to your own soul or to a mission that will somehow protect the souls of others.", { - "type": "statblock", + "type": "data", "tag": "eidolon", "name": "Psychopomp Eidolon", "source": "SoM" diff --git a/data/class/class-swashbuckler.json b/data/class/class-swashbuckler.json index 2b9922d370..84f0800c4e 100644 --- a/data/class/class-swashbuckler.json +++ b/data/class/class-swashbuckler.json @@ -354,7 +354,7 @@ "entries": [ "You gain an elegant finishing attack you can make when you have panache. The {@trait finisher} trait is described on page 87. You gain the {@action Confident Finisher|APG} action.", { - "type": "statblock", + "type": "data", "tag": "action", "name": "Confident Finisher", "source": "APG" @@ -415,7 +415,7 @@ "entries": [ "You turn the tables on foes who fumble, capitalizing immediately on their mistake. You gain the {@action Opportune Riposte|APG} reaction.", { - "type": "statblock", + "type": "data", "tag": "action", "name": "Opportune Riposte", "source": "APG" diff --git a/data/class/class-wizard.json b/data/class/class-wizard.json index 3c1e34a4ee..95ac8f66f4 100644 --- a/data/class/class-wizard.json +++ b/data/class/class-wizard.json @@ -807,7 +807,7 @@ "You place some of your magical power in a bonded item.", "Each day when you prepare your spells, you can designate a single item you own as your bonded item. This is typically an item associated with spellcasting, such as a wand, ring, or staff, but you are free to designate a weapon or other item. You gain the {@action Drain Bonded Item} free action.", { - "type": "statblock", + "type": "data", "tag": "action", "name": "Drain Bonded Item", "source": "CRB" diff --git a/data/generated/bookref-gmscreen-index.json b/data/generated/bookref-gmscreen-index.json index 276cccb47d..50f3ff39df 100644 --- a/data/generated/bookref-gmscreen-index.json +++ b/data/generated/bookref-gmscreen-index.json @@ -1 +1 @@ -{"_meta":{"name":{"1":"Quick Reference","2":"GM Reference"},"id":{"1":"bookref-quick","2":"bookref-gmscreen"},"section":{"1":"Character Creation","2":"Items & Equipment","3":"Spells","4":"Playing the Game","5":"Game Mastering"}},"data":[{"id":1,"b":1,"s":1,"p":0,"h":"Animal Companions"},{"id":2,"b":1,"s":1,"p":0,"h":"Archetypes"},{"id":3,"b":1,"s":1,"p":0,"h":"Character Creation"},{"id":4,"b":1,"s":1,"p":0,"h":"Characters With Disabilities"},{"id":5,"b":1,"s":1,"p":0,"h":"Familiars"},{"id":6,"b":1,"s":1,"p":0,"h":"Leveling Up"},{"id":7,"b":1,"s":2,"p":1,"h":"Activating Items"},{"id":8,"b":1,"s":2,"p":1,"h":"Animals"},{"id":9,"b":1,"s":2,"p":1,"h":"Armor"},{"id":10,"b":1,"s":2,"p":1,"h":"Carrying and Using Items"},{"id":11,"b":1,"s":2,"p":1,"h":"Coins and Currency"},{"id":12,"b":1,"s":2,"p":1,"h":"Constant Abilities"},{"id":13,"b":1,"s":2,"p":1,"h":"Formulas"},{"id":14,"b":1,"s":2,"p":1,"h":"Investing Magic Items"},{"id":15,"b":1,"s":2,"p":1,"h":"Item Damage"},{"id":16,"b":1,"s":2,"p":1,"h":"Item Level"},{"id":17,"b":1,"s":2,"p":1,"h":"Items and Sizes"},{"id":18,"b":1,"s":2,"p":1,"h":"Price"},{"id":19,"b":1,"s":2,"p":1,"h":"Runes"},{"id":20,"b":1,"s":2,"p":1,"h":"Scrolls"},{"id":21,"b":1,"s":2,"p":1,"h":"Services"},{"id":22,"b":1,"s":2,"p":1,"h":"Shields"},{"id":23,"b":1,"s":2,"p":1,"h":"Shoddy Items"},{"id":24,"b":1,"s":2,"p":1,"h":"Staves"},{"id":25,"b":1,"s":2,"p":1,"h":"Wands"},{"id":26,"b":1,"s":2,"p":1,"h":"Weapons"},{"id":27,"b":1,"s":3,"p":2,"h":"Cantrips"},{"id":28,"b":1,"s":3,"p":2,"h":"Casting Spells"},{"id":29,"b":1,"s":3,"p":2,"h":"Disbelieving Illusions"},{"id":30,"b":1,"s":3,"p":2,"h":"Durations"},{"id":31,"b":1,"s":3,"p":2,"h":"Focus Spells"},{"id":32,"b":1,"s":3,"p":2,"h":"Hostile Actions"},{"id":33,"b":1,"s":3,"p":2,"h":"Identifying Spells"},{"id":34,"b":1,"s":3,"p":2,"h":"Innate Spells"},{"id":35,"b":1,"s":3,"p":2,"h":"Ranges, Areas, and Targets"},{"id":36,"b":1,"s":3,"p":2,"h":"Reading Spells"},{"id":37,"b":1,"s":3,"p":2,"h":"Rituals"},{"id":38,"b":1,"s":3,"p":2,"h":"Saving Throws"},{"id":39,"b":1,"s":3,"p":2,"h":"Setting Triggers"},{"id":40,"b":1,"s":3,"p":2,"h":"Spell Attacks"},{"id":41,"b":1,"s":3,"p":2,"h":"Spell Slots"},{"id":42,"b":1,"s":3,"p":2,"h":"Walls"},{"id":43,"b":1,"s":4,"p":3,"h":"Actions"},{"id":44,"b":1,"s":4,"p":3,"h":"Afflictions"},{"id":45,"b":1,"s":4,"p":3,"h":"Checks"},{"id":46,"b":1,"s":4,"p":3,"h":"Concealment and Invisibility"},{"id":47,"b":1,"s":4,"p":3,"h":"Condition Values"},{"id":48,"b":1,"s":4,"p":3,"h":"Conditions"},{"id":49,"b":1,"s":4,"p":3,"h":"Counteracting"},{"id":50,"b":1,"s":4,"p":3,"h":"Cover"},{"id":51,"b":1,"s":4,"p":3,"h":"Damage"},{"id":52,"b":1,"s":4,"p":3,"h":"Downtime Mode"},{"id":53,"b":1,"s":4,"p":3,"h":"Effects"},{"id":54,"b":1,"s":4,"p":3,"h":"Encounter Mode"},{"id":55,"b":1,"s":4,"p":3,"h":"Exploration Mode"},{"id":56,"b":1,"s":4,"p":3,"h":"Flanking"},{"id":57,"b":1,"s":4,"p":3,"h":"Game Conventions"},{"id":58,"b":1,"s":4,"p":3,"h":"Hero Points"},{"id":59,"b":1,"s":4,"p":3,"h":"Hit Points, Healing, and Dying"},{"id":60,"b":1,"s":4,"p":3,"h":"Making Choices"},{"id":61,"b":1,"s":4,"p":3,"h":"Movement"},{"id":62,"b":1,"s":4,"p":3,"h":"Overriding Conditions"},{"id":63,"b":1,"s":4,"p":3,"h":"Perception"},{"id":64,"b":1,"s":4,"p":3,"h":"Special Checks"},{"id":65,"b":1,"s":4,"p":3,"h":"Specific Checks"},{"id":66,"b":1,"s":5,"p":4,"h":"Difficulty Classes"},{"id":67,"b":1,"s":5,"p":4,"h":"Drugs"},{"id":68,"b":1,"s":5,"p":4,"h":"Environment"},{"id":69,"b":1,"s":5,"p":4,"h":"Hazards"},{"id":70,"b":1,"s":5,"p":4,"h":"Planning a Campaign"},{"id":71,"b":1,"s":5,"p":4,"h":"Preparing an Adventure"},{"id":72,"b":1,"s":5,"p":4,"h":"Rewards"},{"id":73,"b":1,"s":5,"p":4,"h":"Running Modes of Play"},{"id":74,"b":1,"s":5,"p":4,"h":"Running a Game Session"}]} \ No newline at end of file +{"_meta":{"name":{"1":"Quick Reference","2":"GM Reference"},"id":{"1":"bookref-quick","2":"bookref-gmscreen"},"section":{"1":"Character Creation","2":"Items & Equipment","3":"Spells","4":"Playing the Game","5":"Game Mastering"}},"data":[{"id":1,"b":1,"s":1,"p":0,"h":"Animal Companions"},{"id":2,"b":1,"s":1,"p":0,"h":"Archetypes"},{"id":3,"b":1,"s":1,"p":0,"h":"Character Creation"},{"id":4,"b":1,"s":1,"p":0,"h":"Characters With Disabilities"},{"id":5,"b":1,"s":1,"p":0,"h":"Familiars"},{"id":6,"b":1,"s":1,"p":0,"h":"Leveling Up"},{"id":7,"b":1,"s":2,"p":1,"h":"Activating Items"},{"id":8,"b":1,"s":2,"p":1,"h":"Animals"},{"id":9,"b":1,"s":2,"p":1,"h":"Armor"},{"id":10,"b":1,"s":2,"p":1,"h":"Carrying and Using Items"},{"id":11,"b":1,"s":2,"p":1,"h":"Coins and Currency"},{"id":12,"b":1,"s":2,"p":1,"h":"Constant Abilities"},{"id":13,"b":1,"s":2,"p":1,"h":"Formulas"},{"id":14,"b":1,"s":2,"p":1,"h":"Investing Magic Items"},{"id":15,"b":1,"s":2,"p":1,"h":"Item Damage"},{"id":16,"b":1,"s":2,"p":1,"h":"Item Level"},{"id":17,"b":1,"s":2,"p":1,"h":"Items and Sizes"},{"id":18,"b":1,"s":2,"p":1,"h":"Price"},{"id":19,"b":1,"s":2,"p":1,"h":"Runes"},{"id":20,"b":1,"s":2,"p":1,"h":"Scrolls"},{"id":21,"b":1,"s":2,"p":1,"h":"Services"},{"id":22,"b":1,"s":2,"p":1,"h":"Shields"},{"id":23,"b":1,"s":2,"p":1,"h":"Shoddy Items"},{"id":24,"b":1,"s":2,"p":1,"h":"Staves"},{"id":25,"b":1,"s":2,"p":1,"h":"Wands"},{"id":26,"b":1,"s":2,"p":1,"h":"Weapons"},{"id":27,"b":1,"s":2,"p":1,"h":"Wearing Tools"},{"id":28,"b":1,"s":3,"p":2,"h":"Cantrips"},{"id":29,"b":1,"s":3,"p":2,"h":"Casting Spells"},{"id":30,"b":1,"s":3,"p":2,"h":"Disbelieving Illusions"},{"id":31,"b":1,"s":3,"p":2,"h":"Durations"},{"id":32,"b":1,"s":3,"p":2,"h":"Focus Spells"},{"id":33,"b":1,"s":3,"p":2,"h":"Hostile Actions"},{"id":34,"b":1,"s":3,"p":2,"h":"Identifying Spells"},{"id":35,"b":1,"s":3,"p":2,"h":"Innate Spells"},{"id":36,"b":1,"s":3,"p":2,"h":"Ranges, Areas, and Targets"},{"id":37,"b":1,"s":3,"p":2,"h":"Reading Spells"},{"id":38,"b":1,"s":3,"p":2,"h":"Rituals"},{"id":39,"b":1,"s":3,"p":2,"h":"Saving Throws"},{"id":40,"b":1,"s":3,"p":2,"h":"Setting Triggers"},{"id":41,"b":1,"s":3,"p":2,"h":"Spell Attacks"},{"id":42,"b":1,"s":3,"p":2,"h":"Spell Slots"},{"id":43,"b":1,"s":3,"p":2,"h":"Walls"},{"id":44,"b":1,"s":4,"p":3,"h":"Actions"},{"id":45,"b":1,"s":4,"p":3,"h":"Afflictions"},{"id":46,"b":1,"s":4,"p":3,"h":"Checks"},{"id":47,"b":1,"s":4,"p":3,"h":"Concealment and Invisibility"},{"id":48,"b":1,"s":4,"p":3,"h":"Condition Values"},{"id":49,"b":1,"s":4,"p":3,"h":"Conditions"},{"id":50,"b":1,"s":4,"p":3,"h":"Counteracting"},{"id":51,"b":1,"s":4,"p":3,"h":"Cover"},{"id":52,"b":1,"s":4,"p":3,"h":"Damage"},{"id":53,"b":1,"s":4,"p":3,"h":"Downtime Mode"},{"id":54,"b":1,"s":4,"p":3,"h":"Effects"},{"id":55,"b":1,"s":4,"p":3,"h":"Encounter Mode"},{"id":56,"b":1,"s":4,"p":3,"h":"Exploration Mode"},{"id":57,"b":1,"s":4,"p":3,"h":"Flanking"},{"id":58,"b":1,"s":4,"p":3,"h":"Game Conventions"},{"id":59,"b":1,"s":4,"p":3,"h":"Hero Points"},{"id":60,"b":1,"s":4,"p":3,"h":"Hit Points, Healing, and Dying"},{"id":61,"b":1,"s":4,"p":3,"h":"Making Choices"},{"id":62,"b":1,"s":4,"p":3,"h":"Movement"},{"id":63,"b":1,"s":4,"p":3,"h":"Overriding Conditions"},{"id":64,"b":1,"s":4,"p":3,"h":"Perception"},{"id":65,"b":1,"s":4,"p":3,"h":"Special Checks"},{"id":66,"b":1,"s":4,"p":3,"h":"Specific Checks"},{"id":67,"b":1,"s":5,"p":4,"h":"Difficulty Classes"},{"id":68,"b":1,"s":5,"p":4,"h":"Drugs"},{"id":69,"b":1,"s":5,"p":4,"h":"Environment"},{"id":70,"b":1,"s":5,"p":4,"h":"Hazards"},{"id":71,"b":1,"s":5,"p":4,"h":"Planning a Campaign"},{"id":72,"b":1,"s":5,"p":4,"h":"Preparing an Adventure"},{"id":73,"b":1,"s":5,"p":4,"h":"Rewards"},{"id":74,"b":1,"s":5,"p":4,"h":"Running Modes of Play"},{"id":75,"b":1,"s":5,"p":4,"h":"Running a Game Session"}]} \ No newline at end of file diff --git a/data/generated/bookref-gmscreen.json b/data/generated/bookref-gmscreen.json index 0989531106..8244f6a5c1 100644 --- a/data/generated/bookref-gmscreen.json +++ b/data/generated/bookref-gmscreen.json @@ -1 +1 @@ -{"reference":{"bookref-quick":{"name":"Quick Reference","id":"bookref-quick","contents":[{"name":"Character Creation","headers":["Animal Companions","Archetypes","Character Creation","Characters With Disabilities","Familiars","Leveling Up"]},{"name":"Items & Equipment","headers":["Activating Items","Animals","Armor","Carrying and Using Items","Coins and Currency","Constant Abilities","Formulas","Investing Magic Items","Item Damage","Item Level","Items and Sizes","Price","Runes","Scrolls","Services","Shields","Shoddy Items","Staves","Wands","Weapons"]},{"name":"Spells","headers":["Cantrips","Casting Spells","Disbelieving Illusions","Durations","Focus Spells","Hostile Actions","Identifying Spells","Innate Spells","Ranges, Areas, and Targets","Reading Spells","Rituals","Saving Throws","Setting Triggers","Spell Attacks","Spell Slots","Walls"]},{"name":"Playing the Game","headers":["Actions","Afflictions","Checks","Concealment and Invisibility","Condition Values","Conditions","Counteracting","Cover","Damage","Downtime Mode","Effects","Encounter Mode","Exploration Mode","Flanking","Game Conventions","Hero Points","Hit Points, Healing, and Dying","Making Choices","Movement","Overriding Conditions","Perception","Special Checks","Specific Checks"]},{"name":"Game Mastering","headers":["Difficulty Classes","Drugs","Environment","Hazards","Planning a Campaign","Preparing an Adventure","Rewards","Running Modes of Play","Running a Game Session"]}]},"bookref-gmscreen":{"name":"GM Reference","id":"bookref-gmscreen","contents":[]}},"data":{"bookref-quick":[{"type":"entries","entries":[{"type":"section","page":214,"name":"Animal Companions","entries":["An animal companion is a loyal comrade who follows your orders without you needing to use Handle an Animal on it. Your animal companion has the minion trait, and it gains 2 actions during your turn if you use the {@action Command an Animal} action to command it; this is in place of the usual effects of {@action Command an Animal}. If your companion dies, you can spend a week of downtime to replace it at no cost. You can have only one animal companion at a time.",{"type":"pf2-h3","page":214,"name":"Riding Animal Companions","entries":["You or an ally can ride your animal companion as long as it is at least one size larger than the rider. If it is carrying a rider, the animal companion can use only its land Speed, and it can't move and Support you on the same turn. However, if your companion has the mount special ability, it's especially suited for riding and ignores both of these restrictions."],"source":"CRB"},{"type":"pf2-h3","page":214,"name":"Young Animal Companions","entries":["The following are the base statistics for a young animal companion, the first animal companion most characters get. You make adjustments to these statistics depending on the type of animal you choose. As you gain levels, you might make further adjustments as your companion becomes more powerful. An animal companion has the same level you do. Animal companions calculate their modifiers and DCs just as you do with one difference: the only item bonuses they can benefit from are to speed and AC (their maximum item bonus to AC is +2)."],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h4","page":214,"name":"Proficiencies","entries":["Your animal companion uses your level to determine its proficiency bonuses. It's trained in its unarmed attacks, unarmored defense, barding, all saving throws, Perception, {@skill Acrobatics}, and {@skill Athletics}. Animal companions can't use abilities that require greater Intelligence, such as Coerce or Decipher Writing, even if trained in the appropriate skill, unless they have a specialization that allows it."],"source":"CRB"},{"type":"pf2-h4","page":214,"name":"Ability Modifiers","entries":["An animal companion begins with base ability modifiers of {@b Str} +2, {@b Dex} +2, {@b Con} +1, {@b Int}–4, {@b Wis} +1, {@b Cha} +0. Each type has its own strengths and increases two of these modifiers by 1 each. These increases are already calculated into the stat blocks in Companion Types below."],"source":"CRB"},{"type":"pf2-h4","page":214,"name":"Hit Points","entries":["Your animal companion has ancestry Hit Points from its type, plus a number of Hit Points equal to 6 plus its Constitution modifier for each level you have."],"source":"CRB"},{"type":"pf2-h3","page":214,"name":"Mature Animal Companions","entries":["To advance a young animal companion to a mature animal companion (usually a result of one of your class feat choices), increase its Strength, Dexterity, Constitution, and Wisdom modifiers by 1. Increase its unarmed attack damage from one die to two dice (for instance 1d8 to 2d8), and its proficiency rank for Perception and all saving throws to expert. Increase its proficiency ranks in {@skill Intimidation}, {@skill Stealth}, and {@skill Survival} to trained, and if it was already trained in one of those skills from its type, increase its proficiency rank in that skill to expert. If your companion is Medium or smaller, it grows by one size."],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h3","page":214,"name":"Nimble Animal Companions","entries":["To advance a mature animal companion to a nimble animal companion, increase its Dexterity modifier by 2 and its Strength, Constitution, and Wisdom modifiers by 1. It deals 2 additional damage with its unarmed attacks. Increase its proficiency ranks in {@skill Acrobatics} and unarmored defense to expert. It also learns the advanced maneuver for its type. Its attacks become magical for the purpose of ignoring resistances."],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h3","page":214,"name":"Savage Animal Companions","entries":["To advance a mature animal companion to a savage animal companion, increase its Strength modifier by 2 and its Dexterity, Constitution, and Wisdom modifiers by 1. It deals 3 additional damage with its unarmed attacks. Increase its proficiency rank in {@skill Athletics} to expert. It also learns the advanced maneuver for its type. If your companion is Medium or smaller, it grows by one size. Its attacks become magical for the purpose of ignoring resistances."],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h3","page":214,"name":"Companion Types","entries":["The species of animal you choose is called your {@filter companion's type|companionsfamiliars||Type=Companion}. Each {@filter companion type|companionsfamiliars||Type=Companion} has its own statistics. The Size entry indicates your companion's starting size as a young animal companion. Following the size entry are the companion's unarmed attacks, and then its ability modifiers. The Hit Points entry indicates the companion's ancestry Hit Points. The Skill entry indicates an additional trained skill your companion has. The Senses entry lists your companion's special senses. The Speed entry gives your companion's Speeds. The Special entry, if present, lists any other special abilities your companion has, for example whether it often serves as a mount and is particularly appropriate for mounted classes, such as the champion.","The Support Benefit entry indicates a special benefit you gain by {@action Command an Animal||Commanding the Animal} to use the Support action (see below). The Advanced Maneuver entry indicates a powerful new action your companion learns how to use if it becomes a nimble or savage animal companion."],"source":"CRB"},{"type":"pf2-h3","page":217,"name":"Specialized Animal Companions","entries":["Specialized animal companions are more intelligent and engage in more complex behaviors. The first time an animal gains a specialization, it gains the following: Its proficiency rank for unarmed attacks increases to expert. Its proficiency ranks for saving throws and Perception increase to master.","Increase its Dexterity modifier by 1 and its Intelligence modifier by 2. Its unarmed attack damage increases from two dice to three dice, and it increases its additional damage with unarmed attacks from 2 to 4 or from 3 to 6.","Each specialization grants additional benefits. Most animal companions can have only one specialization.",{"type":"pf2-h4","page":217,"name":"Ambusher","entries":["In your companion's natural environment, it can use a Sneak action even if it's currently observed. Its proficiency rank in {@skill Stealth} increases to expert (or master if it was already an expert from its type), and its Dexterity modifier increases by 1. Its proficiency rank for unarmored defense increases to expert, or master if it's nimble."],"source":"CRB"},{"type":"pf2-h4","page":217,"name":"Bully","entries":["Your companion terrorizes foes with dominance displays and pushes them around the battlefield. Its proficiency ranks for {@skill Athletics} and {@skill Intimidation} increase to expert (or master if it was already expert from its type), its Strength modifier increases by 1, and its Charisma modifier increases by 3."],"source":"CRB"},{"type":"pf2-h4","page":217,"name":"Daredevil","entries":["Your companion joins the fray with graceful leaps and dives.","It gains the deny advantage ability, so it isn't {@condition flat-footed} to hidden, undetected, or flanking creatures unless such a creature's level is greater than yours. Its proficiency rank in {@skill Acrobatics} increases to master, and its Dexterity modifier increases by 1. Its proficiency rank in unarmored defense increases to expert, or master if it's nimble."],"source":"CRB"},{"type":"pf2-h4","page":217,"name":"Racer","entries":["Your companion races. It gains a +10-foot status bonus to its Speed, swim Speed, or fly Speed (your choice). Its proficiency in Fortitude saves increases to legendary, and its Constitution modifier increases by 1."],"source":"CRB"},{"type":"pf2-h4","page":217,"name":"Tracker","entries":["Your companion is an incredible tracker. It can move at full Speed while following tracks. Its proficiency rank in {@skill Survival} increases to expert (or master if it was already an expert from its type), and its Wisdom modifier increases by 1."],"source":"CRB"},{"type":"pf2-h4","page":217,"name":"Wrecker","entries":["Your companion smashes things. Its unarmed attacks ignore half an object's Hardness. Its {@skill Athletics} proficiency increases to master, and its Strength modifier increases by 1."],"source":"CRB"}],"data":{"quickrefIndex":true},"source":"CRB"}],"data":{"quickref":1},"source":"CRB"},{"type":"section","page":219,"name":"Archetypes","entries":[{"type":"pf2-h1-flavor","page":219,"entries":["{@i There are infinite possible character concepts, but you might find that the feats and skill choices from a single class aren't sufficient to fully realize your character. Archetypes allow you to expand the scope of your character's class.}"],"source":"CRB"},"Applying an archetype requires you to select archetype feats instead of class feats. Start by finding the archetype that best fits your character concept, and select the archetype's dedication feat using one of your class feat choices. Once you have the dedication feat, you can select any feat from that archetype in place of a class feat as long as you meet its prerequisites. The archetype feat you select is still subject to any selection restrictions on the class feat it replaces. For example, if you gained an ability at 6th level that granted you a 4th-level class feat with the dwarf trait, you could swap out that class feat only for an archetype feat of 4th level or lower with the dwarf trait. Archetype feats you gain in place of a class feat are called archetype class feats.","Occasionally, an archetype feat works like a skill feat instead of a class feat. These archetype feats have the skill trait, and you select them in place of a skill feat, otherwise following the same rules above. These are not archetype class feats (for instance, to determine the number of Hit Points you gain from the Fighter Resiliency archetype feat).","Each archetype's dedication feat represents a certain portion of your character's time and focus, so once you select a dedication feat for an archetype, you must satisfy its requirements before you can gain another dedication feat. Typically, you satisfy an archetype dedication feat by gaining a certain number of feats from the archetype's list. You cannot retrain a dedication feat as long as you have any other feats from that archetype.","Sometimes an archetype feat lets you gain another feat, such as the alchemist's basic concoction. You must always meet the prerequisites of the feat you gain in this way.","Two special kinds of archetypes are designated by the class and multiclass traits. The archetypes in this book are all multiclass archetypes.",{"type":"pf2-h3","page":219,"name":"Multiclass Archetypes","entries":["Archetypes with the multiclass trait represent diversifying your training into another class's specialties. You can't select a multiclass archetype's dedication feat if you are a member of the class of the same name (for instance, a fighter can't select the Fighter Dedication feat)."],"source":"CRB"},{"type":"pf2-h3","page":219,"name":"Class Archetypes","entries":["Archetypes with the class trait represent a fundamental divergence from your class's specialties, but one that exists within the context of your class. You can select a class archetype only if you are a member of the class of the same name. Class archetypes always alter or replace some of a class's static class features, in addition to any new feats they offer. It may be possible to take a class archetype at 1st level if it alters or replaces some of the class's initial class features.","In that case, you must take that archetype's dedication feat at 2nd level, and after that you proceed normally. You can never have more than one class archetype."],"source":"CRB"},{"type":"pf2-h4","page":219,"name":"Spellcasting Archetypes","entries":["Some archetypes grant you a substantial degree of spellcasting, albeit delayed compared to a character from a spellcasting class. In this book, the spellcasting archetypes are bard, cleric, druid, sorcerer, and wizard, the multiclass archetypes for the five main spellcasting classes, but future books might introduce spellcasting archetypes that aren't multiclass archetypes.","A spellcasting archetype allows you to use scrolls, staves, and wands in the same way that a member of a spellcasting class can.","Spellcasting archetypes always grant the ability to cast cantrips in their dedication, and then they have a basic spellcasting feat, an expert spellcasting feat, and a master spellcasting feat. These feats share their name with the archetype; for instance, the wizard's master spellcasting feat is called Master Wizard Spellcasting.","All spell slots you gain from spellcasting archetypes have restrictions depending on the archetype; for instance, the bard archetype grants you spell slots you can use only to cast occult spells from your bard repertoire, even if you are a sorcerer with occult spells in your sorcerer repertoire.","{@b Basic Spellcasting Feat:} Usually available at 4th level, these feats grant a 1st-level spell slot. At 6th level, they grant you a 2nd-level spell slot, and if you have a spell repertoire, you can select one spell from your repertoire as a signature spell. At 8th level, they grant you a 3rd-level spell slot. Archetypes refer to these benefits as the \"basic spellcasting benefits.\"","{@b Expert Spellcasting Feat:} Typically taken at 12th level, these feats make you an expert in spell attack rolls and DCs of the appropriate magical tradition and grant you a 4th-level spell slot. If you have a spell repertoire, you can select a second spell from your repertoire as a signature spell. At 14th level, they grant you a 5th-level spell slot, and at 16th level, they grant you a 6th-level spell slot. Archetypes refer to these benefits as the \"expert spellcasting benefits.\"","{@b Master Spellcasting Feat:} Usually found at 18th level, these feats make you a master in spell attack rolls and DCs of the appropriate magical tradition and grant you a 7th-level spell slot. If you have a spell repertoire, you can select a third spell from your repertoire as a signature spell. At 20th level, they grant you an 8th-level spell slot. Archetypes refer to these benefits as the \"master spellcasting benefits.\""],"data":{"quickrefIndex":true},"source":"CRB"},"{@note To view all Archetypes, please view the {@filter Archetypes page.|archetypes||source=CRB}}"],"data":{"quickref":1},"source":"CRB"},{"type":"section","page":19,"name":"Character Creation","entries":["Unless you're the GM, the first thing you need to do when playing Pathfinder is create your character. It's up to you to imagine your character's past experiences, personality, and worldview, and this will set the stage for your roleplaying during the game. You'll use the game's mechanics to determine your character's ability to perform various tasks and use special abilities during the game.","This section provides a step-by-step guide for creating a character using the Pathfinder rules, preceded by a guide to help you understand ability scores. These scores are a critical part of your character, and you will be asked to make choices about them during many of the following steps. The steps of character creation are presented in a suggested order, but you can complete them in whatever order you prefer.","Many of the steps on pages 21 –28 instruct you to fill out fields on your character sheet. The character sheet is shown on pages 24 –25; you can find a copy in the back of this book or online as a free pdf. The character sheet is designed to be easy to use when you're actually playing the game—but creating a character happens in a different order, so you'll move back and forth through the character sheet as you go through the character creation process. Additionally, the character sheet includes every field you might need, even though not all characters will have something to put in each field. If a field on your character sheet is not applicable to your character, just leave that field blank.","All the steps of character creation are detailed on the following pages; each is marked with a number that corresponds to the sample character sheet on pages 24 –25, showing you where the information goes. If the field you need to fill out is on the third or fourth page of the character sheet, which aren't shown, the text will tell you.","If you're creating a higher-level character, it's a good idea to begin with the instructions here, then turn to page 29 for instructions on leveling up characters.",{"type":"pf2-h3","page":19,"name":"The Six Ability Scores","entries":["One of the most important aspects of your character is their ability scores. These scores represent your character's raw potential and influence nearly every other statistic on your character sheet. Determining your ability scores is not done all at once, but instead happens over several steps during character creation.","Ability scores are split into two main groups: physical and mental. Strength, Dexterity, and Constitution are physical ability scores, measuring your character's physical power, agility, and stamina. In contrast, Intelligence, Wisdom, and Charisma are mental ability scores and measure your character's learned prowess, awareness, and force of personality.","Excellence in an ability score improves the checks and statistics related to that ability, as described below. When imagining your character, you should also decide what ability scores you want to focus on to give you the best chance at success.",{"type":"pf2-h4","page":19,"name":"Strength","entries":["Strength measures your character's physical power.","Strength is important if your character plans to engage in hand-to-hand combat. Your Strength modifier gets added to melee damage rolls and determines how much your character can carry."],"source":"CRB"},{"type":"pf2-h4","page":19,"name":"Dexterity","entries":["Dexterity measures your character's agility, balance, and reflexes. Dexterity is important if your character plans to make attacks with ranged weapons or use stealth to surprise foes. Your Dexterity modifier is also added to your character's AC and Reflex saving throws."],"source":"CRB"},{"type":"pf2-h4","page":19,"name":"Constitution","entries":["Constitution measures your character's overall health and stamina. Constitution is an important statistic for all characters, especially those who fight in close combat.","Your Constitution modifier is added to your Hit Points and Fortitude saving throws."],"source":"CRB"},{"type":"pf2-h4","page":19,"name":"Intelligence","entries":["Intelligence measures how well your character can learn and reason. A high Intelligence allows your character to analyze situations and understand patterns, and it means they can become trained in additional skills and might be able to master additional languages."],"source":"CRB"},{"type":"pf2-h4","page":19,"name":"Wisdom","entries":["Wisdom measures your character's common sense, awareness, and intuition. Your Wisdom modifier is added to your Perception and Will saving throws."],"source":"CRB"},{"type":"pf2-h4","page":19,"name":"Charisma","entries":["Charisma measures your character's personal magnetism and strength of personality. A high Charisma score helps you influence the thoughts and moods of others."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":20,"name":"Ability Score Overview","entries":["Each ability score starts at 10, representing human average, but as you make character choices, you'll adjust these scores by applying ability boosts, which increase a score, and ability flaws, which decrease a score. As you build your character, remember to apply ability score adjustments when making the following decisions.","{@b Ancestry:} Each ancestry provides ability boosts, and sometimes an ability flaw. If you are taking any voluntary flaws, apply them in this step (see the sidebar on page 24).","{@b Background:} Your character's background provides two ability boosts.","{@b Class:} Your character's class provides an ability boost to the ability score most important to your class, called your key ability score.","{@b Determine Scores:} After the other steps, you apply four more ability boosts of your choice. Then, determine your ability modifiers based on those scores.",{"type":"pf2-h4","page":20,"name":"Ability Boosts","entries":["An ability boost normally increases an ability score's value by 2. However, if the ability score to which you're applying an ability boost is already 18 or higher, its value increases by only 1. At 1st level, a character can never have any ability score that's higher than 18.","When your character receives an ability boost, the rules indicate whether it must be applied to a specific ability score or to one of two specific ability scores, or whether it is a \"free\" ability boost that can be applied to any ability score of your choice. However, when you gain multiple ability boosts at the same time, you must apply each one to a different score. Dwarves, for example, receive an ability boost to their Constitution score and their Wisdom score, as well as one free ability boost, which can be applied to any score other than Constitution or Wisdom."],"source":"CRB"},{"type":"pf2-h4","page":20,"name":"Ability Flaws","entries":["Ability flaws are not nearly as common in Pathfinder as ability boosts. If your character has an ability flaw—likely from their ancestry—you decrease that ability score by 2."],"source":"CRB"},{"type":"pf2-brown-box","page":20,"name":"ALTERNATIVE METHOD: ROLLING ABILITY SCORES","entries":["The standard method of generating ability scores that's described above works great if you want to create a perfectly customized, balanced character. But your GM may decide to add a little randomness to character creation and let the dice decide what kind of character the players are going to play. In that case, you can use this alternative method to generate your ability scores. Be warned—the same randomness that makes this system fun also allows it to sometimes create characters that are significantly more (or less) powerful than the standard ability score system and other Pathfinder rules assume.","If your GM opts for rolling ability scores, follow these alternative steps, ignoring all other instructions and guidelines about applying ability boosts and ability flaws throughout the character generation process.",{"type":"pf2-title","name":"STEP 1: ROLL AND ASSIGN SCORES"},"Roll four 6-sided dice (4d6) and discard the lowest die result.","Add the three remaining results together and record the sum.","(For example, if you rolled a 2, 4, 5, and 6, you would discard the 2 and your total would be 15.) Repeat this process until you've generated six such values. Decide which value you want for each of your ability scores.",{"type":"pf2-title","name":"STEP 2: ASSIGN ABILITY BOOSTS AND ABILITY FLAWS"},"Apply the ability boosts your character gains from their ancestry, but your character gets one fewer free ability boost than normal. If your character's ancestry has any ability flaws, apply those next. Finally, apply one ability boost to one of the ability scores specified in the character's background (you do not get the other free ability boost).","These ability boosts cannot raise a score above 18. If this would happen, you can put the ability boost into another ability score instead, as if it were a free ability boost, or you can put it into an ability score of 17 to reach 18 and lose the excess increase.",{"type":"pf2-title","name":"STEP 3: RECORD SCORES AND MODIFIERS"},"Record the final scores and assign the ability modifiers according to {@table ABILITY MODIFIERS||Table 1–1}. When your character receives additional ability boosts at higher levels, you assign them as any character would."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":20,"name":"Ability Modifiers","entries":["Once you've finalized your ability scores, you can use them to determine your ability modifiers, which are used in most other statistics in the game. Find the score in {@table ABILITY MODIFIERS||Table 1–1: Ability Modifiers} to determine its ability modifier.",{"type":"statblock","tag":"table","name":"Ability Modifiers","source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":21,"name":"Create a Concept","entries":["What sort of hero do you want to play? The answer to this question might be as simple as \"a brave warrior,\" or as complicated as \"the child of elven wanderers, but raised in a city dominated by humans and devoted to Sarenrae, goddess of the sun.\" Consider your character's personality, sketch out a few details about their past, and think about how and why they adventure. You'll want to peruse Pathfinder's available ancestries, backgrounds, and classes. The summaries on pages 22 –23 might help you match your concept with some of these basic rule elements. Before a game begins, it's also a good idea for the players to discuss how their characters might know each other and how they'll work together throughout the course of their adventures.","There are many ways to approach your character concept.","Once you have a good idea of the character you'd like to play, move on to Step 2 to start building your character.",{"type":"pf2-h3","page":21,"name":"Ancestry, Background, Class, or Details","entries":["If one of Pathfinder's character ancestries, backgrounds, or classes particularly intrigues you, it's easy to build a character concept around these options. The summaries of ancestries and classes on pages 22 –23 give a brief overview of these options (full details appear in Chapters 2 and 3, respectively). Each ancestry also has several heritages that might refine your concept further, such as a human with an elf or orc parent, or an arctic or woodland elf. Additionally, the game has many backgrounds to choose from, representing your character's upbringing, their family's livelihood, or their earliest profession. Backgrounds are detailed later in Chapter 2, beginning on page 60.","Building a character around a specific ancestry, background, or class can be a fun way to interact with the world's lore. Would you like to build a typical member of your character's ancestry or class, as described in the relevant entry, or would you prefer to play a character who defies commonly held notions about their people?","For example, you could play a dwarf with a wide-eyed sense of wonder and a zest for change, or a performing rogue capable of amazing acrobatic feats but with little interest in sneaking about.","You can draw your concept from any aspect of a character's details. You can use roleplaying to challenge not only the norms of Pathfinder's fictional world, but even real-life societal norms. Your character might challenge gender notions, explore cultural identity, have a disability, or any combination of these suggestions. Your character can live any life you see fit."],"source":"CRB"},{"type":"pf2-h3","page":21,"name":"Faith","entries":["Perhaps you'd like to play a character who is a devout follower of a specific deity. Pathfinder is a rich world with myriad faiths and philosophies spanning a wide range, from Cayden Cailean, the Drunken Hero of good-hearted adventuring; to Desna, the Song of Spheres and goddess of dreaming and the stars; to Iomedae, the Inheritor, goddess of honor, justice, and rulership. Pathfinder's major deities appear on pages 437–440. Your character might be so drawn to a particular faith that you decide they should be a champion or cleric of that deity; they might instead be a lay worshipper who applies their faith's teachings to daily life, or simply the child of devout parents."],"source":"CRB"},{"type":"pf2-brown-box","page":21,"name":"ANCESTRIES AND CLASSES","entries":["Each player takes a different approach to creating a character. Some want a character who will fit well into the story, while others look for a combination of abilities that complement each other mechanically. You might combine these two approaches. There is no wrong way!","When you turn the page, you'll see a graphical representation of ancestries and classes that provide at-aglance information for players looking to make the most of their starting ability scores. In the ancestries overview on page 22, each entry lists which ability scores it boosts, and also indicates any ability flaws the ancestry might have.","You can find more about ability boosts and ability flaws in Ability Scores on page 20.","The summaries of the classes on pages 22 –23 list each class's key ability score—the ability score used to calculate the potency of many of their class abilities. Characters receive an ability boost in that ability score when you choose their class. This summary also lists one or more secondary ability scores important to members of that class.","Keep in mind a character's background also affects their ability scores, though there's more flexibility in the ability boosts from backgrounds than in those from classes. For descriptions of the available backgrounds, see pages 60–64."],"source":"CRB"},{"type":"pf2-h3","page":21,"name":"Your Allies","entries":["You might want to coordinate with other players when forming your character concept. Your characters could have something in common already; perhaps they are relatives, or travelers from the same village. You might discuss mechanical aspects with the other players, creating characters whose combat abilities complement each other. In the latter case, it can be helpful for a party to include characters who deal damage, characters who can absorb damage, and characters who can provide healing.","However, Pathfinder's classes include a lot of choices, and there are many options for building each type of character, so don't let these broad categories restrict your decisions."],"source":"CRB"},{"type":"pf2-tips-box","page":21,"name":"CHARACTER SHEET","entries":["Once you've developed your character's concept, jot down a few sentences summarizing your ideas under the Notes section on the third page of your character sheet. Record any of the details you've already decided, such as your character's name, on the appropriate lines on the first page."],"source":"CRB"}],"step":"1","source":"CRB"},{"type":"pf2-h2","page":21,"name":"Start Building Ability Scores","entries":["At this point, you need to start building your character's ability scores. See the overview of ability scores on pages 19 –20 for more information about these important aspects of your character and an overview of the process.","Your character's ability scores each start at 10, and as you select your ancestry, background, and class, you'll apply ability boosts, which increase a score by 2, and ability flaws, which decrease a score by 2. At this point, just note a 10 in each ability score and familiarize yourself with the rules for ability boosts and flaws on page 20. This is also a good time to identify which ability scores will be most important to your character. See The Six Ability Scores on page 19 and the class summaries on pages 22 –23 for more information."],"step":"2","source":"CRB"},{"type":"pf2-h2","page":21,"name":"Select an Ancestry","entries":["Select an ancestry for your character. The ancestry summaries on page 22 provide an overview of Pathfinder's core ancestry options, and each is fully detailed in Chapter 2. Ancestry determines your character's size, Speed, and languages, and contributes to their Hit Points.","Each also grants ability boosts and ability flaws to represent the ancestry's basic capabilities.","You'll make four decisions when you select your character's ancestry:",{"type":"list","items":["Pick the ancestry itself.","Assign any free ability boosts and decide if you are taking any voluntary flaws.","Select a heritage from those available within that ancestry, further defining the traits your character was born with.","Choose an ancestry feat, representing an ability your hero learned at an early age."]},{"type":"pf2-tips-box","page":21,"name":"CHARACTER SHEET","entries":["Write your character's ancestry and heritage in the appropriate space at the top of your character sheet's first page. Adjust your ability scores, adding 2 to an ability score if you gained an ability boost from your ancestry, and subtracting 2 from an ability score if you gained an ability flaw from your ancestry. Note the number of Hit Points your character gains from their ancestry—you'll add more to this number later. Finally, in the appropriate spaces, record your character's size, Speed, and languages. If your character's ancestry provides them with special abilities, write them in the appropriate spaces, such as {@ability darkvision} in the Senses"],"source":"CRB"}],"step":"3","source":"CRB"},{"type":"pf2-h2","page":21,"name":"Pick a Background","entries":["Your character's background might represent their upbringing, an aptitude they've been honing since their youth, or another aspect of their life before they became an adventurer. Character backgrounds appear in Chapter 2, starting on page 60. They typically provide two ability boosts (one that can be applied to either of two specific ability scores, and one that is free), training in a specific skill, training in a Lore skill, and a specific skill feat.",{"type":"pf2-tips-box","page":21,"name":"CHARACTER SHEET","entries":["Record your character's background in the space at the top of the first page of your character sheet. Adjust your ability scores, adding 2 to an ability score if you gained an ability boost from your background. Record the skill feat the background provides in the Skill Feat section of your character sheet's second page. On the first page, check the \"T\" box next to the name of the specific skill and for one Lore skill to indicate your character is trained, then write the name of the Lore skill granted by your background."],"source":"CRB"}],"step":"4","source":"CRB"},{"type":"pf2-h2","page":21,"name":"Choose a Class","entries":["At this point, you need to decide your character's class.","A class gives your character access to a suite of heroic abilities, determines how effectively they fight, and governs how easily they can shake off or avoid certain harmful effects. Each class is fully detailed in Chapter 3, but the summaries on pages 22 –23 provide an overview of each and tells you which ability scores are important when playing that class.","You don't need to write down all of your character's class features yet. You simply need to know which class you want to play, which determines the ability scores that will be most important for your character.",{"type":"pf2-tips-box","page":21,"name":"CHARACTER SHEET","entries":["Write your character's class in the space at the top of the first page of your character sheet, then write \"1\" in the Level box to indicate that your character is 1st level. Next to the ability scores, note the class's key ability score, and add 2 to that ability score from the ability boost the class provides. Don't worry about recording the rest of your character's class features and abilities yet—you'll handle that in Step 7."],"source":"CRB"}],"step":"5","source":"CRB"},{"type":"pf2-h2","page":26,"name":"Determine Ability Scores","entries":[{"type":"pf2-sidebar","page":26,"name":"OPTIONAL: VOLUNTARY FLAWS","entries":["Sometimes, it's fun to play a character with a major flaw even if you're not playing an ancestry that imposes one. You can elect to take two additional ability flaws when applying the ability boosts and ability flaws from your ancestry. If you do, you can also apply one additional free ability boost. These ability flaws can be assigned to any ability score you like, but you can't apply more than one ability flaw to the same ability score during this step unless you apply both of the additional ability flaws to a score that is already receiving an ability boost during this step. In this case, the first ability flaw cancels the ability boost, and the second ability flaw decreases the score by 2. Likewise, as an exception to the normal rules for ability boosts, you can apply two free ability boosts to an ability score receiving an ability flaw during this step; the first ability boost cancels the ability flaw, and the second ability boost increases the score by 2. For example, a dwarf normally gets an ability boost to Constitution and Wisdom, along with an ability flaw to Charisma.","You could apply one ability flaw each to Intelligence and Strength, or you could apply both ability flaws to Wisdom. You could not apply either additional ability flaw to Charisma, though, because it is already receiving dwarves' ability flaw during this step."],"source":"CRB"},"Now that you've made the main mechanical choices about your character, it's time to finalize their ability scores. Do these three things:",{"type":"list","items":["First, make sure you've applied all the ability boosts and ability flaws you've noted in previous steps (from your ancestry, background, and class).","Then, apply four more ability boosts to your character's ability scores, choosing a different ability score for each and increasing that ability score by 2.","Finally, record your starting ability scores and ability modifiers, as determined using {@table ABILITY MODIFIERS||Table 1–1: Ability Modifiers}."]},"Remember that each ability boost adds 2 to the base score of 10, and each ability flaw subtracts 2. You should have no ability score lower than 8 or higher than 18.",{"type":"pf2-tips-box","page":26,"name":"CHARACTER SHEET","entries":["Write your character's starting ability scores in the box provided for each. Record the ability modifier for each ability score in the box to the left of the ability's name."],"source":"CRB"}],"step":"6","source":"CRB"},{"type":"pf2-h2","page":26,"name":"Record Class Details","entries":["Now, record all the benefits and class features that your character receives from the class you've chosen. While you've already noted your key ability score, you'll want to be sure to record the following class features.",{"type":"pf2-sidebar","page":27,"name":"SPELLS AND SPELLCASTING","entries":["Most classes can learn to cast a few focus spells, but the bard, cleric, druid, sorcerer, and wizard all gain spellcasting—the ability to cast a wide variety of spells.","If your character's class grants spells, you should take time during Step 7 to learn about the spells they know and how to cast them. The fourth page of the character sheet provides space to note your character's magic tradition and their proficiency rank for spell attack rolls and spell DCs. It also gives ample space to record the spells in your character's repertoire or spellbook, or that you prepare frequently. Each class determines which spells a character can cast, how they are cast, and how many they can cast in a day, but the spells themselves and detailed rules for spellcasting are located in Chapter 7."],"source":"CRB"},{"type":"list","items":["To determine your character's total starting Hit Points, add together the number of Hit Points your character gains from their ancestry (chosen in Step 2) and the number of Hit Points they gain from their class.","The Initial Proficiencies section of your class entry indicates your character's starting proficiency ranks in a number of areas. Choose which skills your character is trained in and record those, along with the ones set by your class. If your class would make you trained in a skill you're already trained in (typically due to your background), you can select another skill to become trained in.","See the class advancement table in your class entry to learn the class features your character gains at 1st level—but remember, you already chose an ancestry and background. Some class features require you to make additional choices, such as selecting spells."]},{"type":"pf2-tips-box","page":26,"name":"CHARACTER SHEET","entries":["Write your character's total Hit Points on the first page of your character sheet. Use the proficiency fields (the boxes marked \"T,\" \"E,\" \"M,\" and \"L\") on your character sheet to record your character's initial proficiencies in Perception, saving throws, and the skills granted by their class; mark \"T\" if your character is trained, or \"E\" if your character is expert. Indicate which additional skills you chose for your character to be trained in by marking the \"T\" proficiency box for each skill you selected. Likewise, record your character's their armor proficiencies in the Armor Class section at the top of the first page and their weapon proficiencies at the bottom of the first page. Record all other class feats and abilities on the second page. Don't worry yet about finalizing any values for your character's statistics—you'll handle that in Step 9."],"source":"CRB"}],"step":"7","source":"CRB"},{"type":"pf2-h2","page":27,"name":"Buy Equipment","entries":["At 1st level, your character has 15 gold pieces (150 silver pieces) to spend on armor, weapons, and other basic equipment. Your character's class lists the types of weapons and armor with which they are trained (or better!). Their weapons determine how much damage they deal in combat, and their armor influences their Armor Class; these calculations are covered in more detail in Step 10. Don't forget essentials such as food and traveling gear! For more on the available equipment and how much it costs, see Chapter 6.",{"type":"pf2-tips-box","page":27,"name":"CHARACTER SHEET","entries":["Once you've spent your character's starting wealth, calculate any remaining gp, sp, and cp they might still have and write those amounts in Inventory on the second page. Record your character's weapons in the Melee Strikes and Ranged Strikes sections of the first page, depending on the weapon, and the rest of their equipment in the Inventory section on your character sheet's second page. You'll calculate specific numbers for melee Strikes and ranged Strikes with the weapons in Step 9 and for AC when wearing that armor in Step 10."],"source":"CRB"}],"step":"8","source":"CRB"},{"type":"pf2-h2","page":27,"name":"Calculate Modifiers","entries":["With most of the big decisions for your character made, it's time to calculate the modifiers for each of the following statistics. If your proficiency rank for a statistic is trained, expert, master, and legendary, your bonus equals your character's level plus another number based on the rank (2, 4, 6, and 8, respectively). If your character is untrained, your proficiency bonus is +0.",{"type":"pf2-h3","page":27,"name":"Perception","entries":["Your character's Perception modifier measures how alert they are. This modifier is equal to their proficiency bonus in Perception plus their Wisdom modifier. For more about Perception, see page 448."],"source":"CRB"},{"type":"pf2-h3","page":27,"name":"Saving Throws","entries":["For each kind of saving throw, add your character's Fortitude, Reflex, or Will proficiency bonus (as appropriate) plus the ability modifier associated with that kind of saving throw. For Fortitude saving throws, use your character's Constitution modifier. For Reflex saving throws, use your character's Dexterity modifier. For Will saving throws, use your character's Wisdom modifier. Then add in any bonuses or penalties from abilities, feats, or items that always apply (but not modifiers, bonuses, or penalties that apply only in certain situations). Record this number on the line for that saving throw."],"source":"CRB"},{"type":"pf2-h3","page":27,"name":"Melee Strikes and Ranged Strikes","entries":["Next to where you've written your character's melee and ranged weapons, calculate the modifier to Strike with each weapon and how much damage that Strike deals. The modifier for a Strike is equal to your character's proficiency bonus with the weapon plus an ability modifier (usually Strength for melee Strikes and Dexterity for ranged Strikes).","You also add any item bonus from the weapon and any other permanent bonuses or penalties. You also need to calculate how much damage each weapon's Strike deals.","Melee weapons usually add your character's Strength modifier to damage rolls, while ranged weapons might add some or all of your character's Strength modifier, depending on the weapon's traits. See the weapon entries in Chapter 6 for more information."],"source":"CRB"},{"type":"pf2-h3","page":28,"name":"Skills","entries":["In the second box to the right of each skill name on your character sheet, there's an abbreviation that reminds you of the ability score tied to that skill. For each skill in which your character is trained, add your proficiency bonus for that skill (typically +3 for a 1st-level character) to the indicated ability's modifier, as well as any other applicable bonuses and penalties, to determine the total modifier for that skill. For skills your character is untrained in, use the same method, but your proficiency bonus is +0."],"source":"CRB"},{"type":"pf2-tips-box","page":28,"name":"CHARACTER SHEET","entries":["For Perception and saving throws, write your proficiency bonus and the appropriate ability modifier in the boxes provided, then record the total modifier in the large space.","Record the proficiency bonuses, ability modifiers, and total modifiers for your melee Strikes and ranged Strikes in the box after the name of each weapon, and put the damage for each in the space below, along with the traits for that attack. For skills, record the relevant ability modifier and proficiency bonus in the appropriate box for each skill, and then write the total skill modifiers in the spaces to the left.","If your character has any modifiers, bonuses, or penalties from feats or abilities that always apply, add them into the total modifiers. For ones that apply only in certain situations, note them next to the total modifiers."],"source":"CRB"}],"step":"9","source":"CRB"},{"type":"pf2-h2","page":28,"name":"Finishing Details","entries":["Now add the following details to your character sheet in the appropriate spaces.",{"type":"pf2-h3","page":28,"name":"Alignment","entries":["Your character's alignment is an indicator of their morality and personality. There are nine possible alignments in Pathfinder, as shown on Table 1 –2: The Nine Alignments. If your alignment has any components other than neutral, your character gains the traits of those alignment components. This might affect the way various spells, items, and creatures interact with your character.","Your character's alignment is measured by two pairs of opposed values: the axis of good and evil and the axis of law and chaos. A character who isn't committed strongly to either side is neutral on that axis. Keep in mind that alignment is a complicated subject, and even acts that might be considered good can be used for nefarious purposes, and vice versa. The GM is the arbiter of questions about how specific actions might affect your character's alignment.","If you play a champion, your character's alignment must be one allowed for their deity and cause (pages 437–440 and 106–107), and if you play a cleric, your character's alignment must be one allowed for their deity (pages 437–440).",{"type":"pf2-h4","page":29,"name":"Good and Evil","entries":["Your character has a good alignment if they consider the happiness of others above their own and work selflessly to assist others, even those who aren't friends and family. They are also good if they value protecting others from harm, even if doing so puts the character in danger. Your character has an evil alignment if they're willing to victimize others for their own selfish gain, and even more so if they enjoy inflicting harm. If your character falls somewhere in the middle, they're likely neutral on this axis."],"source":"CRB"},{"type":"pf2-h4","page":29,"name":"Law and Chaos","entries":["Your character has a lawful alignment if they value consistency, stability, and predictability over flexibility.","Lawful characters have a set system in life, whether it's meticulously planning day-to-day activities, carefully following a set of official or unofficial laws, or strictly adhering to a code of honor. On the other hand, if your character values flexibility, creativity, and spontaneity over consistency, they have a chaotic alignment—though this doesn't mean they make decisions by choosing randomly.","Chaotic characters believe that lawful characters are too inflexible to judge each situation by its own merits or take advantage of opportunities, while lawful characters believe that chaotic characters are irresponsible and flighty.","Many characters are in the middle, obeying the law or following a code of conduct in many situations, but bending the rules when the situation requires it. If your character is in the middle, they are neutral on this axis."],"source":"CRB"},{"type":"pf2-h4","page":29,"name":"Changing Alignment","entries":["Alignment can change during play as a character's beliefs change, or as you realize that your character's actions reflect a different alignment than the one on your character sheet. In most cases, you can just change their alignment and continue playing. However, if you play a cleric or champion and your character's alignment changes to one not allowed for their deity (or cause, for champions), your character loses some of their class abilities until they atone (as described in the class)."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":29,"name":"Deity","entries":["Write down the deity your character worships, if any.","Champions and clerics must worship a deity. See pages 437–440 for more about Pathfinder's deities."],"source":"CRB"},{"type":"pf2-h3","page":29,"name":"Age","entries":["Decide your character's age and note it on the third page of the character sheet. The description for your character's ancestry in Chapter 2 gives some guidance on the age ranges of members of that ancestry. Beyond that, you can play a character of whatever age you like. There aren't any mechanical adjustments to your character for being particularly old, but you might want to take it into account when considering your starting ability scores and future advancement. Particularly young characters can change the tone of some of the game's threats, so it's recommended that characters are at least young adults."],"source":"CRB"},{"type":"pf2-h3","page":29,"name":"Gender and Pronouns","entries":["Characters of all genders are equally likely to become adventurers. Record your character's gender, if applicable, and their pronouns on the third page of the character sheet."],"source":"CRB"},{"type":"pf2-h3","page":29,"name":"Class DC","entries":["A class DC sets the difficulty for certain abilities granted by your character's class. This DC equals 10 plus their proficiency bonus for their class DC (+3 for most 1st-level characters) plus the modifier for the class's key ability score."],"source":"CRB"},{"type":"pf2-h3","page":29,"name":"Hero Points","entries":["Your character usually begins each game session with 1 Hero Point, and you can gain additional Hero Points during sessions by performing heroic deeds or devising clever strategies. Your character can use Hero Points to gain certain benefits, such as staving off death or rerolling a d20. See page 467 for more about Hero Points."],"source":"CRB"},{"type":"pf2-h3","page":29,"name":"Armor Class (AC)","entries":["Your character's Armor Class represents how difficult they are to hit in combat. To calculate your AC, add 10 plus your character's Dexterity modifier (up to their armor's Dexterity modifier cap; page 274), plus their proficiency bonus with their armor, plus their armor's item bonus to AC and any other permanent bonuses and penalties."],"source":"CRB"},{"type":"pf2-h3","page":29,"name":"Bulk","entries":["Your character's maximum Bulk determines how much weight they can comfortably carry. If they're carrying a total amount of Bulk that exceeds 5 plus their Strength modifier, they are encumbered. A character can't carry a total amount of Bulk that exceeds 10 plus their Strength modifier. The Bulk your character is carrying equals the sum of all of their items; keep in mind that 10 light items make up 1 Bulk. You can find out more about Bulk in Chapter 6: Equipment."],"source":"CRB"}],"step":"10","source":"CRB"}],"data":{"quickref":1},"source":"CRB"},{"type":"section","page":487,"name":"Characters With Disabilities","entries":["A player might want to create a character with a disability, or their character might end up with a disability over the course of play. Work with the player to find ways to respectfully represent the disability. Conditions such as blinded and deafened aren't a good fit for a character who has been living with a disability long-term. Here are suggestions for rules you might use for PCs with disabilities.",{"type":"pf2-h3","name":"Blindness or Impaired Vision"},"A blind character can't detect anything using vision, critically fails {@skill Perception} checks requiring sight, is immune to {@trait visual} effects, and can't be {@condition blinded} or {@condition dazzled}. You might give this character the {@feat Blind-Fight (Fighter)||Blind-Fight} feat for free.","A character with impaired vision might take a –2 to –4 penalty to vision-based {@skill Perception} checks. {@item Basic Corrective Lenses|LOTGB|Spectacles} or {@filter other corrective devices|items||source=|type=|Subcategory=Vision} might reduce or remove this.",{"type":"pf2-h3","name":"Deafness or Being Hard of Hearing"},"A deaf character can't detect anything using hearing, critically fails {@skill Perception} checks that require hearing, and is immune to {@trait auditory} effects. They have enough practice to supply verbal components for casting spells and command components for activating magic items, but if they perform an action they're not accustomed to that involves auditory elements, they must succeed at a DC {@flatDC 5} flat check or the action is lost. It's best to give them the {@feat Sign Language} feat for free, and you might give them {@feat Read Lips} as well. You might give one or more other characters in the group {@feat Sign Language} for free as well.","A hard-of-hearing character might take a –2 to –4 penalty to {@skill Perception} checks that are hearing-based. {@filter Corrective devices for hearing|items||Subcategory=Hearing} are less common than spectacles are in a typical Pathfinder world.",{"type":"pf2-h3","name":"Missing Limb"},"Some magic items require certain limbs or other body parts. It's fine to allow an alternative form of the item, turning boots into bracers for a character without legs, for example.","A character with a missing hand or arm might need to spend 2 actions to {@action Interact} with an item that requires two hands, or otherwise compensate. Using a two-handed weapon is not possible. A character can acquire a {@filter prosthetic hand or arm|items||source=|type=|subcategory=prosthesis} to compensate.","Someone missing a foot or leg might take a small penalty to Speed, but can typically acquire a prosthetic to compensate. If they have no legs, they might use a {@filter wheelchair|items||source=|type=|subcategory=wheelchair}, a dependable mount, or levitation or flight magic.",{"type":"pf2-h3","name":"Mental Illness and Chronic Illness"},"Some disabilities, such as mental illness and chronic illnesses, are best left to the player to roleplay. Mental illness is an especially fraught topic, with a history of insensitive portrayal. Be careful about the intentions of the player and the impact the presentation might have on other players."],"data":{"quickref":1},"source":"CRB"},{"type":"section","page":217,"name":"Familiars","entries":["Familiars are mystically bonded creatures tied to your magic. Most familiars were originally animals, though the ritual of becoming a familiar makes them something more. You can choose a Tiny animal you want as your familiar, such as a bat, cat, raven, or snake. Some familiars are different, usually described in the ability that granted you a familiar; for example, a druid's leshy familiar is a Tiny plant instead of an animal, formed from a minor nature spirit.","Familiars have the minion trait (page 634), so during an encounter, they gain 2 actions in a round if you spend an action to command them. If your familiar dies, you can spend a week of downtime to replace it at no cost.","You can have only one familiar at a time.",{"type":"pf2-h3","page":217,"name":"Modifiers and AC","entries":["Your familiar's save modifiers and AC are equal to yours before applying circumstance or status bonuses or penalties. Its Perception, {@skill Acrobatics}, and {@skill Stealth} modifiers are equal to your level plus your spellcasting ability modifier (Charisma if you don't have one, unless otherwise specified). If it attempts an attack roll or other skill check, it uses your level as its modifier. It doesn't have or use its own ability modifiers and can never benefit from item bonuses."],"source":"CRB"},{"type":"pf2-h3","page":217,"name":"Hit Points","entries":["Your familiar has 5 Hit Points for each of your levels."],"source":"CRB"},{"type":"pf2-h3","page":218,"name":"Size","entries":["Your familiar is Tiny."],"source":"CRB"},{"type":"pf2-h3","page":218,"name":"Senses","entries":["Your familiar has {@ability low-light vision} and can gain additional senses from familiar abilities. It can communicate empathically with you as long as it's within 1 mile of you, sharing emotions. It doesn't understand or speak languages normally, but it can gain speech from a familiar ability."],"source":"CRB"},{"type":"pf2-h3","page":218,"name":"Movement","entries":["Your familiar has either a Speed of 25 feet or a swim Speed of 25 feet (choose one upon gaining the familiar).","It can gain other movement types from familiar abilities."],"source":"CRB"},{"type":"pf2-h3","page":218,"name":"Familiar and Master Abilities","entries":["Each day, you channel your magic into two abilities, which can be either familiar or master abilities. If your familiar is an animal that naturally has one of these abilities (for instance, an owl has a fly Speed), you must select that ability. Your familiar can't be an animal that naturally has more familiar abilities than your daily maximum familiar abilities.",{"type":"pf2-h4","page":218,"name":"Familiar Abilities","entries":[{"type":"pf2-options","style":"pf2-p text-indent-subsequent block","items":[{"name":"Amphibious","entries":["It gains a swim Speed of 25 feet (or Speed of 25 feet if it already has a swim Speed)."]},{"name":"Burrower","entries":["It gains a burrow Speed of 5 feet, allowing it to dig Tiny holes."]},{"name":"Climber","entries":["It gains a climb Speed of 25 feet."]},{"name":"Damage Avoidance","entries":["Choose one type of save. It takes no damage when it succeeds at that type of save; this doesn't prevent effects other than damage."]},{"name":"Darkvision","entries":["It gains {@ability darkvision}."]},{"name":"Fast Movement","entries":["Increase one of the familiar's Speeds from 25 feet to 40 feet."]},{"name":"Flier","entries":["It gains a fly Speed of 25 feet."]},{"name":"Kinspeech","entries":["It can understand and speak with animals of the same species. To select this, your familiar must be an animal, it must have the speech ability, and you must be at least 6th level."]},{"name":"Lab Assistant","entries":["It can use your Quick Alchemy action. You must have Quick Alchemy, and your familiar must be in your space. This has the same cost and requirement as if you used it. It must have the manual dexterity ability to select this."]},{"name":"Manual Dexterity","entries":["It can use up to two of its limbs as if they were hands to use manipulate actions."]},{"name":"Scent","entries":["It gains {@ability scent} (imprecise, 30 feet)."]},{"name":"Speech","entries":["It understands and speaks a language you know."]}]}],"source":"CRB"},{"type":"pf2-h4","page":218,"name":"Master Abilities","entries":[{"type":"pf2-options","style":"pf2-p text-indent-subsequent block","items":[{"name":"Cantrip Connection","entries":["You can prepare an additional cantrip, or if you have a repertoire, instead designate a cantrip to add to your repertoire every time you select this ability; you can retrain it but can't otherwise change it. You must be able to prepare cantrips or add them to your repertoire to select this."]},{"name":"Extra Reagents","entries":["Your familiar grows extra infused reagents on or in its body. You gain an additional batch of infused reagents. You must have the infused reagents ability to select this ability."]},{"name":"Familiar Focus","entries":["Once per day, your familiar can use 2 actions with the {@trait concentrate} to regain 1 Focus Point, up to your usual maximum You must have a focus pool to select this."]},{"name":"Lifelink","entries":["If your familiar would be reduced to 0 HP by damage, as a reaction with the {@trait concentrate}, you can take the damage. If you do, you take all the damage and your familiar takes none. However, if special effects when a hit damages your familiar (such as snake venom) still apply to your familiar."]},{"name":"Spell Battery","entries":["You gain one additional spell slot at least 3 levels lower than your highest-level spell slot; you must be able to cast 4th-level spells using spell slots to select this master ability."]},{"name":"Spell Delivery","entries":["If your familiar is in your space, you can cast a spell with a range of touch, transfer its power to your familiar, and command the familiar to deliver the spell. If you do, the familiar uses its 2 actions for the round to move to a target of your choice and touch that target. If it doesn't reach the target to touch it this turn, the spell has no effect."]}]}],"source":"CRB"}],"source":"CRB"}],"data":{"quickref":1},"source":"CRB"},{"type":"section","page":31,"name":"Leveling Up","entries":["The world of Pathfinder is a dangerous place, and your character will face terrifying beasts and deadly traps on their journey into legend. With each challenge resolved, a character earns Experience Points (XP) that allow them to increase in level. Each level grants greater skill, increased resiliency, and new capabilities, allowing your character to face even greater challenges and go on to earn even more impressive rewards.","Each time your character reaches 1,000 Experience Points, their level increases by 1. On your character sheet, indicate your character's new level beside the name of their class, and deduct 1,000 XP from their XP total. If you have any Experience Points left after this, record them—they count toward your next level, so your character is already on their way to advancing yet again!","Next, return to your character's class entry. Increase your character's total Hit Points by the number indicated for your class. Then, take a look at the class advancement table and find the row for your character's new level.","Your character gains all the abilities listed for that level, including new abilities specific to your class and additional benefits all characters gain as they level up.","For example, all characters gain four ability boosts at 5th level and every 5 levels thereafter.","You can find all the new abilities specific to your class, including class feats, right in your class entry, though you can also use class feats to take an archetype (page 219).","Your character's class entry also explains how to apply any ability boosts and skill increases your character gains.","If they gain an ancestry feat, head back to the entry for your character's ancestry in Chapter 2 and select another ancestry feat from the list of options. If they gain a skill increase, refer to Chapter 4 when deciding which skill to apply it to. If they gain a general feat or a skill feat, you can choose from the feats listed in Chapter 5. If they can cast spells, see the class entry for details on adding spell slots and spells. It's also a good idea to review your character's spells in Chapter 7 and see if there are heightened versions they can now cast.","Once you've made all your choices for your character's new level, be sure to go over your character sheet and adjust any values that have changed. At a bare minimum, your proficiency bonuses all increase by 1 because you've gained a level, so your AC, attack rolls, Perception, saving throws, skill modifiers, spell attack rolls, and class DC all increase by at least 1. You might need to change other values because of skill increases, ability boosts, or class features that either increase your proficiency rank or increase other statistics at certain levels. If an ability boost increases your character's Constitution modifier, recalculate their maximum Hit Points using their new Constitution modifier (typically this adds 1 Hit Point per level). If an ability boost increases your character's Intelligence modifier, they become trained in an additional skill and language.","Some feats grant a benefit based on your level, such as Toughness, and these benefits are adjusted whenever you gain a level as well.","You can perform the steps in the leveling-up process in whichever order you want. For example, if you wanted to take the skill feat Intimidating Prowess as your skill feat at 10th level, but your character's Strength score was only 14, you could first increase their Strength score to 16 using the ability boosts gained at 10th level, and then take Intimidating Prowess as a skill feat at the same level.",{"type":"pf2-h3","page":31,"name":"Leveling-Up Checklist","entries":["Every time you gain a level, make sure you do each of the following:",{"type":"list","items":["Increase your level by 1 and subtract 1,000 XP from your XP total.","Increase your maximum Hit Points by the amount listed in your class entry in Chapter 3.","Add class features from your class advancement table, including ability boosts and skill increases.","Select feats as indicated on your class advancement table. For ancestry feats, see Chapter 2. For class feats, see your class entry in Chapter 3. For general feats and skill feats, see Chapter 5.","Add spells and spell slots if your class grants spellcasting. See Chapter 7 for spells.","Increase all of your proficiency bonuses by 1 from your new level, and make other increases to your proficiency bonuses as necessary from skill increases or other class features. Increase any other statistics that changed as a result of ability boosts or other abilities.","Adjust bonuses from feats and other abilities that are based on your level."]}],"source":"CRB"}],"data":{"quickref":1},"source":"CRB"}]},{"type":"entries","entries":[{"type":"section","page":532,"name":"Activating Items","entries":["Some items produce their effects only when used properly in the moment. Others always offer the same benefits as their mundane counterparts when worn, but have magical abilities you can gain by further spending actions. Either case requires you to use the Activate an Item activity. {@action Activate an Item||Activating an Item} works much like {@action Cast a Spell||Casting a Spell}, in that the activity takes a variable number of actions and can have different components depending on how you Activate the Item. This information appears in the item's Activate entry.","If an item is used up when activated, as is the case for consumable items, its Activate entry appears toward the top of the stat block. For permanent items with activated abilities, the Activate entry is a paragraph in the description. Activations are not necessarily magical—for instance, drinking an alchemical elixir isn't usually a magical effect.",{"type":"statblock","tag":"action","name":"Activate an Item","source":"CRB"},{"type":"pf2-brown-box","page":532,"name":"DISRUPTING ACTIVATIONS","entries":["Some abilities and effects can disrupt the process of {@action Activate an Item||Activating an Item}. If something disrupts your item activation, you fail to Activate the Item and lose the actions you committed. If the item can be activated only a certain number of times per day, the failed activation still counts against that limit. If an item requires you to spend actions to Sustain an Activation and one of those actions is disrupted, the item's effect ends."],"source":"CRB"},{"type":"pf2-h3","page":533,"name":"Activation Components","entries":["An item's activate entry lists the components required to activate its abilities. Each component adds certain traits to the Activate an Item activity, and some components have special requirements. The components that appear in this book are listed below.",{"type":"pf2-h4","page":533,"name":"Command","entries":["This component is a specific utterance you must make in a loud and strong voice. Activate an Item gains the auditory and {@trait concentrate}s. You must be able to speak to provide this component."],"source":"CRB"},{"type":"pf2-h4","page":533,"name":"Envision","entries":["This component is a specific image or phenomenon you need to imagine. Activate an Item gains the {@trait concentrate}."],"source":"CRB"},{"type":"pf2-h4","page":533,"name":"Interact","entries":["This component works like the Interact basic action.","Activate an Item gains the manipulate trait and requires you to use your hands, just like with any Interact action."],"source":"CRB"},{"type":"pf2-h4","page":533,"name":"Cast a Spell","entries":["If an item lists \"{@action Cast a Spell}\" after \"Activate,\" the activation requires you to use the {@action Cast a Spell} activity (described on page 302) to Activate the Item. This happens when the item replicates a spell. You must have a spellcasting class feature to Activate an Item with this activation component.","If the item can be used for a specific spell, the action icon for that spell is provided. If it's an item like a staff, which can be used for many spells, the icon is omitted, and you must refer to each spell to determine which actions you must spend to Activate the Item to cast it.","In this case, Activate an Item gains all the traits from the relevant components of the {@action Cast a Spell} activity."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":533,"name":"Limited Activations","entries":["Some items can be activated only a limited number of times per day, as described in the items. This limit is independent of any costs for activating the item. The limit resets during your daily preparations. The limit is inherent to the item, so if an ability that can be used only once per day is used, it doesn't refresh if another creature later invests or tries to activate the item."],"source":"CRB"},{"type":"pf2-brown-box","page":533,"name":"ITEM CATEGORIES","entries":["Items are grouped into the following categories, shown here with the page number where those items appear and a brief description of the category.",{"type":"list","items":["{@b {@filter Alchemical Items|items||source=CRB|category=Bomb;Poison;Elixir}} are powered by the reactions of alchemical reagents. Almost all alchemical items are consumable items that are used up when you activate them. This category includes bombs, elixirs (including mutagens), poisons, and alchemical tools.","{@b {@filter Ammunition|items||source=CRB|category=Ammunition}}, in Consumables, includes different types of magical arrows, crossbow bolts, and other types of ammunition.","{@b {@filter Apex Items|items||source=CRB|category=Apex}} are a subcategory of worn items of a high level that increase an ability score.","{@b {@filter Armor|items||source=CRB|category=armor}} includes the rules for basic magical armor as well as special suits of armor.","{@b {@filter Companion Items|items||source=CRB|category=companion}} are a category of worn items meant for animal companions and mounts.","{@b {@filter Consumables|items||source=CRB|category=consumable}} are used up when you activate them, and include ammunition, oils, potions, scrolls, and talismans, among others. Categories of items that are consumables but have specific rules, such as alchemical items, are presented separately.","{@b {@filter Held Items|items||source=CRB|category=held}} include a wide variety of items you use with your hands. This doesn't include more narrow categories of held items, such as weapons.","{@b {@filter Materials|items||source=CRB|category=material}} can be used to make items with unique properties and other advantages.","{@b {@filter Oils|items||source=CRB|category=oil}} are consumables applied to the surface of an object or person.","{@b {@filter Potions|items||source=CRB|category=potion}} are consumable magical liquids you drink to activate.","{@b {@filter Runes|items||source=CRB|category=rune}} modify armor and weapons when etched onto them. This section includes fundamental runes for weapons ({@item weapon potency (generic)||weapon potency} and {@item striking (generic)||striking}) and armor ({@item armor potency (generic)||armor potency} and {@item resilient (generic)||resilient}).","{@b {@filter Scrolls|items||source=CRB|category=scroll}} are consumables that allow spellcasters to cast more spells.","{@b {@filter Shields|items||source=CRB|category=shield}} include more durable shields and ones with special magical powers.","{@b {@filter Snares|items||source=CRB|category=snare}} are single-use traps typically made by rangers.","{@b {@filter Staves|items||source=CRB|category=staff}} provide flexible spellcasting options.","{@b {@filter Structures|items||source=CRB|category=structure}} include buildings, tents, and other larger items.","{@b {@filter Talismans|items||source=CRB|category=talisman}} are consumables that are affixed to items and then activated for a one-time combat or physical benefit.","{@b {@filter Wands|items||source=CRB|category=wand}} hold a spell of the crafter's choice, and can be used to repeatedly cast that spell.","{@b {@filter Weapons|items||source=CRB|category=weapon}} include the rules for basic magical weapons, weapons made from precious materials, and specific magic weapons.","{@b {@filter Worn Items|items||source=CRB|category=worn}} consist of a vast collection of clothing and other items you wear on your body."]}],"source":"CRB"},{"type":"pf2-h3","page":533,"name":"Sustaining Activations","entries":["Some items, once activated, have effects that can be sustained if you concentrate on them. This works much like the Sustain a Spell action (found on page 304). If an item's description states that you can sustain the effect, that effect lasts until the end of your turn in the round after you Activated the Item. You can use a Sustain an Activation action on that turn to extend the duration.",{"type":"statblock","tag":"action","name":"Sustain an Activation","source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":534,"name":"Dismissing Activations","entries":["Some item effects can be dismissed, ending the duration early due to you or the target taking action. Dismissing an activation requires using the Dismiss action.",{"type":"statblock","tag":"action","name":"Dismiss","source":"CRB"}],"source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":294,"name":"Animals","entries":["The Prices for animals are listed both for renting and for purchasing them outright. You usually need to pay for animal rentals up front, and if the vendor believes the animal might be put in danger, they typically require a deposit equal to the purchase Price. Most animals panic in battle. When combat begins, they become {@condition frightened||frightened 4} and {@condition fleeing} as long as they're {@condition frightened}. If you successfully {@action Command your Animal} using {@skill Nature}, you can keep it from fleeing, though this doesn't remove its frightened condition. If the animal is attacked or damaged, it returns to {@condition frightened||frightened 4} and {@condition fleeing}, with the same exceptions.","Warhorses and warponies are combat trained. They don't become {@condition frightened} or {@condition fleeing} during encounters in this way.",{"type":"statblock","tag":"table","name":"Animals","source":"CRB"},{"type":"pf2-h3","page":295,"name":"Barding","entries":["You can purchase special armor for animals, called barding (shown on {@table Barding||Table 6–18}). All animals have a trained proficiency rank in light barding, and combat-trained animals are trained in heavy barding. Barding uses the same rules as armor except for the following. The Price and Bulk of barding depend on the animal's size. Unlike for a suit of armor, barding's Strength entry is listed as a modifier, not a score. Barding can't be etched with magic runes, though special magical barding might be available.",{"type":"statblock","tag":"table","name":"Barding","source":"CRB"}],"source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":274,"name":"Armor","entries":[{"type":"pf2-h1-flavor","page":274,"entries":["{@i Armor increases your character's defenses, but some medium or heavy armor can hamper movement. If you want to increase your character's defense beyond the protection your armor provides, they can use a shield. Armor protects your character only while they're wearing it.}"],"source":"CRB"},{"type":"pf2-h2","page":274,"name":"Armor Class","entries":["Your {@b Armor Class} ({@b AC}) measures how well you can defend against attacks. When a creature attacks you, your Armor Class is the DC for that attack roll.",{"type":"pf2-inset","page":274,"entries":["Armor Class = 10 + Dexterity modifier (up to your armor's Dex Cap) + proficiency bonus + armor's item bonus to AC + other bonuses + penalties"],"source":"CRB"},"Use your proficiency bonus for the category (light, medium, or heavy) or the specific type of armor you're wearing. If you're not wearing armor, use your proficiency in unarmored defense."],"source":"CRB"},{"type":"pf2-h2","page":274,"name":"Donning and Removing Armor","entries":["Getting in and out of armor is time consuming—so make sure you're wearing it when you need it! Donning and removing armor are both activities involving many Interact actions. It takes 1 minute to don light armor, 5 minutes to don medium or heavy armor, and 1 minute to remove any armor."],"source":"CRB"},{"type":"pf2-h2","page":274,"name":"Armor Statistics","entries":["{@table Unarmored Defense||Table 6–3: Unarmored Defense} provides the statistics for the various forms of protection without wearing armor. {@table Armor||Table 6–4: Armor} provides the statistics for suits of armor that can be purchased and worn, organized by category. The columns in both tables provide the following statistics.",{"type":"pf2-h3","page":274,"name":"Category","entries":["The armor's category—unarmored, light armor, medium armor, or heavy armor—indicates which proficiency bonus you use while wearing the armor."],"source":"CRB"},{"type":"pf2-h3","page":274,"name":"AC Bonus","entries":["This number is the item bonus you add for the armor when determining Armor Class."],"source":"CRB"},{"type":"pf2-h3","page":274,"name":"Dexterity Modifier Cap (Dex Cap)","entries":["This number is the maximum amount of your Dexterity modifier that can apply to your AC while you are wearing a given suit of armor. For example, if you have a Dexterity modifier of +4 and you are wearing a suit of half plate, you apply only a +1 bonus from your Dexterity modifier to your AC while wearing that armor."],"source":"CRB"},{"type":"pf2-h3","page":274,"name":"Check Penalty","entries":["While wearing your armor, you take this penalty to Strength- and Dexterity-based skill checks, except for those that have the attack trait. If you meet the armor's Strength threshold (see Strength below), you don't take this penalty."],"source":"CRB"},{"type":"pf2-h3","page":274,"name":"Speed Penalty","entries":["While wearing a suit of armor, you take the penalty listed in this entry to your Speed, as well as to any other movement types you have, such as a climb Speed or swim Speed, to a minimum Speed of 5 feet. If you meet the armor's Strength threshold (see below), you reduce the penalty by 5 feet."],"source":"CRB"},{"type":"pf2-h3","page":274,"name":"Strength","entries":["This entry indicates the Strength score at which you are strong enough to overcome some of the armor's penalties. If your Strength is equal to or greater than this value, you no longer take the armor's check penalty, and you decrease the Speed penalty by 5 feet (to no penalty if the penalty was –5 feet, or to a –5-foot penalty if the penalty was –10 feet)."],"source":"CRB"},{"type":"pf2-h3","page":274,"name":"Bulk","entries":["This entry gives the armor's Bulk, assuming you're wearing the armor and distributing its weight across your body. A suit of armor that's carried or worn usually has 1 more Bulk than what's listed here (or 1 Bulk total for armor of light Bulk). An armor's Bulk is increased or decreased if it's sized for creatures that aren't Small or Medium in size, following the rules on page 295."],"source":"CRB"},{"type":"pf2-h3","page":274,"name":"Group","entries":["Each type of medium and heavy armor belongs to an armor group, which classifies it with similar types of armor. Some abilities reference armor groups, typically to grant armor specialization effects, which are described on page 275."],"source":"CRB"},{"type":"pf2-h3","page":274,"name":"Armor Traits","entries":["The traits for each suit of armor appear in this entry.","Armor can have the following traits.","{@b Bulwark:} The armor covers you so completely that it provides benefits against some damaging effects. On Reflex saves to avoid a damaging effect, such as a {@spell fireball}, you add a +3 modifier instead of your Dexterity modifier.","{@b Comfort:} The armor is so comfortable that you can rest normally while wearing it.","{@b Flexible:} The armor is flexible enough that it doesn't hinder most actions. You don't apply its check penalty to {@skill Acrobatics} or {@skill Athletics} checks.","{@b Noisy:} This armor is loud and likely to alert others to your presence when you're using the {@action Avoid Notice} exploration activity (page 479).",{"type":"statblock","tag":"table","name":"Unarmored Defense","source":"CRB"},{"type":"statblock","tag":"table","name":"Armor","source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":275,"name":"Armor Specialization Effects","entries":["Certain class features can grant you additional benefits with certain armors. This is called an armor specialization effect. The exact effect depends on which armor group your armor belongs to, as listed below. Only medium and heavy armors have armor specialization effects.","{@b Chain:} The armor is so flexible it can bend with a critical hit and absorb some of the blow. Reduce the damage from critical hits by either 4 + the value of the armor's potency rune for medium armor, or 6 + the value of the armor's potency rune for heavy armor. This can't reduce the damage to less than the damage rolled for the hit before doubling for a critical hit.","{@b Composite:} The numerous overlapping pieces of this armor protect you from piercing attacks. You gain resistance to piercing damage equal to 1 + the value of the armor's potency rune for medium armor, or 2 + the value of the armor's potency rune for heavy armor.","{@b Leather:} The thick second skin of the armor disperses blunt force to reduce bludgeoning damage. You gain resistance to bludgeoning damage equal to 1 + the value of the armor's potency rune for medium armor, or 2 + the value of the armor's potency rune for heavy armor.","{@b Plate:} The sturdy plate provides no purchase for a cutting edge. You gain resistance to slashing damage equal to 1 + the value of the armor's potency rune for medium armor, or 2 + the value of the armor's potency rune for heavy armor."],"source":"CRB"},{"type":"statblock","tag":"table","name":"Unarmored Defense","source":"CRB"},{"type":"statblock","tag":"table","name":"Armor","source":"CRB"},{"type":"pf2-brown-box","page":275,"name":"MATERIALS","entries":["Most suits of armor and weapons are made from ordinary, commonly available materials like iron, leather, steel, and wood. If you're not sure what a suit of armor is made of, the GM determines the details.","Some armor, shields, and weapons are instead made of precious materials. These often have inherent supernatural properties. Cold iron, for example, which harms fey, and silver can damage werecreatures. These materials are detailed beginning on page 577."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":275,"name":"Armor Descriptions","entries":["Each type of armor is described in more detail below.","{@b Breastplate:} Though referred to as a breastplate, this type of armor consists of several pieces of plate or half-plate armor (page 276) that protect the torso, chest, neck, and sometimes the hips and lower legs. It strategically grants some of the protection of plate while allowing greater flexibility and speed.","{@b Chain Mail:} A suit of chain mail consists of several pieces of armor composed of small metal rings linked together in a protective mesh. It typically includes a chain shirt, leggings, a pair of arms, and a coif, collectively protecting most of the body.","{@b Chain Shirt:} Sometimes called a hauberk, this is a long shirt constructed of the same metal rings as chainmail. However, it is much lighter than chainmail and protects only the torso, upper arms, and upper legs of its wearer.","{@b Explorer's Clothing:} Adventurers who don't wear armor travel in durable clothing. Though it's not armor and uses your unarmored defense proficiency, it still has a Dex Cap and can grant an item bonus to AC if etched with potency runes (as described on page 581).","{@b Full Plate:} Plate mail consists of interlocking plates that encase nearly the entire body in a carapace of steel. It is costly and heavy, and the wearer often requires help to don it correctly, but it provides some of the best defense armor can supply. A suit of this armor comes with an undercoat of padded armor (see below) and a pair of gauntlets (page 285).","{@b Half Plate:} Half plate consists of most of the upper body plates used in full plate, with lighter or sparser steel plate protection for the arms and legs. This provides some of the protection of full plate with greater flexibility and speed. A suit of this armor comes with an undercoat of padded armor (see below) and a pair of gauntlets (page 285).","{@b Hide:} A mix of furs, sturdy hide, and sometimes molded boiled leather, this armor provides protection due to its layers of leather, though its bulkiness slows the wearer down and decreases mobility.","{@b Leather:} A mix of flexible and molded boiled leather, a suit of this type of armor provides some protection with maximum flexibility.","{@b Padded Armor:} This armor is simply a layer of heavy, quilted cloth, but it is sometimes used because it's so inexpensive. Padded armor is easier to damage and destroy than other types of armor. Heavy armor comes with a padded armor undercoat included in its Price, though it loses the comfort trait when worn under heavy armor. You can wear just that padded armor undercoat to sleep in, if your heavy armor is destroyed, or when otherwise not wearing the full heavy armor. This allows you to keep the armor invested and benefit from the power of any runes on the associated heavy armor, but no one else can wear your heavy armor without the padded undercoat.","{@b Scale Mail:} Scale mail consists of many metal scales sewn onto a reinforced leather backing, often in the form of a long shirt that protects the torso, arms, and legs.","{@b Splint Mail:} This type of armor is chain mail reinforced with flexible, interlocking metal plates, typically located on the wearer's torso, upper arms, and legs. A suit of this armor comes with an undercoat of padded armor (see above) and a pair of gauntlets (page 285).","{@b Studded Leather:} This leather armor is reinforced with metal studs and sometimes small metal plates, providing most of the flexibility of leather armor with more robust protection.",{"type":"statblock","tag":"table","name":"Damaging Armor","source":"CRB"}],"source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":271,"name":"Carrying and Using Items","entries":["A character carries items in three ways: held, worn, and stowed. Held items are in your hands; a character typically has two hands, allowing them to hold an item in each hand or a single two-handed item using both hands. Worn items are tucked into pockets, belt pouches, bandoliers, weapon sheaths, and so forth, and they can be retrieved and returned relatively quickly. Stowed items are in a backpack or a similar container, and they are more difficult to access.","Drawing a worn item or changing how you're carrying an item usually requires you to use an {@action Interact} action (though to drop an item, you use the {@action Release} action instead). {@table Changing Equipment||Table 6–2: Changing Equipment} lists some ways that you might change the items you're holding or carrying, and the number of hands you need to do so.","Many ways of using items require you to spend multiple actions. For example, drinking a potion stowed in your belt pouch requires using an {@action Interact} action to draw it and then using a second action to drink it as described in its {@action Activate an Item||Activate} entry.",{"type":"pf2-h3","page":271,"name":"Bulk","entries":["Carrying especially heavy or unwieldy items can make it more difficult for you to move, as can overloading yourself with too much gear. The Bulk value of an item reflects how difficult the item is to handle, representing its size, weight, and general awkwardness. If you have a high Strength score, you usually don't need to worry about Bulk unless you're carrying numerous substantial items.",{"type":"pf2-h4","page":272,"name":"Bulk Limits","entries":["You can carry an amount of Bulk equal to 5 plus your Strength modifier without penalty; if you carry more, you gain the encumbered condition. You can't hold or carry more Bulk than 10 plus your Strength modifier.",{"type":"pf2-beige-box","page":272,"name":"Encumbered","entries":["You are carrying more weight than you can manage. While you're {@condition encumbered}, you're {@condition clumsy} 1 and take a –10-foot penalty to all your Speeds. As with all penalties to your Speed, this can't reduce your Speed below 5 feet."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h4","page":272,"name":"Bulk Values","entries":["Items can have a number to indicate their Bulk value, or they can be light (indicated by an L) or negligible (indicated by a—) for the purpose of determining Bulk. For instance, {@item full plate} armor is 4 Bulk, a {@item longsword} is 1 Bulk, a dagger or scroll is light, and a piece of chalk is negligible. Ten light items count as 1 Bulk, and you round down fractions (so 9 light items count as 0 Bulk, and 11 light items count as 1 Bulk). Items of negligible Bulk don't count toward Bulk unless you try to carry vast numbers of them, as determined by the GM."],"source":"CRB"},{"type":"pf2-h4","page":272,"name":"Estimating an Item's Bulk","entries":["As a general rule, an item that weighs 5 to 10 pounds is 1 Bulk, an item weighing less than a few ounces is negligible, and anything in between is light. Particularly awkward or unwieldy items might have higher Bulk values. For example, a 10-foot pole isn't heavy, but its length makes it difficult for you to move while you have one on your person, so its Bulk is 1. Items made for larger or smaller creatures have greater or lesser Bulk, as described on page 295."],"source":"CRB"},{"type":"pf2-h4","page":272,"name":"Bulk of Coins","entries":["Coins are a popular means of exchange due to their portability, but they can still add up. A thousand coins of any denomination or combination of denominations count as 1 Bulk. It's not usually necessary to determine the Bulk of coins in fractions of 1,000; simply round down fractions of 1,000. In other words, 100 coins don't count as a light item, and 1,999 coins are 1 Bulk, not 2."],"source":"CRB"},{"type":"pf2-h4","page":272,"name":"Bulk of Creatures","entries":["You might need to know the Bulk of a creature, especially if you need to carry someone off the battlefield. The table that follows lists the typical Bulk of a creature based on its size, but the GM might adjust this number.",{"type":"table","page":272,"colStyles":["text-center","text-center"],"rows":[["Size of Creature","Bulk"],["{@trait Tiny}","1"],["{@trait Small}","3"],["{@trait Medium}","6"],["{@trait Large}","12"],["{@trait Huge}","24"],["{@trait Gargantuan}","48"]],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h4","page":272,"name":"Dragging","entries":["In some situations, you might drag an object or creature rather than carry it. If you're dragging something, treat its Bulk as half. Typically, you can drag one thing at a time, you must use both hands to do so, and you drag slowly—roughly 50 feet per minute unless you have some means to speed it up. Use the total Bulk of what you're dragging, so if you have a sack laden with goods, use the sum of all the Bulk it carries instead of an individual item within."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":272,"name":"Wielding Items","entries":["Some abilities require you to wield an item, typically a weapon. You're wielding an item any time you're holding it in the number of hands needed to use it effectively. When wielding an item, you're not just carrying it around—you're ready to use it. Other abilities might require you to merely carry or have an item. These apply as long as you have the item on your person; you don't have to wield it."],"source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":271,"name":"Coins and Currency","entries":["Though you might be able to barter valuable items in some areas, currency is the most versatile way to make transactions when you head to market. The most common currency is coins. For most commoners and beginning adventurers, the standard unit is the {@b silver piece} ({@b sp}). Each silver piece is a standard weight of silver and is typically accepted by any merchant or kingdom no matter where it was minted. There are three other common types of coins, each likewise standardized in weight and value. The first is the {@b copper piece} ({@b cp}). Each copper piece is worth one-tenth of a silver piece. The {@b gold piece} ({@b gp}) is often used for purchasing magic items and other expensive items, as 1 gold piece is worth 10 silver pieces or 100 copper pieces. The {@b platinum piece} ({@b pp}) is used by nobles to demonstrate their wealth, for the purchase of very expensive items, or simply as a way to easily transport large sums of currency. A platinum piece is worth 10 gold pieces, 100 silver pieces, or 1,000 copper pieces. See {@table Coin Values||Table 6–1: Coin Values} for the exchange rates of common types of coins.",{"type":"pf2-h3","page":271,"name":"Other Currency","entries":["Art objects, gems, and raw materials (such as those used for the {@action Craft} activity) can be used much like currency: you can sell them for the same Price you can buy them."],"source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":531,"name":"Constant Abilities","entries":["Some magic items have abilities that always function. You don't have to use any actions to do anything special (beyond wearing and investing a worn item or wielding a held item) to make these abilities work. For example, an {@item everburning torch} always sheds light, and a {@item flaming} weapon deals fire damage every time it deals damage."],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":293,"name":"Formulas","entries":["Formulas are instructions for making items with the {@action Craft} activity. You can usually read a formula as long as you can read the language it's written in, though you might lack the skill to {@action Craft} the item. Often, alchemists and crafting guilds use obscure languages or create codes to protect their formulas from rivals.","You can buy common formulas at the Price listed on {@table formulas||Table 6–13}, or you can hire an NPC to let you copy their formula for the same Price. A purchased formula is typically a schematic on rolled-up parchment of light Bulk. You can copy a formula into your formula book in 1 hour, either from a schematic or directly from someone else's formula book. If you have a formula, you can {@action Craft} a copy of it using the {@skill Crafting} skill. Formulas for uncommon items and rare items are usually significantly more valuable—if you can find them at all!","If you have an item, you can try to reverse-engineer its formula. This uses the Craft activity and takes the same amount of time as creating the item from a formula would. You must first disassemble the item. After the base downtime, you attempt a {@skill Crafting} check against the same DC it would take to {@action Craft} the item. If you succeed, you {@action Craft} the formula at its full Price, and you can keep working to reduce the Price as normal. If you fail, you're left with raw materials and no formula. If you critically fail, you also waste 10% of the raw materials you'd normally be able to salvage.","The item's disassembled parts are worth half its Price in raw materials and can't be reassembled unless you successfully reverse-engineer the formula or acquire the formula another way. Reassembling the item from the formula works just like {@action Craft||Crafting} it from scratch; you use the disassembled parts as the necessary raw materials.",{"type":"statblock","tag":"table","name":"Formulas","source":"CRB"},{"type":"pf2-h3","page":293,"name":"Items with Multiple Types","entries":["If an item has multiple types of different levels, each type has its own formula, and you need the formula for the specific type of item you want to Craft. For example, {@i if you have a formula for a type I bag of holding but not for a type II bag of holding, you must acquire a separate formula to Craft a type II bag of holding.}"],"source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":531,"name":"Investing Magic Items","entries":["Certain magic items convey their magical benefits only when worn and invested using the Invest an Item activity, tying them to your inner potential. These items have the invested trait. Many invested items have constant abilities that function all the time or that always trigger when you use the item—but only when they're invested. If you don't have an item invested, these abilities don't work. If an invested item can be activated, you must have invested the item to activate it.","You can benefit from no more than 10 invested magic items each day. Because this limit is fairly high, and because it matters only for worn items, you probably won't need to worry about reaching the limit until higher levels, when you've acquired many useful magic items to wear.","You can still gain the mundane benefits of an item if you don't invest it. A suit of {@i +1 resilient armor} still gives you its item bonus to AC when not invested, but it doesn't give its magical bonus to saving throws, and {@item winged boots} still protect your feet even though you can't activate them to fly. Entirely non-magical items don't need to be invested.",{"type":"statblock","tag":"action","name":"Invest an Item","source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":272,"name":"Item Damage","entries":["An item can be broken or destroyed if it takes enough damage. Every item has a {@b Hardness} value. Each time an item takes damage, reduce any damage the item takes by its Hardness. The rest of the damage reduces the item's Hit Points. Normally an item takes damage only when a creature is directly attacking it—commonly targeted items include doors and traps. A creature that attacks you doesn't normally damage your armor or other gear, even if it hits you. However, the {@feat Shield Block} reaction can cause your shield to take damage as you use it to prevent damage to yourself, and some monsters have exceptional abilities that can damage your items.","An item that takes damage can become and eventually destroyed. It becomes broken when its Hit Points are equal to or lower than its {@b Broken Threshold} ({@b BT}); once its Hit Points are reduced to 0, it is {@b destroyed}. A broken item has the broken condition until Repaired above its Broken Threshold. Anything that automatically makes an item broken immediately reduces its Hit Points to its Broken Threshold if the item had more Hit Points than that when the effect occurred. If an item has no {@condition Broken} Threshold, then it has no relevant changes to its function due to being broken, but it's still destroyed at 0 Hit Points. (See the broken condition definition on page 273 for more information.) A destroyed item can't be Repaired.","An item's Hardness, Hit Points, and {@condition Broken} Threshold usually depend on the material the item is made of. This information appears on page 577.",{"type":"pf2-beige-box","page":273,"name":"Broken","entries":["Broken is a condition that affects objects. An object is broken when damage has reduced its Hit Points to equal or less than its Broken Threshold. A broken object can't be used for its normal function, nor does it grant bonuses— with the exception of armor. Broken armor still grants its item bonus to AC, but it also imparts a status penalty to AC depending on its category: –1 for broken light armor, –2 for broken medium armor, or –3 for broken heavy armor.","A {@condition broken} item still imposes penalties and limitations normally incurred by carrying, holding, or wearing it. For example, broken armor would still impose its Dexterity modifier cap, check penalty, and so forth.","If an effect makes an item {@condition broken} automatically and the item has more HP than its Broken Threshold, that effect also reduces the item's current HP to the Broken Threshold."],"source":"CRB"},{"type":"pf2-h3","page":273,"name":"Object Immunities","entries":["Inanimate objects and hazards are immune to bleed, death effects, disease, healing, mental effects, necromancy, nonlethal attacks, and poison, as well as the doomed, drained, fatigued, paralyzed, sickened, and unconscious conditions. An item that has a mind is not immune to mental effects. Many objects are immune to other conditions, at the GM's discretion. For instance, a sword has no Speed, so it can't take a penalty to its Speed, but an effect that causes a Speed penalty might work on a moving blade trap."],"source":"CRB"},{"type":"statblock","tag":"table","name":"Changing Equipment","source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":271,"name":"Item Level","entries":["Each item has an item level, which represents the item's complexity and any magic used in its construction. Simpler items with a lower level are easier to construct, and you can't Craft items that have a higher level than your own (page 243). If an item's level isn't listed, its level is 0. While characters can use items of any level, GMs should keep in mind that allowing characters access to items far above their current level may have a negative impact on the game."],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":295,"name":"Items and Sizes","entries":["The Bulk rules in this chapter are for {@trait Small} and {@trait Medium} creatures, as the items are made for creatures of those sizes. Large creatures can carry more, and smaller creatures can carry less, as noted on {@table Bulk Conversions||Table 6–19}.","These rules for Bulk limits come up most often when a group tries to load up a mount or animal companion. The rules for items of different sizes tend to come into play when the characters defeat a big creature that has gear, since in most cases, the only creatures of other sizes are creatures under the GM's control. In most cases, Small or Medium creatures can wield a Large weapon, though it's unwieldy, giving them the clumsy 1 condition, and the larger size is canceled by the difficulty of swinging the weapon, so it grants no special benefit. Large armor is simply too large for Small and Medium creatures.",{"type":"pf2-h3","page":295,"name":"Bulk Conversions for Different Sizes","entries":["As shown in {@table Bulk Conversions||Table 6–19}, {@trait Large} or larger creatures are less encumbered by bulky items than {@trait Small} or {@trait Medium} creatures, while {@trait Tiny} creatures become overburdened more quickly. A {@trait Large} creature treats 10 items of 1 Bulk as 1 Bulk, a {@trait Huge} creature treats 10 items of 2 Bulk as 1 Bulk, and so on. A {@trait Tiny} creature treats 10 items of negligible Bulk as 1 Bulk. Negligible items work in a similar way—a {@trait Huge} creature treats items of 1 Bulk as negligible, so it can carry any number of items of 1 Bulk. A {@trait Tiny} creature doesn't treat any items as having negligible Bulk.",{"type":"statblock","tag":"table","name":"Bulk conversions","source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":295,"name":"Items of Different Sizes","entries":["Creatures of sizes other than {@trait Small} or {@trait Medium} need items appropriate to their size. These items have different Bulk and possibly a different Price. {@table Differently Sized Items||Table 6 –20} provides the Price and Bulk conversion for such items.",{"type":"statblock","tag":"table","name":"Differently Sized Items","source":"CRB"},"For example, a {@item morningstar} sized for a {@trait Medium} creature has a Price of 1 gp and 1 Bulk, so one made for a {@trait Huge} creature has a Price of 4 gp and 4 Bulk. One made for a {@trait Tiny} creature still costs 1 gp (due to its intricacy) and has 1/2 Bulk, which rounds down to light Bulk.","Because the way that a creature treats Bulk and the Bulk of gear sized for it scale the same way, {@trait Tiny} or {@trait Large} (or larger) creatures can usually wear and carry about the same amount of appropriately sized gear as a {@trait Medium} creature.","Higher-level magic items that cost significantly more than 8 times the cost of a mundane item can use their listed Price regardless of size. Precious materials, however, have a Price based on the Bulk of the item, so multiply the Bulk value as described on {@table Differently Sized Items||Table 6 –20}, then use the formula in the precious material's entry to determine the item's Price. See page 578 for more information."],"source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":271,"name":"Price","entries":["Most items in the following tables have a Price, which is the amount of currency it typically takes to purchase that item. An item with a Price of \"—\" can't be purchased. An item with a Price of 0 is normally free, but its value could be higher based on the materials used to create it. Most items can be sold for half their Price, but coins, gems, art objects, and raw materials (such as components for the Craft activity) can be exchanged for their full Price.",{"type":"pf2-key-box","page":271,"name":"STARTING MONEY","entries":[{"type":"pf2-title","name":"15 GP (150 SP)"}],"source":"CRB"},{"type":"statblock","tag":"table","name":"Coin Values","source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":580,"name":"Runes","entries":["Most magic weapons and armor gain their enhancements from potent eldritch runes etched into them. These runes allow for in-depth customization of items.","Runes must be physically engraved on items through a special process to convey their effects. They take two forms:","fundamental runes and property runes. Fundamental runes offer the most basic and essential benefits: a {@item weapon potency (generic)||weapon potency} rune adds a bonus to a weapon's attack rolls, and the {@item striking (generic)||striking} rune adds extra weapon damage dice. An {@item armor potency (generic)||armor potency} rune increases the armor's item bonus to AC, and the {@item resilient (generic)||resilient} rune grants a bonus to the wearer's saving throws. Property runes, by contrast, grant more varied effects—typically powers that are constant while the armor is worn or that take effect each time the weapon is used, such as a rune that grants energy resistance or one that adds fire damage to a weapon's attacks.","The number of property runes a weapon or armor can have is equal to the value of its potency rune. A +1 weapon can have one property rune, but it could hold another if the {@item +1 weapon potency} rune were upgraded to a {@item +2 weapon potency} rune. Since the {@item striking (generic)||striking} and {@item resilient (generic)||resilient} runes are fundamental runes, they don't count against this limit.","An item with runes is typically referred to by the value of its potency rune, followed by any other fundamental runes, then the names of any property runes, and ends with the name of the base item. For example, you might have a {@runeItem longsword||+1 weapon potency|} or {@runeItem chain mail||+2 armor potency||greater resilient||fire-resistant|}.","Rune-etched armor and weapons have the same Bulk and general characteristics as the non-magical version unless noted otherwise. The level of an item with runes etched onto it is equal to the highest level among the base item and all runes etched on it; therefore, a {@runeItem mace||+1 weapon potency||striking|} (a 4th-level item) with a {@item disrupting} rune (a 5th-level rune) would be a 5th-level item.","Each rune can be etched into a specific type of armor or weapon, as indicated in the Usage entry of the rune's stat block. Explorer's clothing can have armor runes etched on it even though it's not armor, but because it's not in the light, medium, or heavy armor category, it can't have runes requiring any of those categories.",{"type":"pf2-h3","page":580,"name":"Investiture","entries":["If a suit of armor has any runes, it has the {@trait invested} trait, requiring you to invest it to get its magical benefits."],"source":"CRB"},{"type":"pf2-h3","page":580,"name":"Rune Formulas","entries":["The Price of a rune's formula is the same as the Price of a formula for an item of the same level; it can be acquired in the same way as an {@quickref item formula||1|formulas}."],"source":"CRB"},{"type":"pf2-h3","page":580,"name":"The Etching Process","entries":["Etching a rune on an item follows the same process as using the {@action Craft} activity to make an item. You must have the formula for the rune, the item you're adding the rune to must be in your possession throughout the etching process, and you must meet any special Craft Requirements of the rune. The rune has no effect until you complete the {@action Craft} activity. You can etch only one rune at a time.",{"type":"pf2-h4","page":580,"name":"Transferring Runes","entries":["You can transfer runes between one item and another, including a {@item runestone}. This also uses the {@action Craft} activity. This lets you either move one rune from one item to another or swap a rune on one item with a rune on the other item. To swap, the runes must be of the same form (fundamental or property).","If an item can have two or more property runes, you decide which runes to swap and which to leave when transferring. If you attempt to transfer a rune to an item that can't accept it, such as transferring a melee weapon rune to a ranged weapon, you get an automatic critical failure on your {@action craft||Crafting} check. If you transfer a potency rune, you might end up with property runes on an item that can't benefit from them. These property runes go dormant until transferred to an item with the necessary potency rune or until you etch the appropriate potency rune on the item bearing them.","The DC of the {@skill Crafting} check to transfer a rune is determined by the item level of the rune being transferred, and the Price of the transfer is 10% of the rune's Price, unless transferring from a {@item runestone}, which is free. If you're swapping, use the higher level and higher Price between the two runes to determine these values. It takes 1 day (instead of the 4 days usually needed to Craft) to transfer a rune or swap a pair of runes, and you can continue to work over additional days to get a discount, as usual with Craft."],"data":{"quickrefIndex":true},"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":580,"name":"Fundamental Runes","entries":["Four fundamental runes produce the most essential magic of protection and destruction: {@item armor potency (generic)||armor potency} and {@item resilient (generic)||resilient} runes for armor, and {@item weapon potency (generic)||weapon potency} and {@item striking (generic)||striking} runes for weapons. A potency rune is what makes a weapon a magic weapon (page 599) or armor magic armor (page 556).","An item can have only one fundamental rune of each type, though etching a stronger rune can upgrade an existing rune to the more powerful version (as described in each rune's entry). As you level up, you typically alternate between increasing an item's potency rune and its {@item striking (generic)||striking} or {@item resilient (generic)||resilient} rune when you can afford to.",{"type":"statblock","tag":"table","name":"Fundamental Runes","source":"CRB"}],"source":"CRB"},{"type":"pf2-brown-box","page":581,"name":"SPECIFIC ARMOR AND WEAPONS","entries":["Unlike armor and weapons enhanced with runes, specific armor and weapons (such as {@item ghoul hide} or a {@item holy avenger}) are created for a specific purpose and can work quite differently from other items of their type. Specific magic armor and weapons can't gain property runes, but you can add or improve their fundamental runes."],"source":"CRB"},{"type":"pf2-brown-box","page":581,"name":"RUNE TRANSFER EXAMPLES","entries":["You could transfer a {@item flaming} rune from a {@runeItem greatsword||+1 weapon potency||striking||flaming|} to a {@runeItem longsword||+2 weapon potency||striking|}, resulting in a {@runeItem longsword||+2 weapon potency||striking||flaming|} and a {@runeItem greatsword||+1 weapon potency||striking|}. You could swap the weapon potency runes from a {@runeItem longsword||+1 weapon potency} and a {@runeItem greatsword||+2 weapon potency}, resulting in a {@runeItem longsword||+2 weapon potency} and a {@runeItem greatsword||+1 weapon potency}. However, you couldn't swap a {@item +1 weapon potency} rune from one weapon with a {@item flaming} property rune from another weapon, as the two runes don't have the same form.","When transferring a rune to an item that can hold multiple property runes, you can decide whether you transfer a single rune or swap runes between the items.","For example, a +2 weapon can hold two property runes. If you transferred a {@item flaming} rune from a {@runeItem rapier||+1 weapon potency||striking||flaming|} to a {@runeItem warhammer||+2 weapon potency||striking||frost|}, you would decide whether you wanted to end up with a {@runeItem rapier||+1 weapon potency||striking|} and a {@runeItem warhammer||+2 weapon potency||striking||flaming||frost|} or a {@runeItem rapier||+1 weapon potency||striking||frost|} and a {@runeItem warhammer||+2 weapon potency||striking||flaming|}."],"source":"CRB"},{"type":"pf2-brown-box","page":582,"name":"UPGRADING ARMOR AND WEAPON RUNES","entries":["You'll often want to upgrade the fundamental runes of magic armor or a magic weapon you already have. This requires upgrading each rune separately. Tables 11–5 and 11–6 summarize the Price of each step, with a number in parentheses indicating the item's level for the Craft activity. This also indicates the typical progression for an adventurer to follow when upgrading their armor and weapons. The tables here don't include progressions that aren't as likely to come up, like turning a +1 weapon directly into a +1 greater striking weapon.",{"type":"statblock","tag":"table","name":"Armor Upgrade Prices","source":"CRB"},{"type":"statblock","tag":"table","name":"Weapon Upgrade Price","source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":582,"name":"Property Runes","entries":["Property runes add special abilities to armor or a weapon in addition to the item's fundamental runes. If a suit of armor or a weapon has multiple etchings of the same rune, only the highest-level one applies. You can upgrade a property rune to a higher-level type of that rune in the same way you would upgrade a fundamental rune.","Rune abilities that must be activated follow the rules for activating magic items on page 532."],"source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":564,"name":"Scrolls","entries":["A scroll contains a single spell that you can cast without having to expend a spell slot. A scroll can be Crafted to contain nearly any spell, so the types of scrolls available are limited only by the number of spells in the game. The exceptions are cantrips, focus spells, and rituals, none of which can be put on scrolls. The spell on a scroll can be cast only once, and the scroll is destroyed as part of the casting. The spell on the scroll is cast at a particular spell level, as determined by the scroll. For instance, a scroll of {@spell magic missile} (1st level) can be used to cast the 1st-level version of magic missile, but not a magic missile heightened to 2nd level. If no level is listed, the scroll can be used to cast the spell at its lowest level.","If you find a scroll, you can try to figure out what spell it contains. If the spell is a common spell from your spell list or a spell you know, you can spend a single {@action Recall Knowledge} action and automatically succeed at identifying the scroll's spell. If it's not, you must use {@action Identify Magic} to learn what spell the scroll holds.",{"type":"pf2-h4","page":564,"name":"Casting a Spell from a Scroll","entries":["{@action Cast a Spell||Casting a Spell} from a scroll requires holding the scroll in one hand and activating it with a {@action Cast a Spell} activity using the normal number of actions for that spell.","To {@action Cast a Spell} from a scroll, the spell must appear on your spell list. Because you're the one {@action Cast a Spell||Casting the Spell}, use your spell attack roll and spell DC. The spell also gains the appropriate trait for your tradition (arcane, divine, occult, or primal).","Any physical material components and costs are provided when a scroll is created, so you don't need to provide them when {@action Cast a Spell||Casting a Spell} from a scroll. You must replace any required material component for that spell with a somatic component. If the spell requires a focus, you must have that focus to {@action Cast a Spell||Cast the Spell} from a scroll."],"source":"CRB"},{"type":"pf2-h4","page":564,"name":"Scroll Statistics","entries":["All scrolls have the same base statistics unless noted otherwise. A scroll has light Bulk, and it must be held in one hand to be activated."],"source":"CRB"},{"type":"pf2-h4","page":565,"name":"Varying Statistics","entries":["Table 11–3 indicates the item level and Price of a scroll, both of which are based on the level of the spell contained on the scroll. Any costs to {@action Cast a Spell||Cast the Spell} are added to the scroll's Price when the scroll is crafted, so a scroll containing a spell with a Cost entry will have a higher Price than what appears on the table. The scroll's rarity matches the spell's rarity.","The traits for a scroll vary based on the spell it contains.","A scroll always has the consumable, magical, and scroll traits, plus the traits of the spell stored on it."],"source":"CRB"},{"type":"statblock","tag":"table","name":"Scroll Statistics","source":"CRB"},{"type":"pf2-h4","page":565,"name":"Crafting a Scroll","entries":["The process to {@action Craft} a scroll is much like that to {@action Craft} any other magic item. When you begin the crafting process, choose a spell to put into the scroll. You have to either {@action Cast a Spell||Cast that Spell} during the crafting process, or someone else must do so in your presence. {@action Cast a Spell||Casting that Spell} doesn't produce its normal effects; instead, the magic is trapped inside the scroll. The casting must come from a spellcaster expending a spell slot.","You can't {@action Craft} a scroll from a spell produced from another magic item, for example. The caster has to provide any cost of the spell.","Like other {@trait consumable||consumables}, scrolls can be crafted in batches of four. All scrolls of one batch must contain the same spell at the same level, and you must provide one casting for each scroll crafted."],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h4","page":565,"name":"Sample Scrolls","entries":["A wide variety of spells can appear on scrolls. The following specific scrolls are just examples.",{"type":"data","tag":"item","data":{"name":"Scroll of Illusory Disguise","source":"CRB","page":565,"type":"Item","level":1,"traits":["consumable","illusion","magical","scroll"],"price":{"coin":"gp","amount":3},"usage":"held in 1 hand","bulk":"L","activate":{"activity":{"number":2,"unit":"action"},"components":"{@action Cast a Spell}"},"category":"Scroll","entries":["This scroll can cast {@spell illusory disguise} as a 1st-level spell."],"craftReq":"Supply one casting of illusory disguise."}},{"type":"data","tag":"item","data":{"name":"Scroll of Glitterdust","source":"CRB","page":565,"type":"Item","level":3,"traits":["consumable","evocation","magical","scroll"],"price":{"coin":"gp","amount":12},"usage":"held in 1 hand","bulk":"L","activate":{"activity":{"number":2,"unit":"action"},"components":"{@action Cast a Spell}"},"category":"Scroll","entries":["This scroll can be used to cast {@spell glitterdust} as a 2nd-level spell."],"craftReq":"Supply one casting of glitterdust."}}],"source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":294,"name":"Services","entries":["The services listed on {@table Basic Services and Consumables||Table 6–14} describe expenditures for common services and consumables.",{"type":"statblock","tag":"table","name":"Basic Services and Consumables","source":"CRB"},{"type":"pf2-h3","page":294,"name":"Hirelings","entries":["Paid laborers can provide services for you. Unskilled hirelings can perform simple manual labor and are untrained at most skills. Skilled hirelings have expert proficiency in a particular skill. Hirelings are level 0. If a skill check is needed, an untrained hireling has a +0 modifier, while a skilled hireling has a +4 modifier in their area of expertise and +0 for other skill checks. Hirelings' rates double if they're going adventuring with you."],"source":"CRB"},{"type":"pf2-h3","page":294,"name":"Transportation","entries":["The cost to hire transportation includes standard travel with no amenities. Most transit services provide basic sleeping arrangements, and some provide meals at the rates listed on Table 6–14. Arranging transportation into dangerous lands can be more expensive or impossible."],"source":"CRB"},{"type":"pf2-h3","page":294,"name":"Spellcasting","entries":["Spellcasting services, listed on {@table Spellcasting Services||Table 6–15}, are uncommon. Having a spell cast for you requires finding a spellcaster who knows and is willing to cast it. It's hard to find someone who can cast higher-level spells, and uncommon spells typically cost at least 100% more, if you can find someone who knows them at all. Spells that take a long time to cast (over 1 minute) usually cost 25% more. You must pay any cost listed in the spell in addition to the Price on the table.",{"type":"statblock","tag":"table","name":"Spellcasting Services","source":"CRB"}],"source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":277,"name":"Shields","entries":[{"type":"pf2-h1-flavor","page":277,"entries":["{@i A shield can increase your character's defense beyond the protection their armor provides. Your character must be wielding a shield in one hand to make use of it, and it grants its bonus to AC only if they use an action to Raise a Shield. This action grants the shield's bonus to AC as a circumstance bonus until their next turn starts. A shield's Speed penalty applies whenever your character is holding the shield, whether they have raised it or not.}"],"source":"CRB"},"{@action Raise a Shield} is the action most commonly used with shields. Most shields must be held in one hand, so you can't hold anything with that hand and {@action Raise a Shield}. A {@item buckler}, however, doesn't take up your hand, so you can {@action Raise a Shield} with a {@item buckler} if the hand is free (or, at the GM's discretion, if it's holding a simple, lightweight object that's not a weapon). You lose the benefits of {@action Raise a Shield} if that hand is no longer free.","When you have a {@item tower shield} raised, you can use the {@action Take Cover} action to increase the circumstance bonus to AC to +4. This lasts until the shield is no longer raised. If you would normally provide {@quickref lesser cover||3|cover} against an attack, having your tower shield raised provides {@quickref standard cover||3|cover} against it (and other creatures can {@action Take Cover} as normal using the cover from your shield).","If you have access to the {@feat Shield Block} reaction (from your class or from a feat), you can use it while {@action Raise a Shield||Raising your Shield} to reduce the damage you take by an amount equal to the shield's Hardness. Both you and the shield then take any remaining damage.",{"type":"pf2-h2","page":277,"name":"Shield Statistics","entries":["Shields have statistics that follow the same rules as armor:","Price, Speed Penalty, and Bulk. See page 274 for the rules for those statistics. Their other statistics are described here.",{"type":"pf2-h3","page":277,"name":"AC Bonus","entries":["A shield grants a circumstance bonus to AC, but only when the shield is raised. This requires using the Raise a Shield action, found on page 472."],"source":"CRB"},{"type":"pf2-h3","page":277,"name":"Hardness","entries":["Whenever a shield takes damage, the amount of damage it takes is reduced by this amount. This number is particularly relevant for shields because of the {@feat Shield Block} feat (page 266). The rules for Hardness appear on page 272."],"source":"CRB"},{"type":"pf2-h3","page":277,"name":"HP (BT)","entries":["This column lists the shield's Hit Points (HP) and Broken Threshold (BT). These measure how much damage the shield can take before it's destroyed (its total HP) and how much it can take before being broken and unusable (its BT). These matter primarily for the {@feat Shield Block} reaction."],"source":"CRB"},{"type":"statblock","tag":"table","name":"Shields","source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":277,"name":"Attacking with a Shield","entries":["A shield can be used as a martial weapon for attacks, using the statistics listed for a shield bash on {@table Melee Weapons||Table 6–7: Melee Weapons}. The shield bash is an option only for shields that weren't designed to be used as weapons. A shield can't have runes added to it. You can also buy and attach a {@item shield boss} or {@item shield spikes} to a shield to make it a more practical weapon. These can be found on {@table Melee Weapons||Table 6–7}. These work like other weapons and can even be etched with runes."],"source":"CRB"},{"type":"pf2-h2","page":277,"name":"Shield Descriptions","entries":["Each type of shield is described in more detail below.","{@b Buckler:} This very small shield is a favorite of duelists and quick, lightly armored warriors. It's typically made of steel and strapped to your forearm. You can Raise a Shield with your buckler as long as you have that hand free or are holding a light object that's not a weapon in that hand.","{@b Wooden Shield:} Though they come in a variety of shapes and sizes, the protection offered by wooden shields comes from the stoutness of their materials. While wooden shields are less expensive than steel shields, they break more easily.","{@b Steel Shield:} Like wooden shields, steel shields come in a variety of shapes and sizes. Though more expensive than wooden shields, they are much more durable.","{@b Tower Shield:} These massive shields can be used to provide cover to nearly the entire body. Due to their size, they are typically made of wood reinforced with metal."],"source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":273,"name":"Shoddy Items","entries":["Improvised or of dubious make, shoddy items are never available for purchase except for in the most desperate of communities. When available, a shoddy item usually costs half the Price of a standard item, though you can never sell one in any case. Attacks and checks involving a shoddy item take a –2 item penalty. This penalty also applies to any DCs that a shoddy item applies to (such as AC, for shoddy armor). A shoddy suit of armor also worsens the armor's check penalty by 2. A shoddy item's Hit Points and Broken Threshold are each half that of a normal item of its type."],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":592,"name":"Staves","entries":["A magical staff is an indispensable accessory for an elite spellcaster. A staff is tied to one person during a preparation process, after which the preparer, and only the preparer, can harness the staff to cast a variety of spells throughout the day. The spells that can be cast from a staff are listed in bullet points organized by level under each version of the staff. Many staves can be found in multiple versions, with more powerful versions that contain more spells—such a staff always contains the spells of all lower-level versions, in addition to the spells listed in its own entry. All magical staves have the staff trait.",{"type":"pf2-h3","page":592,"name":"Casting Spells from a Staff","entries":["A staff gains charges when someone prepares it for the day. The person who prepared a staff can expend the charges to cast spells from it. You can {@action Cast a Spell} from a staff only if you have that spell on your spell list, are able to cast spells of the appropriate level, and expend a number of charges from the staff equal to the spell's level. {@action Cast a Spell||Casting a Spell} from a staff requires holding the staff (typically in one hand) and {@action Activate an Item||Activating} the staff by {@action Cast a Spell||Casting the Spell}, which takes the spell's normal number of actions.","Use your spell attack roll and spell DC when {@action Cast a Spell||Casting a Spell} from a staff. The spell gains the appropriate trait for your magical tradition (arcane, divine, occult, or primal) and can be affected by any modifications you can normally make when casting spells, such as metamagic feats. You must provide any material components, cost, or focus required by the spell, or you fail to cast it.","Prepared spellcasters and spontaneous spellcasters each have a unique way of altering how their staves gain charges and the ways they can be used (see the Prepared Spellcasters and Spontaneous Spellcasters sections below).",{"type":"pf2-h4","page":592,"name":"Casting Cantrips from a Staff","entries":["If a staff contains a cantrip, you can cast that cantrip using the staff without expending any charges. The cantrip's level is heightened to the same level as cantrips you cast."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":592,"name":"Preparing a Staff","entries":["During your daily preparations, you can prepare a staff to add charges to it for free. When you do so, that staff gains a number of charges equal to the level of your highest-level spell slot. You don't need to expend any spells to add charges in this way. No one can prepare more than one staff per day, nor can a staff be prepared by more than one person per day. If the charges aren't used within 24 hours, they're lost, and preparing the staff anew removes any charges previously stored in it. You can prepare a staff only if you have at least one of the staff's spells on your spell list.",{"type":"pf2-h4","page":592,"name":"Prepared Spellcasters","entries":["A prepared spellcaster—such as a cleric, druid, or wizard— can place some of their own magic in a staff to increase its number of charges. When a prepared spellcaster prepares a staff, they can expend a spell slot to add a number of charges to the staff equal to the level of the spell. They can't expend more than one spell in this way each day. For example, if Ezren can cast 3rd-level spells and prepared a staff, the staff would gain 3 charges, but Ezren could increase this to 6 by expending one of his 3rd-level spells, 5 by expending a 2nd-level spell, or 4 by expending a 1st-level spell."],"source":"CRB"},{"type":"pf2-h4","page":592,"name":"Spontaneous Spellcasters","entries":["A spontaneous spellcaster, such as a bard or sorcerer, can reduce the number of charges it takes to Activate a staff by supplementing with their own energy. When a spontaneous spellcaster Activates a staff, they can expend 1 charge from the staff and one of their spell slots to cast a spell from the staff of the same level (or lower) as the expended spell slot. This doesn't change the number of actions it takes to cast the spell. For example, if Seoni can cast 3rd-level spells and prepared a staff, the staff would gain 3 charges. She could expend 1 charge and one of her 3rd-level spell slots to cast a 3rd-level spell from the staff, or 1 charge and one of her 2nd-level spell slots to cast a 2nd-level spell from the staff. She could still expend 3 charges from the staff to cast a 3rd-level spell from it without using any of her own slots, just like any other spellcaster"],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":592,"name":"Attacking with a Staff","entries":["Staves are also {@item staff} weapons. They can be etched with fundamental runes but not property runes. This doesn't alter any of their spellcasting abilities."],"source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":597,"name":"Wands","entries":["Short, slender items typically made of wood, wands let you cast a specific spell without expending a spell slot. They can be used once per day, but can be overcharged to attempt to cast them again at great risk. Each wand holds a spell of a certain level, determined when the wand is created. Cantrips, focus spells, and rituals can't be placed in wands.","If you find a wand, you can try to figure out what spell is in it. If the spell is a common spell from your spell list or is a spell you know, you can use a single {@action Recall Knowledge} action and automatically succeed.","If it's not, you must {@action Identify Magic}.",{"type":"pf2-h3","page":597,"name":"Casting Spells from a Wand","entries":["A wand contains a spell that can be cast once per day. Casting a spell from a wand requires holding the wand in one hand and activating the item with a {@action Cast a Spell} activity using the normal number of actions for the spell.","To cast a spell from a wand, it must be on your spell list. Because you're the one casting the spell, use your spell attack roll and spell DC. The spell is of your tradition.","A spell cast from a wand doesn't require physical material components, but you must replace any material component normally required to cast the spell with a somatic component. If the spell requires a focus, you must still have that focus to cast the spell from a wand, and if the spell has a cost, you must still pay that cost to cast the spell from a wand.",{"type":"pf2-h4","page":597,"name":"Overcharging a Wand","entries":["After the spell is cast from the wand for the day, you can attempt to cast it one more time—overcharging the wand at the risk of destroying it. {@action Cast a Spell||Cast the Spell} again, then roll a DC {@flatDC 10} flat check. On a success, the wand is broken.","On a failure, the wand is destroyed. If anyone tries to overcharge a wand when it's already been overcharged that day, the wand is automatically destroyed (even if it had been repaired) and no spell is cast."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":597,"name":"Wand Statistics","entries":["A wand's base statistics are the same unless noted otherwise in a special wand. It has light Bulk, and must be held in one hand to be activated. Each wand contains a specific level of the spell. When you activate a wand, you can only cast the spell at the specified level, but you can craft a wand with a heightened version of a spell.",{"type":"pf2-h4","page":597,"name":"Varying Statistics","entries":["Each type of wand has a Level and Price determined by the spell's level. The wand's rarity matches the spell's rarity. The item's traits also vary, based on the spell. A wand has any traits listed in its stat block (usually just magical and wand), plus any traits of the spell stored on it. A wand has the normal Hardness, BT, and HP of a thin item of its material (page 577)."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":597,"name":"Crafting a Wand","entries":["For the most part, the process to Craft a wand is like that to Craft any other magic item. When you begin the crafting process, choose a spell to put into the wand. You have to either cast that spell during the process, or someone else must do so in your presence. That spell doesn't have its normal effects; instead, the magic is captured inside the wand. The caster doesn't need to pay any cost of the spell.","The casting must come from a spellcaster expending a spell slot. You can't make a wand from a spell that comes from another magic item, for example.",{"type":"pf2-brown-box","page":597,"name":"EXAMPLE WAND","entries":["This example {@item magic wand (generic)} has the {@spell heal} spell.",{"type":"data","tag":"item","data":{"name":"Wand of Heal","source":"CRB","page":597,"type":"Item","level":"3+","traits":["magical","necromancy","positive","wand"],"usage":"held in 1 hand","bulk":"L","category":"Wand","entries":["The golden end caps on this white wooden wand are adorned with ruby cabochons.",{"type":"ability","style":"compact","components":["{@action Cast a Spell}"],"frequency":{"freq":1,"unit":"day","overcharge":true,"number":"once "},"entries":["You cast a {@spell heal} spell at the indicated level."]}],"craftReq":"Supply a listed-level casting of heal.","generic":"G","variants":[{"type":"1st-level spell","level":3,"price":{"coin":"gp","amount":60},"entries":[]},{"type":"2nd-level spell","level":5,"price":{"coin":"gp","amount":160},"entries":[]},{"type":"3rd-level spell","level":7,"price":{"coin":"gp","amount":360},"entries":[]},{"type":"4th-level spell","level":9,"price":{"coin":"gp","amount":700},"entries":[]},{"type":"5th-level spell","level":11,"price":{"coin":"gp","amount":1500},"entries":[]},{"type":"6th-level spell","level":13,"price":{"coin":"gp","amount":3000},"entries":[]},{"type":"7th-level spell","level":15,"price":{"coin":"gp","amount":6500},"entries":[]},{"type":"8th-level spell","level":17,"price":{"coin":"gp","amount":15000},"entries":[]},{"type":"9th-level spell","level":19,"price":{"coin":"gp","amount":40000},"entries":[]}]}}],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":597,"name":"Magic Wand","entries":["The simplest form of wand contains a spell, with Price and level based on that spell. The wand has the magical and wand traits, as well as the traits the spell has. The name of a magic wand with a spell in it is simply \"wand of,\" followed by the spell's name."],"source":"CRB"},{"type":"pf2-h3","page":598,"name":"Specialty Wands","entries":["Specialty wands can contain only certain kinds of spells, as noted in the stat block, and either alter the spell's effects or affect how it can be cast. The Craft Requirements entry lists what kinds of spells the wand can hold."],"source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":278,"name":"Weapons","entries":[{"type":"pf2-h1-flavor","page":278,"entries":["{@i Most characters in Pathfinder carry weapons, ranging from mighty warhammers to graceful bows to even simple clubs. Full details on how you calculate the bonuses, modifiers, and penalties for attack rolls and damage rolls are given in Chapter 9 on page 446, but they're summarized here, followed by the rules for weapons and dozens of weapon choices.}"],"source":"CRB"},{"type":"pf2-h2","page":278,"name":"Attack Rolls","entries":["When making an attack roll, determine the result by rolling 1d20 and adding your attack modifier for the weapon or unarmed attack you're using. Modifiers for melee and ranged attacks are calculated differently.",{"type":"pf2-inset","page":278,"entries":["Ranged attack modifier = Dexterity modifier + proficiency bonus + other bonuses + penalties"],"source":"CRB"},{"type":"pf2-inset","page":278,"entries":["Melee attack modifier = Strength modifier {@n (or optionally Dexterity for a finesse weapon)} + proficiency bonus + other bonuses + penalties"],"source":"CRB"},"Bonuses, and penalties apply to these rolls just like with other types of checks. Weapons with potency runes (page 581) add an item bonus to your attack rolls.",{"type":"pf2-h3","page":278,"name":"Multiple Attack Penalty","entries":["If you use an action with the attack trait more than once on the same turn, your attacks after the first take a penalty called a multiple attack penalty. Your second attack takes a –5 penalty, and any subsequent attacks take a –10 penalty.","The multiple attack penalty doesn't apply to attacks you make when it isn't your turn (such as attacks made as part of a reaction). You can use a weapon with the {@trait agile} trait (page 282) to reduce your multiple attack penalty."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":278,"name":"Damage Rolls","entries":["When the result of your attack roll with a weapon or unarmed attack equals or exceeds your target's AC, you hit your target! Roll the weapon or unarmed attack's damage die and add the relevant modifiers, bonuses, and penalties to determine the amount of damage you deal. Calculate a damage roll as follows.",{"type":"pf2-inset","page":278,"entries":["Melee damage roll = damage die of weapon or unarmed attack + Strength modifier + bonuses + penalties"],"source":"CRB"},{"type":"pf2-inset","page":278,"entries":["Ranged damage roll = damage die of weapon + Strength modifier for thrown weapons + bonuses + penalties"],"source":"CRB"},"Ranged weapons don't normally add an ability modifier to the damage roll, though weapons with the propulsive trait (page 283) add half your Strength modifier (or your full modifier if it is a negative number), and thrown weapons add your full Strength modifier.","Magic weapons with {@item striking}, {@item greater striking}, or {@item major striking} runes (page 581) add one or more weapon damage dice to your damage roll. These extra dice are the same die size as the weapon's damage die. At higher levels, most characters also gain extra damage from weapon specialization."],"source":"CRB"},{"type":"pf2-h2","page":278,"name":"Critical Hits","entries":["When you make an attack and succeed with a natural 20 (the number on the die is 20), or if the result of your attack exceeds the target's AC by 10, you achieve a critical success (also known as a critical hit).","If you critically succeed at a {@action Strike}, your attack deals {@book double damage|CRB|9|Doubling and Halving Damage}. Other attacks, such as spell attack rolls and some uses of the {@skill Athletics} skill, describe the specific effects that occur when their outcomes are critical successes."],"source":"CRB"},{"type":"pf2-h2","page":278,"name":"Unarmed Attacks","entries":["Almost all characters start out trained in unarmed attacks. You can {@action Strike} with your fist or another body part, calculating your attack and damage rolls in the same way you would with a weapon. Unarmed attacks can belong to a weapon group (page 280), and they might have weapon traits (page 282). However, unarmed attacks aren't weapons, and effects and abilities that work with weapons never work with unarmed attacks unless they specifically say so.","{@table Unarmed Attacks||Table 6–6: Unarmed Attacks} lists the statistics for an unarmed attack with a fist, though you'll usually use the same statistics for attacks made with any other parts of your body. Certain ancestry feats, class features, and spells give access to special, more powerful unarmed attacks. Details for those unarmed attacks are provided in the abilities that grant them."],"source":"CRB"},{"type":"pf2-h2","page":278,"name":"Improvised Weapons","entries":["If you attack with something that wasn't built to be a weapon, such as a chair or a vase, you're making an attack with an improvised weapon. Improvised weapons are simple weapons. You take a –2 item penalty to attack rolls with an improvised weapon. The GM determines the amount and type of damage the attack deals, if any, as well as any weapon traits the improvised weapon should have."],"source":"CRB"},{"type":"pf2-h2","page":279,"name":"Weapon Statistics","entries":["The tables on pages 280 –282 list the statistics for various melee and ranged weapons that you can purchase, as well as the statistics for striking with a fist (or another basic unarmed attack). The tables present the following statistics. All weapons listed in this chapter have an item level of 0.",{"type":"pf2-h3","page":279,"name":"Damage","entries":["This entry lists the weapon's damage die and the type of damage it deals: B for bludgeoning, P for piercing, or S for slashing.",{"type":"pf2-beige-box","page":279,"name":"Damage Dice","entries":["Each weapon lists the damage die used for its damage roll. A standard weapon deals one die of damage, but a magical {@item striking (generic)||striking} rune can increase the number of dice rolled, as can some special actions and spells. These additional dice use the same die size as the weapon or unarmed attack's normal damage die.",{"type":"pf2-title","name":"Counting Damage Dice"},"Effects based on a weapon's number of damage dice include only the weapon's damage die plus any extra dice from a {@item striking (generic)||striking} rune. They don't count extra dice from abilities, critical specialization effects, property runes, weapon traits, or the like.",{"type":"pf2-title","name":"Increasing Die Size"},"When an effect calls on you to increase the size of your weapon damage dice, instead of using its normal weapon damage dice, use the next larger die, as listed below (so if you were using a d4, you'd use a d6, and so on). If you are already using a d12, the size is already at its maximum. You can't increase your weapon damage die size more than once.","{@c {@b {@dice 1d4} ➞ {@dice 1d6} ➞ {@dice 1d8} ➞ {@dice 1d10} ➞ {@dice 1d12}}}"],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":279,"name":"Range","entries":["Ranged and thrown weapons have a range increment. Attacks with these weapons work normally up to that distance. Attack rolls beyond a weapon's range increment take a –2 penalty for each additional multiple of that increment between you and the target. Attacks beyond the sixth range increment are impossible.","For example, a shortbow takes no penalty against a target up to 60 feet away, a –2 penalty against a target beyond 60 feet but up to 120 feet away, and a –4 penalty against a target beyond 120 feet but up to 180 feet away, and so on, up to 360 feet."],"source":"CRB"},{"type":"pf2-h3","page":279,"name":"Reload","entries":["While all weapons need some amount of time to get into position, many ranged weapons also need to be loaded and reloaded. This entry indicates how many {@action Interact} actions it takes to reload such weapons. This can be 0 if drawing ammunition and firing the weapon are part of the same action. If an item takes 2 or more actions to reload, the GM determines whether they must be performed together as an activity, or you can spend some of those actions during one turn and the rest during your next turn.","An item with an entry of \"—\" must be drawn to be thrown, which usually takes an {@action Interact} action just like drawing any other weapon. Reloading a ranged weapon and drawing a thrown weapon both require a free hand. Switching your grip to free a hand and then to place your hands in the grip necessary to wield the weapon are both included in the actions you spend to reload a weapon."],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h3","page":279,"name":"Bulk","entries":["This entry gives the weapon's Bulk. A weapon's Bulk is increased or decreased if it's sized for creatures that aren't Small or Medium size, following the rules on page 295."],"source":"CRB"},{"type":"pf2-brown-box","page":279,"name":"SELECTING WEAPONS","entries":["Characters who focus on combat need to carefully consider their choice of weapons, evaluating whether they want to fight in melee or at range, the weapons' damage potential, and the special features of various weapons. Characters who are primarily spellcasters usually just need to pick a backup weapon in the best category they're trained or better in.","When selecting weapons, start by identifying the weapon types you're trained or better in. You should then compare weapons within these types to determine which ones you will have the highest melee or ranged attack modifier with. It's usually considered best practice to select both a melee and ranged weapon during character creation so you can contend with a broader variety of foes and situations.",{"type":"pf2-title","name":"Weapon Categories"},"Weapons fall into broad categories depending on how much damage they deal and what traits they have. Martial weapons generally deal more damage than simple weapons, and advanced weapons generally have more advantageous traits than martial weapons with the same damage. Generally, you'll want to select weapons that deal more damage, but if you're a highly skilled combatant, you might want to pick a weapon with interesting traits, even if it has a lower weapon damage die. You can also purchase multiple weapons within your budget, allowing you to switch between them for different situations."],"source":"CRB"},{"type":"pf2-h3","page":279,"name":"Hands","entries":["Some weapons require one hand to wield, and others require two. A few items, such as a longbow, list 1+ for its Hands entry. You can hold a weapon with a 1+ entry in one hand, but the process of shooting it requires using a second to retrieve, nock, and loose an arrow. This means you can do things with your free hand while holding the bow without changing your grip, but the other hand must be free when you shoot. To properly wield a 1+ weapon, you must hold it in one hand and also have a hand free.","Weapons requiring two hands typically deal more damage. Some one-handed weapons have the two-hand trait, causing them to deal a different size of weapon damage die when used in two hands. In addition, some abilities require you to wield a weapon in two hands. You meet this requirement while holding the weapon in two hands, even if it doesn't require two hands or have the two-hand trait."],"source":"CRB"},{"type":"pf2-h3","page":280,"name":"Group","entries":["A weapon or unarmed attack's group classifies it with similar weapons. Groups affect some abilities and what the weapon does on a critical hit if you have access to that weapon or unarmed attack's critical specialization effects; for full details, see page 283."],"source":"CRB"},{"type":"pf2-h3","page":280,"name":"Weapon Traits","entries":["The traits a weapon or unarmed attack has are listed in this entry. Any trait that refers to a \"weapon\" can also apply to an unarmed attack that has that trait."],"source":"CRB"},{"type":"pf2-h3","page":280,"name":"Ammunition","entries":["Some entries in the ranged weapons tables are followed by an entry indicating the type of ammunition that weapon launches. The damage die is determined by the weapon, not the ammunition. Because that and other relevant statistics vary by weapon, ammunition entries list only the name, quantity, Price, and Bulk. Using ammunition destroys it."],"source":"CRB"},{"type":"statblock","tag":"table","name":"Unarmed Attacks","source":"CRB"},{"type":"statblock","tag":"table","name":"Melee Weapons","source":"CRB"},{"type":"statblock","tag":"table","name":"Ranged Weapons","source":"CRB"},{"type":"pf2-h3","page":282,"name":"Weapon Traits","entries":["{@filter Weapons and unarmed attacks with the weapon trait can have the following traits.|traits||source=CRB}"],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":283,"name":"Critical Specialization Effects","entries":["Certain feats, class features, weapon runes, and other effects can grant you additional benefits when you make a Strike with certain weapons and get a critical success. This is called a critical specialization effect. The exact effect depends on which weapon group your weapon belongs to, as listed below. You can always decide not to add the critical specialization effect of your weapon.","{@b Axe:} Choose one creature adjacent to the initial target and within reach. If its AC is lower than your attack roll result for the critical hit, you deal damage to that creature equal to the result of the weapon damage die you rolled (including extra dice for its potency rune, if any). This amount isn't doubled, and no bonuses or other additional dice apply to this damage.","{@b Bomb:} Increase the radius of the bomb's splash damage (if any) to 10 feet.","{@b Bow:} If the target of the critical hit is adjacent to a surface, it gets stuck to that surface by the missile. The target is immobilized and must spend an Interact action to attempt a DC 10 {@skill Athletics} check to pull the missile free; it can't move from its space until it succeeds. The creature doesn't become stuck if it is incorporeal, is liquid (like a water elemental or some oozes), or could otherwise escape without effort.","{@b Brawling:} The target must succeed at a Fortitude save against your class DC or be slowed 1 until the end of your next turn.","{@b Club:} You knock the target away from you up to 10 feet (you choose the distance). This is {@quickref forced movement||3|forced movement}.","{@b Dart:} The target takes {@dice 1d6} {@condition Persistent Damage|CRB|persistent bleed damage}. You gain an item bonus to this bleed damage equal to the weapon's item bonus to attack rolls.","{@b Flail:} The target is knocked {@condition prone}.","{@b Hammer:} The target is knocked {@condition prone}.","{@b Knife:} The target takes {@dice 1d6} {@condition Persistent Damage|CRB|persistent bleed} damage. You gain an item bonus to this bleed damage equal to the weapon's item bonus to attack rolls.","{@b Pick:} The weapon viciously pierces the target, who takes 2 additional damage per weapon damage die.","{@b Polearm:} The target is moved 5 feet in a direction of your choice. This is {@quickref forced movement||3|forced movement}.","{@b Shield:} You knock the target back from you 5 feet. This is {@quickref forced movement||3|forced movement}.","{@b Sling:} The target must succeed at a Fortitude save against your class DC or be stunned 1.","{@b Spear:} The weapon pierces the target, weakening its attacks. The target is clumsy 1 until the start of your next turn.","{@b Sword:} The target is made off-balance by your attack, becoming {@condition flat-footed} until the start of your next turn.",{"type":"pf2-h3","page":284,"name":"Weapon Descriptions","entries":["You can view all weapons on the {@filter Items page|items||source=CRB|category=weapon|type=equipment}."],"source":"CRB"}],"source":"CRB"}],"data":{"quickref":2},"source":"CRB"}]},{"type":"entries","entries":[{"type":"section","page":300,"name":"Cantrips","entries":["A cantrip is a special type of spell that's weaker than other spells but can be used with greater freedom and flexibility. The title of a cantrip's stat block says \"Cantrip\" instead of \"Spell.\" Casting a cantrip doesn't use up your spell slots; you can cast a cantrip at will, any number of times per day. If you're a prepared caster, you can prepare a specific number of cantrips each day. You can't prepare a cantrip in a spell slot.","A cantrip is always automatically heightened to half your level, rounded up. For a typical spellcaster, this means its level is equal to the highest level of spell slot you have."],"data":{"quickref":3},"source":"CRB"},{"type":"section","page":302,"name":"Casting Spells","entries":["The casting of a spell can range from a simple word of magical might that creates a fleeting effect to a complex process taking minutes or hours to cast and producing a long-term impact. {@action Cast a Spell||Casting a Spell} is a special activity that takes a number of actions defined by the spell. When you {@action Cast a Spell}, your spellcasting creates obvious visual manifestations of the gathering magic, although feats such as Conceal Spell (page 210) and Melodious Spell (page 101) can help hide such manifestations or otherwise prevent observers from noticing that you are casting.",{"type":"statblock","tag":"action","name":"Cast a Spell","source":"CRB"},{"type":"pf2-h3","page":303,"name":"Spell Components","entries":["A spell description lists the components required to {@action Cast a Spell||Cast the Spell}. For most spells, the number of components is equal to the number of actions you must spend to {@action Cast a Spell||Cast the Spell}. Each component adds certain traits to the {@action Cast a Spell} activity, and some components have special requirements. The components that appear in this book are listed below.",{"type":"pf2-h4","page":303,"name":"Material","entries":["A material component is a bit of physical matter consumed in the casting of the spell. The spell gains the manipulate trait and requires you to have a free hand to retrieve and manipulate a material component. That component is expended in the casting (even if the spell is disrupted).","Except in extreme circumstances, you can assume all common components are included in a material component pouch (page 290)."],"source":"CRB"},{"type":"pf2-h4","page":303,"name":"Somatic","entries":["A somatic component is a specific hand movement or gesture that generates a magical nexus. The spell gains the manipulate trait and requires you to make gestures. You can use this component while holding something in your hand, but not if you are restrained or otherwise unable to gesture freely.","Spells that require you to touch the target require a somatic component. You can do so while holding something as long as part of your hand is able to touch the target (even if it's through a glove or gauntlet)."],"source":"CRB"},{"type":"pf2-h4","page":303,"name":"Verbal","entries":["A verbal component is a vocalization of words of power.","You must speak them in a strong voice, so it's hard to conceal that you're {@action Cast a Spell||Casting a Spell}. The spell gains the {@trait concentrate}. You must be able to speak to provide this component."],"source":"CRB"},{"type":"pf2-h4","page":303,"name":"Focus","entries":["A focus is an object that funnels the magical energy of the spell. The spell gains the manipulate trait and requires you to either have a free hand to retrieve the focus listed in the spell or already be holding the focus in your hand.","As part of {@action Cast a Spell||Casting the Spell}, you retrieve the focus (if necessary), manipulate it, and can stow it again if you so choose.","Foci tend to be expensive, and you need to acquire them in advance to {@action Cast a Spell||Cast the Spell}."],"source":"CRB"},{"type":"pf2-brown-box","page":303,"name":"Component Substitution","entries":["Some classes can substitute one component for another or alter how a component works.","If you're a {@class bard} {@action Cast a Spell||Casting a Spell} from the {@trait occult} tradition you can usually play an {@item musical instrument||instrument} for spells requiring somatic or material components, as long as it takes at least one of your hands to do so. If you use an instrument, you don't need a spell component pouch or another hand free. You can usually also play an instrument for spells requiring verbal components, instead of speaking.","If you're a {@class cleric} {@action Cast a Spell||Casting a Spell} from the {@trait divine} tradition while holding a divine focus (such as a {@item religious symbol} or {@item religious text||text}), you can replace any material component the spell requires by using the divine focus as a focus component instead. Unlike the normal rules for a focus component, you can't retrieve or stow the focus when making this substitution.","If you're a {@class druid} {@action Cast a Spell||Casting a Spell} from the {@trait primal} tradition while holding a primal focus (such as {@item holly and mistletoe}), you can replace any material component the spell requires by using the primal focus as a focus component instead. Unlike the normal rules for a focus component, you can't retrieve or stow the focus when making this substitution.","If you're a {@class sorcerer} {@action Cast a Spell||Casting a Spell} from the magical tradition that matches your bloodline, you can draw on the magic within your blood to replace any material component with a somatic component.","Any character casting an innate spell can replace any material component with a somatic component."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-brown-box","page":304,"name":"Metamagic","entries":["Many spellcasters can gain access to metamagic actions, typically by selecting metamagic feats. Actions with the metamagic trait tweak the properties of your spells, changing their range, damage, or any number of other properties. You must use a metamagic action directly before the spell you want to alter. If you use any action (including free actions, reactions, and additional metamagic actions) other than {@action Cast a Spell} directly after, you waste the benefits of the metamagic action. Any additional effects added by a metamagic action are part of the spell's effect, not of the metamagic action itself."],"source":"CRB"}],"data":{"quickref":3},"source":"CRB"},{"type":"section","page":298,"name":"Disbelieving Illusions","entries":["Sometimes illusions allow an affected creature a chance to disbelieve the spell, which lets the creature effectively ignore the spell if it succeeds at doing so. This usually happens when a creature {@action Seek||Seeks} or otherwise spends actions to engage with the illusion, comparing the result of its {@skill Perception} check (or another check or saving throw, at the GM's discretion) to the caster's spell DC. {@trait Mental} illusions typically provide rules in the spell's description for disbelieving the effect (often allowing the affected creature to attempt a Will save).","If the illusion is {@trait visual}, and a creature interacts with the illusion in a way that would prove it is not what it seems, the creature might know that an illusion is present, but it still can't ignore the illusion without successfully disbelieving it. For instance, if a character is pushed through the illusion of a door, they will know that the door is an illusion, but they still can't see through it. Disbelieving an illusion makes it and those things it blocks seem hazy and indistinct, so even in the case where a visual illusion is disbelieved, it may, at the GM's discretion, block vision enough to make those on the other side concealed.."],"data":{"quickref":3},"source":"CRB"},{"type":"section","page":304,"name":"Durations","entries":["The duration of a spell is how long the spell effect lasts.","Spells that last for more than an instant have a Duration entry. A spell might last until the start or end of a turn, for some number of rounds, for minutes, or even longer. If a spell's duration is given in rounds, the number of rounds remaining decreases by 1 at the start of each of the spellcaster's turns, ending when the duration reaches 0.","Some spells have effects that remain even after the spell's magic is gone. Any ongoing effect that isn't part of the spell's duration entry isn't considered magical.","For instance, a spell that creates a loud sound and has no duration might deafen someone for a time, even permanently. This deafness couldn't be counteracted because it is not itself magical (though it might be cured by other magic, such as {@spell restore senses}).","If a spell's caster dies or is incapacitated during the spell's duration, the spell remains in effect till its duration ends.","You might need to keep track of the caster's initiative after they stopped being able to act to monitor spell durations.",{"type":"pf2-h3","page":304,"name":"Sustaining Spells","entries":["If the spell's duration is \"sustained,\" it lasts until the end of your next turn unless you use a Sustain a Spell action on that turn to extend the duration of that spell.",{"type":"statblock","tag":"action","name":"Sustain a Spell","source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":305,"name":"Long Durations","entries":["If a spell's duration says it lasts until your next daily preparations, on the next day you can refrain from preparing a new spell in that spell's slot. (If you are a spontaneous caster, you can instead expend a spell slot during your preparations.) Doing so extends the spell's duration until your next daily preparations. This effectively Sustains the Spell over a long period of time.","If you prepare a new spell in the slot (or don't expend a spell slot), the spell ends. You can't do this if the spell didn't come from one of your spell slots. If you are dead or otherwise incapacitated at the 24-hour mark after the time you {@action Cast a Spell||Cast the Spell} or the last time you extended its duration, the spell ends. Spells with an unlimited duration last until counteracted or Dismissed. You don't need to keep a spell slot open for these spells."],"source":"CRB"},{"type":"pf2-h3","page":305,"name":"Dismissing","entries":["Some spells can be dismissed, ending the duration early. This requires the caster or target to use the Dismiss action.",{"type":"statblock","tag":"action","name":"Dismiss","source":"CRB"}],"source":"CRB"}],"data":{"quickref":3},"source":"CRB"},{"type":"section","page":300,"name":"Focus Spells","entries":["Focus spells are a special type of spell attained directly from a branch of study, from a deity, or from another specific source. You can learn focus spells only through special class features or feats, rather than choosing them from a spell list. Furthermore, you cast focus spells using a special pool of Focus Points—you can't prepare a focus spell in a spell slot or use your spell slots to cast focus spells; similarly, you can't spend your Focus Points to cast spells that aren't focus spells. Even some classes that don't normally grant spellcasting, such as the champion and monk, can grant focus spells.","Focus spells are automatically heightened to half your level rounded up, just like cantrips are. You can't cast a focus spell if its minimum level is greater than half your level rounded up, even if you somehow gain access to it.","Casting any of your focus spells costs you 1 Focus Point. You automatically gain a focus pool of 1 Focus Point the first time you gain an ability that gives you a focus spell.","You replenish all the Focus Points in your pool during your daily preparations. You can also use the {@action Refocus} activity to pray, study, meditate, or otherwise reattune yourself to the source of your focus magic and regain a Focus Point.","Some abilities allow you to increase the Focus Points in your pool beyond 1. Typically, these are feats that give you a new focus spell and increase the number of points in your pool by 1. Your focus pool can't have a capacity beyond 3 Focus Points, even if feats that increase your pool would cause it to exceed this number.",{"type":"statblock","tag":"action","name":"Refocus","source":"CRB"},{"type":"pf2-brown-box","page":302,"name":"Focus Points from Multiple Sources","entries":["It's possible, especially through archetypes, to gain focus spells and Focus Points from more than one source. If this happens, you have just one focus pool, adding all the Focus Points together to determine the total size of your pool. (Remember that the maximum number of Focus Points a pool can have is 3.) If you have multiple abilities that give you a focus pool, each one adds 1 Focus Point to your pool. For instance, if you were a cleric with the Domain Initiate feat, you would have a pool with 1 Focus Point. Let's say you then took the champion multiclass archetype and the Healing Touch feat. Normally, this feat would give you a focus pool. Since you already have one, it instead increases your existing pool's capacity by 1.","Focus Points are not differentiated by source; you can spend any of your Focus Points on any of your focus spells. Likewise, when you {@action Refocus}, you get back a point as long as you follow the guidelines of any abilities that granted you focus spells. Having Focus Points from multiple sources doesn't change the tradition of your spells; if you had both cleric domain spells and druid order spells, your domain spells would remain divine and the order spells primal. This could mean that you need to keep track of a different proficiency and ability modifier with the spell DC and spell attack roll of different focus spells."],"source":"CRB"},{"type":"pf2-h3","page":302,"name":"Spellcasters with Focus Spells","entries":["If you are a spellcaster, your focus spells are the same tradition of spell as the class that gave you the focus spell. A {@class bard||bard's} are occult, a {@class cleric||cleric's} are divine, a {@class druid||druid's} are primal, a {@class wizard||wizard's} are arcane, and a {@class sorcerer||sorcerer's} are determined by their bloodline."],"source":"CRB"},{"type":"pf2-h3","page":302,"name":"Non-Spellcasters with Focus Spells","entries":["If you get focus spells from a class or other source that doesn't grant spellcasting ability (for example, if you're a monk with the {@feat Ki Strike} feat), the ability that gives you focus spells also provides your proficiency rank for spell attack rolls and spell DCs, as well as the magical tradition of your focus spells. You gain the ability to {@action Cast a Spell} and use any spellcasting actions necessary to cast your focus spells (see below). However, you don't qualify for feats and other rules that require you to be a spellcaster."],"source":"CRB"}],"data":{"quickref":3},"source":"CRB"},{"type":"section","page":305,"name":"Hostile Actions","entries":["Sometimes spell effects prevent a target from using hostile actions, or the spell ends if a creature uses any hostile actions. A hostile action is one that can harm or damage another creature, whether directly or indirectly, but not one that a creature is unaware could cause harm.","For instance, lobbing a {@spell fireball} into a crowd would be a hostile action, but opening a door and accidentally freeing a horrible monster would not be. The GM is the final arbitrator of what constitutes a hostile action."],"data":{"quickref":3},"source":"CRB"},{"type":"section","page":305,"name":"Identifying Spells","entries":["Sometimes you need to identify a spell, especially if its effects are not obvious right away. If you notice a spell being cast, and you have prepared that spell or have it in your repertoire, you automatically know what the spell is, including the level to which it is heightened.","If you want to identify a spell but don't have it prepared or in your repertoire, you must spend an action on your turn to attempt to identify it using Recall Knowledge. You typically notice a spell being cast by seeing its visual manifestations or hearing its verbal casting components. Identifying long-lasting spells that are already in place requires using Identify Magic instead of {@action Recall Knowledge} because you don't have the advantage of watching the spell being cast."],"data":{"quickref":3},"source":"CRB"},{"type":"section","page":302,"name":"Innate Spells","entries":["Certain spells are natural to your character, typically coming from your ancestry or a magic item rather than your class. You can cast your innate spells even if you aren't a member of a spellcasting class. The ability that gives you an innate spell tells you how often you can cast it—usually once per day—and its magical tradition. Innate spells are refreshed during your daily preparations. Innate cantrips are cast at will and automatically heightened as normal for cantrips (see Cantrips on page 300) unless otherwise specified.","You're always trained in spell attack rolls and spell DCs for your innate spells, even if you aren't otherwise trained in spell attack rolls or spell DCs. If your proficiency in spell attack rolls or spell DCs is expert or better, apply that proficiency to your innate spells, too. You use your Charisma modifier as your spellcasting ability modifier for innate spells unless otherwise specified.","If you have an innate spell, you can cast it, even if it's not of a spell level you can normally cast. This is especially common for monsters, which might be able to cast innate spells far beyond what a character of the same level could use.","You can't use your spell slots to cast your innate spells, but you might have an innate spell and also be able to prepare or cast the same spell through your class. You also can't heighten innate spells, but some abilities that grant innate spells might give you the spell at a higher level than its base level or change the level at which you cast the spell."],"data":{"quickref":3},"source":"CRB"},{"type":"section","page":304,"name":"Ranges, Areas, and Targets","entries":["Spells with a range can affect targets, create areas, or make things appear only within that range. Most spell ranges are measured in feet, though some can stretch over miles, reach anywhere on the planet, or go even farther!",{"type":"pf2-h3","page":304,"name":"Touch Range","entries":["A spell with a range of touch requires you to physically touch the target. You use your unarmed reach to determine whether you can touch the creature. You can usually touch the target automatically, though the spell might specify that the target can attempt a saving throw or that you must attempt a spell attack roll. If an ability increases the range of a touch spell, start at 0 feet and increase from there."],"source":"CRB"},{"type":"pf2-h3","page":304,"name":"Areas","entries":["Sometimes a spell has an area, which can be a burst, cone, emanation, or line. The method of measuring these areas can be found {@quickref here||3|Areas}. If the spell originates from your position, the spell has only an area; if you can cause the spell's area to appear farther away from you, the spell has both a range and an area."],"source":"CRB"},{"type":"pf2-h3","page":304,"name":"Targets","entries":["Some spells allow you to directly target a creature, an object, or something that fits a more specific category. The target must be within the spell's range, and you must be able to see it (or otherwise perceive it with a precise sense) to target it normally. At the GM's discretion, you can attempt to target a creature you can't see, as described in Detecting Creatures on pages 465–467. If you fail to target a particular creature, this doesn't change how the spell affects any other targets the spell might have.","If you choose a target that isn't valid, such as if you thought a vampire was a living creature and targeted it with a spell that can target only living creatures, your spell fails to target that creature. If a creature starts out as a valid target but ceases to be one during a spell's duration, the spell typically ends, but the GM might decide otherwise in certain situations.","Spells that affect multiple creatures in an area can have both an Area entry and a Targets entry. A spell that has an area but no targets listed usually affects all creatures in the area indiscriminately.","Some spells restrict you to willing targets. A player can declare their character a willing or unwilling target at any time, regardless of turn order or their character's condition (such as when a character is paralyzed, unconscious, or even dead)."],"source":"CRB"},{"type":"pf2-h3","page":304,"name":"Line of Effect","entries":["You usually need an unobstructed path to the target of a spell, the origin point of an area, or the place where you create something with a spell. More information on line of effect can be found {@quickref here||3|line of effect}."],"source":"CRB"}],"data":{"quickref":3},"source":"CRB"},{"type":"section","page":306,"name":"Reading Spells","entries":["Each spell uses the following format. Entries appear only when applicable, so not all spells will have every entry described here. The spell's name line also lists the type of spell if it's a cantrip or focus spell, as well as the level."],"data":{"quickref":3},"source":"CRB"},{"type":"section","page":408,"name":"Rituals","entries":[{"type":"pf2-h1-flavor","page":408,"entries":["{@i A ritual is an esoteric and complex spell that anyone can cast. It takes much longer to cast a ritual than a normal spell, but rituals can have more powerful effects.}"],"source":"CRB"},{"type":"pf2-h2","page":408,"name":"Casting Rituals","entries":["When you take charge of a ritual, you are its primary caster, and others assisting you are secondary casters. You can be a primary caster for a ritual even if you can't cast spells. You must know the ritual, and the ritual's spell level can be no higher than half your level rounded up.","You must also have the required proficiency rank in the skill used for the ritual's primary check (see Checks below), and as the primary caster, you must attempt this skill check to determine the ritual's effects. The primary skill check determines the tradition.","Rituals do not require spell slots to cast. You can heighten a ritual up to half your level rounded up, decided when the ritual is initiated. A ritual always takes at least 1 hour to perform, and often longer. While a ritual is a downtime activity, it's possible—albeit risky—to perform a ritual during exploration with enough uninterrupted time. A ritual's casting time is usually listed in days. Each day of casting requires 8 hours of participation in the ritual from all casters, with breaks during multiday rituals to allow rest. One caster can continue a multiday ritual, usually with some light chanting or meditation, while the other casters rest. All rituals require material, somatic, and verbal components throughout their casting time.",{"type":"pf2-h3","page":408,"name":"Learning Rituals","entries":["Learning a ritual does not count against any limits on spells in your spell repertoire or on any other normal spellcasting ability. Rituals are never common, though if you look hard, you can probably find someone who can perform an uncommon ritual for you. They may still be unwilling to teach it to you."],"source":"CRB"},{"type":"pf2-h3","page":408,"name":"Cost","entries":["A ritual's Cost entry lists valuable components required to cast the ritual. If a ritual doesn't have any such components, it won't have a Cost entry. The cost is consumed when you attempt the primary skill check. Costs are often presented as a base cost multiplied by the target's level and sometimes the spell's level. If the target's level is lower than 1, multiply the cost by 1 instead. Heightened versions that increase the base cost multiply it by the target's level or another value as appropriate. Most rituals that create permanent creatures, such as {@ritual create undead}, use costs based on the level of the spell, as presented on {@table creature creation rituals||Table 7–1}."],"source":"CRB"},{"type":"pf2-h3","page":408,"name":"Secondary Casters","entries":["Many rituals need additional secondary casters, who also don't need to be able to cast spells. Unlike a primary caster, a secondary caster doesn't need a minimum level or skill proficiency. The Secondary Casters entry, if present, indicates the minimum number of secondary casters required."],"source":"CRB"},{"type":"pf2-h3","page":408,"name":"Checks","entries":["At the ritual's culmination, you must attempt the skill check listed in the Primary Check entry to determine the ritual's outcome. Primary checks usually have a very hard DC for a level that's twice the ritual's spell level. As with other downtime activities, fortune and misfortune effects can't modify your checks for the ritual, nor can bonuses or penalties that aren't active throughout the process.","The GM can adjust the DCs of rituals, add or change primary or secondary checks, or even waive requirements to fit specific circumstances. For example, performing a ritual in a location where ley lines converge on the night of a new moon might make a normally difficult ritual drastically easier.",{"type":"statblock","tag":"table","name":"Creature Creation Rituals","source":"CRB"}],"source":"CRB"}],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h4","page":408,"name":"Secondary Checks","entries":["Often, a ritual requires secondary checks to represent aspects of its casting, usually with a standard DC for a level twice the ritual's spell level. A different secondary caster must attempt each secondary check. If there are more secondary casters than checks, the others don't attempt any.","Secondary casters attempt their checks before you attempt the primary check; no matter their results, the ritual proceeds to the primary check. Secondary checks affect the primary check depending on their results.",{"type":"successDegree","entries":{"Critical Success":"You gain a +2 circumstance bonus to the primary check.","Success":"No bonus or penalty.","Failure":"You take a –4 circumstance penalty to the primary check.","Critical Failure":"As failure, and you reduce the degree of success of the primary skill check by one step."}}],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h3","page":409,"name":"Effect","entries":["A ritual's effect depends on the result of the primary check.","If an effect lists a save DC, use your spell DC for the ritual's magic tradition (or 12 + your level + your highest mental ability modifier, if you don't have a spell DC)."],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h2","page":409,"name":"Rituals","entries":["{@note Please visit the {@filter rituals page|rituals||source=CRB} to view all Rituals.}"],"source":"CRB"}],"data":{"quickref":3},"source":"CRB"},{"type":"section","page":305,"name":"Saving Throws","entries":["Spells that require a target to attempt a save to resist some or all of the spell's effects have a Saving Throw entry. This entry presents the type of save for quick reference, and specific details appear in the spell description. Whenever a spell allows a saving throw, it uses the caster's spell DC.",{"type":"pf2-h3","page":305,"name":"Basic Saving Throws","entries":["If a spell's Saving Throw entry specifies a \"basic\" saving throw, the spell's potential effects all relate to the damage listed in the spell's description. The target takes no damage on a critical success, half damage on a success, full damage on a failure, or double damage on a critical failure. The rules for basic saving throws are found on page 449."],"source":"CRB"}],"data":{"quickref":3},"source":"CRB"},{"type":"section","page":305,"name":"Setting Triggers","entries":["If a spell is meant to respond only to certain events or under certain conditions—such as {@spell magic mouth}—it might require you to set a trigger. This is a simple sensory cue that causes the spell to activate. The spell activates as a reaction when the spell's sensor observes something that fits its trigger. Depending on the spell, the trigger might be the presence of a type of creature, such as \"red-haired dwarven women,\" or it could be an observed action, such as \"whenever someone enters the spell's area.\" Disguises and illusions fool the spell as long as they appear to match its parameters. For a spell to detect something visually, the spell's origin point must have line of sight. Darkness doesn't prevent this, but invisibility does, as does a successful {@skill Stealth} check to Hide (against the spell's DC). For auditory detection, line of sight isn't necessary, though the sound must be audible at the spell's origin point. A {@skill Stealth} check to Sneak can fool the sensor."],"data":{"quickref":3},"source":"CRB"},{"type":"section","page":305,"name":"Spell Attacks","entries":["Some spells require you to succeed at a spell attack roll to affect the target. This is usually because they require you to precisely aim a ray or otherwise make an accurate attack. A spell attack roll is compared to the target's AC.","Spell attack rolls benefit from any bonuses or penalties to attack rolls, including your multiple attack penalty, but not any special benefits or penalties that apply only to weapon or unarmed attacks. Spell attacks don't deal any damage beyond what's listed in the spell description.","In rare cases, a spell might have you make some other type of attack, such as a weapon Strike. Such attacks use the normal rules and attack bonus for that type of attack."],"data":{"quickref":3},"source":"CRB"},{"type":"section","page":298,"name":"Spell Slots","entries":["Characters of spellcasting classes can cast a certain number of spells each day; the spells you can cast in a day are referred to as spell slots. At 1st level, a character has only a small number of 1st-level spell slots per day, but as you advance in level, you gain more spell slots and new slots for higher-level spells. A spell's level indicates its overall power, from 1 to 10.",{"type":"pf2-h3","page":298,"name":"Prepared Spells","entries":["If you're a prepared spellcaster—such as a cleric, druid, or wizard—you must spend time each day preparing spells for that day. At the start of your daily preparations, you select a number of spells of different spell levels determined by your character level and class. Your spells remain prepared until you cast them or until you prepare spells again.","Each prepared spell is expended after a single casting, so if you want to cast a particular spell more than once in a day, you need to prepare that spell multiple times. The exceptions to this rule are spells with the cantrip trait; once you prepare a cantrip, you can cast it as many times as you want until the next time you prepare spells. See page 300 for more information on cantrips.","You might gain an ability that allows you to swap prepared spells or perform other aspects of preparing spells at different times throughout the day, but only your daily preparation counts for the purpose of effects that last until the next time you prepare spells."],"source":"CRB"},{"type":"pf2-h3","page":298,"name":"Spontaneous Spells","entries":["If you're a spontaneous spellcaster—such as a bard or a sorcerer—you choose which spell you're using a spell slot for at the moment you decide to cast it. This provides you with more freedom in your spellcasting, but you have fewer spells in your spell repertoire, as determined by your character level and class. When you make your daily preparations, all your spell slots are refreshed, but you don't get to change the spells in your repertoire."],"source":"CRB"},{"type":"pf2-red-box","page":299,"name":"Magical Traditions","entries":["Spellcasters cast spells from one of four different spell list, each representing a different magical tradition: arcane, divine, occult, and primal.","Your class determines which tradition of magic your spells use. In some cases, such as when a cleric gains spells from their deity or when a sorcerer gets spells from their bloodline, you might be able to cast spells from a different spell list. In these cases, the spell uses your magic tradition, not the list the spell normally comes from. When you cast a spell, add your tradition's trait to the spell.","Some types of magic, such as that of most magic items, don't belong to any single tradition. These have the magical trait instead of a tradition trait.",{"type":"table","style":"pf2-box__table--red","rows":[["Arcane","Divine","Occult","Primal"],["Arcane spellcasters use logic and rationality to categorize the magic inherent in the world around them. Because of its far-reaching approach, the arcane tradition has the broadest spell list, though it's generally poor at affecting the spirit or the soul. Wizards are the most iconic arcane spellcasters, poring over tomes and grimoires, though arcane sorcerers study the secrets of their blood to unlock the power within themselves.","The power of the divine is steeped in faith, the unseen, and belief in a power source from beyond the Material Plane. Clerics are the most iconic divine spellcasters, beseeching the gods to grant them their magic. Divine sorcerers can use the blood of their celestial or fiendish ancestors as a divine conduit, and champions call upon their gods to grant them martial prowess through divine guidance.","The practitioners of occult traditions seek to understand the unexplainable, categorize the bizarre, and otherwise access the ephemeral in a systematic way. Bards are the most iconic occult spellcasters, collecting strange esoterica and using their performances to influence the mind or elevate the soul, and occult sorcerers strive to understand the mysterious power in their blood.","An instinctual connection to and faith in the world, the cycle of day and night, theturning of the seasons, and the natural selection of predator and prey drive the primal tradition. Druids are the most iconic primal spellcasters, calling upon the magic of nature through deep faith and a connection to the plants and animals around them, and primal sorcerers call upon their fey or beast blood to harness the same natural energies."]]}],"source":"CRB"},{"type":"pf2-h3","page":299,"name":"Heightened Spells","entries":["Both prepared and spontaneous spellcasters can cast a spell at a higher spell level than that listed for the spell.","This is called heightening the spell. A prepared spellcaster can heighten a spell by preparing it in a higher-level slot than its normal spell level, while a spontaneous spellcaster can heighten a spell by casting it using a higher-level spell slot, so long as they know the spell at that level (see Heightened Spontaneous Spells below). When you heighten your spell, the spell's level increases to match the higher level of the spell slot you've prepared it in or used to cast it. This is useful for any spell, because some effects, such as counteracting, depend on the spell's level.","In addition, many spells have additional specific benefits when they are heightened, such as increased damage. These extra benefits are described at the end of the spell's stat block. Some heightened entries specify one or more levels at which the spell must be prepared or cast to gain these extra advantages. Each of these heightened entries states specifically which aspects of the spell change at the given level. Read the heightened entry only for the spell level you're using or preparing; if its benefits are meant to include any of the effects of a lower-level heightened entry, those benefits will be included in the entry.","Other heightened entries give a number after a plus sign, indicating that heightening grants extra advantages over multiple levels. The listed effect applies for every increment of levels by which the spell is heightened above its lowest spell level, and the benefit is cumulative. For example, {@spell fireball} says \"{@b Heightened (+1)} The damage increases by 2d6.\" Because {@spell fireball} deals {@damage 6d6} fire damage at 3rd level, a 4th-level {@spell fireball} would deal {@dice 8d6} fire damage, a 5th-level spell would deal {@dice 10d6} fire damage, and so on.",{"type":"pf2-h4","page":299,"name":"Heightened Spontaneous Spells","entries":["If you're a spontaneous spellcaster, you must know a spell at the specific level that you want to cast it in order to heighten it. You can add a spell to your spell repertoire at more than a single level so that you have more options when casting it. For example, if you added {@spell fireball} to your repertoire as a 3rd-level spell and again as a 5th-level spell, you could cast it as a 3rd-level or a 5th-level spell; however, you couldn't cast it as a 4th-level spell.","Many spontaneous spellcasting classes provide abilities like the signature spells class feature, which allows you to cast a limited number of spells as heightened versions even if you know the spell at only a single level."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-red-box","page":299,"name":"The Four Essences","entries":["Spells that affect certain physical or metaphysical forces tend to be grouped into particular magical traditions. Scholars of magic widely agree that all of existence is composed of some combination of four essences, though they disagree on the names and particular qualities of each essence.","The following entries discuss each essence and the traditions and spell schools relevant to it; for instance, evocation spells tend to manipulate matter. The abjuration school is an unusual case, as abjuration spells draw upon different essences depending on who they are warding and what they are protecting against.",{"type":"table","style":"pf2-box__table--red","rows":[["Matter","Spirit","Mind","Life"],["Also called body, material essence, or physical essence, matter is the fundamental building block that makes up all physical things in the universe. The arcane and primal traditions are especially attuned toward manipulating and shaping matter. Spells that are used to create or alter matter most often come from the conjuration, evocation, or transmutation schools.","Also called soul, ethereal essence, or spiritual essence, spirit is an otherworldly building block that makes up a being's immaterial and immortal self. The spirit travels through the Ethereal Plane and into the Great Beyond after the death of the physical body. The spirit is most easily affected by divine and occult spells. Spirit spells are usually of the divination or necromancy schools.","Also called thought or astral essence, the mind essence allows thinking creatures to have rational thoughts, ideas, plans, logic, and memories. Mind touches even nonsapient creatures like animals, though in a more limited capacity. Arcane and occult casters usually excel at mind spells. Spells that use mind essence are usually found in the divination, enchantment, and illusion schools.","Also called heart, faith, instinct, or vital essence, life represents the animating universal force within all things. Whereas matter provides the base materials for a body, life keeps it alive and well. This essence is responsible for unconscious responses and belief, such as ancestral instincts and divine guidance. The divine and primal traditions hold power over life. Life spells are usually necromancy."]]}],"source":"CRB"}],"data":{"quickref":3},"source":"CRB"},{"type":"section","page":306,"name":"Walls","entries":["Spells that create walls list the depth, length, and height of the wall, also specifying how it can be positioned. Some walls can be shaped; you can manipulate the wall into a form other than a straight line, choosing its contiguous path square by square. The path of a shaped wall can't enter the same space more than once, but it can double back so one section is adjacent to another section of the wall."],"data":{"quickref":3},"source":"CRB"}]},{"type":"entries","entries":[{"type":"section","page":461,"name":"Actions","entries":["You affect the world around you primarily by using actions, which produce effects. Actions are most closely measured and restricted during the encounter mode of play, but even when it isn't important for you to keep strict track of actions, they remain the way in which you interact with the game world. There are four types of actions: single actions, activities, reactions, and free actions.","{@b Single actions} can be completed in a very short time. They're self-contained, and their effects are generated within the span of that single action. During an encounter, you get 3 actions at the beginning of your turn, which you can use as described on page 468.","{@b Activities} usually take longer and require using multiple actions, which must be spent in succession. Stride is a single action, but Sudden Charge is an activity in which you use both the Stride and Strike actions to generate its effect.","{@b Reactions} have triggers, which must be met for you to use the reaction. You can use a reaction anytime its trigger is met, whether it's your turn or not. In an encounter, you get 1 reaction each round, which you can use as described on page 468. Outside of encounters, your use of reactions is more flexible and up to the GM. Reactions are usually triggered by other creatures or by events outside your control.","{@b Free actions} don't cost you any of your actions per turn, nor do they cost your reaction. A free action with no trigger follows the same rules as a single action (except the action cost), and a free action with a trigger follows the same rules as a reaction (except the reaction cost).",{"type":"pf2-brown-box","page":461,"name":"ACTION ICON KEY","entries":["These icons appear in stat blocks as shorthand for each type of action.","{@as 1} Single Action","{@as 2} Two-Action Activity","{@as 3} Three-Action Activity","{@as R} Reaction","{@as F} Free Action"],"source":"CRB"},{"type":"pf2-h3","page":461,"name":"Activities","entries":["An activity typically involves using multiple actions to create an effect greater than you can produce with a single action, or combining multiple single actions to produce an effect that's different from merely the sum of those actions. In some cases, usually when spellcasting, an activity can consist of only 1 action, 1 reaction, or even 1 free action.","An activity might cause you to use specific actions within it. You don't have to spend additional actions to perform them—they're already factored into the activity's required actions. (See Subordinate Actions on page 462.) You have to spend all the actions of an activity at once to gain its effects. In an encounter, this means you must complete it during your turn. If an activity gets interrupted or disrupted in an encounter (page 462), you lose all the actions you committed to it.",{"type":"pf2-h4","page":461,"name":"Exploration and Downtime Activities","entries":["Outside of encounters, activities can take minutes, hours, or even days. These activities usually have the exploration or downtime trait to indicate they're meant to be used during these modes of play. You can often do other things off and on as you carry out these activities, provided they aren't significant activities of their own. For instance, if you're Repairing an item, you might move around to stretch your legs or have a brief discussion—but you couldn't also Decipher Writing at the same time.","If an activity that occurs outside of an encounter is interrupted or disrupted, as described in Disrupting Actions below, you usually lose the time you put in, but no additional time beyond that."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-brown-box","page":462,"name":"IN-DEPTH ACTION RULES","entries":["These rules clarify some of the specifics of using actions.",{"type":"pf2-title","name":"Simultaneous Actions"},"You can use only one single action, activity, or free action that doesn't have a trigger at a time. You must complete one before beginning another. For example, the Sudden Charge activity states you must Stride twice and then Strike, so you couldn't use an Interact action to open a door in the middle of the movement, nor could you perform part of the move, make your attack, and then finish the move.","Free actions with triggers and reactions work differently. You can use these whenever the trigger occurs, even if the trigger occurs in the middle of another action.",{"type":"pf2-title","name":"Subordinate Actions"},"An action might allow you to use a simpler action—usually one of the Basic Actions on page 469—in a different circumstance or with different effects. This subordinate action still has its normal traits and effects, but is modified in any ways listed in the larger action. For example, an activity that tells you to Stride up to half your Speed alters the normal distance you can move in a Stride. The Stride would still have the move trait, would still trigger reactions that occur based on movement, and so on. The subordinate action doesn't gain any of the traits of the larger action unless specified. The action that allows you to use a subordinate action doesn't require you to spend more actions or reactions to do so; that cost is already factored in.","Using an activity is not the same as using any of its subordinate actions. For example, the quickened condition you get from the {@spell haste} spell lets you spend an extra action each turn to Stride or Strike, but you couldn't use the extra action for an activity that includes a Stride or Strike. As another example, if you used an action that specified, \"If the next action you use is a Strike,\" an activity that includes a Strike wouldn't count, because the next thing you are doing is starting an activity, not using the Strike basic action."],"source":"CRB"},{"type":"pf2-h3","page":462,"name":"Actions with Triggers","entries":["You can use free actions that have triggers and reactions only in response to certain events. Each such reaction and free action lists the trigger that must happen for you to perform it. When its trigger is satisfied—and {@i only} when it is satisfied—you can use the reaction or free action, though you don't have to use the action if you don't want to.","There are only a few basic reactions and free actions that all characters can use. You're more likely to gain actions with triggers from your class, feats, and magic items.",{"type":"pf2-h4","page":462,"name":"Limitations on Triggers","entries":["The triggers listed in the stat blocks of reactions and some free actions limit when you can use those actions. You can use only one action in response to a given trigger. For example, if you had a reaction and a free action that both had a trigger of \"your turn begins,\" you could use either of them at the start of your turn—but not both. If two triggers are similar, but not identical, the GM determines whether you can use one action in response to each or whether they're effectively the same thing. Usually, this decision will be based on what's happening in the narrative.","This limitation of one action per trigger is per creature; more than one creature can use a reaction or free action in response to a given trigger."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":462,"name":"Other Actions","entries":["Sometimes you need to attempt something not already covered by defined actions in the game. When this happens, the rules tell you how many actions you need to spend, as well any traits your action might have. For example, a spell that lets you switch targets might say you can do so \"by spending a single action, which has the {@trait concentrate}.\" Game masters can also use this approach when a character tries to do something that isn't covered in the rules."],"source":"CRB"},{"type":"pf2-h3","page":462,"name":"Gaining and Losing Actions","entries":["Conditions can change the number of actions you can use on your turn, or whether you can use actions at all. The slowed condition, for example, causes you to lose actions, while the quickened condition causes you to gain them.","Conditions are detailed in the appendix on pages 618–623.","Whenever you lose a number of actions—whether from these conditions or in any other way—you choose which to lose if there's any difference between them. For instance, the {@spell haste} spell makes you quickened, but it limits what you can use your extra action to do. If you lost an action while {@spell haste} was active, you might want to lose the action from haste first, since it's more limited than your normal actions.","Some effects are even more restrictive. Certain abilities, instead of or in addition to changing the number of actions you can use, say specifically that you can't use reactions. The most restrictive form of reducing actions is when an effect states that you can't act: this means you can't use any actions, or even speak. When you can't act, you don't regain your actions and reaction on your turn."],"source":"CRB"},{"type":"pf2-h3","page":462,"name":"Disrupting Actions","entries":["Various abilities and conditions, such as an Attack of Opportunity, can disrupt an action. When an action is disrupted, you still use the actions or reactions you committed and you still expend any costs, but the action's effects don't occur. In the case of an activity, you usually lose all actions spent for the activity up through the end of that turn. For instance, if you began a {@action Cast a Spell} activity requiring 3 actions and the first action was disrupted, you lose all 3 actions that you committed to that activity.","The GM decides what effects a disruption causes beyond simply negating the effects that would have occurred from the disrupted action. For instance, a Leap disrupted midway wouldn't transport you back to the start of your jump, and a disrupted item hand off might cause the item to fall to the ground instead of staying in the hand of the creature who was trying to give it away."],"source":"CRB"}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":457,"name":"Afflictions","entries":["Diseases and poisons are types of afflictions, as are curses and radiation. An affliction can infect a creature for a long time, progressing through different and often increasingly debilitating stages. The level of an affliction is the level of the monster, hazard, or item causing the affliction or, in the case of a spell, is listed in the affliction entry for that spell.",{"type":"pf2-h3","page":457,"name":"Format","entries":["Whether appearing in a spell, as an item, or within a creature's stat block, afflictions appear in the following format.",{"type":"pf2-h4","page":457,"name":"Name and Traits","entries":["The affliction's name is given first, followed by its traits in parentheses—including the trait for the type of affliction (curse, disease, poison, and so forth). If the affliction needs to have a level specified, it follows the parentheses, followed by any unusual details, such as restrictions on removing the conditions imposed by an affliction."],"source":"CRB"},{"type":"pf2-h4","page":457,"name":"Saving Throw","entries":["When you're first exposed to the affliction, you must attempt a saving throw against it. This first attempt to stave off the affliction is called the initial save. An affliction usually requires a Fortitude save, but the exact save and its DC are listed after the name and type of affliction. Spells that can poison you typically use the caster's spell DC.","On a successful initial saving throw, you are unaffected by that exposure to the affliction. You do not need to attempt further saving throws against it unless you are exposed to the affliction again.","If you fail the initial saving throw, after the affliction's onset period elapses (if applicable), you advance to stage 1 of the affliction and are subjected to the listed effect. On a critical failure, after its onset period (if applicable), you advance to stage 2 of the affliction and are subjected to that effect instead. The stages of an affliction are described below."],"source":"CRB"},{"type":"pf2-h4","page":458,"name":"Onset","entries":["Some afflictions have onset times. For these afflictions, once you fail your initial save, you don't gain the effects for the first stage of the affliction until the onset time has elapsed. If this entry is absent, you gain the effects for the first stage (or the second stage on a critical failure) immediately upon failing the initial saving throw."],"source":"CRB"},{"type":"pf2-h4","page":458,"name":"Maximum Duration","entries":["If an affliction lasts only a limited amount of time, it lists a maximum duration. Once this duration passes, the affliction ends. Otherwise, the affliction lasts until you succeed at enough saves to recover, as described in Stages below."],"source":"CRB"},{"type":"pf2-h4","page":458,"name":"Stages","entries":["An affliction typically has multiple stages, each of which lists an effect followed by an interval in parentheses. When you reach a given stage of an affliction, you are subjected to the effects listed for that stage.","At the end of a stage's listed interval, you must attempt a new saving throw. On a success, you reduce the stage by 1; on a critical success, you reduce the stage by 2. You are then subjected to the effects of the new stage. If the affliction's stage is ever reduced below stage 1, the affliction ends and you don't need to attempt further saves unless you're exposed to the affliction again.","On a failure, the stage increases by 1; on a critical failure, the stage increases by 2. You are then subjected to the effects listed for the new stage. If a failure or critical failure would increase the stage beyond the highest listed stage, the affliction instead repeats the effects of the highest stage."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":458,"name":"Conditions from Afflictions","entries":["An affliction might give you conditions with a longer or shorter duration than the affliction. For instance, if an affliction causes you to be drained but has a maximum duration of 5 minutes, you remain drained even after the affliction ends, as is normal for the drained condition. Or, you might succeed at the flat check to remove persistent damage you took from an ongoing affliction, but you would still need to attempt saves to remove the affliction itself, and failing one might give you new persistent damage."],"source":"CRB"},{"type":"pf2-h3","page":458,"name":"Multiple Exposures","entries":["Multiple exposures to the same curse or disease currently affecting you have no effect. For a poison, however, failing the initial saving throw against a new exposure increases the stage by 1 (or by 2 if you critically fail) without affecting the maximum duration. This is true even if you're within the poison's onset period, though it doesn't change the onset length."],"source":"CRB"},{"type":"pf2-h3","page":458,"name":"Virulent Afflictions","entries":["Afflictions with the {@trait virulent} trait are harder to remove.","You must succeed at two consecutive saves to reduce a virulent affliction's stage by 1. A critical success reduces a virulent affliction's stage by only 1 instead of by 2."],"source":"CRB"}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":443,"name":"Checks","entries":["When success isn't certain—whether you're swinging a sword at a foul beast, attempting to leap across a chasm, or straining to remember the name of the earl's second cousin at a soiree—you'll attempt a check. Pathfinder has many types of checks, from skill checks to attack rolls to saving throws, but they all follow these basic steps.",{"type":"list","style":"list-decimal","items":["Roll a d20 and identify the modifiers, bonuses, and penalties that apply.","Calculate the result.","Compare the result to the difficulty class (DC).","Determine the degree of success and the effect."]},"Checks and difficulty classes (DC) both come in many forms. When you swing your sword at that foul beast, you'll make an attack roll against its Armor Class, which is the DC to hit another creature. If you are leaping across that chasm, you'll attempt an {@skill Athletics} skill check with a DC based on the distance you are trying to jump. When calling to mind the name of the earl's second cousin, you attempt a check to Recall Knowledge. You might use either the Society skill or a Lore skill you have that's relevant to the task, and the DC depends on how common the knowledge of the cousin's name might be, or how many drinks your character had when they were introduced to the cousin the night before.","No matter the details, for any check you must roll the d20 and achieve a result equal to or greater than the DC to succeed. Each of these steps is explained below.",{"type":"pf2-h3","page":444,"name":"Step 1: Roll D20 and Identify The Modifiers, Bonuses, and Penalties That Apply","entries":["Start by rolling your d20. You'll then identify all the relevant modifiers, bonuses, and penalties that apply to the roll. A {@b modifier} can be either positive or negative, but a {@b bonus} is always positive, and a {@b penalty} is always negative.","The sum of all the modifiers, bonuses, and penalties you apply to the d20 roll is called your total modifier for that statistic.","Nearly all checks allow you to add an {@b ability modifier} to the roll. An ability modifier represents your raw capabilities and is derived from an ability score, as described on page 20. Exactly which ability modifier you use is determined by what you're trying to accomplish. Usually a sword swing applies your Strength modifier, whereas remembering the name of the earl's cousin uses your Intelligence modifier.","When attempting a check that involves something you have some training in, you will also add your {@b bonus}. This bonus depends on your proficiency rank:","untrained, trained, expert, master, or legendary. If you're untrained, your bonus is +0—you must rely on raw talent and any bonuses from the situation. Otherwise, the bonus equals your character's level plus a certain amount depending on your rank. If your proficiency rank is trained, this bonus is equal to your level + 2, and higher proficiency ranks further increase the amount you add to your level.",{"type":"table","colStyles":["text-center","text-center"],"rows":[["Proficiency Rank","Proficiency Bonus"],["Untrained","0"],["Trained","Your level + 2"],["Expert","Your level + 4"],["Master","Your level + 6"],["Legendary","Your level + 8"]]},"There are three other types of bonus that frequently appear: circumstance bonuses, item bonuses, and status bonuses. If you have different types of bonus that would apply to the same roll, you'll add them all. But if you have multiple bonuses of the same type, you can use only the highest bonus on a given roll—in other words, they don't \"stack.\" For instance, if you have both a proficiency bonus and an item bonus, you add both to your d20 result, but if you have two item bonuses that could apply to the same check, you add only the higher of the two.","{@b Circumstance bonuses} typically involve the situation you find yourself in when attempting a check. For instance, using Raise a Shield with a buckler grants you a +1 circumstance bonus to AC. Being behind cover grants you a +2 circumstance bonus to AC. If you are both behind cover and Raising a Shield, you gain only the +2 circumstance bonus for cover, since they're the same type and the bonus from cover is higher.","{@b Item bonuses} are granted by some item that you are wearing or using, either mundane or magical. For example, armor gives you an item bonus to AC, while expanded alchemist's tools grant you an item bonus to {@skill Crafting} checks when making alchemical items.","{@b Status bonuses} typically come from spells, other magical effects, or something applying a helpful, often temporary, condition to you. For instance, the 3rd-level {@spell heroism} spell grants a +1 status bonus to attack rolls, {@skill Perception} checks, saving throws, and skill checks. If you were under the effect of {@spell heroism} and someone cast the {@spell bless} spell, which also grants a +1 status bonus on attacks, your attack rolls would gain only a +1 status bonus, since both spells grant a +1 status bonus to those rolls, and you only take the highest status bonus.","Penalties work very much like bonuses. You can have {@b circumstance penalties {@b status penalties}, and sometimes even {@b item penalties.} Like bonuses of the same type, you take only the worst all of various penalties of a given type. However, you can apply both a bonus and a penalty of the same type on a single roll. For example, if you had a +1 status bonus from a {@spell heroism} spell but a –2 status penalty from the sickened condition, you'd apply them both to your roll—so {@spell heroism} still helps even though you're feeling unwell.","Unlike bonuses, penalties can also be {@b untyped}, in which case they won't be classified as \"circumstance,\" \"item,\" or \"status.\" Unlike other penalties, you always add all your untyped penalties together rather than simply taking the worst one. For instance, when you use attack actions, you incur a multiple attack penalty on each attack you make on your turn after the first attack, and when you attack a target that's beyond your weapon's normal range increment, you incur a range penalty on the attack.","Because these are both untyped penalties, if you make multiple attacks at a faraway target, you'd apply both the multiple attack penalty and the range penalty to your roll.","Once you've identified all your various modifiers, bonuses, and penalties, you move on to the next step."],"source":"CRB"},{"type":"pf2-h3","page":445,"name":"Step 2: Calculate the Result","entries":["This step is simple. Add up all the various modifiers, bonuses, and penalties you identified in Step 1—this is your total modifier. Next add that to the number that came up on your d20 roll. This total is your check result."],"source":"CRB"},{"type":"pf2-h3","page":445,"name":"Step 3: Compare the Result to the DC","entries":["This step can be simple, or it can create suspense. Sometimes you'll know the {@b Difficulty Class} ({@b DC}) of your check. In these cases, if your result is equal to or greater than the DC, you succeed! If your roll anything less than the DC, you fail.","Other times, you might not know the DC right away. Swimming across a river would require an {@skill Athletics} check, but it doesn't have a specified DC—so how will you know if you succeed or fail? You call out your result to the GM and they will let you know if it is a success, failure, or otherwise. While you might learn the exact DC through trial and error, DCs sometimes change, so asking the GM whether a check is successful is the best way to determine whether or not you have met or exceeded the DC.",{"type":"pf2-h4","page":445,"name":"Calculating DCs","entries":["Whenever you attempt a check, you compare your result against a DC. When someone or something else attempts a check against you, rather than both forces rolling against one another, the GM (or player, if the opponent is another PC) compares their result to a fixed DC based on your relevant statistic. Your DC for a given statistic is 10 + the total modifier for that statistic."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":445,"name":"Step 4: Determine the Degree of Success and Effect","entries":["Many times, it's important to determine not only if you succeed or fail, but also how spectacularly you succeed or fail. Exceptional results—either good or bad—can cause you to critically succeed at or critically fail a check.","You critically succeed at a check when a check's result meets or exceeds the DC by 10 or more. If the check is an attack roll, this is sometimes called a critical hit. You can also critically fail a check. The rules for critical failure—sometimes called a fumble—are the same as those for a critical success, but in the other direction: if you fail a check by 10 or more, that's a critical failure.","If you rolled a 20 on the die (a \"natural 20\"), your result is one degree of success better than it would be by numbers alone. If you roll a 1 on the d20 (a \"natural 1\"), your result is one degree worse. This means that a natural 20 usually results in a critical success and natural 1 usually results in a critical failure. However, if you were going up against a very high DC, you might get only a success with a natural 20, or even a failure if 20 plus your total modifier is 10 or more below the DC. Likewise, if your modifier for a statistic is so high that adding it to a 1 from your d20 roll exceeds the DC by 10 or more, you can succeed even if you roll a natural 1! If a feat, magic item, spell, or other effect does not list a critical success or critical failure, treat is as an ordinary success or failure instead.","Some other abilities can change the degree of success for rolls you get. When resolving the effect of an ability that changes your degree of success, always apply the adjustment from a natural 20 or natural 1 before anything else."],"source":"CRB"}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":467,"name":"Concealment and Invisibility","entries":["The concealed and invisible conditions reflect certain circumstances that can make a creature harder to see.",{"type":"pf2-h4","page":467,"name":"Concealed","entries":["This condition protects a creature if it's in mist, within dim light, or amid something else that obscures sight but does not provide a physical barrier to effects. An effect or type of terrain that describes an area of concealment makes all creatures within it concealed.","When you target a creature that's {@condition concealed} from you, you must attempt a DC {@flatDC 5} flat check before you roll to determine your effect. If you fail, you don't affect the target. the {@condition concealed} condition doesn't change which of the main categories of detection apply to the creature. A creature in a light fog bank is still observed even though it's concealed."],"source":"CRB"},{"type":"pf2-h4","page":467,"name":"Invisible","entries":["A creature with the invisible condition (by way of an {@spell invisibility} spell or {@item invisibility potion}, for example) is automatically {@condition undetected} to any creatures relying on sight as their only precise sense. Precise senses other than sight ignore the invisible condition.","You can use the {@action Seek} basic action to attempt to figure out an {@condition invisible} creature's location, making it instead only {@condition hidden} from you. This lasts until the {@condition invisible} creature successfully uses {@action Sneak} to become {@condition undetected} again. If you're already {@condition observed||observing} a creature when it becomes {@condition invisible}, it starts out {@condition hidden}, since you know where it was when it became {@condition invisible}, though it can then {@action Sneak} to become {@condition undetected}.","Other effects might make an {@condition invisible} creature hidden or even observed but concealed. For instance, if you were tracking an invisible creature's footprints through the snow, the footprints would make it hidden.","Similarly, throwing a net over an {@condition invisible} creature would make it {@condition observed} but {@condition concealed} for as long as the net is on the creature."],"source":"CRB"}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":618,"name":"Condition Values","entries":["Some conditions have a numerical value, called a condition value, indicated by a numeral following the condition. This value conveys the severity of a condition, and such conditions often give you a bonus or penalty equal to their value. These values can often be reduced by skills, spells, or simply waiting. If a condition value is ever reduced to 0, the condition ends."],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":453,"name":"Conditions","entries":["The results of various checks might apply conditions to you or, less often, an item. Conditions change your state of being in some way. You might be gripped with fear or made faster by a spell or magic item. One condition represents what happens when a creature successfully drains your blood or life essence, while others represent creatures' attitudes toward you and how they interact with you.","Conditions are persistent; when you're affected by a condition, its effects last until the stated duration ends, the condition is removed, or terms dictated in the condition cause it to end. The rules for conditions are summarized on page 454 and described in full on pages 618–623.",{"type":"pf2-brown-box","name":"CONDITIONS","entries":["These conditions appear often in the game and are defined in detail in the Conditions Appendix on pages 618–623. Here's a brief summary of each.","{@b {@condition Blinded}:} You're unable to see.","{@b {@condition Broken}:} This item can't be used for its normal function until repaired.","{@b {@condition Clumsy}:} You can't move as easily or gracefully as usual.","{@b {@condition Concealed}:} Fog or similar obscuration makes you difficult to see and target.","{@b {@condition Confused}:} You attack indiscriminately.","{@b {@condition Controlled}:} Another creature determines your actions.","{@b {@condition Dazzled}:} Everything is {@condition concealed} to you.","{@b {@condition Deafened}:} You're unable to hear.","{@b {@condition Doomed}:} With your soul in peril, you are now closer to death.","{@b {@condition Drained}:} Blood loss or something similar has leached your vitality.","{@b {@condition Dying}:} You're slipping closer to death.","{@b {@condition Encumbered}:} You're carrying more weight than you can manage.","{@b {@condition Enfeebled}:} Your strength has been sapped away.","{@b {@condition Fascinated}:} You are compelled to focus your attention on something.","{@b {@condition Fatigued}:} Your defenses are lower and you can't focus while exploring.","{@b {@condition Flat-Footed}:} You're unable to defend yourself to your full capability.","{@b {@condition Fleeing}:} You must run away.","{@b {@condition Friendly}:} An NPC with this condition has a good attitude toward you.","{@b {@condition Frightened}:} Fear makes you less capable of attacking and defending.","{@b {@condition Grabbed}:} A creature, object, or magic holds you in place.","{@b {@condition Helpful}:} An NPC with this condition wants to assist you.","{@b {@condition Hidden}:} A creature you're {@condition hidden} from knows your location but can't see you.","{@b {@condition Hostile}:} An NPC with this condition wants to harm you.","{@b {@condition Immobilized}:} You can't move.","{@b {@condition Indifferent}:} An NPC with this condition doesn't have a strong opinion about you.","{@b {@condition Invisible}:} Creatures can't see you.","{@b {@condition Observed}:} You're in plain view.","{@b {@condition Paralyzed}:} You body is frozen in place.","{@b {@condition Persistent Damage|CRB|Persistent Damage}:} You keep taking damage every round.","{@b {@condition Petrified}:} You've been turned to stone.","{@b {@condition Prone}:} You're lying on the ground and easier to attack.","{@b {@condition Quickened}:} You get an extra action each turn.","{@b {@condition Restrained}:} You're tied up and can't move, or a grappling creature has you pinned.","{@b {@condition Sickened}:} You're sick to your stomach.","{@b {@condition Slowed}:} You lose actions each turn.","{@b {@condition Stunned}:} You can't use actions.","{@b {@condition Stupefied}:} Your can't access your full mental faculties, and you have trouble casting spells.","{@b {@condition Unconscious}:} You're asleep or knocked out.","{@b {@condition Undetected}:} A creature you're {@condition undetected} by doesn't know where you are.","{@b {@condition Unfriendly}:} An NPC with this condition doesn't like you.","{@b {@condition Unnoticed}:} A creature is entirely unaware you're present.","{@b {@condition Wounded}:} You've been brought back from the brink of death but haven't fully recovered."]}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":458,"name":"Counteracting","entries":["Some effects try to counteract spells, afflictions, conditions, or other effects. Counteract checks compare the power of two forces and determine which defeats the other. Successfully counteracting an effect ends it unless noted otherwise.","When attempting a counteract check, add the relevant skill modifier or other appropriate modifier to your check against the target's DC. If you're counteracting an affliction, the DC is in the affliction's stat block. If it's a spell, use the caster's DC. The GM can also calculate a DC based on the target effect's level. For spells, the counteract check modifier is your spellcasting ability modifier plus your spellcasting proficiency bonus, plus any bonuses and penalties that specifically apply to counteract checks. What you can counteract depends on the check result and the target's level. If an effect is a spell, its level is the counteract level.","Otherwise, halve its level and round up to determine its counteract level. If an effect's level is unclear and it came from a creature, halve and round up the creature's level.",{"type":"successDegree","entries":{"Critical Success":"Counteract the target if its counteract level is no more than 3 levels higher than your effect's counteract level.","Success":"Counteract the target if its counteract level is no more than 1 level higher than your effect's counteract level.","Failure":"Counteract the target if its counteract level is lower than your effect's counteract level.","Critical Failure":"You fail to counteract the target."}}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":477,"name":"Cover","entries":["When you're behind an obstacle that could block weapons, guard you against explosions, and make you harder to detect, you're behind cover. Standard cover gives you a +2 circumstance bonus to AC, to Reflex saves against area effects, and to {@skill Stealth} checks to {@action Hide}, {@action Sneak}, or otherwise avoid detection. You can increase this to greater cover using the {@action Take Cover} basic action, increasing the circumstance bonus to +4. If cover is especially light, typically when it's provided by a creature, you have lesser cover, which grants a +1 circumstance bonus to AC. A creature with standard cover or greater cover can attempt to use {@skill Stealth} to {@action Hide}, but lesser cover isn't sufficient.",{"type":"table","colStyles":["text-center","text-center","text-center"],"rows":[["Type of Cover","Bonus","Can Hide"],["Lesser","+1 to AC","No"],["Standard","+2 to AC, Reflex, {@skill Stealth}","Yes"],["Greater","+4 to AC, Reflex, {@skill Stealth}","Yes"]]},"Cover is relative, so you might simultaneously have cover against one creature and not another. Cover applies only if your path to the target is partially blocked. If a creature is entirely behind a wall or the like, you don't have {@quickref line of effect||3|line of effect} and typically can't target it at all.","Usually, the GM can quickly decide whether your target has cover. If you're uncertain or need to be more precise, draw a line from the center of your space to the center of the target's space. If that line passes through any terrain or object that would block the effect, the target has standard cover (or greater cover if the obstruction is extreme or the target has {@action Take Cover||Taken Cover}). If the line passes through a creature instead, the target has lesser cover. When measuring cover against an area effect, draw the line from the effect's point of origin to the center of the creature's space.",{"type":"pf2-h4","page":477,"name":"Cover and Large Creatures","entries":["If a creature between you and a target is two or more sizes larger than both you and your target, that creature's space blocks the effect enough to provide standard cover instead of lesser cover. The GM might determine that a creature doesn't gain cover from terrain that it's significantly larger than. For example, a Huge dragon probably wouldn't receive any benefit from being behind a 1-foot-wide pillar."],"source":"CRB"},{"type":"pf2-h4","page":477,"name":"Special Circumstances","entries":["Your GM might allow you to overcome your target's cover in some situations. If you're right next to an arrow slit, you can shoot without penalty, but you have greater cover against someone shooting back at you from far away. Your GM might let you reduce or negate cover by leaning around a corner to shoot or the like. This usually takes an action to set up, and the GM might measure cover from an edge or corner of your space instead of your center."],"source":"CRB"}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":450,"name":"Damage","entries":["In the midst of combat, you attempt checks to determine if you can damage your foe with weapons, spells, or alchemical concoctions. On a successful check, you hit and deal damage. Damage decreases a creature's Hit Points on a 1-to-1 basis (so a creature that takes 6 damage loses 6 Hit Points). The full rules can be found in the Hit Points, Healing, and Dying section on page 459.","Damage is sometimes given as a fixed amount, but more often than not you'll make a damage roll to determine how much damage you deal. A damage roll typically uses a number and type of dice determined by the weapon or unarmed attack used or the spell cast, and it is often enhanced by various modifiers, bonuses, and penalties.","Like checks, a damage roll—especially a melee weapon damage roll—is often modified by a number of modifiers, penalties, and bonuses. When making a damage roll, you take the following steps, explained in detail below.",{"type":"list","style":"list-decimal","items":["Roll the dice indicated by the weapon, unarmed attack, or spell, and apply the modifiers, bonuses, and penalties that apply to the result of the roll.","Determine the damage type.","Apply the target's immunities, weaknesses, and resistances to the damage.","If any damage remains, reduce the target's Hit Points by that amount."]},{"type":"pf2-h3","page":450,"name":"Step 1: Roll The Damage Dice and Apply Modifiers, Bonuses, and Penalties","entries":["Your weapon, unarmed attack, spell, or sometimes even a magic item determines what type of dice you roll for damage, and how many. For instance, if you're using a normal longsword, you'll roll {@dice 1d8}. If you're casting a 3rd-level {@spell fireball} spell, you'll roll {@dice 6d6}. Sometimes, especially in the case of weapons, you'll apply modifiers, bonuses, and penalties to the damage.","When you use melee weapons, unarmed attacks, and thrown ranged weapons, the most common modifier you'll add to damage is your Strength ability modifier. Weapons with the propulsive trait sometimes add half your Strength modifier. You typically do not add an ability modifier to spell damage, damage from most ranged weapons, or damage from alchemical bombs and similar items.","As with checks, you might add circumstance, status, or item bonuses to your damage rolls, but if you have multiple bonuses of the same type, you add only the highest bonus of that type. Again like checks, you may also apply circumstance, status, item, and untyped penalties to the damage roll, and again you apply only the greatest penalty of a specific type but apply all untyped penalties together.","Use the formulas below.",{"type":"pf2-inset","entries":["Melee damage roll = damage die of weapon or unarmed attack + Strength modifier + bonuses + penalties"]},{"type":"pf2-inset","entries":["Ranged damage roll = damage die of weapon + Strength modifier for thrown weapons + bonuses + penalties"]},{"type":"pf2-inset","entries":["Spell (and similar effects) damage roll = damage die of the effect + bonuses + penalties"]},"If the combined penalties on an attack would reduce the damage to 0 or below, you still deal 1 damage.",{"type":"pf2-h4","page":451,"name":"Increasing Damage","entries":["In some cases, you increase the number of dice you roll when making weapon damage rolls. Magic weapons etched with the {@item striking} rune can add one or more weapon damage dice to your damage roll. These extra dice are the same die size as the weapon's damage die. At certain levels, most characters gain the ability to deal extra damage from the weapon specialization class feature."],"source":"CRB"},{"type":"pf2-h4","page":451,"name":"Persistent Damage","entries":["Persistent damage is a condition that causes damage to recur beyond the original effect. Unlike with normal damage, when you are subject to persistent damage, you don't take it right away. Instead, you take the specified damage at the end of your turns, after which you attempt a DC {@flatDC 15} flat check to see if you recover from the persistent damage.","See the Conditions Appendix on pages 618–623 for the complete rules regarding the persistent damage condition."],"source":"CRB"},{"type":"pf2-h4","page":451,"name":"Doubling and Halving Damage","entries":["Sometimes you'll need to halve or double an amount of damage, such as when the outcome of your Strike is a critical hit, or when you succeed at a basic Reflex save against a spell. When this happens, you roll the damage normally, adding all the normal modifiers, bonuses, and penalties. Then you double or halve the amount as appropriate (rounding down if you halved it). The GM might allow you to roll the dice twice and double the modifiers, bonuses, and penalties instead of doubling the entire result, but this usually works best for singletarget attacks or spells at low levels when you have a small number of damage dice to roll. Benefits you gain specifically from a critical hit, like the {@item flaming} weapon rune's persistent fire damage or the extra damage die from the fatal weapon trait, aren't doubled."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":451,"name":"Step 2: Determine The Damage Type","entries":["Once you've calculated how much damage you deal, you'll need to determine the damage type. There are many types of damage and sometimes certain types are applied in different ways. The smack of a club deals bludgeoning damage. The stab of a spear deals piercing damage. The staccato crack of a {@spell lightning bolt} spell deals electricity damage. Sometimes you might apply precision damage, dealing more damage for hitting a creature in a vulnerable spot or when the target is somehow vulnerable. The damage types are described on page 452.",{"type":"pf2-h4","page":451,"name":"Damage Types and Traits","entries":["When an attack deals a type of damage, the attack action gains that trait. For example, the Strikes and attack actions you use wielding a sword when its {@item flaming} rune is active gain the fire trait, since the rune gives the weapon the ability to deal fire damage."],"source":"CRB"},{"type":"pf2-brown-box","name":"DAMAGE TYPES","entries":["Damage has a number of different types and categories, which are described below.",{"type":"pf2-title","name":"Physical Damage"},"Damage dealt by weapons, many physical hazards, and a handful of spells is collectively called physical damage. The main types of physical damage are bludgeoning, piercing, and slashing. {@b Bludgeoning damage} comes from weapons and hazards that deal blunt-force trauma, like a hit from a club or being dashed against rocks. {@b Piercing damage} is dealt from stabs and punctures, whether from a dragon's fangs or the thrust of a spear. {@b Slashing damage} is delivered by a cut, be it the swing of the sword or the blow from a scythe blades trap.","Ghosts and other incorporeal creatures have a high resistance to physical attacks that aren't magical (attacks that lack the magical trait). Furthermore, most incorporeal creatures have additional, though lower, resistance to magical physical damage (such as damage dealt from a mace with the magical trait) and most other damage types.",{"type":"pf2-title","name":"Energy Damage"},"Many spells and other magical effects deal energy damage. Energy damage is also dealt from effects in the world, such as the biting cold of a blizzard to a raging forest fire. The main types of energy damage are acid, cold, electricity, fire, and sonic. {@b Acid damage} can be delivered by gases, liquids, and certain solids that dissolve flesh, and sometimes harder materials. {@b Cold damage} freezes material by way of contact with chilling gases and ice. {@b Electricity Damage} comes from the discharge of powerful lightning and sparks. {@b Fire damage} burns through heat and combustion. {@b Sonic damage} assaults matter with high-frequency vibration and sound waves. Many times, you deal energy damage by casting magic spells, and doing so is often useful against creatures that have immunities or resistances to physical damage.","Two special types of energy damage specifically target the living and the undead. Positive energy often manifests as healing energy to living creatures but can create {@b positive damage} that withers undead bodies and disrupts and injures incorporeal undead. Negative energy often revivifies the unnatural, unliving power of undead, while manifesting as {@b negative damage} that gnaws at the living.","Powerful and pure magical energy can manifest itself as {@b force damage}. Few things can resist this type of damage—not even incorporeal creatures such as ghosts and wraiths.",{"type":"pf2-title","name":"Alignment Damage"},"Weapons and effects keyed to a particular alignment can deal {@b chaotic}, {@b evil}, {@b good}, or {@b lawful} damage. These damage types apply only to creatures that have the opposing alignment trait. Chaotic damage harms only lawful creatures, evil damage harms only good creatures, good damage harms only evil creatures, and lawful damage harms only chaotic creatures.",{"type":"pf2-title","name":"Mental Damage"},"Sometimes an effect can target the mind with enough psychic force to actually deal damage to the creature. When it does, it deals {@b mental damage}. Mindless creatures and those with only programmed or rudimentary intelligence are often immune to mental damage and effects.",{"type":"pf2-title","name":"Poison Damage"},"Venoms, toxins and the like can deal {@b poison damage}, which affects creatures by way of contact, ingestion, inhalation, or injury. In addition to coming from monster attacks, alchemical items, and spells, poison damage is often caused by ongoing afflictions, which follow special rules described on page 457.",{"type":"pf2-title","name":"Bleed Damage"},"Another special type of physical damage is {@b bleed damage}. This is persistent damage that represents loss of blood.","As such, it has no effect on nonliving creatures or living creatures that don't need blood to live. Weaknesses and resistances to physical damage apply. Bleed damage ends automatically if you're healed to your full Hit Points.",{"type":"pf2-title","name":"Precision Damage"},"Sometimes you are able to make the most of your attack through sheer precision. When you hit with an ability that grants you {@b precision damage}, you increase the attack's listed damage, using the same damage type, rather than tracking a separate pool of damage. For example, a non-magical dagger Strike that deals 1d6 precision damage from a rogue's sneak attack increases the piercing damage by 1d6.","Some creatures are immune to precision damage, regardless of the damage type; these are often amorphous creatures that lack vulnerable anatomy. A creature immune to precision damage would ignore the 1d6 precision damage in the example above, but it would still take the rest of the piercing damage from the Strike. Since precision damage is always the same type of damage as the attack it's augmenting, a creature that is resistant to physical damage, like a gargoyle, would resist not only the dagger's damage but also the precision damage, even though it is not specifically resistant to precision damage.",{"type":"pf2-title","name":"Precious Materials"},"While not their own damage category, precious materials can modify damage to penetrate a creature's resistances or take advantage of its weaknesses. For instance, silver weapons are particularly effective against lycanthropes and bypass the resistances to physical damage that most devils have."]}],"source":"CRB"},{"type":"pf2-h3","page":451,"name":"Step 3: Apply the Target's Immunities, Weaknesses, and Resistances","entries":["Defenses against certain types of damage or effects are called immunities or resistances, while vulnerabilities are called weaknesses. Apply immunities first, then weaknesses, and resistances third. Immunity, weakness, or resistance to an alignment applies only to damage of that type, not to damage from an attacking creature of that alignment.",{"type":"pf2-h4","page":451,"name":"Immunity","entries":["When you have immunity to a specific type of damage, you ignore all damage of that type. If you have immunity to a specific condition or type of effect, you can't be affected by that condition or any effect of that type. If you have immunity to effects with a certain trait (such as death effects, poison, or disease) you are unaffected by any effect with that trait. Often, an effect can be both a trait and a damage type (this is especially true in the case of energy damage types). In these cases, the immunity applies to the entire effect, not just the damage. You can still be targeted by an ability with an effect you are immune to; you just don't apply the effect. However, some complex effects might have parts that affect you even if you're immune to one of the effect's traits; for instance, a spell that deals both fire and acid damage can still deal acid damage to you even if you're immune to fire.","Immunity to critical hits works a little differently. When a creature immune to critical hits is critically hit by a Strike or other attack that deals damage, it takes normal damage instead of double damage. This does not make it immune to any other critical success effects of other actions that have the attack trait (such as {@action Grapple} and {@action Shove}).","Another exception is immunity to nonlethal attacks. If you are immune to nonlethal attacks, you are immune to all damage from attacks with the nonlethal trait, no matter what other type the damage has. For instance, a {@creature stone golem} has immunity to nonlethal attacks. This means that no matter how hard you hit it with your fist, you're not going to damage it—unless your fists don't have the {@trait nonlethal} trait, such as if you're a {@class monk}."],"source":"CRB"},{"type":"pf2-h4","page":453,"name":"Temporary Immunity","entries":["Some effects grant you immunity to the same effect for a set amount of time. If an effect grants you temporary immunity, repeated applications of that effect don't affect you for as long as the temporary immunity lasts. Unless the effect says it applies only to a certain creature's ability, it doesn't matter who created the effect. For example, the {@spell blindness} spell says, \"The target is temporarily immune to blindness for 1 minute.\" If anyone casts {@spell blindness} on that creature again before 1 minute passes, the spell has no effect.","Temporary immunity doesn't prevent or end ongoing effects of the source of the temporary immunity. For instance, if an ability makes you frightened and you then gain temporary immunity to the ability, you don't immediately lose the frightened condition due to the immunity you just gained—you simply don't become frightened if you're targeted by the ability again before the immunity ends."],"source":"CRB"},{"type":"pf2-h4","page":453,"name":"Weakness","entries":["If you have a weakness to a certain type of damage or damage from a certain source, that type of damage is extra effective against you. Whenever you would take that type of damage, increase the damage you take by the value of the weakness. For instance, if you are dealt 2d6 fire damage and have weakness 5 to fire, you take 2d6+5 fire damage.","If you have a weakness to something that doesn't normally deal damage, such as water, you take damage equal to the weakness value when touched or affected by it. If more than one weakness would apply to the same instance of damage, use only the highest applicable weakness value. This usually happens only when a monster is weak to both a type of physical damage and a given material."],"source":"CRB"},{"type":"pf2-h4","page":453,"name":"Resistance","entries":["If you have resistance to a type of damage, each time you take that type of damage, you reduce the amount of damage you take by the listed amount (to a minimum of 0 damage). Resistance can specify combinations of damage types or other traits. For instance, you might encounter a monster that's resistant to non-magical bludgeoning damage, meaning it would take less damage from bludgeoning attacks that weren't magical, but would take normal damage from your {@runeItem mace||+1 wepon potency|} (since it's magical) or a non-magical {@item spear} (since it deals piercing damage). A resistance also might have an exception. For example, resistance 10 to physical damage (except silver) would reduce any physical damage by 10 unless that damage was dealt by a silver weapon.","If you have more than one type of resistance that would apply to the same instance of damage, use only the highest applicable resistance value.","It's possible to have resistance to all damage. When an effect deals damage of multiple types and you have resistance to all damage, apply the resistance to each type of damage separately. If an attack would deal 7 slashing damage and 4 fire damage, resistance 5 to all damage would reduce the slashing damage to 2 and negate the fire damage entirely."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":453,"name":"Step 4: If Damage Remains, Reduce the Target's Hit Points","entries":["After applying the target's immunities, resistances, and weaknesses to the damage, whatever damage is left reduces the target's Hit Points on a 1-to-1 basis. More information about Hit Points can be found in the Hit Points, Healing, and Dying section on page 459.",{"type":"pf2-h4","page":453,"name":"Nonlethal Attacks","entries":["You can make a nonlethal attack in an effort to knock someone out instead of killing them (see Knocked Out and Dying on page 459). Weapons with the nonlethal trait (including fists) do this automatically. You take a –2 circumstance penalty to the attack roll when you make a nonlethal attack using a weapon that doesn't have the nonlethal trait. You also take this penalty when making a lethal attack using a nonlethal weapon.","Spells and other effects with the nonlethal trait that reduce a creature to 0 Hit Points knock the creature out instead of killing them."],"source":"CRB"}],"source":"CRB"}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":481,"name":"Downtime Mode","entries":[{"type":"pf2-h1-flavor","page":481,"entries":["{@i Downtime mode is played day-by-day rather than minute-by-minute or scene-by-scene. Usually this mode of play occurs when you are in the safety of a settlement, maybe recovering from your adventures or studying an artifact you found.}"],"source":"CRB"},"Downtime gives you time to rest fully, engage in crafting or a professional endeavor, learn new spells, retrain feats, or just have fun. You can sell items acquired during your adventures, buy new goods, and perform other activities as determined by your feats, your skills, and the settlement where you are spending the downtime.",{"type":"pf2-h2","page":481,"name":"Long-Term Rest","entries":["You can spend an entire day and night resting during downtime to recover Hit Points equal to your Constitution modifier (minimum 1) multiplied by twice your level."],"source":"CRB"},{"type":"pf2-h2","page":481,"name":"Retraining","entries":["Retraining offers a way to alter some of your character choices, which is helpful when you want to take your character in a new direction or change decisions that didn't meet your expectations. You can retrain feats, skills, and some selectable class features. You can't retrain your ancestry, heritage, background, class, or ability scores. You can't perform other downtime activities while retraining.","Retraining usually requires you to spend time learning from a teacher, whether that entails physical training, studying at a library, or falling into shared magical trances. Your GM determines whether you can get proper training or whether something can be retrained at all. In some cases, you'll have to pay your instructor.","Some abilities can be difficult or impossible to retrain (for instance, a sorcerer can retrain their bloodline only in extraordinary circumstances).","When retraining, you generally can't make choices you couldn't make when you selected the original option. For instance, you can't exchange a 2nd-level skill feat for a 4th-level one, or for one that requires prerequisites you didn't meet at the time you took the original feat. If you don't remember whether you met the prerequisites at the time, ask your GM to make the call. If you cease to meet the prerequisites for an ability due to retraining, you can't use that ability. You might need to retrain several abilities in sequence in order to get all the abilities you want.",{"type":"pf2-h3","page":481,"name":"Feats","entries":["You can spend a week of downtime retraining to swap out one of your feats. Remove the old feat and replace it with another of the same type. For example, you could swap a skill feat for another skill feat, but not for a wizard feat."],"source":"CRB"},{"type":"pf2-h3","page":481,"name":"Skills","entries":["You can spend a week of downtime retraining to swap out one of your skill increases. Reduce your proficiency rank in the skill losing its increase by one step and increase your proficiency rank in another skill by one step. The new proficiency rank has to be equal to or lower than the proficiency rank you traded away. For instance, if your bard is a master in {@skill Performance} and {@skill Stealth}, and an expert in {@skill Occultism}, you could reduce the character's proficiency in {@skill Stealth} to expert and become a master in {@skill Occultism}, but you couldn't reassign that skill increase to become legendary in {@skill Performance}. Keep track of your level when you reassign skill increases; the level at which your skill proficiencies changed can influence your ability to retrain feats with skill prerequisites.","You can also spend a week to retrain an initial trained skill you gained during character creation."],"source":"CRB"},{"type":"pf2-h3","page":481,"name":"Class Features","entries":["You can change a class feature that required a choice, making a different choice instead. This lets you change a druid order or a wizard school, for example. The GM will tell you how long this takes—always at least a month."],"source":"CRB"},{"type":"pf2-brown-box","page":481,"name":"SKILL DOWNTIME ACTIVITIES","entries":["Chapter 4: Skills includes several downtime activities, which are summarized here.","{@b {@action Craft}:} Using the {@skill Crafting} skill, you can create items from raw materials (page 244).","{@b {@action Create Forgery}:} You forge a document (page 251).","{@b {@action Earn Income}:} You earn money, typically using {@skill Crafting}, Lore, or {@skill Performance} (page 236).","{@b {@action Subsist}:} You find food and shelter in the wilderness or within a settlement (page 240).","{@b {@action Treat Disease}:} You spend time caring for a diseased creature in the hope of curing that creature (page 248)."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":481,"name":"Other Downtime Activities","entries":["Work with your GM if there are other ways you want to spend downtime. You might need to pay for your cost of living (the prices for this can be found on page 294).","You might acquire property, manage a business, become part of a guild or civic group, curry favor in a large city, take command of an army, take on an apprentice, start a family, or minister to a flock of the faithful."],"source":"CRB"}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":453,"name":"Effects","entries":["Anything you do in the game has an {@b effect}. Many of these outcomes are easy to adjudicate during the game.","If you tell the GM that you draw your sword, no check is needed, and the result is that your character is now holding a sword. Other times, the specific effect requires more detailed rules governing how your choice is resolved.","Many spells, magic items, and feats create specific effects, and your character will be subject to effects caused by monsters, hazards, the environment, and other characters.","While a check might determine the overall impact or strength of an effect, a check is not always part of creating an effect. Casting a {@spell fly} spell on yourself creates an effect that allows you to soar through the air, but casting the spell does not require a check. Conversely, using the Intimidate skill to Demoralize a foe does require a check, and your result on that check determines the effect's outcome.","The following general rules are used to understand and apply effects.",{"type":"pf2-h3","page":455,"name":"Duration","entries":["Most effects are discrete, creating an instantaneous effect when you let the GM know what actions you are going to use. Firing a bow, moving to a new space, or taking something out of your pack all resolve instantly. Other effects instead last for a certain duration. Once the duration has elapsed, the effect ends. The rules generally use the following conventions for durations, though spells have some special durations detailed on pages 304–305.","For an effect that lasts a number of rounds, the remaining duration decreases by 1 at the start of each turn of the creature that created the effect. This is common for beneficial effects that target you or your allies. Detrimental effects often last \"until the end of the target's next turn\" or \"through\" a number of their turns (such as \"through the target's next 3 turns\"), which means that the effect's duration decreases at the end of the creature's turn, rather than the start.","Instead of lasting a fixed number of rounds, a duration might end only when certain conditions are met (or cease to be true). If so, the effects last until those conditions are met."],"source":"CRB"},{"type":"pf2-h3","page":455,"name":"Range and Reach","entries":["Actions and other abilities that generate an effect typically work within a specified range or a reach. Most spells and abilities list a {@b range}—the maximum distance from the creature or object creating the effect in which the effect can occur.","Ranged and thrown weapons have a {@b range increment}.","Attacks with such weapons work normally up to that range. Attacks against targets beyond that range take a –2 penalty, which worsens by 2 for every additional multiple of that range, to a maximum of a –10 penalty after five additional range increments. Attacks beyond this range are not possible. For example, if you are using a shortbow, your attacks take no penalty against a target up to 60 feet away, a –2 penalty if a target is over 60 and up to 120 feet away, a –4 if a target is over 120 and up to 180 feet away, and so on, up to a maximum distance of 360 feet.","{@b Reach} is how far you can physically reach with your body or a weapon. Melee Strikes rely on reach. Your reach also creates an area around your space where other creatures could trigger your reactions. Your reach is typically 5 feet, but weapons with the reach trait can extend this. Larger creatures can have greater reach; for instance, an ogre has a 10-foot reach. Unlike with measuring most distances, 10-foot reach can reach 2 squares diagonally. Reach greater than 10 feet is measured normally; 20-foot reach can reach 3 squares diagonally, 25-foot reach can reach 4, and so on."],"source":"CRB"},{"type":"pf2-h3","page":455,"name":"Targets","entries":["Some effects require you to choose specific targets.","Targeting can be difficult or impossible if your chosen creature is undetected by you, if the creature doesn't match restrictions on who you can target, or if some other ability prevents it from being targeted.","Some effects require a target to be willing. Only you can decide whether your PC is willing, and the GM decides whether an NPC is willing. Even if you or your character don't know what the effect is, such as if your character is unconscious, you still decide if you're willing.","Some effects target or require an ally, or otherwise refer to an ally. This must be someone on your side, often another PC, but it might be a bystander you are trying to protect. You are not your own ally. If it isn't clear, the GM decides who counts as an ally or an enemy."],"source":"CRB"},{"type":"pf2-h3","page":456,"name":"Areas","entries":["Some effects occupy an area of a specified shape and size.","An area effect always has a point of origin and extends out from that point. There are four types of areas: emanations, bursts, cones, and lines. When you're playing in encounter mode and using a grid, areas are measured in the same way as movement (page 463), but areas' distances are never reduced or affected by {@quickref difficult terrain||3|terrain} or lesser cover (page 476). You can use the diagrams below as common reference templates for areas, rather than measuring squares each time. Many area effects describe only the effects on creatures in the area. The GM determines any effects to the environment and unattended objects.",{"type":"pf2-h4","page":456,"name":"Burst","entries":["A burst effect issues forth in all directions from a single corner of a square within the range of the effect, spreading in all directions to a specified radius. For instance, when you cast {@spell fireball}, it detonates at the corner of a square within 500 feet of you and creates a 20-foot burst, meaning it extends out 20 feet in every direction from the corner of the square you chose, affecting each creature whose space (or even one square of its space) is within the burst."],"source":"CRB"},{"type":"pf2-h4","page":457,"name":"Cone","entries":["A cone shoots out from you in a quarter circle on the grid.","When you aim a cone, the first square of that cone must share an edge with your space if you're aiming orthogonally, or it must touch a corner of your space if you're aiming diagonally. If you're Large or larger, the first square can run along the edge of any square of your space. You can't aim a cone so that it overlaps your space. The cone extends out for a number of feet, widening as it goes, as shown in the Areas diagram. For instance, when a green dragon uses its breath weapon, it breathes a cone of poisonous gas that originates at the edge of one square of its space and affects a quarter-circle area 30 feet on each edge.","If you make a cone originate from someone or something else, follow these same rules, with the first square of the cone using an edge or corner of that creature or object's space instead of your own."],"source":"CRB"},{"type":"pf2-h4","page":457,"name":"Emanation","entries":["An emanation issues forth from each side of your space, extending out to a specified number of feet in all directions. For instance, the {@spell bless} spell's emanation radiates 5 or more feet outward from the caster. Because the sides of a creature's space are the starting point for the emanation, an emanation from a Large or larger creature affects a greater overall area than that of a Medium or smaller creature. Unless the text states otherwise, the creature creating an emanation effect chooses whether the creature at its center is affected."],"source":"CRB"},{"type":"pf2-h4","page":457,"name":"Line","entries":["A line shoots forth from you in a straight line in a direction of your choosing. The line affects each creature whose space it overlaps. Unless a line effect says otherwise, it is 5 feet wide. For example, the {@spell lightning bolt} spell's area is a 60-foot line that's 5 feet wide."],"source":"CRB"}],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h3","page":457,"name":"Line of Effect","entries":["When creating an effect, you usually need an unblocked path to the target of a spell, the origin point of an effect's area, or the place where you create something with a spell or other ability. This is called a line of effect. You have line of effect unless a creature is entirely behind a solid physical barrier. Visibility doesn't matter for line of effect, nor do portcullises and other barriers that aren't totally solid. If you're unsure whether a barrier is solid enough, usually a 1-foot-square gap is enough to maintain a line of effect, though the GM makes the final call.","In an area effect, creatures or targets must have line of effect to the point of origin to be affected. If there's no line of effect between the origin of the area and the target, the effect doesn't apply to that target. For example, if there's a solid wall between the origin of a {@spell fireball} and a creature that's within the burst radius, the wall blocks the effect—that creature is unaffected by the {@spell fireball} and doesn't need to attempt a save against it. Likewise, any ongoing effects created by an ability with an area cease to affect anyone who moves outside of the line of effect."],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h3","page":457,"name":"Line of Sight","entries":["Some effects require you to have line of sight to your target. As long as you can precisely sense the area (as described in Perception on page 464) and it is not blocked by a solid barrier (as described in {@quickref Cover||4|Cover}), you have line of sight. An area of darkness prevents line of sight if you don't have {@ability darkvision}, but portcullises and other obstacles that aren't totally solid do not. If you're unsure whether a barrier is solid enough to block line of sight, usually a 1-foot-square gap is enough to maintain line of sight, though the GM makes the final call."],"data":{"quickrefIndex":true},"source":"CRB"}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":468,"name":"Encounter Mode","entries":[{"type":"pf2-h1-flavor","page":468,"entries":["{@i When every individual action counts, you enter the encounter mode of play. In this mode, time is divided into rounds, each of which is 6 seconds of time in the game world. Every round, each participant takes a turn in an established order. During your turn, you can use actions, and depending on the details of the encounter, you might have the opportunity to use reactions and free actions on your own turn and on others' turns.}"],"source":"CRB"},{"type":"pf2-h2","page":468,"name":"Structure","entries":["An encounter is played out in a series of rounds, during which the player characters, adversaries, and other participants in the encounter act in sequence.","You roll initiative to determine this order at the start of the encounter and then play through rounds until a conclusion is reached and the encounter ends. The rules in this section assume a combat encounter—a battle—but the general structure can apply to any kind of encounter.",{"type":"pf2-h3","page":468,"name":"Step 1: Roll Initiative","entries":["When the GM calls for it, you'll roll initiative to determine your place in the initiative order, which is the sequence in which the encounter's participants will take their turns. Rolling initiative marks the start of an encounter. More often than not, you'll roll initiative when you enter a battle.","Typically, you'll roll a Perception check to determine your initiative—the more aware you are of your surroundings, the more quickly you can respond. Sometimes, though, the GM might call on you to roll some other type of check. For instance, if you were Avoiding Notice during exploration (page 479), you'd roll a {@skill Stealth} check. A social encounter could call for a {@skill Deception} or {@skill Diplomacy} check.","The GM rolls initiative for anyone other than the player characters in the encounter. If these include a number of identical creatures, the GM could roll once for the group as a whole and have them take their turns within the group in any order. However, this can make battles less predictable and more dangerous, so the GM might want to roll initiative for some or all creatures individually unless it's too much of a burden.","Unlike a typical check, where the result is compared to a DC, the results of initiative rolls are ranked. This ranking sets the order in which the encounter's participants act—the initiative order. The character with the highest result goes first. The second highest follows, and so on until whoever had the lowest result takes their turn last.","If your result is tied with a foe's result, the adversary goes first. If your result is tied with another PC's, you can decide between yourselves who goes first when you reach that place in the initiative order. After that, your places in the initiative order usually don't change during the encounter."],"source":"CRB"},{"type":"pf2-h3","page":468,"name":"Step 2: Play a Round","entries":["A round begins when the participant with the highest initiative roll result starts their turn, and it ends when the one with the lowest initiative ends their turn. The process of taking a turn is detailed below. Creatures might also act outside their turns with reactions and free actions."],"source":"CRB"},{"type":"pf2-h3","page":468,"name":"Step 3: Begin the Next Round","entries":["Once everyone in the encounter has taken a turn, the round is over and the next one begins. Don't roll initiative again; the new round proceeds in the same order as the previous one, repeating the cycle until the encounter ends."],"source":"CRB"},{"type":"pf2-h3","page":468,"name":"Step 4: End the Encounter","entries":["When your foes are defeated, some sort of truce is reached, or some other event or circumstance ends the combat, the encounter is over. You and the other participants no longer follow the initiative order, and a more free-form style of play resumes, with the game typically moving into exploration mode. Sometimes at the end of an encounter, the GM will award Experience Points to the party or you'll find treasure to divvy up."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":468,"name":"Turns","entries":["When it's your turn to act, you can use single actions ({@as 1}), short activities ({@as 2} and {@as 3}), reactions ([reaction]), and free actions ({@as f}). When you're finished, your turn ends and the character next in the initiative order begins their turn.","Sometimes it's important to note when during your turn something happens, so a turn is divided into three steps.",{"type":"pf2-h3","page":468,"name":"Step 1: Start Your Turn","entries":["Many things happen automatically at the start of your turn—it's a common point for tracking the passage of time for effects that last multiple rounds. At the start of each of your turns, take these steps in any order you choose:",{"type":"list","items":["If you created an effect lasting for a certain number of rounds, reduce the number of rounds remaining by 1. The effect ends if the duration is reduced to 0. For example, if you cast a spell that lasts 3 rounds on yourself during your first turn of a fight, it would affect you during that turn, decrease to 2 rounds of duration at the start of your second turn, decrease to 1 round of duration at the start of your third turn, and expire at the start of your fourth turn.","You can use 1 free action or reaction with a trigger of \"Your turn begins\" or something similar.","If you're {@condition dying}, roll a recovery check (page 459).","Do anything else that is specified to happen at the start of your turn."]},"The last step of starting your turn is always the same.",{"type":"list","items":["Regain your 3 actions and 1 reaction. If you haven't spent your reaction from your last turn, you lose it—you can't \"save\" actions or reactions from one turn to use during the next turn. If a condition prevents you from being able to act, you don't regain any actions or your reaction. Some abilities or conditions (such as {@condition quickened} and {@condition slowed}) can change how many actions you regain and whether you regain your reaction. If you lose actions and gain additional actions (such as if you're both {@condition quickened} and {@condition slowed}), you choose which actions to lose."]}],"source":"CRB"},{"type":"pf2-h3","page":469,"name":"Step 2: Act","entries":["You can use actions in any order you wish during your turn, but you have to complete one action or activity before beginning another; for example, you can't use a single action in the middle of performing a 2-action activity. What actions you can use often depend on your class features, skills, feats, and items, but there are default actions anyone can use, described in Basic Actions below. Some effects might prevent you from acting. If you can't act, you can't use any actions, including reactions and free actions.","If you begin a 2-action or 3-action activity on your turn, you must be able to complete it on your turn. You can't, for example, begin to High Jump using your final action on one turn and then complete it as your first action on your next turn.","Once you have spent all 3 of your actions, your turn ends (as described in Step 3) and the next creature's turn begins. You can, however, use only some of your actions and end your turn early. As soon as your turn ends, you lose all your remaining actions, but not your reaction or your ability to use free actions."],"source":"CRB"},{"type":"pf2-h3","page":469,"name":"Step 3: End Your Turn","entries":["Once you've done all the things you want to do with the actions you have available, you reach the end of your turn.","Take the following steps in any order you choose. Play then proceeds to the next creature in the initiative order.",{"type":"list","items":["End any effects that last until the end of your turn. For example, spells with a sustained duration end at the end of your turn unless you used the {@action Sustain a Spell} action during your turn to extend them. Some effects caused by enemies might also last through a certain number of your turns, and you decrease the remaining duration by 1 during this step, ending the effect if its duration is reduced to 0.","If you have a {@condition Persistent Damage|CRB|persistent damage} condition, you take the damage at this point. After you take the damage, you can attempt the flat check to end the {@condition Persistent Damage|CRB|persistent damage}. You then attempt any saving throws for ongoing afflictions. Many other conditions change at the end of your turn, such as the {@condition frightened} condition decreasing in severity. These take place after you've taken any {@condition Persistent Damage|CRB|persistent damage}, attempted flat checks to end the {@condition Persistent Damage|CRB|persistent damage}, and attempted saves against any afflictions.","You can use 1 free action or reaction with a trigger of \"Your turn ends\" or something similar.","Resolve anything else specified to happen at the end of your turn."]}],"source":"CRB"},{"type":"pf2-brown-box","page":469,"name":"TRACKING INITIATIVE","entries":["The GM keeps track of the initiative order for an encounter.","It's usually okay for the players to know this order, since they'll see who goes when and be aware of one another's results. However, the GM might want to conceal the names of adversaries the PCs have yet to identify.","Once the encounter's order is set, it's usually not necessary to track the original initiative numbers. The GM can create a simple list, use a series of cards or other indicators, or use a {@i Pathfinder Combat Pad}, which has magnetic markers to allow for easily rearranging the order.",{"type":"pf2-title","name":"Changing the Initiative Order"},"Any method used to track the initiative order needs to be flexible because the order can change. A creature can use the Delay basic action to change its place in the order, in which case you can erase it from the list or pull its marker aside until it reenters the initiative order. When a creature gets knocked out, its initiative order also changes (see Knocked Out and Dying on page 459). Using the Ready basic action doesn't change a creature's place in the initiative order, though, because the designated action becomes a reaction."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":469,"name":"Basic Actions","entries":["Basic actions represent common tasks like moving around, attacking, and helping others. As such, every creature can use basic actions except in some extreme circumstances, and many of those actions are used very frequently. Most notably, you'll use Interact, Step, Stride, and Strike a great deal. Many feats and other actions call upon you to use one of these basic actions or modify them to produce different effects. For example, a more complex action might let you Stride up to double your Speed instead of just up to your Speed, and a large number of activities include a Strike.","Actions that are used less frequently but are still available to most creatures are presented in Specialty Basic Actions starting on page 472. These typically have requirements that not all characters are likely to meet, such as wielding a shield or having a burrow Speed.","In addition to the actions in these two sections, the actions for spellcasting can be found on pages 302–305, and the actions for using magic items appear on pages 531–534.","{@note To view all actions, please visit the {@filter Actions page.|actions||source=CRB}}",{"type":"pf2-brown-box","page":471,"name":"SPEAKING","entries":["As long as you can act, you can also speak. You don't need to spend any type of action to speak, but because a round represents 6 seconds of time, you can usually speak at most a single sentence or so per round. Special uses of speech, such as attempting a {@skill Deception} skill check to Lie, require spending actions and follow their own rules.","All speech has the auditory trait. If you communicate in some way other than speech, other rules might apply. For instance, using sign language is visual instead of auditory.","not trigger reactions that can be triggered by actions with the manipulate trait (such as Attack of Opportunity).","If you want to prepare to Release something outside of your turn, use the Ready activity."],"source":"CRB"},{"type":"pf2-h3","page":472,"name":"Specialty Basic Actions","entries":["These actions are useful under specific circumstances. Some require you to have a special movement type (page 463)."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":472,"name":"Activities in Encounters","entries":["Activities that take longer than a turn can't normally be performed during an encounter. Spells with a casting time of 1 minute or more are a common example of this, as are several skill actions. When you commit to an activity during your turn in an encounter, you commit to spending all of the actions it requires. If the activity gets interrupted partway through, you lose all of the actions you would have spent on that activity. Activities are described in full on page 461."],"source":"CRB"},{"type":"pf2-h2","page":472,"name":"Reactions in Encounters","entries":["Your reactions let you respond immediately to what's happening around you. The GM determines whether you can use reactions before your first turn begins, depending on the situation in which the encounter happens.","Once your first turn begins, you gain your actions and reaction. You can use 1 reaction per round. You can use a reaction on anyone's turn (including your own), but only when its trigger occurs. If you don't use your reaction, you lose it at the start of your next turn, though you typically then gain a reaction at the start of that turn.","Some reactions are specifically meant to be used in combat and can change how the battle plays out drastically.","One example of such a reaction is {@action Attack of Opportunity}, which {@class fighter||fighters} gain at 1st level.","This reaction lets you make a melee {@action Strike} if a creature within reach uses a {@trait manipulate} or {@trait move} action, makes a ranged attack, or leaves a square during a {@trait move} action. The Triggering Moves diagram on page 474 illustrates examples of movements that might trigger an {@action Attack of Opportunity} from a creature without reach and one with reach.","You'll notice this reaction allows you to use a modified basic action, a {@action Strike}. This follows the rules on subordinate actions found on page 462.","Because your {@action Attack of Opportunity} takes place outside of your turn, the attack roll doesn't incur a multiple attack penalty."],"source":"CRB"},{"type":"pf2-h2","page":473,"name":"Movement in Encounters","entries":["Your movement during encounter mode depends on the actions and other abilities you use. Whether you Stride, Step, Swim, or Climb, the maximum distance you can move is based on your Speed. Certain feats or magic items can grant you other movement types, allowing you to swiftly burrow, climb, fly, or swim (page 463).","When the rules refer to a \"movement cost\" or \"spending movement,\" they are describing how many feet of your Speed you must use to move from one point to another. Normally, movement costs 5 feet per square when you're moving on a grid, or it costs the number of feet you move if you're not using a grid. However, sometimes it's harder to move a certain distance due to {@quickref difficult terrain||3|terrain} or other factors. In such a case, you might have to spend a different amount of movement to move from one place to another.","For example, a form of movement might require 10 feet of movement to move 1 square, and moving through some types of terrain costs an extra 5 feet of movement per square.",{"type":"pf2-h3","page":473,"name":"Grid Movement","entries":["If an encounter involves combat, it's often a good idea to track the movement and relative position of the participants using a Pathfinder Flip-Mat, Flip-Tiles, or some other form of grid to display the terrain, and miniatures to represent the combatants. When a character moves on a grid, every 1-inch square of the play area is 5 feet across in the game world. Hence, a creature moving in a straight line spends 5 feet of its movement for every map square traveled.","Because moving diagonally covers more ground, you count that movement differently. The first square of diagonal movement you make in a turn counts as 5 feet, but the second counts as 10 feet, and your count thereafter alternates between the two. For example, as you move across 4 squares diagonally, you would count 5 feet, then 10, then 5, and then 10, for a total of 30 feet. You track your total diagonal movement across all your movement during your turn, but reset your count at the end of your turn."],"source":"CRB"},{"type":"pf2-h3","page":473,"name":"Size, Space, and Reach","entries":["Creatures and objects of different sizes occupy different amounts of space. The sizes and the spaces they each take up on a grid are listed in {@table Size and Reach||Table 9–1: Size and Reach}.","Table 9–1 also lists the typical reach for creatures of each size, for both tall creatures (most bipeds) and long creatures (most quadrupeds). See page 455 for more about reach.","The Space entry lists how many feet on a side a creature's space is, so a Large creature fills a 10-foot-by-10-foot space (4 squares on the grid). Sometimes part of a creature extends beyond its space, such as if a giant octopus is grabbing you with its tentacles. In that case, the GM will usually allow attacking the extended portion, even if you can't reach the main creature. A Small or larger creature or object takes up at least 1 square on a grid, and creatures of these sizes can't usually share spaces except in situations like a character riding a mount. Rules for moving through other creatures' spaces appear below.",{"type":"statblock","tag":"table","source":"CRB","name":"Size and Reach"},"Multiple Tiny creatures can occupy the same square. At least four can fit in a single square, though the GM might determine that even more can fit. Tiny creatures can occupy a space occupied by a larger creature as well, and if their reach is 0 feet, they must do so in order to attack."],"source":"CRB"},{"type":"pf2-h3","page":474,"name":"Move Actions That Trigger Reactions","entries":["Some reactions and free actions are triggered by a creature using an action with the move trait. The most notable example is Attack of Opportunity. Actions with the move trait can trigger reactions or free actions throughout the course of the distance traveled. Each time you exit a square (or move 5 feet if not using a grid) within a creature's reach, your movement triggers those reactions and free actions (although no more than once per move action for a given reacting creature). If you use a move action but don't move out of a square, the trigger instead happens at the end of that action or ability.","Some actions, such as Step, specifically state they don't trigger reactions or free actions based on movement."],"source":"CRB"},{"type":"pf2-h3","page":474,"name":"Moving Through a Creature's Space","entries":["You can move through the space of a willing creature. If you want to move through an unwilling creature's space, you can Tumble Through that creature's space using {@skill Acrobatics}. You can't end your turn in a square occupied by another creature, though you can end a move action in its square provided that you immediately use another move action to leave that square. If two creatures end up in the same square by accident, the GM determines which one is forced out of the square (or whether one falls prone).",{"type":"pf2-h4","page":474,"name":"Prone and Incapacitated Creatures","entries":["You can share a space with a prone creature if that creature is willing, unconscious, or dead and if it is your size or smaller. The GM might allow you to climb atop the corpse or unconscious body of a larger creature in some situations. A prone creature can't stand up while someone else occupies its space, but it can Crawl to a space where it's able to stand, or it can attempt to Shove the other creature out of the way."],"source":"CRB"},{"type":"pf2-h4","page":475,"name":"Creatures of Different Sizes","entries":["In most cases, you can move through the space of a creature at least three sizes larger than you (Table 9-1). This means a Medium creature can move through the space of a Gargantuan creature and a Small creature can move through the space of a Huge creature. Likewise, a bigger creature can move through the space of a creature three sizes smaller than itself or smaller. You still can't end your movement in a space occupied by a creature.","Tiny creatures are an exception. They can move through creatures' spaces and can even end their movement there."],"source":"CRB"},{"type":"pf2-h4","page":475,"name":"Objects","entries":["Because objects aren't as mobile as creatures are, they're more likely to fill a space. This means you can't always move through their spaces like you might move through a space occupied by a creature. You might be able to occupy the same square as a statue of your size, but not a wide column. The GM determines whether you can move into an object's square normally, whether special rules apply, or if you are unable to move into the square at all."],"source":"CRB"}],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":475,"name":"Forced Movement","entries":["When an effect forces you to move, or if you start falling, the distance you move is defined by the effect that moved you, not by your Speed. Because you're not acting to move, this doesn't trigger reactions that are triggered by movement.","If forced movement would move you into a space you can't occupy—because objects are in the way or because you lack the movement type needed to reach it, for example—you stop moving in the last space you can occupy. Usually the creature or effect forcing the movement chooses the path the victim takes. If you're pushed or pulled, you can usually be moved through hazardous terrain, pushed off a ledge, or the like. Abilities that reposition you in some other way can't put you in such dangerous places unless they specify otherwise. In all cases, the GM makes the final call if there's doubt on where forced movement can move a creature."],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h3","page":475,"name":"Terrain","entries":["Several types of terrain can complicate your movement by slowing you down, damaging you, or endangering you.",{"type":"pf2-h4","page":475,"name":"Difficult Terrain","entries":["Difficult terrain is any terrain that impedes your movement, ranging from particularly rough or unstable surfaces to thick ground cover and countless other impediments. Moving into a square of {@b difficult terrain} (or moving 5 feet into or within an area of difficult terrain, if you're not using a grid) costs an extra 5 feet of movement.","Moving into a square of {@b greater difficult terrain} instead costs 10 additional feet of movement. This additional cost is not increased when moving diagonally. You can't Step into difficult terrain.","Movement you make while you are jumping ignores the terrain you're jumping over. Some abilities (such as flight or being incorporeal) allow you to avoid the movement reduction from some types of difficult terrain. Certain other abilities let you ignore difficult terrain on foot; such an ability also allows you to move through greater difficult terrain at the normal movement cost as for difficult terrain, though it wouldn't let you ignore greater difficult terrain unless the ability specifies otherwise."],"source":"CRB"},{"type":"pf2-h4","page":476,"name":"Hazardous Terrain","entries":["Hazardous terrain damages you whenever you move through it. An acid pool and a pit of burning embers are both examples of hazardous terrain. The amount and type of damage depend on the specific hazardous terrain."],"source":"CRB"},{"type":"pf2-h4","page":476,"name":"Narrow Surfaces","entries":["A narrow surface is so precariously thin that you need to {@action Balance} or risk falling. Even on a success, you are {@condition flat-footed} on a narrow surface.","Each time you are hit by an attack or fail a save on a narrow surface, you must succeed at a Reflex save (with the same DC as the {@skill Acrobatics} check to {@action Balance}) or fall."],"source":"CRB"},{"type":"pf2-h4","page":476,"name":"Uneven Ground","entries":["Uneven ground is an area unsteady enough that you need to {@action Balance} or risk falling prone and possibly injuring yourself, depending on the specifics of the uneven ground. You are {@condition flat-footed} on uneven ground. Each time you are hit by an attack or fail a save on uneven ground, you must succeed at a Reflex save (with the same DC as the {@skill Acrobatics} check to Balance) or fall prone."],"source":"CRB"},{"type":"pf2-h4","page":476,"name":"Inclines","entries":["An incline is an area so steep that you need to {@action Climb} using the {@skill Athletics} skill in order to progress upward.","You're {@condition flat-footed} when {@action Climb||Climbing} an incline."],"source":"CRB"}],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h2","page":477,"name":"Special Battles","entries":["Sometimes fights occur while the characters are atop mounts or when the PCs take to the sky or seas.",{"type":"pf2-h3","page":478,"name":"Mounted Combat","entries":["You can ride some creatures into combat. As noted in the {@action Mount} specialty basic action, your mount needs to be at least one size larger than you and willing. Your mount acts on your initiative. You must use the {@action Command an Animal} action (page 249) to get your mount to spend its actions. If you don't, the animal wastes its actions. If you have the Ride general feat, you succeed automatically when you {@action Command an Animal} that's your mount.","For example, if you are mounted on a horse and you make three attacks, your horse would remain stationary since you didn't command it. If you instead spent your first action to {@action Command an Animal} and succeeded, you could get your mount to Stride. You could spend your next action to attack or to command the horse to attack, but not both.",{"type":"pf2-h4","page":478,"name":"Mounted Attacks","entries":["You and your mount fight as a unit. Consequently, you share a multiple attack penalty. For example, if you Strike and then {@action Command an Animal} to have your mount Strike, your mount's attack takes a –5 multiple attack penalty.","You occupy every square of your mount's space for the purpose of making your attacks. If you were Medium and on a Large mount, you could attack a creature on one side of your mount, then attack on the opposite side with your next action. If you have a longer reach, the distance depends partly on the size of your mount. On a Medium or smaller mount, use your normal reach. On a Large or Huge mount, you can attack any square adjacent to the mount if you have 5- or 10-foot reach, or any square within 10 feet of the mount (including diagonally) if you have 15-foot reach."],"source":"CRB"},{"type":"pf2-h4","page":478,"name":"Mounted Defenses","entries":["When you're mounted, attackers can target either you or your mount. Anything that affects multiple creatures (such as an area) affects both of you as long as you're both in the area. You are in an attacker's reach or range if any square of your mount is within reach or range. Because your mount is larger than you and you share its space, you have lesser cover against attacks targeting you when you're mounted if the mount would be in the way.","Because you can't move your body as freely while you're riding a mount, you take a –2 circumstance penalty to Reflex saves while mounted. Additionally, the only move action you can use is the Mount action to dismount."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-brown-box","page":478,"name":"THREE-DIMENSIONAL COMBAT","entries":["In aerial and aquatic combat, you might need to track positioning in three dimensions. For flying creatures, you might use one of the following methods:",{"type":"list","items":["Find platforms to place flying creatures' miniatures on.","Set a die next to a creature with the number indicating how many squares up in the air it is.","Make a stack of dice or tokens, 1 per 5 feet of elevation.","Write the elevation next to the monster on the grid. In underwater combat, choose a plane to be the\nbaseline, typically the waterline, the sea floor, or a stationary object you can measure from."]},"As with ground-based movement, moving diagonally up or down in 3-D space requires counting every other diagonal as 10 feet. Measure flanking in all directions—creatures above and below an enemy can flank it just as effectively as they can from opposite sides."],"source":"CRB"},{"type":"pf2-h3","page":478,"name":"Aerial Combat","entries":["Many monsters can fly, and PCs can use spells and items to gain the ability to fly. Flying creatures have to use the Fly action (page 472) to move through the air. Performing an especially tricky maneuver—such as trying to reverse course 180 degrees or fly through a narrow gap—might require using {@skill Acrobatics} to Maneuver in Flight. Creatures might fall from the sky, using the falling rules found on page 463. At the GM's discretion, some ground-based actions might not work in the air. For instance, a flying creature couldn't Leap."],"source":"CRB"},{"type":"pf2-h3","page":478,"name":"Aquatic Combat","entries":["Use these rules for battles in water or underwater:",{"type":"list","items":["You're {@condition flat-footed} unless you have a swim Speed.","You gain resistance 5 to acid and fire.","You take a –2 circumstance penalty to melee slashing or bludgeoning attacks that pass through water.","Ranged attacks that deal bludgeoning or slashing damage automatically miss if the attacker or target is underwater, and piercing ranged attacks made by an underwater creature or against an underwater target have their range increments halved.","You can't cast fire spells or use actions with the fire trait underwater.","At the GM's discretion, some ground-based actions might not work underwater or while floating."]},{"type":"pf2-h4","page":478,"name":"Drowning and Suffocating","entries":["You can hold your breath for a number of rounds equal to 5 + your Constitution modifier. Reduce your remaining air by 1 round at the end of each of your turns, or by 2 if you attacked or cast any spells that turn. You also lose 1 round worth of air each time you are critically hit or critically fail a save against a damaging effect. If you speak (including casting spells with verbal components or activating items with command components) you lose all remaining air.","When you run out of air, you fall {@condition unconscious} and start suffocating. You can't recover from being unconscious and must attempt a DC 20 Fortitude save at the end of each of your turns. On a failure, you take 1d10 damage, and on a critical failure, you die. On each check after the first, the DC increases by 5 and the damage by 1d10; these increases are cumulative. Once your access to air is restored, you stop suffocating and are no longer unconscious (unless you're at 0 Hit Points)."],"data":{"quickrefIndex":true},"source":"CRB"}],"data":{"quickrefIndex":true},"source":"CRB"}],"source":"CRB"}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":479,"name":"Exploration Mode","entries":[{"type":"pf2-h1-flavor","page":479,"entries":["{@i While encounters use rounds for combat, exploration is more free form. The GM determines the flow of time, as you could be traveling by horseback across craggy highlands, negotiating with merchants, or delving in a dungeon in search of danger and treasure. Exploration lacks the immediate danger of encounter mode, but it offers its own challenges.}"],"source":"CRB"},"Much of exploration mode involves movement and roleplaying. You might be traveling from one town to another, chatting with a couple of merchants an outpost along the way, or maybe having a terse conversation with the watchful city guards at your destination. Instead of measuring your rate of movement in 5-foot squares every round, you measure it in feet or miles per minute, hour, or day, using your travel speed. Rather than deciding on each action every turn, you'll engage in an exploration activity, and you'll typically spend some time every day resting and making your daily preparations.",{"type":"pf2-h2","page":479,"name":"Travel Speed","entries":["Depending on how the GM tracks movement, you move in feet or miles based on your character's Speed with the relevant movement type. Typical rates are on the table below.",{"type":"statblock","tag":"table","source":"CRB","name":"Travel Speed"},"The rates in Table 9 –2 assume traveling over flat and clear terrain at a determined pace, but one that's not exhausting.","Moving through {@quickref difficult terrain||3|terrain} halves the listed movement rate. {@quickref greater difficult terrain||3|terrain} reduces the distance traveled to one-third the listed amount. If the travel requires a skill check to accomplish, such as mountain climbing or swimming, the GM might call for a check once per hour using the result and the table above to determine your progress."],"source":"CRB"},{"type":"pf2-h2","page":479,"name":"Exploration Activities","entries":["While you're traveling and exploring, tell the GM what you'd generally like to do along the way. If you to do nothing more than make steady progress toward your goal, you move at the full travel speeds given in Table 9 –2.","When you want to do something other than simply travel, you describe what you are attempting to do. It isn't necessary to go into extreme detail, such as \"Using my dagger, I nudge the door so I can check for devious traps.\" Instead, \"I'm searching the area for hazards\" is sufficient. The GM finds the best exploration activity to match your description and describes the effects of that activity. Some exploration activities limit how fast you can travel and be effective.","These are most common exploration activities.",{"type":"pf2-brown-box","page":480,"name":"SKILL EXPLORATION ACTIVITIES","entries":["Chapter 4: Skills includes numerous additional exploration activities, which are summarized here.","{@b {@action Borrow an Arcane Spell}:} You use {@skill Arcana} to prepare a spell from someone else's spellbook (page 241).","{@b {@action Coerce}:} You use {@skill Intimidation} to threaten a creature so it does what you want (page 247).","{@b {@action Cover Tracks}:} You use {@skill Survival} to obscure your passing (page 252).","{@b {@action Decipher Writing}:} You use a suitable skill to understand archaic, esoteric, or obscure texts (page 234).","{@b {@action Gather Information}:} You use {@skill Diplomacy} to canvass the area to learn about a specific individual or topic (page 246).","{@b {@action Identify Alchemy}:} You use Craft and alchemist's tools to identify an alchemical item (page 245).","{@b {@action Identify Magic}:} Using a variety of skills, you can learn about a magic item, location, or ongoing effect (page 238).","{@b {@action Impersonate}:} You use {@skill Deception} and usually a disguise kit to create a disguise (page 245).","{@b {@action Learn a Spell}:} You use the skill corresponding to the spell's tradition to gain access to a new spell (page 238).","{@b {@action Make an Impression}:} You use {@skill Diplomacy} to make a good impression on someone (page 246).","{@b {@action Repair}:} With a repair kit and the {@skill Crafting} skill, you fix a damaged item (page 243).","{@b {@action Sense Direction}:} You use {@skill Survival} to get a sense of where you are or determine the cardinal directions (page 252).","{@b {@action Squeeze}:} Using {@skill Acrobatics}, you squeeze though very tight spaces (page 241).","{@b {@action Track}:} You use {@skill Survival} to find and follow creatures' tracks (page 252).","{@b {@action Treat Wounds}:} You use {@skill Medicine} to treat a living creature's wounds (page 249)."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":480,"name":"Rest and Daily Preparations","entries":["You perform at your best when you take enough time to rest and prepare. Once every 24 hours, you can take a period of rest (typically 8 hours), after which you regain Hit Points equal to your Constitution modifier (minimum 1) times your level, and you might recover from or improve certain conditions (page 453). Sleeping in armor results in poor rest that leaves you {@condition fatigued}. If you go more than 16 hours without resting, you become {@condition fatigued} (you cannot recover from this until you rest at least 6 continuous hours).","After you rest, you make your daily preparations, which takes around 1 hour. You can prepare only if you've rested, and only once per day. Preparing includes the following:",{"type":"list","items":["Spellcasters regain spell slots, and prepared spellcasters choose spells to have available that day.","Focus Points, other abilities that refresh during your preparations, and abilities that can be used only a certain number of times per day, including magic item uses, are reset.","You don armor and equip weapons and other gear.","You invest up to 10 worn magic items to gain their benefits for the day."]}],"data":{"quickrefIndex":true},"source":"CRB"}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":476,"name":"Flanking","entries":["When you and an ally are flanking a foe, it has a harder time defending against you. A creature is {@condition flat-footed} (taking a –2 circumstance penalty to AC) to creatures that are flanking it.","To flank a foe, you and your ally must be on opposites sides or corners of the creature. A line drawn between the center of your space and the center of your ally's space must pass through opposite sides or opposite corners of the foe's space. Additionally, both you and the ally have to be able to act, must be wielding melee weapons or able to make an unarmed attack, can't be under any effects that prevent you from attacking, and must have the enemy within reach. If you are wielding a reach weapon, you use your {@trait reach} with that weapon for this purpose."],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":444,"name":"Game Conventions","entries":["Pathfinder has many specific rules, but you'll also want to keep these general guidelines in mind when playing.",{"type":"pf2-h3","name":"The GM Has the Final Say"},"If you're ever uncertain how to apply a rule, the GM decides.","Of course, Pathfinder is a game, so when adjudicating the rules, the GM is encouraged to listen to everyone's point of view and make a decision that is both fair and fun.",{"type":"pf2-h3","name":"Specific Overrides General"},"A core principle of Pathfinder is that specific rules override general ones. If two rules conflict, the more specific one takes precedence. If there's still ambiguity, the GM determines which rule to use. For example, the rules state that when attacking a concealed creature, you must attempt a DC {@flatDC 5} flat check to determine if you hit. Flat checks don't benefit from modifiers, bonuses, or penalties, but an ability that's specifically designed to overcome concealment might override and alter this. If a rule doesn't specify otherwise, default to the general rules presented in this chapter. While some special rules may also state the normal rules to provide context, you should always default to the normal rules even if effects don't specifically say to.",{"type":"pf2-h3","name":"Rounding"},"You may need to calculate a fraction of a value, like halving damage. Always round down unless otherwise specified.","For example, if a spell deals 7 damage and a creature takes half damage from it, that creature takes 3 damage.",{"type":"pf2-h3","name":"Multiplying"},"When more than one effect would multiply the same number, don't multiply more than once. Instead, combine all the multipliers into a single multiplier, with each multiple after the first adding 1 less than its value. For instance, if one ability doubled the duration of one of your spells and another one doubled the duration of the same spell, you would triple the duration, not quadruple it.",{"type":"pf2-h3","name":"Duplicate Effects"},"When you're affected by the same thing multiple times, only one instance applies, using the higher level of the effects, or the newer effect if the two are the same level. For example, if you were using {@spell mage armor} and then cast it again, you'd still benefit from only one casting of that spell. Casting a spell again on the same target might get you a better duration or effect if it were cast at a higher level the second time, but otherwise doing so gives you no advantage.",{"type":"pf2-h3","name":"Ambiguous Rules"},"Sometimes a rule could be interpreted multiple ways. If one version is too good to be true, it probably is. If a rule seems to have wording with problematic repercussions or doesn't work as intended, work with your group to find a good solution, rather than just playing with the rule as printed."],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":467,"name":"Hero Points","entries":["Your heroic deeds earn you Hero Points, which grant you good fortune or let you recover from the brink of death. Unlike most aspects of your character, which persist over the long term, Hero Points last for only a single session.","The GM is in charge of awarding Hero Points (guidelines for doing so can be found {@quickref here||4|rewards|1}).","Usually, each character gets 1 Hero Point at the start of a session and can gain more later by performing heroic deeds—something selfless, daring, or beyond normal expectations. You can have a maximum of 3 Hero Points at a time, and you lose any remaining Hero Points at the end of a session.","You can spend your Hero Points in one of two ways.","Neither of these is an action, and you can spend Hero Points even if you aren't able to act. You can spend a Hero Point on behalf of your familiar or animal companion.",{"type":"list","items":["{@b Spend 1 Hero Point} to reroll a check. You must use the second result. This is a fortune effect (which means you can't use more than 1 Hero Point on a check).","{@b Spend all your Hero Points} (minimum 1) to avoid death. You can do this when your {@condition dying} condition would increase. You lose the {@condition dying} condition entirely and stabilize with 0 Hit Points. You don't gain the {@condition wounded} condition or increase its value from losing the {@condition dying} condition in this way, but if you already had that condition, you don't lose it or decrease its value."]},{"type":"pf2-h3","page":467,"name":"Describing Heroic Deeds","entries":["Because spending Hero Points reflects heroic deeds or tasks that surpass normal expectations, if you spend a Hero Point, you should describe the deed or task your character accomplishes with it to the other players.","Your character's deed might invoke a lesson learned in a past adventure, could be spurred by a determination to save someone else, or might depend on an item that ended up on their person due to a previous exploit. If you don't want to describe the deed or don't have any strong ideas about how to do so, ask the GM to come up with something for you. This can be a collaborative process, too. The GM might remind you of a long-forgotten event in the campaign, and all you have to do is fill in how that event comes to mind just at the right time, motivating you to push past your limits."],"source":"CRB"}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":459,"name":"Hit Points, Healing, and Dying","entries":["All creatures and objects have Hit Points (HP). Your maximum Hit Point value represents your health, wherewithal, and heroic drive when you are in good health and rested. Your maximum Hit Points include the Hit Points you gain at 1st level from your ancestry and class, those you gain at higher levels from your class, and any you gain from other sources (like the Toughness general feat). When you take damage, you reduce your current Hit Points by a number equal to the damage dealt.","Some spells, items, and other effects, as well as simply resting, can heal living or undead creatures. When you are healed, you regain Hit Points equal to the amount healed, up to your maximum Hit Points.",{"type":"pf2-h3","page":459,"name":"Knocked Out and Dying","entries":["Creatures cannot be reduced to fewer than 0 Hit Points.","When most creatures reach 0 Hit Points, they die and are removed from play unless the attack was nonlethal, in which case they are instead knocked out for a significant amount of time (usually 1 minute or more). When undead and construct creatures reach 0 Hit Points, they are destroyed.","Player characters, their companions, and other significant characters and creatures don't automatically die when they reach 0 Hit Points. Instead, they are knocked out and are at risk of death. At the GM's discretion, villains, powerful monsters, special NPCs, and enemies with special abilities that are likely to bring them back to the fight (like ferocity, regeneration, or healing magic) can use these rules as well.","As a player character, when you are reduced to 0 Hit Points, you're knocked out with the following effects:",{"type":"list","items":["You immediately move your initiative position to directly before the turn in which you were reduced to 0 HP.","You gain the {@condition dying} 1 condition. If the effect that knocked you out was a critical success from the attacker or the result of your critical failure, you gain the {@condition dying} 2 condition instead. If you have the {@condition wounded} condition (page 460), increase your {@condition dying} value by an amount equal to your {@condition wounded} value. If the damage was dealt by a nonlethal attack or nonlethal effect, you don't gain the dying condition; you are instead unconscious with 0 Hit Points."]},{"type":"pf2-h4","page":459,"name":"Taking Damage while Dying","entries":["If you take damage while you already have the dying condition, increase your dying condition value by 1, or by 2 if the damage came from an attacker's critical hit or your own critical failure. If you have the wounded condition, remember to add the value of your wounded condition to your dying value."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":459,"name":"Recovery Checks","entries":["When you're dying, at the start of each of your turns, you must attempt a flat check with a DC equal to 10 + your current dying value to see if you get better or worse. This is called a recovery check. The effects of this check are as follows.",{"type":"successDegree","entries":{"Critical Success":"Your {@condition dying} value is reduced by 2.","Success":"Your {@condition dying} value is reduced by 1.","Failure":"Your {@condition dying} value increases by 1.","Critical Failure":"Your {@condition dying} value increases by 2."}}],"source":"CRB"},{"type":"pf2-h3","page":459,"name":"Conditions Related to Death and Dying","entries":["To understand the rules for getting knocked out and how dying works in the game, you'll need some more information on the conditions used in those rules.","Presented below are the rules for the {@condition dying}, {@condition unconscious}, wounded, and doomed conditions.",{"type":"pf2-h4","page":459,"name":"Dying","entries":["You are bleeding out or otherwise at death's door. While you have this condition, you are unconscious. Dying always includes a value. If this value ever reaches dying 4, you die. If you're dying, you must attempt a recovery check at the start of your turn each round to determine whether you get better or worse.","If you lose the {@condition dying} condition by succeeding at a recovery check and are still at 0 Hit Points, you remain unconscious, but you can wake up as described on page 460. You lose the dying condition automatically and wake up if you ever have 1 Hit Point or more. Anytime you lose the dying condition, you gain the wounded 1 condition, or increase your wounded value by 1 if you already have that condition."],"source":"CRB"},{"type":"pf2-h4","page":459,"name":"Unconscious","entries":["You're sleeping, or you've been knocked out. You can't act.","You take a –4 status penalty to AC, Perception, and Reflex saves, and you have the blinded and {@condition flat-footed} conditions.","When you gain this condition, you fall {@condition prone} and drop items you are wielding or holding unless the effect states otherwise or the GM determines you're in a position in which you wouldn't.","{@b If you're {@condition unconscious} because you're {@condition dying}}, you can't wake up as long as you have 0 Hit Points. If you're restored to 1 Hit Point or more via healing, you lose the dying and unconscious conditions and can act normally on your next turn.","If you are {@condition unconscious} and at 0 Hit Points, but not {@b dying}, you naturally return to 1 Hit Point and awaken after sufficient time passes. The GM determines how long you remain unconscious, from a minimum of 10 minutes to several hours. If you receive healing during this time, you lose the unconscious condition and can act normally on your next turn.","If you're {@condition unconscious} and have more than 1 Hit Point (typically because you are asleep or unconscious due to an effect), you wake up in one of the following ways.","Each causes you to lose the {@condition unconscious} condition.",{"type":"list","items":["You take damage, provided the damage doesn't reduce you to 0 Hit Points. (If the damage reduces you to 0 Hit Points, you remain {@condition unconscious} and gain the {@condition dying} condition as normal.)","You receive healing, other than the natural healing you get from resting.","Someone nudges or shakes you awake using an Interact action.","Loud noise is being made around you—though this isn't automatic. At the start of your turn, you automatically attempt a Perception check against the noise's DC (or the lowest DC if there is more than one noise), waking up if you succeed. This is often DC 5 for a battle, but if creatures are attempting to stay quiet around you, this Perception check uses their {@skill Stealth} DC. Some magical effects make you sleep so deeply that they don't allow you to attempt this Perception check.","If you are simply asleep, the GM decides you wake up either because you have had a restful night's sleep or something disrupted that rest."]}],"source":"CRB"},{"type":"pf2-h4","page":460,"name":"Wounded","entries":["You have been seriously injured during a fight. Anytime you lose the dying condition, you become wounded 1 if you didn't already have the wounded condition. If you already have the wounded condition, your wounded condition value instead increases by 1. If you gain the dying condition while wounded, increase the dying condition's value by your wounded value. The wounded condition ends if someone successfully restores Hit Points to you with Treat Wounds, or if you are restored to full Hit Points and rest for 10 minutes."],"source":"CRB"},{"type":"pf2-h4","page":460,"name":"Doomed","entries":["Your life is ebbing away, bringing you ever closer to death. Some powerful spells and evil creatures can inflict the doomed condition on you. Doomed always includes a value. The maximum dying value at which you die is reduced by your doomed value. For example, if you were {@condition doomed 1}, you would die upon reaching dying 3 instead of dying 4. If your maximum dying value is ever reduced to 0, you instantly die. When you die, you're no longer doomed.","Your {@condition doomed} value decreases by 1 each time you get a full night's rest."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":460,"name":"Death","entries":["After you die, you can't act or be affected by spells that target creatures (unless they specifically target dead creatures), and for all other purposes you are an object. When you die, you are reduced to 0 Hit Points if you had a different amount, and you can't be brought above 0 Hit Points as long as you remain dead. Some magic can bring creatures back to life, such as the {@ritual resurrect} ritual or the {@spell raise dead} spell."],"source":"CRB"},{"type":"pf2-h3","page":460,"name":"Heroic Recovery","entries":["If you have at least 1 Hero Point (page 467), you can spend all of your remaining Hero Points at the start of your turn or when your dying value would increase. You lose the dying condition entirely and stabilize with 0 Hit Points. You don't gain the wounded condition or increase its value from losing the dying condition in this way, but if you already had that condition, you don't lose it or decrease its value. You lose the dying condition and become conscious. You do not gain the wounded condition (or increase its value) when you perform a heroic recovery."],"source":"CRB"},{"type":"pf2-h3","page":461,"name":"Death Effects and Instant Death","entries":["Some spells and abilities can kill you immediately or bring you closer to death without needing to reduce you to 0 Hit Points first. These abilities have the death trait and usually involve negative energy, the antithesis of life. If you are reduced to 0 Hit Points by a death effect, you are slain instantly without needing to reach dying 4. If an effect states it kills you outright, you die without having to reach dying 4 and without being reduced to 0 Hit Points."],"source":"CRB"},{"type":"pf2-h3","page":461,"name":"Massive Damage","entries":["You die instantly if you ever take damage equal to or greater than double your maximum Hit Points in one blow."],"source":"CRB"},{"type":"pf2-h3","page":461,"name":"Temporary Hit Points","entries":["Some spells or abilities give you temporary Hit Points.","Track these separately from your current and maximum Hit Points; when you take damage, reduce your temporary Hit Points first. Most temporary Hit Points last for a limited duration. You can't regain lost temporary Hit Points through healing, but you can gain more via other abilities. You can have temporary Hit Points from only one source at a time. If you gain temporary Hit Points when you already have some, choose whether to keep the amount you already have and their corresponding duration or to gain the new temporary Hit Points and their duration."],"source":"CRB"},{"type":"pf2-h3","page":461,"name":"Fast Healing and Regeneration","entries":["A creature with fast healing or regeneration regains the listed amount of Hit Points each round at the beginning of its turn. A creature with regeneration has additional benefits. Its dying condition can't increase to a value that would kill it (this stops most creatures from going beyond dying 3) as long as its regeneration is active. If it takes damage of a type listed in the regeneration entry, its regeneration deactivates until the end of its next turn, including against the triggering damage."],"source":"CRB"},{"type":"pf2-h3","page":461,"name":"Items and Hit Points","entries":["Items have Hit Points like creatures, but the rules for damaging them are different (page 272). An item has a Hardness statistic that reduces damage the item takes by that amount. The item then takes any damage left over. If an item is reduced to 0 HP, it's destroyed. An item also has a Broken Threshold. If its HP are reduced to this amount or lower, it's broken, meaning it can't be used for its normal function and it doesn't grant bonuses. Damaging an unattended item usually requires attacking it directly, and can be difficult due to that item's Hardness and immunities. You usually can't attack an attended object (one on a creature's person)."],"source":"CRB"}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":443,"name":"Making Choices","entries":["Pathfinder is a game where your choices determine the story's direction. Throughout the game, the GM describes what's happening in the world and then asks the players, \"So what do you do?\" Exactly what you choose to do, and how the GM responds to those choices, builds a unique story experience. Every game is different, because you'll rarely, if ever, make the same decisions as another group of players.","This is true for the GM as well—two GMs running the exact same adventure will put different emphasis and flourishes on the way they present each scenario and encounter.","Often, your choices have no immediate risk or consequences. If you're traveling along a forest path and come across a fork in the trail, the GM will ask, \"Which way do you go?\" You might choose to take the right fork or the left. You could also choose to leave the trail, or just go back to town. Once your choice is made, the GM tells you what happens next. Down the line, that choice may impact what you encounter later in the game, but in many cases nothing dangerous happens immediately.","But sometimes what happens as a result of your choices is less than certain. In those cases, you'll attempt a check."],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":463,"name":"Movement","entries":["Your movement and position determine how you can interact with the world. Moving around in exploration and downtime modes is relatively fluid and free form.","Movement in encounter mode, by contrast, is governed by rules explained in Movement in Encounters (page 473). The rules below apply regardless of which mode you're playing in.",{"type":"pf2-h3","page":463,"name":"Movement Types","entries":["Creatures in Pathfinder soar through the clouds, scale sheer cliffs, and tunnel underfoot. Most creatures have a Speed, which is how fast they can move across the ground. Some abilities give you different ways to move, such as through the air or underground.","Each of these special movement types has its own Speed value. Many creatures have these Speeds naturally. The various types of movement are listed below. Since the Stride action can be used only with your normal Speed, moving using one of these movement types requires using a special action, and you can't Step while using one of these movement types. Since Speed by itself refers to your land Speed, rules text concerning these special movement types specifies the movement types to which it applies. Even though Speeds aren't checks, they can have item, circumstance, and status bonuses and penalties. These can't reduce your Speeds below 5 feet unless stated otherwise.","Switching from one movement type to another requires ending your action that has the first movement type and using a new action that has the second movement type. For instance, if you Climbed 10 feet to the top of a cliff, you could then Stride forward 10 feet.",{"type":"pf2-h4","page":463,"name":"Speed","entries":["Most characters and monsters have a speed statistic—also called land Speed—which indicates how quickly they can move across the ground. When you use the Stride action, you move a number of feet equal to your Speed. Numerous other abilities also allow you to move, from Crawling to Leaping, and most of them are based on your Speed in some way. Whenever a rule mentions your Speed without specifying a type, it's referring to your land Speed."],"source":"CRB"},{"type":"pf2-h4","page":463,"name":"Burrow Speed","entries":["A burrow Speed lets you tunnel through the ground. You can use the {@action Burrow} action if you have a burrow Speed. Burrowing doesn't normally leave behind a tunnel unless the ability specifically states that it does. Most creatures need to hold their breath when burrowing, and they may need tremorsense (page 465) to navigate with any accuracy."],"source":"CRB"},{"type":"pf2-h4","page":463,"name":"Climb Speed","entries":["A climb Speed allows you to move up or down inclines and vertical surfaces. Instead of needing to attempt {@skill Athletics} checks to Climb, you automatically succeed and move up to your climb Speed instead of the listed distance.","You might still have to attempt {@skill Athletics} checks to Climb in hazardous conditions, to Climb extremely difficult surfaces, or to cross horizontal planes such as ceilings. You can also choose to roll an {@skill Athletics} check to Climb rather than accept an automatic success in hopes of getting a critical success. Your climb Speed grants you a +4 circumstance bonus to {@skill Athletics} checks to Climb.","If you have a climb Speed, you're not {@condition flat-footed} while climbing."],"source":"CRB"},{"type":"pf2-h4","page":463,"name":"Fly Speed","entries":["As long as you have a fly Speed, you can use the {@action Fly} and {@action Arrest a Fall} actions. You can also attempt to {@action Maneuver in Flight} if you're trained in the {@skill Acrobatics} skill.","Wind conditions can affect how you use the {@action Fly} action. In general, moving against the wind uses the same rules as moving through {@quickref difficult terrain||3|terrain} (or {@quickref greater difficult terrain||3|terrain}, if you're also flying upward), and moving with the wind allows you to move 10 feet for every 5 feet of movement you spend (not cumulative with moving straight downward). For more information on spending movement, see Movement in Encounters on page 473.","Upward and downward movement are both relative to the gravity in your area; if you're in a place with zero gravity, moving up or down is no different from moving horizontally."],"source":"CRB"},{"type":"pf2-h4","page":463,"name":"Swim Speed","entries":["With a swim Speed, you can propel yourself through the water with little impediment. Instead of attempting {@skill Athletics} checks to {@action Swim}, you automatically succeed and move up to your swim Speed instead of the listed distance. Moving up or down is still moving through {@quickref difficult terrain||3|terrain}.","You might still have to attempt checks to {@action Swim} in hazardous conditions or to cross turbulent water. You can also choose to roll an {@skill Athletics} check to {@action Swim} rather than accept an automatic success in hopes of getting a critical success. Your swim Speed grants you a +4 circumstance bonus to {@skill Athletics} checks to {@action Swim}.","Having a swim Speed doesn't necessarily mean you can breathe in water, so you might still have to hold your breath if you're underwater to avoid {@quickref drowning||3|drowning and suffocating}."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":463,"name":"Falling","entries":["When you fall more than 5 feet, you take bludgeoning damage equal to half the distance you fell when you land. Treat falls longer than 1,500 feet as though they were 1,500 feet (750 damage). If you take any damage from a fall, you land prone. You fall about 500 feet in the first round of falling and about 1,500 feet each round thereafter.","You can Grab an Edge as a reaction to reduce the damage from some falls. In addition, if you fall into water, snow, or another relatively soft substance, you can treat the fall as though it were 20 feet shorter, or 30 feet shorter if you intentionally dove in. The effective reduction can't be greater than the depth (so when falling into 10-foot-deep water, you treat the fall as 10 feet shorter).",{"type":"pf2-h4","page":464,"name":"Falling on a Creature","entries":["If you land on a creature, that creature must attempt a DC 15 Reflex save. Landing exactly on a creature after a long fall is almost impossible.",{"type":"successDegree","entries":{"Critical Success":"The creature takes no damage.","Success":"The creature takes bludgeoning damage equal to one-quarter the falling damage you took.","Failure":"The creature takes bludgeoning damage equal to half the falling damage you took.","Critical Failure":"The creature takes the same amount of bludgeoning damage you took from the fall."}}],"source":"CRB"},{"type":"pf2-h4","page":464,"name":"Falling Objects","entries":["A dropped object takes damage just like a falling creature. If the object lands on a creature, that creature can attempt a Reflex save using the same rules as for a creature falling on a creature. Hazards and spells that involve falling objects, such as a rock slide, have their own rules about how they interact with creatures and the damage they deal."],"source":"CRB"}],"data":{"quickrefIndex":true},"source":"CRB"}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":618,"name":"Overriding Conditions","entries":["Some conditions override others. This is always specified in the entry for the overriding condition. When this happens, all effects of the overridden condition are suppressed until the overriding condition ends. The overridden condition's duration continues to elapse, and it might run out while suppressed."],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":464,"name":"Perception","entries":["Your Perception measures your ability to notice things, search for what's hidden, and tell whether something about a situation is suspicious. This statistic is frequently used for rolling initiative to determine who goes first in an encounter, and it's also used for the {@action Seek} action .","The rules for rolling a Perception check are found on page 448. The rules below describe the effects of light and visibility on your specific senses to perceive the world, as well as the rules for sensing and locating creatures with Perception.",{"type":"pf2-h3","page":464,"name":"Light","entries":["The amount of light in an area can affect how well you see things. There are three levels of light: bright light, dim light, and darkness. The rules in this book assume that all creatures are in bright light unless otherwise noted. A source of light lists the radius in which it sheds bright light, and it sheds dim light to double that radius.",{"type":"pf2-h4","page":464,"name":"Bright Light","entries":["In bright light, such as sunlight, creatures and objects can be observed clearly by anyone with average vision or better. Some types of creatures are dazzled or blinded by bright light."],"source":"CRB"},{"type":"pf2-h4","page":464,"name":"Dim Light","entries":["Areas in shadow or lit by weak light sources are in dim light. Creatures and objects in dim light have the {@condition concealed} condition, unless the seeker has {@ability darkvision} or {@ability low-light vision} (see Special Senses on page 465), or a precise sense other than vision."],"source":"CRB"},{"type":"pf2-h4","page":464,"name":"Darkness","entries":["A creature or object within darkness is hidden or undetected unless the seeker has {@ability darkvision} or a precise sense other than vision (Special Senses are on page 465). A creature without {@ability darkvision} or another means of perceiving in darkness has the blinded condition while in darkness, though it might be able to see illuminated areas beyond the darkness. If a creature can see into an illuminated area, it can observe creatures within that illuminated area normally. After being in darkness, sudden exposure to bright light might make you dazzled for a short time, as determined by the GM."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":464,"name":"Senses","entries":["The ways a creature can use {@skill Perception} depend on what senses it has. The primary concepts you need to know for understanding senses are precise senses, imprecise senses, and the three states of detection a target can be in: observed, hidden, or undetected. Vision, hearing, and scent are three prominent senses, but they don't have the same degree of acuity.",{"type":"pf2-h4","page":464,"name":"Precise Senses","entries":["Average vision is a precise sense—a sense that can be used to perceive the world in nuanced detail. The only way to target a creature without having drawbacks is to use a precise sense. You can usually detect a creature automatically with a precise sense unless that creature is hiding or obscured by the environment, in which case you can use the Seek basic action to better detect the creature."],"source":"CRB"},{"type":"pf2-h4","page":464,"name":"Imprecise Senses","entries":["Hearing is an imprecise sense—it cannot detect the full range of detail that a precise sense can. You can usually sense a creature automatically with an imprecise sense, but it has the hidden condition instead of the observed condition. It might be undetected by you if it's using {@skill Stealth} or is in an environment that distorts the sense, such as a noisy room in the case of hearing. In those cases, you have to use the Seek basic action to detect the creature. At best, an imprecise sense can be used to make an undetected creature (or one you didn't even know was there) merely hidden—it can't make the creature observed."],"source":"CRB"},{"type":"pf2-h4","page":465,"name":"Vague Senses","entries":["A character also has many vague senses—ones that can alert you that something is there but aren't useful for zeroing in on it to determine exactly what it is. The most useful of these for a typical character is the sense of smell. At best, a vague sense can be used to detect the presence of an unnoticed creature, making it undetected. Even then, the vague sense isn't sufficient to make the creature hidden or observed.","When one creature might detect another, the GM almost always uses the most precise sense available.","Pathfinder's rules assume that a given creature has vision as its only precise sense and hearing as its only imprecise sense. Some characters and creatures, however, have precise or imprecise senses that don't match this assumption. For instance, a character with poor vision might treat that sense as imprecise, an animal with the {@ability scent} ability can use its sense of smell as an imprecise sense, and a creature with echolocation or a similar ability can use hearing as a precise sense. Such senses are often given special names and appear as \"echolocation (precise),\" \"scent (imprecise) 30 feet,\" or the like."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":465,"name":"Special Senses","entries":["While a human might have a difficult time making creatures out in dim light, an elf can see those creatures just fine. And though elves have no problem seeing on a moonlit night, their vision cannot penetrate complete darkness, whereas a dwarf's can.","Special senses grant greater awareness that allows a creature with these senses to either ignore or reduce the effects of the undetected, hidden, or concealed conditions (described in Detecting Creatures below) when it comes to situations that foil average vision. The following are a few examples of common special senses.",{"type":"pf2-h4","page":465,"name":"Darkvision and Greater Darkvision","entries":["A creature with {@ability darkvision} or {@ability darkvision||greater darkvision} can see perfectly well in areas of darkness and dim light, though such vision is in black and white only. Some forms of magical darkness, such as a 4th-level {@spell darkness} spell, block normal {@ability darkvision}. A creature with {@ability darkvision||greater darkvision}, however, can see through even these forms of magical darkness."],"source":"CRB"},{"type":"pf2-h4","page":465,"name":"Low-Light Vision","entries":["A creature with {@ability low-light vision} can see in dim light as though it were bright light, so it ignores the {@condition concealed} condition due to dim light."],"source":"CRB"},{"type":"pf2-h4","page":465,"name":"Scent","entries":["Scent involves sensing creatures or objects by smell, and is usually a vague sense. The range is listed in the ability, and it functions only if the creature or object being detected emits an aroma (for instance, incorporeal creatures usually do not exude an aroma).","If a creature emits a heavy aroma or is upwind, the GM can double or even triple the range of {@ability scent} abilities used to detect that creature, and the GM can reduce the range if a creature is downwind."],"source":"CRB"},{"type":"pf2-h4","page":465,"name":"Tremorsense","entries":["Tremorsense allows a creature to feel the vibrations through a solid surface caused by movement. It is usually an imprecise sense with a limited range (listed in the ability). Tremorsense functions only if the detecting creature is on the same surface as the subject, and only if the subject is moving along (or burrowing through) the surface."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-brown-box","page":465,"name":"DETECTING WITH OTHER SENSES","entries":["If a monster uses a sense other than vision, the GM can adapt the variables that keep its foes from being detected to equivalents that work with the monster's senses. For example, a creature that has echolocation might use hearing as a primary sense. This could mean its quarry is concealed in a noisy chamber, hidden in a great enough din, or even {@condition invisible} in the area of a {@spell silence} spell.",{"type":"pf2-title","name":"Using Stealth with Other Senses"},"The {@skill Stealth} skill is designed to use Hide for avoiding visual detection and Avoid Notice and Sneak to avoid being both seen and heard. For many special senses, a player can describe how they're avoiding detection by that special sense and use the most applicable {@skill Stealth} action. For instance, a creature stepping lightly to avoid being detected via tremorsense would be using Sneak.","In some cases, rolling a Dexterity-based {@skill Stealth} skill check to Sneak doesn't make the most sense. For example, when facing a creature that can detect heartbeats, a PC trying to avoid being detected might meditate to slow their heart rate, using Wisdom instead of Dexterity as the ability modifier for the {@skill Stealth} check. When a creature that can detect you has multiple senses, such as if it could also hear or see, the PC would use the lowest applicable ability modifier for the check."],"source":"CRB"},{"type":"pf2-h3","page":465,"name":"Detecting Creatures","entries":["There are three conditions that measure the degree to which you can sense a creature: observed, hidden, and undetected. However, the concealed and invisible conditions can partially mask a creature, and the unnoticed condition indicates you have no idea a creature is around. In addition to the descriptions here, you can find these conditions in the Conditions Appendix on pages 618–623.","With the exception of {@condition invisible}, these conditions are relative to the viewer—it's possible for a creature to be observed to you but hidden from your ally. When you're trying to target a creature that's hard to see or otherwise sense, various drawbacks apply. Most of these rules apply to objects you're trying to detect as well as creatures.","Typically, the GM tracks how well creatures detect each other, since neither party has perfect information. For example, you might think a creature is in the last place you sensed it, but it was able to Sneak away. Or you might think a creature can't see you in the dark, but it has {@ability darkvision}.","You can attempt to avoid detection by using the {@skill Stealth} skill (page 251) to Avoid Notice, Hide, or Sneak, or by using {@skill Deception} to Create a Diversion (page 245).",{"type":"pf2-h4","page":466,"name":"Observed","entries":["In most circumstances, you can sense creatures without difficulty and target them normally. Creatures in this state are observed. Observing requires a precise sense, which for most creatures means sight, but see the Detecting with Other Senses sidebar (page 465) for advice regarding creatures that don't use sight as their primary sense. If you can't observe the creature, it's either hidden, undetected, or unnoticed, and you'll need to factor in the targeting restrictions. Even if a creature is observed, it might still be concealed."],"source":"CRB"},{"type":"pf2-h4","page":466,"name":"Hidden","entries":["A creature that's hidden is only barely perceptible. You know what space a hidden creature occupies, but little else. Perhaps the creature just moved behind cover and successfully used the Hide action. Your target might be in a deep fogbank or behind a waterfall, where you can see some movement but can't determine an exact location. Maybe you've been {@condition blinded} or the creature is under the effects of {@spell invisibility}, but you used the {@action Seek} basic action to determine its general location based on hearing alone. Regardless of the specifics, you're {@condition flat-footed} to a hidden creature.","When targeting a {@condition hidden} creature, before you roll to determine your effect, you must attempt a DC {@flatDC 11} flat check. If you fail, you don't affect the creature, though the actions you used are still expended—as well as any spell slots, costs, and other resources. You remain {@condition flat-footed} to the creature, whether you successfully target it or not."],"source":"CRB"},{"type":"pf2-h4","page":466,"name":"Undetected","entries":["If a creature is undetected, you don't know what space it occupies, you're {@condition flat-footed} to it, and you can't easily target it. Using the {@action Seek} basic action can help you find an undetected creature, usually making it {@condition hidden} from you instead of {@condition undetected}. If a creature is {@condition undetected}, that doesn't necessarily mean you're unaware of its presence—you might suspect an {@condition undetected} creature is in the room with you, even though you're unable to find its space. The {@condition unnoticed} condition covers creatures you're entirely unaware of.","Targeting an {@condition undetected} creature is difficult. If you suspect there's a creature around, you can pick a square and attempt an attack. This works like targeting a {@condition hidden} creature, but the flat check and attack roll are both rolled in secret by the GM. The GM won't tell you why you missed—whether it was due to failing the flat check, rolling an insufficient attack roll, or choosing the wrong square. The GM might allow you to try targeting an undetected creature with some spells or other abilities in a similar fashion. {@condition Undetected} creatures are subject to area effects normally.","For instance, suppose an enemy elf wizard cast {@spell invisibility} and then {@action sneak||Sneaked} away. You suspect that with the elf's Speed of 30 feet, they probably moved 15 feet toward an open door. You move up and attack a space 15 feet from where the elf started and directly on the path to the door. The GM secretly rolls an attack roll and flat check, but they know that you were not quite correct—the elf was actually in the adjacent space! The GM tells you that you missed, so you decide to make your next attack on the adjacent space, just in case. This time, it's the right space, and the GM's secret attack roll and flat check both succeed, so you hit!"],"source":"CRB"},{"type":"pf2-h4","page":467,"name":"Unnoticed","entries":["If you have no idea a creature is even present, that creature is unnoticed by you. A creature that is undetected might also be unnoticed. This condition usually matters for abilities that can be used only against targets totally unaware of your presence."],"source":"CRB"}],"source":"CRB"}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":450,"name":"Special Checks","entries":["Some categories of checks follow special rules. The most notable are flat checks and secret checks.",{"type":"pf2-h3","page":450,"name":"Flat Checks","entries":["When the chance something will happen or fail to happen is based purely on chance, you'll attempt a flat check. A flat check never includes any modifiers, bonuses, or penalties—you just roll a d20 and compare the result on the die to the DC. Only abilities that specifically apply to flat checks can change the checks' DCs; most such effects affect only certain types of flat checks.","If more than one flat check would ever cause or prevent the same thing, just roll once and use the highest DC. In the rare circumstance that a flat check has a DC of 1 or lower, skip rolling; you automatically succeed. Conversely, if one ever has a DC of 21 or higher, you automatically fail."],"source":"CRB"},{"type":"pf2-h3","page":450,"name":"Secret Checks","entries":["Sometimes you as the player shouldn't know the exact result and effect of a check. In these situations, the rules (or the GM) will call for a secret check. The secret trait appears on anything that uses secret checks. This type of check uses the same formulas you normally would use for that check, but is rolled by the GM, who doesn't reveal the result. Instead, the GM simply describes the information or effects determined by the check's result. If you don't know a secret check is happening (for instance, if the GM rolls a secret Fortitude save against a poison that you failed to notice), you can't use any fortune or misfortune abilities (see the sidebar on page 449) on that check, but if a fortune or misfortune effect would apply automatically, the GM applies it to the secret check. If you know that the GM is attempting a secret check—as often happens with {@action Recall Knowledge} or Seek—you can usually activate fortune or misfortune abilities for that check. Just tell the GM, and they'll apply the ability to the check.","The GM can choose to make any check secret, even if it's not usually rolled secretly. Conversely, the GM can let you roll any check yourself, even if that check would usually be secret. Some groups find it simpler to have players roll all secret checks and just try to avoid acting on any out-of-character knowledge, while others enjoy the mystery."],"source":"CRB"}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":446,"name":"Specific Checks","entries":["While most checks follow these basic rules, it's useful to know about a few specific types of checks, how they're used, and how they differ from one another.",{"type":"pf2-h3","page":446,"name":"Attack Rolls","entries":["When you use a {@action Strike} action or make a spell attack, you attempt a check called an attack roll. Attack rolls take a variety of forms and are often highly variable based on the weapon you are using for the attack, but there are three main types: melee attack rolls, ranged attack rolls, and spell attack rolls. Spell attack rolls work a little bit differently, so they are explained separately on the next page.","{@b Melee attack rolls} use Strength as their ability modifier by default. If you're using a weapon or attack with the finesse trait, then you can use your Dexterity modifier instead.",{"type":"pf2-inset","entries":["Melee attack roll result = d20 roll + Strength modifier (or optionally Dexterity modifier for a finesse weapon) + proficiency bonus + other bonuses + penalties"]},"{@b Ranged attack rolls} use Dexterity as their ability modifier.",{"type":"pf2-inset","entries":["Ranged attack roll result = d20 roll + Dexterity modifier + proficiency bonus + other bonuses + penalties"]},"When attacking with a weapon, whether melee or ranged, you add your proficiency bonus for the weapon you're using. Your class determines your proficiency rank for various weapons. Sometimes, you'll have different proficiency ranks for different weapons. For instance, at 5th level, a fighter gains the weapon mastery class feature, which grants master proficiency with the simple and martial weapons of one weapon group, expert proficiency with advanced weapons of that group and other simple and martial weapons, and trained proficiency in all other advanced weapons.","The bonuses you might apply to attack rolls can come from a variety of sources. Circumstance bonuses can come from the aid of an ally or a beneficial situation. Status bonuses are typically granted by spells and other magical aids. The item bonus to attack rolls comes from magic weapons—notably, a weapon's potency rune (page 580).","Penalties to attack rolls come from situations and effects as well. Circumstance penalties come from risky tactics or detrimental circumstances, status penalties come from spells and magic working against you, and item penalties occur when you use a shoddy item (page 273). When making attack rolls, two main types of untyped penalties are likely to apply. The first is the multiple attack penalty, and the second is the range penalty. The first applies anytime you make more than one attack action during the course of your turn, and the other applies only with ranged or thrown weapons. Both are described below.",{"type":"pf2-h4","page":446,"name":"Multiple Attack Penalty","entries":["The more attacks you make beyond your first in a single turn, the less accurate you become, represented by the multiple attack penalty. The second time you use an attack action during your turn, you take a –5 penalty to your attack roll. The third time you attack, and on any subsequent attacks, you take a –10 penalty to your attack roll. Every check that has the attack trait counts toward your multiple attack penalty, including Strikes, spell attack rolls, certain skill actions like Shove, and many others.","Some weapons and abilities reduce multiple attack penalties, such as agile weapons, which reduce these penalties to –4 on the second attack or –8 on further attacks.",{"type":"table","colStyles":["text-center","text-center","text-center"],"rows":[["Attack","Multiple Attack Penalty","Agile"],["First","None","None"],["Second","–5","–4"],["Third or subsequent","–10","–8"]]},"Always calculate your multiple attack penalty for the weapon you're using on that attack. For example, let's say you're wielding a longsword in one hand and a shortsword (which has the agile trait) in your other hand, and you are going to make three Strikes with these weapons during the course of your turn. The first Strike you make during your turn has no penalty, no matter what weapon you are using. The second Strike will take either a –5 penalty if you use the longsword or a –4 penalty if you use the shortsword.","Just like the second attack, the penalty for your third attack is based on which weapon you're using for that particular Strike. It would be a –10 penalty with the longsword and a –8 penalty with the shortsword, no matter what weapon you used for your previous Strikes.","The multiple attack penalty applies only during your turn, so you don't have to keep track of it if you can perform an Attack of Opportunity or a similar reaction that lets you make a Strike on someone else's turn.",{"type":"pf2-h4","page":446,"name":"Range Penalty","entries":["Ranged and thrown weapons each have a listed range increment, and attacks with them grow less accurate against targets farther away (range and range increments are covered in depth on page 279). As long as your target is at or within the listed range increment, also called the first range increment, you take no penalty to the attack roll. If you're attacking beyond that range increment, you take a –2 penalty for each additional increment beyond the first.","You can attempt to attack with a ranged weapon or thrown weapon up to six range increments away, but the farther away you are, the harder it is to hit your target.","For example, the range increment of a crossbow is 120 feet. If you are shooting at a target no farther away than that distance, you take no penalty due to range. If they're beyond 120 feet but no more than 240 feet away, you take a –2 penalty due to range. If they're beyond 240 feet but no more than 360 feet away, you take a –4 penalty due to range, and so on, until you reach the last range increment: beyond 600 feet but no more than 720 feet away, where you take a –10 penalty due to range."],"source":"CRB"},{"type":"pf2-h4","page":447,"name":"Armor Class","entries":["Attack rolls are compared to a special difficulty class called an {@b Armor Class} ({@b AC}), which measures how hard it is for your foes to hit you with Strikes and other attack actions. Just like for any other check and DC, the result of an attack roll must meet or exceed your AC to be successful, which allows your foe to deal damage to you.","Armor Class is calculated using the following formula.",{"type":"pf2-inset","entries":["Armor Class = 10 + Dexterity modifier (up to your armor's Dex Cap) + proficiency bonus + armor's item bonus to AC + other bonuses + penalties"]},"Use the proficiency bonus for the category (light, medium, or heavy) or the specific type of armor you're wearing. If you're not wearing armor, use your proficiency in unarmored defense.","Armor Class can benefit from bonuses with a variety of sources, much like attack rolls. Armor itself grants an item bonus, so other item bonuses usually won't apply to your AC, but magic armor can increase the item bonus granted by your armor.","Penalties to AC come from situations and effects in much the same way bonuses do. Circumstance penalties come from unfavorable situations, and status penalties come from effects that impede your abilities or from broken armor. You take an item penalty when you wear shoddy armor (page 273)."],"source":"CRB"}],"source":"CRB"}],"source":"CRB"},{"type":"pf2-brown-box","page":447,"name":"STRIDING AND STRIKING","entries":["Two of the simplest and most common actions you'll use in combat are Stride and Strike, described in full on page 471.","{@b {@action Stride}} is an action that has the move trait and that allows you to move a number of feet up to your Speed.","You'll often need to Stride multiple times to reach a foe who's far away or to run from danger! Move actions can often trigger reactions or free actions. However, unlike other actions, a move action can trigger reactions not only when you first use the action, but also for every 5 feet you move during that action, as described on page 474. The Step action (page 471) lets you move without triggering reactions, but only 5 feet.","{@b {@action Strike}} is an action that has the attack trait and that allows you to attack with a weapon you're wielding or an unarmed attack (such as a fist).","If you're using a melee weapon or unarmed attack, your target must be within your reach; if you're attacking with a ranged weapon, your target must be within range. Your reach is how far you can physically extend a part of your body to make an unarmed attack, or the farthest distance you can reach with a melee weapon. This is typically 5 feet, but special weapons and larger creatures have longer reaches. Your range is how far away you can attack with a ranged weapon or with some types of magical attacks.","Different weapons and magical attacks have different maximum ranges, and ranged weapons get less effective as you exceed their range increments.","Striking multiple times in a turn has diminishing returns. The multiple attack penalty (detailed on page 446) applies to each attack after the first, whether those attacks are Strikes, special attacks like the Grapple action of the {@skill Athletics} skill, or spell attack rolls."],"source":"CRB"},{"type":"pf2-h3","page":447,"name":"Spell Attack Rolls","entries":["If you cast spells, you might be able to make a spell attack roll. These rolls are usually made when a spell makes an attack against a creature's AC.","The ability modifier for a spell attack roll depends on how you gained access to your spells. If your class grants you spellcasting, use your key ability modifier. Innate spells use your Charisma modifier unless the ability that granted them states otherwise. Focus spells and other sources of spells specify which ability modifier you use for spell attack rolls in the ability that granted them. If you have spells from multiple sources or traditions, you might use different ability modifiers for spell attack rolls for these different sources of spells. For example, a dwarf cleric with the Stonewalker ancestry feat would use her Charisma modifier when casting {@spell meld into stone} from that feat, since it's a divine innate spell, but she would use her Wisdom modifier when casting {@spell heal} and other spells using her cleric divine spellcasting.","Determine the spell attack roll with the following formula.",{"type":"pf2-inset","entries":["Spell attack roll result = d20 roll + ability modifier used for spellcasting + proficiency bonus + other bonuses + penalties"]},"If you have the ability to cast spells, you'll have a proficiency rank for your spell attack rolls, so you'll always add a proficiency bonus. Like your ability modifier, this proficiency rank may vary from one spell to another if you have spells from multiple sources. Spell attack rolls can benefit from circumstance bonuses and status bonuses, though item bonuses to spell attack rolls are rare. Penalties affect spell attack rolls just like any other attack roll—including your multiple attack penalty.","Many times, instead of requiring you to make a spell attack roll, the spells you cast will require those within the area or targeted by the spell to attempt a saving throw against your {@b Spell DC} to determine how the spell affects them.","Your spell DC is calculated using the following formula.",{"type":"pf2-inset","entries":["Spell DC = 10 + ability modifier used for spellcasting + proficiency bonus + other bonuses + penalties"]}],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h3","page":448,"name":"Perception","entries":["Perception measures your ability to be aware of your environment. Every creature has Perception, which works with and is limited by a creature's senses (described on page 464). Whenever you need to attempt a check based on your awareness, you'll attempt a Perception check.","Your Perception uses your Wisdom modifier, so you'll use the following formula when attempting a Perception check.",{"type":"pf2-inset","entries":["Perception check result = d20 roll + Wisdom modifier + proficiency bonus + other bonuses + penalties"]},"Nearly all creatures are at least trained in Perception, so you will almost always add a proficiency bonus to your Perception modifier. You might add a circumstance bonus for advantageous situations or environments, and typically get status bonuses from spells or other magical effects. Items can also grant you a bonus to Perception, typically in a certain situation. For instance, a fine spyglass grants a +1 item bonus to Perception when attempting to see something a long distance away. Circumstance penalties to Perception occur when an environment or situation (such as fog) hampers your senses, while status penalties typically come from conditions, spells, and magic effects that foil the senses. You'll rarely encounter item penalties or untyped penalties for Perception.","Many abilities are compared to your {@b Perception DC} to determine whether they succeed. Your Perception DC is 10 + your total Perception modifier.",{"type":"pf2-h4","page":448,"name":"Perception for Initiative","entries":["Often, you'll roll a Perception check to determine your order in initiative. When you do this, instead of comparing the result against a DC, everyone in the encounter will compare their results. The creature with the highest result acts first, the creature with the second-highest result goes second, and so on. Sometimes you may be called on to roll a skill check for initiative instead, but you'll compare results just as if you had rolled Perception. The full rules for initiative are found in the rules for encounter mode on page 468."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":448,"name":"Saving Throws","entries":["There are three types of saving throws: Fortitude saves, Reflex saves, and Will saves. In all cases, saving throws measure your ability to shrug off harmful effects in the form of afflictions, damage, or conditions. You'll always add a proficiency bonus to each save. Your class might give a different proficiency to each save, but you'll be trained at minimum. Some circumstances and spells might give you circumstance or status bonuses to saves, and you might find {@item resilient} armor or other magic items that give an item bonus.","{@b Fortitude saving throws} allow you to reduce the effects of abilities and afflictions that can debilitate the body.","They use your Constitution modifier and are calculated as shown in the formula below.",{"type":"pf2-inset","entries":["Fortitude save result = d20 roll + Constitution modifier + proficiency bonus + other bonuses + penalties"]},"{@b Reflex saving throws} measure how well you can respond quickly to a situation and how gracefully you can avoid effects that have been thrown at you. They use your Dexterity modifier and are calculated as shown in the formula below.",{"type":"pf2-inset","entries":["Reflex save result = d20 roll + Dexterity modifier + proficiency bonus + other bonuses + penalties"]},"{@b Will saving throws} measure how well you can resist attacks to your mind and spirit. They use your Wisdom modifier and are calculated as shown in the formula below.",{"type":"pf2-inset","entries":["Will save result = d20 roll + Wisdom modifier + proficiency bonus + other bonuses + penalties"]},"Sometimes you'll need to know your DC for a given saving throw. The DC for a saving throw is 10 + the total modifier for that saving throw.","Most of the time, when you attempt a saving throw, you don't have to use your actions or your reaction. You don't even need to be able to act to attempt saving throws. However, in some special cases you might have to take an action to attempt a save. For instance, you can try to recover from the sickened condition by spending an action to attempt a Fortitude save.",{"type":"pf2-h4","page":449,"name":"Basic Saving Throws","entries":["Sometimes you will be called on to attempt a basic saving throw. This type of saving throw works just like any other saving throw—the \"basic\" part refers to the effects.","For a basic save, you'll attempt the check and determine whether you critically succeed, succeed, fail, or critically fail like you would any other saving throw. Then one of the following outcomes applies based on your degree of success—no matter what caused the saving throw.",{"type":"successDegree","entries":{"Critical Success":"You take no damage from the spell, hazard, or effect that caused you to attempt the save.","Success":"You take half the listed damage from the effect.","Failure":"You take the full damage listed from the effect.","Critical Failure":"You take double the listed damage from the effect."}}],"source":"CRB"}],"source":"CRB"},{"type":"pf2-brown-box","page":449,"name":"FORTUNE AND MISFORTUNE EFFECTS","entries":["Fortune and misfortune effects can alter how you roll your dice. These abilities might allow you to reroll a failed roll, force you to reroll a successful roll, allow you to roll twice and use the higher result, or force you to roll twice and use the lower result.","You can never have more than one fortune and more than one misfortune effect come into play on a single roll. For instance, if an effect lets you roll twice and use the higher roll, you can't then use Halfling Luck (a fortune effect) to reroll if you fail. If multiple fortune effects would apply, you have to pick which to use. If two misfortune effects apply, the GM decides which is worse and applies it.","If both a fortune effect and a misfortune effect would apply to the same roll, the two cancel each other out, and you roll normally."],"source":"CRB"},{"type":"pf2-h3","page":449,"name":"Skill Checks","entries":["Pathfinder has a variety of skills, from {@skill Athletics} to {@skill Medicine} to {@skill Occultism}. Each grants you a set of related actions that rely on you rolling a skill check. Each skill has a key ability score, based on the scope of the skill in question. For instance, {@skill Athletics} deals with feats of physical prowess, like swimming and jumping, so its key ability score is Strength. {@skill Medicine} deals with the ability to diagnose and treat wounds and ailments, so its key ability score is Wisdom. The key ability score for each skill is listed in Chapter 4: Skills. No matter which skill you're using, you calculate a check for it using the following formula.",{"type":"pf2-inset","entries":["Skill check result = d20 roll + modifier of the skill's key ability score + proficiency bonus + other bonuses + penalties"]},"You're unlikely to be trained in every skill. When using a skill in which you're untrained, your proficiency bonus is +0; otherwise, it equals your level plus 2 for trained, or higher once you become expert or better. The proficiency rank is specific to the skill you're using. Aid from another character or some other beneficial situation may grant you a circumstance bonus. A status bonus might come from a helpful spell or magical effect. Sometimes tools related to the skill grant you an item bonus to your skill checks. Conversely, unfavorable situations might give you a circumstance penalty to your skill check, while harmful spells, magic, or conditions might also impose a status penalty. Using shoddy or makeshift tools might cause you to take an item penalty. Sometimes a skill action can be an attack, and in these cases, the skill check might take a multiple attack penalty, as described on page 446.","When an ability calls for you to use the DC for a specific skill, you can calculate it by adding 10 + your total modifier for that skill."],"source":"CRB"},{"type":"pf2-h3","page":450,"name":"Notating Total Modifiers","entries":["When creating your character and adventuring you'll record the total modifier for various important checks on your character sheet. Since many bonuses and penalties are due to the immediate circumstances, spells, and other temporary magical effects, you typically won't apply them to your notations.","Item bonuses and penalties are often more persistent, so you will often want to record them ahead of time. For instance, if you are using a weapon with a {@item +1 weapon potency} rune, you'll want to add the +1 item bonus to your notation for your attack rolls with that weapon, since you will include that bonus every time you attack with that weapon. But if you have a fine spyglass, you wouldn't add its item bonus to your Perception check notation, since you gain that bonus only if you are using sight—and the spyglass!—to see long distances."],"source":"CRB"}],"data":{"quickref":4},"source":"CRB"}]},{"type":"entries","entries":[{"type":"section","page":503,"name":"Difficulty Classes","alias":["DCs"],"entries":[{"type":"pf2-h1-flavor","page":503,"entries":["{@i As the Game Master, it's up to you to set the difficulty classes (DCs) for checks that don't use a predefined DC. The following sections offer advice on how to set appropriate DCs and tweak them as needed to feel natural for your story. Picking a simple DC and using a level-based DC each work well in certain circumstances, and you can adjust both types of DC using the advice on adjusting difficulty.}"],"source":"CRB"},{"type":"pf2-h2","page":503,"name":"Simple DCs","entries":["Sometimes you need to quickly set a Difficulty Class. The easiest method is to select a simple DC from Table 10–4 by estimating which proficiency rank best matches the task (that rank is usually not required to succeed at the task).","If it's something pretty much anyone would have a decent chance at, use the untrained DC. If it would require a degree of training, use the DC listed for trained, expert, master, or legendary proficiency, as appropriate to the complexity of the task. For example, say a PC was trying to uncover the true history behind a fable. You determine this requires a check to Recall Knowledge, and that only someone with master proficiency in Folktale Lore would know the information, so you'd set the DC at 30—the simple master DC.","Simple DCs work well when you need a DC on the fly and there's no level associated with the task. They're most useful for skill checks. Because there isn't much gradation between the simple DCs, they don't work as well for hazards or combatants, where the PCs' lives are on the line; you're better off using level-based DCs for such challenges.",{"name":"Simple DCs","type":"statblock","tag":"table","source":"CRB","page":503}],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h2","page":503,"name":"Level-Based DCs","entries":["When you're determining a skill DC based on something that has a level, use Table 10–5 to set the DC. Find the level of the subject, and assign the corresponding DC. Since spells use a 1–10 scale, use the Spell Level column for them.","Use these DCs when a PC needs to Identify a Spell or {@action Recall Knowledge} about a creature, attempts to Earn Income by performing a task of a certain level, and so on. You can also use the level-based DCs for obstacles instead of assigning a simple DC. For example, you might determine that a wall in a high-level dungeon was constructed of smooth metal and is hard to climb. You could simply say only someone with master proficiency could climb it, and use the simple DC of 30. Or you might decide that the 15th-level villain who created the dungeon crafted the wall, and use the 15th-level DC of 34. Either approach is reasonable!","Note that PCs who invest in a skill become more likely to succeed at a DC of their level as they increase in level, and the listed DCs eventually become very easy for them.",{"type":"statblock","tag":"table","name":"DCs by Level","source":"CRB"}],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h2","page":503,"name":"Adjusting Difficulty","entries":["You might decide a DC should differ from the baseline, whether to account for PCs' areas of expertise or to represent the rarity of spells or items. A DC adjustment represents an essential difference in the difficulty of a task and applies to anyone attempting a specific check for it.","Adjustments happen most often with tasks whose DCs are based on their level. Adjustments use a scale of –10 to +10, from incredibly easy checks to incredibly hard ones, and are broken into increments of 2, 5, and 10.","You'll often apply the adjustments for uncommon, rare, or unique subjects.",{"type":"statblock","tag":"table","name":"DC Adjustments","source":"CRB"},"The adjustments' names don't translate to how hard a task actually is for a PC or group of PCs, and adjustments aren't meant to balance out or replace PCs' bonuses and penalties. PCs who invest in a skill will become better and better at that skill as they increase in level. For example, even the best 1st-level PC has grim odds against an incredibly hard 1st-level DC, with a huge chance of critical failure, but by 20th level, an optimized character with a modicum of magic or assistance can take down incredibly hard 20th-level DCs over half the time, critically failing only on a 1. At higher levels, many groups will find that the very hard DC is more like standard for them; keep that in mind if you need a check that presents a true challenge to a high level group.","You might use different DCs for a task based on the particular skill or statistic used for the check. Let's say your PCs encounter a magical tome about aberrant creatures. The tome is 4th-level and has the occult trait, so you set the DC of an {@skill Occultism} check to Identify the Magic to 19, based on Table 10–5. As noted in Identify Magic, other magic-related skills can typically be used at a higher DC, so you might decide the check is very hard for a character using {@skill Arcana} and set the DC at 24 for characters using that skill. If a character in your group had Aberration Lore, you might determine that it would be easy or very easy to use that skill and adjust the DC to 17 or 14. These adjustments aren't taking the place of characters' bonuses, modifiers, and penalties—they are due to the applicability of the skills being used.",{"type":"pf2-h3","page":504,"name":"Group Attempts","entries":["The DCs in this chapter give an individual character a strong and increasing chance of success if they have some proficiency. On occasion, though, you'll have a task that only one person in the group needs to succeed at, but that everyone can attempt. The number of dice being rolled means that there's a very high chance at least one of them will succeed. Most of the time, that's perfectly fine, but sometimes you'll want the task to be a challenge, with some uncertainty as to whether the party can succeed. In these cases, make the check very hard, or incredibly hard if you want it to be particularly difficult or at high levels.","At these DCs, most of the party will probably fail, but someone will probably still succeed, likely a character who has heavily invested in the given skill, as is expected for specialized characters."],"source":"CRB"}],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h2","page":504,"name":"Minimum Proficiency","entries":["Sometimes succeeding at a particular task requires a character to have a specific proficiency rank in addition to a success on the check. Locks and traps often require a certain proficiency rank to successfully use the Pick a Lock or Disable a Device actions of {@skill Thievery}. A character whose proficiency rank is lower than what's listed can attempt the check, but they can't succeed. You can apply similar minimum proficiencies to other tasks. You might decide, for example, that a particular arcane theorem requires training in {@skill Arcana} to understand. An untrained barbarian can't succeed at the check, but she can still attempt it if she wants—after all, she needs to have a chance to critically fail and get erroneous information!","For checks that require a minimum proficiency, keep the following guidelines in mind. A 2nd-level or lower task should almost never require expert proficiency, a 6th-level or lower task should almost never require master proficiency, and a 14th-level or lower task should almost never require legendary proficiency. If they did, no character of the appropriate level could succeed."],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h2","page":504,"name":"Specific Actions","entries":["Several parts of this book, most notably Chapter 4: Skills, state that you as the GM set the DCs for certain checks or determine other parameters. Here are guidelines for the most common tasks. Remember that all of these are guidelines, and you can adjust them as necessary to suit the situation.",{"type":"pf2-h3","page":504,"name":"Craft","entries":["When a character Crafts an item, use the item's level to determine the DC, applying the adjustments from Table 10–6 for the item's rarity if it's not common. You might also apply the easy DC adjustment for an item the crafter has made before. Repairing an item usually uses the DC of the item's level with no adjustments, though you might adjust the DC to be more difficult for an item of a higher level than the character can Craft."],"source":"CRB"},{"type":"pf2-h3","page":504,"name":"Earn Income","entries":["You set the task level when someone tries to Earn Income.","The highest-level task available is usually the same as the level of the settlement where the character is located. If you don't know the settlement's level, it's usually 0–1 for a village, 2–4 for a town, or 5–7 for a city. A PC might need to travel to a metropolis or capital to find tasks of levels 8-10, and to the largest cities in the world or another plane to routinely find tasks beyond that. Some locations might have higher-level tasks available based on the nature of the settlement. A major port might have higher-level tasks for Sailing Lore, a city with a vibrant arts scene might have higher-level tasks for {@skill Performance}, and so on. If someone is trying to use a particularly obscure skill, they might have trouble finding tasks of an ideal level, or any at all—no one in most settlements is clamoring for the expertise of someone with Troll Lore.","Once the PC has decided on a particular level of task from those available, use the DC for that level from Table 10–5. You might adjust the DC to be more difficult if there's inclement weather during an outdoor job, a rowdy audience for a performance, or the like."],"source":"CRB"},{"type":"pf2-h3","page":505,"name":"Gather Information","entries":["To set the DC to Gather Information, use a simple DC representing the availability of information about the subject. Adjust the DC upward if the PC Gathering Information seeks in-depth information. For example, if a character wants to Gather Information about a visiting caravan, you might decide that a common person wouldn't know much about it, but any merchant or guard would, so learning basic facts uses the simple DC for trained proficiency. A caravan leader's name is superficial, so discovering it might be DC 15 (the simple trained DC in Table 10–4). Learning the identity of the leader's employers, however, might be DC 20 if the employers are more obscure."],"source":"CRB"},{"type":"pf2-h3","page":505,"name":"Identify Magic or Learn a Spell","entries":["The DC to {@action Identify Magic} or {@action Learn a Spell} is usually the DC listed in Table 10–5 for the spell or item's level, adjusted for its rarity. A very strange item or phenomenon usually uses a higher DC adjustment. For a cursed item or certain illusory items, use an incredibly hard DC to increase the chance of misidentification."],"source":"CRB"},{"type":"pf2-h3","page":505,"name":"Recall Knowledge","entries":["On most topics, you can use simple DCs for checks to {@action Recall Knowledge}. For a check about a specific creature, trap, or other subject with a level, use a {@quickref level-based DCs||4|level-based dcs} (adjusting for rarity as needed). You might adjust the difficulty down, maybe even drastically, if the subject is especially notorious or famed. Knowing simple tales about an infamous dragon's exploits, for example, might be incredibly easy for the dragon's level, or even just a simple trained DC.",{"type":"pf2-h4","page":505,"name":"Alternative Skills","entries":["As noted in the action's description, a character might attempt to {@action Recall Knowledge} using a different skill than the ones listed as the default options. If the skill is highly applicable, like using {@skill Medicine} to identify a medicinal tonic, you probably don't need to adjust the DC. If its relevance is a stretch, adjust the DC upward as described in {@quickref Adjusting Difficulty||4|Adjusting Difficulty}."],"source":"CRB"},{"type":"pf2-h4","page":505,"name":"Additional Knowledge","entries":["Sometimes a character might want to follow up on a check to {@action Recall Knowledge}, rolling another check to discover more information. After a success, further uses of {@action Recall Knowledge} can yield more information, but you should adjust the difficulty to be higher for each attempt. Once a character has attempted an incredibly hard check or failed a check, further attempts are fruitless—the character has recalled everything they know about the subject."],"source":"CRB"},{"type":"pf2-h4","page":505,"name":"Creature Identification","entries":["A character who successfully identifies a creature learns one of its best-known attributes—such as a troll's regeneration (and the fact that it can be stopped by acid or fire) or a manticore's tail spikes. On a critical success, the character also learns something subtler, like a demon's weakness or the trigger for one of the creature's reactions.","The skill used to identify a creature usually depends on that creature's trait, as shown on Table 10–7, but you have leeway on which skills apply. For instance, hags are humanoids but have a strong connection to occult spells and live outside society, so you might allow a character to use {@skill Occultism} to identify them without any DC adjustment, while Society is harder. Lore skills can also be used to identify their specific creature. Using the applicable Lore usually has an easy or very easy DC (before adjusting for rarity).",{"type":"statblock","tag":"table","name":"Creature Identification Skills","source":"CRB"}],"source":"CRB"}],"source":"CRB"},{"type":"pf2-brown-box","page":506,"name":"DETERMINING THE SCOPE OF LORE","entries":["{@skill Lore} skills are one of the most specialized aspects of Pathfinder, but they require GM oversight, particularly in determining which {@skill Lore} subcategories are acceptable for characters to select. A {@skill Lore} subcategory represents a narrow focus, and thus it shouldn't replace all or even most of an entire skill, nor should it convey vast swaths of information. For example, a single {@skill Lore} subcategory doesn't cover all religions—that's covered by the {@skill Religion} skill—but a character could have a {@skill Lore} subcategory that covers a single deity. One {@skill Lore} subcategory won't cover an entire country or all of history, but it could cover a city, an ancient civilization, or one aspect of a modern country, like Taldan History {@skill Lore}. A single {@skill Lore} subcategory couldn't cover the entire multiverse, but it could cover a whole plane other than the Material Plane."],"source":"CRB"},{"type":"pf2-h3","page":506,"name":"Sense Direction","entries":["Pick the most appropriate simple DC when someone uses {@skill Survival} to Sense Direction. This is usually the trained DC in normal wilderness, expert in deep forest or underground, master in featureless or tricky locations, or legendary in weird or surreal environments on other planes."],"source":"CRB"},{"type":"pf2-h3","page":506,"name":"Social Skills","entries":["When a character uses {@skill Deception}, {@skill Diplomacy}, {@skill Intimidation}, or {@skill Performance} to influence or impress someone whose level or Will DC you don't know, estimate the level of the creature and use that DC. A commoner is usually level 0 or 1. Don't worry about being exact. It often makes sense to adjust the DC based on the target's attitude for {@skill Deception}, {@skill Diplomacy}, or {@skill Performance}, making the DC easy for a friendly creature, very easy for a helpful one, hard for an unfriendly one, or very hard for a hostile one. You might adjust the DC further or differently based on the PC's goal; for instance, the DC to Request something an indifferent NPC is fundamentally opposed to might be incredibly hard or impossible, and it might be easy to convince an unfriendly creature to do something it already wants to do."],"source":"CRB"},{"type":"pf2-h3","page":506,"name":"Subsist","entries":["A simple DC is usually sufficient for the Subsist action, with a trained DC for a typical situation. Use the disposition of the environment or city as a guide; an environment with scarce resources or a city with little tolerance for transience might require an expert or higher DC."],"source":"CRB"},{"type":"pf2-h3","page":506,"name":"Track","entries":["Often when a PC uses {@skill Survival} to Track, you can pick a simple DC and adjust it based on the circumstances. For example, an army is usually easy to track, so you could use the untrained DC of 10. If the army marched through mud, you could even adjust this down to DC 5. On the other hand, if the party pursues a cunning survivalist using Cover Tracks, you might use their {@skill Survival} DC as the DC to Track."],"source":"CRB"},{"type":"pf2-h3","page":506,"name":"Train an Animal","entries":["Train Animal (page 268) allows PCs to teach animals tricks. Use the level of the animal as the baseline; you can adjust the DC up if the trick is especially difficult, or down if the animal is especially domesticated, like a dog."],"source":"CRB"}],"source":"CRB"}],"data":{"quickref":5},"source":"CRB"},{"type":"section","source":"GMG","page":120,"name":"Drugs","entries":["Drugs offer short-term benefits with harmful side effects and long-term consequences. These short-term benefits, such as euphoria, draw many to drugs, but addiction keeps users hooked long after their first dose. A character can voluntarily fail their initial save against a drug, but for each dose they consume, they must attempt a saving throw against addiction, a disease that represents cravings and withdrawal. Addiction is unique to each drug, so a character can be affected by multiple instances of addiction at once.","Certain drugs alter how addiction works for that drug, adding the {@trait virulent} trait to the addiction, limiting the maximum stage a character can reach, or adding additional stages beyond those listed in the base affliction.",{"type":"data","tag":"disease","data":{"source":"GMG","page":120,"name":"Addiction","level":", level varies","type":"disease","entries":["Track the maximum stage you reach with each drug's addiction. This maximum stage is separate from your current addiction stage for the drug. The maximum stage can't be reduced, even if you fully remove the disease. When you take the drug, two things happen: you attempt a saving throw against addiction, and you suppress the effects of addiction for 1 day. Failing a save against addiction caused by taking the drug causes you to go to 1 stage higher than the maximum stage you had previously reached (2 stages higher on a critical failure). If you're currently suffering from addiction when you attempt a save from taking the drug, you can't improve your stage; if you succeed at the save, the stage remains the same as it was.","When you attempt your save against addiction each week, the stage you are currently at can't get worse—it can only stay the same or improve. The conditions from addiction can't be removed while you are affected by the addiction, and suppressing addiction by taking the drug only avoids the effects—it doesn't remove the disease.",{"type":"affliction","savingThrow":"Fortitude (DC equals that of the drug)","onset":"1 day","stages":[{"stage":1,"entry":"{@condition fatigued}","duration":"1 week"},{"stage":2,"entry":"{@condition fatigued} and {@condition sickened||sickened 1}","duration":"1 week"},{"stage":3,"entry":"{@condition fatigued}, {@condition drained||drained 1} and {@condition sickened||sickened 1}","duration":"1 week"},{"stage":4,"entry":"{@condition fatigued}, {@condition drained||drained 2}, {@condition sickened||sickened 2} and {@condition stupefied||stupefied 2}","duration":"1 week"}]}]}},{"type":"pf2-brown-box","source":"GMG","page":120,"name":"DRUGS IN YOUR GAME","entries":["Drugs are socially complex, and including them in your game has the potential to make some of your players uncomfortable—particularly players who have struggled with substance abuse themselves or seen friends and family members go through that struggle. As with any potentially difficult subject matter, you should discuss the role drugs play in your game with your players and ensure that all the players at the table are comfortable with the material; if they aren't, avoid the topic.","If you do include drugs in your game, consider the role they'll play. In some campaigns, drugs might simply be an element of flavor and a tool characters use to reach their goals; in others, the side effects and risk of addiction might be a terrible price to pay. The rules assume something of a middle path, where drugs are addictive substances that may provide a short-term benefit but have consequences. To make drugs more accessible in your game, remove some of the more severe stages of addiction. To make them more dangerous, add the {@trait virulent} trait to the addiction affliction, add more stages with increasingly severe effects, or increase the DC of the save against the addiction by 1 for every use of the drug, decreasing back to normal over time as they stop using the drug."]}],"data":{"quickref":5}},{"type":"section","page":512,"name":"Environment","entries":[{"type":"pf2-h1-flavor","page":512,"entries":["{@i Primarily used during exploration, environment rules bring the locales your party travels through to life. You'll often be able to use common sense to adjudicate how environments work, but you'll need special rules for environments that really stand out.}"],"source":"CRB"},"Each of the environments presented in this section uses the terrain rules (which are summarized on page 514 and appear in full beginning on page 475) in different ways, so be sure to familiarize yourself with those rules before reading this section. Some environments refer to the rules for climate (page 517) and natural disasters (beginning on page 517). Many places have the traits of multiple environments; a snow-covered mountain might use both the arctic and mountain environments, for example. For environmental features with effects based on how tall or deep they are, those effects vary further based on a creature's size. For instance, a shallow bog for a Medium creature might be a deep bog for smaller creatures, and a deep bog for a Medium creature could be only a shallow bog for a larger creature (and so insignificant for a truly massive creature that it isn't even {@quickref difficult terrain||3|terrain}).","Table 10–12 lists the features of various environments alphabetically for quick reference. The Proficiency DC Band entry indicates a range of appropriate simple DCs for that environmental feature, while also providing a rough estimate of the danger or complexity of the feature.",{"type":"statblock","tag":"table","name":"Enviromental Features","source":"CRB"},{"type":"pf2-h2","page":512,"name":"Environmental Damage","entries":["Some environmental features or natural disasters deal damage. Because the amount of damage can vary based on the specific circumstances, the rules for specific environments and natural disasters use damage categories to describe the damage, rather than exact numbers.","Use Table 10–11 below to determine damage from an environment or natural disaster. When deciding the exact damage amount, use your best judgment based on how extreme you deem the danger to be.",{"type":"statblock","tag":"table","name":"Enviromental Damage","source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":512,"name":"Aquatic","entries":["Aquatic environments are among the most challenging for PCs short of other worlds and unusual planes. PCs in an aquatic environment need a way to breathe (typically a {@spell water breathing} spell) and must usually {@action Swim} to move, though a PC who sinks to the bottom can walk awkwardly, using the rules for {@quickref greater difficult terrain||3|terrain}.","Characters in aquatic environments make frequent use of the {@quickref aquatic combat||3|aquatic combat} and {@quickref drowning and suffocation||3|drowning and suffocating} rules.",{"type":"pf2-h3","page":512,"name":"Currents and Flowing Water","entries":["Ocean currents, flowing rivers, and similar moving water are {@quickref difficult terrain||3|terrain} or {@quickref greater difficult terrain||3|terrain} (depending on the speed of the water) for a creature Swimming against the current. At the end of a creature's turn, it moves a certain distance depending on the current's speed. For instance, a 10-foot current moves a creature 10 feet in the current's direction at the end of that creature's turn."],"source":"CRB"},{"type":"pf2-h3","page":512,"name":"Visibility","entries":["It's much harder to see things at a distance underwater than it is on land, and it's particularly difficult if the water is murky or full of particles. In pure water, the maximum visual range is roughly 240 feet to see a small object, and in murky water, visibility can be reduced to only 10 feet or even less."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":512,"name":"Arctic","entries":["The main challenge in an arctic environment is the low temperature, but arctic environments also contain ice and snow. The disasters that most often strike in arctic environments are avalanches, blizzards, and floods.",{"type":"pf2-h3","page":512,"name":"Ice","entries":["Icy ground is both uneven ground and {@quickref difficult terrain||3|terrain}, as characters slip and slide due to poor traction."],"source":"CRB"},{"type":"pf2-h3","page":512,"name":"Snow","entries":["Depending on the depth of snow and its composition, most snowy ground is either {@quickref difficult terrain||3|terrain} or {@quickref greater difficult terrain||3|terrain}. In denser snow, characters can attempt to walk along the surface without breaking through, but some patches might be loose or soft enough that they're uneven ground."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":512,"name":"Desert","entries":["Desert encompasses sandy and rocky deserts as well as badlands. Though tundra is technically a desert, it's classified as arctic, as the climate is the primary challenge in such areas. Sandy deserts often have quicksand hazards (page 526) and sandstorms.",{"type":"pf2-h3","page":513,"name":"Rubble","entries":["Rocky deserts are strewn with rubble, which is {@quickref difficult terrain||3|terrain}. Rubble dense enough to be walked over rather than navigated through is uneven ground."],"source":"CRB"},{"type":"pf2-h3","page":513,"name":"Sand","entries":["Packed sand doesn't usually significantly impede a character's movement, but loose sand is either {@quickref difficult terrain||3|terrain} (if it's shallow) or uneven ground (if it's deep).","The wind in a desert often shifts sand into dunes, hills of loose sand with uneven ground facing the wind and steeper inclines away from the wind."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":513,"name":"Forest","entries":["These diverse environments include jungles and other wooded areas. They are sometimes struck by wildfires.",{"type":"pf2-h3","page":513,"name":"Canopies","entries":["Particularly dense forests, such as rain forests, have a canopy level above the ground. A creature trying to reach the canopy or travel along it must Climb. Swinging on vines and branches usually requires an {@skill Acrobatics} or {@skill Athletics} check. A canopy provides cover, and a thicker one can prevent creatures in the canopy from seeing those on the ground, and vice versa."],"source":"CRB"},{"type":"pf2-h3","page":513,"name":"Trees","entries":["While trees are omnipresent in a forest, they typically don't provide cover unless a character uses the Take Cover action. Only larger trees that take up an entire 5-foot square on the map (or more) are big enough to provide cover automatically."],"source":"CRB"},{"type":"pf2-h3","page":513,"name":"Undergrowth","entries":["Light undergrowth is {@quickref difficult terrain||3|terrain} that allows a character to Take Cover. Heavy undergrowth is {@quickref greater difficult terrain||3|terrain} that automatically provides cover. Some sorts of undergrowth, such as thorns, might also be hazardous terrain, and areas with plenty of twisting roots might be uneven ground."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":513,"name":"Mountain","entries":["Mountain environments also include hills, which share many aspects of mountains, though not their more extreme features. The most common disasters here are avalanches.",{"type":"pf2-h3","page":513,"name":"Chasms","entries":["Chasms are natural pits, typically at least 20 feet long and clearly visible (barring mundane or magical efforts to conceal them). The main danger posed by a chasm is that characters must Long Jump to get across. Alternatively, characters can take the safer but slower route of Climbing down the near side of the chasm and then ascending the far side to get across."],"source":"CRB"},{"type":"pf2-h3","page":513,"name":"Cliffs","entries":["Cliffs and rock walls require creatures to {@action Climb} to ascend or descend. Without extensive safety precautions, a critical failure can result in significant falling damage."],"source":"CRB"},{"type":"pf2-h3","page":513,"name":"Rubble","entries":["Mountains often have extremely rocky areas or shifting, gravelly scree that makes for {@quickref difficult terrain||3|terrain}. Especially deep or pervasive rubble is uneven ground."],"source":"CRB"},{"type":"pf2-h3","page":514,"name":"Slopes","entries":["Slopes vary from the gentle rises of normal terrain to {@quickref difficult terrain||3|terrain} and inclines, depending on the angle of elevation. Moving down a slope is typically normal terrain, but characters might need to Climb up particularly steep slopes."],"source":"CRB"},{"type":"pf2-h3","page":514,"name":"Undergrowth","entries":["Light undergrowth is common in mountains. It is {@quickref difficult terrain||3|terrain} and allows a character to Take Cover."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":514,"name":"Plains","entries":["The plains environment encompasses grasslands such as savannas and farmland. The most common disasters in plains are tornadoes and wildfires.",{"type":"pf2-h3","page":514,"name":"Hedges","entries":["Hedges are planted rows of bushes, shrubs, and trees.","Their iconic appearance in adventures consists of tall hedges grown into mazes. A typical hedge is 2 to 5 feet tall, takes up a row of squares, and provides cover. A character trying to push through a hedge faces {@quickref greater difficult terrain||3|terrain}; it's sometimes faster to Climb over."],"source":"CRB"},{"type":"pf2-h3","page":514,"name":"Undergrowth","entries":["Light undergrowth is {@quickref difficult terrain||3|terrain} that allows a character to Take Cover. Heavy undergrowth is {@quickref greater difficult terrain||3|terrain} that provides cover automatically.","Undergrowth in plains is usually light with a few scattered areas of heavy undergrowth, but fields of certain crops, like corn, are entirely heavy undergrowth."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":514,"name":"Swamp","entries":["Wetlands are the most common kind of swamp, but this category also includes drier marshes such as moors.","Swamps often contain quicksand hazards (page 526).","Despite their soggy nature, swamps aren't very likely to experience heavy flooding, since they act as natural sponges and absorb a great deal of water before they flood.",{"type":"pf2-h3","page":514,"name":"Bogs","entries":["Also called mires, bogs are watery areas that accumulate peat, are covered by shrubs and moss, and sometimes feature floating islands of vegetation covering deeper pools.","Shallow bogs are {@quickref difficult terrain||3|terrain} for a Medium creature, and deep bogs are {@quickref greater difficult terrain||3|terrain}. If a bog is deep enough that a creature can't reach the bottom, the creature has to Swim. Bogs are also acidic, so particularly extreme or magical bogs can be hazardous terrain."],"source":"CRB"},{"type":"pf2-h3","page":514,"name":"Undergrowth","entries":["Light undergrowth is {@quickref difficult terrain||3|terrain} that allows a character to Take Cover, while heavy undergrowth is {@quickref greater difficult terrain||3|terrain} that provides cover automatically.","Some sorts of undergrowth, such as thorns, are also hazardous terrain, and areas with plenty of twisting roots are uneven ground."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-brown-box","page":514,"name":"TERRAIN RULES","entries":["Environments make frequent use of the rules for {@quickref difficult terrain||3|terrain}, {@quickref greater difficult terrain||3|terrain}, and hazardous terrain, so those rules are summarized here.","{@b Difficult terrain} is any terrain that impedes movement, ranging from particularly rough or unstable surfaces to thick ground cover and countless other impediments. Moving into a square of {@quickref difficult terrain||3|terrain} (or moving 5 feet into or within an area of {@quickref difficult terrain||3|terrain}, if you're not using a grid) costs an extra 5 feet of movement. Moving into a square of {@b greater difficult terrain} instead costs 10 additional feet of movement. This additional cost is not increased when moving diagonally. Creatures can't normally Step into {@quickref difficult terrain||3|terrain}.","Any movement creatures make while jumping ignores terrain that the creature is jumping over. Some abilities (such as flight or being incorporeal) allow creatures to avoid the movement reduction from some types of {@quickref difficult terrain||3|terrain}. Certain other abilities let creatures ignore {@quickref difficult terrain||3|terrain} while traveling on foot; such an ability also allows a creature to move through {@quickref greater difficult terrain||3|terrain} using the movement cost for {@quickref difficult terrain||3|terrain}, but unless the ability specifies otherwise, these abilities don't let creatures ignore {@quickref greater difficult terrain||3|terrain}.","{@b Hazardous terrain} damages creatures whenever they move through it. For instance, an acid pool, a pit of burning embers, and a spike-filled passageway all constitute hazardous terrain. The amount and type of damage depend on the specific hazardous terrain."],"source":"CRB"},{"type":"pf2-h2","page":514,"name":"Urban","entries":["Urban environments include open city spaces as well as buildings. The building information in this section also applies to ruins and constructed dungeons. Depending on their construction and location, cities might be vulnerable to many sorts of disasters, especially fires and floods.",{"type":"pf2-h3","page":514,"name":"Crowds","entries":["Crowded thoroughfares and similar areas are {@quickref difficult terrain||3|terrain}, or {@quickref greater difficult terrain||3|terrain} if an area is truly packed with people. You might allow a character to get a crowd to part using {@skill Diplomacy}, {@skill Intimidation}, or {@skill Performance}.","A crowd exposed to an obvious danger, like a fire or a rampaging monster, attempts to move away from the danger as quickly as possible, but it is slowed by its own mass. A fleeing crowd typically moves at the Speed of an average member each round (usually 25 feet), potentially trampling or leaving behind slower-moving members of the crowd."],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h3","page":515,"name":"Doors","entries":["Opening an unlocked door requires an Interact action (or more than one for a particularly complicated or large door). Stuck doors must be Forced Open, and locked ones require a character to Pick the Lock or Force them Open."],"source":"CRB"},{"type":"pf2-h3","page":515,"name":"Floors","entries":["Wooden floors are easy to walk on, as are flagstone floors made of fitted stones. However, floors of worn flagstone often contain areas of uneven ground."],"source":"CRB"},{"type":"pf2-h3","page":515,"name":"Gates","entries":["Walled settlements often have gates that the city can close for defense or open to allow travel. A typical gate consists of one portcullis at each end of a gatehouse, with murder holes in between or other protected spots from which guards can attack foes."],"source":"CRB"},{"type":"pf2-h3","page":515,"name":"Guards","entries":["Most settlements of significant size have guards working in shifts to protect the settlement at all hours, patrolling the streets and guarding various posts. The size of this force varies from one guard for every 1,000 residents to a force 10 times this number."],"source":"CRB"},{"type":"pf2-h3","page":515,"name":"Portcullises","entries":["A portcullis is a wooden or iron grate that descends to seal off a gate or corridor. Most are raised on ropes or chains operated by a winch, and they have locking mechanisms that keep them from being lifted easily. The rules on lifting a portcullis or bending its bars appear in the sidebar on this page. If a portcullis falls on a creature, use a slamming door trap (page 523)."],"source":"CRB"},{"type":"pf2-brown-box","page":515,"name":"DOORS, GATES, AND WALLS","entries":["Some of the most common obstacles that characters face in urban areas and dungeons are doors, gates, and walls.",{"type":"pf2-title","name":"Climbing"},"The table below gives the typical DC for {@skill Athletics} checks to Climb a structure, which is usually a simple DC. You might adjust the difficulty based on the specifics of the structure and environment.",{"type":"pf2-title","name":"Demolishing"},"A character might want to smash their way through a door, a window, or certain walls. The Hardness, Hit Point, and Broken Threshold values provided in the table below are based on the material the structure is typically made out of, so a portcullis made of iron, for example, has a higher Hardness than one of wood. For more on damaging objects, see page 272.","Strong walls, such as well-maintained masonry or hewn stone, can't be broken without dedicated work and proper tools. Getting through such walls requires downtime.",{"type":"table","rowLabelIdx":[0,5,11],"colStyles":["text-center","text-center","text-center"],"rows":[["Door","Climb DC","Hardness, HP (BT)"],["Wood","20","10, 40 (20)"],["Stone","30","14, 56 (28)"],["Reinforced Wood","15","15, 60 (30)"],["Iron","30","18, 72 (36)"],["Wall","Climb DC","Hardness, HP (BT)"],["Crumbling masonry","15","10, 40 (20)"],["Wooden slats","15","10, 40 (20)"],["Masonry","20","14, 56 (28)"],["Hewn stone","30","14, 56 (28)"],["Iron","40","18, 72 (36)"],["Portcullis","Climb DC","Hardness, HP (BT)"],["Wood","10","10, 40 (20)"],["Iron","10","18, 72 (36)"]]},{"type":"pf2-title","name":"Forcing Open"},"Structures that can be opened—such as doors, gates, and windows—can be Forced Open using {@skill Athletics}. This is usually necessary only if they're locked or stuck. The DC to Force Open a structure uses the {@skill Thievery} DC of its lock but adjusts it to be very hard (increasing the DC by 5).","If there's no lock, use the following table; when lifting a portcullis, use the lock DC or the DC from the table, whichever is higher."],"source":"CRB"},{"type":"pf2-h3","page":515,"name":"Rooftops","entries":["Rooftops make for memorable ambushes, chase scenes, infiltrations, and running fights. Flat roofs are easy to move across, but they're rare in any settlement that receives significant snowfall, since heavy buildups of snow can collapse a roof. Angled roofs are uneven ground, or inclines if they're especially steep. The peak of an angled roof is a narrow surface.","Hurdling from roof to roof often requires a Long Jump, though some buildings are close enough to Leap between.","A High Jump might be necessary to reach a higher roof, or a Leap followed by Grabbing an Edge and Climbing up."],"source":"CRB"},{"type":"pf2-h3","page":515,"name":"Sewers","entries":["Sewers are generally 10 feet or more below street level and are equipped with ladders or other means to ascend and descend. Raised paths along the walls allow sewer workers access, while channels in the center carry the waste itself. Less sophisticated sewers, or sections those workers don't usually access, might require wading through diseaseridden waste. Sewers can be accessed through sewer grates, which usually require 2 or more Interact actions to open.",{"type":"pf2-h4","page":516,"name":"Sewer Gas","entries":["Sewer gas often contains pockets of highly flammable gas. A pocket of sewer gas exposed to a source of flame explodes, dealing moderate environmental fire damage to creatures in the area."],"source":"CRB"}],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":516,"name":"Stairs","entries":["Stairs are {@quickref difficult terrain||3|terrain} for characters moving up them, and shoddy stairs might also be uneven ground. Some temples and giant-built structures have enormous stairs that are {@quickref greater difficult terrain||3|terrain} both up and down, or might require Climbing every step."],"source":"CRB"},{"type":"pf2-h3","page":516,"name":"Streets","entries":["Most settlements have narrow and twisting streets that were largely established organically as the settlement grew. These roads are rarely more than 20 feet wide, with alleys as narrow as 5 feet. Streets are generally paved with cobblestones. If the cobblestones are in poor repair, they could be {@quickref difficult terrain||3|terrain} or uneven ground.","Particularly lawful or well-planned cities have major thoroughfares that allow wagons and merchants to reach marketplaces and other important areas in town. These need to be at least 25 feet wide to accommodate wagons moving in both directions, and they often have narrow sidewalks that allow pedestrians to avoid wagon traffic."],"source":"CRB"},{"type":"pf2-h3","page":516,"name":"Walls","entries":["Well-built structures have exterior walls of brick or stonemasonry. Smaller, lower-quality, or temporary structures might have wooden walls. Interior walls tend to be less sturdy; they could be made of wooden planks, or even simply of thick, opaque paper held in a wooden frame. An underground structure might have thick walls carved out of solid rock to prevent the weight of the ground above from collapsing the structure. Rules for climbing and breaking walls are in the sidebar on page 515."],"source":"CRB"},{"type":"pf2-h2","page":516,"name":"Underground","entries":["Underground environments consist of caves and natural underground areas. Artificial dungeons and ruins combine underground features with urban features like stairs and walls. Deep underground vaults have some of the same terrain features as mountains, such as chasms and cliffs.","The most common disasters underground are collapses.",{"type":"pf2-h3","page":516,"name":"Floors","entries":["Natural underground environments rarely have flat floors, instead featuring abrupt changes in elevation that result in {@quickref difficult terrain||3|terrain}, uneven ground, and inclines."],"source":"CRB"},{"type":"pf2-h3","page":516,"name":"Ledges","entries":["Ledges are narrow surfaces that overlook a lower area or provide the only means to move along the edge of a chasm. Moving across a narrow ledge requires using {@skill Acrobatics} to Balance."],"source":"CRB"},{"type":"pf2-h3","page":516,"name":"Rubble","entries":["Caverns can be covered in rubble, which is {@quickref difficult terrain||3|terrain}. Deep or pervasive rubble is also uneven ground."],"source":"CRB"},{"type":"pf2-h3","page":516,"name":"Stalagmites and Stalactites","entries":["Stalagmites are tapering columns that rise from the floor of a cave. Areas filled with stalagmites are {@quickref greater difficult terrain||3|terrain}, and especially large stalagmites have to be sidestepped or Climbed. Stalagmites can be sharp enough they can be used as hazardous terrain in some circumstances, as can stalactites (icicle-shaped formations that hang from the roof of a cave) if they're knocked loose from a ceiling or overhang."],"source":"CRB"},{"type":"pf2-h3","page":517,"name":"Walls","entries":["Natural cave walls are uneven, with nooks, crannies, and ledges. Since most caves are formed by water, cave walls are often damp, making them even more difficult to Climb."],"source":"CRB"},{"type":"pf2-brown-box","page":517,"name":"DUNGEONS","entries":["Dungeon environments, which include both ruins and contemporary buildings constructed in the wilderness, are a fairly common venue for adventures. As an environment, they combine urban features like doors and buildings (page 515) with features from an underground environment, and occasionally components from other environments. While underground dungeons are particularly common, you might also consider setting your adventure in a ruin reclaimed by the forest, with giant trees spreading their roots through the walls, or a ruin deep in a swamp, with bogs covering access to some of the ruin's hidden secrets."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":517,"name":"Climate","entries":["Weather is more than just set dressing to establish mood—it has mechanical effects you can combine with environmental components to create a more memorable encounter. Weather can impose circumstance penalties on certain checks, from –1 to –4 based on severity.",{"type":"pf2-h3","page":517,"name":"Fog","entries":["Fog imposes a circumstance penalty to visual {@skill Perception} checks, depending on the thickness; it causes creatures viewed through significant amounts of fog to be concealed; and it cuts off all visibility at half a mile or less—possibly much less. Conditions limiting visibility to about a mile are called mist, and those that do so to about 3 miles are called haze."],"source":"CRB"},{"type":"pf2-h3","page":517,"name":"Precipitation","entries":["Precipitation includes rain as well as colder snow, sleet, and hail. Wet precipitation douses flames, and frozen precipitation can create areas of snow or ice on the ground. Drizzle or light snowfall has little mechanical effect beyond limited visibility.",{"type":"pf2-h4","page":517,"name":"Visibility","entries":["Most forms of precipitation impose circumstance penalties on visual {@skill Perception} checks. Hail often is sparser but loud, instead penalizing auditory {@skill Perception} checks.","Especially heavy precipitation, such as a downpour of rain or heavy snow, might make creatures concealed if they're far away."],"source":"CRB"},{"type":"pf2-h4","page":517,"name":"Fatigue","entries":["Precipitation causes discomfort and fatigue. Anything heavier than drizzle or light snowfall reduces the time it takes for characters to become fatigued from overland travel to only 4 hours. Heavy precipitation can be dangerous in cold environments when characters go without protection. Soaked characters treat the temperature as one step colder (mild to severe, severe to extreme; see Temperature below)."],"source":"CRB"},{"type":"pf2-h4","page":517,"name":"Thunderstorms","entries":["High winds and heavy precipitation accompany many thunderstorms. There's also a very small chance that a character might be struck by lightning during a storm. A lightning strike usually deals moderate electricity damage, or major electricity damage in a severe thunderstorm."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":517,"name":"Temperature","entries":["Often, temperature doesn't impose enough of a mechanical effect to worry about beyond describing the clothing the characters need to wear to be comfortable.","Particularly hot and cold weather can make creatures fatigued more quickly during overland travel and can cause damage if harsh enough, as shown in Table 10–13 on page 518.","Appropriate cold-weather gear (such as the winter clothing) can negate the damage from severe cold or reduce the damage from extreme cold to that of particularly severe cold.",{"type":"statblock","tag":"table","name":"Temperature Effects","source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":517,"name":"Wind","entries":["Wind imposes a circumstance penalty on auditory {@skill Perception} checks depending on its strength. It also interferes with physical ranged attacks such as arrows, imposing a circumstance penalty to attack rolls involving such weapons, and potentially making attacks with them impossible in powerful windstorms. Wind snuffs out handheld flames; lanterns protect their flame from the wind, but particularly powerful winds can extinguish these as well.",{"type":"pf2-h4","page":517,"name":"Moving in Wind","entries":["Wind is difficult or {@quickref greater difficult terrain||3|terrain} when Flying.","Moving in wind of sufficient strength requires a Maneuver in Flight action, and fliers are blown away on a critical failure or if they don't succeed at a minimum of one such check each round.","Even on the ground, particularly strong winds might require a creature to succeed at an {@skill Athletics} check to move, knocking the creature back and prone on a critical failure. On such checks, Small creatures typically take a –1 circumstance penalty, and Tiny creatures typically take a –2 penalty."],"source":"CRB"}],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":518,"name":"Natural Disasters","entries":["Climate and environmental features can be a hindrance or long-term threat, but natural disasters represent acute danger, especially to those directly exposed to their fury.","The damage in the following sections uses the categories in {@table Environmental Damage||Table 10–11: Environmental Damage}.",{"type":"pf2-h3","page":518,"name":"Avalanches","entries":["Though the term avalanche specifically refers to a cascading flow of ice and snow down a mountain's slope, the same rules work for landslides, mudslides, and other similar disasters. Avalanches of wet snow usually travel up to 200 feet per round, though powdery snow can travel up to 10 times faster. Rockslides and mudslides are slower, sometimes even slow enough that a character might be able to outrun them.","An avalanche deals major or even massive bludgeoning damage to creatures and objects in its path. These victims are also buried under a significant mass. Creatures caught in an avalanche's path can attempt a Reflex save; if they succeed, they take only half the bludgeoning damage, and if they critically succeed, they also avoid being buried.",{"type":"pf2-h4","page":518,"name":"Burial","entries":["Buried creatures take minor bludgeoning damage each minute, and they potentially take minor cold damage if buried under an avalanche of snow. At the GM's discretion, creatures without a sufficient air pocket could also risk suffocation (page 478). A buried creature is restrained and usually can't free itself.","Allies or bystanders can attempt to dig out a buried creature. Each creature digging clears roughly a 5-footby- 5-foot square every 4 minutes with a successful {@skill Athletics} check (or every 2 minutes on a critical success).","Using shovels or other proper tools halves the time."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":518,"name":"Blizzards","entries":["Blizzards combine cold weather, heavy snow, and strong winds. They don't pose a single direct threat as other disasters do; instead, the combination of these factors all at once poses a substantial impediment to characters."],"source":"CRB"},{"type":"pf2-h3","page":518,"name":"Collapses","entries":["Collapses and cave-ins occur when caverns or buildings fall, dumping tons of rock or other material on those caught below or inside them. Creatures under the collapse take major or massive bludgeoning damage and become buried, just as with an avalanche. Fortunately, collapses don't spread unless they weaken the overall integrity of the area and lead to further collapses."],"source":"CRB"},{"type":"pf2-h3","page":518,"name":"Earthquakes","entries":["Earthquakes often cause other natural disasters in the form of avalanches, collapses, floods, and tsunamis, but they also present unique threats such as fissures, soil liquefaction, and tremors.",{"type":"pf2-h4","page":518,"name":"Fissures","entries":["Fissures and other ground ruptures can destabilize structures, but more directly they lead to creatures taking bludgeoning damage from falling into a fissure."],"source":"CRB"},{"type":"pf2-h4","page":518,"name":"Soil Liquefaction","entries":["Liquefaction occurs when granular particles shake to the point where they temporarily lose their solid form and act as liquids. When this happens to soil, it can cause creatures and even whole buildings to sink into the ground. You can use the {@spell earthquake} spell for more specific rules, though that spell represents only one particular kind of localized quake."],"source":"CRB"},{"type":"pf2-h4","page":518,"name":"Tremors","entries":["Tremors knock creatures prone, causing them to fall or careen into other objects, which can deal bludgeoning damage appropriate to the severity of the quake."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":518,"name":"Floods","entries":["Though more gradual floods can damage structures and drown creatures, flash floods are similar to avalanches, except with a liquid mass instead of a solid one. Instead of burying creatures, a flash flood carries creatures and even massive objects away, buffeting the creatures and potentially drowning them. The drowning rules appear on page 478.",{"type":"statblock","tag":"table","name":"Temperature Effects","source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":519,"name":"Sandstorms","entries":["Mild sandstorms and dust storms don't present much more danger than a windy rainstorm, but they can cause damage to a creature's lungs and spread diseases across long distances. Heavy sandstorms deal minor slashing damage each round to those exposed to the sand, force creatures to hold their breath to avoid suffocation, or both."],"source":"CRB"},{"type":"pf2-h3","page":519,"name":"Tornadoes","entries":["In a tornado's path, wind conditions impose severe circumstance penalties, but creatures that would normally be blown away are instead picked up in the tornado's funnel, where they take massive bludgeoning damage from flying debris as they rise through the cone until they are eventually expelled (taking bludgeoning damage from falling).","Tornadoes usually travel around 300 feet per round (roughly 30 miles per hour). They normally travel a few miles before dissipating. Some tornadoes are stationary or travel much faster."],"source":"CRB"},{"type":"pf2-h3","page":519,"name":"Tsunamis","entries":["Tsunamis present many of the same dangers as flash floods but are much larger and more destructive. Tsunami waves can reach 100 feet or more in height, wrecking buildings and creatures alike with massive bludgeoning damage from both the wave itself and debris pulled up along its path of destruction."],"source":"CRB"},{"type":"pf2-h3","page":519,"name":"Volcanic Eruptions","entries":["Volcanic eruptions can contain any combination of ash, lava bombs, lava flows, pyroclastic flows, and vents.",{"type":"pf2-h4","page":519,"name":"Ash","entries":["Ash from volcanic eruptions is hot enough to cause minor fire damage each minute. It limits visibility like a thick fog and can make air unbreathable, requiring characters to hold their breath or suffocate (page 478).","Ash clouds generate ash lightning strikes, which typically deal moderate electricity damage but are very unlikely to hit an individual creature. Ash buildup on the ground creates areas of uneven ground, {@quickref difficult terrain||3|terrain}, or {@quickref greater difficult terrain||3|terrain}, and ash in the atmosphere can block the sun for weeks or even months, leading to colder temperatures and longer winters."],"source":"CRB"},{"type":"pf2-h4","page":519,"name":"Lava Bombs","entries":["Pressure can launch lava into the air that falls as lava bombs: masses of lava that solidify as they fly and shatter on impact, dealing at least moderate bludgeoning damage and moderate fire damage."],"source":"CRB"},{"type":"pf2-h4","page":519,"name":"Lava Flows","entries":["Lava flows are an iconic volcanic threat; they usually move between 5 and 60 feet per round over normal ground, so characters can often outrun them. However, flows can move up to 300 feet per round in a steep volcanic tube or channel. Lava emanates heat that deals minor fire damage even before it comes into contact with creatures, and immersion in lava deals massive fire damage each round."],"source":"CRB"},{"type":"pf2-h4","page":519,"name":"Pyroclastic Flows","entries":["Mixes of hot gases and rock debris, pyroclastic flows spread much faster than lava, sometimes more than 4,000 feet per round. While cooler than the hottest lava, pyroclastic flows are capable of overwhelming entire settlements. They work like avalanches but deal half of their damage as fire damage."],"source":"CRB"},{"type":"pf2-h4","page":519,"name":"Vents","entries":["Steam vents shoot from the ground, dealing moderate fire damage or more in a wide column. Acidic and poisonous gases released from beneath the surface can create wide areas of hazardous terrain that deals at least minor acid or poison damage."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":519,"name":"Wildfires","entries":["Wildfires travel mainly along a front moving in a single direction. In a forest, the front can advance up to 70 feet per round (7 miles per hour). They can move up to twice as fast across plains due to a lack of shade and the relatively low humidity. Embers from the fire, carried by winds and rising hot air, can scatter, forming spot fires as far as 10 miles away from the main wildfire. Wildfires present three main threats: flames, heat, and smoke.",{"type":"pf2-h4","page":519,"name":"Flames","entries":["Flames are hazardous terrain, usually dealing moderate damage and potentially setting a character on fire, dealing moderate persistent fire damage. The flames from a small fire are often less dangerous than the advancing heat from the front of a large fire."],"source":"CRB"},{"type":"pf2-h4","page":519,"name":"Heat","entries":["Wildfires increase the temperature in advance of the front, reaching nearly 1,500° F at the fire's arrival, as hot as some lava. This begins as minor fire damage every round at a reasonable distance from the front and increases to massive fire damage for someone within the wildfire."],"source":"CRB"},{"type":"pf2-h4","page":519,"name":"Smoke","entries":["Wind can carry smoke far in front of the wildfire itself. Smoke imposes a circumstance penalty to visual {@skill Perception} checks, depending on the thickness. It causes creatures viewed through significant amounts of smoke to be concealed, and it cuts off all visibility at half a mile or less. Near or within the wildfire, the combination of smoke and heated air require characters to hold their breath or suffocate (page 478)."],"source":"CRB"}],"source":"CRB"}],"source":"CRB"}],"data":{"quickref":5},"source":"CRB"},{"type":"section","page":520,"name":"Hazards","entries":[{"type":"pf2-h1-flavor","page":520,"entries":["{@i Dungeons are rife with devious traps meant to protect the treasures within. These range from mechanical devices that shoot darts or drop heavy blocks to magic runes that explode into bursts of flame. In addition to traps, adventurers may stumble into other types of hazards, including naturally occurring environmental hazards, mysterious hauntings, and more.}"],"source":"CRB"},{"type":"pf2-h2","page":520,"name":"Detecting a Hazard","entries":["Every hazard has a trigger of some kind that sets its dangers in motion. For traps, this could be a mechanism like a trip wire or a pressure plate, while for an environmental hazard or haunt, the trigger may simply be proximity. When characters approach a hazard, they have a chance of finding the trigger area or mechanism before triggering the hazard. They automatically receive a check to detect hazards unless the hazards require a minimum proficiency rank to do so.","During exploration, determine whether the party detects a hazard when the PCs first enter the general area in which it appears. If the hazard doesn't list a minimum proficiency rank, roll a secret Perception check against the hazard's {@skill Stealth} DC for each PC. For hazards with a minimum proficiency rank, roll only if someone is actively searching (using the Search activity while exploring or the {@action Seek} action in an encounter), and only if they have the listed proficiency rank or higher. Anyone who succeeds becomes aware of the hazard, and you can describe what they notice.","Magical hazards that don't have a minimum proficiency rank can be found using {@spell detect magic}, but this spell doesn't provide enough information to understand or disable the hazard—it only reveals the hazard's presence.","Determining a magical hazard's properties thoroughly enough to disable it requires either the use of more powerful magic or a successful skill check, likely using {@action Identify Magic} or {@action Recall Knowledge}. Magical hazards with a minimum proficiency rank cannot be found with {@spell detect magic} at all."],"source":"CRB"},{"type":"pf2-h2","page":520,"name":"Triggering a Hazard","entries":["If the group fails to detect a hazard and the hazard's trigger is a standard part of traveling (such as stepping on a floor plate or moving through a magical sensor while walking), the hazard's reaction occurs. Hazards that would be triggered only when someone directly manipulates the environment—by opening a door, for example—use their reactions only if a PC explicitly takes that action.",{"type":"pf2-h3","page":520,"name":"Reaction or Free Action","entries":["Most hazards have reactions that occur when they're triggered. For simple hazards, the reaction is the entirety of the hazard's effect. For complex hazards, the reaction may also cause the hazard to roll initiative, either starting a combat encounter or joining one already in progress, and the hazard continues to pose a threat over multiple rounds. Some hazards have a triggered free action instead of a reaction; for instance, quicksand can suck down multiple creatures per round."],"source":"CRB"},{"type":"pf2-h3","page":520,"name":"Routine","entries":["A complex hazard usually follows a set of preprogrammed actions called a routine. Once triggered, the hazard first performs its initial reaction; then, if the PCs are not yet in encounter mode, they should roll initiative. (If they're already in encounter mode, their initiative remains the same.) The hazard might tell you to roll initiative for it—in this case, the hazard rolls initiative using its {@skill Stealth} modifier.","After this happens, the hazard follows its routine each round on its initiative. The number of actions a hazard can take each round, as well as what they can be used for, depend on the hazard."],"source":"CRB"},{"type":"pf2-brown-box","page":520,"name":"MONSTERS AND HAZARDS","entries":["The statistics for NPCs and monsters usually don't list their proficiency ranks. Most of the time, they don't need to deal with detecting or disabling hazards the way PCs do, so you don't need this information. However, if a PC resets a trap in a monster's path or plans to lure a monster into a hazard, you can improvise this information.","For Perception, a monster is usually an expert at 3rd or 4th level, a master at 8th or 9th level, and legendary at 16th or 17th level. If the monster has {@skill Thievery} listed in its skills, it has the highest proficiency possible for its level (trained at 1st, expert at 3rd, master at 7th, and legendary at 15th); otherwise, it's untrained. Of course, an individual monster might deviate from these guidelines, especially if it's mindless or not very perceptive."],"source":"CRB"},{"type":"pf2-h3","page":520,"name":"Resetting a Hazard","entries":["Some hazards can be reset, allowing them to be triggered again. This can occur automatically, as for quicksand, whose surface settles after 24 hours, or manually, like a hidden pit, whose trapdoor must be closed for the pit to become hidden again."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":521,"name":"Disabling a Hazard","entries":["The most versatile method for deactivating traps is the Disable a Device action of the {@skill Thievery} skill, though most mechanical traps can also simply be smashed, and magical traps can usually be counteracted. Environmental hazards often can be overcome with {@skill Nature} or {@skill Survival}, and haunts can often be overcome with {@skill Occultism} or {@skill Religion}. The specific skill and DC required to disable a hazard are listed in the hazard's stat block. Like using Disable a Device, using these skills to disable a trap is a 2-action activity with the same degrees of success, though the activity might have different traits determined by the GM. As with detecting a hazard, disabling a hazard might require a character to have a certain proficiency rank in the listed skill.","A character must first detect a hazard (or have it pointed out to them) to try to deactivate it. They can attempt to deactivate a hazard whether or not it has already been triggered, though some hazards no longer pose a danger once their reactions have occurred, especially if there is no way for them to be reset.","For most hazards, a successful check for the listed skill against the DC in the stat block disables the hazard without triggering it. Any other means of deactivating the hazard are included in the hazard's stat block, as are any additional steps required to properly deactivate it.","A critical failure on any roll to disable a hazard triggers it, including a critical failure on a roll to counteract a magic hazard.","Some hazards require multiple successful checks to deactivate, typically because they have a particularly complicated component or have several discrete portions. For hazards with a complex component, a critical success on a check to disable the hazard counts as two successes on a single component.",{"type":"pf2-h3","page":521,"name":"Damaging a Hazard","entries":["Rather than trying to carefully disable a hazard, a character might just smash it. Damaging a mechanical trap or another physical hazard works like damaging objects: the hazard reduces the damage it takes by its Hardness. In most cases, hitting the hazard also triggers it, as explained in Attacking a Hazard below. If a hazard's Hit Points are reduced to its Broken Threshold (BT) or lower, the hazard becomes broken and can't be activated, though it can still be repaired. If it's reduced to 0 HP, it's destroyed and can't be repaired. (See page 272 in Chapter 6 for more information on damaging objects.)","Hazards' AC, applicable saving throw modifiers, Hardness, HP, and BT are listed in their stat blocks. A hazard that doesn't list one of these statistics can't be affected by anything targeting that statistic. For example, a hazard that has HP but no BT can't be broken, but can still be destroyed. Hazards are immune to anything an object is immune to unless specifically noted otherwise, and they can't be targeted by anything that can't target objects. Some hazards may have additional immunities, as well as resistances or weaknesses.",{"type":"pf2-h4","page":521,"name":"Attacking a Hazard","entries":["If someone hits a hazard—especially if it's a mechanical trap—they usually trigger it, though you might determine otherwise in some cases. An attack that breaks the hazard might prevent it from triggering, depending on the circumstances. If the hazard has multiple parts, breaking one part might still trigger the trap. For example, if a trap has a trip wire in one location and launches an attack from another location, severing the trip wire could still trigger the attack. Destroying a trap in one blow almost never triggers it. These rules also apply to most damaging spells or other effects in addition to attacks."],"source":"CRB"},{"type":"pf2-h4","page":521,"name":"Repairing a Hazard","entries":["You might allow a character to repair a damaged hazard to restore its functionality. You determine the specifics of this, since it can vary by trap. The Repair action might be insufficient if fixing the trap requires gathering scattered components or the like. If the item has a Reset entry, the character needs to do whatever is listed there, in addition to repairing the damage."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":521,"name":"Counteracting a Magical Hazard","entries":["Some magical hazards can be counteracted using {@spell dispel magic} and the counteracting rules found on page 458. These hazards' spell levels and counteract DCs are listed in their stat block. Counteracting a hazard otherwise works like using a skill check to disable the hazard."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":521,"name":"Hazard Experience","entries":["Characters gain Experience Points for overcoming a hazard, whether they disable it, avoid it, or simply endure its attacks. If they trigger the same hazard later on, they don't gain XP for the hazard again. The XP values for hazards of different levels also appear on page 508, but are repeated here for convenience. The XP for a complex hazard is equal to the XP for a monster of the same level, and the XP for a simple hazard is one-fifth of that. Hazards of a lower level than the party's level –4 are trivial and award no XP.",{"type":"statblock","tag":"table","name":"Hazard XP","source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":522,"name":"Hazard Format","entries":["Hazards are presented in a stat block format similar to those used for monsters. A few notes regarding the format follow the sample stat block.",{"type":"data","tag":"generic","data":{"source":"CRB","page":522,"name":"Hazard Name","category":"Hazard","level":" [Level]","traits":["traits"],"sections":[[[{"name":"Stealth","entry":"This entry lists the {@skill Stealth} modifier for a complex\nhazard's initiative or the {@skill Stealth} DC to detect a simple\nhazard, followed by the minimum proficiency rank to detect\nthe hazard (if any) in parentheses. If {@spell detect magic} can be\nused to detect the hazard, this information is located here\nas well."}],[{"name":"Description","entry":"This explains what the hazard looks like and might\ninclude special rules."}]],[[{"name":"Disable","entry":"The DC of any skill checks required to disable the\nhazard are here; if the hazard can be counteracted, its spell\nlevel and counteract DC are listed in parentheses."}],[{"name":"AC","entry":"the hazard's AC"},{"name":"Saving Throws","entry":"the hazard's saves. Usually\nonly haunts are subject to Will saves."}],[{"name":"Hardness","entry":"the hazard's Hardness"},{"name":"HP","entry":"the hazard's Hit Points,\nwith its Broken Threshold in parentheses"},{"name":"Immunities","entry":"the\nhazard's immunities"},{"name":"Weaknesses","entry":"the hazard's weaknesses,\nif any"},{"name":"Resistances","entry":"the hazard's resistances, if any"}],[{"name":"Action Type","entry":"{@as r} or {@as f} This is the reaction or free action the\nhazard uses"},{"name":"Trigger","entry":"The trigger that sets off the hazard\nappears here"},{"name":"Effect","entry":"For a simple hazard, this effect is often\nall the hazard does. For a complex hazard, this might also\ncause the hazard to roll initiative.\nRoutine This section describes what a"}],[{"name":"Routine","entry":"This section describes what a complex hazard does on\neach of its turns during an encounter; the number in parentheses\nafter the word \"Routine\" indicates how many actions the hazard\ncan use each turn. Simple hazards don't have this entry."}],[{"name":"Action","entry":"Any action the hazard can use appears here. Typically,\nthis is a melee or ranged attack."}]],[[{"name":"Reset","entry":"If the hazard can be reset, that information is here."}]]]}},{"type":"pf2-h3","page":522,"name":"Level","entries":["The hazard's level indicates what level of party it's a good challenge for. If the hazard involves a toxin, curse, or other non-spell feature, that feature's level is the hazard's level."],"source":"CRB"},{"type":"pf2-h3","page":522,"name":"Traits","entries":["The most notable hazard traits are trap (constructed to harm intruders), environmental (natural hazards), and haunt (spectral phenomena). Traps have a trait to indicate whether they're magical or mechanical. Hazards that have initiative and a routine have the complex trait."],"source":"CRB"},{"type":"pf2-h3","page":522,"name":"Stealth or Stealth DC","entries":["Complex hazards list their {@skill Stealth} modifier, which they use for initiative, instead of their {@skill Stealth} DC. If you need the DC, it's equal to this modifier + 10."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":526,"name":"Hazards","entries":["{@note To view all Hazards, please view the {@filter Hazards page.|hazards||source=CRB}}",{"type":"pf2-brown-box","page":528,"name":"UPGRADED SUMMONING RUNES","entries":["You can make a summoning rune of nearly any level. It summons a creature of a level equal to the trap's level.","Use {@table DCs by Level||Table 10–5: DCs by Level} to determine the {@skill Thievery} DC and spell DC, using the trap's level and applying a {@table DC Adjustments||hard adjustment} (+2). The {@skill Stealth} modifier for the trap is equal to this number –10. Stronger summoning runes usually require expert proficiency or better in {@skill Perception} to find, and they might require a higher proficiency rank in {@skill Thievery} to disable."],"source":"CRB"}],"source":"CRB"}],"data":{"quickref":5},"source":"CRB"},{"type":"section","page":483,"name":"Planning a Campaign","entries":["A Pathfinder game is typically structured as a campaign—a serialized story that focuses on a single party of characters.","A campaign is subdivided into multiple adventures, smaller stories that involve exploration and interaction with nonplayer characters. A single adventure represents a complete story that might be connected to the larger arc of a campaign. Playing an adventure spans one or more game sessions—gatherings where the group plays a part of the adventure over the course of several hours.","A campaign provides the overall structure for your Pathfinder game. As you prepare for your campaign, you'll establish its scope and themes, which you'll then reinforce in the adventures and scenes that take place within it.",{"type":"pf2-brown-box","page":483,"name":"COLLABORATION DURING PLAY","entries":["As Game Master, you have the final say on how the world and rules function, and how nonplayer characters act. This rule's purpose is to make the game run smoothly, with one guiding hand ensuring consistency. It's not intended to make one player into a dictator over the rest of the group. Collaboration is vital to roleplaying games!","How you implement collaboration in a game depends on what your players are interested in. In some groups, players enjoy adding details to the world and to nonplayer characters. In others, players want to feel like the world is outside their control, and the only decisions they get to make are those made by their own characters. Both are fun and acceptable ways to play.","You are encouraged to collect input from your players before you start, asking what storytelling genres they'd like to emphasize, which areas of the world they want to play in, the types of enemies they'd like to face, or which published adventure they want to play. A good campaign includes some back-and-forth at the beginning as the players figure out what characters they want to play and you figure out what sort of adventure to run. The results can range from building an adventure entirely to fit the characters to choosing a specific published adventure, having the players make their characters, and then just adapting the beginning of that adventure so that all the player characters have a reason to be involved.","As you play, opportunities to collaborate will occur again and again. When players throw out suggestions or come up with specific theories about the events of the campaign, they're telling you what they'd like to see in the game. Try to find ways to incorporate their suggestions, but with enough of a twist that each still includes something unexpected."],"source":"CRB"},{"type":"pf2-h3","page":483,"name":"Campaign Length","entries":["The length of a campaign can range from a few sessions to many years. Two main factors determine campaign length: how much time you need to complete the story, and how much time players want to devote to the game.","A single session, or a \"one-shot,\" is great if your group is trying out Pathfinder or wants to play a specific short adventure. This requires a smaller time commitment but requires the GM to present the events of the game in a way that is immediately engaging, since there's less opportunity for the players to become invested in the story or setting.","If you want to play through a longer campaign, you'll need to add some story elements that speak directly to the characters in your game rather than just to the events of the adventure. In other words, the characters should have individual goals in addition to the group's overall goals.","You can estimate how long a campaign will take by looking at the amount of time you actually have to play, or the number of character levels you intend the characters to advance. It typically takes three to four sessions for a group to level up. Since you'll probably cancel sessions on occasion, playing once a week for a year results in roughly a 14-level campaign, playing every 2 weeks for a year gives you an 8-level campaign, and playing monthly allows for a 5-level campaign. If you play only once a month, you might consider holding longer sessions and using fast advancement (page 509).","It's entirely okay to have a campaign with an indefinite length. Many groups play through one adventure and then decide to take on another. If you run an indefinite campaign, however, avoid ongoing plots that you can't satisfactorily end if the campaign comes to a close after the next adventure. If you introduce an overwhelmingly powerful villain who's crucial to the story but can't be stopped until the player characters are 15th level, ending the campaign at 8th level will feel anticlimactic.","It pays to be conservative when estimating your campaign length and scope. It's always tempting to run a 20-level epic campaign with complex, interwoven plots, but such games can fall apart long before the end if your group can play only once a month and the players have other responsibilities.",{"type":"pf2-h4","name":"Expected Duration","entries":["Not every campaign ends at the same point. Some campaigns go all the way to 20th level, ending after the player characters attain the height of power and confront the greatest threats any mortal could face. Others end at a lower level, after the group takes down a major villain or solves a crucial problem. And still other campaigns end when players become unable to attend or decide its a good time to stop playing.","You should have an end point in mind when you start a campaign. Still, you have to be flexible, since you're telling the story alongside other players, and your initial expectations for the campaign may be proven incorrect. When you think you're heading toward a satisfying conclusion, it's useful to check in with the other players. You might say, \"I think we have about two sessions left. Does that work for everyone? Is there any unfinished business you want to take care of?\" This lets you gauge whether your assumptions match up with the rest of the group—and make any necessary adjustments."]}],"source":"CRB"},{"type":"pf2-h3","page":484,"name":"Themes","entries":["The themes you choose for your campaign are what distinguish it from other campaigns. They include the major dramatic questions of your story and the repeated use of certain environments or creatures, and they can also include embracing a genre beyond traditional high fantasy. The themes you choose for your campaign also suggest storyline elements you might use.","A storyline's themes usually relate to the backstories, motivations, and flaws of the player characters and villains. For example, if you've chosen revenge as one of the themes of your game, you might introduce a villain whose quest for revenge tears his life apart and causes tragic harm to those around him. If one of the player characters is a chaotic good believer in liberty and freedom, you might engage that character by pitting the group against slavers. Or, you might choose a theme of love, leading to nonplayer characters involved in doomed romances, seeking to regain lovers they have lost, or courting the player characters.","Using similar locations and related creatures helps you form connections between disparate adventures. The players feel like their characters are becoming experts negotiating with giants, navigating seaways, battling devils, exploring the planes, or dealing with whatever the recurring elements are. For example, you might have the players explore a frozen tundra early on, then later travel to an icy plane filled with more difficult challenges that can be overcome using knowledge they've previously developed. Likewise, hobgoblin soldiers may be tough enemies for your group at low levels, but as the PCs attain higher levels and the hobgoblins become mere minions of another creature, the players feel a sense of progression.","Pathfinder is a fantasy adventure game, but you can shift your campaign to include elements of other fictional genres. You might want to infuse your game a with a sense of horror, reduce the amount of magic and use slow advancement (page 509) to make it a tale of sword and sorcery, or turn magic into technology for a steampunk setting."],"source":"CRB"},{"type":"pf2-h3","page":485,"name":"A Welcoming Environment","entries":["The role of Game Master comes with the responsibility of ensuring you and the rest of the players have a rewarding, fun time during the game. Games can deal with difficult subjects and have stressful moments, but fundamentally Pathfinder is a leisure activity. It can remain so only if the players follow the social contract and respect one another.","Players with physical or mental disabilities might find themselves more challenged than abled players. Work with your players to ensure they have the resources and support they need. Additionally, be on the lookout for behavior that's inappropriate, whether intentional or inadvertent, and pay careful attention to players' body language during the game. If you notice a player becoming uncomfortable, you are empowered to pause the game, take it in a new direction, privately check in with your players during or after the session, or take any other action you think is appropriate.","If a player tells you they're uncomfortable with something in the game, whether it's content you've presented as the GM or another player's or PC's actions, listen carefully to that player and take steps to ensure they can once again have fun during your game. If you're preparing prewritten material and you find a character or a situation inappropriate, you are fully empowered to change any details as you see fit. You also have the authority (and responsibility) to ask players to change their behavior—or even leave the table—if what they're doing is unacceptable or makes others feel uncomfortable. It's never appropriate to make the person who is uncomfortable responsible for resolving a problem. It's okay if mistakes happen. What's important is how you respond and move forward.","Gaming is for everyone. Never let those acting in bad faith undermine your game or exclude other players. Your efforts are part of the long-term process of making games and game culture welcoming to all. Working together, we can build a community where players of all identities and experiences feel safe.",{"type":"pf2-brown-box","page":485,"name":"TOOLS FOR RESPONSIBLE PLAY","entries":["Consent and comfort are important topics for roleplaying games, and many designers have created techniques to help facilitate responsible play. Some methods you can use are lines and veils, developed by Ron Edwards, and the X-Card, developed by John Stavropoulos.","Lines and Veils The terms \"line\" and \"veil\" can give your table a common vocabulary for the concepts described in this section. A line is a hard limit to the actions players might take, such as \"We're drawing a line at torture.\" The group agrees not to cross a line and omits that content from the game.","A veil indicates something that shouldn't be described in detail. The scene fades to black for a veil, or the group moves on to discuss a different topic, though whatever the veil is drawn across still happens. For example, you might say, \"We'll draw a veil across the scene as those characters head into the bedroom.\" You might come up with some lines and veils in advance, but then find more as play continues.","The X-Card Draw an \"X\" on a card, and you've got an X-Card. Place it on the table at the start of the session and describe its use to the players: any player can silently reject content they find upsetting by tapping the X-Card; whoever's speaking then rewinds a bit and continues on, excising the objectionable content. As with setting the basic guidelines for your campaign, there are no questions asked, no judgment, and no argument when someone invokes the X-Card. You can, however, ask for clarification if you need it, such as \"How far back should I rewind this?\" Some groups instead make an X with their hands, say \"Let's X that out,\" or use some other method. Either way, follow up with the player privately, after the game, to see if the guidelines need to be revised.","You can find more details at {@b {@link tinyurl.com/x-card-rpg|https://tinyurl.com/x-card-rpg}}."],"source":"CRB"},{"type":"pf2-h4","page":486,"name":"Objectionable Content","entries":["Before a campaign begins, check in with your players—as a group or individually—to find out what types of content they want to allow in the game, and which topics they would prefer to avoid. Because the story unfolds in real time, it's essential that you discuss these topics before the game starts. These discussions are intended to keep players safe, and so it's not okay to ask why someone wants a type of content banned. If someone wants it banned, ban it—no questions asked.","It can help to start with a rating, like those used for movies or video games. Pathfinder games often include violence and cruelty. What's the limit on how graphically these concepts should be described? Can players swear at the table? Does anyone have phobias they don't want to appear in the game, such as spiders or body horror?","After you figure out the limits on objectionable content, you have four important tasks:",{"type":"list","items":["Clearly convey these limits to the other players.","Ensure you and the players abide by the boundaries.","Act immediately if someone becomes uncomfortable about content during a session, even if it wasn't already banned in a prior discussion. Once the issue is resolved, move on.","Resolve the issue if any player deliberately pushes these boundaries, tries to find loopholes, tries to renegotiate the limits, or belittles people for having a different tolerance to objectionable content."]}],"source":"CRB"},{"type":"pf2-h4","page":486,"name":"The Pathfinder Baseline","entries":["You might find that your players don't have much to say on the topic of objectionable content, and just assume that general societal mores will keep the most uncomfortable topics out of the game. That's not always enough, as that approach relies on shared assumptions that aren't always accurate. The following is a set of basic assumptions that works for many groups, which you can modify to fit your preferences and those of the other players.",{"type":"list","items":["Bloodshed, injuries, and even dismemberment might be described. However, excessive descriptions of gore and cruelty should be avoided.","Romantic and sexual relationships can happen in the game, but players should avoid being overly suggestive. Sex always happens \"off-screen.\" Because attempts at initiating a relationship between player characters can be uncomfortably similar to one player hitting on another, this should generally be avoided (and is entirely inappropriate when playing with strangers).","Avoid excessively gross or scatological descriptions."]},"The following acts should never be performed by player characters:",{"type":"list","items":["Torture","Rape, nonconsensual sexual contact, or sexual threats","Harm to children, including sexual abuse","Owning slaves or profiting from the slave trade","Reprehensible uses of mind-control magic"]},"Villains might engage in such acts, but they won't happen \"on-screen\" or won't be described in detail. Many groups choose to not have villains engage in these activities at all, keeping these reprehensible acts out of mind entirely."],"source":"CRB"},{"type":"pf2-h4","name":"Social Splash Damage","page":486,"entries":["As important as it is to take care of yourself and the other players in your game, be mindful of your group's impact on the other people around you. If you're playing in a space that's not your own, respect your hosts. If you're playing in public, consider the comfort of the people around you, not just what your group is comfortable with. It's easy to get caught up in a game, as we get sucked into the microcosm of an imagined world, but don't ignore the real world around you. Be aware when you're making too much noise, leaving a mess, alarming passersby with graphic descriptions of violence, or even just giving the cold shoulder to curious spectators witnessing RPG play for the first time."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":486,"name":"Character Creation","entries":["At the outset of a new campaign, the players will create new player characters. Part of that process involves you introducing what the campaign will be about and what types of characters are most appropriate. Work with the players to determine which rule options are available. The safest options are the common choices from the {@book Pathfinder Core Rulebook|CRB}. If players want to use common options from other books or uncommon or rare options, through play, review those options to see if any of them conflict with the style of campaign you have in mind or might present strange surprises down the road. It's usually best to allow new options, but there's no obligation to do so. Be as open as you're comfortable with."],"source":"CRB"}],"data":{"quickref":5},"source":"CRB"},{"type":"section","page":486,"name":"Preparing an Adventure","entries":["An adventure is a self-contained collection of story elements, characters, and settings that become the basis for the story you and the other players tell. Think of the adventure as an outline for your own story. You'll have major beats you want to include, some consistent characters, and themes you want to convey, but all sorts of things can change during the process of turning the outline into a completed story.","You might use a published adventure from Paizo or another company, or you might construct your own adventure as you prepare for your game sessions.",{"type":"pf2-h3","page":486,"name":"Published Adventures","entries":["Prewritten adventures include background information and nonplayer characters needed for the story, plus all the locations, maps, and monster groups necessary for both exploration and encounters. Prewritten adventures can speed up your preparation, since you can simply read the relevant sections of the adventure before a game, and you don't have to create everything from scratch. A published adventure already includes the expected amount of encounters and treasure, and you can find adventures built for different character levels to match your group. Reading a published adventure or running one as your first game can help you see how adventures are structured, which makes it easier to write one later if you choose.","Though a published adventure is prewritten, it's not set in stone. Changing the details of an adventure to suit your group isn't just acceptable, it's preferred! Use the backstories and predilections of the player characters to inform how you change the adventure. This can mean altering adversaries so they're linked to the player characters, changing the setting to a place some of the player characters are from, or excising particular scenes if you know they won't appeal to your players."],"source":"CRB"},{"type":"pf2-h3","page":487,"name":"Creating Adventures","entries":["Building your own adventure is much more challenging than using a published one, but it lets you express yourself, be even more creative, and tailor the game directly to the players and their characters. Later sections in this chapter include guidelines for building and running encounters, placing treasure, and setting appropriately difficult challenges, all to help you construct your own adventures.","Adventure plotting can start at many different points. You might begin with a particular antagonist, then construct an adventure that fits that villain's theme and leads the group to them. Alternatively, you could start with an interesting location for exploration, then populate it with adversaries and challenges appropriate to the setting.",{"type":"pf2-h4","page":487,"name":"Locations","entries":["Memorable settings that include mysterious and fantastical locations for players to visit can elicit the players' curiosity.","Exploring each location should be a treat in itself, not just a chore the players must complete to get from one fight to the next. As you create a locale, picture it in your mind's eye and write down minor details you can include as you narrate the game. Describing decorations, natural landmarks, wildlife, peculiar smells, and even temperature changes make a place feel more real.","Beyond monsters and loot, your locations can include environment-based challenges, from environmental conditions like blizzards to puzzles, traps, or other hazards.","These challenges should suit your adventure's location: walls of brambles in a castle ruin overrun with vegetation, pools of acid in a cursed swamp, or magical traps in the tomb of a paranoid wizard. Rules for environments appear on page 512, and those for hazards start on page 520."],"source":"CRB"},{"type":"pf2-h4","page":487,"name":"Encounters","entries":["A robust set of encounters forms the backbone of your adventure. Encounters often feature combat with other creatures, but they can also include hazards, or you might create social encounters in which characters duel only with words. The rules for building encounters appropriate to your group's level begin below.","Some adventures have a clear and direct progression, with encounters occurring at specific times or in a specific order. Others, such as a dungeon filled with interconnected rooms the group can investigate in any order, are nonlinear, and the group can face encounters in any order—or even avoid them entirely. Most adventures are somewhere in between, with some keystone encounters you know the characters will need to contend with, but others that are optional."],"source":"CRB"},{"type":"pf2-h4","page":487,"name":"Treasure","entries":["Your adventure should give out an amount of treasure that's appropriate to the characters' level. The guidelines for assigning treasure are on page 508. You can dole out treasure in all kinds of ways. Treasure could be items carried by an adversary, rewards from a patron for completing a mission, or a classic pile of coins and items inside a wooden chest guarded by a monster. It's best to spread treasure throughout an adventure rather than stockpiled in a single hoard. This gives the players incremental rewards, letting their characters advance in frequent small steps rather than giant leaps separated by many hours of play."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-brown-box","page":488,"name":"USING RARITY AND ACCESS","entries":["The rarity system has two purposes: to convey how common or rare certain spells, creatures, or items are in the game world, and to give you an easy tool to control the complexity of your game. Uncommon and rare options aren't more powerful than other options of their level, but they introduce complications for certain types of stories, or are less common in the world. For instance, it might be more challenging to run a mystery adventure when a player can cast an uncommon spell such as {@spell detect evil}.","At the start of the campaign, communicate your preferred expectations on rarity to the players. Unless you decide otherwise, the players can choose from any common options they qualify for, plus any uncommon options granted by their character choices—primarily their ancestry and class. By default, a character who tries hard enough might eventually find an uncommon option, whereas a rare option is always a special reward.","Beyond that baseline, you can grant access as freely as you want; some GMs open up all uncommon and rare options universally. If you're not sure, just look over any uncommon or rare elements before you include them as rewards or otherwise allow a player to acquire them.",{"type":"pf2-title","name":"Rewards"},"You can use uncommon and rare rules elements to reward characters. These still have the same value and approximate power as any other treasure of the same Price, but they're just a bit more special because they hail from distant lands or have unusual or surprising abilities.","Items are the most likely candidates for uncommon or rare rewards, but an NPC might teach an uncommon or rare spell to a PC in gratitude or to help the party prepare for a certain adversary. You can also improvise extra benefits based around uncommon or rare items. For instance, if a PC gains a rare plant with occult uses, you might also decide that the PC should temporarily get more money if they use it while Earning Income using Herbalism Lore, because it enables them to produce novel poultices.",{"type":"pf2-title","name":"Different Locations"},"The rarities in this book assume you're playing in the Inner Sea region of Golarion, where most Pathfinder games are set. These rarities are also suitable for most western medieval fantasy games. However, you might want to alter the rarities for a campaign set in another location on Golarion (detailed in Chapter 8), to emphasize a non-human culture, or to play in a fantasy setting with different roots, like a wuxia game based on Chinese culture. These changes most often affect basic items. If you start your campaign in a dwarven stronghold, for example, you might make all the weapons with the dwarf trait common. You should feel free to adjust rarities to suit your campaign's theme, but if you do, you should share your changes with your group."],"source":"CRB"},{"type":"pf2-h3","page":488,"name":"Building Encounters","entries":["The most common type of encounter is a combat encounter, where the PCs face other creatures. Combat encounters are strictly governed by rules; the guidelines that follow will help you build combat encounters that pose appropriate challenges for your group. Building hazard encounters works the same way. Social encounters are more free-form, and are up to you as the GM to design.","To build a combat encounter, first decide how the encounter fits in the adventure as a whole. Then, estimate how much of a threat you want the encounter to pose, using one of five categories below.","{@b Trivial-threat} encounters are so easy that the characters have essentially no chance of losing; they shouldn't even need to spend significant resources unless they are particularly wasteful. These encounters work best as warm-ups, palate cleansers, or reminders of how awesome the characters are. A trivial-threat encounter can still be fun to play, so don't ignore them just because of the lack of threat.","{@b Low-threat} encounters present a veneer of difficulty and typically use some of the party's resources. However, it would be rare or the result of very poor tactics for the entire party to be seriously threatened.","{@b Moderate-threat} encounters are a serious challenge to the characters, though unlikely to overpower them completely. Characters usually need to use sound tactics and manage their resources wisely to come out of a moderate-threat encounter ready to continue on and face a harder challenge without resting.","{@b Severe-threat} encounters are the hardest encounters most groups of characters can consistently defeat. These encounters are most appropriate for important moments in your story, such as confronting a final boss. Bad luck, poor tactics, or a lack of resources due to prior encounters can easily turn a severe-threat encounter against the characters, and a wise group keeps the option to disengage open.","{@b Extreme-threat} encounters are so dangerous that they are likely to be an even match for the characters, particularly if the characters are low on resources. This makes them too challenging for most uses. An extremethreat encounter might be appropriate for a fully rested group of characters that can go all-out, for the climactic encounter at the end of an entire campaign, or for a group of veteran players using advanced tactics and teamwork.",{"type":"pf2-h4","page":488,"name":"XP Budget","entries":["Once you've selected a threat level, it's time to build the encounter. You have an XP budget based on the threat, and each creature costs some of that budget. Start with the monsters or NPCs that are most important to the encounter, then decide how you want to use the rest of your XP budget. Many encounters won't match the XP budget exactly, but they should come close. The XP budget is based on a group of four characters. If your group is larger or smaller, see Different Party Sizes below."],"source":"CRB"},{"type":"pf2-h4","page":488,"name":"Choosing Creatures","entries":["In all but the most unusual circumstances, you'll select creatures for your encounter that range from 4 levels lower than the PCs' level to 4 levels higher (see {@table Creature XP and Role||Table 10–2: Creature XP and Role}). Each creature has a part to play in your encounter, from a lowly lackey to a boss so mighty it could defeat the entire party single-handedly.","Each creature costs some of the XP from your XP budget for the encounter, based on its level compared to the levels of the characters in your party. For instance, if the PCs are 5th level, a 2nd-level creature is a \"party level –3\" creature, a lackey appropriate for a lowto- moderate-threat encounter, and it costs 15 XP in an encounter's XP budget. Party level is explained in detail on page 508."],"source":"CRB"},{"type":"pf2-h4","page":488,"name":"Different Party Sizes","entries":["For each additional character in the party beyond the fourth, increase your XP budget by the amount shown in the Character Adjustment value for your encounter in {@table Encounter Budget||Table 10–1: Encounter Budget}. If you have fewer than four characters, use the same process in reverse: for each missing character, remove that amount of XP from your XP budget. Note that if you adjust your XP budget to account for party size, the XP awards for the encounter don't change—you'll always award the amount of XP listed for a group of four characters.","It's best to use the XP increase from more characters to add more enemies or hazards, and the XP decrease from fewer characters to subtract enemies and hazards, rather than making one enemy tougher or weaker. Encounters are typically more satisfying if the number of enemy creatures is fairly close to the number of player characters."],"source":"CRB"},{"type":"statblock","tag":"table","source":"CRB","name":"Encounter Budget"},{"type":"statblock","tag":"table","source":"CRB","name":"Creature XP and Role"}],"data":{"quickrefIndex":true},"source":"CRB"}],"data":{"quickref":5},"source":"CRB"},{"type":"section","page":507,"name":"Rewards","entries":[{"type":"pf2-h1-flavor","page":507,"entries":["{@i In Pathfinder, player characters can receive three kinds of rewards for their heroic deeds: Hero Points, which they can use to get out of sticky situations; Experience Points, which they'll use to level up; and treasure, including powerful magic items.}"],"source":"CRB"},{"type":"pf2-h2","page":507,"name":"Hero Points","entries":["Unlike Experience Points and treasure, which stay with a character, Hero Points are granted and used on a per-session basis. At the start of a game session, you give out 1 Hero Point to each player character. You can also give out more Hero Points during the game, typically after a heroic moment or accomplishment (see below). As noted on page 467, a player can spend 1 Hero Point for a reroll, or they can spend all their Hero Points to recover when near death.","In a typical game, you'll hand out about 1 Hero Point during each hour of play after the first (for example, 3 extra points in a 4-hour session). If you want a more overthetop game, or if your group is up against incredible odds and showing immense bravery, you might give them out at a faster rate, like 1 every 30 minutes (6 over a 4-hour session). Try to ensure each PC has opportunities to earn Hero Points, and avoid granting all of the Hero Points to a single character.","Brave last stands, protecting innocents, and using a smart strategy or spell to save the day could all earn a character a Hero Point. Look for those moments when everybody at the table celebrates or sits back in awe of a character's accomplishments; that's your cue to issue that character a Hero Point.","The party could also gain Hero Points for their accomplishments throughout the game. For a moderate or major accomplishment, consider giving out a Hero Point as well. This point typically goes to a PC who was instrumental in attaining that accomplishment."],"source":"CRB"},{"type":"pf2-h2","page":507,"name":"Experience Points","entries":["As characters adventure, they earn Experience Points (XP).","These awards come from achieving goals, completing social encounters, exploring new places, fighting monsters, overcoming hazards, and other sorts of deeds. You have a great deal of control over when the characters gain XP, though the following guidelines are what you're expected to give out in a standard campaign.","Normally, when a player character reaches 1,000 XP or more, they level up, reduce their XP by 1,000, and start progressing toward the next level. Other means of advancement are described in the Advancement Speeds sidebar on page 509.",{"type":"pf2-h3","page":507,"name":"XP Awards","entries":["Experience Points are awarded for encounters, exploration, and progress in an adventure. When the PCs face direct opposition, such as a fight or a social conflict, the XP earned is based on the level of the challenge the party overcame. Characters can also gain XP from exploration, such as finding secret areas, locating a hideout, enduring a dangerous environment, or mapping an entire dungeon.","Any XP awarded goes to all members of the group. For instance, if the party wins a battle worth 100 XP, they each get 100 XP, even if the party's rogue was off in a vault stealing treasure during the battle. But if the rogue collected a splendid and famous gemstone, which you've decided was a moderate accomplishment worth 30 XP, each member of the party gets 30 XP, too.",{"type":"pf2-h3","page":507,"name":"Adversaries and Hazards","entries":["Encounters with adversaries and hazards grant a set amount of XP. When the group overcomes an encounter with creatures or hazards, each character gains XP equal to the total XP of the creatures and hazards in the encounter (this excludes XP adjustments for different party sizes; see Party Size on page 508 for details).","Trivial encounters don't normally grant any XP, but you might decide to award the same XP as for a minor or moderate accomplishment for a trivial encounter that was important to the story, or for an encounter that became trivial because of the order in which the PCs encountered it in a nonlinear adventure."],"source":"CRB"},{"type":"pf2-h3","page":507,"name":"Accomplishments","entries":["Characters' actions that move the story forward—like securing a major alliance, establishing an organization, or causing an NPC to have a change of heart—are considered accomplishments and should be rewarded with XP. Their significance determines the size of the XP award. Determine whether the achievement was a minor, moderate, or major accomplishment, and refer to {@table XP Awards||Table 10–8: XP Awards} to award an appropriate amount of XP. Minor accomplishments include all sorts of significant, memorable, or surprising moments in the game. A moderate accomplishment typically represents a goal that takes most of a session to complete, and a major accomplishment is usually the culmination of the characters' efforts across many sessions. Moderate and major accomplishments usually come after heroic effort, so that's an ideal time to also give a Hero Point to one or more of the characters involved.","As mentioned earlier, it's up to you how much XP to give out for accomplishments. As a general guideline, in a given game session, you'll typically give several minor awards, one or two moderate awards, and only one major award, if any."],"source":"CRB"},{"type":"statblock","tag":"table","name":"XP Awards","source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":508,"name":"Party Size","entries":["The rules for advancement assume a group of four PCs. The rules for encounters (page 489) describe how to accommodate groups of a different size, but the XP awards don't change—always award the amount of XP listed for a group of four characters. You usually won't need to make many adjustments for a differently sized group outside of encounters. Be careful of providing too many ways to get accomplishment XP when you have a large group, though, since they can pursue multiple accomplishments at once, which can lead to the PCs leveling up too fast."],"source":"CRB"},{"type":"pf2-h3","page":508,"name":"Group Parity and Party Level","entries":["It's recommended that you keep all the player characters at the same XP total. This makes it much easier to know what challenges are suitable for your players. Having characters at different levels can mean weaker characters die more easily and their players feel less effective, which in turn makes the game less fun for those players.","If you choose not to keep the whole group at the same character level, you'll need to select a party level to determine your XP budget for encounters. Choose the level you think best represents the party's ability as a whole. Use the highest level if only one or two characters are behind, or an average if everyone is at a different level. If only one character is two or more levels ahead, use a party level suitable for the lower-level characters, and adjust the encounters as if there were one additional PC for every 2 levels the higher-level character has beyond the rest of the party.","Party members who are behind the party level gain double the XP other characters do until they reach the party's level. When tracking individually, you'll need to decide whether party members get XP for missed sessions."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":508,"name":"Treasure","entries":["As the GM, it's your job to distribute treasure to the player characters. Treasure appears throughout an adventure, and the PCs obtain it by raiding treasure hoards, defeating foes who carry valuable items or currency, getting paid for successful quests, and any other way you can imagine.","This section provides guidelines for distributing treasure in a typical Pathfinder campaign, but you always have the freedom to assign extra treasure for a high-powered game, less treasure for a gritty survival horror adventure, or any amount in between.",{"type":"pf2-h3","page":508,"name":"Treasure by Level","entries":["Table 10–9: Party Treasure by Level on the next page shows how much treasure you should give out over the course of a level for a group of four PCs. The Total Value column gives an approximate total value of all the treasure, in case you want to spend it like a budget. The next several columns provide suggestions for breaking down that total into permanent items, which the PCs keep and use for a long time; consumables, which are destroyed after being used once; and currency, which includes coins, gems, and other valuables primarily spent to acquire items or services. The final column gives the amount of currency to add for each PC beyond four in the group; use this only if you have more than four characters in the game. (Different Party Sizes on page 510 provides more guidance on this.) For instance, between the time your PCs reach 3rd level and the time they reach 4th level, you should give them the treasure listed in the table for 3rd level, worth approximately 500 gp: two 4th-level permanent items, two 3rd-level permanent items, two 4th-level consumables, two 3rd-level consumables, two 2nd-level consumables, and 120 gp worth of currency.","When assigning 1st-level permanent items, your best options are armor, weapons, and other gear from Chapter 6 worth between 10 and 20 gp. The treasure listed in the row for 20th level represents a full level's worth of adventures, even though there is no way to reach 21st level.","Some creature entries in the {@Pf2eTools Pathfinder Bestiary|bestiary.html} list treasure that can be gained by defeating an individual creature; this counts toward the treasure for any given level.","Published adventures include a suitable amount of treasure throughout the adventure, though you should still monitor the party's capabilities as the PCs progress through the adventure to make sure they don't end up behind.",{"type":"pf2-h4","page":509,"name":"Currency","entries":["A party will find money and other treasure that isn't useful on its own but that can be sold or spent on other things. The gp values in the Party Currency column don't refer only to coins. Gems, art objects, crafting materials (including precious materials), jewelry, and even items of much lower level than the party's level can all be more interesting than a pile of gold.","If you include a lower-level permanent item as part of a currency reward, count only half the item's Price toward the gp amount, assuming the party will sell the item or use it as crafting material. But lower-level consumables might still be useful, particularly scrolls, and if you think your party will use them, count those items at their full Price."],"source":"CRB"},{"type":"pf2-brown-box","page":509,"name":"ADVANCEMENT SPEEDS","entries":["By varying the amount of XP it takes to gain a level, you can change how quickly characters gain power. The game rules assume a group playing with standard advancement.","Fast advancement works best when you know you won't be playing a very long campaign and want to accomplish as much as possible quickly; slow advancement works best for a gritty campaign where all progress is hard won.","You can alter XP from one adventure to the next to get a different feel. During a street-level murder mystery and travel through a haunted wilderness, you might use slow advancement. When the PCs reach the dungeon, you might switch to standard or fast advancement. The values below are just examples. You can use values even higher or lower.",{"type":"table","colStyles":["text-center","text-center"],"rows":[["Advancement Speed","XP to Level Up"],["Fast","800 XP"],["Standad","1,000 XP"],["Slow","1,200 XP"]]},{"type":"pf2-title","name":"Story-Based Leveling"},"If you don't want to deal with managing and handing out XP, or if you want to have progression based solely on events in the story, you can ignore the XP process entirely and instead simply decide when the characters level up.","Generally, the characters should gain a level every three to four game sessions, just after the most appropriate big event that happens during that time, such as defeating a significant villain or achieving a major goal."],"source":"CRB"},{"type":"pf2-h4","page":509,"name":"Other Types of Treasure","entries":["Not all treasure has to be items or currency. Crafters can use the {@skill Crafting} skill to turn raw materials directly into items instead of buying those items with coins. Knowledge can expand a character's abilities, and formulas make good treasure for item-crafting characters. A spellcaster might get access to new spells from an enemy's spellbook or an ancient scholar, while a monk might retrain techniques with rarer ones learned from a master on a remote mountaintop."],"source":"CRB"},{"type":"pf2-h4","page":509,"name":"Treasure and Rarity","entries":["Giving out uncommon and rare items and formulas can get players more interested in treasure. It's best to introduce uncommon items as a reward fairly regularly but rare items only occasionally. These rewards are especially compelling when the adventurers get the item by defeating or outsmarting an enemy who carries an item that fits their backstory or theme.","Uncommon and rare formulas make great treasure for a character who Crafts items. Note that if an uncommon or rare formula is broadly disseminated, it eventually becomes more common. This can take months or years, but the item might start showing up in shops all around the world."],"source":"CRB"},{"type":"statblock","tag":"table","name":"Party Treasure by Level","source":"CRB"},{"type":"pf2-h4","page":510,"name":"Different Item Levels","entries":["The levels listed for items on {@table Party Treasure by Level||Table 10–9: Party Treasure by Level} aren't set in stone. You can provide items of slightly higher or lower level as long as you take into account the value of the items you hand out. For instance, suppose you were considering giving a party of 11th-level PCs a {@item runestone} with a {@item fortification} rune (with a Price of 2,000 gp) as one of their 12th-level items, but you realize they've had trouble finding armor in their recent adventures, so you instead decide to give them a suit of 11th-level +2 resilient armor (1,400 gp) instead. Since the armor has a lower Price than the rune, you might also add a 9th-level {@item shadow} rune (650 gp) to make up the difference. The total isn't exactly the same, but that's all right.","However, if you wanted to place a 13th-level permanent item in a treasure hoard, you could remove two 11thlevel permanent items to make a roughly equivalent exchange. When you make an exchange upward like this, be cautious: not only might you introduce an item with effects that are disruptive at the party's current level of play, but you also might give an amazing item to one PC while other characters don't gain any new items at all!","If you're playing in a long-term campaign, you can spread out the treasure over time. A major milestone can give extra treasure at one level, followed by a tougher dungeon with fewer new items at the next level. Check back occasionally to see whether each PC's treasure is comparable to the amount they'd get if they created a new character at their current level, as described under Treasure for New Characters below. They should be a bit higher. but if there's a significant discrepancy, adjust the adventure's upcoming treasure rewards accordingly."],"source":"CRB"},{"type":"pf2-h4","page":510,"name":"Different Party Sizes","entries":["If a party has more than four characters, add the following for each additional character:",{"type":"list","items":["One permanent item of the party's level or 1 level higher","Two consumables, usually one of the party's level and one of 1 level higher","Currency equal to the value in the Currency per Additional PC column of Table 10–9"]},"If the party has fewer than four characters, you can subtract the same amount for each missing character, but since the game is inherently more challenging with a smaller group that can't cover all roles as efficiently, you might consider subtracting less treasure and allowing the extra gear help compensate for the smaller group size."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-brown-box","page":510,"name":"ADJUSTING TREASURE","entries":["The treasure you award to the party should be monitored and adjusted as you play. You might need to give out treasure you hadn't originally planned for, especially if the group bypasses part of an adventure. Keep an eye on the party's resources. If they're running out of consumables or money, or if they're having trouble in combat because their items aren't up to the task, you can make adjustments.","This is especially common in adventures that have little downtime or that take place far from civilization. If the group goes a long time without being able to purchase or Craft useful items, the PCs will be flush with coins and valuables but behind on useful equipment. In a situation like this, you can either place more useful treasure in the adventure or introduce NPCs who are willing to trade.",{"type":"pf2-title","name":"Megadungeons and Sandboxes"},"Some adventures have an expectation that the player characters explore where they want and find only what their skill, luck, and ingenuity afford. Two common examples of this type of adventure are the sprawling dungeon with multiple different sections and paths, often called a megadungeon, and free-form exploration, often called a sandbox and typically occurring in a wilderness.","If you want to build a free-form adventure like this where characters are likely to miss at least some of the treasure, increase the amount of treasure you place. Be aware, however, that a meticulous group can end up with more treasure than normal and will have advantages in later adventures.","For a simple guideline to these situations, increase the treasure as though there were one more PC in the party.","If the structure is especially loose, especially in sandbox adventures, you can increase this amount even further."],"source":"CRB"},{"type":"pf2-h3","page":510,"name":"Treasure for New Characters","entries":["When your new campaign starts at a higher level, a new player joins an existing group, or a current player's character dies and they need a new one, your campaign will have one or more PCs who don't start at 1st level. In these cases, refer to {@table Character Wealth||Table 10–10: Character Wealth} on the next page, which shows how many common permanent items of various levels the PC should have, in addition to currency. A single item on this table is always a baseline item. If the player wants armor or a weapon with property runes, they must buy the property runes separately, and for armor or a weapon made of a precious material, they must pay for the precious material separately as well.","These values are for a PC just starting out at the given level. If the PC is joining a party that has already made progress toward the next level, consider giving the new character an additional item of their current level. If your party has kept the treasure of dead or retired PCs and passed it on to new characters, you might need to give the new character less than the values on the table or reduce some of the treasure rewards of the next few adventures.",{"type":"pf2-h4","page":511,"name":"Item Selection","entries":["You should work with the new character's player to decide which items their character has. Allow the player to make suggestions, and if they know what items they want their character to have, respect their choices unless you believe those choices will have a negative impact on your game.","At your discretion, you can grant the player character uncommon or rare items that fit their backstory and concept, keeping in mind how many items of those rarities you have introduced into your game. The player can also spend currency on consumables or lower-level permanent items, keeping the rest as coinage. As usual, you determine which items the character can find for purchase.","A PC can voluntarily choose an item that has a lower level than any or all of the listed items, but they don't gain any more currency by doing so.","If you choose, you can allow the player to instead start with a lump sum of currency and buy whatever common items they want, with a maximum item level of 1 lower than the character's level. This has a lower total value than the normal allotment of permanent items and currency, since the player can select a higher ratio of high-level items."],"source":"CRB"},{"type":"statblock","tag":"table","name":"Character Wealth","source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":511,"name":"Buying and Selling Items","entries":["Characters can usually buy and sell items only during downtime. An item can typically be sold for only half its Price, though art objects, gems, and raw materials can be sold for their full Price (page 271)."],"source":"CRB"}],"source":"CRB"}],"data":{"quickref":5},"source":"CRB"},{"type":"section","page":493,"name":"Running Modes of Play","entries":[{"type":"pf2-h1-flavor","page":493,"entries":["{@i Pathfinder sessions are divided into three different modes of play: encounters, exploration, and downtime. Each mode represents different kinds of situations, with specific stakes and time scales, and characters can use different sorts of actions and reactions in each.}"],"source":"CRB"},"Encounters take place in real time or slower, and they involve direct engagement between players and enemies, potential allies, or each other. Combat and direct social interaction usually take place in encounter mode.","Exploration is the connective tissue of an adventure, and it is used whenever characters are exploring a place where there's danger or uncertainty, such as an unfamiliar city or a dungeon. In exploration mode, characters aren't in immediate peril, but they must still be on their toes. Exploration and encounters are collectively called adventuring.","When the party isn't adventuring, the characters are in downtime. This mode covers most of a normal person's life, such as mundane, day-to-day tasks and working toward long-term goals.",{"type":"pf2-h2","page":493,"name":"Encounters","entries":["Encounter mode is the most structured mode of play, and you'll mostly be following the rules presented in Chapter 9 to run this mode. Because you usually call for initiative during exploration before transitioning into an encounter, guidelines for initiative order appear on page 498 in the discussion of exploration mode. Rules for building combat encounters appear on page 488.","{@b Stakes:} Moderate to high. Encounters always have significant stakes, and they are played in a step-by-step time frame to reflect that.","{@b Time Scale:} Encounter mode is highly structured and proceeds in combat rounds for combat encounters, while other sorts of encounters can have rounds of any length. In combat, 1 minute consists of 10 rounds, where each combat round is 6 seconds long, but you might decide a verbal confrontation proceeds in minute-long or longer rounds to give each speaker enough time to make a solid point.","{@b Actions and Reactions:} In combat encounters, each participant's turn is broken into discrete actions, and participants can use reactions when their triggers occur.","Reactions can occur in social situations, though their triggers are usually more descriptive and less tactical.",{"type":"pf2-h3","page":493,"name":"Choosing Adversaries' Actions","entries":["Players often coordinate and plan to be as efficient as possible, but their adversaries might not. As the GM, you're roleplaying these foes, and you decide their tactics.","Most creatures have a basic grasp of simple tactics like flanking or focusing on a single target. But you should remember that they also react based on emotions and make mistakes—perhaps even more than the player characters do.","When selecting targets or choosing which abilities to use, rely on the adversaries' knowledge of the situation, not your own. You might know that the cleric has a high Will save modifier, but a monster might still try to use a fear ability on her. That doesn't mean you should play adversaries as complete fools; they can learn from their mistakes, make sound plans, and even research the player characters in advance.","Adversaries usually don't attack a character who's knocked out. Even if a creature knows a fallen character might come back into the fight, only the most vicious creatures focus on helpless foes rather than the more immediate threats around them.","Running adversaries is a mix of being true to the creature and doing what's best for the drama of the game. Think of your encounter like a fight scene in a movie or novel. If the fighter taunts a fire giant to draw its attention away from the fragile wizard, the tactically sound decision is for the giant to keep pummeling the wizard. But is that the best choice for the scene? Perhaps everyone will have more fun if the giant redirects its ire to the infuriating fighter."],"source":"CRB"},{"type":"pf2-h3","page":493,"name":"Bypassed Encounters","entries":["What happens if you've planned a fight or challenge and the PCs find a way to avoid it entirely? This could leave them behind in XP or cause them to miss important information or treasure.","In the case of XP, the guidelines are simple: If the player characters avoided the challenge through smart tactical play, a savvy diplomatic exchange, clever use of magic, or another approach that required ingenuity and planning, award them the normal XP for the encounter.","If they did something that took only moderate effort or was a lucky break, like finding a secret passage and using it to avoid a fight, award them XP for a minor or moderate accomplishment. In an adventure that's more free-form, like a sprawling dungeon with multiple paths, there might be no reward for bypassing an encounter, because doing so was trivial.","You'll have to think on your feet if information or items get skipped when players bypass encounters. First, look for another reasonable place in the adventure to place the information or item. If it makes sense, move the original encounter to another part of the adventure and give the PCs a major advantage for bypassing the encounter in the first place."],"source":"CRB"},{"type":"pf2-brown-box","page":494,"name":"PLAYING WITHOUT A GRID","entries":["The Pathfinder rules are built to play combat encounters on a 1-inch grid, but you can play without a grid or map. In what's traditionally called the \"theater of the mind,\" you and other players imagine the locations of the combatants and the environment. In this style of play, you'll frequently need to make judgment calls. These are usually simple, like \"Can I see the ogre from where I'm standing?\" or \"Can I get to the ogre with one Stride?\" It's often best to have a player tell you what they want to do, such as \"I want to cross the beam to get to the ogre and attack it.\" Then, you tell the player how that breaks down into actions, like \"You'll need to spend one action and succeed at an {@skill Acrobatics} check, then Stride to get close enough, then you'll have one action left for a Strike.\"","When preparing encounters, avoid using lots of {@quickref difficult terrain||3|terrain}, cover, or other battlefield challenges that work better on a grid. Also, be more lenient with combat tactics like flanking. You won't have a way to measure flanking, but the rules expect melee characters like rogues to often get into a flanking position—often, two characters ganging up in melee is enough to count."],"source":"CRB"},{"type":"pf2-h3","page":494,"name":"Ending Encounters","entries":["A combat encounter typically ends when all the creatures on one side are killed or knocked unconscious. Once this happens, you can stop acting in initiative order.","The surviving side then has ample time to ensure that everyone taken out stays down. However, you might need to keep using combat rounds if any player characters are near death, clinging to a cliff, or in some other situation where every moment matters for their survival.","You can decide a fight is over if there's no challenge left, and the player characters are just cleaning up the last few weak enemies. However, avoid doing this if any of the players still have inventive and interesting things they want to try or spells they're concentrating on—ending an encounter early is a tool to avoid boredom, not to deny someone their fun. You can end a fight early in several ways: the foes can surrender, an adversary can die before its Hit Points actually run out, or you can simply say the battle's over and that the PCs easily dispatch their remaining foes. In this last case, you might ask, \"Is everyone okay if we call the fight?\" to make sure your players are on board.","One side might surrender when almost all its members are defeated or if spells or skills thoroughly demoralize them. Once there's a surrender, come out of initiative order and enter into a short negotiation.","These conversations are really about whether the winners will show mercy to the losers or just kill or otherwise get rid of them. The surrendering side usually doesn't have much leverage in these cases, so avoid long back-and-forth discussions.",{"type":"pf2-h3","page":494,"name":"Fleeing Enemies","entries":["Fleeing enemies can be a problem. Player characters often want to pursue foes that flee because they think an enemy might return as a threat later on. Avoid playing this out move by move, as it can easily bog down the game. If every adversary is fleeing, forgo initiative order and give each PC the option to pursue any one fleeing foe. Each PC can declare one action, spell, or other ability to use to try to keep up. Then, compare the PC's Speed to that of the target, assess how much the pursuer's chosen spell or ability would help, and factor in any abilities the quarry has that would aid escape. If you determine that the pursuer catches up, go back into combat with the original initiative order. If not, the quarry escapes for now.","If the PCs decide to flee, it's usually best to let them do so. Pick a particular location and allow them to escape once they all reach it. However, if they're encumbered or otherwise slowed down, or if enemies have higher Speeds and a strong motive to pursue, you might impose consequences upon PCs who flee."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":494,"name":"Social Encounters","entries":["Most conversations play best as free-form roleplaying, with maybe one or two checks for social skills involved.","Sometimes, though, a tense situation or crucial parlay requires a social encounter that uses initiative, much like a combat encounter. As with any other encounter, the stakes of a social encounter need to be high! A failed social encounter could mean a character is imprisoned or put to death, a major rival becomes a political powerhouse, or a key ally is disgraced and ostracized.","Using the structure of an encounter is {@condition helpful} because it makes the timing clearer than in free-form play, and each character feels like they're contributing. When running a social encounter, establish the stakes up front, so the players know the consequences of success or failure and the circumstances that will cause the encounter to end.","You have much more flexibility in how you run a social encounter than in a combat encounter. Extending the length of rounds beyond 6 seconds, allowing more improvisation, and focusing less on special attacks and spells all differentiate a social encounter from a combat one. In most cases, you don't need to worry about character's movements, nor do you need a map. Some examples of social encounters include:",{"type":"list","items":["Proving someone's innocence in front of a judge.","Convincing a neighboring monarch to help defend against an invasion.","Besting a rival bard in a battle of wits.","Exposing a villain's deception before a noble court."]},{"type":"pf2-h4","page":494,"name":"Initiative and Actions","entries":["Initiative in a social encounter typically has characters rolling {@skill Society} or a Charisma-based skill, such as {@skill Diplomacy} or {@skill Deception}. As with other encounters, a character's approach to the conflict determines which skill they'll roll. On a character's turn, they typically get to attempt one roll, usually by using a skill action. Let the player roleplay what their character says and does, then determine what they'll roll. Allow them to use any abilities or spells that might help them make their case, though keep in mind that when most people see the visual signs of a spell being cast, they think someone is using magic to try to influence or harm them, and they have a negative reaction.","Good social encounters include an opposition. This can be direct, such as a rival who argues against the characters' case, or passive, such as a mob that automatically becomes more unruly as each round passes. Give the opposition one or more positions in the initiative order so you can convey what it is doing. You can create game statistics for the opposition, especially if it's an individual, but in situations like that of the unruly mob, you might need nothing more than establish a set of increasingly difficult DCs."],"source":"CRB"},{"type":"pf2-h4","page":495,"name":"Measuring Success and Progress","entries":["You'll need to decide how to measure the characters' success in social encounters, because there's no AC to target or HP to whittle down. Chapter 4 includes guidance on setting DCs for social skill actions, often using a target's Will DC. If you need a DC for people who don't have stats, such as a crowd or an NPC for whom you haven't already generated statistics, use the guidelines on setting DCs, found on page 503. You can either pick a simple DC or use a level-based DC, estimating a level for the subject or how challenging it should be to sway them.","The attitude conditions—{@condition hostile}, {@condition unfriendly}, {@condition indifferent}, friendly, and helpful—provide a useful way to track the progress of a social encounter. Use these to represent the attitude of an authority, a crowd, a jury, or the like. A typical goal for a social encounter is to change the attitude of a person or group to helpful so they assist you, or calming a hostile group or person to defuse a situation. Try to give the players a clear idea of how much they've progressed as the encounter proceeds.","Another option is to track the number of successes or failures the characters accrue. For instance, you might need to trick four guards into leaving their posts, and count each successful attempt to Lie or Create a Diversion toward a total of four necessary successes. You can combine these two methods; if the PCs need a group of important nobles to vote their way, the goal of the encounter might be to ensure that a majority of the nobles have a better attitude toward the PCs than they have of a rival—all within a limited time frame."],"source":"CRB"},{"type":"pf2-h4","page":495,"name":"Consequences","entries":["When you set stakes at the start of a social encounter, give an idea of the consequences. Beyond whatever narrative benefits player characters might gain, a social encounter usually includes an XP award. Because these are encounters along the same lines as combat encounters, they grant a sizable amount of XP, typically that of a moderate accomplishment, or even a major accomplishment if the encounter was the culmination of long-term plans or a significant adversary got their comeuppance.","The outcome of a social encounter should direct the story of the game. Look for repercussions. Which NPCs might view the PCs more favorably now? Which might hold a grudge or formulate a new plan? A social encounter can seal the fate of an NPC and end their story, but this isn't true for player characters. Even if something looks truly dire for them, such as a death sentence, the social encounter isn't the end—there's still time for desperate heroics or a twist in the story."],"source":"CRB"}],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":496,"name":"Exploration","entries":["Exploration mode is intentionally less regimented than encounters. As a result, during exploration you'll be making judgment calls on just about everything that happens.","Fundamentally, exploration is all about rewarding the PCs for learning about their surroundings. To facilitate this, it's especially important to have and convey a clear mental picture of the group's surroundings. You'll be better able to keep track of where the players are and describe the sights, sounds, and other sensations of their adventuring locales. Encourage the players to have their characters truly explore, and reward their curiosity. The things they try to do in exploration mode show you what they're interested in and what they consider important.","As you play, you'll get a good feel for the aspects of exploration that intrigue certain players, and you can add more of those things to your adventures or emphasize these points in published adventures.","{@b Stakes:} Low to moderate. Exploration mode should be used when there's some amount of risk, but no immediate danger. The PCs might be in an environment where they're likely to face monsters or hazards, but they usually stay in exploration mode until they enter a fight or engage in some other direct interaction.","{@b Time Scale:} When the PCs are in exploration mode, time in the game world passes much faster than real-world time at the table, so it's rarely measured out to the second or the minute. You can speed up or slow down how quickly things are happening as needed. If it's important to know exactly how much time is passing, you can usually estimate time spent in exploration mode to 10-minute increments.","{@b Actions and Reactions:} Though exploration isn't broken into rounds, exploration activities assume the PCs are spending part of their time using actions, such as Seeking or Interacting. If they have specific actions they want to use, they should ask; you can decide whether the actions apply and whether to switch to encounter mode for greater detail. PCs can use any relevant reactions that come up during exploration mode.",{"type":"pf2-h3","page":496,"name":"Exploration Activities","entries":["In exploration mode, each player who wants to do something beyond just traveling chooses an exploration activity for their character. The most common activities are Avoid Notice, Detect Magic, Hustle, and Search, though there are many options available. While players usually hew close to these default activities, there's no need for them to memorize the exploration activities and use them exactly. Instead, allow each player to describe what their character is doing. Then, as the GM, you can determine which activity applies. This also means you determine how an activity works if the character's actions differ from those on the list.","The following sections discuss exploration activities that require adjudication from you beyond the guidelines for players detailed on pages 479–480 of Chapter 9.",{"type":"pf2-h4","page":496,"name":"Detect Magic","entries":["This activity doesn't enable characters to automatically find every single magical aura or object during travel. Hazards that require a minimum proficiency can't be found with {@spell detect magic}, nor can illusions of equal or higher level than the spell.","When characters find something magical using this activity, let them know and give them the option to stop and explore further or continue on. Stopping brings you into a more roleplay-heavy scene in which players can search through an area, assess different items, or otherwise try to figure out the source of the magic and what it does. Continuing on might cause the group to miss out on beneficial magic items or trigger a magic trap."],"source":"CRB"},{"type":"pf2-h4","page":496,"name":"Follow the Expert","entries":["A skilled character can help out less skilled allies who choose to {@action Follow the Expert}. This is a good way to help a character with a low {@skill Stealth} modifier sneak around, get a character with poor {@skill Athletics} up a steep cliff, and so on. Usually, a character who is {@action Following the Expert} can't perform other exploration activities or follow more than one person at a time."],"source":"CRB"},{"type":"pf2-h4","page":496,"name":"Investigate","entries":["As with {@action Searching} or {@action Detecting Magic}, the initial result of {@action Investigating} is usually enough to give the investigator a clue that leads into a more thorough examination, but it rarely gives all possible information. For instance, a character might note that the walls of a dungeon are covered with {@language Abyssal} writing, but they would need to stop to read the text or determine that it's written in blood."],"source":"CRB"},{"type":"pf2-h4","page":496,"name":"Search","entries":["With a successful Perception check while {@action Search||Searching}, a character notices the presence or absence of something unusual in the area, but it doesn't provide a comprehensive catalog of everything there. Instead, it gives a jumping-off point for closer inspection or an encounter. For instance, if an area has both a DC 30 secret door and a DC 25 trap, and a {@action Search||Searching} character got a 28 on their Perception check, you would tell the player that their character noticed a trap in the area, and you'd give a rough idea of the trap's location and nature. The party needs to examine the area more to learn specifics about the trap, and someone would need to Search again to get another chance to find the secret door.","If an area contains many objects or something that will take a while to search (such as a cabinet full of papers), {@action Search||Searching} would reveal the cabinet, but the PCs would have to examine it more thoroughly to check the papers. This usually requires the party to stop for a complete search.","You roll a secret Perception check for a {@action Search||Searching} character to detect any secrets they pass that's in a place that stands out (such as near a door or a turn in a corridor), but not one that's in a more inconspicuous place (like a random point in a long hallway) unless they are searching particularly slowly and meticulously."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-brown-box","page":498,"name":"EXPLORATION ACTIVITIES","entries":["The following exploration activities are fully detailed on pages 479–480 of Chapter 9. Many more appear within Chapter 4: Skills.",{"type":"list","items":["{@action Avoid Notice}","{@action Defend}","{@action Detect Magic}","{@action Follow the Expert}","{@action Hustle}","{@action Investigate}","{@action Repeat a Spell}","{@action Scout}","{@action Search}"]},{"type":"pf2-title","name":"Improvising New Activities"},"If a player wants to do something not covered by other rules, here are some guidelines. If the activity is similar to an action someone could use in an encounter, such as Avoid Notice, it usually consists of a single action repeated roughly 10 times per minute (such as using the Sneak action 10 times) or an alternation of actions that works out similarly (such as Search, which alternates Stride and Seek). An activity using a quicker pace, corresponding to roughly 20 actions per minute, might have limited use or cause fatigue, as would one requiring intense concentration.","You might find that a player wants to do something equivalent to spending 3 actions every 6 seconds, just like they would in combat. Characters can exert themselves to this extent in combat only because combat lasts such a short time—such exertion isn't sustainable over the longer time frame of exploration."],"source":"CRB"},{"type":"pf2-h3","page":497,"name":"Setting a Party Order","entries":["In exploration mode, it often matters which characters are in the front or back of the party formation. Let the players decide among themselves where in the group their characters are while exploring. This order can determine who gets attacked first when enemies or traps threaten from various directions. It's up to you to determine the specifics of who gets targeted based on the situation.","When you come out of exploration mode, the group usually remains in the same general formation. Decide the PCs' exact positions, with their input, if you're moving to a grid (as usually happens at the start of a combat encounter). If they come out of exploration mode on their own terms, they can move around as they see fit. For example, if they detect a trap and the rogue starts attempting to disarm it, the other characters can move to whatever locations they think are safe."],"source":"CRB"},{"type":"pf2-h3","page":497,"name":"Adverse Terrain and Weather","entries":["Exploration gets slower when the party faces dense jungles, deep snow, sandstorms, extreme heat, or similar difficult conditions. You decide how much these factors impact the characters' progress. The specific effects of certain types of terrain and weather are described starting on page 512.","{@quickref difficult terrain||3|terrain} such as thick undergrowth usually slows down progress. Unless it's important how far the group gets in a particular time frame, this can be covered with a quick description of chopping through the vines or trudging through a bog. If the characters are on a deadline, adjust their progress on {@table Travel Speed||Table 9–2: Travel Speed}, typically cutting it in half if almost all of the land is {@quickref difficult terrain||3|terrain} or to one-third for {@quickref greater difficult terrain||3|terrain}.","Hazardous terrain, such as the caldera of an active volcano, might physically harm the player characters. The group might have the option to travel directly through or go around by spending more time. You can transition into a more detailed scene while the characters move through hazardous terrain and attempt to mitigate the damage with spells or skill checks. If they endure hazardous terrain, consider giving the PCs a minor or moderate XP reward at the end of their exploration, with slightly more XP if they took smart precautions to avoid taking damage.","Dangerous crevasses, swampy bogs, quicksand, and similar dangers are environmental hazards, which are described beginning on page 512."],"source":"CRB"},{"type":"pf2-h3","page":498,"name":"Hazards","entries":["Exploration can get broken up by traps and other hazards (see Hazards on page 520). Simple hazards pose a threat to the PCs only once and can be dealt with in exploration mode. Complex hazards require jumping into encounter mode until the hazard is dealt with. Disabling a trap or overcoming a hazard usually takes place in encounter mode. PCs have a better chance to detect hazards while exploring if they're using the Search activity (and the Detect Magic activity, in the case of some magic traps)."],"source":"CRB"},{"type":"pf2-h3","page":498,"name":"Rolling Initiative","entries":["Transitioning from exploration to an encounter usually involves rolling for initiative. Call for initiative once a trap is triggered, as soon as two opposing groups come into contact, or when a creature on one side decides to take action against the other. For example:",{"type":"list","items":["A group of PCs are exploring a cavern. They enter a narrow passage patrolled by a group of kobold warriors. Now that the two groups are in the same area, it's time to roll initiative.","Amiri and a kobold champion agree to have a {@condition friendly} wrestling match. They square off on a patch of dirt, and you call for initiative using {@skill Athletics}.","Merisiel and Kyra are negotiating with the kobold king. Things aren't going well, so Merisiel decides to launch a surprise attack. As soon as she says this is her plan, you call for initiative.","Harsk and Ezren are trying to Balance across a narrow beam to reach an isolated kobold treasure trove. When they get halfway across, a red dragon who was hiding behind the mountain flies around to attack! As soon as the dragon makes its appearance, you call for an initiative roll."]},{"type":"pf2-h4","page":498,"name":"Initiative after Reactions","entries":["In some cases, a trap or a foe has a reaction that tells you to roll initiative. For instance, a complex trap that's triggered might make an attack with its reaction before the initiative order begins. In these cases, resolve all the results of the reaction before calling for initiative rolls."],"source":"CRB"},{"type":"pf2-h4","page":498,"name":"Choosing the Type of Roll","entries":["When choosing what type of roll to use for initiative, lean toward the most obvious choice. The most common roll is {@skill Perception}; this is what the kobolds would use in the first example, as would Kyra and the kobold king in the third example. The next most common skills to use are {@skill Stealth} (for sneaking up, like the dragon in the last example) and {@skill Deception} (for tricking opponents, like Merisiel in the third example). For social contests, it's common to use {@skill Deception}, {@skill Diplomacy}, {@skill Intimidation}, {@skill Performance}, or {@skill Society}.","If you're unsure what roll to call for, use {@skill Perception}. If a different type of roll could make sense for a character, you should usually offer the choice of that roll or {@skill Perception} and let the player decide. Don't do this if it's absolutely clear another kind of check matters more sense than {@skill Perception}, such as when the character is sneaking up on enemies and should definitely use {@skill Stealth}.","You can allow a player to make a case that they should use a different skill than {@skill Perception}, but only if they base it on something they've established beforehand. For example, if in the prelude to the attack, Merisiel's player had said, \"I'm going to dangle down off the chandelier to get the drop on them,\" you could let them use {@skill Acrobatics} for their initiative roll. If they just said, \"Hey, I want to attack these guys. Can I use {@skill Acrobatics}?\" without having established a reason beforehand, you probably shouldn't allow it."],"source":"CRB"},{"type":"pf2-h4","page":498,"name":"Character Placement","entries":["When calling for initiative for a combat encounter, you'll need to decide where the participants in the encounter go on the battle map. Use the party's order, described on page 497, as a base. You can move forward characters who are using {@skill Stealth} to get into position, putting them in a place they could reasonably have moved up to before having a chance to be detected. Consult with each player to make sure their position makes sense to both of you."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-brown-box","page":499,"name":"MONITORING SPELL DURATIONS","entries":["Spell durations are approximate values that codify the vagaries and eccentricities of magic into a convenient number. However, that doesn't mean you can set your watch by a spell with a 1-hour duration. This is one of the reasons the passage of time outside of encounters is in your hands and isn't as precise as encounter rounds.","If a question arises about whether a spell has expired, you make the call. You shouldn't be punitive, but you also shouldn't treat characters like they move with clockwork precision and perfect efficiency between encounters.","There are two times these durations matter most: when players try to fit multiple encounters within the duration of a spell, and when they want to use a spell before a fight and keep it in effect during the encounter.",{"type":"pf2-title","name":"Multiple Encounters"},"A 1-minute spell should last for multiple encounters only if the encounters happen in very close proximity (usually in two adjoining rooms) and if the PCs go directly from one fight to the next without leaving encounter mode. If they want to stop and heal, or if the party debates whether to go on, the process takes enough time that the spell runs out.","Be more generous with spells lasting 10 minutes or more. A 10-minute spell easily lasts for one encounter and could continue for another if the locations are close. A 1-hour spell usually lasts for several encounters.",{"type":"pf2-title","name":"Before a Fight"},"Casting advantageous spells before a fight (sometimes called \"pre-buffing\") gives the characters a big advantage, since they can spend more combat rounds on offensive actions instead of preparatory ones. If the players have the drop on their foes, you usually can let each character cast one spell or prepare in some similar way, then roll initiative.","Casting preparatory spells before combat becomes a problem when it feels rote and the players assume it will always work—that sort of planning can't hold up in every situation! In many cases, the act of casting spells gives away the party's presence. In cases where the PCs' preparations could give them away, you might roll for initiative before everyone can complete their preparations."],"source":"CRB"},{"type":"pf2-h3","page":499,"name":"Resting","entries":["Characters require 8 hours of sleep each day. Though resting typically happens at night, a group gains the same benefits for resting during the day. Either way, they can gain the benefits of resting only once every 24 hours. A character who rests for 8 hours recovers in the following ways:",{"type":"list","items":["The character regains Hit Points equal to their Constitution modifier (minimum 1) multiplied by their level. If they rest without any shelter or comfort, you might reduce this healing by half (to a minimum of 1 HP).","The character loses the {@condition fatigued} condition.","The character reduces the severity of the {@condition doomed} and {@condition drained} conditions by 1.","Most spellcasters need to rest before they regain their spells for the day."]},"A group in exploration mode can attempt to rest, but they aren't entirely safe from danger, and their rest might be interrupted. The 8 hours of rest do not need to be consecutive, however, and after an interruption, characters can go back to sleep.","Sleeping in armor results in poor rest and causes a character to wake up fatigued. If a character would have recovered from fatigue, sleeping in armor prevents it.","If a character goes more than 16 hours without going to sleep, they become fatigued.","Taking long-term rest for faster recovery is part of downtime and can't be done during exploration. See page 502 for these rules.",{"type":"pf2-h4","page":499,"name":"Resting","entries":["Adventuring parties usually put a few people on guard to watch out for danger while the others rest. Spending time on watch also interrupts sleep, so a night's schedule needs to account for everyone's time on guard duty. Table 10–3:","Watches and Rest on the next page indicates how long the group needs to set aside for rest, assuming everyone gets a rotating watch assignment of equal length.","If a surprise encounter would occur during rest, you can roll a die to randomly determine which character is on watch at the time. All characters roll initiative; sleeping characters typically roll Perception with a –4 status penalty for being unconscious. They don't automatically wake up when rolling initiative, but they might roll a Perception check to wake up at the start of their turn due to noise. If a savvy enemy waits for a particularly vulnerable character to take watch before attacking, the attack can happen on that character's watch automatically. However, you might have the ambusher attempt a {@skill Stealth} check against the Perception DCs of all characters to see if anyone noticed its approach.",{"type":"statblock","tag":"table","source":"CRB","name":"Watches and Rest"}],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":500,"name":"Daily Preperations","entries":["Just before setting out to explore, or after a night's rest, the PCs spend time to prepare for the adventuring day. This typically happens over the span of 30 minutes to an hour in the morning, but only after 8 full hours of rest. Daily preparations include the following.",{"type":"list","items":["Spellcasters who prepare spells choose which spells they'll have available that day.","Focus Points and other abilities that reset during daily preparations refresh. This includes abilities that can be used only a certain number of times per day.","Each character equips their gear. This includes donning their armor and strapping on their weapons.","Characters invest up to 10 worn magic items to gain their benefits for the day (page 531)."]}],"source":"CRB"},{"type":"pf2-h3","page":500,"name":"Starvation and Thirst","entries":["Typically characters eat and drink enough to survive comfortably. When they can't, they're fatigued until they do. After 1 day + a creature's Constitution modifier without water, it takes 1d4 damage each hour that can't be healed until it quenches its thirst. After the same amount of time without food, it takes 1 damage each day that can't be healed until it sates its hunger."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":500,"name":"Downtime","entries":["In downtime, you can sum up the important events of a whole day with just one roll. Use this mode when the characters return home or otherwise aren't adventuring.","Usually, downtime is a few minutes at the start of a session or a break between major chapters of an adventure. As with exploration, you might punctuate downtime with roleplaying or encounters when it's natural to do so.","This section describes ways to handle downtime and details several activities and considerations specific to downtime, such as cost of living, buying and selling goods, long-term rest, and retraining. Most other downtime activities are skill actions; a number of these common downtime activities and their associated skills are listed below. See the relevant skills in Chapter 4 for details.",{"type":"list","items":["{@action Craft} ({@skill Crafting})","{@action Earn Income} ({@skill Crafting}, {@skill Lore}, {@skill Performance})","{@action Treat Disease} ({@skill Medicine})","{@action Create Forgery} ({@skill Society})","{@action Subsist} ({@skill Society}, {@skill Survival})"]},"{@b Stakes:} None to low. Downtime is the counterpart to adventuring and covers low-risk activities.","{@b Time Scale:} Downtime can last days, weeks, months, or years in the game world in a few minutes of real time.","{@b Actions and Reactions:} If you need to use actions and reactions, switch to exploration or encounter mode.","A creature that can't act is unable to perform most downtime activities, but it can take long-term rest.",{"type":"pf2-h3","page":500,"name":"Playing out a Downtime Day","entries":["At the start of a given day of downtime, have all the players declare what their characters are trying to accomplish that day. You can then resolve one character's efforts at a time (or group some characters together, if they are cooperating on a single project). Some activities, such as Earning Income, require only a simple roll and some embellishment from you and the player. Other activities are more involved, incorporating encounters or exploration. You can call on the players to play out their downtime activities in any order, though it's often best to do the simplest ones first. Players who aren't part of a more involved activity might have time to take a break from the table while the more complex activities are played out.","Characters can undertake their daily preparations if they want, just as they would on a day of exploration. Ask players to establish a standard set of preparations, and you can assume the characters go through the same routine every day unless their players say otherwise.",{"type":"pf2-h4","page":500,"name":"Cooperation","entries":["Multiple characters can cooperate on the same downtime task. If it's a simple task that requires just one check, such as a party Subsisting as they await rescue on a desert island, one character rolls the necessary check while everyone else Aids that character. If it's a complex task, assume all of them are working on different parts of it at one time, so all their efforts count toward its completion. For example, a party might collaborate to build a theater, with one character drawing up architectural plans, one doing manual labor, and one talking to local politicians and guilds."],"source":"CRB"},{"type":"pf2-h4","page":500,"name":"Checks","entries":["Some downtime activities require rolls, typically skill checks. Because these rolls represent the culmination of a series of tasks over a long period, players can't use most abilities or spells that manipulate die rolls, such as activating a magic item to gain a bonus or casting a fortune spell to roll twice. Constant benefits still apply, though, so someone might invest a magic item that gives them a bonus without requiring activation. You might make specific exceptions to this rule. If something could apply constantly, or so often that it might as well be constant, it's more likely to be used for downtime checks."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":501,"name":"Longer Periods of Downtime","entries":["Running downtime during a long time off—like several weeks, months, or even years—can be more challenging.","However, it's also an opportunity for the characters to progress toward long-term plans rather than worrying about day-to-day activities. Because so much time is involved, characters don't roll a check for each day. Instead, they deal with a few special events, average out the rest of the downtime, and pay for their cost of living.",{"type":"pf2-h4","page":501,"name":"Events","entries":["After the characters state what they want to achieve in their downtime, select a few standout events for each of them—usually one event for a period of a week or a month, or four events for a year or longer. These events should be tailored to each character and their goals, and they can serve as hooks for adventures or plot development.","Though the following examples of downtime events all involve Earning Income, you can use them to spark ideas for other activities. A character using Perform to Earn Income could produce a commanding performance of a new play for visiting nobility. Someone using {@skill Crafting} might get a lucrative commission to craft a special item. A character with Lore might have to research a difficult problem that needs a quick response.","PCs who want to do things that don't correspond to a specific downtime activity should still experience downtime events; you just choose the relevant skill and DC. For example, if a character intends to build their own library to house their books on magic, you might decide setting the foundation and organizing the library once construction is finished are major events. The first could be a {@skill Crafting} check, and the second an {@skill Arcana} or Library Lore check."],"source":"CRB"},{"type":"pf2-h4","page":501,"name":"Average Progress","entries":["For long periods of downtime, you might not want to roll for every week, or even every month. Instead, set the level for one task using the lowest level the character can reliably find in the place where they spend their downtime (see Difficulty Classes on page 503 for more on setting task levels). If the character fails this check, you might allow them to try again after a week (or a month, if you're dealing with years of downtime). Don't allow them to roll again if they succeeded but want to try for a critical success, unless they do something in the story of the game that you think makes it reasonable to allow a new roll.","The events you include during a long stretch of downtime should typically feature higher-level tasks than the baseline. For instance, a character Earning Income with Sailing Lore for 4 months might work at a port doing 1st-level tasks most of the time, but have 1 week of 3rd-level tasks to account for busy periods. You'll normally have the player roll once for the time they spent at 1st-level tasks and once for the week of 3rd-level tasks."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":502,"name":"Cost of Living","entries":["For short periods of downtime, characters are usually just passing through a settlement or spending a bit of time there. They can use the prices for inn stays and meals found on page 294. For long stretches of downtime, use the values on {@table Cost of Living||Table 6–16: Cost of Living} on the same page. Deduct these costs from a character's funds after they gain any money from their other downtime activities.","A character can live off the land instead, but each day they do, they typically use the Subsist activity (page 240) to the exclusion of any other downtime activity."],"source":"CRB"},{"type":"pf2-h3","page":502,"name":"Buying and Selling","entries":["After an adventure yields a windfall, the characters might have a number of items they want to sell. Likewise, when they're flush with currency, they might want to stock up on gear. It usually takes 1 day of downtime to sell off a few goods or shop around to buy a couple items. It can take longer to sell off a large number of goods, expensive items, or items that aren't in high demand.","This assumes the characters are at a settlement of decent size during their downtime. In some cases, they might spend time traveling for days to reach bigger cities.","As always, you have final say over what sort of shops and items are available.","An item can usually be purchased at its full Price and sold for half its Price. Supply and demand adjusts these numbers, but only occasionally."],"source":"CRB"},{"type":"pf2-h3","page":502,"name":"Long-Term Rest","entries":["Each full 24-hour period a character spends resting during downtime allows them to recover double what they would for an 8-hour rest (as listed on page 499). They must spend this time resting in a comfortable and secure location, typically in bed.","If they spend significantly longer in bed rest—usually from a few days to a week of downtime—they recover from all damage and most nonpermanent conditions. Characters affected by diseases, long-lasting poisons, or similar afflictions might need to continue attempting saves during downtime. Some curses, permanent injuries, and other situations that require magic or special care to remove don't end automatically during long-term rest."],"source":"CRB"},{"type":"pf2-h3","page":502,"name":"Retraining","entries":["The retraining rules on page 481 allow a player to change some character choices, but they rely on you to decide whether the retraining requires a teacher, how long it takes, if it has any associated costs, and if the ability can be retrained at all. It's reasonable for a character to retrain most choices, and you should allow them. Only choices that are truly intrinsic to the character, like a sorcerer's bloodline, should be off limits without extraordinary circumstances.","Try to make retraining into a story. Use NPCs the character already knows as teachers, have a character undertake intense research in a mysterious old library, or ground the retraining in the game's narrative by making it the consequence of something that happened to the character in a previous session.",{"type":"pf2-h4","page":502,"name":"Time","entries":["Retraining a feat or skill increase typically takes a week. Class features that require a choice can also be retrained but take longer: at least a month, and possibly more. Retraining might take even longer if it would be especially physically demanding or require travel, lengthy experimentation, or in-depth research, but usually you won't want to require more than a month for a feat or skill, or 4 months for a class feature.","A character might need to retrain several options at once. For instance, retraining a skill increase might mean they have skill feats they can no longer use, and so they'll need to retrain those as well. You can add all this retraining time together, then reduce the total a bit to represent the cohesive nature of the retraining."],"source":"CRB"},{"type":"pf2-h4","page":502,"name":"Instruction and Cost","entries":["The rules abstract the process of learning new things as you level up—you're learning on the job—but retraining suggests that the character works with a teacher or undergoes specific practice to retrain. If you want, you can entirely ignore this aspect of retraining, but it does give an opportunity to introduce (or reintroduce) NPCs and further the game's story. You can even have one player character mentor another, particularly when it comes to retraining skills.","Any costs to retraining should be pretty minor—about as much as a PC could gain by Earning Income over the same period of time. The costs are mostly there to make the training feel appropriate within the context of the story, not to consume significant amounts of the character's earnings. A teacher might volunteer to work without pay as a reward for something the character has already done, or simply ask for a favor in return."],"source":"CRB"},{"type":"pf2-h4","page":502,"name":"Disallowed Options","entries":["While some character options can't normally be retrained, you can invent ways for a character to retrain even these—special rituals, incredible quests, or the perfect tutor. For example, ability scores can't normally be retrained, as that can unbalance the game. But not all players necessarily want to exploit the system—maybe a player simply wants to swap an ability boost between two low stats. In situations like this, you could let them spend a few months working out or studying to reassign an ability boost."],"source":"CRB"}],"source":"CRB"}],"source":"CRB"}],"data":{"quickref":5},"source":"CRB"},{"type":"section","page":489,"name":"Running a Game Session","entries":["A campaign happens over a series of sessions. Each session is usually several hours long, with multiple encounters, some exploration, and possibly downtime. Your session can be compared to an episode of a TV show; it should include some twists, turns, and changes, and end leaving people excited about what comes next.",{"type":"pf2-h3","page":489,"name":"Planning a Session","entries":["One of the greatest challenges in gaming is scheduling a time for everyone to get together and play. Often, this responsibility falls on you as the GM, since you're the one who has to prepare your game between sessions. Many games have a set schedule, such as once per week, once every 2 weeks, or once per month. The less frequently your group meets, the better notes and recaps you'll need to keep everyone on the same page.","Plan a time for everybody will arrive, and also try to set a time when playing the game will begin. This can make it easier for everyone to finish chatting, catching up, and eating in a timely fashion so you can start playing the game. Having an end time in mind is also fairly important. A typical game session lasts about 4 hours, though some groups hold 2-hour sessions or play marathon games. Less than 2 hours usually isn't enough time to get much done in most Pathfinder campaigns. If your session will be longer than 2 hours, plan out some 15-minute breaks (in addition to bathroom and beverage breaks, which players can take as needed)."],"source":"CRB"},{"type":"pf2-h3","page":490,"name":"Starting a Session","entries":["Once everyone is ready, get everyone's attention and cover the following topics. These are in a rough order that you can change based on your group's style or a session's needs.",{"type":"list","items":["Recap what happened during the previous sessions.","Establish where the characters are at the beginning of this session. Have they been resting since their last challenge? Are they in a hallway, preparing to raid the next room of a dungeon? Tell players whether their characters had time to rest or recover since the last session.","Remind players that they each have 1 Hero Point at the start of the session ({@quickref here||4|rewards|1}).","Establish goals. The players should have an idea of what they want to do next. Reestablish any goals the group already had, then let the players weigh in on whether these goals still apply, and on whether there's anything else they hope to accomplish in this session.","Commence adventuring! Decide which mode of play you're going to start in, then lead off with a verbal prompt to get the action started. You might ask a question related to a particular character, have everyone immediately roll initiative as a monster attacks, or briefly describe the environment and sensations that surround the player characters, allowing them to react."]}],"source":"CRB"},{"type":"pf2-h3","page":490,"name":"Running a Session","entries":["During a session, you're in charge of keeping the game's action moving, managing the different modes of play, fielding questions, and making rules decisions. You'll also want to keep a rough eye on the time, so you can end when most convenient for the group.","You're the interface between the rules and the imagined world you and the other players share. They will ask you questions, and they'll act based on their own assumptions. It's up to you to establish what's true in the world, but you don't do this unilaterally. You're informed by the setting's backstory, your preparations, and the suggestions and assumptions the other players bring to the table. Keep in mind that until you announce something, your own plans are subject to change. For example, if you originally intended the owner of a tavern to be kindly and well-intentioned, but a player misreads her and invents an interesting conspiracy theory regarding her intentions that sounds fun, you might convert the tavern owner into an agent of evil after all.","You'll also determine when PCs and foes need to attempt checks, as well as the consequences of those rolls. This comes up most often outside of encounters, as encounters are more regimented about when checks happen and how they are resolved. In an encounter, a player can usually determine their own character's turn, with you chiming in only to say whether an attack hits or if something in the environment requires a character to attempt a check.",{"type":"pf2-h4","page":490,"name":"The Spotlight","entries":["As you run the game, keep track of who has the spotlight. It can be easy to keep attention on the most outgoing player or character, but you need to check in with all the players. If a player hasn't contributed in some time, stop and ask, \"What's your character doing at this point?\" If the player's not sure, add a detail or nonplayer character to the scene that the player might find interesting."],"source":"CRB"},{"type":"pf2-h4","page":490,"name":"Distractions and Interrupting","entries":["Maintaining the players' attention keeps a game moving and leads to memorable moments when everyone's in the same zone. Too many interruptions break the flow. This is fine in moderation. Distractions become a problem if they're too frequent, as they cause people to miss things and make misinformed decisions as the session becomes disconnected. Yet every game includes breaks—sometimes intentional, sometimes not—and digressions. Finding the right balance of diversions for your group is essential.","A game is a social gathering, so there's definitely a place for conversation that's not directly related to playing the game. These interruptions become a problem if they're too frequent, or if people are talking over others. If a player repeatedly interrupts you or other people or undercuts every crucial moment of the game with a joke, talk to them about limiting their comments to appropriate times. Often, all you need to do is hold up your hand or otherwise indicate that the player is talking out of turn to delay them until after you or another speaker finishes talking.","Phones and other mobile devices are another major source of distraction. Banning them entirely is often impractical—many players use apps to roll dice or manage their character sheets, or they need to answer texts from their partner, check in on a work project, or otherwise stay connected with people who rely on them. However, you can set ground rules against using a device for anything that's not time-sensitive or game-related, such as refreshing social media, checking the score of a hockey game, playing a mobile game, or answering a non-urgent text. You can relax these rules for players when their characters are \"offstage.\" If a player's character isn't in a scene, that might be a good time for the player to use a mobile device."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-brown-box","page":491,"name":"OFF-SESSION GAMING","entries":["Session play with a full group isn't the only way to play Pathfinder. Finding opportunities to expand on the game outside of its regular schedule can keep your group engaged between sessions.","You can get together with a single player to run a mini-session for their character, covering a mission that's important to their story but doesn't concern the rest of the group. You and the players can work out what their characters do during solid stretches of downtime via e-mail or chat messages. You can also give players opportunities to collaborate on details of the story, like having a player design a heraldic symbol for the adventuring group or map out their home base. You might even decide to award a Hero Point at the next session to a player for events that happened outside a session.","Some events aren't suitable for handling outside of sessions. Any event that strongly affects a character whose player isn't present should be handled at the table when everyone can attend. It's also helpful to recap events that took place outside of the session for all characters so no one feels excluded or lost."],"source":"CRB"},{"type":"pf2-h3","page":491,"name":"Adjudicating the Rules","entries":["As the GM, you are responsible for solving any rules disputes. Remember that keeping your game moving is more important than being 100% correct. Looking up rules at the table can slow the game down, so in many cases it's better to make your best guess rather than scour the book for the exact rule. (It can be instructive to look those rules up during a break or after the session, though!)","To make calls on the fly, use the following guidelines, which are the same principles the game rules are based on. You might want to keep printouts of these guidelines and the DC guidelines (page 503) for quick reference.",{"type":"list","items":["If you don't know how long a quick task takes, go with 1 action, or 2 actions if a character shouldn't be able to perform it three times per round.","If you're not sure what action a task uses, look for the most similar basic action. If you don't find one, make up an undefined action (page XXX) adding any necessary traits (usually attack, concentrate, manipulate, or move).","When two sides are opposed, have one roll against the other's DC. Don't have both sides roll (initiative is the exception to this rule). The character who rolls is usually the one acting (except in the case of saving throws).","If an effect raises or lowers chances of success, grant a +1 circumstance bonus or a –1 circumstance penalty.","If you're not sure how difficult a significant challenge should be, use the DC for the party's level.","If you're making up an effect, creatures should be incapacitated or killed on only a critical success (or for a saving throw, on a critical failure).","If you don't know what check to use, pick the most appropriate skill. If no other skill applies to a check to Recall Knowledge, use an appropriate Lore skill (usually at an untrained proficiency rank).","Use the characters' daily preparations as the time to reset anything that lasts roughly a day.","When a character accomplishes something noteworthy that doesn't have rules for XP, award them XP for an accomplishment (10 to 30 XP, as described {@quickref here||4|rewards|1}).","When the PCs fail at a task, look for a way they might fail forward, meaning the story moves forward with a negative consequence rather than the failure halting progress entirely."]}],"source":"CRB"},{"type":"pf2-h3","page":492,"name":"Special Circumstances","entries":["The player characters in your group will at times attempt tasks that should be easier or harder than the rules or adventure would otherwise lead you to expect, such as a PC Gathering Information in their hometown. In these cases, you can just apply a circumstance bonus or penalty. Usually, this is +1 or –1 for a minor but significant circumstance, but you can adjust this bonus or penalty to +2 or –2 for a major circumstance. The maximum bonus or penalty, +4 or –4, should apply only if someone has an overwhelming advantage or is trying something extremely unlikely but not quite impossible.","You can also add traits to actions. Let's say that during a fight, Seelah dips her sword into a brazier of hot coals before swinging it at an enemy with a weakness to fire. You could add the fire trait to this attack. A PC getting an advantage in this way should usually have to use an action to do so, so Seelah would get the benefit for one attack, but to do it again she'd need to bury her sword in the coals once more."],"source":"CRB"},{"type":"pf2-brown-box","page":492,"name":"SHARING RESPONSIBILITY","entries":["Just because you're the GM and ostensibly in charge doesn't mean you have to do all the extra work to make the campaign run. Some of the tasks described here, like scheduling games, taking notes, and giving recaps, can be delegated to other players. You might also have someone track initiative or the Hit Points of the PCs' foes for you in encounters, or even run those foes if you have a large group and someone would rather do that than control a character of their own. It's also great when someone else can host a session, provide snacks for the group, or take on other responsibilities that aren't directly related to the game.","It's best to figure out a schedule of responsibilities when you're first setting up a game. Ask the players what they're willing to take on. If you start to feel overwhelmed partway through a campaign, you can revisit the topic and try out new options until you find a setup that's comfortable."],"source":"CRB"},{"type":"pf2-h3","page":492,"name":"Incorporating Additional Options","entries":["You might grant players access to additional rule or character options. If you feel confident that allowing a character to take a particular option will be a good addition to your game, then go for it! If you're uncertain or worried about a request, you don't have to allow it, and it's your call to make. However, try to meet players halfway or suggest alternatives. If you want to allow an option on a trial basis but are worried it might become a problem later, talk to the player beforehand and explain that you are tentatively allowing the option, but might change your mind later, after you see how the option can be used during play."],"source":"CRB"},{"type":"pf2-brown-box","page":492,"name":"PAIZO'S PUBLISHED ADVENTURES","entries":["You can purchase the following types of adventures at {@b {@link paizo.com|https://paizo.com}}, your local game store, or many book stores. If you want to acquire all the adventures in a given line, you can purchase a subscription at {@b {@link paizo.com|https://paizo.com}}.",{"type":"pf2-title","name":"Pathfinder Adventure Paths"},"Each monthly volume of a Pathfinder Adventure Path leads into the next as part of a greater story spanning multiple volumes. The first volume of each Adventure Path typically starts at 1st level, and each volume has a self-contained story that eventually leads to a big climax at the end of the final volume. Each volume also typically includes new monsters, rules, and details about the world.","Each Adventure Path has a different theme, and their settings range across the Inner Sea region and beyond.",{"type":"pf2-title","name":"Pathfinder Adventures"},"Pathfinder Adventures are standalone adventures that cover several levels of play. They're self-contained and typically have a unique structure or theme. You can play through a Pathfinder Adventure on its own or as part of your ongoing campaign—some make ideal side adventures for Adventure Paths that have similar themes.",{"type":"pf2-title","name":"Pathfinder Society Scenarios"},"Scenarios are the adventures used by the Pathfinder Society Roleplaying Guild; you can play them as part of the Pathfinder Society or on your own. Each takes about 4 to 5 hours to run, so you can tell a whole story in a short amount of time, but they're also part of a larger continuity and can be combined together to form the basis of a longer campaign."],"source":"CRB"}],"data":{"quickref":5},"source":"CRB"}]}]}} \ No newline at end of file +{"reference":{"bookref-quick":{"name":"Quick Reference","id":"bookref-quick","contents":[{"name":"Character Creation","headers":["Animal Companions","Archetypes","Character Creation","Characters With Disabilities","Familiars","Leveling Up"]},{"name":"Items & Equipment","headers":["Activating Items","Animals","Armor","Carrying and Using Items","Coins and Currency","Constant Abilities","Formulas","Investing Magic Items","Item Damage","Item Level","Items and Sizes","Price","Runes","Scrolls","Services","Shields","Shoddy Items","Staves","Wands","Weapons","Wearing Tools"]},{"name":"Spells","headers":["Cantrips","Casting Spells","Disbelieving Illusions","Durations","Focus Spells","Hostile Actions","Identifying Spells","Innate Spells","Ranges, Areas, and Targets","Reading Spells","Rituals","Saving Throws","Setting Triggers","Spell Attacks","Spell Slots","Walls"]},{"name":"Playing the Game","headers":["Actions","Afflictions","Checks","Concealment and Invisibility","Condition Values","Conditions","Counteracting","Cover","Damage","Downtime Mode","Effects","Encounter Mode","Exploration Mode","Flanking","Game Conventions","Hero Points","Hit Points, Healing, and Dying","Making Choices","Movement","Overriding Conditions","Perception","Special Checks","Specific Checks"]},{"name":"Game Mastering","headers":["Difficulty Classes","Drugs","Environment","Hazards","Planning a Campaign","Preparing an Adventure","Rewards","Running Modes of Play","Running a Game Session"]}]},"bookref-gmscreen":{"name":"GM Reference","id":"bookref-gmscreen","contents":[]}},"data":{"bookref-quick":[{"type":"entries","entries":[{"type":"section","page":214,"name":"Animal Companions","entries":["An animal companion is a loyal comrade who follows your orders without you needing to use Handle an Animal on it. Your animal companion has the minion trait, and it gains 2 actions during your turn if you use the {@action Command an Animal} action to command it; this is in place of the usual effects of {@action Command an Animal}. If your companion dies, you can spend a week of downtime to replace it at no cost. You can have only one animal companion at a time.",{"type":"pf2-h3","page":214,"name":"Riding Animal Companions","entries":["You or an ally can ride your animal companion as long as it is at least one size larger than the rider. If it is carrying a rider, the animal companion can use only its land Speed, and it can't move and Support you on the same turn. However, if your companion has the mount special ability, it's especially suited for riding and ignores both of these restrictions."],"source":"CRB"},{"type":"pf2-h3","page":214,"name":"Young Animal Companions","entries":["The following are the base statistics for a young animal companion, the first animal companion most characters get. You make adjustments to these statistics depending on the type of animal you choose. As you gain levels, you might make further adjustments as your companion becomes more powerful. An animal companion has the same level you do. Animal companions calculate their modifiers and DCs just as you do with one difference: the only item bonuses they can benefit from are to speed and AC (their maximum item bonus to AC is +2)."],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h4","page":214,"name":"Proficiencies","entries":["Your animal companion uses your level to determine its proficiency bonuses. It's trained in its unarmed attacks, unarmored defense, barding, all saving throws, Perception, {@skill Acrobatics}, and {@skill Athletics}. Animal companions can't use abilities that require greater Intelligence, such as Coerce or Decipher Writing, even if trained in the appropriate skill, unless they have a specialization that allows it."],"source":"CRB"},{"type":"pf2-h4","page":214,"name":"Ability Modifiers","entries":["An animal companion begins with base ability modifiers of {@b Str} +2, {@b Dex} +2, {@b Con} +1, {@b Int}–4, {@b Wis} +1, {@b Cha} +0. Each type has its own strengths and increases two of these modifiers by 1 each. These increases are already calculated into the stat blocks in Companion Types below."],"source":"CRB"},{"type":"pf2-h4","page":214,"name":"Hit Points","entries":["Your animal companion has ancestry Hit Points from its type, plus a number of Hit Points equal to 6 plus its Constitution modifier for each level you have."],"source":"CRB"},{"type":"pf2-h3","page":214,"name":"Mature Animal Companions","entries":["To advance a young animal companion to a mature animal companion (usually a result of one of your class feat choices), increase its Strength, Dexterity, Constitution, and Wisdom modifiers by 1. Increase its unarmed attack damage from one die to two dice (for instance 1d8 to 2d8), and its proficiency rank for Perception and all saving throws to expert. Increase its proficiency ranks in {@skill Intimidation}, {@skill Stealth}, and {@skill Survival} to trained, and if it was already trained in one of those skills from its type, increase its proficiency rank in that skill to expert. If your companion is Medium or smaller, it grows by one size."],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h3","page":214,"name":"Nimble Animal Companions","entries":["To advance a mature animal companion to a nimble animal companion, increase its Dexterity modifier by 2 and its Strength, Constitution, and Wisdom modifiers by 1. It deals 2 additional damage with its unarmed attacks. Increase its proficiency ranks in {@skill Acrobatics} and unarmored defense to expert. It also learns the advanced maneuver for its type. Its attacks become magical for the purpose of ignoring resistances."],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h3","page":214,"name":"Savage Animal Companions","entries":["To advance a mature animal companion to a savage animal companion, increase its Strength modifier by 2 and its Dexterity, Constitution, and Wisdom modifiers by 1. It deals 3 additional damage with its unarmed attacks. Increase its proficiency rank in {@skill Athletics} to expert. It also learns the advanced maneuver for its type. If your companion is Medium or smaller, it grows by one size. Its attacks become magical for the purpose of ignoring resistances."],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h3","page":214,"name":"Companion Types","entries":["The species of animal you choose is called your {@filter companion's type|companionsfamiliars||Type=Companion}. Each {@filter companion type|companionsfamiliars||Type=Companion} has its own statistics. The Size entry indicates your companion's starting size as a young animal companion. Following the size entry are the companion's unarmed attacks, and then its ability modifiers. The Hit Points entry indicates the companion's ancestry Hit Points. The Skill entry indicates an additional trained skill your companion has. The Senses entry lists your companion's special senses. The Speed entry gives your companion's Speeds. The Special entry, if present, lists any other special abilities your companion has, for example whether it often serves as a mount and is particularly appropriate for mounted classes, such as the champion.","The Support Benefit entry indicates a special benefit you gain by {@action Command an Animal||Commanding the Animal} to use the Support action (see below). The Advanced Maneuver entry indicates a powerful new action your companion learns how to use if it becomes a nimble or savage animal companion."],"source":"CRB"},{"type":"pf2-h3","page":217,"name":"Specialized Animal Companions","entries":["Specialized animal companions are more intelligent and engage in more complex behaviors. The first time an animal gains a specialization, it gains the following: Its proficiency rank for unarmed attacks increases to expert. Its proficiency ranks for saving throws and Perception increase to master.","Increase its Dexterity modifier by 1 and its Intelligence modifier by 2. Its unarmed attack damage increases from two dice to three dice, and it increases its additional damage with unarmed attacks from 2 to 4 or from 3 to 6.","Each specialization grants additional benefits. Most animal companions can have only one specialization.",{"type":"pf2-h4","page":217,"name":"Ambusher","entries":["In your companion's natural environment, it can use a Sneak action even if it's currently observed. Its proficiency rank in {@skill Stealth} increases to expert (or master if it was already an expert from its type), and its Dexterity modifier increases by 1. Its proficiency rank for unarmored defense increases to expert, or master if it's nimble."],"source":"CRB"},{"type":"pf2-h4","page":217,"name":"Bully","entries":["Your companion terrorizes foes with dominance displays and pushes them around the battlefield. Its proficiency ranks for {@skill Athletics} and {@skill Intimidation} increase to expert (or master if it was already expert from its type), its Strength modifier increases by 1, and its Charisma modifier increases by 3."],"source":"CRB"},{"type":"pf2-h4","page":217,"name":"Daredevil","entries":["Your companion joins the fray with graceful leaps and dives.","It gains the deny advantage ability, so it isn't {@condition flat-footed} to hidden, undetected, or flanking creatures unless such a creature's level is greater than yours. Its proficiency rank in {@skill Acrobatics} increases to master, and its Dexterity modifier increases by 1. Its proficiency rank in unarmored defense increases to expert, or master if it's nimble."],"source":"CRB"},{"type":"pf2-h4","page":217,"name":"Racer","entries":["Your companion races. It gains a +10-foot status bonus to its Speed, swim Speed, or fly Speed (your choice). Its proficiency in Fortitude saves increases to legendary, and its Constitution modifier increases by 1."],"source":"CRB"},{"type":"pf2-h4","page":217,"name":"Tracker","entries":["Your companion is an incredible tracker. It can move at full Speed while following tracks. Its proficiency rank in {@skill Survival} increases to expert (or master if it was already an expert from its type), and its Wisdom modifier increases by 1."],"source":"CRB"},{"type":"pf2-h4","page":217,"name":"Wrecker","entries":["Your companion smashes things. Its unarmed attacks ignore half an object's Hardness. Its {@skill Athletics} proficiency increases to master, and its Strength modifier increases by 1."],"source":"CRB"}],"data":{"quickrefIndex":true},"source":"CRB"}],"data":{"quickref":1},"source":"CRB"},{"type":"section","page":219,"name":"Archetypes","entries":[{"type":"pf2-h1-flavor","page":219,"entries":["{@i There are infinite possible character concepts, but you might find that the feats and skill choices from a single class aren't sufficient to fully realize your character. Archetypes allow you to expand the scope of your character's class.}"],"source":"CRB"},"Applying an archetype requires you to select archetype feats instead of class feats. Start by finding the archetype that best fits your character concept, and select the archetype's dedication feat using one of your class feat choices. Once you have the dedication feat, you can select any feat from that archetype in place of a class feat as long as you meet its prerequisites. The archetype feat you select is still subject to any selection restrictions on the class feat it replaces. For example, if you gained an ability at 6th level that granted you a 4th-level class feat with the dwarf trait, you could swap out that class feat only for an archetype feat of 4th level or lower with the dwarf trait. Archetype feats you gain in place of a class feat are called archetype class feats.","Occasionally, an archetype feat works like a skill feat instead of a class feat. These archetype feats have the skill trait, and you select them in place of a skill feat, otherwise following the same rules above. These are not archetype class feats (for instance, to determine the number of Hit Points you gain from the Fighter Resiliency archetype feat).","Each archetype's dedication feat represents a certain portion of your character's time and focus, so once you select a dedication feat for an archetype, you must satisfy its requirements before you can gain another dedication feat. Typically, you satisfy an archetype dedication feat by gaining a certain number of feats from the archetype's list. You cannot retrain a dedication feat as long as you have any other feats from that archetype.","Sometimes an archetype feat lets you gain another feat, such as the alchemist's basic concoction. You must always meet the prerequisites of the feat you gain in this way.","Two special kinds of archetypes are designated by the class and multiclass traits. The archetypes in this book are all multiclass archetypes.",{"type":"pf2-h3","page":219,"name":"Multiclass Archetypes","entries":["Archetypes with the multiclass trait represent diversifying your training into another class's specialties. You can't select a multiclass archetype's dedication feat if you are a member of the class of the same name (for instance, a fighter can't select the Fighter Dedication feat)."],"source":"CRB"},{"type":"pf2-h3","page":219,"name":"Class Archetypes","entries":["Archetypes with the class trait represent a fundamental divergence from your class's specialties, but one that exists within the context of your class. You can select a class archetype only if you are a member of the class of the same name. Class archetypes always alter or replace some of a class's static class features, in addition to any new feats they offer. It may be possible to take a class archetype at 1st level if it alters or replaces some of the class's initial class features.","In that case, you must take that archetype's dedication feat at 2nd level, and after that you proceed normally. You can never have more than one class archetype."],"source":"CRB"},{"type":"pf2-h4","page":219,"name":"Spellcasting Archetypes","entries":["Some archetypes grant you a substantial degree of spellcasting, albeit delayed compared to a character from a spellcasting class. In this book, the spellcasting archetypes are bard, cleric, druid, sorcerer, and wizard, the multiclass archetypes for the five main spellcasting classes, but future books might introduce spellcasting archetypes that aren't multiclass archetypes.","A spellcasting archetype allows you to use scrolls, staves, and wands in the same way that a member of a spellcasting class can.","Spellcasting archetypes always grant the ability to cast cantrips in their dedication, and then they have a basic spellcasting feat, an expert spellcasting feat, and a master spellcasting feat. These feats share their name with the archetype; for instance, the wizard's master spellcasting feat is called Master Wizard Spellcasting.","All spell slots you gain from spellcasting archetypes have restrictions depending on the archetype; for instance, the bard archetype grants you spell slots you can use only to cast occult spells from your bard repertoire, even if you are a sorcerer with occult spells in your sorcerer repertoire.","{@b Basic Spellcasting Feat:} Usually available at 4th level, these feats grant a 1st-level spell slot. At 6th level, they grant you a 2nd-level spell slot, and if you have a spell repertoire, you can select one spell from your repertoire as a signature spell. At 8th level, they grant you a 3rd-level spell slot. Archetypes refer to these benefits as the \"basic spellcasting benefits.\"","{@b Expert Spellcasting Feat:} Typically taken at 12th level, these feats make you an expert in spell attack rolls and DCs of the appropriate magical tradition and grant you a 4th-level spell slot. If you have a spell repertoire, you can select a second spell from your repertoire as a signature spell. At 14th level, they grant you a 5th-level spell slot, and at 16th level, they grant you a 6th-level spell slot. Archetypes refer to these benefits as the \"expert spellcasting benefits.\"","{@b Master Spellcasting Feat:} Usually found at 18th level, these feats make you a master in spell attack rolls and DCs of the appropriate magical tradition and grant you a 7th-level spell slot. If you have a spell repertoire, you can select a third spell from your repertoire as a signature spell. At 20th level, they grant you an 8th-level spell slot. Archetypes refer to these benefits as the \"master spellcasting benefits.\""],"data":{"quickrefIndex":true},"source":"CRB"},"{@note To view all Archetypes, please view the {@filter Archetypes page.|archetypes||source=CRB}}"],"data":{"quickref":1},"source":"CRB"},{"type":"section","page":19,"name":"Character Creation","entries":["Unless you're the GM, the first thing you need to do when playing Pathfinder is create your character. It's up to you to imagine your character's past experiences, personality, and worldview, and this will set the stage for your roleplaying during the game. You'll use the game's mechanics to determine your character's ability to perform various tasks and use special abilities during the game.","This section provides a step-by-step guide for creating a character using the Pathfinder rules, preceded by a guide to help you understand ability scores. These scores are a critical part of your character, and you will be asked to make choices about them during many of the following steps. The steps of character creation are presented in a suggested order, but you can complete them in whatever order you prefer.","Many of the steps on pages 21 –28 instruct you to fill out fields on your character sheet. The character sheet is shown on pages 24 –25; you can find a copy in the back of this book or online as a free pdf. The character sheet is designed to be easy to use when you're actually playing the game—but creating a character happens in a different order, so you'll move back and forth through the character sheet as you go through the character creation process. Additionally, the character sheet includes every field you might need, even though not all characters will have something to put in each field. If a field on your character sheet is not applicable to your character, just leave that field blank.","All the steps of character creation are detailed on the following pages; each is marked with a number that corresponds to the sample character sheet on pages 24 –25, showing you where the information goes. If the field you need to fill out is on the third or fourth page of the character sheet, which aren't shown, the text will tell you.","If you're creating a higher-level character, it's a good idea to begin with the instructions here, then turn to page 29 for instructions on leveling up characters.",{"type":"pf2-h3","page":19,"name":"The Six Ability Scores","entries":["One of the most important aspects of your character is their ability scores. These scores represent your character's raw potential and influence nearly every other statistic on your character sheet. Determining your ability scores is not done all at once, but instead happens over several steps during character creation.","Ability scores are split into two main groups: physical and mental. Strength, Dexterity, and Constitution are physical ability scores, measuring your character's physical power, agility, and stamina. In contrast, Intelligence, Wisdom, and Charisma are mental ability scores and measure your character's learned prowess, awareness, and force of personality.","Excellence in an ability score improves the checks and statistics related to that ability, as described below. When imagining your character, you should also decide what ability scores you want to focus on to give you the best chance at success.",{"type":"pf2-h4","page":19,"name":"Strength","entries":["Strength measures your character's physical power.","Strength is important if your character plans to engage in hand-to-hand combat. Your Strength modifier gets added to melee damage rolls and determines how much your character can carry."],"source":"CRB"},{"type":"pf2-h4","page":19,"name":"Dexterity","entries":["Dexterity measures your character's agility, balance, and reflexes. Dexterity is important if your character plans to make attacks with ranged weapons or use stealth to surprise foes. Your Dexterity modifier is also added to your character's AC and Reflex saving throws."],"source":"CRB"},{"type":"pf2-h4","page":19,"name":"Constitution","entries":["Constitution measures your character's overall health and stamina. Constitution is an important statistic for all characters, especially those who fight in close combat.","Your Constitution modifier is added to your Hit Points and Fortitude saving throws."],"source":"CRB"},{"type":"pf2-h4","page":19,"name":"Intelligence","entries":["Intelligence measures how well your character can learn and reason. A high Intelligence allows your character to analyze situations and understand patterns, and it means they can become trained in additional skills and might be able to master additional languages."],"source":"CRB"},{"type":"pf2-h4","page":19,"name":"Wisdom","entries":["Wisdom measures your character's common sense, awareness, and intuition. Your Wisdom modifier is added to your Perception and Will saving throws."],"source":"CRB"},{"type":"pf2-h4","page":19,"name":"Charisma","entries":["Charisma measures your character's personal magnetism and strength of personality. A high Charisma score helps you influence the thoughts and moods of others."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":20,"name":"Ability Score Overview","entries":["Each ability score starts at 10, representing human average, but as you make character choices, you'll adjust these scores by applying ability boosts, which increase a score, and ability flaws, which decrease a score. As you build your character, remember to apply ability score adjustments when making the following decisions.","{@b Ancestry:} Each ancestry provides ability boosts, and sometimes an ability flaw. If you are taking any voluntary flaws, apply them in this step (see the sidebar on page 24).","{@b Background:} Your character's background provides two ability boosts.","{@b Class:} Your character's class provides an ability boost to the ability score most important to your class, called your key ability score.","{@b Determine Scores:} After the other steps, you apply four more ability boosts of your choice. Then, determine your ability modifiers based on those scores.",{"type":"pf2-h4","page":20,"name":"Ability Boosts","entries":["An ability boost normally increases an ability score's value by 2. However, if the ability score to which you're applying an ability boost is already 18 or higher, its value increases by only 1. At 1st level, a character can never have any ability score that's higher than 18.","When your character receives an ability boost, the rules indicate whether it must be applied to a specific ability score or to one of two specific ability scores, or whether it is a \"free\" ability boost that can be applied to any ability score of your choice. However, when you gain multiple ability boosts at the same time, you must apply each one to a different score. Dwarves, for example, receive an ability boost to their Constitution score and their Wisdom score, as well as one free ability boost, which can be applied to any score other than Constitution or Wisdom."],"source":"CRB"},{"type":"pf2-h4","page":20,"name":"Ability Flaws","entries":["Ability flaws are not nearly as common in Pathfinder as ability boosts. If your character has an ability flaw—likely from their ancestry—you decrease that ability score by 2."],"source":"CRB"},{"type":"pf2-brown-box","page":20,"name":"ALTERNATIVE METHOD: ROLLING ABILITY SCORES","entries":["The standard method of generating ability scores that's described above works great if you want to create a perfectly customized, balanced character. But your GM may decide to add a little randomness to character creation and let the dice decide what kind of character the players are going to play. In that case, you can use this alternative method to generate your ability scores. Be warned—the same randomness that makes this system fun also allows it to sometimes create characters that are significantly more (or less) powerful than the standard ability score system and other Pathfinder rules assume.","If your GM opts for rolling ability scores, follow these alternative steps, ignoring all other instructions and guidelines about applying ability boosts and ability flaws throughout the character generation process.",{"type":"pf2-title","name":"STEP 1: ROLL AND ASSIGN SCORES"},"Roll four 6-sided dice (4d6) and discard the lowest die result.","Add the three remaining results together and record the sum.","(For example, if you rolled a 2, 4, 5, and 6, you would discard the 2 and your total would be 15.) Repeat this process until you've generated six such values. Decide which value you want for each of your ability scores.",{"type":"pf2-title","name":"STEP 2: ASSIGN ABILITY BOOSTS AND ABILITY FLAWS"},"Apply the ability boosts your character gains from their ancestry, but your character gets one fewer free ability boost than normal. If your character's ancestry has any ability flaws, apply those next. Finally, apply one ability boost to one of the ability scores specified in the character's background (you do not get the other free ability boost).","These ability boosts cannot raise a score above 18. If this would happen, you can put the ability boost into another ability score instead, as if it were a free ability boost, or you can put it into an ability score of 17 to reach 18 and lose the excess increase.",{"type":"pf2-title","name":"STEP 3: RECORD SCORES AND MODIFIERS"},"Record the final scores and assign the ability modifiers according to {@table ABILITY MODIFIERS||Table 1–1}. When your character receives additional ability boosts at higher levels, you assign them as any character would."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":20,"name":"Ability Modifiers","entries":["Once you've finalized your ability scores, you can use them to determine your ability modifiers, which are used in most other statistics in the game. Find the score in {@table ABILITY MODIFIERS||Table 1–1: Ability Modifiers} to determine its ability modifier.",{"type":"data","tag":"table","name":"Ability Modifiers","source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":21,"name":"Create a Concept","entries":["What sort of hero do you want to play? The answer to this question might be as simple as \"a brave warrior,\" or as complicated as \"the child of elven wanderers, but raised in a city dominated by humans and devoted to Sarenrae, goddess of the sun.\" Consider your character's personality, sketch out a few details about their past, and think about how and why they adventure. You'll want to peruse Pathfinder's available ancestries, backgrounds, and classes. The summaries on pages 22 –23 might help you match your concept with some of these basic rule elements. Before a game begins, it's also a good idea for the players to discuss how their characters might know each other and how they'll work together throughout the course of their adventures.","There are many ways to approach your character concept.","Once you have a good idea of the character you'd like to play, move on to Step 2 to start building your character.",{"type":"pf2-h3","page":21,"name":"Ancestry, Background, Class, or Details","entries":["If one of Pathfinder's character ancestries, backgrounds, or classes particularly intrigues you, it's easy to build a character concept around these options. The summaries of ancestries and classes on pages 22 –23 give a brief overview of these options (full details appear in Chapters 2 and 3, respectively). Each ancestry also has several heritages that might refine your concept further, such as a human with an elf or orc parent, or an arctic or woodland elf. Additionally, the game has many backgrounds to choose from, representing your character's upbringing, their family's livelihood, or their earliest profession. Backgrounds are detailed later in Chapter 2, beginning on page 60.","Building a character around a specific ancestry, background, or class can be a fun way to interact with the world's lore. Would you like to build a typical member of your character's ancestry or class, as described in the relevant entry, or would you prefer to play a character who defies commonly held notions about their people?","For example, you could play a dwarf with a wide-eyed sense of wonder and a zest for change, or a performing rogue capable of amazing acrobatic feats but with little interest in sneaking about.","You can draw your concept from any aspect of a character's details. You can use roleplaying to challenge not only the norms of Pathfinder's fictional world, but even real-life societal norms. Your character might challenge gender notions, explore cultural identity, have a disability, or any combination of these suggestions. Your character can live any life you see fit."],"source":"CRB"},{"type":"pf2-h3","page":21,"name":"Faith","entries":["Perhaps you'd like to play a character who is a devout follower of a specific deity. Pathfinder is a rich world with myriad faiths and philosophies spanning a wide range, from Cayden Cailean, the Drunken Hero of good-hearted adventuring; to Desna, the Song of Spheres and goddess of dreaming and the stars; to Iomedae, the Inheritor, goddess of honor, justice, and rulership. Pathfinder's major deities appear on pages 437–440. Your character might be so drawn to a particular faith that you decide they should be a champion or cleric of that deity; they might instead be a lay worshipper who applies their faith's teachings to daily life, or simply the child of devout parents."],"source":"CRB"},{"type":"pf2-brown-box","page":21,"name":"ANCESTRIES AND CLASSES","entries":["Each player takes a different approach to creating a character. Some want a character who will fit well into the story, while others look for a combination of abilities that complement each other mechanically. You might combine these two approaches. There is no wrong way!","When you turn the page, you'll see a graphical representation of ancestries and classes that provide at-aglance information for players looking to make the most of their starting ability scores. In the ancestries overview on page 22, each entry lists which ability scores it boosts, and also indicates any ability flaws the ancestry might have.","You can find more about ability boosts and ability flaws in Ability Scores on page 20.","The summaries of the classes on pages 22 –23 list each class's key ability score—the ability score used to calculate the potency of many of their class abilities. Characters receive an ability boost in that ability score when you choose their class. This summary also lists one or more secondary ability scores important to members of that class.","Keep in mind a character's background also affects their ability scores, though there's more flexibility in the ability boosts from backgrounds than in those from classes. For descriptions of the available backgrounds, see pages 60–64."],"source":"CRB"},{"type":"pf2-h3","page":21,"name":"Your Allies","entries":["You might want to coordinate with other players when forming your character concept. Your characters could have something in common already; perhaps they are relatives, or travelers from the same village. You might discuss mechanical aspects with the other players, creating characters whose combat abilities complement each other. In the latter case, it can be helpful for a party to include characters who deal damage, characters who can absorb damage, and characters who can provide healing.","However, Pathfinder's classes include a lot of choices, and there are many options for building each type of character, so don't let these broad categories restrict your decisions."],"source":"CRB"},{"type":"pf2-tips-box","page":21,"name":"CHARACTER SHEET","entries":["Once you've developed your character's concept, jot down a few sentences summarizing your ideas under the Notes section on the third page of your character sheet. Record any of the details you've already decided, such as your character's name, on the appropriate lines on the first page."],"source":"CRB"}],"step":"1","source":"CRB"},{"type":"pf2-h2","page":21,"name":"Start Building Ability Scores","entries":["At this point, you need to start building your character's ability scores. See the overview of ability scores on pages 19 –20 for more information about these important aspects of your character and an overview of the process.","Your character's ability scores each start at 10, and as you select your ancestry, background, and class, you'll apply ability boosts, which increase a score by 2, and ability flaws, which decrease a score by 2. At this point, just note a 10 in each ability score and familiarize yourself with the rules for ability boosts and flaws on page 20. This is also a good time to identify which ability scores will be most important to your character. See The Six Ability Scores on page 19 and the class summaries on pages 22 –23 for more information."],"step":"2","source":"CRB"},{"type":"pf2-h2","page":21,"name":"Select an Ancestry","entries":["Select an ancestry for your character. The ancestry summaries on page 22 provide an overview of Pathfinder's core ancestry options, and each is fully detailed in Chapter 2. Ancestry determines your character's size, Speed, and languages, and contributes to their Hit Points.","Each also grants ability boosts and ability flaws to represent the ancestry's basic capabilities.","You'll make four decisions when you select your character's ancestry:",{"type":"list","items":["Pick the ancestry itself.","Assign any free ability boosts and decide if you are taking any voluntary flaws.","Select a heritage from those available within that ancestry, further defining the traits your character was born with.","Choose an ancestry feat, representing an ability your hero learned at an early age."]},{"type":"pf2-tips-box","page":21,"name":"CHARACTER SHEET","entries":["Write your character's ancestry and heritage in the appropriate space at the top of your character sheet's first page. Adjust your ability scores, adding 2 to an ability score if you gained an ability boost from your ancestry, and subtracting 2 from an ability score if you gained an ability flaw from your ancestry. Note the number of Hit Points your character gains from their ancestry—you'll add more to this number later. Finally, in the appropriate spaces, record your character's size, Speed, and languages. If your character's ancestry provides them with special abilities, write them in the appropriate spaces, such as {@ability darkvision} in the Senses"],"source":"CRB"}],"step":"3","source":"CRB"},{"type":"pf2-h2","page":21,"name":"Pick a Background","entries":["Your character's background might represent their upbringing, an aptitude they've been honing since their youth, or another aspect of their life before they became an adventurer. Character backgrounds appear in Chapter 2, starting on page 60. They typically provide two ability boosts (one that can be applied to either of two specific ability scores, and one that is free), training in a specific skill, training in a Lore skill, and a specific skill feat.",{"type":"pf2-tips-box","page":21,"name":"CHARACTER SHEET","entries":["Record your character's background in the space at the top of the first page of your character sheet. Adjust your ability scores, adding 2 to an ability score if you gained an ability boost from your background. Record the skill feat the background provides in the Skill Feat section of your character sheet's second page. On the first page, check the \"T\" box next to the name of the specific skill and for one Lore skill to indicate your character is trained, then write the name of the Lore skill granted by your background."],"source":"CRB"}],"step":"4","source":"CRB"},{"type":"pf2-h2","page":21,"name":"Choose a Class","entries":["At this point, you need to decide your character's class.","A class gives your character access to a suite of heroic abilities, determines how effectively they fight, and governs how easily they can shake off or avoid certain harmful effects. Each class is fully detailed in Chapter 3, but the summaries on pages 22 –23 provide an overview of each and tells you which ability scores are important when playing that class.","You don't need to write down all of your character's class features yet. You simply need to know which class you want to play, which determines the ability scores that will be most important for your character.",{"type":"pf2-tips-box","page":21,"name":"CHARACTER SHEET","entries":["Write your character's class in the space at the top of the first page of your character sheet, then write \"1\" in the Level box to indicate that your character is 1st level. Next to the ability scores, note the class's key ability score, and add 2 to that ability score from the ability boost the class provides. Don't worry about recording the rest of your character's class features and abilities yet—you'll handle that in Step 7."],"source":"CRB"}],"step":"5","source":"CRB"},{"type":"pf2-h2","page":26,"name":"Determine Ability Scores","entries":[{"type":"pf2-sidebar","page":26,"name":"OPTIONAL: VOLUNTARY FLAWS","entries":["Sometimes, it's fun to play a character with a major flaw even if you're not playing an ancestry that imposes one. You can elect to take two additional ability flaws when applying the ability boosts and ability flaws from your ancestry. If you do, you can also apply one additional free ability boost. These ability flaws can be assigned to any ability score you like, but you can't apply more than one ability flaw to the same ability score during this step unless you apply both of the additional ability flaws to a score that is already receiving an ability boost during this step. In this case, the first ability flaw cancels the ability boost, and the second ability flaw decreases the score by 2. Likewise, as an exception to the normal rules for ability boosts, you can apply two free ability boosts to an ability score receiving an ability flaw during this step; the first ability boost cancels the ability flaw, and the second ability boost increases the score by 2. For example, a dwarf normally gets an ability boost to Constitution and Wisdom, along with an ability flaw to Charisma.","You could apply one ability flaw each to Intelligence and Strength, or you could apply both ability flaws to Wisdom. You could not apply either additional ability flaw to Charisma, though, because it is already receiving dwarves' ability flaw during this step."],"source":"CRB"},"Now that you've made the main mechanical choices about your character, it's time to finalize their ability scores. Do these three things:",{"type":"list","items":["First, make sure you've applied all the ability boosts and ability flaws you've noted in previous steps (from your ancestry, background, and class).","Then, apply four more ability boosts to your character's ability scores, choosing a different ability score for each and increasing that ability score by 2.","Finally, record your starting ability scores and ability modifiers, as determined using {@table ABILITY MODIFIERS||Table 1–1: Ability Modifiers}."]},"Remember that each ability boost adds 2 to the base score of 10, and each ability flaw subtracts 2. You should have no ability score lower than 8 or higher than 18.",{"type":"pf2-tips-box","page":26,"name":"CHARACTER SHEET","entries":["Write your character's starting ability scores in the box provided for each. Record the ability modifier for each ability score in the box to the left of the ability's name."],"source":"CRB"}],"step":"6","source":"CRB"},{"type":"pf2-h2","page":26,"name":"Record Class Details","entries":["Now, record all the benefits and class features that your character receives from the class you've chosen. While you've already noted your key ability score, you'll want to be sure to record the following class features.",{"type":"pf2-sidebar","page":27,"name":"SPELLS AND SPELLCASTING","entries":["Most classes can learn to cast a few focus spells, but the bard, cleric, druid, sorcerer, and wizard all gain spellcasting—the ability to cast a wide variety of spells.","If your character's class grants spells, you should take time during Step 7 to learn about the spells they know and how to cast them. The fourth page of the character sheet provides space to note your character's magic tradition and their proficiency rank for spell attack rolls and spell DCs. It also gives ample space to record the spells in your character's repertoire or spellbook, or that you prepare frequently. Each class determines which spells a character can cast, how they are cast, and how many they can cast in a day, but the spells themselves and detailed rules for spellcasting are located in Chapter 7."],"source":"CRB"},{"type":"list","items":["To determine your character's total starting Hit Points, add together the number of Hit Points your character gains from their ancestry (chosen in Step 2) and the number of Hit Points they gain from their class.","The Initial Proficiencies section of your class entry indicates your character's starting proficiency ranks in a number of areas. Choose which skills your character is trained in and record those, along with the ones set by your class. If your class would make you trained in a skill you're already trained in (typically due to your background), you can select another skill to become trained in.","See the class advancement table in your class entry to learn the class features your character gains at 1st level—but remember, you already chose an ancestry and background. Some class features require you to make additional choices, such as selecting spells."]},{"type":"pf2-tips-box","page":26,"name":"CHARACTER SHEET","entries":["Write your character's total Hit Points on the first page of your character sheet. Use the proficiency fields (the boxes marked \"T,\" \"E,\" \"M,\" and \"L\") on your character sheet to record your character's initial proficiencies in Perception, saving throws, and the skills granted by their class; mark \"T\" if your character is trained, or \"E\" if your character is expert. Indicate which additional skills you chose for your character to be trained in by marking the \"T\" proficiency box for each skill you selected. Likewise, record your character's their armor proficiencies in the Armor Class section at the top of the first page and their weapon proficiencies at the bottom of the first page. Record all other class feats and abilities on the second page. Don't worry yet about finalizing any values for your character's statistics—you'll handle that in Step 9."],"source":"CRB"}],"step":"7","source":"CRB"},{"type":"pf2-h2","page":27,"name":"Buy Equipment","entries":["At 1st level, your character has 15 gold pieces (150 silver pieces) to spend on armor, weapons, and other basic equipment. Your character's class lists the types of weapons and armor with which they are trained (or better!). Their weapons determine how much damage they deal in combat, and their armor influences their Armor Class; these calculations are covered in more detail in Step 10. Don't forget essentials such as food and traveling gear! For more on the available equipment and how much it costs, see Chapter 6.",{"type":"pf2-tips-box","page":27,"name":"CHARACTER SHEET","entries":["Once you've spent your character's starting wealth, calculate any remaining gp, sp, and cp they might still have and write those amounts in Inventory on the second page. Record your character's weapons in the Melee Strikes and Ranged Strikes sections of the first page, depending on the weapon, and the rest of their equipment in the Inventory section on your character sheet's second page. You'll calculate specific numbers for melee Strikes and ranged Strikes with the weapons in Step 9 and for AC when wearing that armor in Step 10."],"source":"CRB"}],"step":"8","source":"CRB"},{"type":"pf2-h2","page":27,"name":"Calculate Modifiers","entries":["With most of the big decisions for your character made, it's time to calculate the modifiers for each of the following statistics. If your proficiency rank for a statistic is trained, expert, master, and legendary, your bonus equals your character's level plus another number based on the rank (2, 4, 6, and 8, respectively). If your character is untrained, your proficiency bonus is +0.",{"type":"pf2-h3","page":27,"name":"Perception","entries":["Your character's Perception modifier measures how alert they are. This modifier is equal to their proficiency bonus in Perception plus their Wisdom modifier. For more about Perception, see page 448."],"source":"CRB"},{"type":"pf2-h3","page":27,"name":"Saving Throws","entries":["For each kind of saving throw, add your character's Fortitude, Reflex, or Will proficiency bonus (as appropriate) plus the ability modifier associated with that kind of saving throw. For Fortitude saving throws, use your character's Constitution modifier. For Reflex saving throws, use your character's Dexterity modifier. For Will saving throws, use your character's Wisdom modifier. Then add in any bonuses or penalties from abilities, feats, or items that always apply (but not modifiers, bonuses, or penalties that apply only in certain situations). Record this number on the line for that saving throw."],"source":"CRB"},{"type":"pf2-h3","page":27,"name":"Melee Strikes and Ranged Strikes","entries":["Next to where you've written your character's melee and ranged weapons, calculate the modifier to Strike with each weapon and how much damage that Strike deals. The modifier for a Strike is equal to your character's proficiency bonus with the weapon plus an ability modifier (usually Strength for melee Strikes and Dexterity for ranged Strikes).","You also add any item bonus from the weapon and any other permanent bonuses or penalties. You also need to calculate how much damage each weapon's Strike deals.","Melee weapons usually add your character's Strength modifier to damage rolls, while ranged weapons might add some or all of your character's Strength modifier, depending on the weapon's traits. See the weapon entries in Chapter 6 for more information."],"source":"CRB"},{"type":"pf2-h3","page":28,"name":"Skills","entries":["In the second box to the right of each skill name on your character sheet, there's an abbreviation that reminds you of the ability score tied to that skill. For each skill in which your character is trained, add your proficiency bonus for that skill (typically +3 for a 1st-level character) to the indicated ability's modifier, as well as any other applicable bonuses and penalties, to determine the total modifier for that skill. For skills your character is untrained in, use the same method, but your proficiency bonus is +0."],"source":"CRB"},{"type":"pf2-tips-box","page":28,"name":"CHARACTER SHEET","entries":["For Perception and saving throws, write your proficiency bonus and the appropriate ability modifier in the boxes provided, then record the total modifier in the large space.","Record the proficiency bonuses, ability modifiers, and total modifiers for your melee Strikes and ranged Strikes in the box after the name of each weapon, and put the damage for each in the space below, along with the traits for that attack. For skills, record the relevant ability modifier and proficiency bonus in the appropriate box for each skill, and then write the total skill modifiers in the spaces to the left.","If your character has any modifiers, bonuses, or penalties from feats or abilities that always apply, add them into the total modifiers. For ones that apply only in certain situations, note them next to the total modifiers."],"source":"CRB"}],"step":"9","source":"CRB"},{"type":"pf2-h2","page":28,"name":"Finishing Details","entries":["Now add the following details to your character sheet in the appropriate spaces.",{"type":"pf2-h3","page":28,"name":"Alignment","entries":["Your character's alignment is an indicator of their morality and personality. There are nine possible alignments in Pathfinder, as shown on Table 1 –2: The Nine Alignments. If your alignment has any components other than neutral, your character gains the traits of those alignment components. This might affect the way various spells, items, and creatures interact with your character.","Your character's alignment is measured by two pairs of opposed values: the axis of good and evil and the axis of law and chaos. A character who isn't committed strongly to either side is neutral on that axis. Keep in mind that alignment is a complicated subject, and even acts that might be considered good can be used for nefarious purposes, and vice versa. The GM is the arbiter of questions about how specific actions might affect your character's alignment.","If you play a champion, your character's alignment must be one allowed for their deity and cause (pages 437–440 and 106–107), and if you play a cleric, your character's alignment must be one allowed for their deity (pages 437–440).",{"type":"pf2-h4","page":29,"name":"Good and Evil","entries":["Your character has a good alignment if they consider the happiness of others above their own and work selflessly to assist others, even those who aren't friends and family. They are also good if they value protecting others from harm, even if doing so puts the character in danger. Your character has an evil alignment if they're willing to victimize others for their own selfish gain, and even more so if they enjoy inflicting harm. If your character falls somewhere in the middle, they're likely neutral on this axis."],"source":"CRB"},{"type":"pf2-h4","page":29,"name":"Law and Chaos","entries":["Your character has a lawful alignment if they value consistency, stability, and predictability over flexibility.","Lawful characters have a set system in life, whether it's meticulously planning day-to-day activities, carefully following a set of official or unofficial laws, or strictly adhering to a code of honor. On the other hand, if your character values flexibility, creativity, and spontaneity over consistency, they have a chaotic alignment—though this doesn't mean they make decisions by choosing randomly.","Chaotic characters believe that lawful characters are too inflexible to judge each situation by its own merits or take advantage of opportunities, while lawful characters believe that chaotic characters are irresponsible and flighty.","Many characters are in the middle, obeying the law or following a code of conduct in many situations, but bending the rules when the situation requires it. If your character is in the middle, they are neutral on this axis."],"source":"CRB"},{"type":"pf2-h4","page":29,"name":"Changing Alignment","entries":["Alignment can change during play as a character's beliefs change, or as you realize that your character's actions reflect a different alignment than the one on your character sheet. In most cases, you can just change their alignment and continue playing. However, if you play a cleric or champion and your character's alignment changes to one not allowed for their deity (or cause, for champions), your character loses some of their class abilities until they atone (as described in the class)."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":29,"name":"Deity","entries":["Write down the deity your character worships, if any.","Champions and clerics must worship a deity. See pages 437–440 for more about Pathfinder's deities."],"source":"CRB"},{"type":"pf2-h3","page":29,"name":"Age","entries":["Decide your character's age and note it on the third page of the character sheet. The description for your character's ancestry in Chapter 2 gives some guidance on the age ranges of members of that ancestry. Beyond that, you can play a character of whatever age you like. There aren't any mechanical adjustments to your character for being particularly old, but you might want to take it into account when considering your starting ability scores and future advancement. Particularly young characters can change the tone of some of the game's threats, so it's recommended that characters are at least young adults."],"source":"CRB"},{"type":"pf2-h3","page":29,"name":"Gender and Pronouns","entries":["Characters of all genders are equally likely to become adventurers. Record your character's gender, if applicable, and their pronouns on the third page of the character sheet."],"source":"CRB"},{"type":"pf2-h3","page":29,"name":"Class DC","entries":["A class DC sets the difficulty for certain abilities granted by your character's class. This DC equals 10 plus their proficiency bonus for their class DC (+3 for most 1st-level characters) plus the modifier for the class's key ability score."],"source":"CRB"},{"type":"pf2-h3","page":29,"name":"Hero Points","entries":["Your character usually begins each game session with 1 Hero Point, and you can gain additional Hero Points during sessions by performing heroic deeds or devising clever strategies. Your character can use Hero Points to gain certain benefits, such as staving off death or rerolling a d20. See page 467 for more about Hero Points."],"source":"CRB"},{"type":"pf2-h3","page":29,"name":"Armor Class (AC)","entries":["Your character's Armor Class represents how difficult they are to hit in combat. To calculate your AC, add 10 plus your character's Dexterity modifier (up to their armor's Dexterity modifier cap; page 274), plus their proficiency bonus with their armor, plus their armor's item bonus to AC and any other permanent bonuses and penalties."],"source":"CRB"},{"type":"pf2-h3","page":29,"name":"Bulk","entries":["Your character's maximum Bulk determines how much weight they can comfortably carry. If they're carrying a total amount of Bulk that exceeds 5 plus their Strength modifier, they are encumbered. A character can't carry a total amount of Bulk that exceeds 10 plus their Strength modifier. The Bulk your character is carrying equals the sum of all of their items; keep in mind that 10 light items make up 1 Bulk. You can find out more about Bulk in Chapter 6: Equipment."],"source":"CRB"}],"step":"10","source":"CRB"}],"data":{"quickref":1},"source":"CRB"},{"type":"section","page":487,"name":"Characters With Disabilities","entries":["A player might want to create a character with a disability, or their character might end up with a disability over the course of play. Work with the player to find ways to respectfully represent the disability. Conditions such as blinded and deafened aren't a good fit for a character who has been living with a disability long-term. Here are suggestions for rules you might use for PCs with disabilities.",{"type":"pf2-h3","name":"Blindness or Impaired Vision"},"A blind character can't detect anything using vision, critically fails {@skill Perception} checks requiring sight, is immune to {@trait visual} effects, and can't be {@condition blinded} or {@condition dazzled}. You might give this character the {@feat Blind-Fight (Fighter)||Blind-Fight} feat for free.","A character with impaired vision might take a –2 to –4 penalty to vision-based {@skill Perception} checks. {@item Basic Corrective Lenses|LOTGB|Spectacles} or {@filter other corrective devices|items||source=|type=|Subcategory=Vision} might reduce or remove this.",{"type":"pf2-h3","name":"Deafness or Being Hard of Hearing"},"A deaf character can't detect anything using hearing, critically fails {@skill Perception} checks that require hearing, and is immune to {@trait auditory} effects. They have enough practice to supply verbal components for casting spells and command components for activating magic items, but if they perform an action they're not accustomed to that involves auditory elements, they must succeed at a DC {@flatDC 5} flat check or the action is lost. It's best to give them the {@feat Sign Language} feat for free, and you might give them {@feat Read Lips} as well. You might give one or more other characters in the group {@feat Sign Language} for free as well.","A hard-of-hearing character might take a –2 to –4 penalty to {@skill Perception} checks that are hearing-based. {@filter Corrective devices for hearing|items||Subcategory=Hearing} are less common than spectacles are in a typical Pathfinder world.",{"type":"pf2-h3","name":"Missing Limb"},"Some magic items require certain limbs or other body parts. It's fine to allow an alternative form of the item, turning boots into bracers for a character without legs, for example.","A character with a missing hand or arm might need to spend 2 actions to {@action Interact} with an item that requires two hands, or otherwise compensate. Using a two-handed weapon is not possible. A character can acquire a {@filter prosthetic hand or arm|items||source=|type=|subcategory=prosthesis} to compensate.","Someone missing a foot or leg might take a small penalty to Speed, but can typically acquire a prosthetic to compensate. If they have no legs, they might use a {@filter wheelchair|items||source=|type=|subcategory=wheelchair}, a dependable mount, or levitation or flight magic.",{"type":"pf2-h3","name":"Mental Illness and Chronic Illness"},"Some disabilities, such as mental illness and chronic illnesses, are best left to the player to roleplay. Mental illness is an especially fraught topic, with a history of insensitive portrayal. Be careful about the intentions of the player and the impact the presentation might have on other players."],"data":{"quickref":1},"source":"CRB"},{"type":"section","page":217,"name":"Familiars","entries":["Familiars are mystically bonded creatures tied to your magic. Most familiars were originally animals, though the ritual of becoming a familiar makes them something more. You can choose a Tiny animal you want as your familiar, such as a bat, cat, raven, or snake. Some familiars are different, usually described in the ability that granted you a familiar; for example, a druid's leshy familiar is a Tiny plant instead of an animal, formed from a minor nature spirit.","Familiars have the minion trait (page 634), so during an encounter, they gain 2 actions in a round if you spend an action to command them. If your familiar dies, you can spend a week of downtime to replace it at no cost.","You can have only one familiar at a time.",{"type":"pf2-h3","page":217,"name":"Modifiers and AC","entries":["Your familiar's save modifiers and AC are equal to yours before applying circumstance or status bonuses or penalties. Its Perception, {@skill Acrobatics}, and {@skill Stealth} modifiers are equal to your level plus your spellcasting ability modifier (Charisma if you don't have one, unless otherwise specified). If it attempts an attack roll or other skill check, it uses your level as its modifier. It doesn't have or use its own ability modifiers and can never benefit from item bonuses."],"source":"CRB"},{"type":"pf2-h3","page":217,"name":"Hit Points","entries":["Your familiar has 5 Hit Points for each of your levels."],"source":"CRB"},{"type":"pf2-h3","page":218,"name":"Size","entries":["Your familiar is Tiny."],"source":"CRB"},{"type":"pf2-h3","page":218,"name":"Senses","entries":["Your familiar has {@ability low-light vision} and can gain additional senses from familiar abilities. It can communicate empathically with you as long as it's within 1 mile of you, sharing emotions. It doesn't understand or speak languages normally, but it can gain speech from a familiar ability."],"source":"CRB"},{"type":"pf2-h3","page":218,"name":"Movement","entries":["Your familiar has either a Speed of 25 feet or a swim Speed of 25 feet (choose one upon gaining the familiar).","It can gain other movement types from familiar abilities."],"source":"CRB"},{"type":"pf2-h3","page":218,"name":"Familiar and Master Abilities","entries":["Each day, you channel your magic into two abilities, which can be either familiar or master abilities. If your familiar is an animal that naturally has one of these abilities (for instance, an owl has a fly Speed), you must select that ability. Your familiar can't be an animal that naturally has more familiar abilities than your daily maximum familiar abilities.",{"type":"pf2-h4","page":218,"name":"Familiar Abilities","entries":[{"type":"pf2-options","style":"pf2-p text-indent-subsequent block","items":[{"name":"Amphibious","entries":["It gains a swim Speed of 25 feet (or Speed of 25 feet if it already has a swim Speed)."]},{"name":"Burrower","entries":["It gains a burrow Speed of 5 feet, allowing it to dig Tiny holes."]},{"name":"Climber","entries":["It gains a climb Speed of 25 feet."]},{"name":"Damage Avoidance","entries":["Choose one type of save. It takes no damage when it succeeds at that type of save; this doesn't prevent effects other than damage."]},{"name":"Darkvision","entries":["It gains {@ability darkvision}."]},{"name":"Fast Movement","entries":["Increase one of the familiar's Speeds from 25 feet to 40 feet."]},{"name":"Flier","entries":["It gains a fly Speed of 25 feet."]},{"name":"Kinspeech","entries":["It can understand and speak with animals of the same species. To select this, your familiar must be an animal, it must have the speech ability, and you must be at least 6th level."]},{"name":"Lab Assistant","entries":["It can use your Quick Alchemy action. You must have Quick Alchemy, and your familiar must be in your space. This has the same cost and requirement as if you used it. It must have the manual dexterity ability to select this."]},{"name":"Manual Dexterity","entries":["It can use up to two of its limbs as if they were hands to use manipulate actions."]},{"name":"Scent","entries":["It gains {@ability scent} (imprecise, 30 feet)."]},{"name":"Speech","entries":["It understands and speaks a language you know."]}]}],"source":"CRB"},{"type":"pf2-h4","page":218,"name":"Master Abilities","entries":[{"type":"pf2-options","style":"pf2-p text-indent-subsequent block","items":[{"name":"Cantrip Connection","entries":["You can prepare an additional cantrip, or if you have a repertoire, instead designate a cantrip to add to your repertoire every time you select this ability; you can retrain it but can't otherwise change it. You must be able to prepare cantrips or add them to your repertoire to select this."]},{"name":"Extra Reagents","entries":["Your familiar grows extra infused reagents on or in its body. You gain an additional batch of infused reagents. You must have the infused reagents ability to select this ability."]},{"name":"Familiar Focus","entries":["Once per day, your familiar can use 2 actions with the {@trait concentrate} to regain 1 Focus Point, up to your usual maximum You must have a focus pool to select this."]},{"name":"Lifelink","entries":["If your familiar would be reduced to 0 HP by damage, as a reaction with the {@trait concentrate}, you can take the damage. If you do, you take all the damage and your familiar takes none. However, if special effects when a hit damages your familiar (such as snake venom) still apply to your familiar."]},{"name":"Spell Battery","entries":["You gain one additional spell slot at least 3 levels lower than your highest-level spell slot; you must be able to cast 4th-level spells using spell slots to select this master ability."]},{"name":"Spell Delivery","entries":["If your familiar is in your space, you can cast a spell with a range of touch, transfer its power to your familiar, and command the familiar to deliver the spell. If you do, the familiar uses its 2 actions for the round to move to a target of your choice and touch that target. If it doesn't reach the target to touch it this turn, the spell has no effect."]}]}],"source":"CRB"}],"source":"CRB"}],"data":{"quickref":1},"source":"CRB"},{"type":"section","page":31,"name":"Leveling Up","entries":["The world of Pathfinder is a dangerous place, and your character will face terrifying beasts and deadly traps on their journey into legend. With each challenge resolved, a character earns Experience Points (XP) that allow them to increase in level. Each level grants greater skill, increased resiliency, and new capabilities, allowing your character to face even greater challenges and go on to earn even more impressive rewards.","Each time your character reaches 1,000 Experience Points, their level increases by 1. On your character sheet, indicate your character's new level beside the name of their class, and deduct 1,000 XP from their XP total. If you have any Experience Points left after this, record them—they count toward your next level, so your character is already on their way to advancing yet again!","Next, return to your character's class entry. Increase your character's total Hit Points by the number indicated for your class. Then, take a look at the class advancement table and find the row for your character's new level.","Your character gains all the abilities listed for that level, including new abilities specific to your class and additional benefits all characters gain as they level up.","For example, all characters gain four ability boosts at 5th level and every 5 levels thereafter.","You can find all the new abilities specific to your class, including class feats, right in your class entry, though you can also use class feats to take an archetype (page 219).","Your character's class entry also explains how to apply any ability boosts and skill increases your character gains.","If they gain an ancestry feat, head back to the entry for your character's ancestry in Chapter 2 and select another ancestry feat from the list of options. If they gain a skill increase, refer to Chapter 4 when deciding which skill to apply it to. If they gain a general feat or a skill feat, you can choose from the feats listed in Chapter 5. If they can cast spells, see the class entry for details on adding spell slots and spells. It's also a good idea to review your character's spells in Chapter 7 and see if there are heightened versions they can now cast.","Once you've made all your choices for your character's new level, be sure to go over your character sheet and adjust any values that have changed. At a bare minimum, your proficiency bonuses all increase by 1 because you've gained a level, so your AC, attack rolls, Perception, saving throws, skill modifiers, spell attack rolls, and class DC all increase by at least 1. You might need to change other values because of skill increases, ability boosts, or class features that either increase your proficiency rank or increase other statistics at certain levels. If an ability boost increases your character's Constitution modifier, recalculate their maximum Hit Points using their new Constitution modifier (typically this adds 1 Hit Point per level). If an ability boost increases your character's Intelligence modifier, they become trained in an additional skill and language.","Some feats grant a benefit based on your level, such as Toughness, and these benefits are adjusted whenever you gain a level as well.","You can perform the steps in the leveling-up process in whichever order you want. For example, if you wanted to take the skill feat Intimidating Prowess as your skill feat at 10th level, but your character's Strength score was only 14, you could first increase their Strength score to 16 using the ability boosts gained at 10th level, and then take Intimidating Prowess as a skill feat at the same level.",{"type":"pf2-h3","page":31,"name":"Leveling-Up Checklist","entries":["Every time you gain a level, make sure you do each of the following:",{"type":"list","items":["Increase your level by 1 and subtract 1,000 XP from your XP total.","Increase your maximum Hit Points by the amount listed in your class entry in Chapter 3.","Add class features from your class advancement table, including ability boosts and skill increases.","Select feats as indicated on your class advancement table. For ancestry feats, see Chapter 2. For class feats, see your class entry in Chapter 3. For general feats and skill feats, see Chapter 5.","Add spells and spell slots if your class grants spellcasting. See Chapter 7 for spells.","Increase all of your proficiency bonuses by 1 from your new level, and make other increases to your proficiency bonuses as necessary from skill increases or other class features. Increase any other statistics that changed as a result of ability boosts or other abilities.","Adjust bonuses from feats and other abilities that are based on your level."]}],"source":"CRB"}],"data":{"quickref":1},"source":"CRB"}]},{"type":"entries","entries":[{"type":"section","page":532,"name":"Activating Items","entries":["Some items produce their effects only when used properly in the moment. Others always offer the same benefits as their mundane counterparts when worn, but have magical abilities you can gain by further spending actions. Either case requires you to use the Activate an Item activity. {@action Activate an Item||Activating an Item} works much like {@action Cast a Spell||Casting a Spell}, in that the activity takes a variable number of actions and can have different components depending on how you Activate the Item. This information appears in the item's Activate entry.","If an item is used up when activated, as is the case for consumable items, its Activate entry appears toward the top of the stat block. For permanent items with activated abilities, the Activate entry is a paragraph in the description. Activations are not necessarily magical—for instance, drinking an alchemical elixir isn't usually a magical effect.",{"type":"data","tag":"action","name":"Activate an Item","source":"CRB"},{"type":"pf2-brown-box","page":532,"name":"DISRUPTING ACTIVATIONS","entries":["Some abilities and effects can disrupt the process of {@action Activate an Item||Activating an Item}. If something disrupts your item activation, you fail to Activate the Item and lose the actions you committed. If the item can be activated only a certain number of times per day, the failed activation still counts against that limit. If an item requires you to spend actions to Sustain an Activation and one of those actions is disrupted, the item's effect ends."],"source":"CRB"},{"type":"pf2-h3","page":533,"name":"Activation Components","entries":["An item's activate entry lists the components required to activate its abilities. Each component adds certain traits to the Activate an Item activity, and some components have special requirements. The components that appear in this book are listed below.",{"type":"pf2-h4","page":533,"name":"Command","entries":["This component is a specific utterance you must make in a loud and strong voice. Activate an Item gains the auditory and {@trait concentrate}s. You must be able to speak to provide this component."],"source":"CRB"},{"type":"pf2-h4","page":533,"name":"Envision","entries":["This component is a specific image or phenomenon you need to imagine. Activate an Item gains the {@trait concentrate}."],"source":"CRB"},{"type":"pf2-h4","page":533,"name":"Interact","entries":["This component works like the Interact basic action.","Activate an Item gains the manipulate trait and requires you to use your hands, just like with any Interact action."],"source":"CRB"},{"type":"pf2-h4","page":533,"name":"Cast a Spell","entries":["If an item lists \"{@action Cast a Spell}\" after \"Activate,\" the activation requires you to use the {@action Cast a Spell} activity (described on page 302) to Activate the Item. This happens when the item replicates a spell. You must have a spellcasting class feature to Activate an Item with this activation component.","If the item can be used for a specific spell, the action icon for that spell is provided. If it's an item like a staff, which can be used for many spells, the icon is omitted, and you must refer to each spell to determine which actions you must spend to Activate the Item to cast it.","In this case, Activate an Item gains all the traits from the relevant components of the {@action Cast a Spell} activity."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":533,"name":"Limited Activations","entries":["Some items can be activated only a limited number of times per day, as described in the items. This limit is independent of any costs for activating the item. The limit resets during your daily preparations. The limit is inherent to the item, so if an ability that can be used only once per day is used, it doesn't refresh if another creature later invests or tries to activate the item."],"source":"CRB"},{"type":"pf2-brown-box","page":533,"name":"ITEM CATEGORIES","entries":["Items are grouped into the following categories, shown here with the page number where those items appear and a brief description of the category.",{"type":"list","items":["{@b {@filter Alchemical Items|items||source=CRB|category=Bomb;Poison;Elixir}} are powered by the reactions of alchemical reagents. Almost all alchemical items are consumable items that are used up when you activate them. This category includes bombs, elixirs (including mutagens), poisons, and alchemical tools.","{@b {@filter Ammunition|items||source=CRB|category=Ammunition}}, in Consumables, includes different types of magical arrows, crossbow bolts, and other types of ammunition.","{@b {@filter Apex Items|items||source=CRB|category=Apex}} are a subcategory of worn items of a high level that increase an ability score.","{@b {@filter Armor|items||source=CRB|category=armor}} includes the rules for basic magical armor as well as special suits of armor.","{@b {@filter Companion Items|items||source=CRB|category=companion}} are a category of worn items meant for animal companions and mounts.","{@b {@filter Consumables|items||source=CRB|category=consumable}} are used up when you activate them, and include ammunition, oils, potions, scrolls, and talismans, among others. Categories of items that are consumables but have specific rules, such as alchemical items, are presented separately.","{@b {@filter Held Items|items||source=CRB|category=held}} include a wide variety of items you use with your hands. This doesn't include more narrow categories of held items, such as weapons.","{@b {@filter Materials|items||source=CRB|category=material}} can be used to make items with unique properties and other advantages.","{@b {@filter Oils|items||source=CRB|category=oil}} are consumables applied to the surface of an object or person.","{@b {@filter Potions|items||source=CRB|category=potion}} are consumable magical liquids you drink to activate.","{@b {@filter Runes|items||source=CRB|category=rune}} modify armor and weapons when etched onto them. This section includes fundamental runes for weapons ({@item weapon potency (generic)||weapon potency} and {@item striking (generic)||striking}) and armor ({@item armor potency (generic)||armor potency} and {@item resilient (generic)||resilient}).","{@b {@filter Scrolls|items||source=CRB|category=scroll}} are consumables that allow spellcasters to cast more spells.","{@b {@filter Shields|items||source=CRB|category=shield}} include more durable shields and ones with special magical powers.","{@b {@filter Snares|items||source=CRB|category=snare}} are single-use traps typically made by rangers.","{@b {@filter Staves|items||source=CRB|category=staff}} provide flexible spellcasting options.","{@b {@filter Structures|items||source=CRB|category=structure}} include buildings, tents, and other larger items.","{@b {@filter Talismans|items||source=CRB|category=talisman}} are consumables that are affixed to items and then activated for a one-time combat or physical benefit.","{@b {@filter Wands|items||source=CRB|category=wand}} hold a spell of the crafter's choice, and can be used to repeatedly cast that spell.","{@b {@filter Weapons|items||source=CRB|category=weapon}} include the rules for basic magical weapons, weapons made from precious materials, and specific magic weapons.","{@b {@filter Worn Items|items||source=CRB|category=worn}} consist of a vast collection of clothing and other items you wear on your body."]}],"source":"CRB"},{"type":"pf2-h3","page":533,"name":"Sustaining Activations","entries":["Some items, once activated, have effects that can be sustained if you concentrate on them. This works much like the Sustain a Spell action (found on page 304). If an item's description states that you can sustain the effect, that effect lasts until the end of your turn in the round after you Activated the Item. You can use a Sustain an Activation action on that turn to extend the duration.",{"type":"data","tag":"action","name":"Sustain an Activation","source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":534,"name":"Dismissing Activations","entries":["Some item effects can be dismissed, ending the duration early due to you or the target taking action. Dismissing an activation requires using the Dismiss action.",{"type":"data","tag":"action","name":"Dismiss","source":"CRB"}],"source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":294,"name":"Animals","entries":["The Prices for animals are listed both for renting and for purchasing them outright. You usually need to pay for animal rentals up front, and if the vendor believes the animal might be put in danger, they typically require a deposit equal to the purchase Price. Most animals panic in battle. When combat begins, they become {@condition frightened||frightened 4} and {@condition fleeing} as long as they're {@condition frightened}. If you successfully {@action Command your Animal} using {@skill Nature}, you can keep it from fleeing, though this doesn't remove its frightened condition. If the animal is attacked or damaged, it returns to {@condition frightened||frightened 4} and {@condition fleeing}, with the same exceptions.","Warhorses and warponies are combat trained. They don't become {@condition frightened} or {@condition fleeing} during encounters in this way.",{"type":"data","tag":"table","name":"Animals","source":"CRB"},{"type":"pf2-h3","page":295,"name":"Barding","entries":["You can purchase special armor for animals, called barding (shown on {@table Barding||Table 6–18}). All animals have a trained proficiency rank in light barding, and combat-trained animals are trained in heavy barding. Barding uses the same rules as armor except for the following. The Price and Bulk of barding depend on the animal's size. Unlike for a suit of armor, barding's Strength entry is listed as a modifier, not a score. Barding can't be etched with magic runes, though special magical barding might be available.",{"type":"data","tag":"table","name":"Barding","source":"CRB"}],"source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":274,"name":"Armor","entries":[{"type":"pf2-h1-flavor","page":274,"entries":["{@i Armor increases your character's defenses, but some medium or heavy armor can hamper movement. If you want to increase your character's defense beyond the protection your armor provides, they can use a shield. Armor protects your character only while they're wearing it.}"],"source":"CRB"},{"type":"pf2-h2","page":274,"name":"Armor Class","entries":["Your {@b Armor Class} ({@b AC}) measures how well you can defend against attacks. When a creature attacks you, your Armor Class is the DC for that attack roll.",{"type":"pf2-inset","page":274,"entries":["Armor Class = 10 + Dexterity modifier (up to your armor's Dex Cap) + proficiency bonus + armor's item bonus to AC + other bonuses + penalties"],"source":"CRB"},"Use your proficiency bonus for the category (light, medium, or heavy) or the specific type of armor you're wearing. If you're not wearing armor, use your proficiency in unarmored defense."],"source":"CRB"},{"type":"pf2-h2","page":274,"name":"Donning and Removing Armor","entries":["Getting in and out of armor is time consuming—so make sure you're wearing it when you need it! Donning and removing armor are both activities involving many Interact actions. It takes 1 minute to don light armor, 5 minutes to don medium or heavy armor, and 1 minute to remove any armor."],"source":"CRB"},{"type":"pf2-h2","page":274,"name":"Armor Statistics","entries":["{@table Unarmored Defense||Table 6–3: Unarmored Defense} provides the statistics for the various forms of protection without wearing armor. {@table Armor||Table 6–4: Armor} provides the statistics for suits of armor that can be purchased and worn, organized by category. The columns in both tables provide the following statistics.",{"type":"pf2-h3","page":274,"name":"Category","entries":["The armor's category—unarmored, light armor, medium armor, or heavy armor—indicates which proficiency bonus you use while wearing the armor."],"source":"CRB"},{"type":"pf2-h3","page":274,"name":"AC Bonus","entries":["This number is the item bonus you add for the armor when determining Armor Class."],"source":"CRB"},{"type":"pf2-h3","page":274,"name":"Dexterity Modifier Cap (Dex Cap)","entries":["This number is the maximum amount of your Dexterity modifier that can apply to your AC while you are wearing a given suit of armor. For example, if you have a Dexterity modifier of +4 and you are wearing a suit of half plate, you apply only a +1 bonus from your Dexterity modifier to your AC while wearing that armor."],"source":"CRB"},{"type":"pf2-h3","page":274,"name":"Check Penalty","entries":["While wearing your armor, you take this penalty to Strength- and Dexterity-based skill checks, except for those that have the attack trait. If you meet the armor's Strength threshold (see Strength below), you don't take this penalty."],"source":"CRB"},{"type":"pf2-h3","page":274,"name":"Speed Penalty","entries":["While wearing a suit of armor, you take the penalty listed in this entry to your Speed, as well as to any other movement types you have, such as a climb Speed or swim Speed, to a minimum Speed of 5 feet. If you meet the armor's Strength threshold (see below), you reduce the penalty by 5 feet."],"source":"CRB"},{"type":"pf2-h3","page":274,"name":"Strength","entries":["This entry indicates the Strength score at which you are strong enough to overcome some of the armor's penalties. If your Strength is equal to or greater than this value, you no longer take the armor's check penalty, and you decrease the Speed penalty by 5 feet (to no penalty if the penalty was –5 feet, or to a –5-foot penalty if the penalty was –10 feet)."],"source":"CRB"},{"type":"pf2-h3","page":274,"name":"Bulk","entries":["This entry gives the armor's Bulk, assuming you're wearing the armor and distributing its weight across your body. A suit of armor that's carried or worn usually has 1 more Bulk than what's listed here (or 1 Bulk total for armor of light Bulk). An armor's Bulk is increased or decreased if it's sized for creatures that aren't Small or Medium in size, following the rules on page 295."],"source":"CRB"},{"type":"pf2-h3","page":274,"name":"Group","entries":["Each type of medium and heavy armor belongs to an armor group, which classifies it with similar types of armor. Some abilities reference armor groups, typically to grant armor specialization effects, which are described on page 275."],"source":"CRB"},{"type":"pf2-h3","page":274,"name":"Armor Traits","entries":["The traits for each suit of armor appear in this entry.","Armor can have the following traits.","{@b Bulwark:} The armor covers you so completely that it provides benefits against some damaging effects. On Reflex saves to avoid a damaging effect, such as a {@spell fireball}, you add a +3 modifier instead of your Dexterity modifier.","{@b Comfort:} The armor is so comfortable that you can rest normally while wearing it.","{@b Flexible:} The armor is flexible enough that it doesn't hinder most actions. You don't apply its check penalty to {@skill Acrobatics} or {@skill Athletics} checks.","{@b Noisy:} This armor is loud and likely to alert others to your presence when you're using the {@action Avoid Notice} exploration activity (page 479).",{"type":"data","tag":"table","name":"Unarmored Defense","source":"CRB"},{"type":"data","tag":"table","name":"Armor","source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":275,"name":"Armor Specialization Effects","entries":["Certain class features can grant you additional benefits with certain armors. This is called an armor specialization effect. The exact effect depends on which armor group your armor belongs to, as listed below. Only medium and heavy armors have armor specialization effects.","{@b Chain:} The armor is so flexible it can bend with a critical hit and absorb some of the blow. Reduce the damage from critical hits by either 4 + the value of the armor's potency rune for medium armor, or 6 + the value of the armor's potency rune for heavy armor. This can't reduce the damage to less than the damage rolled for the hit before doubling for a critical hit.","{@b Composite:} The numerous overlapping pieces of this armor protect you from piercing attacks. You gain resistance to piercing damage equal to 1 + the value of the armor's potency rune for medium armor, or 2 + the value of the armor's potency rune for heavy armor.","{@b Leather:} The thick second skin of the armor disperses blunt force to reduce bludgeoning damage. You gain resistance to bludgeoning damage equal to 1 + the value of the armor's potency rune for medium armor, or 2 + the value of the armor's potency rune for heavy armor.","{@b Plate:} The sturdy plate provides no purchase for a cutting edge. You gain resistance to slashing damage equal to 1 + the value of the armor's potency rune for medium armor, or 2 + the value of the armor's potency rune for heavy armor."],"source":"CRB"},{"type":"data","tag":"table","name":"Unarmored Defense","source":"CRB"},{"type":"data","tag":"table","name":"Armor","source":"CRB"},{"type":"pf2-brown-box","page":275,"name":"MATERIALS","entries":["Most suits of armor and weapons are made from ordinary, commonly available materials like iron, leather, steel, and wood. If you're not sure what a suit of armor is made of, the GM determines the details.","Some armor, shields, and weapons are instead made of precious materials. These often have inherent supernatural properties. Cold iron, for example, which harms fey, and silver can damage werecreatures. These materials are detailed beginning on page 577."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":275,"name":"Armor Descriptions","entries":["Each type of armor is described in more detail below.","{@b Breastplate:} Though referred to as a breastplate, this type of armor consists of several pieces of plate or half-plate armor (page 276) that protect the torso, chest, neck, and sometimes the hips and lower legs. It strategically grants some of the protection of plate while allowing greater flexibility and speed.","{@b Chain Mail:} A suit of chain mail consists of several pieces of armor composed of small metal rings linked together in a protective mesh. It typically includes a chain shirt, leggings, a pair of arms, and a coif, collectively protecting most of the body.","{@b Chain Shirt:} Sometimes called a hauberk, this is a long shirt constructed of the same metal rings as chainmail. However, it is much lighter than chainmail and protects only the torso, upper arms, and upper legs of its wearer.","{@b Explorer's Clothing:} Adventurers who don't wear armor travel in durable clothing. Though it's not armor and uses your unarmored defense proficiency, it still has a Dex Cap and can grant an item bonus to AC if etched with potency runes (as described on page 581).","{@b Full Plate:} Plate mail consists of interlocking plates that encase nearly the entire body in a carapace of steel. It is costly and heavy, and the wearer often requires help to don it correctly, but it provides some of the best defense armor can supply. A suit of this armor comes with an undercoat of padded armor (see below) and a pair of gauntlets (page 285).","{@b Half Plate:} Half plate consists of most of the upper body plates used in full plate, with lighter or sparser steel plate protection for the arms and legs. This provides some of the protection of full plate with greater flexibility and speed. A suit of this armor comes with an undercoat of padded armor (see below) and a pair of gauntlets (page 285).","{@b Hide:} A mix of furs, sturdy hide, and sometimes molded boiled leather, this armor provides protection due to its layers of leather, though its bulkiness slows the wearer down and decreases mobility.","{@b Leather:} A mix of flexible and molded boiled leather, a suit of this type of armor provides some protection with maximum flexibility.","{@b Padded Armor:} This armor is simply a layer of heavy, quilted cloth, but it is sometimes used because it's so inexpensive. Padded armor is easier to damage and destroy than other types of armor. Heavy armor comes with a padded armor undercoat included in its Price, though it loses the comfort trait when worn under heavy armor. You can wear just that padded armor undercoat to sleep in, if your heavy armor is destroyed, or when otherwise not wearing the full heavy armor. This allows you to keep the armor invested and benefit from the power of any runes on the associated heavy armor, but no one else can wear your heavy armor without the padded undercoat.","{@b Scale Mail:} Scale mail consists of many metal scales sewn onto a reinforced leather backing, often in the form of a long shirt that protects the torso, arms, and legs.","{@b Splint Mail:} This type of armor is chain mail reinforced with flexible, interlocking metal plates, typically located on the wearer's torso, upper arms, and legs. A suit of this armor comes with an undercoat of padded armor (see above) and a pair of gauntlets (page 285).","{@b Studded Leather:} This leather armor is reinforced with metal studs and sometimes small metal plates, providing most of the flexibility of leather armor with more robust protection.",{"type":"data","tag":"table","name":"Damaging Armor","source":"CRB"}],"source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":271,"name":"Carrying and Using Items","entries":["A character carries items in three ways: held, worn, and stowed. Held items are in your hands; a character typically has two hands, allowing them to hold an item in each hand or a single two-handed item using both hands. Worn items are tucked into pockets, belt pouches, bandoliers, weapon sheaths, and so forth, and they can be retrieved and returned relatively quickly. Stowed items are in a backpack or a similar container, and they are more difficult to access.","Drawing a worn item or changing how you're carrying an item usually requires you to use an {@action Interact} action (though to drop an item, you use the {@action Release} action instead). {@table Changing Equipment||Table 6–2: Changing Equipment} lists some ways that you might change the items you're holding or carrying, and the number of hands you need to do so.","Many ways of using items require you to spend multiple actions. For example, drinking a potion stowed in your belt pouch requires using an {@action Interact} action to draw it and then using a second action to drink it as described in its {@action Activate an Item||Activate} entry.",{"type":"pf2-h3","page":271,"name":"Bulk","entries":["Carrying especially heavy or unwieldy items can make it more difficult for you to move, as can overloading yourself with too much gear. The Bulk value of an item reflects how difficult the item is to handle, representing its size, weight, and general awkwardness. If you have a high Strength score, you usually don't need to worry about Bulk unless you're carrying numerous substantial items.",{"type":"pf2-h4","page":272,"name":"Bulk Limits","entries":["You can carry an amount of Bulk equal to 5 plus your Strength modifier without penalty; if you carry more, you gain the encumbered condition. You can't hold or carry more Bulk than 10 plus your Strength modifier.",{"type":"pf2-beige-box","page":272,"name":"Encumbered","entries":["You are carrying more weight than you can manage. While you're {@condition encumbered}, you're {@condition clumsy} 1 and take a –10-foot penalty to all your Speeds. As with all penalties to your Speed, this can't reduce your Speed below 5 feet."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h4","page":272,"name":"Bulk Values","entries":["Items can have a number to indicate their Bulk value, or they can be light (indicated by an L) or negligible (indicated by a—) for the purpose of determining Bulk. For instance, {@item full plate} armor is 4 Bulk, a {@item longsword} is 1 Bulk, a dagger or scroll is light, and a piece of chalk is negligible. Ten light items count as 1 Bulk, and you round down fractions (so 9 light items count as 0 Bulk, and 11 light items count as 1 Bulk). Items of negligible Bulk don't count toward Bulk unless you try to carry vast numbers of them, as determined by the GM."],"source":"CRB"},{"type":"pf2-h4","page":272,"name":"Estimating an Item's Bulk","entries":["As a general rule, an item that weighs 5 to 10 pounds is 1 Bulk, an item weighing less than a few ounces is negligible, and anything in between is light. Particularly awkward or unwieldy items might have higher Bulk values. For example, a 10-foot pole isn't heavy, but its length makes it difficult for you to move while you have one on your person, so its Bulk is 1. Items made for larger or smaller creatures have greater or lesser Bulk, as described on page 295."],"source":"CRB"},{"type":"pf2-h4","page":272,"name":"Bulk of Coins","entries":["Coins are a popular means of exchange due to their portability, but they can still add up. A thousand coins of any denomination or combination of denominations count as 1 Bulk. It's not usually necessary to determine the Bulk of coins in fractions of 1,000; simply round down fractions of 1,000. In other words, 100 coins don't count as a light item, and 1,999 coins are 1 Bulk, not 2."],"source":"CRB"},{"type":"pf2-h4","page":272,"name":"Bulk of Creatures","entries":["You might need to know the Bulk of a creature, especially if you need to carry someone off the battlefield. The table that follows lists the typical Bulk of a creature based on its size, but the GM might adjust this number.",{"type":"table","page":272,"colStyles":["text-center","text-center"],"rows":[["Size of Creature","Bulk"],["{@trait Tiny}","1"],["{@trait Small}","3"],["{@trait Medium}","6"],["{@trait Large}","12"],["{@trait Huge}","24"],["{@trait Gargantuan}","48"]],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h4","page":272,"name":"Dragging","entries":["In some situations, you might drag an object or creature rather than carry it. If you're dragging something, treat its Bulk as half. Typically, you can drag one thing at a time, you must use both hands to do so, and you drag slowly—roughly 50 feet per minute unless you have some means to speed it up. Use the total Bulk of what you're dragging, so if you have a sack laden with goods, use the sum of all the Bulk it carries instead of an individual item within."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":272,"name":"Wielding Items","entries":["Some abilities require you to wield an item, typically a weapon. You're wielding an item any time you're holding it in the number of hands needed to use it effectively. When wielding an item, you're not just carrying it around—you're ready to use it. Other abilities might require you to merely carry or have an item. These apply as long as you have the item on your person; you don't have to wield it."],"source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":271,"name":"Coins and Currency","entries":["Though you might be able to barter valuable items in some areas, currency is the most versatile way to make transactions when you head to market. The most common currency is coins. For most commoners and beginning adventurers, the standard unit is the {@b silver piece} ({@b sp}). Each silver piece is a standard weight of silver and is typically accepted by any merchant or kingdom no matter where it was minted. There are three other common types of coins, each likewise standardized in weight and value. The first is the {@b copper piece} ({@b cp}). Each copper piece is worth one-tenth of a silver piece. The {@b gold piece} ({@b gp}) is often used for purchasing magic items and other expensive items, as 1 gold piece is worth 10 silver pieces or 100 copper pieces. The {@b platinum piece} ({@b pp}) is used by nobles to demonstrate their wealth, for the purchase of very expensive items, or simply as a way to easily transport large sums of currency. A platinum piece is worth 10 gold pieces, 100 silver pieces, or 1,000 copper pieces. See {@table Coin Values||Table 6–1: Coin Values} for the exchange rates of common types of coins.",{"type":"pf2-h3","page":271,"name":"Other Currency","entries":["Art objects, gems, and raw materials (such as those used for the {@action Craft} activity) can be used much like currency: you can sell them for the same Price you can buy them."],"source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":531,"name":"Constant Abilities","entries":["Some magic items have abilities that always function. You don't have to use any actions to do anything special (beyond wearing and investing a worn item or wielding a held item) to make these abilities work. For example, an {@item everburning torch} always sheds light, and a {@item flaming} weapon deals fire damage every time it deals damage."],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":293,"name":"Formulas","entries":["Formulas are instructions for making items with the {@action Craft} activity. You can usually read a formula as long as you can read the language it's written in, though you might lack the skill to {@action Craft} the item. Often, alchemists and crafting guilds use obscure languages or create codes to protect their formulas from rivals.","You can buy common formulas at the Price listed on {@table formulas||Table 6–13}, or you can hire an NPC to let you copy their formula for the same Price. A purchased formula is typically a schematic on rolled-up parchment of light Bulk. You can copy a formula into your formula book in 1 hour, either from a schematic or directly from someone else's formula book. If you have a formula, you can {@action Craft} a copy of it using the {@skill Crafting} skill. Formulas for uncommon items and rare items are usually significantly more valuable—if you can find them at all!","If you have an item, you can try to reverse-engineer its formula. This uses the Craft activity and takes the same amount of time as creating the item from a formula would. You must first disassemble the item. After the base downtime, you attempt a {@skill Crafting} check against the same DC it would take to {@action Craft} the item. If you succeed, you {@action Craft} the formula at its full Price, and you can keep working to reduce the Price as normal. If you fail, you're left with raw materials and no formula. If you critically fail, you also waste 10% of the raw materials you'd normally be able to salvage.","The item's disassembled parts are worth half its Price in raw materials and can't be reassembled unless you successfully reverse-engineer the formula or acquire the formula another way. Reassembling the item from the formula works just like {@action Craft||Crafting} it from scratch; you use the disassembled parts as the necessary raw materials.",{"type":"data","tag":"table","name":"Formulas","source":"CRB"},{"type":"pf2-h3","page":293,"name":"Items with Multiple Types","entries":["If an item has multiple types of different levels, each type has its own formula, and you need the formula for the specific type of item you want to Craft. For example, {@i if you have a formula for a type I bag of holding but not for a type II bag of holding, you must acquire a separate formula to Craft a type II bag of holding.}"],"source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":531,"name":"Investing Magic Items","entries":["Certain magic items convey their magical benefits only when worn and invested using the Invest an Item activity, tying them to your inner potential. These items have the invested trait. Many invested items have constant abilities that function all the time or that always trigger when you use the item—but only when they're invested. If you don't have an item invested, these abilities don't work. If an invested item can be activated, you must have invested the item to activate it.","You can benefit from no more than 10 invested magic items each day. Because this limit is fairly high, and because it matters only for worn items, you probably won't need to worry about reaching the limit until higher levels, when you've acquired many useful magic items to wear.","You can still gain the mundane benefits of an item if you don't invest it. A suit of {@i +1 resilient armor} still gives you its item bonus to AC when not invested, but it doesn't give its magical bonus to saving throws, and {@item winged boots} still protect your feet even though you can't activate them to fly. Entirely non-magical items don't need to be invested.",{"type":"data","tag":"action","name":"Invest an Item","source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":272,"name":"Item Damage","entries":["An item can be broken or destroyed if it takes enough damage. Every item has a {@b Hardness} value. Each time an item takes damage, reduce any damage the item takes by its Hardness. The rest of the damage reduces the item's Hit Points. Normally an item takes damage only when a creature is directly attacking it—commonly targeted items include doors and traps. A creature that attacks you doesn't normally damage your armor or other gear, even if it hits you. However, the {@feat Shield Block} reaction can cause your shield to take damage as you use it to prevent damage to yourself, and some monsters have exceptional abilities that can damage your items.","An item that takes damage can become and eventually destroyed. It becomes broken when its Hit Points are equal to or lower than its {@b Broken Threshold} ({@b BT}); once its Hit Points are reduced to 0, it is {@b destroyed}. A broken item has the broken condition until Repaired above its Broken Threshold. Anything that automatically makes an item broken immediately reduces its Hit Points to its Broken Threshold if the item had more Hit Points than that when the effect occurred. If an item has no {@condition Broken} Threshold, then it has no relevant changes to its function due to being broken, but it's still destroyed at 0 Hit Points. (See the broken condition definition on page 273 for more information.) A destroyed item can't be Repaired.","An item's Hardness, Hit Points, and {@condition Broken} Threshold usually depend on the material the item is made of. This information appears on page 577.",{"type":"pf2-beige-box","page":273,"name":"Broken","entries":["Broken is a condition that affects objects. An object is broken when damage has reduced its Hit Points to equal or less than its Broken Threshold. A broken object can't be used for its normal function, nor does it grant bonuses— with the exception of armor. Broken armor still grants its item bonus to AC, but it also imparts a status penalty to AC depending on its category: –1 for broken light armor, –2 for broken medium armor, or –3 for broken heavy armor.","A {@condition broken} item still imposes penalties and limitations normally incurred by carrying, holding, or wearing it. For example, broken armor would still impose its Dexterity modifier cap, check penalty, and so forth.","If an effect makes an item {@condition broken} automatically and the item has more HP than its Broken Threshold, that effect also reduces the item's current HP to the Broken Threshold."],"source":"CRB"},{"type":"pf2-h3","page":273,"name":"Object Immunities","entries":["Inanimate objects and hazards are immune to bleed, death effects, disease, healing, mental effects, necromancy, nonlethal attacks, and poison, as well as the doomed, drained, fatigued, paralyzed, sickened, and unconscious conditions. An item that has a mind is not immune to mental effects. Many objects are immune to other conditions, at the GM's discretion. For instance, a sword has no Speed, so it can't take a penalty to its Speed, but an effect that causes a Speed penalty might work on a moving blade trap."],"source":"CRB"},{"type":"data","tag":"table","name":"Changing Equipment","source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":271,"name":"Item Level","entries":["Each item has an item level, which represents the item's complexity and any magic used in its construction. Simpler items with a lower level are easier to construct, and you can't Craft items that have a higher level than your own (page 243). If an item's level isn't listed, its level is 0. While characters can use items of any level, GMs should keep in mind that allowing characters access to items far above their current level may have a negative impact on the game."],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":295,"name":"Items and Sizes","entries":["The Bulk rules in this chapter are for {@trait Small} and {@trait Medium} creatures, as the items are made for creatures of those sizes. Large creatures can carry more, and smaller creatures can carry less, as noted on {@table Bulk Conversions||Table 6–19}.","These rules for Bulk limits come up most often when a group tries to load up a mount or animal companion. The rules for items of different sizes tend to come into play when the characters defeat a big creature that has gear, since in most cases, the only creatures of other sizes are creatures under the GM's control. In most cases, Small or Medium creatures can wield a Large weapon, though it's unwieldy, giving them the clumsy 1 condition, and the larger size is canceled by the difficulty of swinging the weapon, so it grants no special benefit. Large armor is simply too large for Small and Medium creatures.",{"type":"pf2-h3","page":295,"name":"Bulk Conversions for Different Sizes","entries":["As shown in {@table Bulk Conversions||Table 6–19}, {@trait Large} or larger creatures are less encumbered by bulky items than {@trait Small} or {@trait Medium} creatures, while {@trait Tiny} creatures become overburdened more quickly. A {@trait Large} creature treats 10 items of 1 Bulk as 1 Bulk, a {@trait Huge} creature treats 10 items of 2 Bulk as 1 Bulk, and so on. A {@trait Tiny} creature treats 10 items of negligible Bulk as 1 Bulk. Negligible items work in a similar way—a {@trait Huge} creature treats items of 1 Bulk as negligible, so it can carry any number of items of 1 Bulk. A {@trait Tiny} creature doesn't treat any items as having negligible Bulk.",{"type":"data","tag":"table","name":"Bulk conversions","source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":295,"name":"Items of Different Sizes","entries":["Creatures of sizes other than {@trait Small} or {@trait Medium} need items appropriate to their size. These items have different Bulk and possibly a different Price. {@table Differently Sized Items||Table 6 –20} provides the Price and Bulk conversion for such items.",{"type":"data","tag":"table","name":"Differently Sized Items","source":"CRB"},"For example, a {@item morningstar} sized for a {@trait Medium} creature has a Price of 1 gp and 1 Bulk, so one made for a {@trait Huge} creature has a Price of 4 gp and 4 Bulk. One made for a {@trait Tiny} creature still costs 1 gp (due to its intricacy) and has 1/2 Bulk, which rounds down to light Bulk.","Because the way that a creature treats Bulk and the Bulk of gear sized for it scale the same way, {@trait Tiny} or {@trait Large} (or larger) creatures can usually wear and carry about the same amount of appropriately sized gear as a {@trait Medium} creature.","Higher-level magic items that cost significantly more than 8 times the cost of a mundane item can use their listed Price regardless of size. Precious materials, however, have a Price based on the Bulk of the item, so multiply the Bulk value as described on {@table Differently Sized Items||Table 6 –20}, then use the formula in the precious material's entry to determine the item's Price. See page 578 for more information."],"source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":271,"name":"Price","entries":["Most items in the following tables have a Price, which is the amount of currency it typically takes to purchase that item. An item with a Price of \"—\" can't be purchased. An item with a Price of 0 is normally free, but its value could be higher based on the materials used to create it. Most items can be sold for half their Price, but coins, gems, art objects, and raw materials (such as components for the Craft activity) can be exchanged for their full Price.",{"type":"pf2-key-box","page":271,"name":"STARTING MONEY","entries":[{"type":"pf2-title","name":"15 GP (150 SP)"}],"source":"CRB"},{"type":"data","tag":"table","name":"Coin Values","source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":580,"name":"Runes","entries":["Most magic weapons and armor gain their enhancements from potent eldritch runes etched into them. These runes allow for in-depth customization of items.","Runes must be physically engraved on items through a special process to convey their effects. They take two forms:","fundamental runes and property runes. Fundamental runes offer the most basic and essential benefits: a {@item weapon potency (generic)||weapon potency} rune adds a bonus to a weapon's attack rolls, and the {@item striking (generic)||striking} rune adds extra weapon damage dice. An {@item armor potency (generic)||armor potency} rune increases the armor's item bonus to AC, and the {@item resilient (generic)||resilient} rune grants a bonus to the wearer's saving throws. Property runes, by contrast, grant more varied effects—typically powers that are constant while the armor is worn or that take effect each time the weapon is used, such as a rune that grants energy resistance or one that adds fire damage to a weapon's attacks.","The number of property runes a weapon or armor can have is equal to the value of its potency rune. A +1 weapon can have one property rune, but it could hold another if the {@item +1 weapon potency} rune were upgraded to a {@item +2 weapon potency} rune. Since the {@item striking (generic)||striking} and {@item resilient (generic)||resilient} runes are fundamental runes, they don't count against this limit.","An item with runes is typically referred to by the value of its potency rune, followed by any other fundamental runes, then the names of any property runes, and ends with the name of the base item. For example, you might have a {@runeItem longsword||+1 weapon potency|} or {@runeItem chain mail||+2 armor potency||greater resilient||fire-resistant|}.","Rune-etched armor and weapons have the same Bulk and general characteristics as the non-magical version unless noted otherwise. The level of an item with runes etched onto it is equal to the highest level among the base item and all runes etched on it; therefore, a {@runeItem mace||+1 weapon potency||striking|} (a 4th-level item) with a {@item disrupting} rune (a 5th-level rune) would be a 5th-level item.","Each rune can be etched into a specific type of armor or weapon, as indicated in the Usage entry of the rune's stat block. Explorer's clothing can have armor runes etched on it even though it's not armor, but because it's not in the light, medium, or heavy armor category, it can't have runes requiring any of those categories.",{"type":"pf2-h3","page":580,"name":"Investiture","entries":["If a suit of armor has any runes, it has the {@trait invested} trait, requiring you to invest it to get its magical benefits."],"source":"CRB"},{"type":"pf2-h3","page":580,"name":"Rune Formulas","entries":["The Price of a rune's formula is the same as the Price of a formula for an item of the same level; it can be acquired in the same way as an {@quickref item formula||1|formulas}."],"source":"CRB"},{"type":"pf2-h3","page":580,"name":"The Etching Process","entries":["Etching a rune on an item follows the same process as using the {@action Craft} activity to make an item. You must have the formula for the rune, the item you're adding the rune to must be in your possession throughout the etching process, and you must meet any special Craft Requirements of the rune. The rune has no effect until you complete the {@action Craft} activity. You can etch only one rune at a time.",{"type":"pf2-h4","page":580,"name":"Transferring Runes","entries":["You can transfer runes between one item and another, including a {@item runestone}. This also uses the {@action Craft} activity. This lets you either move one rune from one item to another or swap a rune on one item with a rune on the other item. To swap, the runes must be of the same form (fundamental or property).","If an item can have two or more property runes, you decide which runes to swap and which to leave when transferring. If you attempt to transfer a rune to an item that can't accept it, such as transferring a melee weapon rune to a ranged weapon, you get an automatic critical failure on your {@action craft||Crafting} check. If you transfer a potency rune, you might end up with property runes on an item that can't benefit from them. These property runes go dormant until transferred to an item with the necessary potency rune or until you etch the appropriate potency rune on the item bearing them.","The DC of the {@skill Crafting} check to transfer a rune is determined by the item level of the rune being transferred, and the Price of the transfer is 10% of the rune's Price, unless transferring from a {@item runestone}, which is free. If you're swapping, use the higher level and higher Price between the two runes to determine these values. It takes 1 day (instead of the 4 days usually needed to Craft) to transfer a rune or swap a pair of runes, and you can continue to work over additional days to get a discount, as usual with Craft."],"data":{"quickrefIndex":true},"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":580,"name":"Fundamental Runes","entries":["Four fundamental runes produce the most essential magic of protection and destruction: {@item armor potency (generic)||armor potency} and {@item resilient (generic)||resilient} runes for armor, and {@item weapon potency (generic)||weapon potency} and {@item striking (generic)||striking} runes for weapons. A potency rune is what makes a weapon a magic weapon (page 599) or armor magic armor (page 556).","An item can have only one fundamental rune of each type, though etching a stronger rune can upgrade an existing rune to the more powerful version (as described in each rune's entry). As you level up, you typically alternate between increasing an item's potency rune and its {@item striking (generic)||striking} or {@item resilient (generic)||resilient} rune when you can afford to.",{"type":"data","tag":"table","name":"Fundamental Runes","source":"CRB"}],"source":"CRB"},{"type":"pf2-brown-box","page":581,"name":"SPECIFIC ARMOR AND WEAPONS","entries":["Unlike armor and weapons enhanced with runes, specific armor and weapons (such as {@item ghoul hide} or a {@item holy avenger}) are created for a specific purpose and can work quite differently from other items of their type. Specific magic armor and weapons can't gain property runes, but you can add or improve their fundamental runes."],"source":"CRB"},{"type":"pf2-brown-box","page":581,"name":"RUNE TRANSFER EXAMPLES","entries":["You could transfer a {@item flaming} rune from a {@runeItem greatsword||+1 weapon potency||striking||flaming|} to a {@runeItem longsword||+2 weapon potency||striking|}, resulting in a {@runeItem longsword||+2 weapon potency||striking||flaming|} and a {@runeItem greatsword||+1 weapon potency||striking|}. You could swap the weapon potency runes from a {@runeItem longsword||+1 weapon potency} and a {@runeItem greatsword||+2 weapon potency}, resulting in a {@runeItem longsword||+2 weapon potency} and a {@runeItem greatsword||+1 weapon potency}. However, you couldn't swap a {@item +1 weapon potency} rune from one weapon with a {@item flaming} property rune from another weapon, as the two runes don't have the same form.","When transferring a rune to an item that can hold multiple property runes, you can decide whether you transfer a single rune or swap runes between the items.","For example, a +2 weapon can hold two property runes. If you transferred a {@item flaming} rune from a {@runeItem rapier||+1 weapon potency||striking||flaming|} to a {@runeItem warhammer||+2 weapon potency||striking||frost|}, you would decide whether you wanted to end up with a {@runeItem rapier||+1 weapon potency||striking|} and a {@runeItem warhammer||+2 weapon potency||striking||flaming||frost|} or a {@runeItem rapier||+1 weapon potency||striking||frost|} and a {@runeItem warhammer||+2 weapon potency||striking||flaming|}."],"source":"CRB"},{"type":"pf2-brown-box","page":582,"name":"UPGRADING ARMOR AND WEAPON RUNES","entries":["You'll often want to upgrade the fundamental runes of magic armor or a magic weapon you already have. This requires upgrading each rune separately. Tables 11–5 and 11–6 summarize the Price of each step, with a number in parentheses indicating the item's level for the Craft activity. This also indicates the typical progression for an adventurer to follow when upgrading their armor and weapons. The tables here don't include progressions that aren't as likely to come up, like turning a +1 weapon directly into a +1 greater striking weapon.",{"type":"data","tag":"table","name":"Armor Upgrade Prices","source":"CRB"},{"type":"data","tag":"table","name":"Weapon Upgrade Price","source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":582,"name":"Property Runes","entries":["Property runes add special abilities to armor or a weapon in addition to the item's fundamental runes. If a suit of armor or a weapon has multiple etchings of the same rune, only the highest-level one applies. You can upgrade a property rune to a higher-level type of that rune in the same way you would upgrade a fundamental rune.","Rune abilities that must be activated follow the rules for activating magic items on page 532."],"source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":564,"name":"Scrolls","entries":["A scroll contains a single spell that you can cast without having to expend a spell slot. A scroll can be Crafted to contain nearly any spell, so the types of scrolls available are limited only by the number of spells in the game. The exceptions are cantrips, focus spells, and rituals, none of which can be put on scrolls. The spell on a scroll can be cast only once, and the scroll is destroyed as part of the casting. The spell on the scroll is cast at a particular spell level, as determined by the scroll. For instance, a scroll of {@spell magic missile} (1st level) can be used to cast the 1st-level version of magic missile, but not a magic missile heightened to 2nd level. If no level is listed, the scroll can be used to cast the spell at its lowest level.","If you find a scroll, you can try to figure out what spell it contains. If the spell is a common spell from your spell list or a spell you know, you can spend a single {@action Recall Knowledge} action and automatically succeed at identifying the scroll's spell. If it's not, you must use {@action Identify Magic} to learn what spell the scroll holds.",{"type":"pf2-h4","page":564,"name":"Casting a Spell from a Scroll","entries":["{@action Cast a Spell||Casting a Spell} from a scroll requires holding the scroll in one hand and activating it with a {@action Cast a Spell} activity using the normal number of actions for that spell.","To {@action Cast a Spell} from a scroll, the spell must appear on your spell list. Because you're the one {@action Cast a Spell||Casting the Spell}, use your spell attack roll and spell DC. The spell also gains the appropriate trait for your tradition (arcane, divine, occult, or primal).","Any physical material components and costs are provided when a scroll is created, so you don't need to provide them when {@action Cast a Spell||Casting a Spell} from a scroll. You must replace any required material component for that spell with a somatic component. If the spell requires a focus, you must have that focus to {@action Cast a Spell||Cast the Spell} from a scroll."],"source":"CRB"},{"type":"pf2-h4","page":564,"name":"Scroll Statistics","entries":["All scrolls have the same base statistics unless noted otherwise. A scroll has light Bulk, and it must be held in one hand to be activated."],"source":"CRB"},{"type":"pf2-h4","page":565,"name":"Varying Statistics","entries":["Table 11–3 indicates the item level and Price of a scroll, both of which are based on the level of the spell contained on the scroll. Any costs to {@action Cast a Spell||Cast the Spell} are added to the scroll's Price when the scroll is crafted, so a scroll containing a spell with a Cost entry will have a higher Price than what appears on the table. The scroll's rarity matches the spell's rarity.","The traits for a scroll vary based on the spell it contains.","A scroll always has the consumable, magical, and scroll traits, plus the traits of the spell stored on it."],"source":"CRB"},{"type":"data","tag":"table","name":"Scroll Statistics","source":"CRB"},{"type":"pf2-h4","page":565,"name":"Crafting a Scroll","entries":["The process to {@action Craft} a scroll is much like that to {@action Craft} any other magic item. When you begin the crafting process, choose a spell to put into the scroll. You have to either {@action Cast a Spell||Cast that Spell} during the crafting process, or someone else must do so in your presence. {@action Cast a Spell||Casting that Spell} doesn't produce its normal effects; instead, the magic is trapped inside the scroll. The casting must come from a spellcaster expending a spell slot.","You can't {@action Craft} a scroll from a spell produced from another magic item, for example. The caster has to provide any cost of the spell.","Like other {@trait consumable||consumables}, scrolls can be crafted in batches of four. All scrolls of one batch must contain the same spell at the same level, and you must provide one casting for each scroll crafted."],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h4","page":565,"name":"Sample Scrolls","entries":["A wide variety of spells can appear on scrolls. The following specific scrolls are just examples.",{"type":"data","tag":"item","data":{"name":"Scroll of Illusory Disguise","source":"CRB","page":565,"type":"Item","level":1,"traits":["consumable","illusion","magical","scroll"],"price":{"coin":"gp","amount":3},"usage":"held in 1 hand","bulk":"L","activate":{"activity":{"number":2,"unit":"action"},"components":"{@action Cast a Spell}"},"category":"Scroll","entries":["This scroll can cast {@spell illusory disguise} as a 1st-level spell."],"craftReq":"Supply one casting of illusory disguise."}},{"type":"data","tag":"item","data":{"name":"Scroll of Glitterdust","source":"CRB","page":565,"type":"Item","level":3,"traits":["consumable","evocation","magical","scroll"],"price":{"coin":"gp","amount":12},"usage":"held in 1 hand","bulk":"L","activate":{"activity":{"number":2,"unit":"action"},"components":"{@action Cast a Spell}"},"category":"Scroll","entries":["This scroll can be used to cast {@spell glitterdust} as a 2nd-level spell."],"craftReq":"Supply one casting of glitterdust."}}],"source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":294,"name":"Services","entries":["The services listed on {@table Basic Services and Consumables||Table 6–14} describe expenditures for common services and consumables.",{"type":"data","tag":"table","name":"Basic Services and Consumables","source":"CRB"},{"type":"pf2-h3","page":294,"name":"Hirelings","entries":["Paid laborers can provide services for you. Unskilled hirelings can perform simple manual labor and are untrained at most skills. Skilled hirelings have expert proficiency in a particular skill. Hirelings are level 0. If a skill check is needed, an untrained hireling has a +0 modifier, while a skilled hireling has a +4 modifier in their area of expertise and +0 for other skill checks. Hirelings' rates double if they're going adventuring with you."],"source":"CRB"},{"type":"pf2-h3","page":294,"name":"Transportation","entries":["The cost to hire transportation includes standard travel with no amenities. Most transit services provide basic sleeping arrangements, and some provide meals at the rates listed on Table 6–14. Arranging transportation into dangerous lands can be more expensive or impossible."],"source":"CRB"},{"type":"pf2-h3","page":294,"name":"Spellcasting","entries":["Spellcasting services, listed on {@table Spellcasting Services||Table 6–15}, are uncommon. Having a spell cast for you requires finding a spellcaster who knows and is willing to cast it. It's hard to find someone who can cast higher-level spells, and uncommon spells typically cost at least 100% more, if you can find someone who knows them at all. Spells that take a long time to cast (over 1 minute) usually cost 25% more. You must pay any cost listed in the spell in addition to the Price on the table.",{"type":"data","tag":"table","name":"Spellcasting Services","source":"CRB"}],"source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":277,"name":"Shields","entries":[{"type":"pf2-h1-flavor","page":277,"entries":["{@i A shield can increase your character's defense beyond the protection their armor provides. Your character must be wielding a shield in one hand to make use of it, and it grants its bonus to AC only if they use an action to Raise a Shield. This action grants the shield's bonus to AC as a circumstance bonus until their next turn starts. A shield's Speed penalty applies whenever your character is holding the shield, whether they have raised it or not.}"],"source":"CRB"},"{@action Raise a Shield} is the action most commonly used with shields. Most shields must be held in one hand, so you can't hold anything with that hand and {@action Raise a Shield}. A {@item buckler}, however, doesn't take up your hand, so you can {@action Raise a Shield} with a {@item buckler} if the hand is free (or, at the GM's discretion, if it's holding a simple, lightweight object that's not a weapon). You lose the benefits of {@action Raise a Shield} if that hand is no longer free.","When you have a {@item tower shield} raised, you can use the {@action Take Cover} action to increase the circumstance bonus to AC to +4. This lasts until the shield is no longer raised. If you would normally provide {@quickref lesser cover||3|cover} against an attack, having your tower shield raised provides {@quickref standard cover||3|cover} against it (and other creatures can {@action Take Cover} as normal using the cover from your shield).","If you have access to the {@feat Shield Block} reaction (from your class or from a feat), you can use it while {@action Raise a Shield||Raising your Shield} to reduce the damage you take by an amount equal to the shield's Hardness. Both you and the shield then take any remaining damage.",{"type":"pf2-h2","page":277,"name":"Shield Statistics","entries":["Shields have statistics that follow the same rules as armor:","Price, Speed Penalty, and Bulk. See page 274 for the rules for those statistics. Their other statistics are described here.",{"type":"pf2-h3","page":277,"name":"AC Bonus","entries":["A shield grants a circumstance bonus to AC, but only when the shield is raised. This requires using the Raise a Shield action, found on page 472."],"source":"CRB"},{"type":"pf2-h3","page":277,"name":"Hardness","entries":["Whenever a shield takes damage, the amount of damage it takes is reduced by this amount. This number is particularly relevant for shields because of the {@feat Shield Block} feat (page 266). The rules for Hardness appear on page 272."],"source":"CRB"},{"type":"pf2-h3","page":277,"name":"HP (BT)","entries":["This column lists the shield's Hit Points (HP) and Broken Threshold (BT). These measure how much damage the shield can take before it's destroyed (its total HP) and how much it can take before being broken and unusable (its BT). These matter primarily for the {@feat Shield Block} reaction."],"source":"CRB"},{"type":"data","tag":"table","name":"Shields","source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":277,"name":"Attacking with a Shield","entries":["A shield can be used as a martial weapon for attacks, using the statistics listed for a shield bash on {@table Melee Weapons||Table 6–7: Melee Weapons}. The shield bash is an option only for shields that weren't designed to be used as weapons. A shield can't have runes added to it. You can also buy and attach a {@item shield boss} or {@item shield spikes} to a shield to make it a more practical weapon. These can be found on {@table Melee Weapons||Table 6–7}. These work like other weapons and can even be etched with runes."],"source":"CRB"},{"type":"pf2-h2","page":277,"name":"Shield Descriptions","entries":["Each type of shield is described in more detail below.","{@b Buckler:} This very small shield is a favorite of duelists and quick, lightly armored warriors. It's typically made of steel and strapped to your forearm. You can Raise a Shield with your buckler as long as you have that hand free or are holding a light object that's not a weapon in that hand.","{@b Wooden Shield:} Though they come in a variety of shapes and sizes, the protection offered by wooden shields comes from the stoutness of their materials. While wooden shields are less expensive than steel shields, they break more easily.","{@b Steel Shield:} Like wooden shields, steel shields come in a variety of shapes and sizes. Though more expensive than wooden shields, they are much more durable.","{@b Tower Shield:} These massive shields can be used to provide cover to nearly the entire body. Due to their size, they are typically made of wood reinforced with metal."],"source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":273,"name":"Shoddy Items","entries":["Improvised or of dubious make, shoddy items are never available for purchase except for in the most desperate of communities. When available, a shoddy item usually costs half the Price of a standard item, though you can never sell one in any case. Attacks and checks involving a shoddy item take a –2 item penalty. This penalty also applies to any DCs that a shoddy item applies to (such as AC, for shoddy armor). A shoddy suit of armor also worsens the armor's check penalty by 2. A shoddy item's Hit Points and Broken Threshold are each half that of a normal item of its type."],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":592,"name":"Staves","entries":["A magical staff is an indispensable accessory for an elite spellcaster. A staff is tied to one person during a preparation process, after which the preparer, and only the preparer, can harness the staff to cast a variety of spells throughout the day. The spells that can be cast from a staff are listed in bullet points organized by level under each version of the staff. Many staves can be found in multiple versions, with more powerful versions that contain more spells—such a staff always contains the spells of all lower-level versions, in addition to the spells listed in its own entry. All magical staves have the staff trait.",{"type":"pf2-h3","page":592,"name":"Casting Spells from a Staff","entries":["A staff gains charges when someone prepares it for the day. The person who prepared a staff can expend the charges to cast spells from it. You can {@action Cast a Spell} from a staff only if you have that spell on your spell list, are able to cast spells of the appropriate level, and expend a number of charges from the staff equal to the spell's level. {@action Cast a Spell||Casting a Spell} from a staff requires holding the staff (typically in one hand) and {@action Activate an Item||Activating} the staff by {@action Cast a Spell||Casting the Spell}, which takes the spell's normal number of actions.","Use your spell attack roll and spell DC when {@action Cast a Spell||Casting a Spell} from a staff. The spell gains the appropriate trait for your magical tradition (arcane, divine, occult, or primal) and can be affected by any modifications you can normally make when casting spells, such as metamagic feats. You must provide any material components, cost, or focus required by the spell, or you fail to cast it.","Prepared spellcasters and spontaneous spellcasters each have a unique way of altering how their staves gain charges and the ways they can be used (see the Prepared Spellcasters and Spontaneous Spellcasters sections below).",{"type":"pf2-h4","page":592,"name":"Casting Cantrips from a Staff","entries":["If a staff contains a cantrip, you can cast that cantrip using the staff without expending any charges. The cantrip's level is heightened to the same level as cantrips you cast."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":592,"name":"Preparing a Staff","entries":["During your daily preparations, you can prepare a staff to add charges to it for free. When you do so, that staff gains a number of charges equal to the level of your highest-level spell slot. You don't need to expend any spells to add charges in this way. No one can prepare more than one staff per day, nor can a staff be prepared by more than one person per day. If the charges aren't used within 24 hours, they're lost, and preparing the staff anew removes any charges previously stored in it. You can prepare a staff only if you have at least one of the staff's spells on your spell list.",{"type":"pf2-h4","page":592,"name":"Prepared Spellcasters","entries":["A prepared spellcaster—such as a cleric, druid, or wizard— can place some of their own magic in a staff to increase its number of charges. When a prepared spellcaster prepares a staff, they can expend a spell slot to add a number of charges to the staff equal to the level of the spell. They can't expend more than one spell in this way each day. For example, if Ezren can cast 3rd-level spells and prepared a staff, the staff would gain 3 charges, but Ezren could increase this to 6 by expending one of his 3rd-level spells, 5 by expending a 2nd-level spell, or 4 by expending a 1st-level spell."],"source":"CRB"},{"type":"pf2-h4","page":592,"name":"Spontaneous Spellcasters","entries":["A spontaneous spellcaster, such as a bard or sorcerer, can reduce the number of charges it takes to Activate a staff by supplementing with their own energy. When a spontaneous spellcaster Activates a staff, they can expend 1 charge from the staff and one of their spell slots to cast a spell from the staff of the same level (or lower) as the expended spell slot. This doesn't change the number of actions it takes to cast the spell. For example, if Seoni can cast 3rd-level spells and prepared a staff, the staff would gain 3 charges. She could expend 1 charge and one of her 3rd-level spell slots to cast a 3rd-level spell from the staff, or 1 charge and one of her 2nd-level spell slots to cast a 2nd-level spell from the staff. She could still expend 3 charges from the staff to cast a 3rd-level spell from it without using any of her own slots, just like any other spellcaster"],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":592,"name":"Attacking with a Staff","entries":["Staves are also {@item staff} weapons. They can be etched with fundamental runes but not property runes. This doesn't alter any of their spellcasting abilities."],"source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":597,"name":"Wands","entries":["Short, slender items typically made of wood, wands let you cast a specific spell without expending a spell slot. They can be used once per day, but can be overcharged to attempt to cast them again at great risk. Each wand holds a spell of a certain level, determined when the wand is created. Cantrips, focus spells, and rituals can't be placed in wands.","If you find a wand, you can try to figure out what spell is in it. If the spell is a common spell from your spell list or is a spell you know, you can use a single {@action Recall Knowledge} action and automatically succeed.","If it's not, you must {@action Identify Magic}.",{"type":"pf2-h3","page":597,"name":"Casting Spells from a Wand","entries":["A wand contains a spell that can be cast once per day. Casting a spell from a wand requires holding the wand in one hand and activating the item with a {@action Cast a Spell} activity using the normal number of actions for the spell.","To cast a spell from a wand, it must be on your spell list. Because you're the one casting the spell, use your spell attack roll and spell DC. The spell is of your tradition.","A spell cast from a wand doesn't require physical material components, but you must replace any material component normally required to cast the spell with a somatic component. If the spell requires a focus, you must still have that focus to cast the spell from a wand, and if the spell has a cost, you must still pay that cost to cast the spell from a wand.",{"type":"pf2-h4","page":597,"name":"Overcharging a Wand","entries":["After the spell is cast from the wand for the day, you can attempt to cast it one more time—overcharging the wand at the risk of destroying it. {@action Cast a Spell||Cast the Spell} again, then roll a DC {@flatDC 10} flat check. On a success, the wand is broken.","On a failure, the wand is destroyed. If anyone tries to overcharge a wand when it's already been overcharged that day, the wand is automatically destroyed (even if it had been repaired) and no spell is cast."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":597,"name":"Wand Statistics","entries":["A wand's base statistics are the same unless noted otherwise in a special wand. It has light Bulk, and must be held in one hand to be activated. Each wand contains a specific level of the spell. When you activate a wand, you can only cast the spell at the specified level, but you can craft a wand with a heightened version of a spell.",{"type":"pf2-h4","page":597,"name":"Varying Statistics","entries":["Each type of wand has a Level and Price determined by the spell's level. The wand's rarity matches the spell's rarity. The item's traits also vary, based on the spell. A wand has any traits listed in its stat block (usually just magical and wand), plus any traits of the spell stored on it. A wand has the normal Hardness, BT, and HP of a thin item of its material (page 577)."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":597,"name":"Crafting a Wand","entries":["For the most part, the process to Craft a wand is like that to Craft any other magic item. When you begin the crafting process, choose a spell to put into the wand. You have to either cast that spell during the process, or someone else must do so in your presence. That spell doesn't have its normal effects; instead, the magic is captured inside the wand. The caster doesn't need to pay any cost of the spell.","The casting must come from a spellcaster expending a spell slot. You can't make a wand from a spell that comes from another magic item, for example.",{"type":"pf2-brown-box","page":597,"name":"EXAMPLE WAND","entries":["This example {@item magic wand (generic)} has the {@spell heal} spell.",{"type":"data","tag":"item","data":{"name":"Wand of Heal","source":"CRB","page":597,"type":"Item","level":"3+","traits":["magical","necromancy","positive","wand"],"usage":"held in 1 hand","bulk":"L","category":"Wand","entries":["The golden end caps on this white wooden wand are adorned with ruby cabochons.",{"type":"ability","style":"compact","components":["{@action Cast a Spell}"],"frequency":{"freq":1,"unit":"day","overcharge":true,"number":"once "},"entries":["You cast a {@spell heal} spell at the indicated level."]}],"craftReq":"Supply a listed-level casting of heal.","generic":"G","variants":[{"type":"1st-level spell","level":3,"price":{"coin":"gp","amount":60},"entries":[]},{"type":"2nd-level spell","level":5,"price":{"coin":"gp","amount":160},"entries":[]},{"type":"3rd-level spell","level":7,"price":{"coin":"gp","amount":360},"entries":[]},{"type":"4th-level spell","level":9,"price":{"coin":"gp","amount":700},"entries":[]},{"type":"5th-level spell","level":11,"price":{"coin":"gp","amount":1500},"entries":[]},{"type":"6th-level spell","level":13,"price":{"coin":"gp","amount":3000},"entries":[]},{"type":"7th-level spell","level":15,"price":{"coin":"gp","amount":6500},"entries":[]},{"type":"8th-level spell","level":17,"price":{"coin":"gp","amount":15000},"entries":[]},{"type":"9th-level spell","level":19,"price":{"coin":"gp","amount":40000},"entries":[]}]}}],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":597,"name":"Magic Wand","entries":["The simplest form of wand contains a spell, with Price and level based on that spell. The wand has the magical and wand traits, as well as the traits the spell has. The name of a magic wand with a spell in it is simply \"wand of,\" followed by the spell's name."],"source":"CRB"},{"type":"pf2-h3","page":598,"name":"Specialty Wands","entries":["Specialty wands can contain only certain kinds of spells, as noted in the stat block, and either alter the spell's effects or affect how it can be cast. The Craft Requirements entry lists what kinds of spells the wand can hold."],"source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":278,"name":"Weapons","entries":[{"type":"pf2-h1-flavor","page":278,"entries":["{@i Most characters in Pathfinder carry weapons, ranging from mighty warhammers to graceful bows to even simple clubs. Full details on how you calculate the bonuses, modifiers, and penalties for attack rolls and damage rolls are given in Chapter 9 on page 446, but they're summarized here, followed by the rules for weapons and dozens of weapon choices.}"],"source":"CRB"},{"type":"pf2-h2","page":278,"name":"Attack Rolls","entries":["When making an attack roll, determine the result by rolling 1d20 and adding your attack modifier for the weapon or unarmed attack you're using. Modifiers for melee and ranged attacks are calculated differently.",{"type":"pf2-inset","page":278,"entries":["Ranged attack modifier = Dexterity modifier + proficiency bonus + other bonuses + penalties"],"source":"CRB"},{"type":"pf2-inset","page":278,"entries":["Melee attack modifier = Strength modifier {@n (or optionally Dexterity for a finesse weapon)} + proficiency bonus + other bonuses + penalties"],"source":"CRB"},"Bonuses, and penalties apply to these rolls just like with other types of checks. Weapons with potency runes (page 581) add an item bonus to your attack rolls.",{"type":"pf2-h3","page":278,"name":"Multiple Attack Penalty","entries":["If you use an action with the attack trait more than once on the same turn, your attacks after the first take a penalty called a multiple attack penalty. Your second attack takes a –5 penalty, and any subsequent attacks take a –10 penalty.","The multiple attack penalty doesn't apply to attacks you make when it isn't your turn (such as attacks made as part of a reaction). You can use a weapon with the {@trait agile} trait (page 282) to reduce your multiple attack penalty."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":278,"name":"Damage Rolls","entries":["When the result of your attack roll with a weapon or unarmed attack equals or exceeds your target's AC, you hit your target! Roll the weapon or unarmed attack's damage die and add the relevant modifiers, bonuses, and penalties to determine the amount of damage you deal. Calculate a damage roll as follows.",{"type":"pf2-inset","page":278,"entries":["Melee damage roll = damage die of weapon or unarmed attack + Strength modifier + bonuses + penalties"],"source":"CRB"},{"type":"pf2-inset","page":278,"entries":["Ranged damage roll = damage die of weapon + Strength modifier for thrown weapons + bonuses + penalties"],"source":"CRB"},"Ranged weapons don't normally add an ability modifier to the damage roll, though weapons with the propulsive trait (page 283) add half your Strength modifier (or your full modifier if it is a negative number), and thrown weapons add your full Strength modifier.","Magic weapons with {@item striking}, {@item greater striking}, or {@item major striking} runes (page 581) add one or more weapon damage dice to your damage roll. These extra dice are the same die size as the weapon's damage die. At higher levels, most characters also gain extra damage from weapon specialization."],"source":"CRB"},{"type":"pf2-h2","page":278,"name":"Critical Hits","entries":["When you make an attack and succeed with a natural 20 (the number on the die is 20), or if the result of your attack exceeds the target's AC by 10, you achieve a critical success (also known as a critical hit).","If you critically succeed at a {@action Strike}, your attack deals {@book double damage|CRB|9|Doubling and Halving Damage}. Other attacks, such as spell attack rolls and some uses of the {@skill Athletics} skill, describe the specific effects that occur when their outcomes are critical successes."],"source":"CRB"},{"type":"pf2-h2","page":278,"name":"Unarmed Attacks","entries":["Almost all characters start out trained in unarmed attacks. You can {@action Strike} with your fist or another body part, calculating your attack and damage rolls in the same way you would with a weapon. Unarmed attacks can belong to a weapon group (page 280), and they might have weapon traits (page 282). However, unarmed attacks aren't weapons, and effects and abilities that work with weapons never work with unarmed attacks unless they specifically say so.","{@table Unarmed Attacks||Table 6–6: Unarmed Attacks} lists the statistics for an unarmed attack with a fist, though you'll usually use the same statistics for attacks made with any other parts of your body. Certain ancestry feats, class features, and spells give access to special, more powerful unarmed attacks. Details for those unarmed attacks are provided in the abilities that grant them."],"source":"CRB"},{"type":"pf2-h2","page":278,"name":"Improvised Weapons","entries":["If you attack with something that wasn't built to be a weapon, such as a chair or a vase, you're making an attack with an improvised weapon. Improvised weapons are simple weapons. You take a –2 item penalty to attack rolls with an improvised weapon. The GM determines the amount and type of damage the attack deals, if any, as well as any weapon traits the improvised weapon should have."],"source":"CRB"},{"type":"pf2-h2","page":279,"name":"Weapon Statistics","entries":["The tables on pages 280 –282 list the statistics for various melee and ranged weapons that you can purchase, as well as the statistics for striking with a fist (or another basic unarmed attack). The tables present the following statistics. All weapons listed in this chapter have an item level of 0.",{"type":"pf2-h3","page":279,"name":"Damage","entries":["This entry lists the weapon's damage die and the type of damage it deals: B for bludgeoning, P for piercing, or S for slashing.",{"type":"pf2-beige-box","page":279,"name":"Damage Dice","entries":["Each weapon lists the damage die used for its damage roll. A standard weapon deals one die of damage, but a magical {@item striking (generic)||striking} rune can increase the number of dice rolled, as can some special actions and spells. These additional dice use the same die size as the weapon or unarmed attack's normal damage die.",{"type":"pf2-title","name":"Counting Damage Dice"},"Effects based on a weapon's number of damage dice include only the weapon's damage die plus any extra dice from a {@item striking (generic)||striking} rune. They don't count extra dice from abilities, critical specialization effects, property runes, weapon traits, or the like.",{"type":"pf2-title","name":"Increasing Die Size"},"When an effect calls on you to increase the size of your weapon damage dice, instead of using its normal weapon damage dice, use the next larger die, as listed below (so if you were using a d4, you'd use a d6, and so on). If you are already using a d12, the size is already at its maximum. You can't increase your weapon damage die size more than once.","{@c {@b {@dice 1d4} ➞ {@dice 1d6} ➞ {@dice 1d8} ➞ {@dice 1d10} ➞ {@dice 1d12}}}"],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":279,"name":"Range","entries":["Ranged and thrown weapons have a range increment. Attacks with these weapons work normally up to that distance. Attack rolls beyond a weapon's range increment take a –2 penalty for each additional multiple of that increment between you and the target. Attacks beyond the sixth range increment are impossible.","For example, a shortbow takes no penalty against a target up to 60 feet away, a –2 penalty against a target beyond 60 feet but up to 120 feet away, and a –4 penalty against a target beyond 120 feet but up to 180 feet away, and so on, up to 360 feet."],"source":"CRB"},{"type":"pf2-h3","page":279,"name":"Reload","entries":["While all weapons need some amount of time to get into position, many ranged weapons also need to be loaded and reloaded. This entry indicates how many {@action Interact} actions it takes to reload such weapons. This can be 0 if drawing ammunition and firing the weapon are part of the same action. If an item takes 2 or more actions to reload, the GM determines whether they must be performed together as an activity, or you can spend some of those actions during one turn and the rest during your next turn.","An item with an entry of \"—\" must be drawn to be thrown, which usually takes an {@action Interact} action just like drawing any other weapon. Reloading a ranged weapon and drawing a thrown weapon both require a free hand. Switching your grip to free a hand and then to place your hands in the grip necessary to wield the weapon are both included in the actions you spend to reload a weapon."],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h3","page":279,"name":"Bulk","entries":["This entry gives the weapon's Bulk. A weapon's Bulk is increased or decreased if it's sized for creatures that aren't Small or Medium size, following the rules on page 295."],"source":"CRB"},{"type":"pf2-brown-box","page":279,"name":"SELECTING WEAPONS","entries":["Characters who focus on combat need to carefully consider their choice of weapons, evaluating whether they want to fight in melee or at range, the weapons' damage potential, and the special features of various weapons. Characters who are primarily spellcasters usually just need to pick a backup weapon in the best category they're trained or better in.","When selecting weapons, start by identifying the weapon types you're trained or better in. You should then compare weapons within these types to determine which ones you will have the highest melee or ranged attack modifier with. It's usually considered best practice to select both a melee and ranged weapon during character creation so you can contend with a broader variety of foes and situations.",{"type":"pf2-title","name":"Weapon Categories"},"Weapons fall into broad categories depending on how much damage they deal and what traits they have. Martial weapons generally deal more damage than simple weapons, and advanced weapons generally have more advantageous traits than martial weapons with the same damage. Generally, you'll want to select weapons that deal more damage, but if you're a highly skilled combatant, you might want to pick a weapon with interesting traits, even if it has a lower weapon damage die. You can also purchase multiple weapons within your budget, allowing you to switch between them for different situations."],"source":"CRB"},{"type":"pf2-h3","page":279,"name":"Hands","entries":["Some weapons require one hand to wield, and others require two. A few items, such as a longbow, list 1+ for its Hands entry. You can hold a weapon with a 1+ entry in one hand, but the process of shooting it requires using a second to retrieve, nock, and loose an arrow. This means you can do things with your free hand while holding the bow without changing your grip, but the other hand must be free when you shoot. To properly wield a 1+ weapon, you must hold it in one hand and also have a hand free.","Weapons requiring two hands typically deal more damage. Some one-handed weapons have the two-hand trait, causing them to deal a different size of weapon damage die when used in two hands. In addition, some abilities require you to wield a weapon in two hands. You meet this requirement while holding the weapon in two hands, even if it doesn't require two hands or have the two-hand trait."],"source":"CRB"},{"type":"pf2-h3","page":280,"name":"Group","entries":["A weapon or unarmed attack's group classifies it with similar weapons. Groups affect some abilities and what the weapon does on a critical hit if you have access to that weapon or unarmed attack's critical specialization effects; for full details, see page 283."],"source":"CRB"},{"type":"pf2-h3","page":280,"name":"Weapon Traits","entries":["The traits a weapon or unarmed attack has are listed in this entry. Any trait that refers to a \"weapon\" can also apply to an unarmed attack that has that trait."],"source":"CRB"},{"type":"pf2-h3","page":280,"name":"Ammunition","entries":["Some entries in the ranged weapons tables are followed by an entry indicating the type of ammunition that weapon launches. The damage die is determined by the weapon, not the ammunition. Because that and other relevant statistics vary by weapon, ammunition entries list only the name, quantity, Price, and Bulk. Using ammunition destroys it."],"source":"CRB"},{"type":"data","tag":"table","name":"Unarmed Attacks","source":"CRB"},{"type":"data","tag":"table","name":"Melee Weapons","source":"CRB"},{"type":"data","tag":"table","name":"Ranged Weapons","source":"CRB"},{"type":"pf2-h3","page":282,"name":"Weapon Traits","entries":["{@filter Weapons and unarmed attacks with the weapon trait can have the following traits.|traits||source=CRB}"],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":283,"name":"Critical Specialization Effects","entries":["Certain feats, class features, weapon runes, and other effects can grant you additional benefits when you make a Strike with certain weapons and get a critical success. This is called a critical specialization effect. The exact effect depends on which weapon group your weapon belongs to, as listed below. You can always decide not to add the critical specialization effect of your weapon.","{@b Axe:} Choose one creature adjacent to the initial target and within reach. If its AC is lower than your attack roll result for the critical hit, you deal damage to that creature equal to the result of the weapon damage die you rolled (including extra dice for its potency rune, if any). This amount isn't doubled, and no bonuses or other additional dice apply to this damage.","{@b Bomb:} Increase the radius of the bomb's splash damage (if any) to 10 feet.","{@b Bow:} If the target of the critical hit is adjacent to a surface, it gets stuck to that surface by the missile. The target is immobilized and must spend an Interact action to attempt a DC 10 {@skill Athletics} check to pull the missile free; it can't move from its space until it succeeds. The creature doesn't become stuck if it is incorporeal, is liquid (like a water elemental or some oozes), or could otherwise escape without effort.","{@b Brawling:} The target must succeed at a Fortitude save against your class DC or be slowed 1 until the end of your next turn.","{@b Club:} You knock the target away from you up to 10 feet (you choose the distance). This is {@quickref forced movement||3|forced movement}.","{@b Dart:} The target takes {@dice 1d6} {@condition Persistent Damage|CRB|persistent bleed damage}. You gain an item bonus to this bleed damage equal to the weapon's item bonus to attack rolls.","{@b Flail:} The target is knocked {@condition prone}.","{@b Hammer:} The target is knocked {@condition prone}.","{@b Knife:} The target takes {@dice 1d6} {@condition Persistent Damage|CRB|persistent bleed} damage. You gain an item bonus to this bleed damage equal to the weapon's item bonus to attack rolls.","{@b Pick:} The weapon viciously pierces the target, who takes 2 additional damage per weapon damage die.","{@b Polearm:} The target is moved 5 feet in a direction of your choice. This is {@quickref forced movement||3|forced movement}.","{@b Shield:} You knock the target back from you 5 feet. This is {@quickref forced movement||3|forced movement}.","{@b Sling:} The target must succeed at a Fortitude save against your class DC or be stunned 1.","{@b Spear:} The weapon pierces the target, weakening its attacks. The target is clumsy 1 until the start of your next turn.","{@b Sword:} The target is made off-balance by your attack, becoming {@condition flat-footed} until the start of your next turn.",{"type":"pf2-h3","page":284,"name":"Weapon Descriptions","entries":["You can view all weapons on the {@filter Items page|items||source=CRB|category=weapon|type=equipment}."],"source":"CRB"}],"source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":287,"name":"Wearing Tools","entries":["You can make a set of tools (such as {@item alchemist's tools} or {@item healer's tools}) easier to use by wearing it. This allows you to draw and replace the tools as part of the action that uses them. You can wear up to 2 Bulk of tools in this manner; tools beyond this limit must be stowed or drawn with an {@action Interact} action to use."],"data":{"quickref":2},"source":"CRB"}]},{"type":"entries","entries":[{"type":"section","page":300,"name":"Cantrips","entries":["A cantrip is a special type of spell that's weaker than other spells but can be used with greater freedom and flexibility. The title of a cantrip's stat block says \"Cantrip\" instead of \"Spell.\" Casting a cantrip doesn't use up your spell slots; you can cast a cantrip at will, any number of times per day. If you're a prepared caster, you can prepare a specific number of cantrips each day. You can't prepare a cantrip in a spell slot.","A cantrip is always automatically heightened to half your level, rounded up. For a typical spellcaster, this means its level is equal to the highest level of spell slot you have."],"data":{"quickref":3},"source":"CRB"},{"type":"section","page":302,"name":"Casting Spells","entries":["The casting of a spell can range from a simple word of magical might that creates a fleeting effect to a complex process taking minutes or hours to cast and producing a long-term impact. {@action Cast a Spell||Casting a Spell} is a special activity that takes a number of actions defined by the spell. When you {@action Cast a Spell}, your spellcasting creates obvious visual manifestations of the gathering magic, although feats such as Conceal Spell (page 210) and Melodious Spell (page 101) can help hide such manifestations or otherwise prevent observers from noticing that you are casting.",{"type":"data","tag":"action","name":"Cast a Spell","source":"CRB"},{"type":"pf2-h3","page":303,"name":"Spell Components","entries":["A spell description lists the components required to {@action Cast a Spell||Cast the Spell}. For most spells, the number of components is equal to the number of actions you must spend to {@action Cast a Spell||Cast the Spell}. Each component adds certain traits to the {@action Cast a Spell} activity, and some components have special requirements. The components that appear in this book are listed below.",{"type":"pf2-h4","page":303,"name":"Material","entries":["A material component is a bit of physical matter consumed in the casting of the spell. The spell gains the manipulate trait and requires you to have a free hand to retrieve and manipulate a material component. That component is expended in the casting (even if the spell is disrupted).","Except in extreme circumstances, you can assume all common components are included in a material component pouch (page 290)."],"source":"CRB"},{"type":"pf2-h4","page":303,"name":"Somatic","entries":["A somatic component is a specific hand movement or gesture that generates a magical nexus. The spell gains the manipulate trait and requires you to make gestures. You can use this component while holding something in your hand, but not if you are restrained or otherwise unable to gesture freely.","Spells that require you to touch the target require a somatic component. You can do so while holding something as long as part of your hand is able to touch the target (even if it's through a glove or gauntlet)."],"source":"CRB"},{"type":"pf2-h4","page":303,"name":"Verbal","entries":["A verbal component is a vocalization of words of power.","You must speak them in a strong voice, so it's hard to conceal that you're {@action Cast a Spell||Casting a Spell}. The spell gains the {@trait concentrate}. You must be able to speak to provide this component."],"source":"CRB"},{"type":"pf2-h4","page":303,"name":"Focus","entries":["A focus is an object that funnels the magical energy of the spell. The spell gains the manipulate trait and requires you to either have a free hand to retrieve the focus listed in the spell or already be holding the focus in your hand.","As part of {@action Cast a Spell||Casting the Spell}, you retrieve the focus (if necessary), manipulate it, and can stow it again if you so choose.","Foci tend to be expensive, and you need to acquire them in advance to {@action Cast a Spell||Cast the Spell}."],"source":"CRB"},{"type":"pf2-brown-box","page":303,"name":"Component Substitution","entries":["Some classes can substitute one component for another or alter how a component works.","If you're a {@class bard} {@action Cast a Spell||Casting a Spell} from the {@trait occult} tradition you can usually play an {@item musical instrument||instrument} for spells requiring somatic or material components, as long as it takes at least one of your hands to do so. If you use an instrument, you don't need a spell component pouch or another hand free. You can usually also play an instrument for spells requiring verbal components, instead of speaking.","If you're a {@class cleric} {@action Cast a Spell||Casting a Spell} from the {@trait divine} tradition while holding a divine focus (such as a {@item religious symbol} or {@item religious text||text}), you can replace any material component the spell requires by using the divine focus as a focus component instead. Unlike the normal rules for a focus component, you can't retrieve or stow the focus when making this substitution.","If you're a {@class druid} {@action Cast a Spell||Casting a Spell} from the {@trait primal} tradition while holding a primal focus (such as {@item holly and mistletoe}), you can replace any material component the spell requires by using the primal focus as a focus component instead. Unlike the normal rules for a focus component, you can't retrieve or stow the focus when making this substitution.","If you're a {@class sorcerer} {@action Cast a Spell||Casting a Spell} from the magical tradition that matches your bloodline, you can draw on the magic within your blood to replace any material component with a somatic component.","Any character casting an innate spell can replace any material component with a somatic component."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-brown-box","page":304,"name":"Metamagic","entries":["Many spellcasters can gain access to metamagic actions, typically by selecting metamagic feats. Actions with the metamagic trait tweak the properties of your spells, changing their range, damage, or any number of other properties. You must use a metamagic action directly before the spell you want to alter. If you use any action (including free actions, reactions, and additional metamagic actions) other than {@action Cast a Spell} directly after, you waste the benefits of the metamagic action. Any additional effects added by a metamagic action are part of the spell's effect, not of the metamagic action itself."],"source":"CRB"}],"data":{"quickref":3},"source":"CRB"},{"type":"section","page":298,"name":"Disbelieving Illusions","entries":["Sometimes illusions allow an affected creature a chance to disbelieve the spell, which lets the creature effectively ignore the spell if it succeeds at doing so. This usually happens when a creature {@action Seek||Seeks} or otherwise spends actions to engage with the illusion, comparing the result of its {@skill Perception} check (or another check or saving throw, at the GM's discretion) to the caster's spell DC. {@trait Mental} illusions typically provide rules in the spell's description for disbelieving the effect (often allowing the affected creature to attempt a Will save).","If the illusion is {@trait visual}, and a creature interacts with the illusion in a way that would prove it is not what it seems, the creature might know that an illusion is present, but it still can't ignore the illusion without successfully disbelieving it. For instance, if a character is pushed through the illusion of a door, they will know that the door is an illusion, but they still can't see through it. Disbelieving an illusion makes it and those things it blocks seem hazy and indistinct, so even in the case where a visual illusion is disbelieved, it may, at the GM's discretion, block vision enough to make those on the other side concealed.."],"data":{"quickref":3},"source":"CRB"},{"type":"section","page":304,"name":"Durations","entries":["The duration of a spell is how long the spell effect lasts.","Spells that last for more than an instant have a Duration entry. A spell might last until the start or end of a turn, for some number of rounds, for minutes, or even longer. If a spell's duration is given in rounds, the number of rounds remaining decreases by 1 at the start of each of the spellcaster's turns, ending when the duration reaches 0.","Some spells have effects that remain even after the spell's magic is gone. Any ongoing effect that isn't part of the spell's duration entry isn't considered magical.","For instance, a spell that creates a loud sound and has no duration might deafen someone for a time, even permanently. This deafness couldn't be counteracted because it is not itself magical (though it might be cured by other magic, such as {@spell restore senses}).","If a spell's caster dies or is incapacitated during the spell's duration, the spell remains in effect till its duration ends.","You might need to keep track of the caster's initiative after they stopped being able to act to monitor spell durations.",{"type":"pf2-h3","page":304,"name":"Sustaining Spells","entries":["If the spell's duration is \"sustained,\" it lasts until the end of your next turn unless you use a Sustain a Spell action on that turn to extend the duration of that spell.",{"type":"data","tag":"action","name":"Sustain a Spell","source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":305,"name":"Long Durations","entries":["If a spell's duration says it lasts until your next daily preparations, on the next day you can refrain from preparing a new spell in that spell's slot. (If you are a spontaneous caster, you can instead expend a spell slot during your preparations.) Doing so extends the spell's duration until your next daily preparations. This effectively Sustains the Spell over a long period of time.","If you prepare a new spell in the slot (or don't expend a spell slot), the spell ends. You can't do this if the spell didn't come from one of your spell slots. If you are dead or otherwise incapacitated at the 24-hour mark after the time you {@action Cast a Spell||Cast the Spell} or the last time you extended its duration, the spell ends. Spells with an unlimited duration last until counteracted or Dismissed. You don't need to keep a spell slot open for these spells."],"source":"CRB"},{"type":"pf2-h3","page":305,"name":"Dismissing","entries":["Some spells can be dismissed, ending the duration early. This requires the caster or target to use the Dismiss action.",{"type":"data","tag":"action","name":"Dismiss","source":"CRB"}],"source":"CRB"}],"data":{"quickref":3},"source":"CRB"},{"type":"section","page":300,"name":"Focus Spells","entries":["Focus spells are a special type of spell attained directly from a branch of study, from a deity, or from another specific source. You can learn focus spells only through special class features or feats, rather than choosing them from a spell list. Furthermore, you cast focus spells using a special pool of Focus Points—you can't prepare a focus spell in a spell slot or use your spell slots to cast focus spells; similarly, you can't spend your Focus Points to cast spells that aren't focus spells. Even some classes that don't normally grant spellcasting, such as the champion and monk, can grant focus spells.","Focus spells are automatically heightened to half your level rounded up, just like cantrips are. You can't cast a focus spell if its minimum level is greater than half your level rounded up, even if you somehow gain access to it.","Casting any of your focus spells costs you 1 Focus Point. You automatically gain a focus pool of 1 Focus Point the first time you gain an ability that gives you a focus spell.","You replenish all the Focus Points in your pool during your daily preparations. You can also use the {@action Refocus} activity to pray, study, meditate, or otherwise reattune yourself to the source of your focus magic and regain a Focus Point.","Some abilities allow you to increase the Focus Points in your pool beyond 1. Typically, these are feats that give you a new focus spell and increase the number of points in your pool by 1. Your focus pool can't have a capacity beyond 3 Focus Points, even if feats that increase your pool would cause it to exceed this number.",{"type":"data","tag":"action","name":"Refocus","source":"CRB"},{"type":"pf2-brown-box","page":302,"name":"Focus Points from Multiple Sources","entries":["It's possible, especially through archetypes, to gain focus spells and Focus Points from more than one source. If this happens, you have just one focus pool, adding all the Focus Points together to determine the total size of your pool. (Remember that the maximum number of Focus Points a pool can have is 3.) If you have multiple abilities that give you a focus pool, each one adds 1 Focus Point to your pool. For instance, if you were a cleric with the Domain Initiate feat, you would have a pool with 1 Focus Point. Let's say you then took the champion multiclass archetype and the Healing Touch feat. Normally, this feat would give you a focus pool. Since you already have one, it instead increases your existing pool's capacity by 1.","Focus Points are not differentiated by source; you can spend any of your Focus Points on any of your focus spells. Likewise, when you {@action Refocus}, you get back a point as long as you follow the guidelines of any abilities that granted you focus spells. Having Focus Points from multiple sources doesn't change the tradition of your spells; if you had both cleric domain spells and druid order spells, your domain spells would remain divine and the order spells primal. This could mean that you need to keep track of a different proficiency and ability modifier with the spell DC and spell attack roll of different focus spells."],"source":"CRB"},{"type":"pf2-h3","page":302,"name":"Spellcasters with Focus Spells","entries":["If you are a spellcaster, your focus spells are the same tradition of spell as the class that gave you the focus spell. A {@class bard||bard's} are occult, a {@class cleric||cleric's} are divine, a {@class druid||druid's} are primal, a {@class wizard||wizard's} are arcane, and a {@class sorcerer||sorcerer's} are determined by their bloodline."],"source":"CRB"},{"type":"pf2-h3","page":302,"name":"Non-Spellcasters with Focus Spells","entries":["If you get focus spells from a class or other source that doesn't grant spellcasting ability (for example, if you're a monk with the {@feat Ki Strike} feat), the ability that gives you focus spells also provides your proficiency rank for spell attack rolls and spell DCs, as well as the magical tradition of your focus spells. You gain the ability to {@action Cast a Spell} and use any spellcasting actions necessary to cast your focus spells (see below). However, you don't qualify for feats and other rules that require you to be a spellcaster."],"source":"CRB"}],"data":{"quickref":3},"source":"CRB"},{"type":"section","page":305,"name":"Hostile Actions","entries":["Sometimes spell effects prevent a target from using hostile actions, or the spell ends if a creature uses any hostile actions. A hostile action is one that can harm or damage another creature, whether directly or indirectly, but not one that a creature is unaware could cause harm.","For instance, lobbing a {@spell fireball} into a crowd would be a hostile action, but opening a door and accidentally freeing a horrible monster would not be. The GM is the final arbitrator of what constitutes a hostile action."],"data":{"quickref":3},"source":"CRB"},{"type":"section","page":305,"name":"Identifying Spells","entries":["Sometimes you need to identify a spell, especially if its effects are not obvious right away. If you notice a spell being cast, and you have prepared that spell or have it in your repertoire, you automatically know what the spell is, including the level to which it is heightened.","If you want to identify a spell but don't have it prepared or in your repertoire, you must spend an action on your turn to attempt to identify it using Recall Knowledge. You typically notice a spell being cast by seeing its visual manifestations or hearing its verbal casting components. Identifying long-lasting spells that are already in place requires using Identify Magic instead of {@action Recall Knowledge} because you don't have the advantage of watching the spell being cast."],"data":{"quickref":3},"source":"CRB"},{"type":"section","page":302,"name":"Innate Spells","entries":["Certain spells are natural to your character, typically coming from your ancestry or a magic item rather than your class. You can cast your innate spells even if you aren't a member of a spellcasting class. The ability that gives you an innate spell tells you how often you can cast it—usually once per day—and its magical tradition. Innate spells are refreshed during your daily preparations. Innate cantrips are cast at will and automatically heightened as normal for cantrips (see Cantrips on page 300) unless otherwise specified.","You're always trained in spell attack rolls and spell DCs for your innate spells, even if you aren't otherwise trained in spell attack rolls or spell DCs. If your proficiency in spell attack rolls or spell DCs is expert or better, apply that proficiency to your innate spells, too. You use your Charisma modifier as your spellcasting ability modifier for innate spells unless otherwise specified.","If you have an innate spell, you can cast it, even if it's not of a spell level you can normally cast. This is especially common for monsters, which might be able to cast innate spells far beyond what a character of the same level could use.","You can't use your spell slots to cast your innate spells, but you might have an innate spell and also be able to prepare or cast the same spell through your class. You also can't heighten innate spells, but some abilities that grant innate spells might give you the spell at a higher level than its base level or change the level at which you cast the spell."],"data":{"quickref":3},"source":"CRB"},{"type":"section","page":304,"name":"Ranges, Areas, and Targets","entries":["Spells with a range can affect targets, create areas, or make things appear only within that range. Most spell ranges are measured in feet, though some can stretch over miles, reach anywhere on the planet, or go even farther!",{"type":"pf2-h3","page":304,"name":"Touch Range","entries":["A spell with a range of touch requires you to physically touch the target. You use your unarmed reach to determine whether you can touch the creature. You can usually touch the target automatically, though the spell might specify that the target can attempt a saving throw or that you must attempt a spell attack roll. If an ability increases the range of a touch spell, start at 0 feet and increase from there."],"source":"CRB"},{"type":"pf2-h3","page":304,"name":"Areas","entries":["Sometimes a spell has an area, which can be a burst, cone, emanation, or line. The method of measuring these areas can be found {@quickref here||3|Areas}. If the spell originates from your position, the spell has only an area; if you can cause the spell's area to appear farther away from you, the spell has both a range and an area."],"source":"CRB"},{"type":"pf2-h3","page":304,"name":"Targets","entries":["Some spells allow you to directly target a creature, an object, or something that fits a more specific category. The target must be within the spell's range, and you must be able to see it (or otherwise perceive it with a precise sense) to target it normally. At the GM's discretion, you can attempt to target a creature you can't see, as described in Detecting Creatures on pages 465–467. If you fail to target a particular creature, this doesn't change how the spell affects any other targets the spell might have.","If you choose a target that isn't valid, such as if you thought a vampire was a living creature and targeted it with a spell that can target only living creatures, your spell fails to target that creature. If a creature starts out as a valid target but ceases to be one during a spell's duration, the spell typically ends, but the GM might decide otherwise in certain situations.","Spells that affect multiple creatures in an area can have both an Area entry and a Targets entry. A spell that has an area but no targets listed usually affects all creatures in the area indiscriminately.","Some spells restrict you to willing targets. A player can declare their character a willing or unwilling target at any time, regardless of turn order or their character's condition (such as when a character is paralyzed, unconscious, or even dead)."],"source":"CRB"},{"type":"pf2-h3","page":304,"name":"Line of Effect","entries":["You usually need an unobstructed path to the target of a spell, the origin point of an area, or the place where you create something with a spell. More information on line of effect can be found {@quickref here||3|line of effect}."],"source":"CRB"}],"data":{"quickref":3},"source":"CRB"},{"type":"section","page":306,"name":"Reading Spells","entries":["Each spell uses the following format. Entries appear only when applicable, so not all spells will have every entry described here. The spell's name line also lists the type of spell if it's a cantrip or focus spell, as well as the level."],"data":{"quickref":3},"source":"CRB"},{"type":"section","page":408,"name":"Rituals","entries":[{"type":"pf2-h1-flavor","page":408,"entries":["{@i A ritual is an esoteric and complex spell that anyone can cast. It takes much longer to cast a ritual than a normal spell, but rituals can have more powerful effects.}"],"source":"CRB"},{"type":"pf2-h2","page":408,"name":"Casting Rituals","entries":["When you take charge of a ritual, you are its primary caster, and others assisting you are secondary casters. You can be a primary caster for a ritual even if you can't cast spells. You must know the ritual, and the ritual's spell level can be no higher than half your level rounded up.","You must also have the required proficiency rank in the skill used for the ritual's primary check (see Checks below), and as the primary caster, you must attempt this skill check to determine the ritual's effects. The primary skill check determines the tradition.","Rituals do not require spell slots to cast. You can heighten a ritual up to half your level rounded up, decided when the ritual is initiated. A ritual always takes at least 1 hour to perform, and often longer. While a ritual is a downtime activity, it's possible—albeit risky—to perform a ritual during exploration with enough uninterrupted time. A ritual's casting time is usually listed in days. Each day of casting requires 8 hours of participation in the ritual from all casters, with breaks during multiday rituals to allow rest. One caster can continue a multiday ritual, usually with some light chanting or meditation, while the other casters rest. All rituals require material, somatic, and verbal components throughout their casting time.",{"type":"pf2-h3","page":408,"name":"Learning Rituals","entries":["Learning a ritual does not count against any limits on spells in your spell repertoire or on any other normal spellcasting ability. Rituals are never common, though if you look hard, you can probably find someone who can perform an uncommon ritual for you. They may still be unwilling to teach it to you."],"source":"CRB"},{"type":"pf2-h3","page":408,"name":"Cost","entries":["A ritual's Cost entry lists valuable components required to cast the ritual. If a ritual doesn't have any such components, it won't have a Cost entry. The cost is consumed when you attempt the primary skill check. Costs are often presented as a base cost multiplied by the target's level and sometimes the spell's level. If the target's level is lower than 1, multiply the cost by 1 instead. Heightened versions that increase the base cost multiply it by the target's level or another value as appropriate. Most rituals that create permanent creatures, such as {@ritual create undead}, use costs based on the level of the spell, as presented on {@table creature creation rituals||Table 7–1}."],"source":"CRB"},{"type":"pf2-h3","page":408,"name":"Secondary Casters","entries":["Many rituals need additional secondary casters, who also don't need to be able to cast spells. Unlike a primary caster, a secondary caster doesn't need a minimum level or skill proficiency. The Secondary Casters entry, if present, indicates the minimum number of secondary casters required."],"source":"CRB"},{"type":"pf2-h3","page":408,"name":"Checks","entries":["At the ritual's culmination, you must attempt the skill check listed in the Primary Check entry to determine the ritual's outcome. Primary checks usually have a very hard DC for a level that's twice the ritual's spell level. As with other downtime activities, fortune and misfortune effects can't modify your checks for the ritual, nor can bonuses or penalties that aren't active throughout the process.","The GM can adjust the DCs of rituals, add or change primary or secondary checks, or even waive requirements to fit specific circumstances. For example, performing a ritual in a location where ley lines converge on the night of a new moon might make a normally difficult ritual drastically easier.",{"type":"data","tag":"table","name":"Creature Creation Rituals","source":"CRB"}],"source":"CRB"}],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h4","page":408,"name":"Secondary Checks","entries":["Often, a ritual requires secondary checks to represent aspects of its casting, usually with a standard DC for a level twice the ritual's spell level. A different secondary caster must attempt each secondary check. If there are more secondary casters than checks, the others don't attempt any.","Secondary casters attempt their checks before you attempt the primary check; no matter their results, the ritual proceeds to the primary check. Secondary checks affect the primary check depending on their results.",{"type":"successDegree","entries":{"Critical Success":"You gain a +2 circumstance bonus to the primary check.","Success":"No bonus or penalty.","Failure":"You take a –4 circumstance penalty to the primary check.","Critical Failure":"As failure, and you reduce the degree of success of the primary skill check by one step."}}],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h3","page":409,"name":"Effect","entries":["A ritual's effect depends on the result of the primary check.","If an effect lists a save DC, use your spell DC for the ritual's magic tradition (or 12 + your level + your highest mental ability modifier, if you don't have a spell DC)."],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h2","page":409,"name":"Rituals","entries":["{@note Please visit the {@filter rituals page|rituals||source=CRB} to view all Rituals.}"],"source":"CRB"}],"data":{"quickref":3},"source":"CRB"},{"type":"section","page":305,"name":"Saving Throws","entries":["Spells that require a target to attempt a save to resist some or all of the spell's effects have a Saving Throw entry. This entry presents the type of save for quick reference, and specific details appear in the spell description. Whenever a spell allows a saving throw, it uses the caster's spell DC.",{"type":"pf2-h3","page":305,"name":"Basic Saving Throws","entries":["If a spell's Saving Throw entry specifies a \"basic\" saving throw, the spell's potential effects all relate to the damage listed in the spell's description. The target takes no damage on a critical success, half damage on a success, full damage on a failure, or double damage on a critical failure. The rules for basic saving throws are found on page 449."],"source":"CRB"}],"data":{"quickref":3},"source":"CRB"},{"type":"section","page":305,"name":"Setting Triggers","entries":["If a spell is meant to respond only to certain events or under certain conditions—such as {@spell magic mouth}—it might require you to set a trigger. This is a simple sensory cue that causes the spell to activate. The spell activates as a reaction when the spell's sensor observes something that fits its trigger. Depending on the spell, the trigger might be the presence of a type of creature, such as \"red-haired dwarven women,\" or it could be an observed action, such as \"whenever someone enters the spell's area.\" Disguises and illusions fool the spell as long as they appear to match its parameters. For a spell to detect something visually, the spell's origin point must have line of sight. Darkness doesn't prevent this, but invisibility does, as does a successful {@skill Stealth} check to Hide (against the spell's DC). For auditory detection, line of sight isn't necessary, though the sound must be audible at the spell's origin point. A {@skill Stealth} check to Sneak can fool the sensor."],"data":{"quickref":3},"source":"CRB"},{"type":"section","page":305,"name":"Spell Attacks","entries":["Some spells require you to succeed at a spell attack roll to affect the target. This is usually because they require you to precisely aim a ray or otherwise make an accurate attack. A spell attack roll is compared to the target's AC.","Spell attack rolls benefit from any bonuses or penalties to attack rolls, including your multiple attack penalty, but not any special benefits or penalties that apply only to weapon or unarmed attacks. Spell attacks don't deal any damage beyond what's listed in the spell description.","In rare cases, a spell might have you make some other type of attack, such as a weapon Strike. Such attacks use the normal rules and attack bonus for that type of attack."],"data":{"quickref":3},"source":"CRB"},{"type":"section","page":298,"name":"Spell Slots","entries":["Characters of spellcasting classes can cast a certain number of spells each day; the spells you can cast in a day are referred to as spell slots. At 1st level, a character has only a small number of 1st-level spell slots per day, but as you advance in level, you gain more spell slots and new slots for higher-level spells. A spell's level indicates its overall power, from 1 to 10.",{"type":"pf2-h3","page":298,"name":"Prepared Spells","entries":["If you're a prepared spellcaster—such as a cleric, druid, or wizard—you must spend time each day preparing spells for that day. At the start of your daily preparations, you select a number of spells of different spell levels determined by your character level and class. Your spells remain prepared until you cast them or until you prepare spells again.","Each prepared spell is expended after a single casting, so if you want to cast a particular spell more than once in a day, you need to prepare that spell multiple times. The exceptions to this rule are spells with the cantrip trait; once you prepare a cantrip, you can cast it as many times as you want until the next time you prepare spells. See page 300 for more information on cantrips.","You might gain an ability that allows you to swap prepared spells or perform other aspects of preparing spells at different times throughout the day, but only your daily preparation counts for the purpose of effects that last until the next time you prepare spells."],"source":"CRB"},{"type":"pf2-h3","page":298,"name":"Spontaneous Spells","entries":["If you're a spontaneous spellcaster—such as a bard or a sorcerer—you choose which spell you're using a spell slot for at the moment you decide to cast it. This provides you with more freedom in your spellcasting, but you have fewer spells in your spell repertoire, as determined by your character level and class. When you make your daily preparations, all your spell slots are refreshed, but you don't get to change the spells in your repertoire."],"source":"CRB"},{"type":"pf2-red-box","page":299,"name":"Magical Traditions","entries":["Spellcasters cast spells from one of four different spell list, each representing a different magical tradition: arcane, divine, occult, and primal.","Your class determines which tradition of magic your spells use. In some cases, such as when a cleric gains spells from their deity or when a sorcerer gets spells from their bloodline, you might be able to cast spells from a different spell list. In these cases, the spell uses your magic tradition, not the list the spell normally comes from. When you cast a spell, add your tradition's trait to the spell.","Some types of magic, such as that of most magic items, don't belong to any single tradition. These have the magical trait instead of a tradition trait.",{"type":"table","style":"pf2-box__table--red","rows":[["Arcane","Divine","Occult","Primal"],["Arcane spellcasters use logic and rationality to categorize the magic inherent in the world around them. Because of its far-reaching approach, the arcane tradition has the broadest spell list, though it's generally poor at affecting the spirit or the soul. Wizards are the most iconic arcane spellcasters, poring over tomes and grimoires, though arcane sorcerers study the secrets of their blood to unlock the power within themselves.","The power of the divine is steeped in faith, the unseen, and belief in a power source from beyond the Material Plane. Clerics are the most iconic divine spellcasters, beseeching the gods to grant them their magic. Divine sorcerers can use the blood of their celestial or fiendish ancestors as a divine conduit, and champions call upon their gods to grant them martial prowess through divine guidance.","The practitioners of occult traditions seek to understand the unexplainable, categorize the bizarre, and otherwise access the ephemeral in a systematic way. Bards are the most iconic occult spellcasters, collecting strange esoterica and using their performances to influence the mind or elevate the soul, and occult sorcerers strive to understand the mysterious power in their blood.","An instinctual connection to and faith in the world, the cycle of day and night, theturning of the seasons, and the natural selection of predator and prey drive the primal tradition. Druids are the most iconic primal spellcasters, calling upon the magic of nature through deep faith and a connection to the plants and animals around them, and primal sorcerers call upon their fey or beast blood to harness the same natural energies."]]}],"source":"CRB"},{"type":"pf2-h3","page":299,"name":"Heightened Spells","entries":["Both prepared and spontaneous spellcasters can cast a spell at a higher spell level than that listed for the spell.","This is called heightening the spell. A prepared spellcaster can heighten a spell by preparing it in a higher-level slot than its normal spell level, while a spontaneous spellcaster can heighten a spell by casting it using a higher-level spell slot, so long as they know the spell at that level (see Heightened Spontaneous Spells below). When you heighten your spell, the spell's level increases to match the higher level of the spell slot you've prepared it in or used to cast it. This is useful for any spell, because some effects, such as counteracting, depend on the spell's level.","In addition, many spells have additional specific benefits when they are heightened, such as increased damage. These extra benefits are described at the end of the spell's stat block. Some heightened entries specify one or more levels at which the spell must be prepared or cast to gain these extra advantages. Each of these heightened entries states specifically which aspects of the spell change at the given level. Read the heightened entry only for the spell level you're using or preparing; if its benefits are meant to include any of the effects of a lower-level heightened entry, those benefits will be included in the entry.","Other heightened entries give a number after a plus sign, indicating that heightening grants extra advantages over multiple levels. The listed effect applies for every increment of levels by which the spell is heightened above its lowest spell level, and the benefit is cumulative. For example, {@spell fireball} says \"{@b Heightened (+1)} The damage increases by 2d6.\" Because {@spell fireball} deals {@damage 6d6} fire damage at 3rd level, a 4th-level {@spell fireball} would deal {@dice 8d6} fire damage, a 5th-level spell would deal {@dice 10d6} fire damage, and so on.",{"type":"pf2-h4","page":299,"name":"Heightened Spontaneous Spells","entries":["If you're a spontaneous spellcaster, you must know a spell at the specific level that you want to cast it in order to heighten it. You can add a spell to your spell repertoire at more than a single level so that you have more options when casting it. For example, if you added {@spell fireball} to your repertoire as a 3rd-level spell and again as a 5th-level spell, you could cast it as a 3rd-level or a 5th-level spell; however, you couldn't cast it as a 4th-level spell.","Many spontaneous spellcasting classes provide abilities like the signature spells class feature, which allows you to cast a limited number of spells as heightened versions even if you know the spell at only a single level."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-red-box","page":299,"name":"The Four Essences","entries":["Spells that affect certain physical or metaphysical forces tend to be grouped into particular magical traditions. Scholars of magic widely agree that all of existence is composed of some combination of four essences, though they disagree on the names and particular qualities of each essence.","The following entries discuss each essence and the traditions and spell schools relevant to it; for instance, evocation spells tend to manipulate matter. The abjuration school is an unusual case, as abjuration spells draw upon different essences depending on who they are warding and what they are protecting against.",{"type":"table","style":"pf2-box__table--red","rows":[["Matter","Spirit","Mind","Life"],["Also called body, material essence, or physical essence, matter is the fundamental building block that makes up all physical things in the universe. The arcane and primal traditions are especially attuned toward manipulating and shaping matter. Spells that are used to create or alter matter most often come from the conjuration, evocation, or transmutation schools.","Also called soul, ethereal essence, or spiritual essence, spirit is an otherworldly building block that makes up a being's immaterial and immortal self. The spirit travels through the Ethereal Plane and into the Great Beyond after the death of the physical body. The spirit is most easily affected by divine and occult spells. Spirit spells are usually of the divination or necromancy schools.","Also called thought or astral essence, the mind essence allows thinking creatures to have rational thoughts, ideas, plans, logic, and memories. Mind touches even nonsapient creatures like animals, though in a more limited capacity. Arcane and occult casters usually excel at mind spells. Spells that use mind essence are usually found in the divination, enchantment, and illusion schools.","Also called heart, faith, instinct, or vital essence, life represents the animating universal force within all things. Whereas matter provides the base materials for a body, life keeps it alive and well. This essence is responsible for unconscious responses and belief, such as ancestral instincts and divine guidance. The divine and primal traditions hold power over life. Life spells are usually necromancy."]]}],"source":"CRB"}],"data":{"quickref":3},"source":"CRB"},{"type":"section","page":306,"name":"Walls","entries":["Spells that create walls list the depth, length, and height of the wall, also specifying how it can be positioned. Some walls can be shaped; you can manipulate the wall into a form other than a straight line, choosing its contiguous path square by square. The path of a shaped wall can't enter the same space more than once, but it can double back so one section is adjacent to another section of the wall."],"data":{"quickref":3},"source":"CRB"}]},{"type":"entries","entries":[{"type":"section","page":461,"name":"Actions","entries":["You affect the world around you primarily by using actions, which produce effects. Actions are most closely measured and restricted during the encounter mode of play, but even when it isn't important for you to keep strict track of actions, they remain the way in which you interact with the game world. There are four types of actions: single actions, activities, reactions, and free actions.","{@b Single actions} can be completed in a very short time. They're self-contained, and their effects are generated within the span of that single action. During an encounter, you get 3 actions at the beginning of your turn, which you can use as described on page 468.","{@b Activities} usually take longer and require using multiple actions, which must be spent in succession. Stride is a single action, but Sudden Charge is an activity in which you use both the Stride and Strike actions to generate its effect.","{@b Reactions} have triggers, which must be met for you to use the reaction. You can use a reaction anytime its trigger is met, whether it's your turn or not. In an encounter, you get 1 reaction each round, which you can use as described on page 468. Outside of encounters, your use of reactions is more flexible and up to the GM. Reactions are usually triggered by other creatures or by events outside your control.","{@b Free actions} don't cost you any of your actions per turn, nor do they cost your reaction. A free action with no trigger follows the same rules as a single action (except the action cost), and a free action with a trigger follows the same rules as a reaction (except the reaction cost).",{"type":"pf2-brown-box","page":461,"name":"ACTION ICON KEY","entries":["These icons appear in stat blocks as shorthand for each type of action.","{@as 1} Single Action","{@as 2} Two-Action Activity","{@as 3} Three-Action Activity","{@as R} Reaction","{@as F} Free Action"],"source":"CRB"},{"type":"pf2-h3","page":461,"name":"Activities","entries":["An activity typically involves using multiple actions to create an effect greater than you can produce with a single action, or combining multiple single actions to produce an effect that's different from merely the sum of those actions. In some cases, usually when spellcasting, an activity can consist of only 1 action, 1 reaction, or even 1 free action.","An activity might cause you to use specific actions within it. You don't have to spend additional actions to perform them—they're already factored into the activity's required actions. (See Subordinate Actions on page 462.) You have to spend all the actions of an activity at once to gain its effects. In an encounter, this means you must complete it during your turn. If an activity gets interrupted or disrupted in an encounter (page 462), you lose all the actions you committed to it.",{"type":"pf2-h4","page":461,"name":"Exploration and Downtime Activities","entries":["Outside of encounters, activities can take minutes, hours, or even days. These activities usually have the exploration or downtime trait to indicate they're meant to be used during these modes of play. You can often do other things off and on as you carry out these activities, provided they aren't significant activities of their own. For instance, if you're Repairing an item, you might move around to stretch your legs or have a brief discussion—but you couldn't also Decipher Writing at the same time.","If an activity that occurs outside of an encounter is interrupted or disrupted, as described in Disrupting Actions below, you usually lose the time you put in, but no additional time beyond that."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-brown-box","page":462,"name":"IN-DEPTH ACTION RULES","entries":["These rules clarify some of the specifics of using actions.",{"type":"pf2-title","name":"Simultaneous Actions"},"You can use only one single action, activity, or free action that doesn't have a trigger at a time. You must complete one before beginning another. For example, the Sudden Charge activity states you must Stride twice and then Strike, so you couldn't use an Interact action to open a door in the middle of the movement, nor could you perform part of the move, make your attack, and then finish the move.","Free actions with triggers and reactions work differently. You can use these whenever the trigger occurs, even if the trigger occurs in the middle of another action.",{"type":"pf2-title","name":"Subordinate Actions"},"An action might allow you to use a simpler action—usually one of the Basic Actions on page 469—in a different circumstance or with different effects. This subordinate action still has its normal traits and effects, but is modified in any ways listed in the larger action. For example, an activity that tells you to Stride up to half your Speed alters the normal distance you can move in a Stride. The Stride would still have the move trait, would still trigger reactions that occur based on movement, and so on. The subordinate action doesn't gain any of the traits of the larger action unless specified. The action that allows you to use a subordinate action doesn't require you to spend more actions or reactions to do so; that cost is already factored in.","Using an activity is not the same as using any of its subordinate actions. For example, the quickened condition you get from the {@spell haste} spell lets you spend an extra action each turn to Stride or Strike, but you couldn't use the extra action for an activity that includes a Stride or Strike. As another example, if you used an action that specified, \"If the next action you use is a Strike,\" an activity that includes a Strike wouldn't count, because the next thing you are doing is starting an activity, not using the Strike basic action."],"source":"CRB"},{"type":"pf2-h3","page":462,"name":"Actions with Triggers","entries":["You can use free actions that have triggers and reactions only in response to certain events. Each such reaction and free action lists the trigger that must happen for you to perform it. When its trigger is satisfied—and {@i only} when it is satisfied—you can use the reaction or free action, though you don't have to use the action if you don't want to.","There are only a few basic reactions and free actions that all characters can use. You're more likely to gain actions with triggers from your class, feats, and magic items.",{"type":"pf2-h4","page":462,"name":"Limitations on Triggers","entries":["The triggers listed in the stat blocks of reactions and some free actions limit when you can use those actions. You can use only one action in response to a given trigger. For example, if you had a reaction and a free action that both had a trigger of \"your turn begins,\" you could use either of them at the start of your turn—but not both. If two triggers are similar, but not identical, the GM determines whether you can use one action in response to each or whether they're effectively the same thing. Usually, this decision will be based on what's happening in the narrative.","This limitation of one action per trigger is per creature; more than one creature can use a reaction or free action in response to a given trigger."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":462,"name":"Other Actions","entries":["Sometimes you need to attempt something not already covered by defined actions in the game. When this happens, the rules tell you how many actions you need to spend, as well any traits your action might have. For example, a spell that lets you switch targets might say you can do so \"by spending a single action, which has the {@trait concentrate}.\" Game masters can also use this approach when a character tries to do something that isn't covered in the rules."],"source":"CRB"},{"type":"pf2-h3","page":462,"name":"Gaining and Losing Actions","entries":["Conditions can change the number of actions you can use on your turn, or whether you can use actions at all. The slowed condition, for example, causes you to lose actions, while the quickened condition causes you to gain them.","Conditions are detailed in the appendix on pages 618–623.","Whenever you lose a number of actions—whether from these conditions or in any other way—you choose which to lose if there's any difference between them. For instance, the {@spell haste} spell makes you quickened, but it limits what you can use your extra action to do. If you lost an action while {@spell haste} was active, you might want to lose the action from haste first, since it's more limited than your normal actions.","Some effects are even more restrictive. Certain abilities, instead of or in addition to changing the number of actions you can use, say specifically that you can't use reactions. The most restrictive form of reducing actions is when an effect states that you can't act: this means you can't use any actions, or even speak. When you can't act, you don't regain your actions and reaction on your turn."],"source":"CRB"},{"type":"pf2-h3","page":462,"name":"Disrupting Actions","entries":["Various abilities and conditions, such as an Attack of Opportunity, can disrupt an action. When an action is disrupted, you still use the actions or reactions you committed and you still expend any costs, but the action's effects don't occur. In the case of an activity, you usually lose all actions spent for the activity up through the end of that turn. For instance, if you began a {@action Cast a Spell} activity requiring 3 actions and the first action was disrupted, you lose all 3 actions that you committed to that activity.","The GM decides what effects a disruption causes beyond simply negating the effects that would have occurred from the disrupted action. For instance, a Leap disrupted midway wouldn't transport you back to the start of your jump, and a disrupted item hand off might cause the item to fall to the ground instead of staying in the hand of the creature who was trying to give it away."],"source":"CRB"}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":457,"name":"Afflictions","entries":["Diseases and poisons are types of afflictions, as are curses and radiation. An affliction can infect a creature for a long time, progressing through different and often increasingly debilitating stages. The level of an affliction is the level of the monster, hazard, or item causing the affliction or, in the case of a spell, is listed in the affliction entry for that spell.",{"type":"pf2-h3","page":457,"name":"Format","entries":["Whether appearing in a spell, as an item, or within a creature's stat block, afflictions appear in the following format.",{"type":"pf2-h4","page":457,"name":"Name and Traits","entries":["The affliction's name is given first, followed by its traits in parentheses—including the trait for the type of affliction (curse, disease, poison, and so forth). If the affliction needs to have a level specified, it follows the parentheses, followed by any unusual details, such as restrictions on removing the conditions imposed by an affliction."],"source":"CRB"},{"type":"pf2-h4","page":457,"name":"Saving Throw","entries":["When you're first exposed to the affliction, you must attempt a saving throw against it. This first attempt to stave off the affliction is called the initial save. An affliction usually requires a Fortitude save, but the exact save and its DC are listed after the name and type of affliction. Spells that can poison you typically use the caster's spell DC.","On a successful initial saving throw, you are unaffected by that exposure to the affliction. You do not need to attempt further saving throws against it unless you are exposed to the affliction again.","If you fail the initial saving throw, after the affliction's onset period elapses (if applicable), you advance to stage 1 of the affliction and are subjected to the listed effect. On a critical failure, after its onset period (if applicable), you advance to stage 2 of the affliction and are subjected to that effect instead. The stages of an affliction are described below."],"source":"CRB"},{"type":"pf2-h4","page":458,"name":"Onset","entries":["Some afflictions have onset times. For these afflictions, once you fail your initial save, you don't gain the effects for the first stage of the affliction until the onset time has elapsed. If this entry is absent, you gain the effects for the first stage (or the second stage on a critical failure) immediately upon failing the initial saving throw."],"source":"CRB"},{"type":"pf2-h4","page":458,"name":"Maximum Duration","entries":["If an affliction lasts only a limited amount of time, it lists a maximum duration. Once this duration passes, the affliction ends. Otherwise, the affliction lasts until you succeed at enough saves to recover, as described in Stages below."],"source":"CRB"},{"type":"pf2-h4","page":458,"name":"Stages","entries":["An affliction typically has multiple stages, each of which lists an effect followed by an interval in parentheses. When you reach a given stage of an affliction, you are subjected to the effects listed for that stage.","At the end of a stage's listed interval, you must attempt a new saving throw. On a success, you reduce the stage by 1; on a critical success, you reduce the stage by 2. You are then subjected to the effects of the new stage. If the affliction's stage is ever reduced below stage 1, the affliction ends and you don't need to attempt further saves unless you're exposed to the affliction again.","On a failure, the stage increases by 1; on a critical failure, the stage increases by 2. You are then subjected to the effects listed for the new stage. If a failure or critical failure would increase the stage beyond the highest listed stage, the affliction instead repeats the effects of the highest stage."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":458,"name":"Conditions from Afflictions","entries":["An affliction might give you conditions with a longer or shorter duration than the affliction. For instance, if an affliction causes you to be drained but has a maximum duration of 5 minutes, you remain drained even after the affliction ends, as is normal for the drained condition. Or, you might succeed at the flat check to remove persistent damage you took from an ongoing affliction, but you would still need to attempt saves to remove the affliction itself, and failing one might give you new persistent damage."],"source":"CRB"},{"type":"pf2-h3","page":458,"name":"Multiple Exposures","entries":["Multiple exposures to the same curse or disease currently affecting you have no effect. For a poison, however, failing the initial saving throw against a new exposure increases the stage by 1 (or by 2 if you critically fail) without affecting the maximum duration. This is true even if you're within the poison's onset period, though it doesn't change the onset length."],"source":"CRB"},{"type":"pf2-h3","page":458,"name":"Virulent Afflictions","entries":["Afflictions with the {@trait virulent} trait are harder to remove.","You must succeed at two consecutive saves to reduce a virulent affliction's stage by 1. A critical success reduces a virulent affliction's stage by only 1 instead of by 2."],"source":"CRB"}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":443,"name":"Checks","entries":["When success isn't certain—whether you're swinging a sword at a foul beast, attempting to leap across a chasm, or straining to remember the name of the earl's second cousin at a soiree—you'll attempt a check. Pathfinder has many types of checks, from skill checks to attack rolls to saving throws, but they all follow these basic steps.",{"type":"list","style":"list-decimal","items":["Roll a d20 and identify the modifiers, bonuses, and penalties that apply.","Calculate the result.","Compare the result to the difficulty class (DC).","Determine the degree of success and the effect."]},"Checks and difficulty classes (DC) both come in many forms. When you swing your sword at that foul beast, you'll make an attack roll against its Armor Class, which is the DC to hit another creature. If you are leaping across that chasm, you'll attempt an {@skill Athletics} skill check with a DC based on the distance you are trying to jump. When calling to mind the name of the earl's second cousin, you attempt a check to Recall Knowledge. You might use either the Society skill or a Lore skill you have that's relevant to the task, and the DC depends on how common the knowledge of the cousin's name might be, or how many drinks your character had when they were introduced to the cousin the night before.","No matter the details, for any check you must roll the d20 and achieve a result equal to or greater than the DC to succeed. Each of these steps is explained below.",{"type":"pf2-h3","page":444,"name":"Step 1: Roll D20 and Identify The Modifiers, Bonuses, and Penalties That Apply","entries":["Start by rolling your d20. You'll then identify all the relevant modifiers, bonuses, and penalties that apply to the roll. A {@b modifier} can be either positive or negative, but a {@b bonus} is always positive, and a {@b penalty} is always negative.","The sum of all the modifiers, bonuses, and penalties you apply to the d20 roll is called your total modifier for that statistic.","Nearly all checks allow you to add an {@b ability modifier} to the roll. An ability modifier represents your raw capabilities and is derived from an ability score, as described on page 20. Exactly which ability modifier you use is determined by what you're trying to accomplish. Usually a sword swing applies your Strength modifier, whereas remembering the name of the earl's cousin uses your Intelligence modifier.","When attempting a check that involves something you have some training in, you will also add your {@b bonus}. This bonus depends on your proficiency rank:","untrained, trained, expert, master, or legendary. If you're untrained, your bonus is +0—you must rely on raw talent and any bonuses from the situation. Otherwise, the bonus equals your character's level plus a certain amount depending on your rank. If your proficiency rank is trained, this bonus is equal to your level + 2, and higher proficiency ranks further increase the amount you add to your level.",{"type":"table","colStyles":["text-center","text-center"],"rows":[["Proficiency Rank","Proficiency Bonus"],["Untrained","0"],["Trained","Your level + 2"],["Expert","Your level + 4"],["Master","Your level + 6"],["Legendary","Your level + 8"]]},"There are three other types of bonus that frequently appear: circumstance bonuses, item bonuses, and status bonuses. If you have different types of bonus that would apply to the same roll, you'll add them all. But if you have multiple bonuses of the same type, you can use only the highest bonus on a given roll—in other words, they don't \"stack.\" For instance, if you have both a proficiency bonus and an item bonus, you add both to your d20 result, but if you have two item bonuses that could apply to the same check, you add only the higher of the two.","{@b Circumstance bonuses} typically involve the situation you find yourself in when attempting a check. For instance, using Raise a Shield with a buckler grants you a +1 circumstance bonus to AC. Being behind cover grants you a +2 circumstance bonus to AC. If you are both behind cover and Raising a Shield, you gain only the +2 circumstance bonus for cover, since they're the same type and the bonus from cover is higher.","{@b Item bonuses} are granted by some item that you are wearing or using, either mundane or magical. For example, armor gives you an item bonus to AC, while expanded alchemist's tools grant you an item bonus to {@skill Crafting} checks when making alchemical items.","{@b Status bonuses} typically come from spells, other magical effects, or something applying a helpful, often temporary, condition to you. For instance, the 3rd-level {@spell heroism} spell grants a +1 status bonus to attack rolls, {@skill Perception} checks, saving throws, and skill checks. If you were under the effect of {@spell heroism} and someone cast the {@spell bless} spell, which also grants a +1 status bonus on attacks, your attack rolls would gain only a +1 status bonus, since both spells grant a +1 status bonus to those rolls, and you only take the highest status bonus.","Penalties work very much like bonuses. You can have {@b circumstance penalties {@b status penalties}, and sometimes even {@b item penalties.} Like bonuses of the same type, you take only the worst all of various penalties of a given type. However, you can apply both a bonus and a penalty of the same type on a single roll. For example, if you had a +1 status bonus from a {@spell heroism} spell but a –2 status penalty from the sickened condition, you'd apply them both to your roll—so {@spell heroism} still helps even though you're feeling unwell.","Unlike bonuses, penalties can also be {@b untyped}, in which case they won't be classified as \"circumstance,\" \"item,\" or \"status.\" Unlike other penalties, you always add all your untyped penalties together rather than simply taking the worst one. For instance, when you use attack actions, you incur a multiple attack penalty on each attack you make on your turn after the first attack, and when you attack a target that's beyond your weapon's normal range increment, you incur a range penalty on the attack.","Because these are both untyped penalties, if you make multiple attacks at a faraway target, you'd apply both the multiple attack penalty and the range penalty to your roll.","Once you've identified all your various modifiers, bonuses, and penalties, you move on to the next step."],"source":"CRB"},{"type":"pf2-h3","page":445,"name":"Step 2: Calculate the Result","entries":["This step is simple. Add up all the various modifiers, bonuses, and penalties you identified in Step 1—this is your total modifier. Next add that to the number that came up on your d20 roll. This total is your check result."],"source":"CRB"},{"type":"pf2-h3","page":445,"name":"Step 3: Compare the Result to the DC","entries":["This step can be simple, or it can create suspense. Sometimes you'll know the {@b Difficulty Class} ({@b DC}) of your check. In these cases, if your result is equal to or greater than the DC, you succeed! If your roll anything less than the DC, you fail.","Other times, you might not know the DC right away. Swimming across a river would require an {@skill Athletics} check, but it doesn't have a specified DC—so how will you know if you succeed or fail? You call out your result to the GM and they will let you know if it is a success, failure, or otherwise. While you might learn the exact DC through trial and error, DCs sometimes change, so asking the GM whether a check is successful is the best way to determine whether or not you have met or exceeded the DC.",{"type":"pf2-h4","page":445,"name":"Calculating DCs","entries":["Whenever you attempt a check, you compare your result against a DC. When someone or something else attempts a check against you, rather than both forces rolling against one another, the GM (or player, if the opponent is another PC) compares their result to a fixed DC based on your relevant statistic. Your DC for a given statistic is 10 + the total modifier for that statistic."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":445,"name":"Step 4: Determine the Degree of Success and Effect","entries":["Many times, it's important to determine not only if you succeed or fail, but also how spectacularly you succeed or fail. Exceptional results—either good or bad—can cause you to critically succeed at or critically fail a check.","You critically succeed at a check when a check's result meets or exceeds the DC by 10 or more. If the check is an attack roll, this is sometimes called a critical hit. You can also critically fail a check. The rules for critical failure—sometimes called a fumble—are the same as those for a critical success, but in the other direction: if you fail a check by 10 or more, that's a critical failure.","If you rolled a 20 on the die (a \"natural 20\"), your result is one degree of success better than it would be by numbers alone. If you roll a 1 on the d20 (a \"natural 1\"), your result is one degree worse. This means that a natural 20 usually results in a critical success and natural 1 usually results in a critical failure. However, if you were going up against a very high DC, you might get only a success with a natural 20, or even a failure if 20 plus your total modifier is 10 or more below the DC. Likewise, if your modifier for a statistic is so high that adding it to a 1 from your d20 roll exceeds the DC by 10 or more, you can succeed even if you roll a natural 1! If a feat, magic item, spell, or other effect does not list a critical success or critical failure, treat is as an ordinary success or failure instead.","Some other abilities can change the degree of success for rolls you get. When resolving the effect of an ability that changes your degree of success, always apply the adjustment from a natural 20 or natural 1 before anything else."],"source":"CRB"}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":467,"name":"Concealment and Invisibility","entries":["The concealed and invisible conditions reflect certain circumstances that can make a creature harder to see.",{"type":"pf2-h4","page":467,"name":"Concealed","entries":["This condition protects a creature if it's in mist, within dim light, or amid something else that obscures sight but does not provide a physical barrier to effects. An effect or type of terrain that describes an area of concealment makes all creatures within it concealed.","When you target a creature that's {@condition concealed} from you, you must attempt a DC {@flatDC 5} flat check before you roll to determine your effect. If you fail, you don't affect the target. the {@condition concealed} condition doesn't change which of the main categories of detection apply to the creature. A creature in a light fog bank is still observed even though it's concealed."],"source":"CRB"},{"type":"pf2-h4","page":467,"name":"Invisible","entries":["A creature with the invisible condition (by way of an {@spell invisibility} spell or {@item invisibility potion}, for example) is automatically {@condition undetected} to any creatures relying on sight as their only precise sense. Precise senses other than sight ignore the invisible condition.","You can use the {@action Seek} basic action to attempt to figure out an {@condition invisible} creature's location, making it instead only {@condition hidden} from you. This lasts until the {@condition invisible} creature successfully uses {@action Sneak} to become {@condition undetected} again. If you're already {@condition observed||observing} a creature when it becomes {@condition invisible}, it starts out {@condition hidden}, since you know where it was when it became {@condition invisible}, though it can then {@action Sneak} to become {@condition undetected}.","Other effects might make an {@condition invisible} creature hidden or even observed but concealed. For instance, if you were tracking an invisible creature's footprints through the snow, the footprints would make it hidden.","Similarly, throwing a net over an {@condition invisible} creature would make it {@condition observed} but {@condition concealed} for as long as the net is on the creature."],"source":"CRB"}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":618,"name":"Condition Values","entries":["Some conditions have a numerical value, called a condition value, indicated by a numeral following the condition. This value conveys the severity of a condition, and such conditions often give you a bonus or penalty equal to their value. These values can often be reduced by skills, spells, or simply waiting. If a condition value is ever reduced to 0, the condition ends."],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":453,"name":"Conditions","entries":["The results of various checks might apply conditions to you or, less often, an item. Conditions change your state of being in some way. You might be gripped with fear or made faster by a spell or magic item. One condition represents what happens when a creature successfully drains your blood or life essence, while others represent creatures' attitudes toward you and how they interact with you.","Conditions are persistent; when you're affected by a condition, its effects last until the stated duration ends, the condition is removed, or terms dictated in the condition cause it to end. The rules for conditions are summarized on page 454 and described in full on pages 618–623.",{"type":"pf2-brown-box","name":"CONDITIONS","entries":["These conditions appear often in the game and are defined in detail in the Conditions Appendix on pages 618–623. Here's a brief summary of each.","{@b {@condition Blinded}:} You're unable to see.","{@b {@condition Broken}:} This item can't be used for its normal function until repaired.","{@b {@condition Clumsy}:} You can't move as easily or gracefully as usual.","{@b {@condition Concealed}:} Fog or similar obscuration makes you difficult to see and target.","{@b {@condition Confused}:} You attack indiscriminately.","{@b {@condition Controlled}:} Another creature determines your actions.","{@b {@condition Dazzled}:} Everything is {@condition concealed} to you.","{@b {@condition Deafened}:} You're unable to hear.","{@b {@condition Doomed}:} With your soul in peril, you are now closer to death.","{@b {@condition Drained}:} Blood loss or something similar has leached your vitality.","{@b {@condition Dying}:} You're slipping closer to death.","{@b {@condition Encumbered}:} You're carrying more weight than you can manage.","{@b {@condition Enfeebled}:} Your strength has been sapped away.","{@b {@condition Fascinated}:} You are compelled to focus your attention on something.","{@b {@condition Fatigued}:} Your defenses are lower and you can't focus while exploring.","{@b {@condition Flat-Footed}:} You're unable to defend yourself to your full capability.","{@b {@condition Fleeing}:} You must run away.","{@b {@condition Friendly}:} An NPC with this condition has a good attitude toward you.","{@b {@condition Frightened}:} Fear makes you less capable of attacking and defending.","{@b {@condition Grabbed}:} A creature, object, or magic holds you in place.","{@b {@condition Helpful}:} An NPC with this condition wants to assist you.","{@b {@condition Hidden}:} A creature you're {@condition hidden} from knows your location but can't see you.","{@b {@condition Hostile}:} An NPC with this condition wants to harm you.","{@b {@condition Immobilized}:} You can't move.","{@b {@condition Indifferent}:} An NPC with this condition doesn't have a strong opinion about you.","{@b {@condition Invisible}:} Creatures can't see you.","{@b {@condition Observed}:} You're in plain view.","{@b {@condition Paralyzed}:} You body is frozen in place.","{@b {@condition Persistent Damage|CRB|Persistent Damage}:} You keep taking damage every round.","{@b {@condition Petrified}:} You've been turned to stone.","{@b {@condition Prone}:} You're lying on the ground and easier to attack.","{@b {@condition Quickened}:} You get an extra action each turn.","{@b {@condition Restrained}:} You're tied up and can't move, or a grappling creature has you pinned.","{@b {@condition Sickened}:} You're sick to your stomach.","{@b {@condition Slowed}:} You lose actions each turn.","{@b {@condition Stunned}:} You can't use actions.","{@b {@condition Stupefied}:} Your can't access your full mental faculties, and you have trouble casting spells.","{@b {@condition Unconscious}:} You're asleep or knocked out.","{@b {@condition Undetected}:} A creature you're {@condition undetected} by doesn't know where you are.","{@b {@condition Unfriendly}:} An NPC with this condition doesn't like you.","{@b {@condition Unnoticed}:} A creature is entirely unaware you're present.","{@b {@condition Wounded}:} You've been brought back from the brink of death but haven't fully recovered."]}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":458,"name":"Counteracting","entries":["Some effects try to counteract spells, afflictions, conditions, or other effects. Counteract checks compare the power of two forces and determine which defeats the other. Successfully counteracting an effect ends it unless noted otherwise.","When attempting a counteract check, add the relevant skill modifier or other appropriate modifier to your check against the target's DC. If you're counteracting an affliction, the DC is in the affliction's stat block. If it's a spell, use the caster's DC. The GM can also calculate a DC based on the target effect's level. For spells, the counteract check modifier is your spellcasting ability modifier plus your spellcasting proficiency bonus, plus any bonuses and penalties that specifically apply to counteract checks. What you can counteract depends on the check result and the target's level. If an effect is a spell, its level is the counteract level.","Otherwise, halve its level and round up to determine its counteract level. If an effect's level is unclear and it came from a creature, halve and round up the creature's level.",{"type":"successDegree","entries":{"Critical Success":"Counteract the target if its counteract level is no more than 3 levels higher than your effect's counteract level.","Success":"Counteract the target if its counteract level is no more than 1 level higher than your effect's counteract level.","Failure":"Counteract the target if its counteract level is lower than your effect's counteract level.","Critical Failure":"You fail to counteract the target."}}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":477,"name":"Cover","entries":["When you're behind an obstacle that could block weapons, guard you against explosions, and make you harder to detect, you're behind cover. Standard cover gives you a +2 circumstance bonus to AC, to Reflex saves against area effects, and to {@skill Stealth} checks to {@action Hide}, {@action Sneak}, or otherwise avoid detection. You can increase this to greater cover using the {@action Take Cover} basic action, increasing the circumstance bonus to +4. If cover is especially light, typically when it's provided by a creature, you have lesser cover, which grants a +1 circumstance bonus to AC. A creature with standard cover or greater cover can attempt to use {@skill Stealth} to {@action Hide}, but lesser cover isn't sufficient.",{"type":"table","colStyles":["text-center","text-center","text-center"],"rows":[["Type of Cover","Bonus","Can Hide"],["Lesser","+1 to AC","No"],["Standard","+2 to AC, Reflex, {@skill Stealth}","Yes"],["Greater","+4 to AC, Reflex, {@skill Stealth}","Yes"]]},"Cover is relative, so you might simultaneously have cover against one creature and not another. Cover applies only if your path to the target is partially blocked. If a creature is entirely behind a wall or the like, you don't have {@quickref line of effect||3|line of effect} and typically can't target it at all.","Usually, the GM can quickly decide whether your target has cover. If you're uncertain or need to be more precise, draw a line from the center of your space to the center of the target's space. If that line passes through any terrain or object that would block the effect, the target has standard cover (or greater cover if the obstruction is extreme or the target has {@action Take Cover||Taken Cover}). If the line passes through a creature instead, the target has lesser cover. When measuring cover against an area effect, draw the line from the effect's point of origin to the center of the creature's space.",{"type":"pf2-h4","page":477,"name":"Cover and Large Creatures","entries":["If a creature between you and a target is two or more sizes larger than both you and your target, that creature's space blocks the effect enough to provide standard cover instead of lesser cover. The GM might determine that a creature doesn't gain cover from terrain that it's significantly larger than. For example, a Huge dragon probably wouldn't receive any benefit from being behind a 1-foot-wide pillar."],"source":"CRB"},{"type":"pf2-h4","page":477,"name":"Special Circumstances","entries":["Your GM might allow you to overcome your target's cover in some situations. If you're right next to an arrow slit, you can shoot without penalty, but you have greater cover against someone shooting back at you from far away. Your GM might let you reduce or negate cover by leaning around a corner to shoot or the like. This usually takes an action to set up, and the GM might measure cover from an edge or corner of your space instead of your center."],"source":"CRB"}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":450,"name":"Damage","entries":["In the midst of combat, you attempt checks to determine if you can damage your foe with weapons, spells, or alchemical concoctions. On a successful check, you hit and deal damage. Damage decreases a creature's Hit Points on a 1-to-1 basis (so a creature that takes 6 damage loses 6 Hit Points). The full rules can be found in the Hit Points, Healing, and Dying section on page 459.","Damage is sometimes given as a fixed amount, but more often than not you'll make a damage roll to determine how much damage you deal. A damage roll typically uses a number and type of dice determined by the weapon or unarmed attack used or the spell cast, and it is often enhanced by various modifiers, bonuses, and penalties.","Like checks, a damage roll—especially a melee weapon damage roll—is often modified by a number of modifiers, penalties, and bonuses. When making a damage roll, you take the following steps, explained in detail below.",{"type":"list","style":"list-decimal","items":["Roll the dice indicated by the weapon, unarmed attack, or spell, and apply the modifiers, bonuses, and penalties that apply to the result of the roll.","Determine the damage type.","Apply the target's immunities, weaknesses, and resistances to the damage.","If any damage remains, reduce the target's Hit Points by that amount."]},{"type":"pf2-h3","page":450,"name":"Step 1: Roll The Damage Dice and Apply Modifiers, Bonuses, and Penalties","entries":["Your weapon, unarmed attack, spell, or sometimes even a magic item determines what type of dice you roll for damage, and how many. For instance, if you're using a normal longsword, you'll roll {@dice 1d8}. If you're casting a 3rd-level {@spell fireball} spell, you'll roll {@dice 6d6}. Sometimes, especially in the case of weapons, you'll apply modifiers, bonuses, and penalties to the damage.","When you use melee weapons, unarmed attacks, and thrown ranged weapons, the most common modifier you'll add to damage is your Strength ability modifier. Weapons with the propulsive trait sometimes add half your Strength modifier. You typically do not add an ability modifier to spell damage, damage from most ranged weapons, or damage from alchemical bombs and similar items.","As with checks, you might add circumstance, status, or item bonuses to your damage rolls, but if you have multiple bonuses of the same type, you add only the highest bonus of that type. Again like checks, you may also apply circumstance, status, item, and untyped penalties to the damage roll, and again you apply only the greatest penalty of a specific type but apply all untyped penalties together.","Use the formulas below.",{"type":"pf2-inset","entries":["Melee damage roll = damage die of weapon or unarmed attack + Strength modifier + bonuses + penalties"]},{"type":"pf2-inset","entries":["Ranged damage roll = damage die of weapon + Strength modifier for thrown weapons + bonuses + penalties"]},{"type":"pf2-inset","entries":["Spell (and similar effects) damage roll = damage die of the effect + bonuses + penalties"]},"If the combined penalties on an attack would reduce the damage to 0 or below, you still deal 1 damage.",{"type":"pf2-h4","page":451,"name":"Increasing Damage","entries":["In some cases, you increase the number of dice you roll when making weapon damage rolls. Magic weapons etched with the {@item striking} rune can add one or more weapon damage dice to your damage roll. These extra dice are the same die size as the weapon's damage die. At certain levels, most characters gain the ability to deal extra damage from the weapon specialization class feature."],"source":"CRB"},{"type":"pf2-h4","page":451,"name":"Persistent Damage","entries":["Persistent damage is a condition that causes damage to recur beyond the original effect. Unlike with normal damage, when you are subject to persistent damage, you don't take it right away. Instead, you take the specified damage at the end of your turns, after which you attempt a DC {@flatDC 15} flat check to see if you recover from the persistent damage.","See the Conditions Appendix on pages 618–623 for the complete rules regarding the persistent damage condition."],"source":"CRB"},{"type":"pf2-h4","page":451,"name":"Doubling and Halving Damage","entries":["Sometimes you'll need to halve or double an amount of damage, such as when the outcome of your Strike is a critical hit, or when you succeed at a basic Reflex save against a spell. When this happens, you roll the damage normally, adding all the normal modifiers, bonuses, and penalties. Then you double or halve the amount as appropriate (rounding down if you halved it). The GM might allow you to roll the dice twice and double the modifiers, bonuses, and penalties instead of doubling the entire result, but this usually works best for singletarget attacks or spells at low levels when you have a small number of damage dice to roll. Benefits you gain specifically from a critical hit, like the {@item flaming} weapon rune's persistent fire damage or the extra damage die from the fatal weapon trait, aren't doubled."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":451,"name":"Step 2: Determine The Damage Type","entries":["Once you've calculated how much damage you deal, you'll need to determine the damage type. There are many types of damage and sometimes certain types are applied in different ways. The smack of a club deals bludgeoning damage. The stab of a spear deals piercing damage. The staccato crack of a {@spell lightning bolt} spell deals electricity damage. Sometimes you might apply precision damage, dealing more damage for hitting a creature in a vulnerable spot or when the target is somehow vulnerable. The damage types are described on page 452.",{"type":"pf2-h4","page":451,"name":"Damage Types and Traits","entries":["When an attack deals a type of damage, the attack action gains that trait. For example, the Strikes and attack actions you use wielding a sword when its {@item flaming} rune is active gain the fire trait, since the rune gives the weapon the ability to deal fire damage."],"source":"CRB"},{"type":"pf2-brown-box","name":"DAMAGE TYPES","entries":["Damage has a number of different types and categories, which are described below.",{"type":"pf2-title","name":"Physical Damage"},"Damage dealt by weapons, many physical hazards, and a handful of spells is collectively called physical damage. The main types of physical damage are bludgeoning, piercing, and slashing. {@b Bludgeoning damage} comes from weapons and hazards that deal blunt-force trauma, like a hit from a club or being dashed against rocks. {@b Piercing damage} is dealt from stabs and punctures, whether from a dragon's fangs or the thrust of a spear. {@b Slashing damage} is delivered by a cut, be it the swing of the sword or the blow from a scythe blades trap.","Ghosts and other incorporeal creatures have a high resistance to physical attacks that aren't magical (attacks that lack the magical trait). Furthermore, most incorporeal creatures have additional, though lower, resistance to magical physical damage (such as damage dealt from a mace with the magical trait) and most other damage types.",{"type":"pf2-title","name":"Energy Damage"},"Many spells and other magical effects deal energy damage. Energy damage is also dealt from effects in the world, such as the biting cold of a blizzard to a raging forest fire. The main types of energy damage are acid, cold, electricity, fire, and sonic. {@b Acid damage} can be delivered by gases, liquids, and certain solids that dissolve flesh, and sometimes harder materials. {@b Cold damage} freezes material by way of contact with chilling gases and ice. {@b Electricity Damage} comes from the discharge of powerful lightning and sparks. {@b Fire damage} burns through heat and combustion. {@b Sonic damage} assaults matter with high-frequency vibration and sound waves. Many times, you deal energy damage by casting magic spells, and doing so is often useful against creatures that have immunities or resistances to physical damage.","Two special types of energy damage specifically target the living and the undead. Positive energy often manifests as healing energy to living creatures but can create {@b positive damage} that withers undead bodies and disrupts and injures incorporeal undead. Negative energy often revivifies the unnatural, unliving power of undead, while manifesting as {@b negative damage} that gnaws at the living.","Powerful and pure magical energy can manifest itself as {@b force damage}. Few things can resist this type of damage—not even incorporeal creatures such as ghosts and wraiths.",{"type":"pf2-title","name":"Alignment Damage"},"Weapons and effects keyed to a particular alignment can deal {@b chaotic}, {@b evil}, {@b good}, or {@b lawful} damage. These damage types apply only to creatures that have the opposing alignment trait. Chaotic damage harms only lawful creatures, evil damage harms only good creatures, good damage harms only evil creatures, and lawful damage harms only chaotic creatures.",{"type":"pf2-title","name":"Mental Damage"},"Sometimes an effect can target the mind with enough psychic force to actually deal damage to the creature. When it does, it deals {@b mental damage}. Mindless creatures and those with only programmed or rudimentary intelligence are often immune to mental damage and effects.",{"type":"pf2-title","name":"Poison Damage"},"Venoms, toxins and the like can deal {@b poison damage}, which affects creatures by way of contact, ingestion, inhalation, or injury. In addition to coming from monster attacks, alchemical items, and spells, poison damage is often caused by ongoing afflictions, which follow special rules described on page 457.",{"type":"pf2-title","name":"Bleed Damage"},"Another special type of physical damage is {@b bleed damage}. This is persistent damage that represents loss of blood.","As such, it has no effect on nonliving creatures or living creatures that don't need blood to live. Weaknesses and resistances to physical damage apply. Bleed damage ends automatically if you're healed to your full Hit Points.",{"type":"pf2-title","name":"Precision Damage"},"Sometimes you are able to make the most of your attack through sheer precision. When you hit with an ability that grants you {@b precision damage}, you increase the attack's listed damage, using the same damage type, rather than tracking a separate pool of damage. For example, a non-magical dagger Strike that deals 1d6 precision damage from a rogue's sneak attack increases the piercing damage by 1d6.","Some creatures are immune to precision damage, regardless of the damage type; these are often amorphous creatures that lack vulnerable anatomy. A creature immune to precision damage would ignore the 1d6 precision damage in the example above, but it would still take the rest of the piercing damage from the Strike. Since precision damage is always the same type of damage as the attack it's augmenting, a creature that is resistant to physical damage, like a gargoyle, would resist not only the dagger's damage but also the precision damage, even though it is not specifically resistant to precision damage.",{"type":"pf2-title","name":"Precious Materials"},"While not their own damage category, precious materials can modify damage to penetrate a creature's resistances or take advantage of its weaknesses. For instance, silver weapons are particularly effective against lycanthropes and bypass the resistances to physical damage that most devils have."]}],"source":"CRB"},{"type":"pf2-h3","page":451,"name":"Step 3: Apply the Target's Immunities, Weaknesses, and Resistances","entries":["Defenses against certain types of damage or effects are called immunities or resistances, while vulnerabilities are called weaknesses. Apply immunities first, then weaknesses, and resistances third. Immunity, weakness, or resistance to an alignment applies only to damage of that type, not to damage from an attacking creature of that alignment.",{"type":"pf2-h4","page":451,"name":"Immunity","entries":["When you have immunity to a specific type of damage, you ignore all damage of that type. If you have immunity to a specific condition or type of effect, you can't be affected by that condition or any effect of that type. If you have immunity to effects with a certain trait (such as death effects, poison, or disease) you are unaffected by any effect with that trait. Often, an effect can be both a trait and a damage type (this is especially true in the case of energy damage types). In these cases, the immunity applies to the entire effect, not just the damage. You can still be targeted by an ability with an effect you are immune to; you just don't apply the effect. However, some complex effects might have parts that affect you even if you're immune to one of the effect's traits; for instance, a spell that deals both fire and acid damage can still deal acid damage to you even if you're immune to fire.","Immunity to critical hits works a little differently. When a creature immune to critical hits is critically hit by a Strike or other attack that deals damage, it takes normal damage instead of double damage. This does not make it immune to any other critical success effects of other actions that have the attack trait (such as {@action Grapple} and {@action Shove}).","Another exception is immunity to nonlethal attacks. If you are immune to nonlethal attacks, you are immune to all damage from attacks with the nonlethal trait, no matter what other type the damage has. For instance, a {@creature stone golem} has immunity to nonlethal attacks. This means that no matter how hard you hit it with your fist, you're not going to damage it—unless your fists don't have the {@trait nonlethal} trait, such as if you're a {@class monk}."],"source":"CRB"},{"type":"pf2-h4","page":453,"name":"Temporary Immunity","entries":["Some effects grant you immunity to the same effect for a set amount of time. If an effect grants you temporary immunity, repeated applications of that effect don't affect you for as long as the temporary immunity lasts. Unless the effect says it applies only to a certain creature's ability, it doesn't matter who created the effect. For example, the {@spell blindness} spell says, \"The target is temporarily immune to blindness for 1 minute.\" If anyone casts {@spell blindness} on that creature again before 1 minute passes, the spell has no effect.","Temporary immunity doesn't prevent or end ongoing effects of the source of the temporary immunity. For instance, if an ability makes you frightened and you then gain temporary immunity to the ability, you don't immediately lose the frightened condition due to the immunity you just gained—you simply don't become frightened if you're targeted by the ability again before the immunity ends."],"source":"CRB"},{"type":"pf2-h4","page":453,"name":"Weakness","entries":["If you have a weakness to a certain type of damage or damage from a certain source, that type of damage is extra effective against you. Whenever you would take that type of damage, increase the damage you take by the value of the weakness. For instance, if you are dealt 2d6 fire damage and have weakness 5 to fire, you take 2d6+5 fire damage.","If you have a weakness to something that doesn't normally deal damage, such as water, you take damage equal to the weakness value when touched or affected by it. If more than one weakness would apply to the same instance of damage, use only the highest applicable weakness value. This usually happens only when a monster is weak to both a type of physical damage and a given material."],"source":"CRB"},{"type":"pf2-h4","page":453,"name":"Resistance","entries":["If you have resistance to a type of damage, each time you take that type of damage, you reduce the amount of damage you take by the listed amount (to a minimum of 0 damage). Resistance can specify combinations of damage types or other traits. For instance, you might encounter a monster that's resistant to non-magical bludgeoning damage, meaning it would take less damage from bludgeoning attacks that weren't magical, but would take normal damage from your {@runeItem mace||+1 wepon potency|} (since it's magical) or a non-magical {@item spear} (since it deals piercing damage). A resistance also might have an exception. For example, resistance 10 to physical damage (except silver) would reduce any physical damage by 10 unless that damage was dealt by a silver weapon.","If you have more than one type of resistance that would apply to the same instance of damage, use only the highest applicable resistance value.","It's possible to have resistance to all damage. When an effect deals damage of multiple types and you have resistance to all damage, apply the resistance to each type of damage separately. If an attack would deal 7 slashing damage and 4 fire damage, resistance 5 to all damage would reduce the slashing damage to 2 and negate the fire damage entirely."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":453,"name":"Step 4: If Damage Remains, Reduce the Target's Hit Points","entries":["After applying the target's immunities, resistances, and weaknesses to the damage, whatever damage is left reduces the target's Hit Points on a 1-to-1 basis. More information about Hit Points can be found in the Hit Points, Healing, and Dying section on page 459.",{"type":"pf2-h4","page":453,"name":"Nonlethal Attacks","entries":["You can make a nonlethal attack in an effort to knock someone out instead of killing them (see Knocked Out and Dying on page 459). Weapons with the nonlethal trait (including fists) do this automatically. You take a –2 circumstance penalty to the attack roll when you make a nonlethal attack using a weapon that doesn't have the nonlethal trait. You also take this penalty when making a lethal attack using a nonlethal weapon.","Spells and other effects with the nonlethal trait that reduce a creature to 0 Hit Points knock the creature out instead of killing them."],"source":"CRB"}],"source":"CRB"}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":481,"name":"Downtime Mode","entries":[{"type":"pf2-h1-flavor","page":481,"entries":["{@i Downtime mode is played day-by-day rather than minute-by-minute or scene-by-scene. Usually this mode of play occurs when you are in the safety of a settlement, maybe recovering from your adventures or studying an artifact you found.}"],"source":"CRB"},"Downtime gives you time to rest fully, engage in crafting or a professional endeavor, learn new spells, retrain feats, or just have fun. You can sell items acquired during your adventures, buy new goods, and perform other activities as determined by your feats, your skills, and the settlement where you are spending the downtime.",{"type":"pf2-h2","page":481,"name":"Long-Term Rest","entries":["You can spend an entire day and night resting during downtime to recover Hit Points equal to your Constitution modifier (minimum 1) multiplied by twice your level."],"source":"CRB"},{"type":"pf2-h2","page":481,"name":"Retraining","entries":["Retraining offers a way to alter some of your character choices, which is helpful when you want to take your character in a new direction or change decisions that didn't meet your expectations. You can retrain feats, skills, and some selectable class features. You can't retrain your ancestry, heritage, background, class, or ability scores. You can't perform other downtime activities while retraining.","Retraining usually requires you to spend time learning from a teacher, whether that entails physical training, studying at a library, or falling into shared magical trances. Your GM determines whether you can get proper training or whether something can be retrained at all. In some cases, you'll have to pay your instructor.","Some abilities can be difficult or impossible to retrain (for instance, a sorcerer can retrain their bloodline only in extraordinary circumstances).","When retraining, you generally can't make choices you couldn't make when you selected the original option. For instance, you can't exchange a 2nd-level skill feat for a 4th-level one, or for one that requires prerequisites you didn't meet at the time you took the original feat. If you don't remember whether you met the prerequisites at the time, ask your GM to make the call. If you cease to meet the prerequisites for an ability due to retraining, you can't use that ability. You might need to retrain several abilities in sequence in order to get all the abilities you want.",{"type":"pf2-h3","page":481,"name":"Feats","entries":["You can spend a week of downtime retraining to swap out one of your feats. Remove the old feat and replace it with another of the same type. For example, you could swap a skill feat for another skill feat, but not for a wizard feat."],"source":"CRB"},{"type":"pf2-h3","page":481,"name":"Skills","entries":["You can spend a week of downtime retraining to swap out one of your skill increases. Reduce your proficiency rank in the skill losing its increase by one step and increase your proficiency rank in another skill by one step. The new proficiency rank has to be equal to or lower than the proficiency rank you traded away. For instance, if your bard is a master in {@skill Performance} and {@skill Stealth}, and an expert in {@skill Occultism}, you could reduce the character's proficiency in {@skill Stealth} to expert and become a master in {@skill Occultism}, but you couldn't reassign that skill increase to become legendary in {@skill Performance}. Keep track of your level when you reassign skill increases; the level at which your skill proficiencies changed can influence your ability to retrain feats with skill prerequisites.","You can also spend a week to retrain an initial trained skill you gained during character creation."],"source":"CRB"},{"type":"pf2-h3","page":481,"name":"Class Features","entries":["You can change a class feature that required a choice, making a different choice instead. This lets you change a druid order or a wizard school, for example. The GM will tell you how long this takes—always at least a month."],"source":"CRB"},{"type":"pf2-brown-box","page":481,"name":"SKILL DOWNTIME ACTIVITIES","entries":["Chapter 4: Skills includes several downtime activities, which are summarized here.","{@b {@action Craft}:} Using the {@skill Crafting} skill, you can create items from raw materials (page 244).","{@b {@action Create Forgery}:} You forge a document (page 251).","{@b {@action Earn Income}:} You earn money, typically using {@skill Crafting}, Lore, or {@skill Performance} (page 236).","{@b {@action Subsist}:} You find food and shelter in the wilderness or within a settlement (page 240).","{@b {@action Treat Disease}:} You spend time caring for a diseased creature in the hope of curing that creature (page 248)."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":481,"name":"Other Downtime Activities","entries":["Work with your GM if there are other ways you want to spend downtime. You might need to pay for your cost of living (the prices for this can be found on page 294).","You might acquire property, manage a business, become part of a guild or civic group, curry favor in a large city, take command of an army, take on an apprentice, start a family, or minister to a flock of the faithful."],"source":"CRB"}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":453,"name":"Effects","entries":["Anything you do in the game has an {@b effect}. Many of these outcomes are easy to adjudicate during the game.","If you tell the GM that you draw your sword, no check is needed, and the result is that your character is now holding a sword. Other times, the specific effect requires more detailed rules governing how your choice is resolved.","Many spells, magic items, and feats create specific effects, and your character will be subject to effects caused by monsters, hazards, the environment, and other characters.","While a check might determine the overall impact or strength of an effect, a check is not always part of creating an effect. Casting a {@spell fly} spell on yourself creates an effect that allows you to soar through the air, but casting the spell does not require a check. Conversely, using the Intimidate skill to Demoralize a foe does require a check, and your result on that check determines the effect's outcome.","The following general rules are used to understand and apply effects.",{"type":"pf2-h3","page":455,"name":"Duration","entries":["Most effects are discrete, creating an instantaneous effect when you let the GM know what actions you are going to use. Firing a bow, moving to a new space, or taking something out of your pack all resolve instantly. Other effects instead last for a certain duration. Once the duration has elapsed, the effect ends. The rules generally use the following conventions for durations, though spells have some special durations detailed on pages 304–305.","For an effect that lasts a number of rounds, the remaining duration decreases by 1 at the start of each turn of the creature that created the effect. This is common for beneficial effects that target you or your allies. Detrimental effects often last \"until the end of the target's next turn\" or \"through\" a number of their turns (such as \"through the target's next 3 turns\"), which means that the effect's duration decreases at the end of the creature's turn, rather than the start.","Instead of lasting a fixed number of rounds, a duration might end only when certain conditions are met (or cease to be true). If so, the effects last until those conditions are met."],"source":"CRB"},{"type":"pf2-h3","page":455,"name":"Range and Reach","entries":["Actions and other abilities that generate an effect typically work within a specified range or a reach. Most spells and abilities list a {@b range}—the maximum distance from the creature or object creating the effect in which the effect can occur.","Ranged and thrown weapons have a {@b range increment}.","Attacks with such weapons work normally up to that range. Attacks against targets beyond that range take a –2 penalty, which worsens by 2 for every additional multiple of that range, to a maximum of a –10 penalty after five additional range increments. Attacks beyond this range are not possible. For example, if you are using a shortbow, your attacks take no penalty against a target up to 60 feet away, a –2 penalty if a target is over 60 and up to 120 feet away, a –4 if a target is over 120 and up to 180 feet away, and so on, up to a maximum distance of 360 feet.","{@b Reach} is how far you can physically reach with your body or a weapon. Melee Strikes rely on reach. Your reach also creates an area around your space where other creatures could trigger your reactions. Your reach is typically 5 feet, but weapons with the reach trait can extend this. Larger creatures can have greater reach; for instance, an ogre has a 10-foot reach. Unlike with measuring most distances, 10-foot reach can reach 2 squares diagonally. Reach greater than 10 feet is measured normally; 20-foot reach can reach 3 squares diagonally, 25-foot reach can reach 4, and so on."],"source":"CRB"},{"type":"pf2-h3","page":455,"name":"Targets","entries":["Some effects require you to choose specific targets.","Targeting can be difficult or impossible if your chosen creature is undetected by you, if the creature doesn't match restrictions on who you can target, or if some other ability prevents it from being targeted.","Some effects require a target to be willing. Only you can decide whether your PC is willing, and the GM decides whether an NPC is willing. Even if you or your character don't know what the effect is, such as if your character is unconscious, you still decide if you're willing.","Some effects target or require an ally, or otherwise refer to an ally. This must be someone on your side, often another PC, but it might be a bystander you are trying to protect. You are not your own ally. If it isn't clear, the GM decides who counts as an ally or an enemy."],"source":"CRB"},{"type":"pf2-h3","page":456,"name":"Areas","entries":["Some effects occupy an area of a specified shape and size.","An area effect always has a point of origin and extends out from that point. There are four types of areas: emanations, bursts, cones, and lines. When you're playing in encounter mode and using a grid, areas are measured in the same way as movement (page 463), but areas' distances are never reduced or affected by {@quickref difficult terrain||3|terrain} or lesser cover (page 476). You can use the diagrams below as common reference templates for areas, rather than measuring squares each time. Many area effects describe only the effects on creatures in the area. The GM determines any effects to the environment and unattended objects.",{"type":"pf2-h4","page":456,"name":"Burst","entries":["A burst effect issues forth in all directions from a single corner of a square within the range of the effect, spreading in all directions to a specified radius. For instance, when you cast {@spell fireball}, it detonates at the corner of a square within 500 feet of you and creates a 20-foot burst, meaning it extends out 20 feet in every direction from the corner of the square you chose, affecting each creature whose space (or even one square of its space) is within the burst."],"source":"CRB"},{"type":"pf2-h4","page":457,"name":"Cone","entries":["A cone shoots out from you in a quarter circle on the grid.","When you aim a cone, the first square of that cone must share an edge with your space if you're aiming orthogonally, or it must touch a corner of your space if you're aiming diagonally. If you're Large or larger, the first square can run along the edge of any square of your space. You can't aim a cone so that it overlaps your space. The cone extends out for a number of feet, widening as it goes, as shown in the Areas diagram. For instance, when a green dragon uses its breath weapon, it breathes a cone of poisonous gas that originates at the edge of one square of its space and affects a quarter-circle area 30 feet on each edge.","If you make a cone originate from someone or something else, follow these same rules, with the first square of the cone using an edge or corner of that creature or object's space instead of your own."],"source":"CRB"},{"type":"pf2-h4","page":457,"name":"Emanation","entries":["An emanation issues forth from each side of your space, extending out to a specified number of feet in all directions. For instance, the {@spell bless} spell's emanation radiates 5 or more feet outward from the caster. Because the sides of a creature's space are the starting point for the emanation, an emanation from a Large or larger creature affects a greater overall area than that of a Medium or smaller creature. Unless the text states otherwise, the creature creating an emanation effect chooses whether the creature at its center is affected."],"source":"CRB"},{"type":"pf2-h4","page":457,"name":"Line","entries":["A line shoots forth from you in a straight line in a direction of your choosing. The line affects each creature whose space it overlaps. Unless a line effect says otherwise, it is 5 feet wide. For example, the {@spell lightning bolt} spell's area is a 60-foot line that's 5 feet wide."],"source":"CRB"}],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h3","page":457,"name":"Line of Effect","entries":["When creating an effect, you usually need an unblocked path to the target of a spell, the origin point of an effect's area, or the place where you create something with a spell or other ability. This is called a line of effect. You have line of effect unless a creature is entirely behind a solid physical barrier. Visibility doesn't matter for line of effect, nor do portcullises and other barriers that aren't totally solid. If you're unsure whether a barrier is solid enough, usually a 1-foot-square gap is enough to maintain a line of effect, though the GM makes the final call.","In an area effect, creatures or targets must have line of effect to the point of origin to be affected. If there's no line of effect between the origin of the area and the target, the effect doesn't apply to that target. For example, if there's a solid wall between the origin of a {@spell fireball} and a creature that's within the burst radius, the wall blocks the effect—that creature is unaffected by the {@spell fireball} and doesn't need to attempt a save against it. Likewise, any ongoing effects created by an ability with an area cease to affect anyone who moves outside of the line of effect."],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h3","page":457,"name":"Line of Sight","entries":["Some effects require you to have line of sight to your target. As long as you can precisely sense the area (as described in Perception on page 464) and it is not blocked by a solid barrier (as described in {@quickref Cover||4|Cover}), you have line of sight. An area of darkness prevents line of sight if you don't have {@ability darkvision}, but portcullises and other obstacles that aren't totally solid do not. If you're unsure whether a barrier is solid enough to block line of sight, usually a 1-foot-square gap is enough to maintain line of sight, though the GM makes the final call."],"data":{"quickrefIndex":true},"source":"CRB"}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":468,"name":"Encounter Mode","entries":[{"type":"pf2-h1-flavor","page":468,"entries":["{@i When every individual action counts, you enter the encounter mode of play. In this mode, time is divided into rounds, each of which is 6 seconds of time in the game world. Every round, each participant takes a turn in an established order. During your turn, you can use actions, and depending on the details of the encounter, you might have the opportunity to use reactions and free actions on your own turn and on others' turns.}"],"source":"CRB"},{"type":"pf2-h2","page":468,"name":"Structure","entries":["An encounter is played out in a series of rounds, during which the player characters, adversaries, and other participants in the encounter act in sequence.","You roll initiative to determine this order at the start of the encounter and then play through rounds until a conclusion is reached and the encounter ends. The rules in this section assume a combat encounter—a battle—but the general structure can apply to any kind of encounter.",{"type":"pf2-h3","page":468,"name":"Step 1: Roll Initiative","entries":["When the GM calls for it, you'll roll initiative to determine your place in the initiative order, which is the sequence in which the encounter's participants will take their turns. Rolling initiative marks the start of an encounter. More often than not, you'll roll initiative when you enter a battle.","Typically, you'll roll a Perception check to determine your initiative—the more aware you are of your surroundings, the more quickly you can respond. Sometimes, though, the GM might call on you to roll some other type of check. For instance, if you were Avoiding Notice during exploration (page 479), you'd roll a {@skill Stealth} check. A social encounter could call for a {@skill Deception} or {@skill Diplomacy} check.","The GM rolls initiative for anyone other than the player characters in the encounter. If these include a number of identical creatures, the GM could roll once for the group as a whole and have them take their turns within the group in any order. However, this can make battles less predictable and more dangerous, so the GM might want to roll initiative for some or all creatures individually unless it's too much of a burden.","Unlike a typical check, where the result is compared to a DC, the results of initiative rolls are ranked. This ranking sets the order in which the encounter's participants act—the initiative order. The character with the highest result goes first. The second highest follows, and so on until whoever had the lowest result takes their turn last.","If your result is tied with a foe's result, the adversary goes first. If your result is tied with another PC's, you can decide between yourselves who goes first when you reach that place in the initiative order. After that, your places in the initiative order usually don't change during the encounter."],"source":"CRB"},{"type":"pf2-h3","page":468,"name":"Step 2: Play a Round","entries":["A round begins when the participant with the highest initiative roll result starts their turn, and it ends when the one with the lowest initiative ends their turn. The process of taking a turn is detailed below. Creatures might also act outside their turns with reactions and free actions."],"source":"CRB"},{"type":"pf2-h3","page":468,"name":"Step 3: Begin the Next Round","entries":["Once everyone in the encounter has taken a turn, the round is over and the next one begins. Don't roll initiative again; the new round proceeds in the same order as the previous one, repeating the cycle until the encounter ends."],"source":"CRB"},{"type":"pf2-h3","page":468,"name":"Step 4: End the Encounter","entries":["When your foes are defeated, some sort of truce is reached, or some other event or circumstance ends the combat, the encounter is over. You and the other participants no longer follow the initiative order, and a more free-form style of play resumes, with the game typically moving into exploration mode. Sometimes at the end of an encounter, the GM will award Experience Points to the party or you'll find treasure to divvy up."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":468,"name":"Turns","entries":["When it's your turn to act, you can use single actions ({@as 1}), short activities ({@as 2} and {@as 3}), reactions ([reaction]), and free actions ({@as f}). When you're finished, your turn ends and the character next in the initiative order begins their turn.","Sometimes it's important to note when during your turn something happens, so a turn is divided into three steps.",{"type":"pf2-h3","page":468,"name":"Step 1: Start Your Turn","entries":["Many things happen automatically at the start of your turn—it's a common point for tracking the passage of time for effects that last multiple rounds. At the start of each of your turns, take these steps in any order you choose:",{"type":"list","items":["If you created an effect lasting for a certain number of rounds, reduce the number of rounds remaining by 1. The effect ends if the duration is reduced to 0. For example, if you cast a spell that lasts 3 rounds on yourself during your first turn of a fight, it would affect you during that turn, decrease to 2 rounds of duration at the start of your second turn, decrease to 1 round of duration at the start of your third turn, and expire at the start of your fourth turn.","You can use 1 free action or reaction with a trigger of \"Your turn begins\" or something similar.","If you're {@condition dying}, roll a recovery check (page 459).","Do anything else that is specified to happen at the start of your turn."]},"The last step of starting your turn is always the same.",{"type":"list","items":["Regain your 3 actions and 1 reaction. If you haven't spent your reaction from your last turn, you lose it—you can't \"save\" actions or reactions from one turn to use during the next turn. If a condition prevents you from being able to act, you don't regain any actions or your reaction. Some abilities or conditions (such as {@condition quickened} and {@condition slowed}) can change how many actions you regain and whether you regain your reaction. If you lose actions and gain additional actions (such as if you're both {@condition quickened} and {@condition slowed}), you choose which actions to lose."]}],"source":"CRB"},{"type":"pf2-h3","page":469,"name":"Step 2: Act","entries":["You can use actions in any order you wish during your turn, but you have to complete one action or activity before beginning another; for example, you can't use a single action in the middle of performing a 2-action activity. What actions you can use often depend on your class features, skills, feats, and items, but there are default actions anyone can use, described in Basic Actions below. Some effects might prevent you from acting. If you can't act, you can't use any actions, including reactions and free actions.","If you begin a 2-action or 3-action activity on your turn, you must be able to complete it on your turn. You can't, for example, begin to High Jump using your final action on one turn and then complete it as your first action on your next turn.","Once you have spent all 3 of your actions, your turn ends (as described in Step 3) and the next creature's turn begins. You can, however, use only some of your actions and end your turn early. As soon as your turn ends, you lose all your remaining actions, but not your reaction or your ability to use free actions."],"source":"CRB"},{"type":"pf2-h3","page":469,"name":"Step 3: End Your Turn","entries":["Once you've done all the things you want to do with the actions you have available, you reach the end of your turn.","Take the following steps in any order you choose. Play then proceeds to the next creature in the initiative order.",{"type":"list","items":["End any effects that last until the end of your turn. For example, spells with a sustained duration end at the end of your turn unless you used the {@action Sustain a Spell} action during your turn to extend them. Some effects caused by enemies might also last through a certain number of your turns, and you decrease the remaining duration by 1 during this step, ending the effect if its duration is reduced to 0.","If you have a {@condition Persistent Damage|CRB|persistent damage} condition, you take the damage at this point. After you take the damage, you can attempt the flat check to end the {@condition Persistent Damage|CRB|persistent damage}. You then attempt any saving throws for ongoing afflictions. Many other conditions change at the end of your turn, such as the {@condition frightened} condition decreasing in severity. These take place after you've taken any {@condition Persistent Damage|CRB|persistent damage}, attempted flat checks to end the {@condition Persistent Damage|CRB|persistent damage}, and attempted saves against any afflictions.","You can use 1 free action or reaction with a trigger of \"Your turn ends\" or something similar.","Resolve anything else specified to happen at the end of your turn."]}],"source":"CRB"},{"type":"pf2-brown-box","page":469,"name":"TRACKING INITIATIVE","entries":["The GM keeps track of the initiative order for an encounter.","It's usually okay for the players to know this order, since they'll see who goes when and be aware of one another's results. However, the GM might want to conceal the names of adversaries the PCs have yet to identify.","Once the encounter's order is set, it's usually not necessary to track the original initiative numbers. The GM can create a simple list, use a series of cards or other indicators, or use a {@i Pathfinder Combat Pad}, which has magnetic markers to allow for easily rearranging the order.",{"type":"pf2-title","name":"Changing the Initiative Order"},"Any method used to track the initiative order needs to be flexible because the order can change. A creature can use the Delay basic action to change its place in the order, in which case you can erase it from the list or pull its marker aside until it reenters the initiative order. When a creature gets knocked out, its initiative order also changes (see Knocked Out and Dying on page 459). Using the Ready basic action doesn't change a creature's place in the initiative order, though, because the designated action becomes a reaction."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":469,"name":"Basic Actions","entries":["Basic actions represent common tasks like moving around, attacking, and helping others. As such, every creature can use basic actions except in some extreme circumstances, and many of those actions are used very frequently. Most notably, you'll use Interact, Step, Stride, and Strike a great deal. Many feats and other actions call upon you to use one of these basic actions or modify them to produce different effects. For example, a more complex action might let you Stride up to double your Speed instead of just up to your Speed, and a large number of activities include a Strike.","Actions that are used less frequently but are still available to most creatures are presented in Specialty Basic Actions starting on page 472. These typically have requirements that not all characters are likely to meet, such as wielding a shield or having a burrow Speed.","In addition to the actions in these two sections, the actions for spellcasting can be found on pages 302–305, and the actions for using magic items appear on pages 531–534.","{@note To view all actions, please visit the {@filter Actions page.|actions||source=CRB}}",{"type":"pf2-brown-box","page":471,"name":"SPEAKING","entries":["As long as you can act, you can also speak. You don't need to spend any type of action to speak, but because a round represents 6 seconds of time, you can usually speak at most a single sentence or so per round. Special uses of speech, such as attempting a {@skill Deception} skill check to Lie, require spending actions and follow their own rules.","All speech has the auditory trait. If you communicate in some way other than speech, other rules might apply. For instance, using sign language is visual instead of auditory.","not trigger reactions that can be triggered by actions with the manipulate trait (such as Attack of Opportunity).","If you want to prepare to Release something outside of your turn, use the Ready activity."],"source":"CRB"},{"type":"pf2-h3","page":472,"name":"Specialty Basic Actions","entries":["These actions are useful under specific circumstances. Some require you to have a special movement type (page 463)."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":472,"name":"Activities in Encounters","entries":["Activities that take longer than a turn can't normally be performed during an encounter. Spells with a casting time of 1 minute or more are a common example of this, as are several skill actions. When you commit to an activity during your turn in an encounter, you commit to spending all of the actions it requires. If the activity gets interrupted partway through, you lose all of the actions you would have spent on that activity. Activities are described in full on page 461."],"source":"CRB"},{"type":"pf2-h2","page":472,"name":"Reactions in Encounters","entries":["Your reactions let you respond immediately to what's happening around you. The GM determines whether you can use reactions before your first turn begins, depending on the situation in which the encounter happens.","Once your first turn begins, you gain your actions and reaction. You can use 1 reaction per round. You can use a reaction on anyone's turn (including your own), but only when its trigger occurs. If you don't use your reaction, you lose it at the start of your next turn, though you typically then gain a reaction at the start of that turn.","Some reactions are specifically meant to be used in combat and can change how the battle plays out drastically.","One example of such a reaction is {@action Attack of Opportunity}, which {@class fighter||fighters} gain at 1st level.","This reaction lets you make a melee {@action Strike} if a creature within reach uses a {@trait manipulate} or {@trait move} action, makes a ranged attack, or leaves a square during a {@trait move} action. The Triggering Moves diagram on page 474 illustrates examples of movements that might trigger an {@action Attack of Opportunity} from a creature without reach and one with reach.","You'll notice this reaction allows you to use a modified basic action, a {@action Strike}. This follows the rules on subordinate actions found on page 462.","Because your {@action Attack of Opportunity} takes place outside of your turn, the attack roll doesn't incur a multiple attack penalty."],"source":"CRB"},{"type":"pf2-h2","page":473,"name":"Movement in Encounters","entries":["Your movement during encounter mode depends on the actions and other abilities you use. Whether you Stride, Step, Swim, or Climb, the maximum distance you can move is based on your Speed. Certain feats or magic items can grant you other movement types, allowing you to swiftly burrow, climb, fly, or swim (page 463).","When the rules refer to a \"movement cost\" or \"spending movement,\" they are describing how many feet of your Speed you must use to move from one point to another. Normally, movement costs 5 feet per square when you're moving on a grid, or it costs the number of feet you move if you're not using a grid. However, sometimes it's harder to move a certain distance due to {@quickref difficult terrain||3|terrain} or other factors. In such a case, you might have to spend a different amount of movement to move from one place to another.","For example, a form of movement might require 10 feet of movement to move 1 square, and moving through some types of terrain costs an extra 5 feet of movement per square.",{"type":"pf2-h3","page":473,"name":"Grid Movement","entries":["If an encounter involves combat, it's often a good idea to track the movement and relative position of the participants using a Pathfinder Flip-Mat, Flip-Tiles, or some other form of grid to display the terrain, and miniatures to represent the combatants. When a character moves on a grid, every 1-inch square of the play area is 5 feet across in the game world. Hence, a creature moving in a straight line spends 5 feet of its movement for every map square traveled.","Because moving diagonally covers more ground, you count that movement differently. The first square of diagonal movement you make in a turn counts as 5 feet, but the second counts as 10 feet, and your count thereafter alternates between the two. For example, as you move across 4 squares diagonally, you would count 5 feet, then 10, then 5, and then 10, for a total of 30 feet. You track your total diagonal movement across all your movement during your turn, but reset your count at the end of your turn."],"source":"CRB"},{"type":"pf2-h3","page":473,"name":"Size, Space, and Reach","entries":["Creatures and objects of different sizes occupy different amounts of space. The sizes and the spaces they each take up on a grid are listed in {@table Size and Reach||Table 9–1: Size and Reach}.","Table 9–1 also lists the typical reach for creatures of each size, for both tall creatures (most bipeds) and long creatures (most quadrupeds). See page 455 for more about reach.","The Space entry lists how many feet on a side a creature's space is, so a Large creature fills a 10-foot-by-10-foot space (4 squares on the grid). Sometimes part of a creature extends beyond its space, such as if a giant octopus is grabbing you with its tentacles. In that case, the GM will usually allow attacking the extended portion, even if you can't reach the main creature. A Small or larger creature or object takes up at least 1 square on a grid, and creatures of these sizes can't usually share spaces except in situations like a character riding a mount. Rules for moving through other creatures' spaces appear below.",{"type":"data","tag":"table","source":"CRB","name":"Size and Reach"},"Multiple Tiny creatures can occupy the same square. At least four can fit in a single square, though the GM might determine that even more can fit. Tiny creatures can occupy a space occupied by a larger creature as well, and if their reach is 0 feet, they must do so in order to attack."],"source":"CRB"},{"type":"pf2-h3","page":474,"name":"Move Actions That Trigger Reactions","entries":["Some reactions and free actions are triggered by a creature using an action with the move trait. The most notable example is Attack of Opportunity. Actions with the move trait can trigger reactions or free actions throughout the course of the distance traveled. Each time you exit a square (or move 5 feet if not using a grid) within a creature's reach, your movement triggers those reactions and free actions (although no more than once per move action for a given reacting creature). If you use a move action but don't move out of a square, the trigger instead happens at the end of that action or ability.","Some actions, such as Step, specifically state they don't trigger reactions or free actions based on movement."],"source":"CRB"},{"type":"pf2-h3","page":474,"name":"Moving Through a Creature's Space","entries":["You can move through the space of a willing creature. If you want to move through an unwilling creature's space, you can Tumble Through that creature's space using {@skill Acrobatics}. You can't end your turn in a square occupied by another creature, though you can end a move action in its square provided that you immediately use another move action to leave that square. If two creatures end up in the same square by accident, the GM determines which one is forced out of the square (or whether one falls prone).",{"type":"pf2-h4","page":474,"name":"Prone and Incapacitated Creatures","entries":["You can share a space with a prone creature if that creature is willing, unconscious, or dead and if it is your size or smaller. The GM might allow you to climb atop the corpse or unconscious body of a larger creature in some situations. A prone creature can't stand up while someone else occupies its space, but it can Crawl to a space where it's able to stand, or it can attempt to Shove the other creature out of the way."],"source":"CRB"},{"type":"pf2-h4","page":475,"name":"Creatures of Different Sizes","entries":["In most cases, you can move through the space of a creature at least three sizes larger than you (Table 9-1). This means a Medium creature can move through the space of a Gargantuan creature and a Small creature can move through the space of a Huge creature. Likewise, a bigger creature can move through the space of a creature three sizes smaller than itself or smaller. You still can't end your movement in a space occupied by a creature.","Tiny creatures are an exception. They can move through creatures' spaces and can even end their movement there."],"source":"CRB"},{"type":"pf2-h4","page":475,"name":"Objects","entries":["Because objects aren't as mobile as creatures are, they're more likely to fill a space. This means you can't always move through their spaces like you might move through a space occupied by a creature. You might be able to occupy the same square as a statue of your size, but not a wide column. The GM determines whether you can move into an object's square normally, whether special rules apply, or if you are unable to move into the square at all."],"source":"CRB"}],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":475,"name":"Forced Movement","entries":["When an effect forces you to move, or if you start falling, the distance you move is defined by the effect that moved you, not by your Speed. Because you're not acting to move, this doesn't trigger reactions that are triggered by movement.","If forced movement would move you into a space you can't occupy—because objects are in the way or because you lack the movement type needed to reach it, for example—you stop moving in the last space you can occupy. Usually the creature or effect forcing the movement chooses the path the victim takes. If you're pushed or pulled, you can usually be moved through hazardous terrain, pushed off a ledge, or the like. Abilities that reposition you in some other way can't put you in such dangerous places unless they specify otherwise. In all cases, the GM makes the final call if there's doubt on where forced movement can move a creature."],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h3","page":475,"name":"Terrain","entries":["Several types of terrain can complicate your movement by slowing you down, damaging you, or endangering you.",{"type":"pf2-h4","page":475,"name":"Difficult Terrain","entries":["Difficult terrain is any terrain that impedes your movement, ranging from particularly rough or unstable surfaces to thick ground cover and countless other impediments. Moving into a square of {@b difficult terrain} (or moving 5 feet into or within an area of difficult terrain, if you're not using a grid) costs an extra 5 feet of movement.","Moving into a square of {@b greater difficult terrain} instead costs 10 additional feet of movement. This additional cost is not increased when moving diagonally. You can't Step into difficult terrain.","Movement you make while you are jumping ignores the terrain you're jumping over. Some abilities (such as flight or being incorporeal) allow you to avoid the movement reduction from some types of difficult terrain. Certain other abilities let you ignore difficult terrain on foot; such an ability also allows you to move through greater difficult terrain at the normal movement cost as for difficult terrain, though it wouldn't let you ignore greater difficult terrain unless the ability specifies otherwise."],"source":"CRB"},{"type":"pf2-h4","page":476,"name":"Hazardous Terrain","entries":["Hazardous terrain damages you whenever you move through it. An acid pool and a pit of burning embers are both examples of hazardous terrain. The amount and type of damage depend on the specific hazardous terrain."],"source":"CRB"},{"type":"pf2-h4","page":476,"name":"Narrow Surfaces","entries":["A narrow surface is so precariously thin that you need to {@action Balance} or risk falling. Even on a success, you are {@condition flat-footed} on a narrow surface.","Each time you are hit by an attack or fail a save on a narrow surface, you must succeed at a Reflex save (with the same DC as the {@skill Acrobatics} check to {@action Balance}) or fall."],"source":"CRB"},{"type":"pf2-h4","page":476,"name":"Uneven Ground","entries":["Uneven ground is an area unsteady enough that you need to {@action Balance} or risk falling prone and possibly injuring yourself, depending on the specifics of the uneven ground. You are {@condition flat-footed} on uneven ground. Each time you are hit by an attack or fail a save on uneven ground, you must succeed at a Reflex save (with the same DC as the {@skill Acrobatics} check to Balance) or fall prone."],"source":"CRB"},{"type":"pf2-h4","page":476,"name":"Inclines","entries":["An incline is an area so steep that you need to {@action Climb} using the {@skill Athletics} skill in order to progress upward.","You're {@condition flat-footed} when {@action Climb||Climbing} an incline."],"source":"CRB"}],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h2","page":477,"name":"Special Battles","entries":["Sometimes fights occur while the characters are atop mounts or when the PCs take to the sky or seas.",{"type":"pf2-h3","page":478,"name":"Mounted Combat","entries":["You can ride some creatures into combat. As noted in the {@action Mount} specialty basic action, your mount needs to be at least one size larger than you and willing. Your mount acts on your initiative. You must use the {@action Command an Animal} action (page 249) to get your mount to spend its actions. If you don't, the animal wastes its actions. If you have the Ride general feat, you succeed automatically when you {@action Command an Animal} that's your mount.","For example, if you are mounted on a horse and you make three attacks, your horse would remain stationary since you didn't command it. If you instead spent your first action to {@action Command an Animal} and succeeded, you could get your mount to Stride. You could spend your next action to attack or to command the horse to attack, but not both.",{"type":"pf2-h4","page":478,"name":"Mounted Attacks","entries":["You and your mount fight as a unit. Consequently, you share a multiple attack penalty. For example, if you Strike and then {@action Command an Animal} to have your mount Strike, your mount's attack takes a –5 multiple attack penalty.","You occupy every square of your mount's space for the purpose of making your attacks. If you were Medium and on a Large mount, you could attack a creature on one side of your mount, then attack on the opposite side with your next action. If you have a longer reach, the distance depends partly on the size of your mount. On a Medium or smaller mount, use your normal reach. On a Large or Huge mount, you can attack any square adjacent to the mount if you have 5- or 10-foot reach, or any square within 10 feet of the mount (including diagonally) if you have 15-foot reach."],"source":"CRB"},{"type":"pf2-h4","page":478,"name":"Mounted Defenses","entries":["When you're mounted, attackers can target either you or your mount. Anything that affects multiple creatures (such as an area) affects both of you as long as you're both in the area. You are in an attacker's reach or range if any square of your mount is within reach or range. Because your mount is larger than you and you share its space, you have lesser cover against attacks targeting you when you're mounted if the mount would be in the way.","Because you can't move your body as freely while you're riding a mount, you take a –2 circumstance penalty to Reflex saves while mounted. Additionally, the only move action you can use is the Mount action to dismount."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-brown-box","page":478,"name":"THREE-DIMENSIONAL COMBAT","entries":["In aerial and aquatic combat, you might need to track positioning in three dimensions. For flying creatures, you might use one of the following methods:",{"type":"list","items":["Find platforms to place flying creatures' miniatures on.","Set a die next to a creature with the number indicating how many squares up in the air it is.","Make a stack of dice or tokens, 1 per 5 feet of elevation.","Write the elevation next to the monster on the grid. In underwater combat, choose a plane to be the\nbaseline, typically the waterline, the sea floor, or a stationary object you can measure from."]},"As with ground-based movement, moving diagonally up or down in 3-D space requires counting every other diagonal as 10 feet. Measure flanking in all directions—creatures above and below an enemy can flank it just as effectively as they can from opposite sides."],"source":"CRB"},{"type":"pf2-h3","page":478,"name":"Aerial Combat","entries":["Many monsters can fly, and PCs can use spells and items to gain the ability to fly. Flying creatures have to use the Fly action (page 472) to move through the air. Performing an especially tricky maneuver—such as trying to reverse course 180 degrees or fly through a narrow gap—might require using {@skill Acrobatics} to Maneuver in Flight. Creatures might fall from the sky, using the falling rules found on page 463. At the GM's discretion, some ground-based actions might not work in the air. For instance, a flying creature couldn't Leap."],"source":"CRB"},{"type":"pf2-h3","page":478,"name":"Aquatic Combat","entries":["Use these rules for battles in water or underwater:",{"type":"list","items":["You're {@condition flat-footed} unless you have a swim Speed.","You gain resistance 5 to acid and fire.","You take a –2 circumstance penalty to melee slashing or bludgeoning attacks that pass through water.","Ranged attacks that deal bludgeoning or slashing damage automatically miss if the attacker or target is underwater, and piercing ranged attacks made by an underwater creature or against an underwater target have their range increments halved.","You can't cast fire spells or use actions with the fire trait underwater.","At the GM's discretion, some ground-based actions might not work underwater or while floating."]},{"type":"pf2-h4","page":478,"name":"Drowning and Suffocating","entries":["You can hold your breath for a number of rounds equal to 5 + your Constitution modifier. Reduce your remaining air by 1 round at the end of each of your turns, or by 2 if you attacked or cast any spells that turn. You also lose 1 round worth of air each time you are critically hit or critically fail a save against a damaging effect. If you speak (including casting spells with verbal components or activating items with command components) you lose all remaining air.","When you run out of air, you fall {@condition unconscious} and start suffocating. You can't recover from being unconscious and must attempt a DC 20 Fortitude save at the end of each of your turns. On a failure, you take 1d10 damage, and on a critical failure, you die. On each check after the first, the DC increases by 5 and the damage by 1d10; these increases are cumulative. Once your access to air is restored, you stop suffocating and are no longer unconscious (unless you're at 0 Hit Points)."],"data":{"quickrefIndex":true},"source":"CRB"}],"data":{"quickrefIndex":true},"source":"CRB"}],"source":"CRB"}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":479,"name":"Exploration Mode","entries":[{"type":"pf2-h1-flavor","page":479,"entries":["{@i While encounters use rounds for combat, exploration is more free form. The GM determines the flow of time, as you could be traveling by horseback across craggy highlands, negotiating with merchants, or delving in a dungeon in search of danger and treasure. Exploration lacks the immediate danger of encounter mode, but it offers its own challenges.}"],"source":"CRB"},"Much of exploration mode involves movement and roleplaying. You might be traveling from one town to another, chatting with a couple of merchants an outpost along the way, or maybe having a terse conversation with the watchful city guards at your destination. Instead of measuring your rate of movement in 5-foot squares every round, you measure it in feet or miles per minute, hour, or day, using your travel speed. Rather than deciding on each action every turn, you'll engage in an exploration activity, and you'll typically spend some time every day resting and making your daily preparations.",{"type":"pf2-h2","page":479,"name":"Travel Speed","entries":["Depending on how the GM tracks movement, you move in feet or miles based on your character's Speed with the relevant movement type. Typical rates are on the table below.",{"type":"data","tag":"table","source":"CRB","name":"Travel Speed"},"The rates in Table 9 –2 assume traveling over flat and clear terrain at a determined pace, but one that's not exhausting.","Moving through {@quickref difficult terrain||3|terrain} halves the listed movement rate. {@quickref greater difficult terrain||3|terrain} reduces the distance traveled to one-third the listed amount. If the travel requires a skill check to accomplish, such as mountain climbing or swimming, the GM might call for a check once per hour using the result and the table above to determine your progress."],"source":"CRB"},{"type":"pf2-h2","page":479,"name":"Exploration Activities","entries":["While you're traveling and exploring, tell the GM what you'd generally like to do along the way. If you to do nothing more than make steady progress toward your goal, you move at the full travel speeds given in Table 9 –2.","When you want to do something other than simply travel, you describe what you are attempting to do. It isn't necessary to go into extreme detail, such as \"Using my dagger, I nudge the door so I can check for devious traps.\" Instead, \"I'm searching the area for hazards\" is sufficient. The GM finds the best exploration activity to match your description and describes the effects of that activity. Some exploration activities limit how fast you can travel and be effective.","These are most common exploration activities.",{"type":"pf2-brown-box","page":480,"name":"SKILL EXPLORATION ACTIVITIES","entries":["Chapter 4: Skills includes numerous additional exploration activities, which are summarized here.","{@b {@action Borrow an Arcane Spell}:} You use {@skill Arcana} to prepare a spell from someone else's spellbook (page 241).","{@b {@action Coerce}:} You use {@skill Intimidation} to threaten a creature so it does what you want (page 247).","{@b {@action Cover Tracks}:} You use {@skill Survival} to obscure your passing (page 252).","{@b {@action Decipher Writing}:} You use a suitable skill to understand archaic, esoteric, or obscure texts (page 234).","{@b {@action Gather Information}:} You use {@skill Diplomacy} to canvass the area to learn about a specific individual or topic (page 246).","{@b {@action Identify Alchemy}:} You use Craft and alchemist's tools to identify an alchemical item (page 245).","{@b {@action Identify Magic}:} Using a variety of skills, you can learn about a magic item, location, or ongoing effect (page 238).","{@b {@action Impersonate}:} You use {@skill Deception} and usually a disguise kit to create a disguise (page 245).","{@b {@action Learn a Spell}:} You use the skill corresponding to the spell's tradition to gain access to a new spell (page 238).","{@b {@action Make an Impression}:} You use {@skill Diplomacy} to make a good impression on someone (page 246).","{@b {@action Repair}:} With a repair kit and the {@skill Crafting} skill, you fix a damaged item (page 243).","{@b {@action Sense Direction}:} You use {@skill Survival} to get a sense of where you are or determine the cardinal directions (page 252).","{@b {@action Squeeze}:} Using {@skill Acrobatics}, you squeeze though very tight spaces (page 241).","{@b {@action Track}:} You use {@skill Survival} to find and follow creatures' tracks (page 252).","{@b {@action Treat Wounds}:} You use {@skill Medicine} to treat a living creature's wounds (page 249)."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":480,"name":"Rest and Daily Preparations","entries":["You perform at your best when you take enough time to rest and prepare. Once every 24 hours, you can take a period of rest (typically 8 hours), after which you regain Hit Points equal to your Constitution modifier (minimum 1) times your level, and you might recover from or improve certain conditions (page 453). Sleeping in armor results in poor rest that leaves you {@condition fatigued}. If you go more than 16 hours without resting, you become {@condition fatigued} (you cannot recover from this until you rest at least 6 continuous hours).","After you rest, you make your daily preparations, which takes around 1 hour. You can prepare only if you've rested, and only once per day. Preparing includes the following:",{"type":"list","items":["Spellcasters regain spell slots, and prepared spellcasters choose spells to have available that day.","Focus Points, other abilities that refresh during your preparations, and abilities that can be used only a certain number of times per day, including magic item uses, are reset.","You don armor and equip weapons and other gear.","You invest up to 10 worn magic items to gain their benefits for the day."]}],"data":{"quickrefIndex":true},"source":"CRB"}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":476,"name":"Flanking","entries":["When you and an ally are flanking a foe, it has a harder time defending against you. A creature is {@condition flat-footed} (taking a –2 circumstance penalty to AC) to creatures that are flanking it.","To flank a foe, you and your ally must be on opposites sides or corners of the creature. A line drawn between the center of your space and the center of your ally's space must pass through opposite sides or opposite corners of the foe's space. Additionally, both you and the ally have to be able to act, must be wielding melee weapons or able to make an unarmed attack, can't be under any effects that prevent you from attacking, and must have the enemy within reach. If you are wielding a reach weapon, you use your {@trait reach} with that weapon for this purpose."],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":444,"name":"Game Conventions","entries":["Pathfinder has many specific rules, but you'll also want to keep these general guidelines in mind when playing.",{"type":"pf2-h3","name":"The GM Has the Final Say"},"If you're ever uncertain how to apply a rule, the GM decides.","Of course, Pathfinder is a game, so when adjudicating the rules, the GM is encouraged to listen to everyone's point of view and make a decision that is both fair and fun.",{"type":"pf2-h3","name":"Specific Overrides General"},"A core principle of Pathfinder is that specific rules override general ones. If two rules conflict, the more specific one takes precedence. If there's still ambiguity, the GM determines which rule to use. For example, the rules state that when attacking a concealed creature, you must attempt a DC {@flatDC 5} flat check to determine if you hit. Flat checks don't benefit from modifiers, bonuses, or penalties, but an ability that's specifically designed to overcome concealment might override and alter this. If a rule doesn't specify otherwise, default to the general rules presented in this chapter. While some special rules may also state the normal rules to provide context, you should always default to the normal rules even if effects don't specifically say to.",{"type":"pf2-h3","name":"Rounding"},"You may need to calculate a fraction of a value, like halving damage. Always round down unless otherwise specified.","For example, if a spell deals 7 damage and a creature takes half damage from it, that creature takes 3 damage.",{"type":"pf2-h3","name":"Multiplying"},"When more than one effect would multiply the same number, don't multiply more than once. Instead, combine all the multipliers into a single multiplier, with each multiple after the first adding 1 less than its value. For instance, if one ability doubled the duration of one of your spells and another one doubled the duration of the same spell, you would triple the duration, not quadruple it.",{"type":"pf2-h3","name":"Duplicate Effects"},"When you're affected by the same thing multiple times, only one instance applies, using the higher level of the effects, or the newer effect if the two are the same level. For example, if you were using {@spell mage armor} and then cast it again, you'd still benefit from only one casting of that spell. Casting a spell again on the same target might get you a better duration or effect if it were cast at a higher level the second time, but otherwise doing so gives you no advantage.",{"type":"pf2-h3","name":"Ambiguous Rules"},"Sometimes a rule could be interpreted multiple ways. If one version is too good to be true, it probably is. If a rule seems to have wording with problematic repercussions or doesn't work as intended, work with your group to find a good solution, rather than just playing with the rule as printed."],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":467,"name":"Hero Points","entries":["Your heroic deeds earn you Hero Points, which grant you good fortune or let you recover from the brink of death. Unlike most aspects of your character, which persist over the long term, Hero Points last for only a single session.","The GM is in charge of awarding Hero Points (guidelines for doing so can be found {@quickref here||4|rewards|1}).","Usually, each character gets 1 Hero Point at the start of a session and can gain more later by performing heroic deeds—something selfless, daring, or beyond normal expectations. You can have a maximum of 3 Hero Points at a time, and you lose any remaining Hero Points at the end of a session.","You can spend your Hero Points in one of two ways.","Neither of these is an action, and you can spend Hero Points even if you aren't able to act. You can spend a Hero Point on behalf of your familiar or animal companion.",{"type":"list","items":["{@b Spend 1 Hero Point} to reroll a check. You must use the second result. This is a fortune effect (which means you can't use more than 1 Hero Point on a check).","{@b Spend all your Hero Points} (minimum 1) to avoid death. You can do this when your {@condition dying} condition would increase. You lose the {@condition dying} condition entirely and stabilize with 0 Hit Points. You don't gain the {@condition wounded} condition or increase its value from losing the {@condition dying} condition in this way, but if you already had that condition, you don't lose it or decrease its value."]},{"type":"pf2-h3","page":467,"name":"Describing Heroic Deeds","entries":["Because spending Hero Points reflects heroic deeds or tasks that surpass normal expectations, if you spend a Hero Point, you should describe the deed or task your character accomplishes with it to the other players.","Your character's deed might invoke a lesson learned in a past adventure, could be spurred by a determination to save someone else, or might depend on an item that ended up on their person due to a previous exploit. If you don't want to describe the deed or don't have any strong ideas about how to do so, ask the GM to come up with something for you. This can be a collaborative process, too. The GM might remind you of a long-forgotten event in the campaign, and all you have to do is fill in how that event comes to mind just at the right time, motivating you to push past your limits."],"source":"CRB"}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":459,"name":"Hit Points, Healing, and Dying","entries":["All creatures and objects have Hit Points (HP). Your maximum Hit Point value represents your health, wherewithal, and heroic drive when you are in good health and rested. Your maximum Hit Points include the Hit Points you gain at 1st level from your ancestry and class, those you gain at higher levels from your class, and any you gain from other sources (like the Toughness general feat). When you take damage, you reduce your current Hit Points by a number equal to the damage dealt.","Some spells, items, and other effects, as well as simply resting, can heal living or undead creatures. When you are healed, you regain Hit Points equal to the amount healed, up to your maximum Hit Points.",{"type":"pf2-h3","page":459,"name":"Knocked Out and Dying","entries":["Creatures cannot be reduced to fewer than 0 Hit Points.","When most creatures reach 0 Hit Points, they die and are removed from play unless the attack was nonlethal, in which case they are instead knocked out for a significant amount of time (usually 1 minute or more). When undead and construct creatures reach 0 Hit Points, they are destroyed.","Player characters, their companions, and other significant characters and creatures don't automatically die when they reach 0 Hit Points. Instead, they are knocked out and are at risk of death. At the GM's discretion, villains, powerful monsters, special NPCs, and enemies with special abilities that are likely to bring them back to the fight (like ferocity, regeneration, or healing magic) can use these rules as well.","As a player character, when you are reduced to 0 Hit Points, you're knocked out with the following effects:",{"type":"list","items":["You immediately move your initiative position to directly before the turn in which you were reduced to 0 HP.","You gain the {@condition dying} 1 condition. If the effect that knocked you out was a critical success from the attacker or the result of your critical failure, you gain the {@condition dying} 2 condition instead. If you have the {@condition wounded} condition (page 460), increase your {@condition dying} value by an amount equal to your {@condition wounded} value. If the damage was dealt by a nonlethal attack or nonlethal effect, you don't gain the dying condition; you are instead unconscious with 0 Hit Points."]},{"type":"pf2-h4","page":459,"name":"Taking Damage while Dying","entries":["If you take damage while you already have the dying condition, increase your dying condition value by 1, or by 2 if the damage came from an attacker's critical hit or your own critical failure. If you have the wounded condition, remember to add the value of your wounded condition to your dying value."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":459,"name":"Recovery Checks","entries":["When you're dying, at the start of each of your turns, you must attempt a flat check with a DC equal to 10 + your current dying value to see if you get better or worse. This is called a recovery check. The effects of this check are as follows.",{"type":"successDegree","entries":{"Critical Success":"Your {@condition dying} value is reduced by 2.","Success":"Your {@condition dying} value is reduced by 1.","Failure":"Your {@condition dying} value increases by 1.","Critical Failure":"Your {@condition dying} value increases by 2."}}],"source":"CRB"},{"type":"pf2-h3","page":459,"name":"Conditions Related to Death and Dying","entries":["To understand the rules for getting knocked out and how dying works in the game, you'll need some more information on the conditions used in those rules.","Presented below are the rules for the {@condition dying}, {@condition unconscious}, wounded, and doomed conditions.",{"type":"pf2-h4","page":459,"name":"Dying","entries":["You are bleeding out or otherwise at death's door. While you have this condition, you are unconscious. Dying always includes a value. If this value ever reaches dying 4, you die. If you're dying, you must attempt a recovery check at the start of your turn each round to determine whether you get better or worse.","If you lose the {@condition dying} condition by succeeding at a recovery check and are still at 0 Hit Points, you remain unconscious, but you can wake up as described on page 460. You lose the dying condition automatically and wake up if you ever have 1 Hit Point or more. Anytime you lose the dying condition, you gain the wounded 1 condition, or increase your wounded value by 1 if you already have that condition."],"source":"CRB"},{"type":"pf2-h4","page":459,"name":"Unconscious","entries":["You're sleeping, or you've been knocked out. You can't act.","You take a –4 status penalty to AC, Perception, and Reflex saves, and you have the blinded and {@condition flat-footed} conditions.","When you gain this condition, you fall {@condition prone} and drop items you are wielding or holding unless the effect states otherwise or the GM determines you're in a position in which you wouldn't.","{@b If you're {@condition unconscious} because you're {@condition dying}}, you can't wake up as long as you have 0 Hit Points. If you're restored to 1 Hit Point or more via healing, you lose the dying and unconscious conditions and can act normally on your next turn.","If you are {@condition unconscious} and at 0 Hit Points, but not {@b dying}, you naturally return to 1 Hit Point and awaken after sufficient time passes. The GM determines how long you remain unconscious, from a minimum of 10 minutes to several hours. If you receive healing during this time, you lose the unconscious condition and can act normally on your next turn.","If you're {@condition unconscious} and have more than 1 Hit Point (typically because you are asleep or unconscious due to an effect), you wake up in one of the following ways.","Each causes you to lose the {@condition unconscious} condition.",{"type":"list","items":["You take damage, provided the damage doesn't reduce you to 0 Hit Points. (If the damage reduces you to 0 Hit Points, you remain {@condition unconscious} and gain the {@condition dying} condition as normal.)","You receive healing, other than the natural healing you get from resting.","Someone nudges or shakes you awake using an Interact action.","Loud noise is being made around you—though this isn't automatic. At the start of your turn, you automatically attempt a Perception check against the noise's DC (or the lowest DC if there is more than one noise), waking up if you succeed. This is often DC 5 for a battle, but if creatures are attempting to stay quiet around you, this Perception check uses their {@skill Stealth} DC. Some magical effects make you sleep so deeply that they don't allow you to attempt this Perception check.","If you are simply asleep, the GM decides you wake up either because you have had a restful night's sleep or something disrupted that rest."]}],"source":"CRB"},{"type":"pf2-h4","page":460,"name":"Wounded","entries":["You have been seriously injured during a fight. Anytime you lose the dying condition, you become wounded 1 if you didn't already have the wounded condition. If you already have the wounded condition, your wounded condition value instead increases by 1. If you gain the dying condition while wounded, increase the dying condition's value by your wounded value. The wounded condition ends if someone successfully restores Hit Points to you with Treat Wounds, or if you are restored to full Hit Points and rest for 10 minutes."],"source":"CRB"},{"type":"pf2-h4","page":460,"name":"Doomed","entries":["Your life is ebbing away, bringing you ever closer to death. Some powerful spells and evil creatures can inflict the doomed condition on you. Doomed always includes a value. The maximum dying value at which you die is reduced by your doomed value. For example, if you were {@condition doomed 1}, you would die upon reaching dying 3 instead of dying 4. If your maximum dying value is ever reduced to 0, you instantly die. When you die, you're no longer doomed.","Your {@condition doomed} value decreases by 1 each time you get a full night's rest."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":460,"name":"Death","entries":["After you die, you can't act or be affected by spells that target creatures (unless they specifically target dead creatures), and for all other purposes you are an object. When you die, you are reduced to 0 Hit Points if you had a different amount, and you can't be brought above 0 Hit Points as long as you remain dead. Some magic can bring creatures back to life, such as the {@ritual resurrect} ritual or the {@spell raise dead} spell."],"source":"CRB"},{"type":"pf2-h3","page":460,"name":"Heroic Recovery","entries":["If you have at least 1 Hero Point (page 467), you can spend all of your remaining Hero Points at the start of your turn or when your dying value would increase. You lose the dying condition entirely and stabilize with 0 Hit Points. You don't gain the wounded condition or increase its value from losing the dying condition in this way, but if you already had that condition, you don't lose it or decrease its value. You lose the dying condition and become conscious. You do not gain the wounded condition (or increase its value) when you perform a heroic recovery."],"source":"CRB"},{"type":"pf2-h3","page":461,"name":"Death Effects and Instant Death","entries":["Some spells and abilities can kill you immediately or bring you closer to death without needing to reduce you to 0 Hit Points first. These abilities have the death trait and usually involve negative energy, the antithesis of life. If you are reduced to 0 Hit Points by a death effect, you are slain instantly without needing to reach dying 4. If an effect states it kills you outright, you die without having to reach dying 4 and without being reduced to 0 Hit Points."],"source":"CRB"},{"type":"pf2-h3","page":461,"name":"Massive Damage","entries":["You die instantly if you ever take damage equal to or greater than double your maximum Hit Points in one blow."],"source":"CRB"},{"type":"pf2-h3","page":461,"name":"Temporary Hit Points","entries":["Some spells or abilities give you temporary Hit Points.","Track these separately from your current and maximum Hit Points; when you take damage, reduce your temporary Hit Points first. Most temporary Hit Points last for a limited duration. You can't regain lost temporary Hit Points through healing, but you can gain more via other abilities. You can have temporary Hit Points from only one source at a time. If you gain temporary Hit Points when you already have some, choose whether to keep the amount you already have and their corresponding duration or to gain the new temporary Hit Points and their duration."],"source":"CRB"},{"type":"pf2-h3","page":461,"name":"Fast Healing and Regeneration","entries":["A creature with fast healing or regeneration regains the listed amount of Hit Points each round at the beginning of its turn. A creature with regeneration has additional benefits. Its dying condition can't increase to a value that would kill it (this stops most creatures from going beyond dying 3) as long as its regeneration is active. If it takes damage of a type listed in the regeneration entry, its regeneration deactivates until the end of its next turn, including against the triggering damage."],"source":"CRB"},{"type":"pf2-h3","page":461,"name":"Items and Hit Points","entries":["Items have Hit Points like creatures, but the rules for damaging them are different (page 272). An item has a Hardness statistic that reduces damage the item takes by that amount. The item then takes any damage left over. If an item is reduced to 0 HP, it's destroyed. An item also has a Broken Threshold. If its HP are reduced to this amount or lower, it's broken, meaning it can't be used for its normal function and it doesn't grant bonuses. Damaging an unattended item usually requires attacking it directly, and can be difficult due to that item's Hardness and immunities. You usually can't attack an attended object (one on a creature's person)."],"source":"CRB"}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":443,"name":"Making Choices","entries":["Pathfinder is a game where your choices determine the story's direction. Throughout the game, the GM describes what's happening in the world and then asks the players, \"So what do you do?\" Exactly what you choose to do, and how the GM responds to those choices, builds a unique story experience. Every game is different, because you'll rarely, if ever, make the same decisions as another group of players.","This is true for the GM as well—two GMs running the exact same adventure will put different emphasis and flourishes on the way they present each scenario and encounter.","Often, your choices have no immediate risk or consequences. If you're traveling along a forest path and come across a fork in the trail, the GM will ask, \"Which way do you go?\" You might choose to take the right fork or the left. You could also choose to leave the trail, or just go back to town. Once your choice is made, the GM tells you what happens next. Down the line, that choice may impact what you encounter later in the game, but in many cases nothing dangerous happens immediately.","But sometimes what happens as a result of your choices is less than certain. In those cases, you'll attempt a check."],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":463,"name":"Movement","entries":["Your movement and position determine how you can interact with the world. Moving around in exploration and downtime modes is relatively fluid and free form.","Movement in encounter mode, by contrast, is governed by rules explained in Movement in Encounters (page 473). The rules below apply regardless of which mode you're playing in.",{"type":"pf2-h3","page":463,"name":"Movement Types","entries":["Creatures in Pathfinder soar through the clouds, scale sheer cliffs, and tunnel underfoot. Most creatures have a Speed, which is how fast they can move across the ground. Some abilities give you different ways to move, such as through the air or underground.","Each of these special movement types has its own Speed value. Many creatures have these Speeds naturally. The various types of movement are listed below. Since the Stride action can be used only with your normal Speed, moving using one of these movement types requires using a special action, and you can't Step while using one of these movement types. Since Speed by itself refers to your land Speed, rules text concerning these special movement types specifies the movement types to which it applies. Even though Speeds aren't checks, they can have item, circumstance, and status bonuses and penalties. These can't reduce your Speeds below 5 feet unless stated otherwise.","Switching from one movement type to another requires ending your action that has the first movement type and using a new action that has the second movement type. For instance, if you Climbed 10 feet to the top of a cliff, you could then Stride forward 10 feet.",{"type":"pf2-h4","page":463,"name":"Speed","entries":["Most characters and monsters have a speed statistic—also called land Speed—which indicates how quickly they can move across the ground. When you use the Stride action, you move a number of feet equal to your Speed. Numerous other abilities also allow you to move, from Crawling to Leaping, and most of them are based on your Speed in some way. Whenever a rule mentions your Speed without specifying a type, it's referring to your land Speed."],"source":"CRB"},{"type":"pf2-h4","page":463,"name":"Burrow Speed","entries":["A burrow Speed lets you tunnel through the ground. You can use the {@action Burrow} action if you have a burrow Speed. Burrowing doesn't normally leave behind a tunnel unless the ability specifically states that it does. Most creatures need to hold their breath when burrowing, and they may need tremorsense (page 465) to navigate with any accuracy."],"source":"CRB"},{"type":"pf2-h4","page":463,"name":"Climb Speed","entries":["A climb Speed allows you to move up or down inclines and vertical surfaces. Instead of needing to attempt {@skill Athletics} checks to Climb, you automatically succeed and move up to your climb Speed instead of the listed distance.","You might still have to attempt {@skill Athletics} checks to Climb in hazardous conditions, to Climb extremely difficult surfaces, or to cross horizontal planes such as ceilings. You can also choose to roll an {@skill Athletics} check to Climb rather than accept an automatic success in hopes of getting a critical success. Your climb Speed grants you a +4 circumstance bonus to {@skill Athletics} checks to Climb.","If you have a climb Speed, you're not {@condition flat-footed} while climbing."],"source":"CRB"},{"type":"pf2-h4","page":463,"name":"Fly Speed","entries":["As long as you have a fly Speed, you can use the {@action Fly} and {@action Arrest a Fall} actions. You can also attempt to {@action Maneuver in Flight} if you're trained in the {@skill Acrobatics} skill.","Wind conditions can affect how you use the {@action Fly} action. In general, moving against the wind uses the same rules as moving through {@quickref difficult terrain||3|terrain} (or {@quickref greater difficult terrain||3|terrain}, if you're also flying upward), and moving with the wind allows you to move 10 feet for every 5 feet of movement you spend (not cumulative with moving straight downward). For more information on spending movement, see Movement in Encounters on page 473.","Upward and downward movement are both relative to the gravity in your area; if you're in a place with zero gravity, moving up or down is no different from moving horizontally."],"source":"CRB"},{"type":"pf2-h4","page":463,"name":"Swim Speed","entries":["With a swim Speed, you can propel yourself through the water with little impediment. Instead of attempting {@skill Athletics} checks to {@action Swim}, you automatically succeed and move up to your swim Speed instead of the listed distance. Moving up or down is still moving through {@quickref difficult terrain||3|terrain}.","You might still have to attempt checks to {@action Swim} in hazardous conditions or to cross turbulent water. You can also choose to roll an {@skill Athletics} check to {@action Swim} rather than accept an automatic success in hopes of getting a critical success. Your swim Speed grants you a +4 circumstance bonus to {@skill Athletics} checks to {@action Swim}.","Having a swim Speed doesn't necessarily mean you can breathe in water, so you might still have to hold your breath if you're underwater to avoid {@quickref drowning||3|drowning and suffocating}."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":463,"name":"Falling","entries":["When you fall more than 5 feet, you take bludgeoning damage equal to half the distance you fell when you land. Treat falls longer than 1,500 feet as though they were 1,500 feet (750 damage). If you take any damage from a fall, you land prone. You fall about 500 feet in the first round of falling and about 1,500 feet each round thereafter.","You can Grab an Edge as a reaction to reduce the damage from some falls. In addition, if you fall into water, snow, or another relatively soft substance, you can treat the fall as though it were 20 feet shorter, or 30 feet shorter if you intentionally dove in. The effective reduction can't be greater than the depth (so when falling into 10-foot-deep water, you treat the fall as 10 feet shorter).",{"type":"pf2-h4","page":464,"name":"Falling on a Creature","entries":["If you land on a creature, that creature must attempt a DC 15 Reflex save. Landing exactly on a creature after a long fall is almost impossible.",{"type":"successDegree","entries":{"Critical Success":"The creature takes no damage.","Success":"The creature takes bludgeoning damage equal to one-quarter the falling damage you took.","Failure":"The creature takes bludgeoning damage equal to half the falling damage you took.","Critical Failure":"The creature takes the same amount of bludgeoning damage you took from the fall."}}],"source":"CRB"},{"type":"pf2-h4","page":464,"name":"Falling Objects","entries":["A dropped object takes damage just like a falling creature. If the object lands on a creature, that creature can attempt a Reflex save using the same rules as for a creature falling on a creature. Hazards and spells that involve falling objects, such as a rock slide, have their own rules about how they interact with creatures and the damage they deal."],"source":"CRB"}],"data":{"quickrefIndex":true},"source":"CRB"}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":618,"name":"Overriding Conditions","entries":["Some conditions override others. This is always specified in the entry for the overriding condition. When this happens, all effects of the overridden condition are suppressed until the overriding condition ends. The overridden condition's duration continues to elapse, and it might run out while suppressed."],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":464,"name":"Perception","entries":["Your Perception measures your ability to notice things, search for what's hidden, and tell whether something about a situation is suspicious. This statistic is frequently used for rolling initiative to determine who goes first in an encounter, and it's also used for the {@action Seek} action .","The rules for rolling a Perception check are found on page 448. The rules below describe the effects of light and visibility on your specific senses to perceive the world, as well as the rules for sensing and locating creatures with Perception.",{"type":"pf2-h3","page":464,"name":"Light","entries":["The amount of light in an area can affect how well you see things. There are three levels of light: bright light, dim light, and darkness. The rules in this book assume that all creatures are in bright light unless otherwise noted. A source of light lists the radius in which it sheds bright light, and it sheds dim light to double that radius.",{"type":"pf2-h4","page":464,"name":"Bright Light","entries":["In bright light, such as sunlight, creatures and objects can be observed clearly by anyone with average vision or better. Some types of creatures are dazzled or blinded by bright light."],"source":"CRB"},{"type":"pf2-h4","page":464,"name":"Dim Light","entries":["Areas in shadow or lit by weak light sources are in dim light. Creatures and objects in dim light have the {@condition concealed} condition, unless the seeker has {@ability darkvision} or {@ability low-light vision} (see Special Senses on page 465), or a precise sense other than vision."],"source":"CRB"},{"type":"pf2-h4","page":464,"name":"Darkness","entries":["A creature or object within darkness is hidden or undetected unless the seeker has {@ability darkvision} or a precise sense other than vision (Special Senses are on page 465). A creature without {@ability darkvision} or another means of perceiving in darkness has the blinded condition while in darkness, though it might be able to see illuminated areas beyond the darkness. If a creature can see into an illuminated area, it can observe creatures within that illuminated area normally. After being in darkness, sudden exposure to bright light might make you dazzled for a short time, as determined by the GM."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":464,"name":"Senses","entries":["The ways a creature can use {@skill Perception} depend on what senses it has. The primary concepts you need to know for understanding senses are precise senses, imprecise senses, and the three states of detection a target can be in: observed, hidden, or undetected. Vision, hearing, and scent are three prominent senses, but they don't have the same degree of acuity.",{"type":"pf2-h4","page":464,"name":"Precise Senses","entries":["Average vision is a precise sense—a sense that can be used to perceive the world in nuanced detail. The only way to target a creature without having drawbacks is to use a precise sense. You can usually detect a creature automatically with a precise sense unless that creature is hiding or obscured by the environment, in which case you can use the Seek basic action to better detect the creature."],"source":"CRB"},{"type":"pf2-h4","page":464,"name":"Imprecise Senses","entries":["Hearing is an imprecise sense—it cannot detect the full range of detail that a precise sense can. You can usually sense a creature automatically with an imprecise sense, but it has the hidden condition instead of the observed condition. It might be undetected by you if it's using {@skill Stealth} or is in an environment that distorts the sense, such as a noisy room in the case of hearing. In those cases, you have to use the Seek basic action to detect the creature. At best, an imprecise sense can be used to make an undetected creature (or one you didn't even know was there) merely hidden—it can't make the creature observed."],"source":"CRB"},{"type":"pf2-h4","page":465,"name":"Vague Senses","entries":["A character also has many vague senses—ones that can alert you that something is there but aren't useful for zeroing in on it to determine exactly what it is. The most useful of these for a typical character is the sense of smell. At best, a vague sense can be used to detect the presence of an unnoticed creature, making it undetected. Even then, the vague sense isn't sufficient to make the creature hidden or observed.","When one creature might detect another, the GM almost always uses the most precise sense available.","Pathfinder's rules assume that a given creature has vision as its only precise sense and hearing as its only imprecise sense. Some characters and creatures, however, have precise or imprecise senses that don't match this assumption. For instance, a character with poor vision might treat that sense as imprecise, an animal with the {@ability scent} ability can use its sense of smell as an imprecise sense, and a creature with echolocation or a similar ability can use hearing as a precise sense. Such senses are often given special names and appear as \"echolocation (precise),\" \"scent (imprecise) 30 feet,\" or the like."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":465,"name":"Special Senses","entries":["While a human might have a difficult time making creatures out in dim light, an elf can see those creatures just fine. And though elves have no problem seeing on a moonlit night, their vision cannot penetrate complete darkness, whereas a dwarf's can.","Special senses grant greater awareness that allows a creature with these senses to either ignore or reduce the effects of the undetected, hidden, or concealed conditions (described in Detecting Creatures below) when it comes to situations that foil average vision. The following are a few examples of common special senses.",{"type":"pf2-h4","page":465,"name":"Darkvision and Greater Darkvision","entries":["A creature with {@ability darkvision} or {@ability darkvision||greater darkvision} can see perfectly well in areas of darkness and dim light, though such vision is in black and white only. Some forms of magical darkness, such as a 4th-level {@spell darkness} spell, block normal {@ability darkvision}. A creature with {@ability darkvision||greater darkvision}, however, can see through even these forms of magical darkness."],"source":"CRB"},{"type":"pf2-h4","page":465,"name":"Low-Light Vision","entries":["A creature with {@ability low-light vision} can see in dim light as though it were bright light, so it ignores the {@condition concealed} condition due to dim light."],"source":"CRB"},{"type":"pf2-h4","page":465,"name":"Scent","entries":["Scent involves sensing creatures or objects by smell, and is usually a vague sense. The range is listed in the ability, and it functions only if the creature or object being detected emits an aroma (for instance, incorporeal creatures usually do not exude an aroma).","If a creature emits a heavy aroma or is upwind, the GM can double or even triple the range of {@ability scent} abilities used to detect that creature, and the GM can reduce the range if a creature is downwind."],"source":"CRB"},{"type":"pf2-h4","page":465,"name":"Tremorsense","entries":["Tremorsense allows a creature to feel the vibrations through a solid surface caused by movement. It is usually an imprecise sense with a limited range (listed in the ability). Tremorsense functions only if the detecting creature is on the same surface as the subject, and only if the subject is moving along (or burrowing through) the surface."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-brown-box","page":465,"name":"DETECTING WITH OTHER SENSES","entries":["If a monster uses a sense other than vision, the GM can adapt the variables that keep its foes from being detected to equivalents that work with the monster's senses. For example, a creature that has echolocation might use hearing as a primary sense. This could mean its quarry is concealed in a noisy chamber, hidden in a great enough din, or even {@condition invisible} in the area of a {@spell silence} spell.",{"type":"pf2-title","name":"Using Stealth with Other Senses"},"The {@skill Stealth} skill is designed to use Hide for avoiding visual detection and Avoid Notice and Sneak to avoid being both seen and heard. For many special senses, a player can describe how they're avoiding detection by that special sense and use the most applicable {@skill Stealth} action. For instance, a creature stepping lightly to avoid being detected via tremorsense would be using Sneak.","In some cases, rolling a Dexterity-based {@skill Stealth} skill check to Sneak doesn't make the most sense. For example, when facing a creature that can detect heartbeats, a PC trying to avoid being detected might meditate to slow their heart rate, using Wisdom instead of Dexterity as the ability modifier for the {@skill Stealth} check. When a creature that can detect you has multiple senses, such as if it could also hear or see, the PC would use the lowest applicable ability modifier for the check."],"source":"CRB"},{"type":"pf2-h3","page":465,"name":"Detecting Creatures","entries":["There are three conditions that measure the degree to which you can sense a creature: observed, hidden, and undetected. However, the concealed and invisible conditions can partially mask a creature, and the unnoticed condition indicates you have no idea a creature is around. In addition to the descriptions here, you can find these conditions in the Conditions Appendix on pages 618–623.","With the exception of {@condition invisible}, these conditions are relative to the viewer—it's possible for a creature to be observed to you but hidden from your ally. When you're trying to target a creature that's hard to see or otherwise sense, various drawbacks apply. Most of these rules apply to objects you're trying to detect as well as creatures.","Typically, the GM tracks how well creatures detect each other, since neither party has perfect information. For example, you might think a creature is in the last place you sensed it, but it was able to Sneak away. Or you might think a creature can't see you in the dark, but it has {@ability darkvision}.","You can attempt to avoid detection by using the {@skill Stealth} skill (page 251) to Avoid Notice, Hide, or Sneak, or by using {@skill Deception} to Create a Diversion (page 245).",{"type":"pf2-h4","page":466,"name":"Observed","entries":["In most circumstances, you can sense creatures without difficulty and target them normally. Creatures in this state are observed. Observing requires a precise sense, which for most creatures means sight, but see the Detecting with Other Senses sidebar (page 465) for advice regarding creatures that don't use sight as their primary sense. If you can't observe the creature, it's either hidden, undetected, or unnoticed, and you'll need to factor in the targeting restrictions. Even if a creature is observed, it might still be concealed."],"source":"CRB"},{"type":"pf2-h4","page":466,"name":"Hidden","entries":["A creature that's hidden is only barely perceptible. You know what space a hidden creature occupies, but little else. Perhaps the creature just moved behind cover and successfully used the Hide action. Your target might be in a deep fogbank or behind a waterfall, where you can see some movement but can't determine an exact location. Maybe you've been {@condition blinded} or the creature is under the effects of {@spell invisibility}, but you used the {@action Seek} basic action to determine its general location based on hearing alone. Regardless of the specifics, you're {@condition flat-footed} to a hidden creature.","When targeting a {@condition hidden} creature, before you roll to determine your effect, you must attempt a DC {@flatDC 11} flat check. If you fail, you don't affect the creature, though the actions you used are still expended—as well as any spell slots, costs, and other resources. You remain {@condition flat-footed} to the creature, whether you successfully target it or not."],"source":"CRB"},{"type":"pf2-h4","page":466,"name":"Undetected","entries":["If a creature is undetected, you don't know what space it occupies, you're {@condition flat-footed} to it, and you can't easily target it. Using the {@action Seek} basic action can help you find an undetected creature, usually making it {@condition hidden} from you instead of {@condition undetected}. If a creature is {@condition undetected}, that doesn't necessarily mean you're unaware of its presence—you might suspect an {@condition undetected} creature is in the room with you, even though you're unable to find its space. The {@condition unnoticed} condition covers creatures you're entirely unaware of.","Targeting an {@condition undetected} creature is difficult. If you suspect there's a creature around, you can pick a square and attempt an attack. This works like targeting a {@condition hidden} creature, but the flat check and attack roll are both rolled in secret by the GM. The GM won't tell you why you missed—whether it was due to failing the flat check, rolling an insufficient attack roll, or choosing the wrong square. The GM might allow you to try targeting an undetected creature with some spells or other abilities in a similar fashion. {@condition Undetected} creatures are subject to area effects normally.","For instance, suppose an enemy elf wizard cast {@spell invisibility} and then {@action sneak||Sneaked} away. You suspect that with the elf's Speed of 30 feet, they probably moved 15 feet toward an open door. You move up and attack a space 15 feet from where the elf started and directly on the path to the door. The GM secretly rolls an attack roll and flat check, but they know that you were not quite correct—the elf was actually in the adjacent space! The GM tells you that you missed, so you decide to make your next attack on the adjacent space, just in case. This time, it's the right space, and the GM's secret attack roll and flat check both succeed, so you hit!"],"source":"CRB"},{"type":"pf2-h4","page":467,"name":"Unnoticed","entries":["If you have no idea a creature is even present, that creature is unnoticed by you. A creature that is undetected might also be unnoticed. This condition usually matters for abilities that can be used only against targets totally unaware of your presence."],"source":"CRB"}],"source":"CRB"}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":450,"name":"Special Checks","entries":["Some categories of checks follow special rules. The most notable are flat checks and secret checks.",{"type":"pf2-h3","page":450,"name":"Flat Checks","entries":["When the chance something will happen or fail to happen is based purely on chance, you'll attempt a flat check. A flat check never includes any modifiers, bonuses, or penalties—you just roll a d20 and compare the result on the die to the DC. Only abilities that specifically apply to flat checks can change the checks' DCs; most such effects affect only certain types of flat checks.","If more than one flat check would ever cause or prevent the same thing, just roll once and use the highest DC. In the rare circumstance that a flat check has a DC of 1 or lower, skip rolling; you automatically succeed. Conversely, if one ever has a DC of 21 or higher, you automatically fail."],"source":"CRB"},{"type":"pf2-h3","page":450,"name":"Secret Checks","entries":["Sometimes you as the player shouldn't know the exact result and effect of a check. In these situations, the rules (or the GM) will call for a secret check. The secret trait appears on anything that uses secret checks. This type of check uses the same formulas you normally would use for that check, but is rolled by the GM, who doesn't reveal the result. Instead, the GM simply describes the information or effects determined by the check's result. If you don't know a secret check is happening (for instance, if the GM rolls a secret Fortitude save against a poison that you failed to notice), you can't use any fortune or misfortune abilities (see the sidebar on page 449) on that check, but if a fortune or misfortune effect would apply automatically, the GM applies it to the secret check. If you know that the GM is attempting a secret check—as often happens with {@action Recall Knowledge} or Seek—you can usually activate fortune or misfortune abilities for that check. Just tell the GM, and they'll apply the ability to the check.","The GM can choose to make any check secret, even if it's not usually rolled secretly. Conversely, the GM can let you roll any check yourself, even if that check would usually be secret. Some groups find it simpler to have players roll all secret checks and just try to avoid acting on any out-of-character knowledge, while others enjoy the mystery."],"source":"CRB"}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":446,"name":"Specific Checks","entries":["While most checks follow these basic rules, it's useful to know about a few specific types of checks, how they're used, and how they differ from one another.",{"type":"pf2-h3","page":446,"name":"Attack Rolls","entries":["When you use a {@action Strike} action or make a spell attack, you attempt a check called an attack roll. Attack rolls take a variety of forms and are often highly variable based on the weapon you are using for the attack, but there are three main types: melee attack rolls, ranged attack rolls, and spell attack rolls. Spell attack rolls work a little bit differently, so they are explained separately on the next page.","{@b Melee attack rolls} use Strength as their ability modifier by default. If you're using a weapon or attack with the finesse trait, then you can use your Dexterity modifier instead.",{"type":"pf2-inset","entries":["Melee attack roll result = d20 roll + Strength modifier (or optionally Dexterity modifier for a finesse weapon) + proficiency bonus + other bonuses + penalties"]},"{@b Ranged attack rolls} use Dexterity as their ability modifier.",{"type":"pf2-inset","entries":["Ranged attack roll result = d20 roll + Dexterity modifier + proficiency bonus + other bonuses + penalties"]},"When attacking with a weapon, whether melee or ranged, you add your proficiency bonus for the weapon you're using. Your class determines your proficiency rank for various weapons. Sometimes, you'll have different proficiency ranks for different weapons. For instance, at 5th level, a fighter gains the weapon mastery class feature, which grants master proficiency with the simple and martial weapons of one weapon group, expert proficiency with advanced weapons of that group and other simple and martial weapons, and trained proficiency in all other advanced weapons.","The bonuses you might apply to attack rolls can come from a variety of sources. Circumstance bonuses can come from the aid of an ally or a beneficial situation. Status bonuses are typically granted by spells and other magical aids. The item bonus to attack rolls comes from magic weapons—notably, a weapon's potency rune (page 580).","Penalties to attack rolls come from situations and effects as well. Circumstance penalties come from risky tactics or detrimental circumstances, status penalties come from spells and magic working against you, and item penalties occur when you use a shoddy item (page 273). When making attack rolls, two main types of untyped penalties are likely to apply. The first is the multiple attack penalty, and the second is the range penalty. The first applies anytime you make more than one attack action during the course of your turn, and the other applies only with ranged or thrown weapons. Both are described below.",{"type":"pf2-h4","page":446,"name":"Multiple Attack Penalty","entries":["The more attacks you make beyond your first in a single turn, the less accurate you become, represented by the multiple attack penalty. The second time you use an attack action during your turn, you take a –5 penalty to your attack roll. The third time you attack, and on any subsequent attacks, you take a –10 penalty to your attack roll. Every check that has the attack trait counts toward your multiple attack penalty, including Strikes, spell attack rolls, certain skill actions like Shove, and many others.","Some weapons and abilities reduce multiple attack penalties, such as agile weapons, which reduce these penalties to –4 on the second attack or –8 on further attacks.",{"type":"table","colStyles":["text-center","text-center","text-center"],"rows":[["Attack","Multiple Attack Penalty","Agile"],["First","None","None"],["Second","–5","–4"],["Third or subsequent","–10","–8"]]},"Always calculate your multiple attack penalty for the weapon you're using on that attack. For example, let's say you're wielding a longsword in one hand and a shortsword (which has the agile trait) in your other hand, and you are going to make three Strikes with these weapons during the course of your turn. The first Strike you make during your turn has no penalty, no matter what weapon you are using. The second Strike will take either a –5 penalty if you use the longsword or a –4 penalty if you use the shortsword.","Just like the second attack, the penalty for your third attack is based on which weapon you're using for that particular Strike. It would be a –10 penalty with the longsword and a –8 penalty with the shortsword, no matter what weapon you used for your previous Strikes.","The multiple attack penalty applies only during your turn, so you don't have to keep track of it if you can perform an Attack of Opportunity or a similar reaction that lets you make a Strike on someone else's turn.",{"type":"pf2-h4","page":446,"name":"Range Penalty","entries":["Ranged and thrown weapons each have a listed range increment, and attacks with them grow less accurate against targets farther away (range and range increments are covered in depth on page 279). As long as your target is at or within the listed range increment, also called the first range increment, you take no penalty to the attack roll. If you're attacking beyond that range increment, you take a –2 penalty for each additional increment beyond the first.","You can attempt to attack with a ranged weapon or thrown weapon up to six range increments away, but the farther away you are, the harder it is to hit your target.","For example, the range increment of a crossbow is 120 feet. If you are shooting at a target no farther away than that distance, you take no penalty due to range. If they're beyond 120 feet but no more than 240 feet away, you take a –2 penalty due to range. If they're beyond 240 feet but no more than 360 feet away, you take a –4 penalty due to range, and so on, until you reach the last range increment: beyond 600 feet but no more than 720 feet away, where you take a –10 penalty due to range."],"source":"CRB"},{"type":"pf2-h4","page":447,"name":"Armor Class","entries":["Attack rolls are compared to a special difficulty class called an {@b Armor Class} ({@b AC}), which measures how hard it is for your foes to hit you with Strikes and other attack actions. Just like for any other check and DC, the result of an attack roll must meet or exceed your AC to be successful, which allows your foe to deal damage to you.","Armor Class is calculated using the following formula.",{"type":"pf2-inset","entries":["Armor Class = 10 + Dexterity modifier (up to your armor's Dex Cap) + proficiency bonus + armor's item bonus to AC + other bonuses + penalties"]},"Use the proficiency bonus for the category (light, medium, or heavy) or the specific type of armor you're wearing. If you're not wearing armor, use your proficiency in unarmored defense.","Armor Class can benefit from bonuses with a variety of sources, much like attack rolls. Armor itself grants an item bonus, so other item bonuses usually won't apply to your AC, but magic armor can increase the item bonus granted by your armor.","Penalties to AC come from situations and effects in much the same way bonuses do. Circumstance penalties come from unfavorable situations, and status penalties come from effects that impede your abilities or from broken armor. You take an item penalty when you wear shoddy armor (page 273)."],"source":"CRB"}],"source":"CRB"}],"source":"CRB"},{"type":"pf2-brown-box","page":447,"name":"STRIDING AND STRIKING","entries":["Two of the simplest and most common actions you'll use in combat are Stride and Strike, described in full on page 471.","{@b {@action Stride}} is an action that has the move trait and that allows you to move a number of feet up to your Speed.","You'll often need to Stride multiple times to reach a foe who's far away or to run from danger! Move actions can often trigger reactions or free actions. However, unlike other actions, a move action can trigger reactions not only when you first use the action, but also for every 5 feet you move during that action, as described on page 474. The Step action (page 471) lets you move without triggering reactions, but only 5 feet.","{@b {@action Strike}} is an action that has the attack trait and that allows you to attack with a weapon you're wielding or an unarmed attack (such as a fist).","If you're using a melee weapon or unarmed attack, your target must be within your reach; if you're attacking with a ranged weapon, your target must be within range. Your reach is how far you can physically extend a part of your body to make an unarmed attack, or the farthest distance you can reach with a melee weapon. This is typically 5 feet, but special weapons and larger creatures have longer reaches. Your range is how far away you can attack with a ranged weapon or with some types of magical attacks.","Different weapons and magical attacks have different maximum ranges, and ranged weapons get less effective as you exceed their range increments.","Striking multiple times in a turn has diminishing returns. The multiple attack penalty (detailed on page 446) applies to each attack after the first, whether those attacks are Strikes, special attacks like the Grapple action of the {@skill Athletics} skill, or spell attack rolls."],"source":"CRB"},{"type":"pf2-h3","page":447,"name":"Spell Attack Rolls","entries":["If you cast spells, you might be able to make a spell attack roll. These rolls are usually made when a spell makes an attack against a creature's AC.","The ability modifier for a spell attack roll depends on how you gained access to your spells. If your class grants you spellcasting, use your key ability modifier. Innate spells use your Charisma modifier unless the ability that granted them states otherwise. Focus spells and other sources of spells specify which ability modifier you use for spell attack rolls in the ability that granted them. If you have spells from multiple sources or traditions, you might use different ability modifiers for spell attack rolls for these different sources of spells. For example, a dwarf cleric with the Stonewalker ancestry feat would use her Charisma modifier when casting {@spell meld into stone} from that feat, since it's a divine innate spell, but she would use her Wisdom modifier when casting {@spell heal} and other spells using her cleric divine spellcasting.","Determine the spell attack roll with the following formula.",{"type":"pf2-inset","entries":["Spell attack roll result = d20 roll + ability modifier used for spellcasting + proficiency bonus + other bonuses + penalties"]},"If you have the ability to cast spells, you'll have a proficiency rank for your spell attack rolls, so you'll always add a proficiency bonus. Like your ability modifier, this proficiency rank may vary from one spell to another if you have spells from multiple sources. Spell attack rolls can benefit from circumstance bonuses and status bonuses, though item bonuses to spell attack rolls are rare. Penalties affect spell attack rolls just like any other attack roll—including your multiple attack penalty.","Many times, instead of requiring you to make a spell attack roll, the spells you cast will require those within the area or targeted by the spell to attempt a saving throw against your {@b Spell DC} to determine how the spell affects them.","Your spell DC is calculated using the following formula.",{"type":"pf2-inset","entries":["Spell DC = 10 + ability modifier used for spellcasting + proficiency bonus + other bonuses + penalties"]}],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h3","page":448,"name":"Perception","entries":["Perception measures your ability to be aware of your environment. Every creature has Perception, which works with and is limited by a creature's senses (described on page 464). Whenever you need to attempt a check based on your awareness, you'll attempt a Perception check.","Your Perception uses your Wisdom modifier, so you'll use the following formula when attempting a Perception check.",{"type":"pf2-inset","entries":["Perception check result = d20 roll + Wisdom modifier + proficiency bonus + other bonuses + penalties"]},"Nearly all creatures are at least trained in Perception, so you will almost always add a proficiency bonus to your Perception modifier. You might add a circumstance bonus for advantageous situations or environments, and typically get status bonuses from spells or other magical effects. Items can also grant you a bonus to Perception, typically in a certain situation. For instance, a fine spyglass grants a +1 item bonus to Perception when attempting to see something a long distance away. Circumstance penalties to Perception occur when an environment or situation (such as fog) hampers your senses, while status penalties typically come from conditions, spells, and magic effects that foil the senses. You'll rarely encounter item penalties or untyped penalties for Perception.","Many abilities are compared to your {@b Perception DC} to determine whether they succeed. Your Perception DC is 10 + your total Perception modifier.",{"type":"pf2-h4","page":448,"name":"Perception for Initiative","entries":["Often, you'll roll a Perception check to determine your order in initiative. When you do this, instead of comparing the result against a DC, everyone in the encounter will compare their results. The creature with the highest result acts first, the creature with the second-highest result goes second, and so on. Sometimes you may be called on to roll a skill check for initiative instead, but you'll compare results just as if you had rolled Perception. The full rules for initiative are found in the rules for encounter mode on page 468."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":448,"name":"Saving Throws","entries":["There are three types of saving throws: Fortitude saves, Reflex saves, and Will saves. In all cases, saving throws measure your ability to shrug off harmful effects in the form of afflictions, damage, or conditions. You'll always add a proficiency bonus to each save. Your class might give a different proficiency to each save, but you'll be trained at minimum. Some circumstances and spells might give you circumstance or status bonuses to saves, and you might find {@item resilient} armor or other magic items that give an item bonus.","{@b Fortitude saving throws} allow you to reduce the effects of abilities and afflictions that can debilitate the body.","They use your Constitution modifier and are calculated as shown in the formula below.",{"type":"pf2-inset","entries":["Fortitude save result = d20 roll + Constitution modifier + proficiency bonus + other bonuses + penalties"]},"{@b Reflex saving throws} measure how well you can respond quickly to a situation and how gracefully you can avoid effects that have been thrown at you. They use your Dexterity modifier and are calculated as shown in the formula below.",{"type":"pf2-inset","entries":["Reflex save result = d20 roll + Dexterity modifier + proficiency bonus + other bonuses + penalties"]},"{@b Will saving throws} measure how well you can resist attacks to your mind and spirit. They use your Wisdom modifier and are calculated as shown in the formula below.",{"type":"pf2-inset","entries":["Will save result = d20 roll + Wisdom modifier + proficiency bonus + other bonuses + penalties"]},"Sometimes you'll need to know your DC for a given saving throw. The DC for a saving throw is 10 + the total modifier for that saving throw.","Most of the time, when you attempt a saving throw, you don't have to use your actions or your reaction. You don't even need to be able to act to attempt saving throws. However, in some special cases you might have to take an action to attempt a save. For instance, you can try to recover from the sickened condition by spending an action to attempt a Fortitude save.",{"type":"pf2-h4","page":449,"name":"Basic Saving Throws","entries":["Sometimes you will be called on to attempt a basic saving throw. This type of saving throw works just like any other saving throw—the \"basic\" part refers to the effects.","For a basic save, you'll attempt the check and determine whether you critically succeed, succeed, fail, or critically fail like you would any other saving throw. Then one of the following outcomes applies based on your degree of success—no matter what caused the saving throw.",{"type":"successDegree","entries":{"Critical Success":"You take no damage from the spell, hazard, or effect that caused you to attempt the save.","Success":"You take half the listed damage from the effect.","Failure":"You take the full damage listed from the effect.","Critical Failure":"You take double the listed damage from the effect."}}],"source":"CRB"}],"source":"CRB"},{"type":"pf2-brown-box","page":449,"name":"FORTUNE AND MISFORTUNE EFFECTS","entries":["Fortune and misfortune effects can alter how you roll your dice. These abilities might allow you to reroll a failed roll, force you to reroll a successful roll, allow you to roll twice and use the higher result, or force you to roll twice and use the lower result.","You can never have more than one fortune and more than one misfortune effect come into play on a single roll. For instance, if an effect lets you roll twice and use the higher roll, you can't then use Halfling Luck (a fortune effect) to reroll if you fail. If multiple fortune effects would apply, you have to pick which to use. If two misfortune effects apply, the GM decides which is worse and applies it.","If both a fortune effect and a misfortune effect would apply to the same roll, the two cancel each other out, and you roll normally."],"source":"CRB"},{"type":"pf2-h3","page":449,"name":"Skill Checks","entries":["Pathfinder has a variety of skills, from {@skill Athletics} to {@skill Medicine} to {@skill Occultism}. Each grants you a set of related actions that rely on you rolling a skill check. Each skill has a key ability score, based on the scope of the skill in question. For instance, {@skill Athletics} deals with feats of physical prowess, like swimming and jumping, so its key ability score is Strength. {@skill Medicine} deals with the ability to diagnose and treat wounds and ailments, so its key ability score is Wisdom. The key ability score for each skill is listed in Chapter 4: Skills. No matter which skill you're using, you calculate a check for it using the following formula.",{"type":"pf2-inset","entries":["Skill check result = d20 roll + modifier of the skill's key ability score + proficiency bonus + other bonuses + penalties"]},"You're unlikely to be trained in every skill. When using a skill in which you're untrained, your proficiency bonus is +0; otherwise, it equals your level plus 2 for trained, or higher once you become expert or better. The proficiency rank is specific to the skill you're using. Aid from another character or some other beneficial situation may grant you a circumstance bonus. A status bonus might come from a helpful spell or magical effect. Sometimes tools related to the skill grant you an item bonus to your skill checks. Conversely, unfavorable situations might give you a circumstance penalty to your skill check, while harmful spells, magic, or conditions might also impose a status penalty. Using shoddy or makeshift tools might cause you to take an item penalty. Sometimes a skill action can be an attack, and in these cases, the skill check might take a multiple attack penalty, as described on page 446.","When an ability calls for you to use the DC for a specific skill, you can calculate it by adding 10 + your total modifier for that skill."],"source":"CRB"},{"type":"pf2-h3","page":450,"name":"Notating Total Modifiers","entries":["When creating your character and adventuring you'll record the total modifier for various important checks on your character sheet. Since many bonuses and penalties are due to the immediate circumstances, spells, and other temporary magical effects, you typically won't apply them to your notations.","Item bonuses and penalties are often more persistent, so you will often want to record them ahead of time. For instance, if you are using a weapon with a {@item +1 weapon potency} rune, you'll want to add the +1 item bonus to your notation for your attack rolls with that weapon, since you will include that bonus every time you attack with that weapon. But if you have a fine spyglass, you wouldn't add its item bonus to your Perception check notation, since you gain that bonus only if you are using sight—and the spyglass!—to see long distances."],"source":"CRB"}],"data":{"quickref":4},"source":"CRB"}]},{"type":"entries","entries":[{"type":"section","page":503,"name":"Difficulty Classes","alias":["DCs"],"entries":[{"type":"pf2-h1-flavor","page":503,"entries":["{@i As the Game Master, it's up to you to set the difficulty classes (DCs) for checks that don't use a predefined DC. The following sections offer advice on how to set appropriate DCs and tweak them as needed to feel natural for your story. Picking a simple DC and using a level-based DC each work well in certain circumstances, and you can adjust both types of DC using the advice on adjusting difficulty.}"],"source":"CRB"},{"type":"pf2-h2","page":503,"name":"Simple DCs","entries":["Sometimes you need to quickly set a Difficulty Class. The easiest method is to select a simple DC from Table 10–4 by estimating which proficiency rank best matches the task (that rank is usually not required to succeed at the task).","If it's something pretty much anyone would have a decent chance at, use the untrained DC. If it would require a degree of training, use the DC listed for trained, expert, master, or legendary proficiency, as appropriate to the complexity of the task. For example, say a PC was trying to uncover the true history behind a fable. You determine this requires a check to Recall Knowledge, and that only someone with master proficiency in Folktale Lore would know the information, so you'd set the DC at 30—the simple master DC.","Simple DCs work well when you need a DC on the fly and there's no level associated with the task. They're most useful for skill checks. Because there isn't much gradation between the simple DCs, they don't work as well for hazards or combatants, where the PCs' lives are on the line; you're better off using level-based DCs for such challenges.",{"name":"Simple DCs","type":"data","tag":"table","source":"CRB","page":503}],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h2","page":503,"name":"Level-Based DCs","entries":["When you're determining a skill DC based on something that has a level, use Table 10–5 to set the DC. Find the level of the subject, and assign the corresponding DC. Since spells use a 1–10 scale, use the Spell Level column for them.","Use these DCs when a PC needs to Identify a Spell or {@action Recall Knowledge} about a creature, attempts to Earn Income by performing a task of a certain level, and so on. You can also use the level-based DCs for obstacles instead of assigning a simple DC. For example, you might determine that a wall in a high-level dungeon was constructed of smooth metal and is hard to climb. You could simply say only someone with master proficiency could climb it, and use the simple DC of 30. Or you might decide that the 15th-level villain who created the dungeon crafted the wall, and use the 15th-level DC of 34. Either approach is reasonable!","Note that PCs who invest in a skill become more likely to succeed at a DC of their level as they increase in level, and the listed DCs eventually become very easy for them.",{"type":"data","tag":"table","name":"DCs by Level","source":"CRB"}],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h2","page":503,"name":"Adjusting Difficulty","entries":["You might decide a DC should differ from the baseline, whether to account for PCs' areas of expertise or to represent the rarity of spells or items. A DC adjustment represents an essential difference in the difficulty of a task and applies to anyone attempting a specific check for it.","Adjustments happen most often with tasks whose DCs are based on their level. Adjustments use a scale of –10 to +10, from incredibly easy checks to incredibly hard ones, and are broken into increments of 2, 5, and 10.","You'll often apply the adjustments for uncommon, rare, or unique subjects.",{"type":"data","tag":"table","name":"DC Adjustments","source":"CRB"},"The adjustments' names don't translate to how hard a task actually is for a PC or group of PCs, and adjustments aren't meant to balance out or replace PCs' bonuses and penalties. PCs who invest in a skill will become better and better at that skill as they increase in level. For example, even the best 1st-level PC has grim odds against an incredibly hard 1st-level DC, with a huge chance of critical failure, but by 20th level, an optimized character with a modicum of magic or assistance can take down incredibly hard 20th-level DCs over half the time, critically failing only on a 1. At higher levels, many groups will find that the very hard DC is more like standard for them; keep that in mind if you need a check that presents a true challenge to a high level group.","You might use different DCs for a task based on the particular skill or statistic used for the check. Let's say your PCs encounter a magical tome about aberrant creatures. The tome is 4th-level and has the occult trait, so you set the DC of an {@skill Occultism} check to Identify the Magic to 19, based on Table 10–5. As noted in Identify Magic, other magic-related skills can typically be used at a higher DC, so you might decide the check is very hard for a character using {@skill Arcana} and set the DC at 24 for characters using that skill. If a character in your group had Aberration Lore, you might determine that it would be easy or very easy to use that skill and adjust the DC to 17 or 14. These adjustments aren't taking the place of characters' bonuses, modifiers, and penalties—they are due to the applicability of the skills being used.",{"type":"pf2-h3","page":504,"name":"Group Attempts","entries":["The DCs in this chapter give an individual character a strong and increasing chance of success if they have some proficiency. On occasion, though, you'll have a task that only one person in the group needs to succeed at, but that everyone can attempt. The number of dice being rolled means that there's a very high chance at least one of them will succeed. Most of the time, that's perfectly fine, but sometimes you'll want the task to be a challenge, with some uncertainty as to whether the party can succeed. In these cases, make the check very hard, or incredibly hard if you want it to be particularly difficult or at high levels.","At these DCs, most of the party will probably fail, but someone will probably still succeed, likely a character who has heavily invested in the given skill, as is expected for specialized characters."],"source":"CRB"}],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h2","page":504,"name":"Minimum Proficiency","entries":["Sometimes succeeding at a particular task requires a character to have a specific proficiency rank in addition to a success on the check. Locks and traps often require a certain proficiency rank to successfully use the Pick a Lock or Disable a Device actions of {@skill Thievery}. A character whose proficiency rank is lower than what's listed can attempt the check, but they can't succeed. You can apply similar minimum proficiencies to other tasks. You might decide, for example, that a particular arcane theorem requires training in {@skill Arcana} to understand. An untrained barbarian can't succeed at the check, but she can still attempt it if she wants—after all, she needs to have a chance to critically fail and get erroneous information!","For checks that require a minimum proficiency, keep the following guidelines in mind. A 2nd-level or lower task should almost never require expert proficiency, a 6th-level or lower task should almost never require master proficiency, and a 14th-level or lower task should almost never require legendary proficiency. If they did, no character of the appropriate level could succeed."],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h2","page":504,"name":"Specific Actions","entries":["Several parts of this book, most notably Chapter 4: Skills, state that you as the GM set the DCs for certain checks or determine other parameters. Here are guidelines for the most common tasks. Remember that all of these are guidelines, and you can adjust them as necessary to suit the situation.",{"type":"pf2-h3","page":504,"name":"Craft","entries":["When a character Crafts an item, use the item's level to determine the DC, applying the adjustments from Table 10–6 for the item's rarity if it's not common. You might also apply the easy DC adjustment for an item the crafter has made before. Repairing an item usually uses the DC of the item's level with no adjustments, though you might adjust the DC to be more difficult for an item of a higher level than the character can Craft."],"source":"CRB"},{"type":"pf2-h3","page":504,"name":"Earn Income","entries":["You set the task level when someone tries to Earn Income.","The highest-level task available is usually the same as the level of the settlement where the character is located. If you don't know the settlement's level, it's usually 0–1 for a village, 2–4 for a town, or 5–7 for a city. A PC might need to travel to a metropolis or capital to find tasks of levels 8-10, and to the largest cities in the world or another plane to routinely find tasks beyond that. Some locations might have higher-level tasks available based on the nature of the settlement. A major port might have higher-level tasks for Sailing Lore, a city with a vibrant arts scene might have higher-level tasks for {@skill Performance}, and so on. If someone is trying to use a particularly obscure skill, they might have trouble finding tasks of an ideal level, or any at all—no one in most settlements is clamoring for the expertise of someone with Troll Lore.","Once the PC has decided on a particular level of task from those available, use the DC for that level from Table 10–5. You might adjust the DC to be more difficult if there's inclement weather during an outdoor job, a rowdy audience for a performance, or the like."],"source":"CRB"},{"type":"pf2-h3","page":505,"name":"Gather Information","entries":["To set the DC to Gather Information, use a simple DC representing the availability of information about the subject. Adjust the DC upward if the PC Gathering Information seeks in-depth information. For example, if a character wants to Gather Information about a visiting caravan, you might decide that a common person wouldn't know much about it, but any merchant or guard would, so learning basic facts uses the simple DC for trained proficiency. A caravan leader's name is superficial, so discovering it might be DC 15 (the simple trained DC in Table 10–4). Learning the identity of the leader's employers, however, might be DC 20 if the employers are more obscure."],"source":"CRB"},{"type":"pf2-h3","page":505,"name":"Identify Magic or Learn a Spell","entries":["The DC to {@action Identify Magic} or {@action Learn a Spell} is usually the DC listed in Table 10–5 for the spell or item's level, adjusted for its rarity. A very strange item or phenomenon usually uses a higher DC adjustment. For a cursed item or certain illusory items, use an incredibly hard DC to increase the chance of misidentification."],"source":"CRB"},{"type":"pf2-h3","page":505,"name":"Recall Knowledge","entries":["On most topics, you can use simple DCs for checks to {@action Recall Knowledge}. For a check about a specific creature, trap, or other subject with a level, use a {@quickref level-based DCs||4|level-based dcs} (adjusting for rarity as needed). You might adjust the difficulty down, maybe even drastically, if the subject is especially notorious or famed. Knowing simple tales about an infamous dragon's exploits, for example, might be incredibly easy for the dragon's level, or even just a simple trained DC.",{"type":"pf2-h4","page":505,"name":"Alternative Skills","entries":["As noted in the action's description, a character might attempt to {@action Recall Knowledge} using a different skill than the ones listed as the default options. If the skill is highly applicable, like using {@skill Medicine} to identify a medicinal tonic, you probably don't need to adjust the DC. If its relevance is a stretch, adjust the DC upward as described in {@quickref Adjusting Difficulty||4|Adjusting Difficulty}."],"source":"CRB"},{"type":"pf2-h4","page":505,"name":"Additional Knowledge","entries":["Sometimes a character might want to follow up on a check to {@action Recall Knowledge}, rolling another check to discover more information. After a success, further uses of {@action Recall Knowledge} can yield more information, but you should adjust the difficulty to be higher for each attempt. Once a character has attempted an incredibly hard check or failed a check, further attempts are fruitless—the character has recalled everything they know about the subject."],"source":"CRB"},{"type":"pf2-h4","page":505,"name":"Creature Identification","entries":["A character who successfully identifies a creature learns one of its best-known attributes—such as a troll's regeneration (and the fact that it can be stopped by acid or fire) or a manticore's tail spikes. On a critical success, the character also learns something subtler, like a demon's weakness or the trigger for one of the creature's reactions.","The skill used to identify a creature usually depends on that creature's trait, as shown on Table 10–7, but you have leeway on which skills apply. For instance, hags are humanoids but have a strong connection to occult spells and live outside society, so you might allow a character to use {@skill Occultism} to identify them without any DC adjustment, while Society is harder. Lore skills can also be used to identify their specific creature. Using the applicable Lore usually has an easy or very easy DC (before adjusting for rarity).",{"type":"data","tag":"table","name":"Creature Identification Skills","source":"CRB"}],"source":"CRB"}],"source":"CRB"},{"type":"pf2-brown-box","page":506,"name":"DETERMINING THE SCOPE OF LORE","entries":["{@skill Lore} skills are one of the most specialized aspects of Pathfinder, but they require GM oversight, particularly in determining which {@skill Lore} subcategories are acceptable for characters to select. A {@skill Lore} subcategory represents a narrow focus, and thus it shouldn't replace all or even most of an entire skill, nor should it convey vast swaths of information. For example, a single {@skill Lore} subcategory doesn't cover all religions—that's covered by the {@skill Religion} skill—but a character could have a {@skill Lore} subcategory that covers a single deity. One {@skill Lore} subcategory won't cover an entire country or all of history, but it could cover a city, an ancient civilization, or one aspect of a modern country, like Taldan History {@skill Lore}. A single {@skill Lore} subcategory couldn't cover the entire multiverse, but it could cover a whole plane other than the Material Plane."],"source":"CRB"},{"type":"pf2-h3","page":506,"name":"Sense Direction","entries":["Pick the most appropriate simple DC when someone uses {@skill Survival} to Sense Direction. This is usually the trained DC in normal wilderness, expert in deep forest or underground, master in featureless or tricky locations, or legendary in weird or surreal environments on other planes."],"source":"CRB"},{"type":"pf2-h3","page":506,"name":"Social Skills","entries":["When a character uses {@skill Deception}, {@skill Diplomacy}, {@skill Intimidation}, or {@skill Performance} to influence or impress someone whose level or Will DC you don't know, estimate the level of the creature and use that DC. A commoner is usually level 0 or 1. Don't worry about being exact. It often makes sense to adjust the DC based on the target's attitude for {@skill Deception}, {@skill Diplomacy}, or {@skill Performance}, making the DC easy for a friendly creature, very easy for a helpful one, hard for an unfriendly one, or very hard for a hostile one. You might adjust the DC further or differently based on the PC's goal; for instance, the DC to Request something an indifferent NPC is fundamentally opposed to might be incredibly hard or impossible, and it might be easy to convince an unfriendly creature to do something it already wants to do."],"source":"CRB"},{"type":"pf2-h3","page":506,"name":"Subsist","entries":["A simple DC is usually sufficient for the Subsist action, with a trained DC for a typical situation. Use the disposition of the environment or city as a guide; an environment with scarce resources or a city with little tolerance for transience might require an expert or higher DC."],"source":"CRB"},{"type":"pf2-h3","page":506,"name":"Track","entries":["Often when a PC uses {@skill Survival} to Track, you can pick a simple DC and adjust it based on the circumstances. For example, an army is usually easy to track, so you could use the untrained DC of 10. If the army marched through mud, you could even adjust this down to DC 5. On the other hand, if the party pursues a cunning survivalist using Cover Tracks, you might use their {@skill Survival} DC as the DC to Track."],"source":"CRB"},{"type":"pf2-h3","page":506,"name":"Train an Animal","entries":["Train Animal (page 268) allows PCs to teach animals tricks. Use the level of the animal as the baseline; you can adjust the DC up if the trick is especially difficult, or down if the animal is especially domesticated, like a dog."],"source":"CRB"}],"source":"CRB"}],"data":{"quickref":5},"source":"CRB"},{"type":"section","source":"GMG","page":120,"name":"Drugs","entries":["Drugs offer short-term benefits with harmful side effects and long-term consequences. These short-term benefits, such as euphoria, draw many to drugs, but addiction keeps users hooked long after their first dose. A character can voluntarily fail their initial save against a drug, but for each dose they consume, they must attempt a saving throw against addiction, a disease that represents cravings and withdrawal. Addiction is unique to each drug, so a character can be affected by multiple instances of addiction at once.","Certain drugs alter how addiction works for that drug, adding the {@trait virulent} trait to the addiction, limiting the maximum stage a character can reach, or adding additional stages beyond those listed in the base affliction.",{"type":"data","tag":"disease","data":{"source":"GMG","page":120,"name":"Addiction","level":", level varies","type":"disease","entries":["Track the maximum stage you reach with each drug's addiction. This maximum stage is separate from your current addiction stage for the drug. The maximum stage can't be reduced, even if you fully remove the disease. When you take the drug, two things happen: you attempt a saving throw against addiction, and you suppress the effects of addiction for 1 day. Failing a save against addiction caused by taking the drug causes you to go to 1 stage higher than the maximum stage you had previously reached (2 stages higher on a critical failure). If you're currently suffering from addiction when you attempt a save from taking the drug, you can't improve your stage; if you succeed at the save, the stage remains the same as it was.","When you attempt your save against addiction each week, the stage you are currently at can't get worse—it can only stay the same or improve. The conditions from addiction can't be removed while you are affected by the addiction, and suppressing addiction by taking the drug only avoids the effects—it doesn't remove the disease.",{"type":"affliction","savingThrow":"Fortitude (DC equals that of the drug)","onset":"1 day","stages":[{"stage":1,"entry":"{@condition fatigued}","duration":"1 week"},{"stage":2,"entry":"{@condition fatigued} and {@condition sickened||sickened 1}","duration":"1 week"},{"stage":3,"entry":"{@condition fatigued}, {@condition drained||drained 1} and {@condition sickened||sickened 1}","duration":"1 week"},{"stage":4,"entry":"{@condition fatigued}, {@condition drained||drained 2}, {@condition sickened||sickened 2} and {@condition stupefied||stupefied 2}","duration":"1 week"}]}]}},{"type":"pf2-brown-box","source":"GMG","page":120,"name":"DRUGS IN YOUR GAME","entries":["Drugs are socially complex, and including them in your game has the potential to make some of your players uncomfortable—particularly players who have struggled with substance abuse themselves or seen friends and family members go through that struggle. As with any potentially difficult subject matter, you should discuss the role drugs play in your game with your players and ensure that all the players at the table are comfortable with the material; if they aren't, avoid the topic.","If you do include drugs in your game, consider the role they'll play. In some campaigns, drugs might simply be an element of flavor and a tool characters use to reach their goals; in others, the side effects and risk of addiction might be a terrible price to pay. The rules assume something of a middle path, where drugs are addictive substances that may provide a short-term benefit but have consequences. To make drugs more accessible in your game, remove some of the more severe stages of addiction. To make them more dangerous, add the {@trait virulent} trait to the addiction affliction, add more stages with increasingly severe effects, or increase the DC of the save against the addiction by 1 for every use of the drug, decreasing back to normal over time as they stop using the drug."]}],"data":{"quickref":5}},{"type":"section","page":512,"name":"Environment","entries":[{"type":"pf2-h1-flavor","page":512,"entries":["{@i Primarily used during exploration, environment rules bring the locales your party travels through to life. You'll often be able to use common sense to adjudicate how environments work, but you'll need special rules for environments that really stand out.}"],"source":"CRB"},"Each of the environments presented in this section uses the terrain rules (which are summarized on page 514 and appear in full beginning on page 475) in different ways, so be sure to familiarize yourself with those rules before reading this section. Some environments refer to the rules for climate (page 517) and natural disasters (beginning on page 517). Many places have the traits of multiple environments; a snow-covered mountain might use both the arctic and mountain environments, for example. For environmental features with effects based on how tall or deep they are, those effects vary further based on a creature's size. For instance, a shallow bog for a Medium creature might be a deep bog for smaller creatures, and a deep bog for a Medium creature could be only a shallow bog for a larger creature (and so insignificant for a truly massive creature that it isn't even {@quickref difficult terrain||3|terrain}).","Table 10–12 lists the features of various environments alphabetically for quick reference. The Proficiency DC Band entry indicates a range of appropriate simple DCs for that environmental feature, while also providing a rough estimate of the danger or complexity of the feature.",{"type":"data","tag":"table","name":"Enviromental Features","source":"CRB"},{"type":"pf2-h2","page":512,"name":"Environmental Damage","entries":["Some environmental features or natural disasters deal damage. Because the amount of damage can vary based on the specific circumstances, the rules for specific environments and natural disasters use damage categories to describe the damage, rather than exact numbers.","Use Table 10–11 below to determine damage from an environment or natural disaster. When deciding the exact damage amount, use your best judgment based on how extreme you deem the danger to be.",{"type":"data","tag":"table","name":"Enviromental Damage","source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":512,"name":"Aquatic","entries":["Aquatic environments are among the most challenging for PCs short of other worlds and unusual planes. PCs in an aquatic environment need a way to breathe (typically a {@spell water breathing} spell) and must usually {@action Swim} to move, though a PC who sinks to the bottom can walk awkwardly, using the rules for {@quickref greater difficult terrain||3|terrain}.","Characters in aquatic environments make frequent use of the {@quickref aquatic combat||3|aquatic combat} and {@quickref drowning and suffocation||3|drowning and suffocating} rules.",{"type":"pf2-h3","page":512,"name":"Currents and Flowing Water","entries":["Ocean currents, flowing rivers, and similar moving water are {@quickref difficult terrain||3|terrain} or {@quickref greater difficult terrain||3|terrain} (depending on the speed of the water) for a creature Swimming against the current. At the end of a creature's turn, it moves a certain distance depending on the current's speed. For instance, a 10-foot current moves a creature 10 feet in the current's direction at the end of that creature's turn."],"source":"CRB"},{"type":"pf2-h3","page":512,"name":"Visibility","entries":["It's much harder to see things at a distance underwater than it is on land, and it's particularly difficult if the water is murky or full of particles. In pure water, the maximum visual range is roughly 240 feet to see a small object, and in murky water, visibility can be reduced to only 10 feet or even less."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":512,"name":"Arctic","entries":["The main challenge in an arctic environment is the low temperature, but arctic environments also contain ice and snow. The disasters that most often strike in arctic environments are avalanches, blizzards, and floods.",{"type":"pf2-h3","page":512,"name":"Ice","entries":["Icy ground is both uneven ground and {@quickref difficult terrain||3|terrain}, as characters slip and slide due to poor traction."],"source":"CRB"},{"type":"pf2-h3","page":512,"name":"Snow","entries":["Depending on the depth of snow and its composition, most snowy ground is either {@quickref difficult terrain||3|terrain} or {@quickref greater difficult terrain||3|terrain}. In denser snow, characters can attempt to walk along the surface without breaking through, but some patches might be loose or soft enough that they're uneven ground."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":512,"name":"Desert","entries":["Desert encompasses sandy and rocky deserts as well as badlands. Though tundra is technically a desert, it's classified as arctic, as the climate is the primary challenge in such areas. Sandy deserts often have quicksand hazards (page 526) and sandstorms.",{"type":"pf2-h3","page":513,"name":"Rubble","entries":["Rocky deserts are strewn with rubble, which is {@quickref difficult terrain||3|terrain}. Rubble dense enough to be walked over rather than navigated through is uneven ground."],"source":"CRB"},{"type":"pf2-h3","page":513,"name":"Sand","entries":["Packed sand doesn't usually significantly impede a character's movement, but loose sand is either {@quickref difficult terrain||3|terrain} (if it's shallow) or uneven ground (if it's deep).","The wind in a desert often shifts sand into dunes, hills of loose sand with uneven ground facing the wind and steeper inclines away from the wind."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":513,"name":"Forest","entries":["These diverse environments include jungles and other wooded areas. They are sometimes struck by wildfires.",{"type":"pf2-h3","page":513,"name":"Canopies","entries":["Particularly dense forests, such as rain forests, have a canopy level above the ground. A creature trying to reach the canopy or travel along it must Climb. Swinging on vines and branches usually requires an {@skill Acrobatics} or {@skill Athletics} check. A canopy provides cover, and a thicker one can prevent creatures in the canopy from seeing those on the ground, and vice versa."],"source":"CRB"},{"type":"pf2-h3","page":513,"name":"Trees","entries":["While trees are omnipresent in a forest, they typically don't provide cover unless a character uses the Take Cover action. Only larger trees that take up an entire 5-foot square on the map (or more) are big enough to provide cover automatically."],"source":"CRB"},{"type":"pf2-h3","page":513,"name":"Undergrowth","entries":["Light undergrowth is {@quickref difficult terrain||3|terrain} that allows a character to Take Cover. Heavy undergrowth is {@quickref greater difficult terrain||3|terrain} that automatically provides cover. Some sorts of undergrowth, such as thorns, might also be hazardous terrain, and areas with plenty of twisting roots might be uneven ground."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":513,"name":"Mountain","entries":["Mountain environments also include hills, which share many aspects of mountains, though not their more extreme features. The most common disasters here are avalanches.",{"type":"pf2-h3","page":513,"name":"Chasms","entries":["Chasms are natural pits, typically at least 20 feet long and clearly visible (barring mundane or magical efforts to conceal them). The main danger posed by a chasm is that characters must Long Jump to get across. Alternatively, characters can take the safer but slower route of Climbing down the near side of the chasm and then ascending the far side to get across."],"source":"CRB"},{"type":"pf2-h3","page":513,"name":"Cliffs","entries":["Cliffs and rock walls require creatures to {@action Climb} to ascend or descend. Without extensive safety precautions, a critical failure can result in significant falling damage."],"source":"CRB"},{"type":"pf2-h3","page":513,"name":"Rubble","entries":["Mountains often have extremely rocky areas or shifting, gravelly scree that makes for {@quickref difficult terrain||3|terrain}. Especially deep or pervasive rubble is uneven ground."],"source":"CRB"},{"type":"pf2-h3","page":514,"name":"Slopes","entries":["Slopes vary from the gentle rises of normal terrain to {@quickref difficult terrain||3|terrain} and inclines, depending on the angle of elevation. Moving down a slope is typically normal terrain, but characters might need to Climb up particularly steep slopes."],"source":"CRB"},{"type":"pf2-h3","page":514,"name":"Undergrowth","entries":["Light undergrowth is common in mountains. It is {@quickref difficult terrain||3|terrain} and allows a character to Take Cover."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":514,"name":"Plains","entries":["The plains environment encompasses grasslands such as savannas and farmland. The most common disasters in plains are tornadoes and wildfires.",{"type":"pf2-h3","page":514,"name":"Hedges","entries":["Hedges are planted rows of bushes, shrubs, and trees.","Their iconic appearance in adventures consists of tall hedges grown into mazes. A typical hedge is 2 to 5 feet tall, takes up a row of squares, and provides cover. A character trying to push through a hedge faces {@quickref greater difficult terrain||3|terrain}; it's sometimes faster to Climb over."],"source":"CRB"},{"type":"pf2-h3","page":514,"name":"Undergrowth","entries":["Light undergrowth is {@quickref difficult terrain||3|terrain} that allows a character to Take Cover. Heavy undergrowth is {@quickref greater difficult terrain||3|terrain} that provides cover automatically.","Undergrowth in plains is usually light with a few scattered areas of heavy undergrowth, but fields of certain crops, like corn, are entirely heavy undergrowth."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":514,"name":"Swamp","entries":["Wetlands are the most common kind of swamp, but this category also includes drier marshes such as moors.","Swamps often contain quicksand hazards (page 526).","Despite their soggy nature, swamps aren't very likely to experience heavy flooding, since they act as natural sponges and absorb a great deal of water before they flood.",{"type":"pf2-h3","page":514,"name":"Bogs","entries":["Also called mires, bogs are watery areas that accumulate peat, are covered by shrubs and moss, and sometimes feature floating islands of vegetation covering deeper pools.","Shallow bogs are {@quickref difficult terrain||3|terrain} for a Medium creature, and deep bogs are {@quickref greater difficult terrain||3|terrain}. If a bog is deep enough that a creature can't reach the bottom, the creature has to Swim. Bogs are also acidic, so particularly extreme or magical bogs can be hazardous terrain."],"source":"CRB"},{"type":"pf2-h3","page":514,"name":"Undergrowth","entries":["Light undergrowth is {@quickref difficult terrain||3|terrain} that allows a character to Take Cover, while heavy undergrowth is {@quickref greater difficult terrain||3|terrain} that provides cover automatically.","Some sorts of undergrowth, such as thorns, are also hazardous terrain, and areas with plenty of twisting roots are uneven ground."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-brown-box","page":514,"name":"TERRAIN RULES","entries":["Environments make frequent use of the rules for {@quickref difficult terrain||3|terrain}, {@quickref greater difficult terrain||3|terrain}, and hazardous terrain, so those rules are summarized here.","{@b Difficult terrain} is any terrain that impedes movement, ranging from particularly rough or unstable surfaces to thick ground cover and countless other impediments. Moving into a square of {@quickref difficult terrain||3|terrain} (or moving 5 feet into or within an area of {@quickref difficult terrain||3|terrain}, if you're not using a grid) costs an extra 5 feet of movement. Moving into a square of {@b greater difficult terrain} instead costs 10 additional feet of movement. This additional cost is not increased when moving diagonally. Creatures can't normally Step into {@quickref difficult terrain||3|terrain}.","Any movement creatures make while jumping ignores terrain that the creature is jumping over. Some abilities (such as flight or being incorporeal) allow creatures to avoid the movement reduction from some types of {@quickref difficult terrain||3|terrain}. Certain other abilities let creatures ignore {@quickref difficult terrain||3|terrain} while traveling on foot; such an ability also allows a creature to move through {@quickref greater difficult terrain||3|terrain} using the movement cost for {@quickref difficult terrain||3|terrain}, but unless the ability specifies otherwise, these abilities don't let creatures ignore {@quickref greater difficult terrain||3|terrain}.","{@b Hazardous terrain} damages creatures whenever they move through it. For instance, an acid pool, a pit of burning embers, and a spike-filled passageway all constitute hazardous terrain. The amount and type of damage depend on the specific hazardous terrain."],"source":"CRB"},{"type":"pf2-h2","page":514,"name":"Urban","entries":["Urban environments include open city spaces as well as buildings. The building information in this section also applies to ruins and constructed dungeons. Depending on their construction and location, cities might be vulnerable to many sorts of disasters, especially fires and floods.",{"type":"pf2-h3","page":514,"name":"Crowds","entries":["Crowded thoroughfares and similar areas are {@quickref difficult terrain||3|terrain}, or {@quickref greater difficult terrain||3|terrain} if an area is truly packed with people. You might allow a character to get a crowd to part using {@skill Diplomacy}, {@skill Intimidation}, or {@skill Performance}.","A crowd exposed to an obvious danger, like a fire or a rampaging monster, attempts to move away from the danger as quickly as possible, but it is slowed by its own mass. A fleeing crowd typically moves at the Speed of an average member each round (usually 25 feet), potentially trampling or leaving behind slower-moving members of the crowd."],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h3","page":515,"name":"Doors","entries":["Opening an unlocked door requires an Interact action (or more than one for a particularly complicated or large door). Stuck doors must be Forced Open, and locked ones require a character to Pick the Lock or Force them Open."],"source":"CRB"},{"type":"pf2-h3","page":515,"name":"Floors","entries":["Wooden floors are easy to walk on, as are flagstone floors made of fitted stones. However, floors of worn flagstone often contain areas of uneven ground."],"source":"CRB"},{"type":"pf2-h3","page":515,"name":"Gates","entries":["Walled settlements often have gates that the city can close for defense or open to allow travel. A typical gate consists of one portcullis at each end of a gatehouse, with murder holes in between or other protected spots from which guards can attack foes."],"source":"CRB"},{"type":"pf2-h3","page":515,"name":"Guards","entries":["Most settlements of significant size have guards working in shifts to protect the settlement at all hours, patrolling the streets and guarding various posts. The size of this force varies from one guard for every 1,000 residents to a force 10 times this number."],"source":"CRB"},{"type":"pf2-h3","page":515,"name":"Portcullises","entries":["A portcullis is a wooden or iron grate that descends to seal off a gate or corridor. Most are raised on ropes or chains operated by a winch, and they have locking mechanisms that keep them from being lifted easily. The rules on lifting a portcullis or bending its bars appear in the sidebar on this page. If a portcullis falls on a creature, use a slamming door trap (page 523)."],"source":"CRB"},{"type":"pf2-brown-box","page":515,"name":"DOORS, GATES, AND WALLS","entries":["Some of the most common obstacles that characters face in urban areas and dungeons are doors, gates, and walls.",{"type":"pf2-title","name":"Climbing"},"The table below gives the typical DC for {@skill Athletics} checks to Climb a structure, which is usually a simple DC. You might adjust the difficulty based on the specifics of the structure and environment.",{"type":"pf2-title","name":"Demolishing"},"A character might want to smash their way through a door, a window, or certain walls. The Hardness, Hit Point, and Broken Threshold values provided in the table below are based on the material the structure is typically made out of, so a portcullis made of iron, for example, has a higher Hardness than one of wood. For more on damaging objects, see page 272.","Strong walls, such as well-maintained masonry or hewn stone, can't be broken without dedicated work and proper tools. Getting through such walls requires downtime.",{"type":"table","rowLabelIdx":[0,5,11],"colStyles":["text-center","text-center","text-center"],"rows":[["Door","Climb DC","Hardness, HP (BT)"],["Wood","20","10, 40 (20)"],["Stone","30","14, 56 (28)"],["Reinforced Wood","15","15, 60 (30)"],["Iron","30","18, 72 (36)"],["Wall","Climb DC","Hardness, HP (BT)"],["Crumbling masonry","15","10, 40 (20)"],["Wooden slats","15","10, 40 (20)"],["Masonry","20","14, 56 (28)"],["Hewn stone","30","14, 56 (28)"],["Iron","40","18, 72 (36)"],["Portcullis","Climb DC","Hardness, HP (BT)"],["Wood","10","10, 40 (20)"],["Iron","10","18, 72 (36)"]]},{"type":"pf2-title","name":"Forcing Open"},"Structures that can be opened—such as doors, gates, and windows—can be Forced Open using {@skill Athletics}. This is usually necessary only if they're locked or stuck. The DC to Force Open a structure uses the {@skill Thievery} DC of its lock but adjusts it to be very hard (increasing the DC by 5).","If there's no lock, use the following table; when lifting a portcullis, use the lock DC or the DC from the table, whichever is higher."],"source":"CRB"},{"type":"pf2-h3","page":515,"name":"Rooftops","entries":["Rooftops make for memorable ambushes, chase scenes, infiltrations, and running fights. Flat roofs are easy to move across, but they're rare in any settlement that receives significant snowfall, since heavy buildups of snow can collapse a roof. Angled roofs are uneven ground, or inclines if they're especially steep. The peak of an angled roof is a narrow surface.","Hurdling from roof to roof often requires a Long Jump, though some buildings are close enough to Leap between.","A High Jump might be necessary to reach a higher roof, or a Leap followed by Grabbing an Edge and Climbing up."],"source":"CRB"},{"type":"pf2-h3","page":515,"name":"Sewers","entries":["Sewers are generally 10 feet or more below street level and are equipped with ladders or other means to ascend and descend. Raised paths along the walls allow sewer workers access, while channels in the center carry the waste itself. Less sophisticated sewers, or sections those workers don't usually access, might require wading through diseaseridden waste. Sewers can be accessed through sewer grates, which usually require 2 or more Interact actions to open.",{"type":"pf2-h4","page":516,"name":"Sewer Gas","entries":["Sewer gas often contains pockets of highly flammable gas. A pocket of sewer gas exposed to a source of flame explodes, dealing moderate environmental fire damage to creatures in the area."],"source":"CRB"}],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":516,"name":"Stairs","entries":["Stairs are {@quickref difficult terrain||3|terrain} for characters moving up them, and shoddy stairs might also be uneven ground. Some temples and giant-built structures have enormous stairs that are {@quickref greater difficult terrain||3|terrain} both up and down, or might require Climbing every step."],"source":"CRB"},{"type":"pf2-h3","page":516,"name":"Streets","entries":["Most settlements have narrow and twisting streets that were largely established organically as the settlement grew. These roads are rarely more than 20 feet wide, with alleys as narrow as 5 feet. Streets are generally paved with cobblestones. If the cobblestones are in poor repair, they could be {@quickref difficult terrain||3|terrain} or uneven ground.","Particularly lawful or well-planned cities have major thoroughfares that allow wagons and merchants to reach marketplaces and other important areas in town. These need to be at least 25 feet wide to accommodate wagons moving in both directions, and they often have narrow sidewalks that allow pedestrians to avoid wagon traffic."],"source":"CRB"},{"type":"pf2-h3","page":516,"name":"Walls","entries":["Well-built structures have exterior walls of brick or stonemasonry. Smaller, lower-quality, or temporary structures might have wooden walls. Interior walls tend to be less sturdy; they could be made of wooden planks, or even simply of thick, opaque paper held in a wooden frame. An underground structure might have thick walls carved out of solid rock to prevent the weight of the ground above from collapsing the structure. Rules for climbing and breaking walls are in the sidebar on page 515."],"source":"CRB"},{"type":"pf2-h2","page":516,"name":"Underground","entries":["Underground environments consist of caves and natural underground areas. Artificial dungeons and ruins combine underground features with urban features like stairs and walls. Deep underground vaults have some of the same terrain features as mountains, such as chasms and cliffs.","The most common disasters underground are collapses.",{"type":"pf2-h3","page":516,"name":"Floors","entries":["Natural underground environments rarely have flat floors, instead featuring abrupt changes in elevation that result in {@quickref difficult terrain||3|terrain}, uneven ground, and inclines."],"source":"CRB"},{"type":"pf2-h3","page":516,"name":"Ledges","entries":["Ledges are narrow surfaces that overlook a lower area or provide the only means to move along the edge of a chasm. Moving across a narrow ledge requires using {@skill Acrobatics} to Balance."],"source":"CRB"},{"type":"pf2-h3","page":516,"name":"Rubble","entries":["Caverns can be covered in rubble, which is {@quickref difficult terrain||3|terrain}. Deep or pervasive rubble is also uneven ground."],"source":"CRB"},{"type":"pf2-h3","page":516,"name":"Stalagmites and Stalactites","entries":["Stalagmites are tapering columns that rise from the floor of a cave. Areas filled with stalagmites are {@quickref greater difficult terrain||3|terrain}, and especially large stalagmites have to be sidestepped or Climbed. Stalagmites can be sharp enough they can be used as hazardous terrain in some circumstances, as can stalactites (icicle-shaped formations that hang from the roof of a cave) if they're knocked loose from a ceiling or overhang."],"source":"CRB"},{"type":"pf2-h3","page":517,"name":"Walls","entries":["Natural cave walls are uneven, with nooks, crannies, and ledges. Since most caves are formed by water, cave walls are often damp, making them even more difficult to Climb."],"source":"CRB"},{"type":"pf2-brown-box","page":517,"name":"DUNGEONS","entries":["Dungeon environments, which include both ruins and contemporary buildings constructed in the wilderness, are a fairly common venue for adventures. As an environment, they combine urban features like doors and buildings (page 515) with features from an underground environment, and occasionally components from other environments. While underground dungeons are particularly common, you might also consider setting your adventure in a ruin reclaimed by the forest, with giant trees spreading their roots through the walls, or a ruin deep in a swamp, with bogs covering access to some of the ruin's hidden secrets."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":517,"name":"Climate","entries":["Weather is more than just set dressing to establish mood—it has mechanical effects you can combine with environmental components to create a more memorable encounter. Weather can impose circumstance penalties on certain checks, from –1 to –4 based on severity.",{"type":"pf2-h3","page":517,"name":"Fog","entries":["Fog imposes a circumstance penalty to visual {@skill Perception} checks, depending on the thickness; it causes creatures viewed through significant amounts of fog to be concealed; and it cuts off all visibility at half a mile or less—possibly much less. Conditions limiting visibility to about a mile are called mist, and those that do so to about 3 miles are called haze."],"source":"CRB"},{"type":"pf2-h3","page":517,"name":"Precipitation","entries":["Precipitation includes rain as well as colder snow, sleet, and hail. Wet precipitation douses flames, and frozen precipitation can create areas of snow or ice on the ground. Drizzle or light snowfall has little mechanical effect beyond limited visibility.",{"type":"pf2-h4","page":517,"name":"Visibility","entries":["Most forms of precipitation impose circumstance penalties on visual {@skill Perception} checks. Hail often is sparser but loud, instead penalizing auditory {@skill Perception} checks.","Especially heavy precipitation, such as a downpour of rain or heavy snow, might make creatures concealed if they're far away."],"source":"CRB"},{"type":"pf2-h4","page":517,"name":"Fatigue","entries":["Precipitation causes discomfort and fatigue. Anything heavier than drizzle or light snowfall reduces the time it takes for characters to become fatigued from overland travel to only 4 hours. Heavy precipitation can be dangerous in cold environments when characters go without protection. Soaked characters treat the temperature as one step colder (mild to severe, severe to extreme; see Temperature below)."],"source":"CRB"},{"type":"pf2-h4","page":517,"name":"Thunderstorms","entries":["High winds and heavy precipitation accompany many thunderstorms. There's also a very small chance that a character might be struck by lightning during a storm. A lightning strike usually deals moderate electricity damage, or major electricity damage in a severe thunderstorm."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":517,"name":"Temperature","entries":["Often, temperature doesn't impose enough of a mechanical effect to worry about beyond describing the clothing the characters need to wear to be comfortable.","Particularly hot and cold weather can make creatures fatigued more quickly during overland travel and can cause damage if harsh enough, as shown in Table 10–13 on page 518.","Appropriate cold-weather gear (such as the winter clothing) can negate the damage from severe cold or reduce the damage from extreme cold to that of particularly severe cold.",{"type":"data","tag":"table","name":"Temperature Effects","source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":517,"name":"Wind","entries":["Wind imposes a circumstance penalty on auditory {@skill Perception} checks depending on its strength. It also interferes with physical ranged attacks such as arrows, imposing a circumstance penalty to attack rolls involving such weapons, and potentially making attacks with them impossible in powerful windstorms. Wind snuffs out handheld flames; lanterns protect their flame from the wind, but particularly powerful winds can extinguish these as well.",{"type":"pf2-h4","page":517,"name":"Moving in Wind","entries":["Wind is difficult or {@quickref greater difficult terrain||3|terrain} when Flying.","Moving in wind of sufficient strength requires a Maneuver in Flight action, and fliers are blown away on a critical failure or if they don't succeed at a minimum of one such check each round.","Even on the ground, particularly strong winds might require a creature to succeed at an {@skill Athletics} check to move, knocking the creature back and prone on a critical failure. On such checks, Small creatures typically take a –1 circumstance penalty, and Tiny creatures typically take a –2 penalty."],"source":"CRB"}],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":518,"name":"Natural Disasters","entries":["Climate and environmental features can be a hindrance or long-term threat, but natural disasters represent acute danger, especially to those directly exposed to their fury.","The damage in the following sections uses the categories in {@table Environmental Damage||Table 10–11: Environmental Damage}.",{"type":"pf2-h3","page":518,"name":"Avalanches","entries":["Though the term avalanche specifically refers to a cascading flow of ice and snow down a mountain's slope, the same rules work for landslides, mudslides, and other similar disasters. Avalanches of wet snow usually travel up to 200 feet per round, though powdery snow can travel up to 10 times faster. Rockslides and mudslides are slower, sometimes even slow enough that a character might be able to outrun them.","An avalanche deals major or even massive bludgeoning damage to creatures and objects in its path. These victims are also buried under a significant mass. Creatures caught in an avalanche's path can attempt a Reflex save; if they succeed, they take only half the bludgeoning damage, and if they critically succeed, they also avoid being buried.",{"type":"pf2-h4","page":518,"name":"Burial","entries":["Buried creatures take minor bludgeoning damage each minute, and they potentially take minor cold damage if buried under an avalanche of snow. At the GM's discretion, creatures without a sufficient air pocket could also risk suffocation (page 478). A buried creature is restrained and usually can't free itself.","Allies or bystanders can attempt to dig out a buried creature. Each creature digging clears roughly a 5-footby- 5-foot square every 4 minutes with a successful {@skill Athletics} check (or every 2 minutes on a critical success).","Using shovels or other proper tools halves the time."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":518,"name":"Blizzards","entries":["Blizzards combine cold weather, heavy snow, and strong winds. They don't pose a single direct threat as other disasters do; instead, the combination of these factors all at once poses a substantial impediment to characters."],"source":"CRB"},{"type":"pf2-h3","page":518,"name":"Collapses","entries":["Collapses and cave-ins occur when caverns or buildings fall, dumping tons of rock or other material on those caught below or inside them. Creatures under the collapse take major or massive bludgeoning damage and become buried, just as with an avalanche. Fortunately, collapses don't spread unless they weaken the overall integrity of the area and lead to further collapses."],"source":"CRB"},{"type":"pf2-h3","page":518,"name":"Earthquakes","entries":["Earthquakes often cause other natural disasters in the form of avalanches, collapses, floods, and tsunamis, but they also present unique threats such as fissures, soil liquefaction, and tremors.",{"type":"pf2-h4","page":518,"name":"Fissures","entries":["Fissures and other ground ruptures can destabilize structures, but more directly they lead to creatures taking bludgeoning damage from falling into a fissure."],"source":"CRB"},{"type":"pf2-h4","page":518,"name":"Soil Liquefaction","entries":["Liquefaction occurs when granular particles shake to the point where they temporarily lose their solid form and act as liquids. When this happens to soil, it can cause creatures and even whole buildings to sink into the ground. You can use the {@spell earthquake} spell for more specific rules, though that spell represents only one particular kind of localized quake."],"source":"CRB"},{"type":"pf2-h4","page":518,"name":"Tremors","entries":["Tremors knock creatures prone, causing them to fall or careen into other objects, which can deal bludgeoning damage appropriate to the severity of the quake."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":518,"name":"Floods","entries":["Though more gradual floods can damage structures and drown creatures, flash floods are similar to avalanches, except with a liquid mass instead of a solid one. Instead of burying creatures, a flash flood carries creatures and even massive objects away, buffeting the creatures and potentially drowning them. The drowning rules appear on page 478.",{"type":"data","tag":"table","name":"Temperature Effects","source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":519,"name":"Sandstorms","entries":["Mild sandstorms and dust storms don't present much more danger than a windy rainstorm, but they can cause damage to a creature's lungs and spread diseases across long distances. Heavy sandstorms deal minor slashing damage each round to those exposed to the sand, force creatures to hold their breath to avoid suffocation, or both."],"source":"CRB"},{"type":"pf2-h3","page":519,"name":"Tornadoes","entries":["In a tornado's path, wind conditions impose severe circumstance penalties, but creatures that would normally be blown away are instead picked up in the tornado's funnel, where they take massive bludgeoning damage from flying debris as they rise through the cone until they are eventually expelled (taking bludgeoning damage from falling).","Tornadoes usually travel around 300 feet per round (roughly 30 miles per hour). They normally travel a few miles before dissipating. Some tornadoes are stationary or travel much faster."],"source":"CRB"},{"type":"pf2-h3","page":519,"name":"Tsunamis","entries":["Tsunamis present many of the same dangers as flash floods but are much larger and more destructive. Tsunami waves can reach 100 feet or more in height, wrecking buildings and creatures alike with massive bludgeoning damage from both the wave itself and debris pulled up along its path of destruction."],"source":"CRB"},{"type":"pf2-h3","page":519,"name":"Volcanic Eruptions","entries":["Volcanic eruptions can contain any combination of ash, lava bombs, lava flows, pyroclastic flows, and vents.",{"type":"pf2-h4","page":519,"name":"Ash","entries":["Ash from volcanic eruptions is hot enough to cause minor fire damage each minute. It limits visibility like a thick fog and can make air unbreathable, requiring characters to hold their breath or suffocate (page 478).","Ash clouds generate ash lightning strikes, which typically deal moderate electricity damage but are very unlikely to hit an individual creature. Ash buildup on the ground creates areas of uneven ground, {@quickref difficult terrain||3|terrain}, or {@quickref greater difficult terrain||3|terrain}, and ash in the atmosphere can block the sun for weeks or even months, leading to colder temperatures and longer winters."],"source":"CRB"},{"type":"pf2-h4","page":519,"name":"Lava Bombs","entries":["Pressure can launch lava into the air that falls as lava bombs: masses of lava that solidify as they fly and shatter on impact, dealing at least moderate bludgeoning damage and moderate fire damage."],"source":"CRB"},{"type":"pf2-h4","page":519,"name":"Lava Flows","entries":["Lava flows are an iconic volcanic threat; they usually move between 5 and 60 feet per round over normal ground, so characters can often outrun them. However, flows can move up to 300 feet per round in a steep volcanic tube or channel. Lava emanates heat that deals minor fire damage even before it comes into contact with creatures, and immersion in lava deals massive fire damage each round."],"source":"CRB"},{"type":"pf2-h4","page":519,"name":"Pyroclastic Flows","entries":["Mixes of hot gases and rock debris, pyroclastic flows spread much faster than lava, sometimes more than 4,000 feet per round. While cooler than the hottest lava, pyroclastic flows are capable of overwhelming entire settlements. They work like avalanches but deal half of their damage as fire damage."],"source":"CRB"},{"type":"pf2-h4","page":519,"name":"Vents","entries":["Steam vents shoot from the ground, dealing moderate fire damage or more in a wide column. Acidic and poisonous gases released from beneath the surface can create wide areas of hazardous terrain that deals at least minor acid or poison damage."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":519,"name":"Wildfires","entries":["Wildfires travel mainly along a front moving in a single direction. In a forest, the front can advance up to 70 feet per round (7 miles per hour). They can move up to twice as fast across plains due to a lack of shade and the relatively low humidity. Embers from the fire, carried by winds and rising hot air, can scatter, forming spot fires as far as 10 miles away from the main wildfire. Wildfires present three main threats: flames, heat, and smoke.",{"type":"pf2-h4","page":519,"name":"Flames","entries":["Flames are hazardous terrain, usually dealing moderate damage and potentially setting a character on fire, dealing moderate persistent fire damage. The flames from a small fire are often less dangerous than the advancing heat from the front of a large fire."],"source":"CRB"},{"type":"pf2-h4","page":519,"name":"Heat","entries":["Wildfires increase the temperature in advance of the front, reaching nearly 1,500° F at the fire's arrival, as hot as some lava. This begins as minor fire damage every round at a reasonable distance from the front and increases to massive fire damage for someone within the wildfire."],"source":"CRB"},{"type":"pf2-h4","page":519,"name":"Smoke","entries":["Wind can carry smoke far in front of the wildfire itself. Smoke imposes a circumstance penalty to visual {@skill Perception} checks, depending on the thickness. It causes creatures viewed through significant amounts of smoke to be concealed, and it cuts off all visibility at half a mile or less. Near or within the wildfire, the combination of smoke and heated air require characters to hold their breath or suffocate (page 478)."],"source":"CRB"}],"source":"CRB"}],"source":"CRB"}],"data":{"quickref":5},"source":"CRB"},{"type":"section","page":520,"name":"Hazards","entries":[{"type":"pf2-h1-flavor","page":520,"entries":["{@i Dungeons are rife with devious traps meant to protect the treasures within. These range from mechanical devices that shoot darts or drop heavy blocks to magic runes that explode into bursts of flame. In addition to traps, adventurers may stumble into other types of hazards, including naturally occurring environmental hazards, mysterious hauntings, and more.}"],"source":"CRB"},{"type":"pf2-h2","page":520,"name":"Detecting a Hazard","entries":["Every hazard has a trigger of some kind that sets its dangers in motion. For traps, this could be a mechanism like a trip wire or a pressure plate, while for an environmental hazard or haunt, the trigger may simply be proximity. When characters approach a hazard, they have a chance of finding the trigger area or mechanism before triggering the hazard. They automatically receive a check to detect hazards unless the hazards require a minimum proficiency rank to do so.","During exploration, determine whether the party detects a hazard when the PCs first enter the general area in which it appears. If the hazard doesn't list a minimum proficiency rank, roll a secret Perception check against the hazard's {@skill Stealth} DC for each PC. For hazards with a minimum proficiency rank, roll only if someone is actively searching (using the Search activity while exploring or the {@action Seek} action in an encounter), and only if they have the listed proficiency rank or higher. Anyone who succeeds becomes aware of the hazard, and you can describe what they notice.","Magical hazards that don't have a minimum proficiency rank can be found using {@spell detect magic}, but this spell doesn't provide enough information to understand or disable the hazard—it only reveals the hazard's presence.","Determining a magical hazard's properties thoroughly enough to disable it requires either the use of more powerful magic or a successful skill check, likely using {@action Identify Magic} or {@action Recall Knowledge}. Magical hazards with a minimum proficiency rank cannot be found with {@spell detect magic} at all."],"source":"CRB"},{"type":"pf2-h2","page":520,"name":"Triggering a Hazard","entries":["If the group fails to detect a hazard and the hazard's trigger is a standard part of traveling (such as stepping on a floor plate or moving through a magical sensor while walking), the hazard's reaction occurs. Hazards that would be triggered only when someone directly manipulates the environment—by opening a door, for example—use their reactions only if a PC explicitly takes that action.",{"type":"pf2-h3","page":520,"name":"Reaction or Free Action","entries":["Most hazards have reactions that occur when they're triggered. For simple hazards, the reaction is the entirety of the hazard's effect. For complex hazards, the reaction may also cause the hazard to roll initiative, either starting a combat encounter or joining one already in progress, and the hazard continues to pose a threat over multiple rounds. Some hazards have a triggered free action instead of a reaction; for instance, quicksand can suck down multiple creatures per round."],"source":"CRB"},{"type":"pf2-h3","page":520,"name":"Routine","entries":["A complex hazard usually follows a set of preprogrammed actions called a routine. Once triggered, the hazard first performs its initial reaction; then, if the PCs are not yet in encounter mode, they should roll initiative. (If they're already in encounter mode, their initiative remains the same.) The hazard might tell you to roll initiative for it—in this case, the hazard rolls initiative using its {@skill Stealth} modifier.","After this happens, the hazard follows its routine each round on its initiative. The number of actions a hazard can take each round, as well as what they can be used for, depend on the hazard."],"source":"CRB"},{"type":"pf2-brown-box","page":520,"name":"MONSTERS AND HAZARDS","entries":["The statistics for NPCs and monsters usually don't list their proficiency ranks. Most of the time, they don't need to deal with detecting or disabling hazards the way PCs do, so you don't need this information. However, if a PC resets a trap in a monster's path or plans to lure a monster into a hazard, you can improvise this information.","For Perception, a monster is usually an expert at 3rd or 4th level, a master at 8th or 9th level, and legendary at 16th or 17th level. If the monster has {@skill Thievery} listed in its skills, it has the highest proficiency possible for its level (trained at 1st, expert at 3rd, master at 7th, and legendary at 15th); otherwise, it's untrained. Of course, an individual monster might deviate from these guidelines, especially if it's mindless or not very perceptive."],"source":"CRB"},{"type":"pf2-h3","page":520,"name":"Resetting a Hazard","entries":["Some hazards can be reset, allowing them to be triggered again. This can occur automatically, as for quicksand, whose surface settles after 24 hours, or manually, like a hidden pit, whose trapdoor must be closed for the pit to become hidden again."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":521,"name":"Disabling a Hazard","entries":["The most versatile method for deactivating traps is the Disable a Device action of the {@skill Thievery} skill, though most mechanical traps can also simply be smashed, and magical traps can usually be counteracted. Environmental hazards often can be overcome with {@skill Nature} or {@skill Survival}, and haunts can often be overcome with {@skill Occultism} or {@skill Religion}. The specific skill and DC required to disable a hazard are listed in the hazard's stat block. Like using Disable a Device, using these skills to disable a trap is a 2-action activity with the same degrees of success, though the activity might have different traits determined by the GM. As with detecting a hazard, disabling a hazard might require a character to have a certain proficiency rank in the listed skill.","A character must first detect a hazard (or have it pointed out to them) to try to deactivate it. They can attempt to deactivate a hazard whether or not it has already been triggered, though some hazards no longer pose a danger once their reactions have occurred, especially if there is no way for them to be reset.","For most hazards, a successful check for the listed skill against the DC in the stat block disables the hazard without triggering it. Any other means of deactivating the hazard are included in the hazard's stat block, as are any additional steps required to properly deactivate it.","A critical failure on any roll to disable a hazard triggers it, including a critical failure on a roll to counteract a magic hazard.","Some hazards require multiple successful checks to deactivate, typically because they have a particularly complicated component or have several discrete portions. For hazards with a complex component, a critical success on a check to disable the hazard counts as two successes on a single component.",{"type":"pf2-h3","page":521,"name":"Damaging a Hazard","entries":["Rather than trying to carefully disable a hazard, a character might just smash it. Damaging a mechanical trap or another physical hazard works like damaging objects: the hazard reduces the damage it takes by its Hardness. In most cases, hitting the hazard also triggers it, as explained in Attacking a Hazard below. If a hazard's Hit Points are reduced to its Broken Threshold (BT) or lower, the hazard becomes broken and can't be activated, though it can still be repaired. If it's reduced to 0 HP, it's destroyed and can't be repaired. (See page 272 in Chapter 6 for more information on damaging objects.)","Hazards' AC, applicable saving throw modifiers, Hardness, HP, and BT are listed in their stat blocks. A hazard that doesn't list one of these statistics can't be affected by anything targeting that statistic. For example, a hazard that has HP but no BT can't be broken, but can still be destroyed. Hazards are immune to anything an object is immune to unless specifically noted otherwise, and they can't be targeted by anything that can't target objects. Some hazards may have additional immunities, as well as resistances or weaknesses.",{"type":"pf2-h4","page":521,"name":"Attacking a Hazard","entries":["If someone hits a hazard—especially if it's a mechanical trap—they usually trigger it, though you might determine otherwise in some cases. An attack that breaks the hazard might prevent it from triggering, depending on the circumstances. If the hazard has multiple parts, breaking one part might still trigger the trap. For example, if a trap has a trip wire in one location and launches an attack from another location, severing the trip wire could still trigger the attack. Destroying a trap in one blow almost never triggers it. These rules also apply to most damaging spells or other effects in addition to attacks."],"source":"CRB"},{"type":"pf2-h4","page":521,"name":"Repairing a Hazard","entries":["You might allow a character to repair a damaged hazard to restore its functionality. You determine the specifics of this, since it can vary by trap. The Repair action might be insufficient if fixing the trap requires gathering scattered components or the like. If the item has a Reset entry, the character needs to do whatever is listed there, in addition to repairing the damage."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":521,"name":"Counteracting a Magical Hazard","entries":["Some magical hazards can be counteracted using {@spell dispel magic} and the counteracting rules found on page 458. These hazards' spell levels and counteract DCs are listed in their stat block. Counteracting a hazard otherwise works like using a skill check to disable the hazard."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":521,"name":"Hazard Experience","entries":["Characters gain Experience Points for overcoming a hazard, whether they disable it, avoid it, or simply endure its attacks. If they trigger the same hazard later on, they don't gain XP for the hazard again. The XP values for hazards of different levels also appear on page 508, but are repeated here for convenience. The XP for a complex hazard is equal to the XP for a monster of the same level, and the XP for a simple hazard is one-fifth of that. Hazards of a lower level than the party's level –4 are trivial and award no XP.",{"type":"data","tag":"table","name":"Hazard XP","source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":522,"name":"Hazard Format","entries":["Hazards are presented in a stat block format similar to those used for monsters. A few notes regarding the format follow the sample stat block.",{"type":"data","tag":"generic","data":{"source":"CRB","page":522,"name":"Hazard Name","category":"Hazard","level":" [Level]","traits":["traits"],"sections":[[[{"name":"Stealth","entry":"This entry lists the {@skill Stealth} modifier for a complex\nhazard's initiative or the {@skill Stealth} DC to detect a simple\nhazard, followed by the minimum proficiency rank to detect\nthe hazard (if any) in parentheses. If {@spell detect magic} can be\nused to detect the hazard, this information is located here\nas well."}],[{"name":"Description","entry":"This explains what the hazard looks like and might\ninclude special rules."}]],[[{"name":"Disable","entry":"The DC of any skill checks required to disable the\nhazard are here; if the hazard can be counteracted, its spell\nlevel and counteract DC are listed in parentheses."}],[{"name":"AC","entry":"the hazard's AC"},{"name":"Saving Throws","entry":"the hazard's saves. Usually\nonly haunts are subject to Will saves."}],[{"name":"Hardness","entry":"the hazard's Hardness"},{"name":"HP","entry":"the hazard's Hit Points,\nwith its Broken Threshold in parentheses"},{"name":"Immunities","entry":"the\nhazard's immunities"},{"name":"Weaknesses","entry":"the hazard's weaknesses,\nif any"},{"name":"Resistances","entry":"the hazard's resistances, if any"}],[{"name":"Action Type","entry":"{@as r} or {@as f} This is the reaction or free action the\nhazard uses"},{"name":"Trigger","entry":"The trigger that sets off the hazard\nappears here"},{"name":"Effect","entry":"For a simple hazard, this effect is often\nall the hazard does. For a complex hazard, this might also\ncause the hazard to roll initiative.\nRoutine This section describes what a"}],[{"name":"Routine","entry":"This section describes what a complex hazard does on\neach of its turns during an encounter; the number in parentheses\nafter the word \"Routine\" indicates how many actions the hazard\ncan use each turn. Simple hazards don't have this entry."}],[{"name":"Action","entry":"Any action the hazard can use appears here. Typically,\nthis is a melee or ranged attack."}]],[[{"name":"Reset","entry":"If the hazard can be reset, that information is here."}]]]}},{"type":"pf2-h3","page":522,"name":"Level","entries":["The hazard's level indicates what level of party it's a good challenge for. If the hazard involves a toxin, curse, or other non-spell feature, that feature's level is the hazard's level."],"source":"CRB"},{"type":"pf2-h3","page":522,"name":"Traits","entries":["The most notable hazard traits are trap (constructed to harm intruders), environmental (natural hazards), and haunt (spectral phenomena). Traps have a trait to indicate whether they're magical or mechanical. Hazards that have initiative and a routine have the complex trait."],"source":"CRB"},{"type":"pf2-h3","page":522,"name":"Stealth or Stealth DC","entries":["Complex hazards list their {@skill Stealth} modifier, which they use for initiative, instead of their {@skill Stealth} DC. If you need the DC, it's equal to this modifier + 10."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":526,"name":"Hazards","entries":["{@note To view all Hazards, please view the {@filter Hazards page.|hazards||source=CRB}}",{"type":"pf2-brown-box","page":528,"name":"UPGRADED SUMMONING RUNES","entries":["You can make a summoning rune of nearly any level. It summons a creature of a level equal to the trap's level.","Use {@table DCs by Level||Table 10–5: DCs by Level} to determine the {@skill Thievery} DC and spell DC, using the trap's level and applying a {@table DC Adjustments||hard adjustment} (+2). The {@skill Stealth} modifier for the trap is equal to this number –10. Stronger summoning runes usually require expert proficiency or better in {@skill Perception} to find, and they might require a higher proficiency rank in {@skill Thievery} to disable."],"source":"CRB"}],"source":"CRB"}],"data":{"quickref":5},"source":"CRB"},{"type":"section","page":483,"name":"Planning a Campaign","entries":["A Pathfinder game is typically structured as a campaign—a serialized story that focuses on a single party of characters.","A campaign is subdivided into multiple adventures, smaller stories that involve exploration and interaction with nonplayer characters. A single adventure represents a complete story that might be connected to the larger arc of a campaign. Playing an adventure spans one or more game sessions—gatherings where the group plays a part of the adventure over the course of several hours.","A campaign provides the overall structure for your Pathfinder game. As you prepare for your campaign, you'll establish its scope and themes, which you'll then reinforce in the adventures and scenes that take place within it.",{"type":"pf2-brown-box","page":483,"name":"COLLABORATION DURING PLAY","entries":["As Game Master, you have the final say on how the world and rules function, and how nonplayer characters act. This rule's purpose is to make the game run smoothly, with one guiding hand ensuring consistency. It's not intended to make one player into a dictator over the rest of the group. Collaboration is vital to roleplaying games!","How you implement collaboration in a game depends on what your players are interested in. In some groups, players enjoy adding details to the world and to nonplayer characters. In others, players want to feel like the world is outside their control, and the only decisions they get to make are those made by their own characters. Both are fun and acceptable ways to play.","You are encouraged to collect input from your players before you start, asking what storytelling genres they'd like to emphasize, which areas of the world they want to play in, the types of enemies they'd like to face, or which published adventure they want to play. A good campaign includes some back-and-forth at the beginning as the players figure out what characters they want to play and you figure out what sort of adventure to run. The results can range from building an adventure entirely to fit the characters to choosing a specific published adventure, having the players make their characters, and then just adapting the beginning of that adventure so that all the player characters have a reason to be involved.","As you play, opportunities to collaborate will occur again and again. When players throw out suggestions or come up with specific theories about the events of the campaign, they're telling you what they'd like to see in the game. Try to find ways to incorporate their suggestions, but with enough of a twist that each still includes something unexpected."],"source":"CRB"},{"type":"pf2-h3","page":483,"name":"Campaign Length","entries":["The length of a campaign can range from a few sessions to many years. Two main factors determine campaign length: how much time you need to complete the story, and how much time players want to devote to the game.","A single session, or a \"one-shot,\" is great if your group is trying out Pathfinder or wants to play a specific short adventure. This requires a smaller time commitment but requires the GM to present the events of the game in a way that is immediately engaging, since there's less opportunity for the players to become invested in the story or setting.","If you want to play through a longer campaign, you'll need to add some story elements that speak directly to the characters in your game rather than just to the events of the adventure. In other words, the characters should have individual goals in addition to the group's overall goals.","You can estimate how long a campaign will take by looking at the amount of time you actually have to play, or the number of character levels you intend the characters to advance. It typically takes three to four sessions for a group to level up. Since you'll probably cancel sessions on occasion, playing once a week for a year results in roughly a 14-level campaign, playing every 2 weeks for a year gives you an 8-level campaign, and playing monthly allows for a 5-level campaign. If you play only once a month, you might consider holding longer sessions and using fast advancement (page 509).","It's entirely okay to have a campaign with an indefinite length. Many groups play through one adventure and then decide to take on another. If you run an indefinite campaign, however, avoid ongoing plots that you can't satisfactorily end if the campaign comes to a close after the next adventure. If you introduce an overwhelmingly powerful villain who's crucial to the story but can't be stopped until the player characters are 15th level, ending the campaign at 8th level will feel anticlimactic.","It pays to be conservative when estimating your campaign length and scope. It's always tempting to run a 20-level epic campaign with complex, interwoven plots, but such games can fall apart long before the end if your group can play only once a month and the players have other responsibilities.",{"type":"pf2-h4","name":"Expected Duration","entries":["Not every campaign ends at the same point. Some campaigns go all the way to 20th level, ending after the player characters attain the height of power and confront the greatest threats any mortal could face. Others end at a lower level, after the group takes down a major villain or solves a crucial problem. And still other campaigns end when players become unable to attend or decide its a good time to stop playing.","You should have an end point in mind when you start a campaign. Still, you have to be flexible, since you're telling the story alongside other players, and your initial expectations for the campaign may be proven incorrect. When you think you're heading toward a satisfying conclusion, it's useful to check in with the other players. You might say, \"I think we have about two sessions left. Does that work for everyone? Is there any unfinished business you want to take care of?\" This lets you gauge whether your assumptions match up with the rest of the group—and make any necessary adjustments."]}],"source":"CRB"},{"type":"pf2-h3","page":484,"name":"Themes","entries":["The themes you choose for your campaign are what distinguish it from other campaigns. They include the major dramatic questions of your story and the repeated use of certain environments or creatures, and they can also include embracing a genre beyond traditional high fantasy. The themes you choose for your campaign also suggest storyline elements you might use.","A storyline's themes usually relate to the backstories, motivations, and flaws of the player characters and villains. For example, if you've chosen revenge as one of the themes of your game, you might introduce a villain whose quest for revenge tears his life apart and causes tragic harm to those around him. If one of the player characters is a chaotic good believer in liberty and freedom, you might engage that character by pitting the group against slavers. Or, you might choose a theme of love, leading to nonplayer characters involved in doomed romances, seeking to regain lovers they have lost, or courting the player characters.","Using similar locations and related creatures helps you form connections between disparate adventures. The players feel like their characters are becoming experts negotiating with giants, navigating seaways, battling devils, exploring the planes, or dealing with whatever the recurring elements are. For example, you might have the players explore a frozen tundra early on, then later travel to an icy plane filled with more difficult challenges that can be overcome using knowledge they've previously developed. Likewise, hobgoblin soldiers may be tough enemies for your group at low levels, but as the PCs attain higher levels and the hobgoblins become mere minions of another creature, the players feel a sense of progression.","Pathfinder is a fantasy adventure game, but you can shift your campaign to include elements of other fictional genres. You might want to infuse your game a with a sense of horror, reduce the amount of magic and use slow advancement (page 509) to make it a tale of sword and sorcery, or turn magic into technology for a steampunk setting."],"source":"CRB"},{"type":"pf2-h3","page":485,"name":"A Welcoming Environment","entries":["The role of Game Master comes with the responsibility of ensuring you and the rest of the players have a rewarding, fun time during the game. Games can deal with difficult subjects and have stressful moments, but fundamentally Pathfinder is a leisure activity. It can remain so only if the players follow the social contract and respect one another.","Players with physical or mental disabilities might find themselves more challenged than abled players. Work with your players to ensure they have the resources and support they need. Additionally, be on the lookout for behavior that's inappropriate, whether intentional or inadvertent, and pay careful attention to players' body language during the game. If you notice a player becoming uncomfortable, you are empowered to pause the game, take it in a new direction, privately check in with your players during or after the session, or take any other action you think is appropriate.","If a player tells you they're uncomfortable with something in the game, whether it's content you've presented as the GM or another player's or PC's actions, listen carefully to that player and take steps to ensure they can once again have fun during your game. If you're preparing prewritten material and you find a character or a situation inappropriate, you are fully empowered to change any details as you see fit. You also have the authority (and responsibility) to ask players to change their behavior—or even leave the table—if what they're doing is unacceptable or makes others feel uncomfortable. It's never appropriate to make the person who is uncomfortable responsible for resolving a problem. It's okay if mistakes happen. What's important is how you respond and move forward.","Gaming is for everyone. Never let those acting in bad faith undermine your game or exclude other players. Your efforts are part of the long-term process of making games and game culture welcoming to all. Working together, we can build a community where players of all identities and experiences feel safe.",{"type":"pf2-brown-box","page":485,"name":"TOOLS FOR RESPONSIBLE PLAY","entries":["Consent and comfort are important topics for roleplaying games, and many designers have created techniques to help facilitate responsible play. Some methods you can use are lines and veils, developed by Ron Edwards, and the X-Card, developed by John Stavropoulos.","Lines and Veils The terms \"line\" and \"veil\" can give your table a common vocabulary for the concepts described in this section. A line is a hard limit to the actions players might take, such as \"We're drawing a line at torture.\" The group agrees not to cross a line and omits that content from the game.","A veil indicates something that shouldn't be described in detail. The scene fades to black for a veil, or the group moves on to discuss a different topic, though whatever the veil is drawn across still happens. For example, you might say, \"We'll draw a veil across the scene as those characters head into the bedroom.\" You might come up with some lines and veils in advance, but then find more as play continues.","The X-Card Draw an \"X\" on a card, and you've got an X-Card. Place it on the table at the start of the session and describe its use to the players: any player can silently reject content they find upsetting by tapping the X-Card; whoever's speaking then rewinds a bit and continues on, excising the objectionable content. As with setting the basic guidelines for your campaign, there are no questions asked, no judgment, and no argument when someone invokes the X-Card. You can, however, ask for clarification if you need it, such as \"How far back should I rewind this?\" Some groups instead make an X with their hands, say \"Let's X that out,\" or use some other method. Either way, follow up with the player privately, after the game, to see if the guidelines need to be revised.","You can find more details at {@b {@link tinyurl.com/x-card-rpg|https://tinyurl.com/x-card-rpg}}."],"source":"CRB"},{"type":"pf2-h4","page":486,"name":"Objectionable Content","entries":["Before a campaign begins, check in with your players—as a group or individually—to find out what types of content they want to allow in the game, and which topics they would prefer to avoid. Because the story unfolds in real time, it's essential that you discuss these topics before the game starts. These discussions are intended to keep players safe, and so it's not okay to ask why someone wants a type of content banned. If someone wants it banned, ban it—no questions asked.","It can help to start with a rating, like those used for movies or video games. Pathfinder games often include violence and cruelty. What's the limit on how graphically these concepts should be described? Can players swear at the table? Does anyone have phobias they don't want to appear in the game, such as spiders or body horror?","After you figure out the limits on objectionable content, you have four important tasks:",{"type":"list","items":["Clearly convey these limits to the other players.","Ensure you and the players abide by the boundaries.","Act immediately if someone becomes uncomfortable about content during a session, even if it wasn't already banned in a prior discussion. Once the issue is resolved, move on.","Resolve the issue if any player deliberately pushes these boundaries, tries to find loopholes, tries to renegotiate the limits, or belittles people for having a different tolerance to objectionable content."]}],"source":"CRB"},{"type":"pf2-h4","page":486,"name":"The Pathfinder Baseline","entries":["You might find that your players don't have much to say on the topic of objectionable content, and just assume that general societal mores will keep the most uncomfortable topics out of the game. That's not always enough, as that approach relies on shared assumptions that aren't always accurate. The following is a set of basic assumptions that works for many groups, which you can modify to fit your preferences and those of the other players.",{"type":"list","items":["Bloodshed, injuries, and even dismemberment might be described. However, excessive descriptions of gore and cruelty should be avoided.","Romantic and sexual relationships can happen in the game, but players should avoid being overly suggestive. Sex always happens \"off-screen.\" Because attempts at initiating a relationship between player characters can be uncomfortably similar to one player hitting on another, this should generally be avoided (and is entirely inappropriate when playing with strangers).","Avoid excessively gross or scatological descriptions."]},"The following acts should never be performed by player characters:",{"type":"list","items":["Torture","Rape, nonconsensual sexual contact, or sexual threats","Harm to children, including sexual abuse","Owning slaves or profiting from the slave trade","Reprehensible uses of mind-control magic"]},"Villains might engage in such acts, but they won't happen \"on-screen\" or won't be described in detail. Many groups choose to not have villains engage in these activities at all, keeping these reprehensible acts out of mind entirely."],"source":"CRB"},{"type":"pf2-h4","name":"Social Splash Damage","page":486,"entries":["As important as it is to take care of yourself and the other players in your game, be mindful of your group's impact on the other people around you. If you're playing in a space that's not your own, respect your hosts. If you're playing in public, consider the comfort of the people around you, not just what your group is comfortable with. It's easy to get caught up in a game, as we get sucked into the microcosm of an imagined world, but don't ignore the real world around you. Be aware when you're making too much noise, leaving a mess, alarming passersby with graphic descriptions of violence, or even just giving the cold shoulder to curious spectators witnessing RPG play for the first time."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":486,"name":"Character Creation","entries":["At the outset of a new campaign, the players will create new player characters. Part of that process involves you introducing what the campaign will be about and what types of characters are most appropriate. Work with the players to determine which rule options are available. The safest options are the common choices from the {@book Pathfinder Core Rulebook|CRB}. If players want to use common options from other books or uncommon or rare options, through play, review those options to see if any of them conflict with the style of campaign you have in mind or might present strange surprises down the road. It's usually best to allow new options, but there's no obligation to do so. Be as open as you're comfortable with."],"source":"CRB"}],"data":{"quickref":5},"source":"CRB"},{"type":"section","page":486,"name":"Preparing an Adventure","entries":["An adventure is a self-contained collection of story elements, characters, and settings that become the basis for the story you and the other players tell. Think of the adventure as an outline for your own story. You'll have major beats you want to include, some consistent characters, and themes you want to convey, but all sorts of things can change during the process of turning the outline into a completed story.","You might use a published adventure from Paizo or another company, or you might construct your own adventure as you prepare for your game sessions.",{"type":"pf2-h3","page":486,"name":"Published Adventures","entries":["Prewritten adventures include background information and nonplayer characters needed for the story, plus all the locations, maps, and monster groups necessary for both exploration and encounters. Prewritten adventures can speed up your preparation, since you can simply read the relevant sections of the adventure before a game, and you don't have to create everything from scratch. A published adventure already includes the expected amount of encounters and treasure, and you can find adventures built for different character levels to match your group. Reading a published adventure or running one as your first game can help you see how adventures are structured, which makes it easier to write one later if you choose.","Though a published adventure is prewritten, it's not set in stone. Changing the details of an adventure to suit your group isn't just acceptable, it's preferred! Use the backstories and predilections of the player characters to inform how you change the adventure. This can mean altering adversaries so they're linked to the player characters, changing the setting to a place some of the player characters are from, or excising particular scenes if you know they won't appeal to your players."],"source":"CRB"},{"type":"pf2-h3","page":487,"name":"Creating Adventures","entries":["Building your own adventure is much more challenging than using a published one, but it lets you express yourself, be even more creative, and tailor the game directly to the players and their characters. Later sections in this chapter include guidelines for building and running encounters, placing treasure, and setting appropriately difficult challenges, all to help you construct your own adventures.","Adventure plotting can start at many different points. You might begin with a particular antagonist, then construct an adventure that fits that villain's theme and leads the group to them. Alternatively, you could start with an interesting location for exploration, then populate it with adversaries and challenges appropriate to the setting.",{"type":"pf2-h4","page":487,"name":"Locations","entries":["Memorable settings that include mysterious and fantastical locations for players to visit can elicit the players' curiosity.","Exploring each location should be a treat in itself, not just a chore the players must complete to get from one fight to the next. As you create a locale, picture it in your mind's eye and write down minor details you can include as you narrate the game. Describing decorations, natural landmarks, wildlife, peculiar smells, and even temperature changes make a place feel more real.","Beyond monsters and loot, your locations can include environment-based challenges, from environmental conditions like blizzards to puzzles, traps, or other hazards.","These challenges should suit your adventure's location: walls of brambles in a castle ruin overrun with vegetation, pools of acid in a cursed swamp, or magical traps in the tomb of a paranoid wizard. Rules for environments appear on page 512, and those for hazards start on page 520."],"source":"CRB"},{"type":"pf2-h4","page":487,"name":"Encounters","entries":["A robust set of encounters forms the backbone of your adventure. Encounters often feature combat with other creatures, but they can also include hazards, or you might create social encounters in which characters duel only with words. The rules for building encounters appropriate to your group's level begin below.","Some adventures have a clear and direct progression, with encounters occurring at specific times or in a specific order. Others, such as a dungeon filled with interconnected rooms the group can investigate in any order, are nonlinear, and the group can face encounters in any order—or even avoid them entirely. Most adventures are somewhere in between, with some keystone encounters you know the characters will need to contend with, but others that are optional."],"source":"CRB"},{"type":"pf2-h4","page":487,"name":"Treasure","entries":["Your adventure should give out an amount of treasure that's appropriate to the characters' level. The guidelines for assigning treasure are on page 508. You can dole out treasure in all kinds of ways. Treasure could be items carried by an adversary, rewards from a patron for completing a mission, or a classic pile of coins and items inside a wooden chest guarded by a monster. It's best to spread treasure throughout an adventure rather than stockpiled in a single hoard. This gives the players incremental rewards, letting their characters advance in frequent small steps rather than giant leaps separated by many hours of play."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-brown-box","page":488,"name":"USING RARITY AND ACCESS","entries":["The rarity system has two purposes: to convey how common or rare certain spells, creatures, or items are in the game world, and to give you an easy tool to control the complexity of your game. Uncommon and rare options aren't more powerful than other options of their level, but they introduce complications for certain types of stories, or are less common in the world. For instance, it might be more challenging to run a mystery adventure when a player can cast an uncommon spell such as {@spell detect evil}.","At the start of the campaign, communicate your preferred expectations on rarity to the players. Unless you decide otherwise, the players can choose from any common options they qualify for, plus any uncommon options granted by their character choices—primarily their ancestry and class. By default, a character who tries hard enough might eventually find an uncommon option, whereas a rare option is always a special reward.","Beyond that baseline, you can grant access as freely as you want; some GMs open up all uncommon and rare options universally. If you're not sure, just look over any uncommon or rare elements before you include them as rewards or otherwise allow a player to acquire them.",{"type":"pf2-title","name":"Rewards"},"You can use uncommon and rare rules elements to reward characters. These still have the same value and approximate power as any other treasure of the same Price, but they're just a bit more special because they hail from distant lands or have unusual or surprising abilities.","Items are the most likely candidates for uncommon or rare rewards, but an NPC might teach an uncommon or rare spell to a PC in gratitude or to help the party prepare for a certain adversary. You can also improvise extra benefits based around uncommon or rare items. For instance, if a PC gains a rare plant with occult uses, you might also decide that the PC should temporarily get more money if they use it while Earning Income using Herbalism Lore, because it enables them to produce novel poultices.",{"type":"pf2-title","name":"Different Locations"},"The rarities in this book assume you're playing in the Inner Sea region of Golarion, where most Pathfinder games are set. These rarities are also suitable for most western medieval fantasy games. However, you might want to alter the rarities for a campaign set in another location on Golarion (detailed in Chapter 8), to emphasize a non-human culture, or to play in a fantasy setting with different roots, like a wuxia game based on Chinese culture. These changes most often affect basic items. If you start your campaign in a dwarven stronghold, for example, you might make all the weapons with the dwarf trait common. You should feel free to adjust rarities to suit your campaign's theme, but if you do, you should share your changes with your group."],"source":"CRB"},{"type":"pf2-h3","page":488,"name":"Building Encounters","entries":["The most common type of encounter is a combat encounter, where the PCs face other creatures. Combat encounters are strictly governed by rules; the guidelines that follow will help you build combat encounters that pose appropriate challenges for your group. Building hazard encounters works the same way. Social encounters are more free-form, and are up to you as the GM to design.","To build a combat encounter, first decide how the encounter fits in the adventure as a whole. Then, estimate how much of a threat you want the encounter to pose, using one of five categories below.","{@b Trivial-threat} encounters are so easy that the characters have essentially no chance of losing; they shouldn't even need to spend significant resources unless they are particularly wasteful. These encounters work best as warm-ups, palate cleansers, or reminders of how awesome the characters are. A trivial-threat encounter can still be fun to play, so don't ignore them just because of the lack of threat.","{@b Low-threat} encounters present a veneer of difficulty and typically use some of the party's resources. However, it would be rare or the result of very poor tactics for the entire party to be seriously threatened.","{@b Moderate-threat} encounters are a serious challenge to the characters, though unlikely to overpower them completely. Characters usually need to use sound tactics and manage their resources wisely to come out of a moderate-threat encounter ready to continue on and face a harder challenge without resting.","{@b Severe-threat} encounters are the hardest encounters most groups of characters can consistently defeat. These encounters are most appropriate for important moments in your story, such as confronting a final boss. Bad luck, poor tactics, or a lack of resources due to prior encounters can easily turn a severe-threat encounter against the characters, and a wise group keeps the option to disengage open.","{@b Extreme-threat} encounters are so dangerous that they are likely to be an even match for the characters, particularly if the characters are low on resources. This makes them too challenging for most uses. An extremethreat encounter might be appropriate for a fully rested group of characters that can go all-out, for the climactic encounter at the end of an entire campaign, or for a group of veteran players using advanced tactics and teamwork.",{"type":"pf2-h4","page":488,"name":"XP Budget","entries":["Once you've selected a threat level, it's time to build the encounter. You have an XP budget based on the threat, and each creature costs some of that budget. Start with the monsters or NPCs that are most important to the encounter, then decide how you want to use the rest of your XP budget. Many encounters won't match the XP budget exactly, but they should come close. The XP budget is based on a group of four characters. If your group is larger or smaller, see Different Party Sizes below."],"source":"CRB"},{"type":"pf2-h4","page":488,"name":"Choosing Creatures","entries":["In all but the most unusual circumstances, you'll select creatures for your encounter that range from 4 levels lower than the PCs' level to 4 levels higher (see {@table Creature XP and Role||Table 10–2: Creature XP and Role}). Each creature has a part to play in your encounter, from a lowly lackey to a boss so mighty it could defeat the entire party single-handedly.","Each creature costs some of the XP from your XP budget for the encounter, based on its level compared to the levels of the characters in your party. For instance, if the PCs are 5th level, a 2nd-level creature is a \"party level –3\" creature, a lackey appropriate for a lowto- moderate-threat encounter, and it costs 15 XP in an encounter's XP budget. Party level is explained in detail on page 508."],"source":"CRB"},{"type":"pf2-h4","page":488,"name":"Different Party Sizes","entries":["For each additional character in the party beyond the fourth, increase your XP budget by the amount shown in the Character Adjustment value for your encounter in {@table Encounter Budget||Table 10–1: Encounter Budget}. If you have fewer than four characters, use the same process in reverse: for each missing character, remove that amount of XP from your XP budget. Note that if you adjust your XP budget to account for party size, the XP awards for the encounter don't change—you'll always award the amount of XP listed for a group of four characters.","It's best to use the XP increase from more characters to add more enemies or hazards, and the XP decrease from fewer characters to subtract enemies and hazards, rather than making one enemy tougher or weaker. Encounters are typically more satisfying if the number of enemy creatures is fairly close to the number of player characters."],"source":"CRB"},{"type":"data","tag":"table","source":"CRB","name":"Encounter Budget"},{"type":"data","tag":"table","source":"CRB","name":"Creature XP and Role"}],"data":{"quickrefIndex":true},"source":"CRB"}],"data":{"quickref":5},"source":"CRB"},{"type":"section","page":507,"name":"Rewards","entries":[{"type":"pf2-h1-flavor","page":507,"entries":["{@i In Pathfinder, player characters can receive three kinds of rewards for their heroic deeds: Hero Points, which they can use to get out of sticky situations; Experience Points, which they'll use to level up; and treasure, including powerful magic items.}"],"source":"CRB"},{"type":"pf2-h2","page":507,"name":"Hero Points","entries":["Unlike Experience Points and treasure, which stay with a character, Hero Points are granted and used on a per-session basis. At the start of a game session, you give out 1 Hero Point to each player character. You can also give out more Hero Points during the game, typically after a heroic moment or accomplishment (see below). As noted on page 467, a player can spend 1 Hero Point for a reroll, or they can spend all their Hero Points to recover when near death.","In a typical game, you'll hand out about 1 Hero Point during each hour of play after the first (for example, 3 extra points in a 4-hour session). If you want a more overthetop game, or if your group is up against incredible odds and showing immense bravery, you might give them out at a faster rate, like 1 every 30 minutes (6 over a 4-hour session). Try to ensure each PC has opportunities to earn Hero Points, and avoid granting all of the Hero Points to a single character.","Brave last stands, protecting innocents, and using a smart strategy or spell to save the day could all earn a character a Hero Point. Look for those moments when everybody at the table celebrates or sits back in awe of a character's accomplishments; that's your cue to issue that character a Hero Point.","The party could also gain Hero Points for their accomplishments throughout the game. For a moderate or major accomplishment, consider giving out a Hero Point as well. This point typically goes to a PC who was instrumental in attaining that accomplishment."],"source":"CRB"},{"type":"pf2-h2","page":507,"name":"Experience Points","entries":["As characters adventure, they earn Experience Points (XP).","These awards come from achieving goals, completing social encounters, exploring new places, fighting monsters, overcoming hazards, and other sorts of deeds. You have a great deal of control over when the characters gain XP, though the following guidelines are what you're expected to give out in a standard campaign.","Normally, when a player character reaches 1,000 XP or more, they level up, reduce their XP by 1,000, and start progressing toward the next level. Other means of advancement are described in the Advancement Speeds sidebar on page 509.",{"type":"pf2-h3","page":507,"name":"XP Awards","entries":["Experience Points are awarded for encounters, exploration, and progress in an adventure. When the PCs face direct opposition, such as a fight or a social conflict, the XP earned is based on the level of the challenge the party overcame. Characters can also gain XP from exploration, such as finding secret areas, locating a hideout, enduring a dangerous environment, or mapping an entire dungeon.","Any XP awarded goes to all members of the group. For instance, if the party wins a battle worth 100 XP, they each get 100 XP, even if the party's rogue was off in a vault stealing treasure during the battle. But if the rogue collected a splendid and famous gemstone, which you've decided was a moderate accomplishment worth 30 XP, each member of the party gets 30 XP, too.",{"type":"pf2-h3","page":507,"name":"Adversaries and Hazards","entries":["Encounters with adversaries and hazards grant a set amount of XP. When the group overcomes an encounter with creatures or hazards, each character gains XP equal to the total XP of the creatures and hazards in the encounter (this excludes XP adjustments for different party sizes; see Party Size on page 508 for details).","Trivial encounters don't normally grant any XP, but you might decide to award the same XP as for a minor or moderate accomplishment for a trivial encounter that was important to the story, or for an encounter that became trivial because of the order in which the PCs encountered it in a nonlinear adventure."],"source":"CRB"},{"type":"pf2-h3","page":507,"name":"Accomplishments","entries":["Characters' actions that move the story forward—like securing a major alliance, establishing an organization, or causing an NPC to have a change of heart—are considered accomplishments and should be rewarded with XP. Their significance determines the size of the XP award. Determine whether the achievement was a minor, moderate, or major accomplishment, and refer to {@table XP Awards||Table 10–8: XP Awards} to award an appropriate amount of XP. Minor accomplishments include all sorts of significant, memorable, or surprising moments in the game. A moderate accomplishment typically represents a goal that takes most of a session to complete, and a major accomplishment is usually the culmination of the characters' efforts across many sessions. Moderate and major accomplishments usually come after heroic effort, so that's an ideal time to also give a Hero Point to one or more of the characters involved.","As mentioned earlier, it's up to you how much XP to give out for accomplishments. As a general guideline, in a given game session, you'll typically give several minor awards, one or two moderate awards, and only one major award, if any."],"source":"CRB"},{"type":"data","tag":"table","name":"XP Awards","source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":508,"name":"Party Size","entries":["The rules for advancement assume a group of four PCs. The rules for encounters (page 489) describe how to accommodate groups of a different size, but the XP awards don't change—always award the amount of XP listed for a group of four characters. You usually won't need to make many adjustments for a differently sized group outside of encounters. Be careful of providing too many ways to get accomplishment XP when you have a large group, though, since they can pursue multiple accomplishments at once, which can lead to the PCs leveling up too fast."],"source":"CRB"},{"type":"pf2-h3","page":508,"name":"Group Parity and Party Level","entries":["It's recommended that you keep all the player characters at the same XP total. This makes it much easier to know what challenges are suitable for your players. Having characters at different levels can mean weaker characters die more easily and their players feel less effective, which in turn makes the game less fun for those players.","If you choose not to keep the whole group at the same character level, you'll need to select a party level to determine your XP budget for encounters. Choose the level you think best represents the party's ability as a whole. Use the highest level if only one or two characters are behind, or an average if everyone is at a different level. If only one character is two or more levels ahead, use a party level suitable for the lower-level characters, and adjust the encounters as if there were one additional PC for every 2 levels the higher-level character has beyond the rest of the party.","Party members who are behind the party level gain double the XP other characters do until they reach the party's level. When tracking individually, you'll need to decide whether party members get XP for missed sessions."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":508,"name":"Treasure","entries":["As the GM, it's your job to distribute treasure to the player characters. Treasure appears throughout an adventure, and the PCs obtain it by raiding treasure hoards, defeating foes who carry valuable items or currency, getting paid for successful quests, and any other way you can imagine.","This section provides guidelines for distributing treasure in a typical Pathfinder campaign, but you always have the freedom to assign extra treasure for a high-powered game, less treasure for a gritty survival horror adventure, or any amount in between.",{"type":"pf2-h3","page":508,"name":"Treasure by Level","entries":["Table 10–9: Party Treasure by Level on the next page shows how much treasure you should give out over the course of a level for a group of four PCs. The Total Value column gives an approximate total value of all the treasure, in case you want to spend it like a budget. The next several columns provide suggestions for breaking down that total into permanent items, which the PCs keep and use for a long time; consumables, which are destroyed after being used once; and currency, which includes coins, gems, and other valuables primarily spent to acquire items or services. The final column gives the amount of currency to add for each PC beyond four in the group; use this only if you have more than four characters in the game. (Different Party Sizes on page 510 provides more guidance on this.) For instance, between the time your PCs reach 3rd level and the time they reach 4th level, you should give them the treasure listed in the table for 3rd level, worth approximately 500 gp: two 4th-level permanent items, two 3rd-level permanent items, two 4th-level consumables, two 3rd-level consumables, two 2nd-level consumables, and 120 gp worth of currency.","When assigning 1st-level permanent items, your best options are armor, weapons, and other gear from Chapter 6 worth between 10 and 20 gp. The treasure listed in the row for 20th level represents a full level's worth of adventures, even though there is no way to reach 21st level.","Some creature entries in the {@Pf2eTools Pathfinder Bestiary|bestiary.html} list treasure that can be gained by defeating an individual creature; this counts toward the treasure for any given level.","Published adventures include a suitable amount of treasure throughout the adventure, though you should still monitor the party's capabilities as the PCs progress through the adventure to make sure they don't end up behind.",{"type":"pf2-h4","page":509,"name":"Currency","entries":["A party will find money and other treasure that isn't useful on its own but that can be sold or spent on other things. The gp values in the Party Currency column don't refer only to coins. Gems, art objects, crafting materials (including precious materials), jewelry, and even items of much lower level than the party's level can all be more interesting than a pile of gold.","If you include a lower-level permanent item as part of a currency reward, count only half the item's Price toward the gp amount, assuming the party will sell the item or use it as crafting material. But lower-level consumables might still be useful, particularly scrolls, and if you think your party will use them, count those items at their full Price."],"source":"CRB"},{"type":"pf2-brown-box","page":509,"name":"ADVANCEMENT SPEEDS","entries":["By varying the amount of XP it takes to gain a level, you can change how quickly characters gain power. The game rules assume a group playing with standard advancement.","Fast advancement works best when you know you won't be playing a very long campaign and want to accomplish as much as possible quickly; slow advancement works best for a gritty campaign where all progress is hard won.","You can alter XP from one adventure to the next to get a different feel. During a street-level murder mystery and travel through a haunted wilderness, you might use slow advancement. When the PCs reach the dungeon, you might switch to standard or fast advancement. The values below are just examples. You can use values even higher or lower.",{"type":"table","colStyles":["text-center","text-center"],"rows":[["Advancement Speed","XP to Level Up"],["Fast","800 XP"],["Standad","1,000 XP"],["Slow","1,200 XP"]]},{"type":"pf2-title","name":"Story-Based Leveling"},"If you don't want to deal with managing and handing out XP, or if you want to have progression based solely on events in the story, you can ignore the XP process entirely and instead simply decide when the characters level up.","Generally, the characters should gain a level every three to four game sessions, just after the most appropriate big event that happens during that time, such as defeating a significant villain or achieving a major goal."],"source":"CRB"},{"type":"pf2-h4","page":509,"name":"Other Types of Treasure","entries":["Not all treasure has to be items or currency. Crafters can use the {@skill Crafting} skill to turn raw materials directly into items instead of buying those items with coins. Knowledge can expand a character's abilities, and formulas make good treasure for item-crafting characters. A spellcaster might get access to new spells from an enemy's spellbook or an ancient scholar, while a monk might retrain techniques with rarer ones learned from a master on a remote mountaintop."],"source":"CRB"},{"type":"pf2-h4","page":509,"name":"Treasure and Rarity","entries":["Giving out uncommon and rare items and formulas can get players more interested in treasure. It's best to introduce uncommon items as a reward fairly regularly but rare items only occasionally. These rewards are especially compelling when the adventurers get the item by defeating or outsmarting an enemy who carries an item that fits their backstory or theme.","Uncommon and rare formulas make great treasure for a character who Crafts items. Note that if an uncommon or rare formula is broadly disseminated, it eventually becomes more common. This can take months or years, but the item might start showing up in shops all around the world."],"source":"CRB"},{"type":"data","tag":"table","name":"Party Treasure by Level","source":"CRB"},{"type":"pf2-h4","page":510,"name":"Different Item Levels","entries":["The levels listed for items on {@table Party Treasure by Level||Table 10–9: Party Treasure by Level} aren't set in stone. You can provide items of slightly higher or lower level as long as you take into account the value of the items you hand out. For instance, suppose you were considering giving a party of 11th-level PCs a {@item runestone} with a {@item fortification} rune (with a Price of 2,000 gp) as one of their 12th-level items, but you realize they've had trouble finding armor in their recent adventures, so you instead decide to give them a suit of 11th-level +2 resilient armor (1,400 gp) instead. Since the armor has a lower Price than the rune, you might also add a 9th-level {@item shadow} rune (650 gp) to make up the difference. The total isn't exactly the same, but that's all right.","However, if you wanted to place a 13th-level permanent item in a treasure hoard, you could remove two 11thlevel permanent items to make a roughly equivalent exchange. When you make an exchange upward like this, be cautious: not only might you introduce an item with effects that are disruptive at the party's current level of play, but you also might give an amazing item to one PC while other characters don't gain any new items at all!","If you're playing in a long-term campaign, you can spread out the treasure over time. A major milestone can give extra treasure at one level, followed by a tougher dungeon with fewer new items at the next level. Check back occasionally to see whether each PC's treasure is comparable to the amount they'd get if they created a new character at their current level, as described under Treasure for New Characters below. They should be a bit higher. but if there's a significant discrepancy, adjust the adventure's upcoming treasure rewards accordingly."],"source":"CRB"},{"type":"pf2-h4","page":510,"name":"Different Party Sizes","entries":["If a party has more than four characters, add the following for each additional character:",{"type":"list","items":["One permanent item of the party's level or 1 level higher","Two consumables, usually one of the party's level and one of 1 level higher","Currency equal to the value in the Currency per Additional PC column of Table 10–9"]},"If the party has fewer than four characters, you can subtract the same amount for each missing character, but since the game is inherently more challenging with a smaller group that can't cover all roles as efficiently, you might consider subtracting less treasure and allowing the extra gear help compensate for the smaller group size."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-brown-box","page":510,"name":"ADJUSTING TREASURE","entries":["The treasure you award to the party should be monitored and adjusted as you play. You might need to give out treasure you hadn't originally planned for, especially if the group bypasses part of an adventure. Keep an eye on the party's resources. If they're running out of consumables or money, or if they're having trouble in combat because their items aren't up to the task, you can make adjustments.","This is especially common in adventures that have little downtime or that take place far from civilization. If the group goes a long time without being able to purchase or Craft useful items, the PCs will be flush with coins and valuables but behind on useful equipment. In a situation like this, you can either place more useful treasure in the adventure or introduce NPCs who are willing to trade.",{"type":"pf2-title","name":"Megadungeons and Sandboxes"},"Some adventures have an expectation that the player characters explore where they want and find only what their skill, luck, and ingenuity afford. Two common examples of this type of adventure are the sprawling dungeon with multiple different sections and paths, often called a megadungeon, and free-form exploration, often called a sandbox and typically occurring in a wilderness.","If you want to build a free-form adventure like this where characters are likely to miss at least some of the treasure, increase the amount of treasure you place. Be aware, however, that a meticulous group can end up with more treasure than normal and will have advantages in later adventures.","For a simple guideline to these situations, increase the treasure as though there were one more PC in the party.","If the structure is especially loose, especially in sandbox adventures, you can increase this amount even further."],"source":"CRB"},{"type":"pf2-h3","page":510,"name":"Treasure for New Characters","entries":["When your new campaign starts at a higher level, a new player joins an existing group, or a current player's character dies and they need a new one, your campaign will have one or more PCs who don't start at 1st level. In these cases, refer to {@table Character Wealth||Table 10–10: Character Wealth} on the next page, which shows how many common permanent items of various levels the PC should have, in addition to currency. A single item on this table is always a baseline item. If the player wants armor or a weapon with property runes, they must buy the property runes separately, and for armor or a weapon made of a precious material, they must pay for the precious material separately as well.","These values are for a PC just starting out at the given level. If the PC is joining a party that has already made progress toward the next level, consider giving the new character an additional item of their current level. If your party has kept the treasure of dead or retired PCs and passed it on to new characters, you might need to give the new character less than the values on the table or reduce some of the treasure rewards of the next few adventures.",{"type":"pf2-h4","page":511,"name":"Item Selection","entries":["You should work with the new character's player to decide which items their character has. Allow the player to make suggestions, and if they know what items they want their character to have, respect their choices unless you believe those choices will have a negative impact on your game.","At your discretion, you can grant the player character uncommon or rare items that fit their backstory and concept, keeping in mind how many items of those rarities you have introduced into your game. The player can also spend currency on consumables or lower-level permanent items, keeping the rest as coinage. As usual, you determine which items the character can find for purchase.","A PC can voluntarily choose an item that has a lower level than any or all of the listed items, but they don't gain any more currency by doing so.","If you choose, you can allow the player to instead start with a lump sum of currency and buy whatever common items they want, with a maximum item level of 1 lower than the character's level. This has a lower total value than the normal allotment of permanent items and currency, since the player can select a higher ratio of high-level items."],"source":"CRB"},{"type":"data","tag":"table","name":"Character Wealth","source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":511,"name":"Buying and Selling Items","entries":["Characters can usually buy and sell items only during downtime. An item can typically be sold for only half its Price, though art objects, gems, and raw materials can be sold for their full Price (page 271)."],"source":"CRB"}],"source":"CRB"}],"data":{"quickref":5},"source":"CRB"},{"type":"section","page":493,"name":"Running Modes of Play","entries":[{"type":"pf2-h1-flavor","page":493,"entries":["{@i Pathfinder sessions are divided into three different modes of play: encounters, exploration, and downtime. Each mode represents different kinds of situations, with specific stakes and time scales, and characters can use different sorts of actions and reactions in each.}"],"source":"CRB"},"Encounters take place in real time or slower, and they involve direct engagement between players and enemies, potential allies, or each other. Combat and direct social interaction usually take place in encounter mode.","Exploration is the connective tissue of an adventure, and it is used whenever characters are exploring a place where there's danger or uncertainty, such as an unfamiliar city or a dungeon. In exploration mode, characters aren't in immediate peril, but they must still be on their toes. Exploration and encounters are collectively called adventuring.","When the party isn't adventuring, the characters are in downtime. This mode covers most of a normal person's life, such as mundane, day-to-day tasks and working toward long-term goals.",{"type":"pf2-h2","page":493,"name":"Encounters","entries":["Encounter mode is the most structured mode of play, and you'll mostly be following the rules presented in Chapter 9 to run this mode. Because you usually call for initiative during exploration before transitioning into an encounter, guidelines for initiative order appear on page 498 in the discussion of exploration mode. Rules for building combat encounters appear on page 488.","{@b Stakes:} Moderate to high. Encounters always have significant stakes, and they are played in a step-by-step time frame to reflect that.","{@b Time Scale:} Encounter mode is highly structured and proceeds in combat rounds for combat encounters, while other sorts of encounters can have rounds of any length. In combat, 1 minute consists of 10 rounds, where each combat round is 6 seconds long, but you might decide a verbal confrontation proceeds in minute-long or longer rounds to give each speaker enough time to make a solid point.","{@b Actions and Reactions:} In combat encounters, each participant's turn is broken into discrete actions, and participants can use reactions when their triggers occur.","Reactions can occur in social situations, though their triggers are usually more descriptive and less tactical.",{"type":"pf2-h3","page":493,"name":"Choosing Adversaries' Actions","entries":["Players often coordinate and plan to be as efficient as possible, but their adversaries might not. As the GM, you're roleplaying these foes, and you decide their tactics.","Most creatures have a basic grasp of simple tactics like flanking or focusing on a single target. But you should remember that they also react based on emotions and make mistakes—perhaps even more than the player characters do.","When selecting targets or choosing which abilities to use, rely on the adversaries' knowledge of the situation, not your own. You might know that the cleric has a high Will save modifier, but a monster might still try to use a fear ability on her. That doesn't mean you should play adversaries as complete fools; they can learn from their mistakes, make sound plans, and even research the player characters in advance.","Adversaries usually don't attack a character who's knocked out. Even if a creature knows a fallen character might come back into the fight, only the most vicious creatures focus on helpless foes rather than the more immediate threats around them.","Running adversaries is a mix of being true to the creature and doing what's best for the drama of the game. Think of your encounter like a fight scene in a movie or novel. If the fighter taunts a fire giant to draw its attention away from the fragile wizard, the tactically sound decision is for the giant to keep pummeling the wizard. But is that the best choice for the scene? Perhaps everyone will have more fun if the giant redirects its ire to the infuriating fighter."],"source":"CRB"},{"type":"pf2-h3","page":493,"name":"Bypassed Encounters","entries":["What happens if you've planned a fight or challenge and the PCs find a way to avoid it entirely? This could leave them behind in XP or cause them to miss important information or treasure.","In the case of XP, the guidelines are simple: If the player characters avoided the challenge through smart tactical play, a savvy diplomatic exchange, clever use of magic, or another approach that required ingenuity and planning, award them the normal XP for the encounter.","If they did something that took only moderate effort or was a lucky break, like finding a secret passage and using it to avoid a fight, award them XP for a minor or moderate accomplishment. In an adventure that's more free-form, like a sprawling dungeon with multiple paths, there might be no reward for bypassing an encounter, because doing so was trivial.","You'll have to think on your feet if information or items get skipped when players bypass encounters. First, look for another reasonable place in the adventure to place the information or item. If it makes sense, move the original encounter to another part of the adventure and give the PCs a major advantage for bypassing the encounter in the first place."],"source":"CRB"},{"type":"pf2-brown-box","page":494,"name":"PLAYING WITHOUT A GRID","entries":["The Pathfinder rules are built to play combat encounters on a 1-inch grid, but you can play without a grid or map. In what's traditionally called the \"theater of the mind,\" you and other players imagine the locations of the combatants and the environment. In this style of play, you'll frequently need to make judgment calls. These are usually simple, like \"Can I see the ogre from where I'm standing?\" or \"Can I get to the ogre with one Stride?\" It's often best to have a player tell you what they want to do, such as \"I want to cross the beam to get to the ogre and attack it.\" Then, you tell the player how that breaks down into actions, like \"You'll need to spend one action and succeed at an {@skill Acrobatics} check, then Stride to get close enough, then you'll have one action left for a Strike.\"","When preparing encounters, avoid using lots of {@quickref difficult terrain||3|terrain}, cover, or other battlefield challenges that work better on a grid. Also, be more lenient with combat tactics like flanking. You won't have a way to measure flanking, but the rules expect melee characters like rogues to often get into a flanking position—often, two characters ganging up in melee is enough to count."],"source":"CRB"},{"type":"pf2-h3","page":494,"name":"Ending Encounters","entries":["A combat encounter typically ends when all the creatures on one side are killed or knocked unconscious. Once this happens, you can stop acting in initiative order.","The surviving side then has ample time to ensure that everyone taken out stays down. However, you might need to keep using combat rounds if any player characters are near death, clinging to a cliff, or in some other situation where every moment matters for their survival.","You can decide a fight is over if there's no challenge left, and the player characters are just cleaning up the last few weak enemies. However, avoid doing this if any of the players still have inventive and interesting things they want to try or spells they're concentrating on—ending an encounter early is a tool to avoid boredom, not to deny someone their fun. You can end a fight early in several ways: the foes can surrender, an adversary can die before its Hit Points actually run out, or you can simply say the battle's over and that the PCs easily dispatch their remaining foes. In this last case, you might ask, \"Is everyone okay if we call the fight?\" to make sure your players are on board.","One side might surrender when almost all its members are defeated or if spells or skills thoroughly demoralize them. Once there's a surrender, come out of initiative order and enter into a short negotiation.","These conversations are really about whether the winners will show mercy to the losers or just kill or otherwise get rid of them. The surrendering side usually doesn't have much leverage in these cases, so avoid long back-and-forth discussions.",{"type":"pf2-h3","page":494,"name":"Fleeing Enemies","entries":["Fleeing enemies can be a problem. Player characters often want to pursue foes that flee because they think an enemy might return as a threat later on. Avoid playing this out move by move, as it can easily bog down the game. If every adversary is fleeing, forgo initiative order and give each PC the option to pursue any one fleeing foe. Each PC can declare one action, spell, or other ability to use to try to keep up. Then, compare the PC's Speed to that of the target, assess how much the pursuer's chosen spell or ability would help, and factor in any abilities the quarry has that would aid escape. If you determine that the pursuer catches up, go back into combat with the original initiative order. If not, the quarry escapes for now.","If the PCs decide to flee, it's usually best to let them do so. Pick a particular location and allow them to escape once they all reach it. However, if they're encumbered or otherwise slowed down, or if enemies have higher Speeds and a strong motive to pursue, you might impose consequences upon PCs who flee."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":494,"name":"Social Encounters","entries":["Most conversations play best as free-form roleplaying, with maybe one or two checks for social skills involved.","Sometimes, though, a tense situation or crucial parlay requires a social encounter that uses initiative, much like a combat encounter. As with any other encounter, the stakes of a social encounter need to be high! A failed social encounter could mean a character is imprisoned or put to death, a major rival becomes a political powerhouse, or a key ally is disgraced and ostracized.","Using the structure of an encounter is {@condition helpful} because it makes the timing clearer than in free-form play, and each character feels like they're contributing. When running a social encounter, establish the stakes up front, so the players know the consequences of success or failure and the circumstances that will cause the encounter to end.","You have much more flexibility in how you run a social encounter than in a combat encounter. Extending the length of rounds beyond 6 seconds, allowing more improvisation, and focusing less on special attacks and spells all differentiate a social encounter from a combat one. In most cases, you don't need to worry about character's movements, nor do you need a map. Some examples of social encounters include:",{"type":"list","items":["Proving someone's innocence in front of a judge.","Convincing a neighboring monarch to help defend against an invasion.","Besting a rival bard in a battle of wits.","Exposing a villain's deception before a noble court."]},{"type":"pf2-h4","page":494,"name":"Initiative and Actions","entries":["Initiative in a social encounter typically has characters rolling {@skill Society} or a Charisma-based skill, such as {@skill Diplomacy} or {@skill Deception}. As with other encounters, a character's approach to the conflict determines which skill they'll roll. On a character's turn, they typically get to attempt one roll, usually by using a skill action. Let the player roleplay what their character says and does, then determine what they'll roll. Allow them to use any abilities or spells that might help them make their case, though keep in mind that when most people see the visual signs of a spell being cast, they think someone is using magic to try to influence or harm them, and they have a negative reaction.","Good social encounters include an opposition. This can be direct, such as a rival who argues against the characters' case, or passive, such as a mob that automatically becomes more unruly as each round passes. Give the opposition one or more positions in the initiative order so you can convey what it is doing. You can create game statistics for the opposition, especially if it's an individual, but in situations like that of the unruly mob, you might need nothing more than establish a set of increasingly difficult DCs."],"source":"CRB"},{"type":"pf2-h4","page":495,"name":"Measuring Success and Progress","entries":["You'll need to decide how to measure the characters' success in social encounters, because there's no AC to target or HP to whittle down. Chapter 4 includes guidance on setting DCs for social skill actions, often using a target's Will DC. If you need a DC for people who don't have stats, such as a crowd or an NPC for whom you haven't already generated statistics, use the guidelines on setting DCs, found on page 503. You can either pick a simple DC or use a level-based DC, estimating a level for the subject or how challenging it should be to sway them.","The attitude conditions—{@condition hostile}, {@condition unfriendly}, {@condition indifferent}, friendly, and helpful—provide a useful way to track the progress of a social encounter. Use these to represent the attitude of an authority, a crowd, a jury, or the like. A typical goal for a social encounter is to change the attitude of a person or group to helpful so they assist you, or calming a hostile group or person to defuse a situation. Try to give the players a clear idea of how much they've progressed as the encounter proceeds.","Another option is to track the number of successes or failures the characters accrue. For instance, you might need to trick four guards into leaving their posts, and count each successful attempt to Lie or Create a Diversion toward a total of four necessary successes. You can combine these two methods; if the PCs need a group of important nobles to vote their way, the goal of the encounter might be to ensure that a majority of the nobles have a better attitude toward the PCs than they have of a rival—all within a limited time frame."],"source":"CRB"},{"type":"pf2-h4","page":495,"name":"Consequences","entries":["When you set stakes at the start of a social encounter, give an idea of the consequences. Beyond whatever narrative benefits player characters might gain, a social encounter usually includes an XP award. Because these are encounters along the same lines as combat encounters, they grant a sizable amount of XP, typically that of a moderate accomplishment, or even a major accomplishment if the encounter was the culmination of long-term plans or a significant adversary got their comeuppance.","The outcome of a social encounter should direct the story of the game. Look for repercussions. Which NPCs might view the PCs more favorably now? Which might hold a grudge or formulate a new plan? A social encounter can seal the fate of an NPC and end their story, but this isn't true for player characters. Even if something looks truly dire for them, such as a death sentence, the social encounter isn't the end—there's still time for desperate heroics or a twist in the story."],"source":"CRB"}],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":496,"name":"Exploration","entries":["Exploration mode is intentionally less regimented than encounters. As a result, during exploration you'll be making judgment calls on just about everything that happens.","Fundamentally, exploration is all about rewarding the PCs for learning about their surroundings. To facilitate this, it's especially important to have and convey a clear mental picture of the group's surroundings. You'll be better able to keep track of where the players are and describe the sights, sounds, and other sensations of their adventuring locales. Encourage the players to have their characters truly explore, and reward their curiosity. The things they try to do in exploration mode show you what they're interested in and what they consider important.","As you play, you'll get a good feel for the aspects of exploration that intrigue certain players, and you can add more of those things to your adventures or emphasize these points in published adventures.","{@b Stakes:} Low to moderate. Exploration mode should be used when there's some amount of risk, but no immediate danger. The PCs might be in an environment where they're likely to face monsters or hazards, but they usually stay in exploration mode until they enter a fight or engage in some other direct interaction.","{@b Time Scale:} When the PCs are in exploration mode, time in the game world passes much faster than real-world time at the table, so it's rarely measured out to the second or the minute. You can speed up or slow down how quickly things are happening as needed. If it's important to know exactly how much time is passing, you can usually estimate time spent in exploration mode to 10-minute increments.","{@b Actions and Reactions:} Though exploration isn't broken into rounds, exploration activities assume the PCs are spending part of their time using actions, such as Seeking or Interacting. If they have specific actions they want to use, they should ask; you can decide whether the actions apply and whether to switch to encounter mode for greater detail. PCs can use any relevant reactions that come up during exploration mode.",{"type":"pf2-h3","page":496,"name":"Exploration Activities","entries":["In exploration mode, each player who wants to do something beyond just traveling chooses an exploration activity for their character. The most common activities are Avoid Notice, Detect Magic, Hustle, and Search, though there are many options available. While players usually hew close to these default activities, there's no need for them to memorize the exploration activities and use them exactly. Instead, allow each player to describe what their character is doing. Then, as the GM, you can determine which activity applies. This also means you determine how an activity works if the character's actions differ from those on the list.","The following sections discuss exploration activities that require adjudication from you beyond the guidelines for players detailed on pages 479–480 of Chapter 9.",{"type":"pf2-h4","page":496,"name":"Detect Magic","entries":["This activity doesn't enable characters to automatically find every single magical aura or object during travel. Hazards that require a minimum proficiency can't be found with {@spell detect magic}, nor can illusions of equal or higher level than the spell.","When characters find something magical using this activity, let them know and give them the option to stop and explore further or continue on. Stopping brings you into a more roleplay-heavy scene in which players can search through an area, assess different items, or otherwise try to figure out the source of the magic and what it does. Continuing on might cause the group to miss out on beneficial magic items or trigger a magic trap."],"source":"CRB"},{"type":"pf2-h4","page":496,"name":"Follow the Expert","entries":["A skilled character can help out less skilled allies who choose to {@action Follow the Expert}. This is a good way to help a character with a low {@skill Stealth} modifier sneak around, get a character with poor {@skill Athletics} up a steep cliff, and so on. Usually, a character who is {@action Following the Expert} can't perform other exploration activities or follow more than one person at a time."],"source":"CRB"},{"type":"pf2-h4","page":496,"name":"Investigate","entries":["As with {@action Searching} or {@action Detecting Magic}, the initial result of {@action Investigating} is usually enough to give the investigator a clue that leads into a more thorough examination, but it rarely gives all possible information. For instance, a character might note that the walls of a dungeon are covered with {@language Abyssal} writing, but they would need to stop to read the text or determine that it's written in blood."],"source":"CRB"},{"type":"pf2-h4","page":496,"name":"Search","entries":["With a successful Perception check while {@action Search||Searching}, a character notices the presence or absence of something unusual in the area, but it doesn't provide a comprehensive catalog of everything there. Instead, it gives a jumping-off point for closer inspection or an encounter. For instance, if an area has both a DC 30 secret door and a DC 25 trap, and a {@action Search||Searching} character got a 28 on their Perception check, you would tell the player that their character noticed a trap in the area, and you'd give a rough idea of the trap's location and nature. The party needs to examine the area more to learn specifics about the trap, and someone would need to Search again to get another chance to find the secret door.","If an area contains many objects or something that will take a while to search (such as a cabinet full of papers), {@action Search||Searching} would reveal the cabinet, but the PCs would have to examine it more thoroughly to check the papers. This usually requires the party to stop for a complete search.","You roll a secret Perception check for a {@action Search||Searching} character to detect any secrets they pass that's in a place that stands out (such as near a door or a turn in a corridor), but not one that's in a more inconspicuous place (like a random point in a long hallway) unless they are searching particularly slowly and meticulously."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-brown-box","page":498,"name":"EXPLORATION ACTIVITIES","entries":["The following exploration activities are fully detailed on pages 479–480 of Chapter 9. Many more appear within Chapter 4: Skills.",{"type":"list","items":["{@action Avoid Notice}","{@action Defend}","{@action Detect Magic}","{@action Follow the Expert}","{@action Hustle}","{@action Investigate}","{@action Repeat a Spell}","{@action Scout}","{@action Search}"]},{"type":"pf2-title","name":"Improvising New Activities"},"If a player wants to do something not covered by other rules, here are some guidelines. If the activity is similar to an action someone could use in an encounter, such as Avoid Notice, it usually consists of a single action repeated roughly 10 times per minute (such as using the Sneak action 10 times) or an alternation of actions that works out similarly (such as Search, which alternates Stride and Seek). An activity using a quicker pace, corresponding to roughly 20 actions per minute, might have limited use or cause fatigue, as would one requiring intense concentration.","You might find that a player wants to do something equivalent to spending 3 actions every 6 seconds, just like they would in combat. Characters can exert themselves to this extent in combat only because combat lasts such a short time—such exertion isn't sustainable over the longer time frame of exploration."],"source":"CRB"},{"type":"pf2-h3","page":497,"name":"Setting a Party Order","entries":["In exploration mode, it often matters which characters are in the front or back of the party formation. Let the players decide among themselves where in the group their characters are while exploring. This order can determine who gets attacked first when enemies or traps threaten from various directions. It's up to you to determine the specifics of who gets targeted based on the situation.","When you come out of exploration mode, the group usually remains in the same general formation. Decide the PCs' exact positions, with their input, if you're moving to a grid (as usually happens at the start of a combat encounter). If they come out of exploration mode on their own terms, they can move around as they see fit. For example, if they detect a trap and the rogue starts attempting to disarm it, the other characters can move to whatever locations they think are safe."],"source":"CRB"},{"type":"pf2-h3","page":497,"name":"Adverse Terrain and Weather","entries":["Exploration gets slower when the party faces dense jungles, deep snow, sandstorms, extreme heat, or similar difficult conditions. You decide how much these factors impact the characters' progress. The specific effects of certain types of terrain and weather are described starting on page 512.","{@quickref difficult terrain||3|terrain} such as thick undergrowth usually slows down progress. Unless it's important how far the group gets in a particular time frame, this can be covered with a quick description of chopping through the vines or trudging through a bog. If the characters are on a deadline, adjust their progress on {@table Travel Speed||Table 9–2: Travel Speed}, typically cutting it in half if almost all of the land is {@quickref difficult terrain||3|terrain} or to one-third for {@quickref greater difficult terrain||3|terrain}.","Hazardous terrain, such as the caldera of an active volcano, might physically harm the player characters. The group might have the option to travel directly through or go around by spending more time. You can transition into a more detailed scene while the characters move through hazardous terrain and attempt to mitigate the damage with spells or skill checks. If they endure hazardous terrain, consider giving the PCs a minor or moderate XP reward at the end of their exploration, with slightly more XP if they took smart precautions to avoid taking damage.","Dangerous crevasses, swampy bogs, quicksand, and similar dangers are environmental hazards, which are described beginning on page 512."],"source":"CRB"},{"type":"pf2-h3","page":498,"name":"Hazards","entries":["Exploration can get broken up by traps and other hazards (see Hazards on page 520). Simple hazards pose a threat to the PCs only once and can be dealt with in exploration mode. Complex hazards require jumping into encounter mode until the hazard is dealt with. Disabling a trap or overcoming a hazard usually takes place in encounter mode. PCs have a better chance to detect hazards while exploring if they're using the Search activity (and the Detect Magic activity, in the case of some magic traps)."],"source":"CRB"},{"type":"pf2-h3","page":498,"name":"Rolling Initiative","entries":["Transitioning from exploration to an encounter usually involves rolling for initiative. Call for initiative once a trap is triggered, as soon as two opposing groups come into contact, or when a creature on one side decides to take action against the other. For example:",{"type":"list","items":["A group of PCs are exploring a cavern. They enter a narrow passage patrolled by a group of kobold warriors. Now that the two groups are in the same area, it's time to roll initiative.","Amiri and a kobold champion agree to have a {@condition friendly} wrestling match. They square off on a patch of dirt, and you call for initiative using {@skill Athletics}.","Merisiel and Kyra are negotiating with the kobold king. Things aren't going well, so Merisiel decides to launch a surprise attack. As soon as she says this is her plan, you call for initiative.","Harsk and Ezren are trying to Balance across a narrow beam to reach an isolated kobold treasure trove. When they get halfway across, a red dragon who was hiding behind the mountain flies around to attack! As soon as the dragon makes its appearance, you call for an initiative roll."]},{"type":"pf2-h4","page":498,"name":"Initiative after Reactions","entries":["In some cases, a trap or a foe has a reaction that tells you to roll initiative. For instance, a complex trap that's triggered might make an attack with its reaction before the initiative order begins. In these cases, resolve all the results of the reaction before calling for initiative rolls."],"source":"CRB"},{"type":"pf2-h4","page":498,"name":"Choosing the Type of Roll","entries":["When choosing what type of roll to use for initiative, lean toward the most obvious choice. The most common roll is {@skill Perception}; this is what the kobolds would use in the first example, as would Kyra and the kobold king in the third example. The next most common skills to use are {@skill Stealth} (for sneaking up, like the dragon in the last example) and {@skill Deception} (for tricking opponents, like Merisiel in the third example). For social contests, it's common to use {@skill Deception}, {@skill Diplomacy}, {@skill Intimidation}, {@skill Performance}, or {@skill Society}.","If you're unsure what roll to call for, use {@skill Perception}. If a different type of roll could make sense for a character, you should usually offer the choice of that roll or {@skill Perception} and let the player decide. Don't do this if it's absolutely clear another kind of check matters more sense than {@skill Perception}, such as when the character is sneaking up on enemies and should definitely use {@skill Stealth}.","You can allow a player to make a case that they should use a different skill than {@skill Perception}, but only if they base it on something they've established beforehand. For example, if in the prelude to the attack, Merisiel's player had said, \"I'm going to dangle down off the chandelier to get the drop on them,\" you could let them use {@skill Acrobatics} for their initiative roll. If they just said, \"Hey, I want to attack these guys. Can I use {@skill Acrobatics}?\" without having established a reason beforehand, you probably shouldn't allow it."],"source":"CRB"},{"type":"pf2-h4","page":498,"name":"Character Placement","entries":["When calling for initiative for a combat encounter, you'll need to decide where the participants in the encounter go on the battle map. Use the party's order, described on page 497, as a base. You can move forward characters who are using {@skill Stealth} to get into position, putting them in a place they could reasonably have moved up to before having a chance to be detected. Consult with each player to make sure their position makes sense to both of you."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-brown-box","page":499,"name":"MONITORING SPELL DURATIONS","entries":["Spell durations are approximate values that codify the vagaries and eccentricities of magic into a convenient number. However, that doesn't mean you can set your watch by a spell with a 1-hour duration. This is one of the reasons the passage of time outside of encounters is in your hands and isn't as precise as encounter rounds.","If a question arises about whether a spell has expired, you make the call. You shouldn't be punitive, but you also shouldn't treat characters like they move with clockwork precision and perfect efficiency between encounters.","There are two times these durations matter most: when players try to fit multiple encounters within the duration of a spell, and when they want to use a spell before a fight and keep it in effect during the encounter.",{"type":"pf2-title","name":"Multiple Encounters"},"A 1-minute spell should last for multiple encounters only if the encounters happen in very close proximity (usually in two adjoining rooms) and if the PCs go directly from one fight to the next without leaving encounter mode. If they want to stop and heal, or if the party debates whether to go on, the process takes enough time that the spell runs out.","Be more generous with spells lasting 10 minutes or more. A 10-minute spell easily lasts for one encounter and could continue for another if the locations are close. A 1-hour spell usually lasts for several encounters.",{"type":"pf2-title","name":"Before a Fight"},"Casting advantageous spells before a fight (sometimes called \"pre-buffing\") gives the characters a big advantage, since they can spend more combat rounds on offensive actions instead of preparatory ones. If the players have the drop on their foes, you usually can let each character cast one spell or prepare in some similar way, then roll initiative.","Casting preparatory spells before combat becomes a problem when it feels rote and the players assume it will always work—that sort of planning can't hold up in every situation! In many cases, the act of casting spells gives away the party's presence. In cases where the PCs' preparations could give them away, you might roll for initiative before everyone can complete their preparations."],"source":"CRB"},{"type":"pf2-h3","page":499,"name":"Resting","entries":["Characters require 8 hours of sleep each day. Though resting typically happens at night, a group gains the same benefits for resting during the day. Either way, they can gain the benefits of resting only once every 24 hours. A character who rests for 8 hours recovers in the following ways:",{"type":"list","items":["The character regains Hit Points equal to their Constitution modifier (minimum 1) multiplied by their level. If they rest without any shelter or comfort, you might reduce this healing by half (to a minimum of 1 HP).","The character loses the {@condition fatigued} condition.","The character reduces the severity of the {@condition doomed} and {@condition drained} conditions by 1.","Most spellcasters need to rest before they regain their spells for the day."]},"A group in exploration mode can attempt to rest, but they aren't entirely safe from danger, and their rest might be interrupted. The 8 hours of rest do not need to be consecutive, however, and after an interruption, characters can go back to sleep.","Sleeping in armor results in poor rest and causes a character to wake up fatigued. If a character would have recovered from fatigue, sleeping in armor prevents it.","If a character goes more than 16 hours without going to sleep, they become fatigued.","Taking long-term rest for faster recovery is part of downtime and can't be done during exploration. See page 502 for these rules.",{"type":"pf2-h4","page":499,"name":"Resting","entries":["Adventuring parties usually put a few people on guard to watch out for danger while the others rest. Spending time on watch also interrupts sleep, so a night's schedule needs to account for everyone's time on guard duty. Table 10–3:","Watches and Rest on the next page indicates how long the group needs to set aside for rest, assuming everyone gets a rotating watch assignment of equal length.","If a surprise encounter would occur during rest, you can roll a die to randomly determine which character is on watch at the time. All characters roll initiative; sleeping characters typically roll Perception with a –4 status penalty for being unconscious. They don't automatically wake up when rolling initiative, but they might roll a Perception check to wake up at the start of their turn due to noise. If a savvy enemy waits for a particularly vulnerable character to take watch before attacking, the attack can happen on that character's watch automatically. However, you might have the ambusher attempt a {@skill Stealth} check against the Perception DCs of all characters to see if anyone noticed its approach.",{"type":"data","tag":"table","source":"CRB","name":"Watches and Rest"}],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":500,"name":"Daily Preperations","entries":["Just before setting out to explore, or after a night's rest, the PCs spend time to prepare for the adventuring day. This typically happens over the span of 30 minutes to an hour in the morning, but only after 8 full hours of rest. Daily preparations include the following.",{"type":"list","items":["Spellcasters who prepare spells choose which spells they'll have available that day.","Focus Points and other abilities that reset during daily preparations refresh. This includes abilities that can be used only a certain number of times per day.","Each character equips their gear. This includes donning their armor and strapping on their weapons.","Characters invest up to 10 worn magic items to gain their benefits for the day (page 531)."]}],"source":"CRB"},{"type":"pf2-h3","page":500,"name":"Starvation and Thirst","entries":["Typically characters eat and drink enough to survive comfortably. When they can't, they're fatigued until they do. After 1 day + a creature's Constitution modifier without water, it takes 1d4 damage each hour that can't be healed until it quenches its thirst. After the same amount of time without food, it takes 1 damage each day that can't be healed until it sates its hunger."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":500,"name":"Downtime","entries":["In downtime, you can sum up the important events of a whole day with just one roll. Use this mode when the characters return home or otherwise aren't adventuring.","Usually, downtime is a few minutes at the start of a session or a break between major chapters of an adventure. As with exploration, you might punctuate downtime with roleplaying or encounters when it's natural to do so.","This section describes ways to handle downtime and details several activities and considerations specific to downtime, such as cost of living, buying and selling goods, long-term rest, and retraining. Most other downtime activities are skill actions; a number of these common downtime activities and their associated skills are listed below. See the relevant skills in Chapter 4 for details.",{"type":"list","items":["{@action Craft} ({@skill Crafting})","{@action Earn Income} ({@skill Crafting}, {@skill Lore}, {@skill Performance})","{@action Treat Disease} ({@skill Medicine})","{@action Create Forgery} ({@skill Society})","{@action Subsist} ({@skill Society}, {@skill Survival})"]},"{@b Stakes:} None to low. Downtime is the counterpart to adventuring and covers low-risk activities.","{@b Time Scale:} Downtime can last days, weeks, months, or years in the game world in a few minutes of real time.","{@b Actions and Reactions:} If you need to use actions and reactions, switch to exploration or encounter mode.","A creature that can't act is unable to perform most downtime activities, but it can take long-term rest.",{"type":"pf2-h3","page":500,"name":"Playing out a Downtime Day","entries":["At the start of a given day of downtime, have all the players declare what their characters are trying to accomplish that day. You can then resolve one character's efforts at a time (or group some characters together, if they are cooperating on a single project). Some activities, such as Earning Income, require only a simple roll and some embellishment from you and the player. Other activities are more involved, incorporating encounters or exploration. You can call on the players to play out their downtime activities in any order, though it's often best to do the simplest ones first. Players who aren't part of a more involved activity might have time to take a break from the table while the more complex activities are played out.","Characters can undertake their daily preparations if they want, just as they would on a day of exploration. Ask players to establish a standard set of preparations, and you can assume the characters go through the same routine every day unless their players say otherwise.",{"type":"pf2-h4","page":500,"name":"Cooperation","entries":["Multiple characters can cooperate on the same downtime task. If it's a simple task that requires just one check, such as a party Subsisting as they await rescue on a desert island, one character rolls the necessary check while everyone else Aids that character. If it's a complex task, assume all of them are working on different parts of it at one time, so all their efforts count toward its completion. For example, a party might collaborate to build a theater, with one character drawing up architectural plans, one doing manual labor, and one talking to local politicians and guilds."],"source":"CRB"},{"type":"pf2-h4","page":500,"name":"Checks","entries":["Some downtime activities require rolls, typically skill checks. Because these rolls represent the culmination of a series of tasks over a long period, players can't use most abilities or spells that manipulate die rolls, such as activating a magic item to gain a bonus or casting a fortune spell to roll twice. Constant benefits still apply, though, so someone might invest a magic item that gives them a bonus without requiring activation. You might make specific exceptions to this rule. If something could apply constantly, or so often that it might as well be constant, it's more likely to be used for downtime checks."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":501,"name":"Longer Periods of Downtime","entries":["Running downtime during a long time off—like several weeks, months, or even years—can be more challenging.","However, it's also an opportunity for the characters to progress toward long-term plans rather than worrying about day-to-day activities. Because so much time is involved, characters don't roll a check for each day. Instead, they deal with a few special events, average out the rest of the downtime, and pay for their cost of living.",{"type":"pf2-h4","page":501,"name":"Events","entries":["After the characters state what they want to achieve in their downtime, select a few standout events for each of them—usually one event for a period of a week or a month, or four events for a year or longer. These events should be tailored to each character and their goals, and they can serve as hooks for adventures or plot development.","Though the following examples of downtime events all involve Earning Income, you can use them to spark ideas for other activities. A character using Perform to Earn Income could produce a commanding performance of a new play for visiting nobility. Someone using {@skill Crafting} might get a lucrative commission to craft a special item. A character with Lore might have to research a difficult problem that needs a quick response.","PCs who want to do things that don't correspond to a specific downtime activity should still experience downtime events; you just choose the relevant skill and DC. For example, if a character intends to build their own library to house their books on magic, you might decide setting the foundation and organizing the library once construction is finished are major events. The first could be a {@skill Crafting} check, and the second an {@skill Arcana} or Library Lore check."],"source":"CRB"},{"type":"pf2-h4","page":501,"name":"Average Progress","entries":["For long periods of downtime, you might not want to roll for every week, or even every month. Instead, set the level for one task using the lowest level the character can reliably find in the place where they spend their downtime (see Difficulty Classes on page 503 for more on setting task levels). If the character fails this check, you might allow them to try again after a week (or a month, if you're dealing with years of downtime). Don't allow them to roll again if they succeeded but want to try for a critical success, unless they do something in the story of the game that you think makes it reasonable to allow a new roll.","The events you include during a long stretch of downtime should typically feature higher-level tasks than the baseline. For instance, a character Earning Income with Sailing Lore for 4 months might work at a port doing 1st-level tasks most of the time, but have 1 week of 3rd-level tasks to account for busy periods. You'll normally have the player roll once for the time they spent at 1st-level tasks and once for the week of 3rd-level tasks."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":502,"name":"Cost of Living","entries":["For short periods of downtime, characters are usually just passing through a settlement or spending a bit of time there. They can use the prices for inn stays and meals found on page 294. For long stretches of downtime, use the values on {@table Cost of Living||Table 6–16: Cost of Living} on the same page. Deduct these costs from a character's funds after they gain any money from their other downtime activities.","A character can live off the land instead, but each day they do, they typically use the Subsist activity (page 240) to the exclusion of any other downtime activity."],"source":"CRB"},{"type":"pf2-h3","page":502,"name":"Buying and Selling","entries":["After an adventure yields a windfall, the characters might have a number of items they want to sell. Likewise, when they're flush with currency, they might want to stock up on gear. It usually takes 1 day of downtime to sell off a few goods or shop around to buy a couple items. It can take longer to sell off a large number of goods, expensive items, or items that aren't in high demand.","This assumes the characters are at a settlement of decent size during their downtime. In some cases, they might spend time traveling for days to reach bigger cities.","As always, you have final say over what sort of shops and items are available.","An item can usually be purchased at its full Price and sold for half its Price. Supply and demand adjusts these numbers, but only occasionally."],"source":"CRB"},{"type":"pf2-h3","page":502,"name":"Long-Term Rest","entries":["Each full 24-hour period a character spends resting during downtime allows them to recover double what they would for an 8-hour rest (as listed on page 499). They must spend this time resting in a comfortable and secure location, typically in bed.","If they spend significantly longer in bed rest—usually from a few days to a week of downtime—they recover from all damage and most nonpermanent conditions. Characters affected by diseases, long-lasting poisons, or similar afflictions might need to continue attempting saves during downtime. Some curses, permanent injuries, and other situations that require magic or special care to remove don't end automatically during long-term rest."],"source":"CRB"},{"type":"pf2-h3","page":502,"name":"Retraining","entries":["The retraining rules on page 481 allow a player to change some character choices, but they rely on you to decide whether the retraining requires a teacher, how long it takes, if it has any associated costs, and if the ability can be retrained at all. It's reasonable for a character to retrain most choices, and you should allow them. Only choices that are truly intrinsic to the character, like a sorcerer's bloodline, should be off limits without extraordinary circumstances.","Try to make retraining into a story. Use NPCs the character already knows as teachers, have a character undertake intense research in a mysterious old library, or ground the retraining in the game's narrative by making it the consequence of something that happened to the character in a previous session.",{"type":"pf2-h4","page":502,"name":"Time","entries":["Retraining a feat or skill increase typically takes a week. Class features that require a choice can also be retrained but take longer: at least a month, and possibly more. Retraining might take even longer if it would be especially physically demanding or require travel, lengthy experimentation, or in-depth research, but usually you won't want to require more than a month for a feat or skill, or 4 months for a class feature.","A character might need to retrain several options at once. For instance, retraining a skill increase might mean they have skill feats they can no longer use, and so they'll need to retrain those as well. You can add all this retraining time together, then reduce the total a bit to represent the cohesive nature of the retraining."],"source":"CRB"},{"type":"pf2-h4","page":502,"name":"Instruction and Cost","entries":["The rules abstract the process of learning new things as you level up—you're learning on the job—but retraining suggests that the character works with a teacher or undergoes specific practice to retrain. If you want, you can entirely ignore this aspect of retraining, but it does give an opportunity to introduce (or reintroduce) NPCs and further the game's story. You can even have one player character mentor another, particularly when it comes to retraining skills.","Any costs to retraining should be pretty minor—about as much as a PC could gain by Earning Income over the same period of time. The costs are mostly there to make the training feel appropriate within the context of the story, not to consume significant amounts of the character's earnings. A teacher might volunteer to work without pay as a reward for something the character has already done, or simply ask for a favor in return."],"source":"CRB"},{"type":"pf2-h4","page":502,"name":"Disallowed Options","entries":["While some character options can't normally be retrained, you can invent ways for a character to retrain even these—special rituals, incredible quests, or the perfect tutor. For example, ability scores can't normally be retrained, as that can unbalance the game. But not all players necessarily want to exploit the system—maybe a player simply wants to swap an ability boost between two low stats. In situations like this, you could let them spend a few months working out or studying to reassign an ability boost."],"source":"CRB"}],"source":"CRB"}],"source":"CRB"}],"data":{"quickref":5},"source":"CRB"},{"type":"section","page":489,"name":"Running a Game Session","entries":["A campaign happens over a series of sessions. Each session is usually several hours long, with multiple encounters, some exploration, and possibly downtime. Your session can be compared to an episode of a TV show; it should include some twists, turns, and changes, and end leaving people excited about what comes next.",{"type":"pf2-h3","page":489,"name":"Planning a Session","entries":["One of the greatest challenges in gaming is scheduling a time for everyone to get together and play. Often, this responsibility falls on you as the GM, since you're the one who has to prepare your game between sessions. Many games have a set schedule, such as once per week, once every 2 weeks, or once per month. The less frequently your group meets, the better notes and recaps you'll need to keep everyone on the same page.","Plan a time for everybody will arrive, and also try to set a time when playing the game will begin. This can make it easier for everyone to finish chatting, catching up, and eating in a timely fashion so you can start playing the game. Having an end time in mind is also fairly important. A typical game session lasts about 4 hours, though some groups hold 2-hour sessions or play marathon games. Less than 2 hours usually isn't enough time to get much done in most Pathfinder campaigns. If your session will be longer than 2 hours, plan out some 15-minute breaks (in addition to bathroom and beverage breaks, which players can take as needed)."],"source":"CRB"},{"type":"pf2-h3","page":490,"name":"Starting a Session","entries":["Once everyone is ready, get everyone's attention and cover the following topics. These are in a rough order that you can change based on your group's style or a session's needs.",{"type":"list","items":["Recap what happened during the previous sessions.","Establish where the characters are at the beginning of this session. Have they been resting since their last challenge? Are they in a hallway, preparing to raid the next room of a dungeon? Tell players whether their characters had time to rest or recover since the last session.","Remind players that they each have 1 Hero Point at the start of the session ({@quickref here||4|rewards|1}).","Establish goals. The players should have an idea of what they want to do next. Reestablish any goals the group already had, then let the players weigh in on whether these goals still apply, and on whether there's anything else they hope to accomplish in this session.","Commence adventuring! Decide which mode of play you're going to start in, then lead off with a verbal prompt to get the action started. You might ask a question related to a particular character, have everyone immediately roll initiative as a monster attacks, or briefly describe the environment and sensations that surround the player characters, allowing them to react."]}],"source":"CRB"},{"type":"pf2-h3","page":490,"name":"Running a Session","entries":["During a session, you're in charge of keeping the game's action moving, managing the different modes of play, fielding questions, and making rules decisions. You'll also want to keep a rough eye on the time, so you can end when most convenient for the group.","You're the interface between the rules and the imagined world you and the other players share. They will ask you questions, and they'll act based on their own assumptions. It's up to you to establish what's true in the world, but you don't do this unilaterally. You're informed by the setting's backstory, your preparations, and the suggestions and assumptions the other players bring to the table. Keep in mind that until you announce something, your own plans are subject to change. For example, if you originally intended the owner of a tavern to be kindly and well-intentioned, but a player misreads her and invents an interesting conspiracy theory regarding her intentions that sounds fun, you might convert the tavern owner into an agent of evil after all.","You'll also determine when PCs and foes need to attempt checks, as well as the consequences of those rolls. This comes up most often outside of encounters, as encounters are more regimented about when checks happen and how they are resolved. In an encounter, a player can usually determine their own character's turn, with you chiming in only to say whether an attack hits or if something in the environment requires a character to attempt a check.",{"type":"pf2-h4","page":490,"name":"The Spotlight","entries":["As you run the game, keep track of who has the spotlight. It can be easy to keep attention on the most outgoing player or character, but you need to check in with all the players. If a player hasn't contributed in some time, stop and ask, \"What's your character doing at this point?\" If the player's not sure, add a detail or nonplayer character to the scene that the player might find interesting."],"source":"CRB"},{"type":"pf2-h4","page":490,"name":"Distractions and Interrupting","entries":["Maintaining the players' attention keeps a game moving and leads to memorable moments when everyone's in the same zone. Too many interruptions break the flow. This is fine in moderation. Distractions become a problem if they're too frequent, as they cause people to miss things and make misinformed decisions as the session becomes disconnected. Yet every game includes breaks—sometimes intentional, sometimes not—and digressions. Finding the right balance of diversions for your group is essential.","A game is a social gathering, so there's definitely a place for conversation that's not directly related to playing the game. These interruptions become a problem if they're too frequent, or if people are talking over others. If a player repeatedly interrupts you or other people or undercuts every crucial moment of the game with a joke, talk to them about limiting their comments to appropriate times. Often, all you need to do is hold up your hand or otherwise indicate that the player is talking out of turn to delay them until after you or another speaker finishes talking.","Phones and other mobile devices are another major source of distraction. Banning them entirely is often impractical—many players use apps to roll dice or manage their character sheets, or they need to answer texts from their partner, check in on a work project, or otherwise stay connected with people who rely on them. However, you can set ground rules against using a device for anything that's not time-sensitive or game-related, such as refreshing social media, checking the score of a hockey game, playing a mobile game, or answering a non-urgent text. You can relax these rules for players when their characters are \"offstage.\" If a player's character isn't in a scene, that might be a good time for the player to use a mobile device."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-brown-box","page":491,"name":"OFF-SESSION GAMING","entries":["Session play with a full group isn't the only way to play Pathfinder. Finding opportunities to expand on the game outside of its regular schedule can keep your group engaged between sessions.","You can get together with a single player to run a mini-session for their character, covering a mission that's important to their story but doesn't concern the rest of the group. You and the players can work out what their characters do during solid stretches of downtime via e-mail or chat messages. You can also give players opportunities to collaborate on details of the story, like having a player design a heraldic symbol for the adventuring group or map out their home base. You might even decide to award a Hero Point at the next session to a player for events that happened outside a session.","Some events aren't suitable for handling outside of sessions. Any event that strongly affects a character whose player isn't present should be handled at the table when everyone can attend. It's also helpful to recap events that took place outside of the session for all characters so no one feels excluded or lost."],"source":"CRB"},{"type":"pf2-h3","page":491,"name":"Adjudicating the Rules","entries":["As the GM, you are responsible for solving any rules disputes. Remember that keeping your game moving is more important than being 100% correct. Looking up rules at the table can slow the game down, so in many cases it's better to make your best guess rather than scour the book for the exact rule. (It can be instructive to look those rules up during a break or after the session, though!)","To make calls on the fly, use the following guidelines, which are the same principles the game rules are based on. You might want to keep printouts of these guidelines and the DC guidelines (page 503) for quick reference.",{"type":"list","items":["If you don't know how long a quick task takes, go with 1 action, or 2 actions if a character shouldn't be able to perform it three times per round.","If you're not sure what action a task uses, look for the most similar basic action. If you don't find one, make up an undefined action (page XXX) adding any necessary traits (usually attack, concentrate, manipulate, or move).","When two sides are opposed, have one roll against the other's DC. Don't have both sides roll (initiative is the exception to this rule). The character who rolls is usually the one acting (except in the case of saving throws).","If an effect raises or lowers chances of success, grant a +1 circumstance bonus or a –1 circumstance penalty.","If you're not sure how difficult a significant challenge should be, use the DC for the party's level.","If you're making up an effect, creatures should be incapacitated or killed on only a critical success (or for a saving throw, on a critical failure).","If you don't know what check to use, pick the most appropriate skill. If no other skill applies to a check to Recall Knowledge, use an appropriate Lore skill (usually at an untrained proficiency rank).","Use the characters' daily preparations as the time to reset anything that lasts roughly a day.","When a character accomplishes something noteworthy that doesn't have rules for XP, award them XP for an accomplishment (10 to 30 XP, as described {@quickref here||4|rewards|1}).","When the PCs fail at a task, look for a way they might fail forward, meaning the story moves forward with a negative consequence rather than the failure halting progress entirely."]}],"source":"CRB"},{"type":"pf2-h3","page":492,"name":"Special Circumstances","entries":["The player characters in your group will at times attempt tasks that should be easier or harder than the rules or adventure would otherwise lead you to expect, such as a PC Gathering Information in their hometown. In these cases, you can just apply a circumstance bonus or penalty. Usually, this is +1 or –1 for a minor but significant circumstance, but you can adjust this bonus or penalty to +2 or –2 for a major circumstance. The maximum bonus or penalty, +4 or –4, should apply only if someone has an overwhelming advantage or is trying something extremely unlikely but not quite impossible.","You can also add traits to actions. Let's say that during a fight, Seelah dips her sword into a brazier of hot coals before swinging it at an enemy with a weakness to fire. You could add the fire trait to this attack. A PC getting an advantage in this way should usually have to use an action to do so, so Seelah would get the benefit for one attack, but to do it again she'd need to bury her sword in the coals once more."],"source":"CRB"},{"type":"pf2-brown-box","page":492,"name":"SHARING RESPONSIBILITY","entries":["Just because you're the GM and ostensibly in charge doesn't mean you have to do all the extra work to make the campaign run. Some of the tasks described here, like scheduling games, taking notes, and giving recaps, can be delegated to other players. You might also have someone track initiative or the Hit Points of the PCs' foes for you in encounters, or even run those foes if you have a large group and someone would rather do that than control a character of their own. It's also great when someone else can host a session, provide snacks for the group, or take on other responsibilities that aren't directly related to the game.","It's best to figure out a schedule of responsibilities when you're first setting up a game. Ask the players what they're willing to take on. If you start to feel overwhelmed partway through a campaign, you can revisit the topic and try out new options until you find a setup that's comfortable."],"source":"CRB"},{"type":"pf2-h3","page":492,"name":"Incorporating Additional Options","entries":["You might grant players access to additional rule or character options. If you feel confident that allowing a character to take a particular option will be a good addition to your game, then go for it! If you're uncertain or worried about a request, you don't have to allow it, and it's your call to make. However, try to meet players halfway or suggest alternatives. If you want to allow an option on a trial basis but are worried it might become a problem later, talk to the player beforehand and explain that you are tentatively allowing the option, but might change your mind later, after you see how the option can be used during play."],"source":"CRB"},{"type":"pf2-brown-box","page":492,"name":"PAIZO'S PUBLISHED ADVENTURES","entries":["You can purchase the following types of adventures at {@b {@link paizo.com|https://paizo.com}}, your local game store, or many book stores. If you want to acquire all the adventures in a given line, you can purchase a subscription at {@b {@link paizo.com|https://paizo.com}}.",{"type":"pf2-title","name":"Pathfinder Adventure Paths"},"Each monthly volume of a Pathfinder Adventure Path leads into the next as part of a greater story spanning multiple volumes. The first volume of each Adventure Path typically starts at 1st level, and each volume has a self-contained story that eventually leads to a big climax at the end of the final volume. Each volume also typically includes new monsters, rules, and details about the world.","Each Adventure Path has a different theme, and their settings range across the Inner Sea region and beyond.",{"type":"pf2-title","name":"Pathfinder Adventures"},"Pathfinder Adventures are standalone adventures that cover several levels of play. They're self-contained and typically have a unique structure or theme. You can play through a Pathfinder Adventure on its own or as part of your ongoing campaign—some make ideal side adventures for Adventure Paths that have similar themes.",{"type":"pf2-title","name":"Pathfinder Society Scenarios"},"Scenarios are the adventures used by the Pathfinder Society Roleplaying Guild; you can play them as part of the Pathfinder Society or on your own. Each takes about 4 to 5 hours to run, so you can tell a whole story in a short amount of time, but they're also part of a larger continuity and can be combined together to form the basis of a longer campaign."],"source":"CRB"}],"data":{"quickref":5},"source":"CRB"}]}]}} \ No newline at end of file diff --git a/data/generated/bookref-quick.json b/data/generated/bookref-quick.json index 3c3f790d4a..1dfb84e8b6 100644 --- a/data/generated/bookref-quick.json +++ b/data/generated/bookref-quick.json @@ -1 +1 @@ -{"reference":{"bookref-quick":{"name":"Quick Reference","id":"bookref-quick","contents":[{"name":"Character Creation","headers":["Animal Companions","Archetypes","Character Creation","Characters With Disabilities","Familiars","Leveling Up"]},{"name":"Items & Equipment","headers":["Activating Items","Animals","Armor","Carrying and Using Items","Coins and Currency","Constant Abilities","Formulas","Investing Magic Items","Item Damage","Item Level","Items and Sizes","Price","Runes","Scrolls","Services","Shields","Shoddy Items","Staves","Wands","Weapons"]},{"name":"Spells","headers":["Cantrips","Casting Spells","Disbelieving Illusions","Durations","Focus Spells","Hostile Actions","Identifying Spells","Innate Spells","Ranges, Areas, and Targets","Reading Spells","Rituals","Saving Throws","Setting Triggers","Spell Attacks","Spell Slots","Walls"]},{"name":"Playing the Game","headers":["Actions","Afflictions","Checks","Concealment and Invisibility","Condition Values","Conditions","Counteracting","Cover","Damage","Downtime Mode","Effects","Encounter Mode","Exploration Mode","Flanking","Game Conventions","Hero Points","Hit Points, Healing, and Dying","Making Choices","Movement","Overriding Conditions","Perception","Special Checks","Specific Checks"]},{"name":"Game Mastering","headers":["Difficulty Classes","Drugs","Environment","Hazards","Planning a Campaign","Preparing an Adventure","Rewards","Running Modes of Play","Running a Game Session"]}]}},"data":{"bookref-quick":[{"type":"entries","entries":[{"type":"section","page":214,"name":"Animal Companions","entries":["An animal companion is a loyal comrade who follows your orders without you needing to use Handle an Animal on it. Your animal companion has the minion trait, and it gains 2 actions during your turn if you use the {@action Command an Animal} action to command it; this is in place of the usual effects of {@action Command an Animal}. If your companion dies, you can spend a week of downtime to replace it at no cost. You can have only one animal companion at a time.",{"type":"pf2-h3","page":214,"name":"Riding Animal Companions","entries":["You or an ally can ride your animal companion as long as it is at least one size larger than the rider. If it is carrying a rider, the animal companion can use only its land Speed, and it can't move and Support you on the same turn. However, if your companion has the mount special ability, it's especially suited for riding and ignores both of these restrictions."],"source":"CRB"},{"type":"pf2-h3","page":214,"name":"Young Animal Companions","entries":["The following are the base statistics for a young animal companion, the first animal companion most characters get. You make adjustments to these statistics depending on the type of animal you choose. As you gain levels, you might make further adjustments as your companion becomes more powerful. An animal companion has the same level you do. Animal companions calculate their modifiers and DCs just as you do with one difference: the only item bonuses they can benefit from are to speed and AC (their maximum item bonus to AC is +2)."],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h4","page":214,"name":"Proficiencies","entries":["Your animal companion uses your level to determine its proficiency bonuses. It's trained in its unarmed attacks, unarmored defense, barding, all saving throws, Perception, {@skill Acrobatics}, and {@skill Athletics}. Animal companions can't use abilities that require greater Intelligence, such as Coerce or Decipher Writing, even if trained in the appropriate skill, unless they have a specialization that allows it."],"source":"CRB"},{"type":"pf2-h4","page":214,"name":"Ability Modifiers","entries":["An animal companion begins with base ability modifiers of {@b Str} +2, {@b Dex} +2, {@b Con} +1, {@b Int}–4, {@b Wis} +1, {@b Cha} +0. Each type has its own strengths and increases two of these modifiers by 1 each. These increases are already calculated into the stat blocks in Companion Types below."],"source":"CRB"},{"type":"pf2-h4","page":214,"name":"Hit Points","entries":["Your animal companion has ancestry Hit Points from its type, plus a number of Hit Points equal to 6 plus its Constitution modifier for each level you have."],"source":"CRB"},{"type":"pf2-h3","page":214,"name":"Mature Animal Companions","entries":["To advance a young animal companion to a mature animal companion (usually a result of one of your class feat choices), increase its Strength, Dexterity, Constitution, and Wisdom modifiers by 1. Increase its unarmed attack damage from one die to two dice (for instance 1d8 to 2d8), and its proficiency rank for Perception and all saving throws to expert. Increase its proficiency ranks in {@skill Intimidation}, {@skill Stealth}, and {@skill Survival} to trained, and if it was already trained in one of those skills from its type, increase its proficiency rank in that skill to expert. If your companion is Medium or smaller, it grows by one size."],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h3","page":214,"name":"Nimble Animal Companions","entries":["To advance a mature animal companion to a nimble animal companion, increase its Dexterity modifier by 2 and its Strength, Constitution, and Wisdom modifiers by 1. It deals 2 additional damage with its unarmed attacks. Increase its proficiency ranks in {@skill Acrobatics} and unarmored defense to expert. It also learns the advanced maneuver for its type. Its attacks become magical for the purpose of ignoring resistances."],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h3","page":214,"name":"Savage Animal Companions","entries":["To advance a mature animal companion to a savage animal companion, increase its Strength modifier by 2 and its Dexterity, Constitution, and Wisdom modifiers by 1. It deals 3 additional damage with its unarmed attacks. Increase its proficiency rank in {@skill Athletics} to expert. It also learns the advanced maneuver for its type. If your companion is Medium or smaller, it grows by one size. Its attacks become magical for the purpose of ignoring resistances."],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h3","page":214,"name":"Companion Types","entries":["The species of animal you choose is called your {@filter companion's type|companionsfamiliars||Type=Companion}. Each {@filter companion type|companionsfamiliars||Type=Companion} has its own statistics. The Size entry indicates your companion's starting size as a young animal companion. Following the size entry are the companion's unarmed attacks, and then its ability modifiers. The Hit Points entry indicates the companion's ancestry Hit Points. The Skill entry indicates an additional trained skill your companion has. The Senses entry lists your companion's special senses. The Speed entry gives your companion's Speeds. The Special entry, if present, lists any other special abilities your companion has, for example whether it often serves as a mount and is particularly appropriate for mounted classes, such as the champion.","The Support Benefit entry indicates a special benefit you gain by {@action Command an Animal||Commanding the Animal} to use the Support action (see below). The Advanced Maneuver entry indicates a powerful new action your companion learns how to use if it becomes a nimble or savage animal companion."],"source":"CRB"},{"type":"pf2-h3","page":217,"name":"Specialized Animal Companions","entries":["Specialized animal companions are more intelligent and engage in more complex behaviors. The first time an animal gains a specialization, it gains the following: Its proficiency rank for unarmed attacks increases to expert. Its proficiency ranks for saving throws and Perception increase to master.","Increase its Dexterity modifier by 1 and its Intelligence modifier by 2. Its unarmed attack damage increases from two dice to three dice, and it increases its additional damage with unarmed attacks from 2 to 4 or from 3 to 6.","Each specialization grants additional benefits. Most animal companions can have only one specialization.",{"type":"pf2-h4","page":217,"name":"Ambusher","entries":["In your companion's natural environment, it can use a Sneak action even if it's currently observed. Its proficiency rank in {@skill Stealth} increases to expert (or master if it was already an expert from its type), and its Dexterity modifier increases by 1. Its proficiency rank for unarmored defense increases to expert, or master if it's nimble."],"source":"CRB"},{"type":"pf2-h4","page":217,"name":"Bully","entries":["Your companion terrorizes foes with dominance displays and pushes them around the battlefield. Its proficiency ranks for {@skill Athletics} and {@skill Intimidation} increase to expert (or master if it was already expert from its type), its Strength modifier increases by 1, and its Charisma modifier increases by 3."],"source":"CRB"},{"type":"pf2-h4","page":217,"name":"Daredevil","entries":["Your companion joins the fray with graceful leaps and dives.","It gains the deny advantage ability, so it isn't {@condition flat-footed} to hidden, undetected, or flanking creatures unless such a creature's level is greater than yours. Its proficiency rank in {@skill Acrobatics} increases to master, and its Dexterity modifier increases by 1. Its proficiency rank in unarmored defense increases to expert, or master if it's nimble."],"source":"CRB"},{"type":"pf2-h4","page":217,"name":"Racer","entries":["Your companion races. It gains a +10-foot status bonus to its Speed, swim Speed, or fly Speed (your choice). Its proficiency in Fortitude saves increases to legendary, and its Constitution modifier increases by 1."],"source":"CRB"},{"type":"pf2-h4","page":217,"name":"Tracker","entries":["Your companion is an incredible tracker. It can move at full Speed while following tracks. Its proficiency rank in {@skill Survival} increases to expert (or master if it was already an expert from its type), and its Wisdom modifier increases by 1."],"source":"CRB"},{"type":"pf2-h4","page":217,"name":"Wrecker","entries":["Your companion smashes things. Its unarmed attacks ignore half an object's Hardness. Its {@skill Athletics} proficiency increases to master, and its Strength modifier increases by 1."],"source":"CRB"}],"data":{"quickrefIndex":true},"source":"CRB"}],"data":{"quickref":1},"source":"CRB"},{"type":"section","page":219,"name":"Archetypes","entries":[{"type":"pf2-h1-flavor","page":219,"entries":["{@i There are infinite possible character concepts, but you might find that the feats and skill choices from a single class aren't sufficient to fully realize your character. Archetypes allow you to expand the scope of your character's class.}"],"source":"CRB"},"Applying an archetype requires you to select archetype feats instead of class feats. Start by finding the archetype that best fits your character concept, and select the archetype's dedication feat using one of your class feat choices. Once you have the dedication feat, you can select any feat from that archetype in place of a class feat as long as you meet its prerequisites. The archetype feat you select is still subject to any selection restrictions on the class feat it replaces. For example, if you gained an ability at 6th level that granted you a 4th-level class feat with the dwarf trait, you could swap out that class feat only for an archetype feat of 4th level or lower with the dwarf trait. Archetype feats you gain in place of a class feat are called archetype class feats.","Occasionally, an archetype feat works like a skill feat instead of a class feat. These archetype feats have the skill trait, and you select them in place of a skill feat, otherwise following the same rules above. These are not archetype class feats (for instance, to determine the number of Hit Points you gain from the Fighter Resiliency archetype feat).","Each archetype's dedication feat represents a certain portion of your character's time and focus, so once you select a dedication feat for an archetype, you must satisfy its requirements before you can gain another dedication feat. Typically, you satisfy an archetype dedication feat by gaining a certain number of feats from the archetype's list. You cannot retrain a dedication feat as long as you have any other feats from that archetype.","Sometimes an archetype feat lets you gain another feat, such as the alchemist's basic concoction. You must always meet the prerequisites of the feat you gain in this way.","Two special kinds of archetypes are designated by the class and multiclass traits. The archetypes in this book are all multiclass archetypes.",{"type":"pf2-h3","page":219,"name":"Multiclass Archetypes","entries":["Archetypes with the multiclass trait represent diversifying your training into another class's specialties. You can't select a multiclass archetype's dedication feat if you are a member of the class of the same name (for instance, a fighter can't select the Fighter Dedication feat)."],"source":"CRB"},{"type":"pf2-h3","page":219,"name":"Class Archetypes","entries":["Archetypes with the class trait represent a fundamental divergence from your class's specialties, but one that exists within the context of your class. You can select a class archetype only if you are a member of the class of the same name. Class archetypes always alter or replace some of a class's static class features, in addition to any new feats they offer. It may be possible to take a class archetype at 1st level if it alters or replaces some of the class's initial class features.","In that case, you must take that archetype's dedication feat at 2nd level, and after that you proceed normally. You can never have more than one class archetype."],"source":"CRB"},{"type":"pf2-h4","page":219,"name":"Spellcasting Archetypes","entries":["Some archetypes grant you a substantial degree of spellcasting, albeit delayed compared to a character from a spellcasting class. In this book, the spellcasting archetypes are bard, cleric, druid, sorcerer, and wizard, the multiclass archetypes for the five main spellcasting classes, but future books might introduce spellcasting archetypes that aren't multiclass archetypes.","A spellcasting archetype allows you to use scrolls, staves, and wands in the same way that a member of a spellcasting class can.","Spellcasting archetypes always grant the ability to cast cantrips in their dedication, and then they have a basic spellcasting feat, an expert spellcasting feat, and a master spellcasting feat. These feats share their name with the archetype; for instance, the wizard's master spellcasting feat is called Master Wizard Spellcasting.","All spell slots you gain from spellcasting archetypes have restrictions depending on the archetype; for instance, the bard archetype grants you spell slots you can use only to cast occult spells from your bard repertoire, even if you are a sorcerer with occult spells in your sorcerer repertoire.","{@b Basic Spellcasting Feat:} Usually available at 4th level, these feats grant a 1st-level spell slot. At 6th level, they grant you a 2nd-level spell slot, and if you have a spell repertoire, you can select one spell from your repertoire as a signature spell. At 8th level, they grant you a 3rd-level spell slot. Archetypes refer to these benefits as the \"basic spellcasting benefits.\"","{@b Expert Spellcasting Feat:} Typically taken at 12th level, these feats make you an expert in spell attack rolls and DCs of the appropriate magical tradition and grant you a 4th-level spell slot. If you have a spell repertoire, you can select a second spell from your repertoire as a signature spell. At 14th level, they grant you a 5th-level spell slot, and at 16th level, they grant you a 6th-level spell slot. Archetypes refer to these benefits as the \"expert spellcasting benefits.\"","{@b Master Spellcasting Feat:} Usually found at 18th level, these feats make you a master in spell attack rolls and DCs of the appropriate magical tradition and grant you a 7th-level spell slot. If you have a spell repertoire, you can select a third spell from your repertoire as a signature spell. At 20th level, they grant you an 8th-level spell slot. Archetypes refer to these benefits as the \"master spellcasting benefits.\""],"data":{"quickrefIndex":true},"source":"CRB"},"{@note To view all Archetypes, please view the {@filter Archetypes page.|archetypes||source=CRB}}"],"data":{"quickref":1},"source":"CRB"},{"type":"section","page":19,"name":"Character Creation","entries":["Unless you're the GM, the first thing you need to do when playing Pathfinder is create your character. It's up to you to imagine your character's past experiences, personality, and worldview, and this will set the stage for your roleplaying during the game. You'll use the game's mechanics to determine your character's ability to perform various tasks and use special abilities during the game.","This section provides a step-by-step guide for creating a character using the Pathfinder rules, preceded by a guide to help you understand ability scores. These scores are a critical part of your character, and you will be asked to make choices about them during many of the following steps. The steps of character creation are presented in a suggested order, but you can complete them in whatever order you prefer.","Many of the steps on pages 21 –28 instruct you to fill out fields on your character sheet. The character sheet is shown on pages 24 –25; you can find a copy in the back of this book or online as a free pdf. The character sheet is designed to be easy to use when you're actually playing the game—but creating a character happens in a different order, so you'll move back and forth through the character sheet as you go through the character creation process. Additionally, the character sheet includes every field you might need, even though not all characters will have something to put in each field. If a field on your character sheet is not applicable to your character, just leave that field blank.","All the steps of character creation are detailed on the following pages; each is marked with a number that corresponds to the sample character sheet on pages 24 –25, showing you where the information goes. If the field you need to fill out is on the third or fourth page of the character sheet, which aren't shown, the text will tell you.","If you're creating a higher-level character, it's a good idea to begin with the instructions here, then turn to page 29 for instructions on leveling up characters.",{"type":"pf2-h3","page":19,"name":"The Six Ability Scores","entries":["One of the most important aspects of your character is their ability scores. These scores represent your character's raw potential and influence nearly every other statistic on your character sheet. Determining your ability scores is not done all at once, but instead happens over several steps during character creation.","Ability scores are split into two main groups: physical and mental. Strength, Dexterity, and Constitution are physical ability scores, measuring your character's physical power, agility, and stamina. In contrast, Intelligence, Wisdom, and Charisma are mental ability scores and measure your character's learned prowess, awareness, and force of personality.","Excellence in an ability score improves the checks and statistics related to that ability, as described below. When imagining your character, you should also decide what ability scores you want to focus on to give you the best chance at success.",{"type":"pf2-h4","page":19,"name":"Strength","entries":["Strength measures your character's physical power.","Strength is important if your character plans to engage in hand-to-hand combat. Your Strength modifier gets added to melee damage rolls and determines how much your character can carry."],"source":"CRB"},{"type":"pf2-h4","page":19,"name":"Dexterity","entries":["Dexterity measures your character's agility, balance, and reflexes. Dexterity is important if your character plans to make attacks with ranged weapons or use stealth to surprise foes. Your Dexterity modifier is also added to your character's AC and Reflex saving throws."],"source":"CRB"},{"type":"pf2-h4","page":19,"name":"Constitution","entries":["Constitution measures your character's overall health and stamina. Constitution is an important statistic for all characters, especially those who fight in close combat.","Your Constitution modifier is added to your Hit Points and Fortitude saving throws."],"source":"CRB"},{"type":"pf2-h4","page":19,"name":"Intelligence","entries":["Intelligence measures how well your character can learn and reason. A high Intelligence allows your character to analyze situations and understand patterns, and it means they can become trained in additional skills and might be able to master additional languages."],"source":"CRB"},{"type":"pf2-h4","page":19,"name":"Wisdom","entries":["Wisdom measures your character's common sense, awareness, and intuition. Your Wisdom modifier is added to your Perception and Will saving throws."],"source":"CRB"},{"type":"pf2-h4","page":19,"name":"Charisma","entries":["Charisma measures your character's personal magnetism and strength of personality. A high Charisma score helps you influence the thoughts and moods of others."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":20,"name":"Ability Score Overview","entries":["Each ability score starts at 10, representing human average, but as you make character choices, you'll adjust these scores by applying ability boosts, which increase a score, and ability flaws, which decrease a score. As you build your character, remember to apply ability score adjustments when making the following decisions.","{@b Ancestry:} Each ancestry provides ability boosts, and sometimes an ability flaw. If you are taking any voluntary flaws, apply them in this step (see the sidebar on page 24).","{@b Background:} Your character's background provides two ability boosts.","{@b Class:} Your character's class provides an ability boost to the ability score most important to your class, called your key ability score.","{@b Determine Scores:} After the other steps, you apply four more ability boosts of your choice. Then, determine your ability modifiers based on those scores.",{"type":"pf2-h4","page":20,"name":"Ability Boosts","entries":["An ability boost normally increases an ability score's value by 2. However, if the ability score to which you're applying an ability boost is already 18 or higher, its value increases by only 1. At 1st level, a character can never have any ability score that's higher than 18.","When your character receives an ability boost, the rules indicate whether it must be applied to a specific ability score or to one of two specific ability scores, or whether it is a \"free\" ability boost that can be applied to any ability score of your choice. However, when you gain multiple ability boosts at the same time, you must apply each one to a different score. Dwarves, for example, receive an ability boost to their Constitution score and their Wisdom score, as well as one free ability boost, which can be applied to any score other than Constitution or Wisdom."],"source":"CRB"},{"type":"pf2-h4","page":20,"name":"Ability Flaws","entries":["Ability flaws are not nearly as common in Pathfinder as ability boosts. If your character has an ability flaw—likely from their ancestry—you decrease that ability score by 2."],"source":"CRB"},{"type":"pf2-brown-box","page":20,"name":"ALTERNATIVE METHOD: ROLLING ABILITY SCORES","entries":["The standard method of generating ability scores that's described above works great if you want to create a perfectly customized, balanced character. But your GM may decide to add a little randomness to character creation and let the dice decide what kind of character the players are going to play. In that case, you can use this alternative method to generate your ability scores. Be warned—the same randomness that makes this system fun also allows it to sometimes create characters that are significantly more (or less) powerful than the standard ability score system and other Pathfinder rules assume.","If your GM opts for rolling ability scores, follow these alternative steps, ignoring all other instructions and guidelines about applying ability boosts and ability flaws throughout the character generation process.",{"type":"pf2-title","name":"STEP 1: ROLL AND ASSIGN SCORES"},"Roll four 6-sided dice (4d6) and discard the lowest die result.","Add the three remaining results together and record the sum.","(For example, if you rolled a 2, 4, 5, and 6, you would discard the 2 and your total would be 15.) Repeat this process until you've generated six such values. Decide which value you want for each of your ability scores.",{"type":"pf2-title","name":"STEP 2: ASSIGN ABILITY BOOSTS AND ABILITY FLAWS"},"Apply the ability boosts your character gains from their ancestry, but your character gets one fewer free ability boost than normal. If your character's ancestry has any ability flaws, apply those next. Finally, apply one ability boost to one of the ability scores specified in the character's background (you do not get the other free ability boost).","These ability boosts cannot raise a score above 18. If this would happen, you can put the ability boost into another ability score instead, as if it were a free ability boost, or you can put it into an ability score of 17 to reach 18 and lose the excess increase.",{"type":"pf2-title","name":"STEP 3: RECORD SCORES AND MODIFIERS"},"Record the final scores and assign the ability modifiers according to {@table ABILITY MODIFIERS||Table 1–1}. When your character receives additional ability boosts at higher levels, you assign them as any character would."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":20,"name":"Ability Modifiers","entries":["Once you've finalized your ability scores, you can use them to determine your ability modifiers, which are used in most other statistics in the game. Find the score in {@table ABILITY MODIFIERS||Table 1–1: Ability Modifiers} to determine its ability modifier.",{"type":"statblock","tag":"table","name":"Ability Modifiers","source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":21,"name":"Create a Concept","entries":["What sort of hero do you want to play? The answer to this question might be as simple as \"a brave warrior,\" or as complicated as \"the child of elven wanderers, but raised in a city dominated by humans and devoted to Sarenrae, goddess of the sun.\" Consider your character's personality, sketch out a few details about their past, and think about how and why they adventure. You'll want to peruse Pathfinder's available ancestries, backgrounds, and classes. The summaries on pages 22 –23 might help you match your concept with some of these basic rule elements. Before a game begins, it's also a good idea for the players to discuss how their characters might know each other and how they'll work together throughout the course of their adventures.","There are many ways to approach your character concept.","Once you have a good idea of the character you'd like to play, move on to Step 2 to start building your character.",{"type":"pf2-h3","page":21,"name":"Ancestry, Background, Class, or Details","entries":["If one of Pathfinder's character ancestries, backgrounds, or classes particularly intrigues you, it's easy to build a character concept around these options. The summaries of ancestries and classes on pages 22 –23 give a brief overview of these options (full details appear in Chapters 2 and 3, respectively). Each ancestry also has several heritages that might refine your concept further, such as a human with an elf or orc parent, or an arctic or woodland elf. Additionally, the game has many backgrounds to choose from, representing your character's upbringing, their family's livelihood, or their earliest profession. Backgrounds are detailed later in Chapter 2, beginning on page 60.","Building a character around a specific ancestry, background, or class can be a fun way to interact with the world's lore. Would you like to build a typical member of your character's ancestry or class, as described in the relevant entry, or would you prefer to play a character who defies commonly held notions about their people?","For example, you could play a dwarf with a wide-eyed sense of wonder and a zest for change, or a performing rogue capable of amazing acrobatic feats but with little interest in sneaking about.","You can draw your concept from any aspect of a character's details. You can use roleplaying to challenge not only the norms of Pathfinder's fictional world, but even real-life societal norms. Your character might challenge gender notions, explore cultural identity, have a disability, or any combination of these suggestions. Your character can live any life you see fit."],"source":"CRB"},{"type":"pf2-h3","page":21,"name":"Faith","entries":["Perhaps you'd like to play a character who is a devout follower of a specific deity. Pathfinder is a rich world with myriad faiths and philosophies spanning a wide range, from Cayden Cailean, the Drunken Hero of good-hearted adventuring; to Desna, the Song of Spheres and goddess of dreaming and the stars; to Iomedae, the Inheritor, goddess of honor, justice, and rulership. Pathfinder's major deities appear on pages 437–440. Your character might be so drawn to a particular faith that you decide they should be a champion or cleric of that deity; they might instead be a lay worshipper who applies their faith's teachings to daily life, or simply the child of devout parents."],"source":"CRB"},{"type":"pf2-brown-box","page":21,"name":"ANCESTRIES AND CLASSES","entries":["Each player takes a different approach to creating a character. Some want a character who will fit well into the story, while others look for a combination of abilities that complement each other mechanically. You might combine these two approaches. There is no wrong way!","When you turn the page, you'll see a graphical representation of ancestries and classes that provide at-aglance information for players looking to make the most of their starting ability scores. In the ancestries overview on page 22, each entry lists which ability scores it boosts, and also indicates any ability flaws the ancestry might have.","You can find more about ability boosts and ability flaws in Ability Scores on page 20.","The summaries of the classes on pages 22 –23 list each class's key ability score—the ability score used to calculate the potency of many of their class abilities. Characters receive an ability boost in that ability score when you choose their class. This summary also lists one or more secondary ability scores important to members of that class.","Keep in mind a character's background also affects their ability scores, though there's more flexibility in the ability boosts from backgrounds than in those from classes. For descriptions of the available backgrounds, see pages 60–64."],"source":"CRB"},{"type":"pf2-h3","page":21,"name":"Your Allies","entries":["You might want to coordinate with other players when forming your character concept. Your characters could have something in common already; perhaps they are relatives, or travelers from the same village. You might discuss mechanical aspects with the other players, creating characters whose combat abilities complement each other. In the latter case, it can be helpful for a party to include characters who deal damage, characters who can absorb damage, and characters who can provide healing.","However, Pathfinder's classes include a lot of choices, and there are many options for building each type of character, so don't let these broad categories restrict your decisions."],"source":"CRB"},{"type":"pf2-tips-box","page":21,"name":"CHARACTER SHEET","entries":["Once you've developed your character's concept, jot down a few sentences summarizing your ideas under the Notes section on the third page of your character sheet. Record any of the details you've already decided, such as your character's name, on the appropriate lines on the first page."],"source":"CRB"}],"step":"1","source":"CRB"},{"type":"pf2-h2","page":21,"name":"Start Building Ability Scores","entries":["At this point, you need to start building your character's ability scores. See the overview of ability scores on pages 19 –20 for more information about these important aspects of your character and an overview of the process.","Your character's ability scores each start at 10, and as you select your ancestry, background, and class, you'll apply ability boosts, which increase a score by 2, and ability flaws, which decrease a score by 2. At this point, just note a 10 in each ability score and familiarize yourself with the rules for ability boosts and flaws on page 20. This is also a good time to identify which ability scores will be most important to your character. See The Six Ability Scores on page 19 and the class summaries on pages 22 –23 for more information."],"step":"2","source":"CRB"},{"type":"pf2-h2","page":21,"name":"Select an Ancestry","entries":["Select an ancestry for your character. The ancestry summaries on page 22 provide an overview of Pathfinder's core ancestry options, and each is fully detailed in Chapter 2. Ancestry determines your character's size, Speed, and languages, and contributes to their Hit Points.","Each also grants ability boosts and ability flaws to represent the ancestry's basic capabilities.","You'll make four decisions when you select your character's ancestry:",{"type":"list","items":["Pick the ancestry itself.","Assign any free ability boosts and decide if you are taking any voluntary flaws.","Select a heritage from those available within that ancestry, further defining the traits your character was born with.","Choose an ancestry feat, representing an ability your hero learned at an early age."]},{"type":"pf2-tips-box","page":21,"name":"CHARACTER SHEET","entries":["Write your character's ancestry and heritage in the appropriate space at the top of your character sheet's first page. Adjust your ability scores, adding 2 to an ability score if you gained an ability boost from your ancestry, and subtracting 2 from an ability score if you gained an ability flaw from your ancestry. Note the number of Hit Points your character gains from their ancestry—you'll add more to this number later. Finally, in the appropriate spaces, record your character's size, Speed, and languages. If your character's ancestry provides them with special abilities, write them in the appropriate spaces, such as {@ability darkvision} in the Senses"],"source":"CRB"}],"step":"3","source":"CRB"},{"type":"pf2-h2","page":21,"name":"Pick a Background","entries":["Your character's background might represent their upbringing, an aptitude they've been honing since their youth, or another aspect of their life before they became an adventurer. Character backgrounds appear in Chapter 2, starting on page 60. They typically provide two ability boosts (one that can be applied to either of two specific ability scores, and one that is free), training in a specific skill, training in a Lore skill, and a specific skill feat.",{"type":"pf2-tips-box","page":21,"name":"CHARACTER SHEET","entries":["Record your character's background in the space at the top of the first page of your character sheet. Adjust your ability scores, adding 2 to an ability score if you gained an ability boost from your background. Record the skill feat the background provides in the Skill Feat section of your character sheet's second page. On the first page, check the \"T\" box next to the name of the specific skill and for one Lore skill to indicate your character is trained, then write the name of the Lore skill granted by your background."],"source":"CRB"}],"step":"4","source":"CRB"},{"type":"pf2-h2","page":21,"name":"Choose a Class","entries":["At this point, you need to decide your character's class.","A class gives your character access to a suite of heroic abilities, determines how effectively they fight, and governs how easily they can shake off or avoid certain harmful effects. Each class is fully detailed in Chapter 3, but the summaries on pages 22 –23 provide an overview of each and tells you which ability scores are important when playing that class.","You don't need to write down all of your character's class features yet. You simply need to know which class you want to play, which determines the ability scores that will be most important for your character.",{"type":"pf2-tips-box","page":21,"name":"CHARACTER SHEET","entries":["Write your character's class in the space at the top of the first page of your character sheet, then write \"1\" in the Level box to indicate that your character is 1st level. Next to the ability scores, note the class's key ability score, and add 2 to that ability score from the ability boost the class provides. Don't worry about recording the rest of your character's class features and abilities yet—you'll handle that in Step 7."],"source":"CRB"}],"step":"5","source":"CRB"},{"type":"pf2-h2","page":26,"name":"Determine Ability Scores","entries":[{"type":"pf2-sidebar","page":26,"name":"OPTIONAL: VOLUNTARY FLAWS","entries":["Sometimes, it's fun to play a character with a major flaw even if you're not playing an ancestry that imposes one. You can elect to take two additional ability flaws when applying the ability boosts and ability flaws from your ancestry. If you do, you can also apply one additional free ability boost. These ability flaws can be assigned to any ability score you like, but you can't apply more than one ability flaw to the same ability score during this step unless you apply both of the additional ability flaws to a score that is already receiving an ability boost during this step. In this case, the first ability flaw cancels the ability boost, and the second ability flaw decreases the score by 2. Likewise, as an exception to the normal rules for ability boosts, you can apply two free ability boosts to an ability score receiving an ability flaw during this step; the first ability boost cancels the ability flaw, and the second ability boost increases the score by 2. For example, a dwarf normally gets an ability boost to Constitution and Wisdom, along with an ability flaw to Charisma.","You could apply one ability flaw each to Intelligence and Strength, or you could apply both ability flaws to Wisdom. You could not apply either additional ability flaw to Charisma, though, because it is already receiving dwarves' ability flaw during this step."],"source":"CRB"},"Now that you've made the main mechanical choices about your character, it's time to finalize their ability scores. Do these three things:",{"type":"list","items":["First, make sure you've applied all the ability boosts and ability flaws you've noted in previous steps (from your ancestry, background, and class).","Then, apply four more ability boosts to your character's ability scores, choosing a different ability score for each and increasing that ability score by 2.","Finally, record your starting ability scores and ability modifiers, as determined using {@table ABILITY MODIFIERS||Table 1–1: Ability Modifiers}."]},"Remember that each ability boost adds 2 to the base score of 10, and each ability flaw subtracts 2. You should have no ability score lower than 8 or higher than 18.",{"type":"pf2-tips-box","page":26,"name":"CHARACTER SHEET","entries":["Write your character's starting ability scores in the box provided for each. Record the ability modifier for each ability score in the box to the left of the ability's name."],"source":"CRB"}],"step":"6","source":"CRB"},{"type":"pf2-h2","page":26,"name":"Record Class Details","entries":["Now, record all the benefits and class features that your character receives from the class you've chosen. While you've already noted your key ability score, you'll want to be sure to record the following class features.",{"type":"pf2-sidebar","page":27,"name":"SPELLS AND SPELLCASTING","entries":["Most classes can learn to cast a few focus spells, but the bard, cleric, druid, sorcerer, and wizard all gain spellcasting—the ability to cast a wide variety of spells.","If your character's class grants spells, you should take time during Step 7 to learn about the spells they know and how to cast them. The fourth page of the character sheet provides space to note your character's magic tradition and their proficiency rank for spell attack rolls and spell DCs. It also gives ample space to record the spells in your character's repertoire or spellbook, or that you prepare frequently. Each class determines which spells a character can cast, how they are cast, and how many they can cast in a day, but the spells themselves and detailed rules for spellcasting are located in Chapter 7."],"source":"CRB"},{"type":"list","items":["To determine your character's total starting Hit Points, add together the number of Hit Points your character gains from their ancestry (chosen in Step 2) and the number of Hit Points they gain from their class.","The Initial Proficiencies section of your class entry indicates your character's starting proficiency ranks in a number of areas. Choose which skills your character is trained in and record those, along with the ones set by your class. If your class would make you trained in a skill you're already trained in (typically due to your background), you can select another skill to become trained in.","See the class advancement table in your class entry to learn the class features your character gains at 1st level—but remember, you already chose an ancestry and background. Some class features require you to make additional choices, such as selecting spells."]},{"type":"pf2-tips-box","page":26,"name":"CHARACTER SHEET","entries":["Write your character's total Hit Points on the first page of your character sheet. Use the proficiency fields (the boxes marked \"T,\" \"E,\" \"M,\" and \"L\") on your character sheet to record your character's initial proficiencies in Perception, saving throws, and the skills granted by their class; mark \"T\" if your character is trained, or \"E\" if your character is expert. Indicate which additional skills you chose for your character to be trained in by marking the \"T\" proficiency box for each skill you selected. Likewise, record your character's their armor proficiencies in the Armor Class section at the top of the first page and their weapon proficiencies at the bottom of the first page. Record all other class feats and abilities on the second page. Don't worry yet about finalizing any values for your character's statistics—you'll handle that in Step 9."],"source":"CRB"}],"step":"7","source":"CRB"},{"type":"pf2-h2","page":27,"name":"Buy Equipment","entries":["At 1st level, your character has 15 gold pieces (150 silver pieces) to spend on armor, weapons, and other basic equipment. Your character's class lists the types of weapons and armor with which they are trained (or better!). Their weapons determine how much damage they deal in combat, and their armor influences their Armor Class; these calculations are covered in more detail in Step 10. Don't forget essentials such as food and traveling gear! For more on the available equipment and how much it costs, see Chapter 6.",{"type":"pf2-tips-box","page":27,"name":"CHARACTER SHEET","entries":["Once you've spent your character's starting wealth, calculate any remaining gp, sp, and cp they might still have and write those amounts in Inventory on the second page. Record your character's weapons in the Melee Strikes and Ranged Strikes sections of the first page, depending on the weapon, and the rest of their equipment in the Inventory section on your character sheet's second page. You'll calculate specific numbers for melee Strikes and ranged Strikes with the weapons in Step 9 and for AC when wearing that armor in Step 10."],"source":"CRB"}],"step":"8","source":"CRB"},{"type":"pf2-h2","page":27,"name":"Calculate Modifiers","entries":["With most of the big decisions for your character made, it's time to calculate the modifiers for each of the following statistics. If your proficiency rank for a statistic is trained, expert, master, and legendary, your bonus equals your character's level plus another number based on the rank (2, 4, 6, and 8, respectively). If your character is untrained, your proficiency bonus is +0.",{"type":"pf2-h3","page":27,"name":"Perception","entries":["Your character's Perception modifier measures how alert they are. This modifier is equal to their proficiency bonus in Perception plus their Wisdom modifier. For more about Perception, see page 448."],"source":"CRB"},{"type":"pf2-h3","page":27,"name":"Saving Throws","entries":["For each kind of saving throw, add your character's Fortitude, Reflex, or Will proficiency bonus (as appropriate) plus the ability modifier associated with that kind of saving throw. For Fortitude saving throws, use your character's Constitution modifier. For Reflex saving throws, use your character's Dexterity modifier. For Will saving throws, use your character's Wisdom modifier. Then add in any bonuses or penalties from abilities, feats, or items that always apply (but not modifiers, bonuses, or penalties that apply only in certain situations). Record this number on the line for that saving throw."],"source":"CRB"},{"type":"pf2-h3","page":27,"name":"Melee Strikes and Ranged Strikes","entries":["Next to where you've written your character's melee and ranged weapons, calculate the modifier to Strike with each weapon and how much damage that Strike deals. The modifier for a Strike is equal to your character's proficiency bonus with the weapon plus an ability modifier (usually Strength for melee Strikes and Dexterity for ranged Strikes).","You also add any item bonus from the weapon and any other permanent bonuses or penalties. You also need to calculate how much damage each weapon's Strike deals.","Melee weapons usually add your character's Strength modifier to damage rolls, while ranged weapons might add some or all of your character's Strength modifier, depending on the weapon's traits. See the weapon entries in Chapter 6 for more information."],"source":"CRB"},{"type":"pf2-h3","page":28,"name":"Skills","entries":["In the second box to the right of each skill name on your character sheet, there's an abbreviation that reminds you of the ability score tied to that skill. For each skill in which your character is trained, add your proficiency bonus for that skill (typically +3 for a 1st-level character) to the indicated ability's modifier, as well as any other applicable bonuses and penalties, to determine the total modifier for that skill. For skills your character is untrained in, use the same method, but your proficiency bonus is +0."],"source":"CRB"},{"type":"pf2-tips-box","page":28,"name":"CHARACTER SHEET","entries":["For Perception and saving throws, write your proficiency bonus and the appropriate ability modifier in the boxes provided, then record the total modifier in the large space.","Record the proficiency bonuses, ability modifiers, and total modifiers for your melee Strikes and ranged Strikes in the box after the name of each weapon, and put the damage for each in the space below, along with the traits for that attack. For skills, record the relevant ability modifier and proficiency bonus in the appropriate box for each skill, and then write the total skill modifiers in the spaces to the left.","If your character has any modifiers, bonuses, or penalties from feats or abilities that always apply, add them into the total modifiers. For ones that apply only in certain situations, note them next to the total modifiers."],"source":"CRB"}],"step":"9","source":"CRB"},{"type":"pf2-h2","page":28,"name":"Finishing Details","entries":["Now add the following details to your character sheet in the appropriate spaces.",{"type":"pf2-h3","page":28,"name":"Alignment","entries":["Your character's alignment is an indicator of their morality and personality. There are nine possible alignments in Pathfinder, as shown on Table 1 –2: The Nine Alignments. If your alignment has any components other than neutral, your character gains the traits of those alignment components. This might affect the way various spells, items, and creatures interact with your character.","Your character's alignment is measured by two pairs of opposed values: the axis of good and evil and the axis of law and chaos. A character who isn't committed strongly to either side is neutral on that axis. Keep in mind that alignment is a complicated subject, and even acts that might be considered good can be used for nefarious purposes, and vice versa. The GM is the arbiter of questions about how specific actions might affect your character's alignment.","If you play a champion, your character's alignment must be one allowed for their deity and cause (pages 437–440 and 106–107), and if you play a cleric, your character's alignment must be one allowed for their deity (pages 437–440).",{"type":"pf2-h4","page":29,"name":"Good and Evil","entries":["Your character has a good alignment if they consider the happiness of others above their own and work selflessly to assist others, even those who aren't friends and family. They are also good if they value protecting others from harm, even if doing so puts the character in danger. Your character has an evil alignment if they're willing to victimize others for their own selfish gain, and even more so if they enjoy inflicting harm. If your character falls somewhere in the middle, they're likely neutral on this axis."],"source":"CRB"},{"type":"pf2-h4","page":29,"name":"Law and Chaos","entries":["Your character has a lawful alignment if they value consistency, stability, and predictability over flexibility.","Lawful characters have a set system in life, whether it's meticulously planning day-to-day activities, carefully following a set of official or unofficial laws, or strictly adhering to a code of honor. On the other hand, if your character values flexibility, creativity, and spontaneity over consistency, they have a chaotic alignment—though this doesn't mean they make decisions by choosing randomly.","Chaotic characters believe that lawful characters are too inflexible to judge each situation by its own merits or take advantage of opportunities, while lawful characters believe that chaotic characters are irresponsible and flighty.","Many characters are in the middle, obeying the law or following a code of conduct in many situations, but bending the rules when the situation requires it. If your character is in the middle, they are neutral on this axis."],"source":"CRB"},{"type":"pf2-h4","page":29,"name":"Changing Alignment","entries":["Alignment can change during play as a character's beliefs change, or as you realize that your character's actions reflect a different alignment than the one on your character sheet. In most cases, you can just change their alignment and continue playing. However, if you play a cleric or champion and your character's alignment changes to one not allowed for their deity (or cause, for champions), your character loses some of their class abilities until they atone (as described in the class)."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":29,"name":"Deity","entries":["Write down the deity your character worships, if any.","Champions and clerics must worship a deity. See pages 437–440 for more about Pathfinder's deities."],"source":"CRB"},{"type":"pf2-h3","page":29,"name":"Age","entries":["Decide your character's age and note it on the third page of the character sheet. The description for your character's ancestry in Chapter 2 gives some guidance on the age ranges of members of that ancestry. Beyond that, you can play a character of whatever age you like. There aren't any mechanical adjustments to your character for being particularly old, but you might want to take it into account when considering your starting ability scores and future advancement. Particularly young characters can change the tone of some of the game's threats, so it's recommended that characters are at least young adults."],"source":"CRB"},{"type":"pf2-h3","page":29,"name":"Gender and Pronouns","entries":["Characters of all genders are equally likely to become adventurers. Record your character's gender, if applicable, and their pronouns on the third page of the character sheet."],"source":"CRB"},{"type":"pf2-h3","page":29,"name":"Class DC","entries":["A class DC sets the difficulty for certain abilities granted by your character's class. This DC equals 10 plus their proficiency bonus for their class DC (+3 for most 1st-level characters) plus the modifier for the class's key ability score."],"source":"CRB"},{"type":"pf2-h3","page":29,"name":"Hero Points","entries":["Your character usually begins each game session with 1 Hero Point, and you can gain additional Hero Points during sessions by performing heroic deeds or devising clever strategies. Your character can use Hero Points to gain certain benefits, such as staving off death or rerolling a d20. See page 467 for more about Hero Points."],"source":"CRB"},{"type":"pf2-h3","page":29,"name":"Armor Class (AC)","entries":["Your character's Armor Class represents how difficult they are to hit in combat. To calculate your AC, add 10 plus your character's Dexterity modifier (up to their armor's Dexterity modifier cap; page 274), plus their proficiency bonus with their armor, plus their armor's item bonus to AC and any other permanent bonuses and penalties."],"source":"CRB"},{"type":"pf2-h3","page":29,"name":"Bulk","entries":["Your character's maximum Bulk determines how much weight they can comfortably carry. If they're carrying a total amount of Bulk that exceeds 5 plus their Strength modifier, they are encumbered. A character can't carry a total amount of Bulk that exceeds 10 plus their Strength modifier. The Bulk your character is carrying equals the sum of all of their items; keep in mind that 10 light items make up 1 Bulk. You can find out more about Bulk in Chapter 6: Equipment."],"source":"CRB"}],"step":"10","source":"CRB"}],"data":{"quickref":1},"source":"CRB"},{"type":"section","page":487,"name":"Characters With Disabilities","entries":["A player might want to create a character with a disability, or their character might end up with a disability over the course of play. Work with the player to find ways to respectfully represent the disability. Conditions such as blinded and deafened aren't a good fit for a character who has been living with a disability long-term. Here are suggestions for rules you might use for PCs with disabilities.",{"type":"pf2-h3","name":"Blindness or Impaired Vision"},"A blind character can't detect anything using vision, critically fails {@skill Perception} checks requiring sight, is immune to {@trait visual} effects, and can't be {@condition blinded} or {@condition dazzled}. You might give this character the {@feat Blind-Fight (Fighter)||Blind-Fight} feat for free.","A character with impaired vision might take a –2 to –4 penalty to vision-based {@skill Perception} checks. {@item Basic Corrective Lenses|LOTGB|Spectacles} or {@filter other corrective devices|items||source=|type=|Subcategory=Vision} might reduce or remove this.",{"type":"pf2-h3","name":"Deafness or Being Hard of Hearing"},"A deaf character can't detect anything using hearing, critically fails {@skill Perception} checks that require hearing, and is immune to {@trait auditory} effects. They have enough practice to supply verbal components for casting spells and command components for activating magic items, but if they perform an action they're not accustomed to that involves auditory elements, they must succeed at a DC {@flatDC 5} flat check or the action is lost. It's best to give them the {@feat Sign Language} feat for free, and you might give them {@feat Read Lips} as well. You might give one or more other characters in the group {@feat Sign Language} for free as well.","A hard-of-hearing character might take a –2 to –4 penalty to {@skill Perception} checks that are hearing-based. {@filter Corrective devices for hearing|items||Subcategory=Hearing} are less common than spectacles are in a typical Pathfinder world.",{"type":"pf2-h3","name":"Missing Limb"},"Some magic items require certain limbs or other body parts. It's fine to allow an alternative form of the item, turning boots into bracers for a character without legs, for example.","A character with a missing hand or arm might need to spend 2 actions to {@action Interact} with an item that requires two hands, or otherwise compensate. Using a two-handed weapon is not possible. A character can acquire a {@filter prosthetic hand or arm|items||source=|type=|subcategory=prosthesis} to compensate.","Someone missing a foot or leg might take a small penalty to Speed, but can typically acquire a prosthetic to compensate. If they have no legs, they might use a {@filter wheelchair|items||source=|type=|subcategory=wheelchair}, a dependable mount, or levitation or flight magic.",{"type":"pf2-h3","name":"Mental Illness and Chronic Illness"},"Some disabilities, such as mental illness and chronic illnesses, are best left to the player to roleplay. Mental illness is an especially fraught topic, with a history of insensitive portrayal. Be careful about the intentions of the player and the impact the presentation might have on other players."],"data":{"quickref":1},"source":"CRB"},{"type":"section","page":217,"name":"Familiars","entries":["Familiars are mystically bonded creatures tied to your magic. Most familiars were originally animals, though the ritual of becoming a familiar makes them something more. You can choose a Tiny animal you want as your familiar, such as a bat, cat, raven, or snake. Some familiars are different, usually described in the ability that granted you a familiar; for example, a druid's leshy familiar is a Tiny plant instead of an animal, formed from a minor nature spirit.","Familiars have the minion trait (page 634), so during an encounter, they gain 2 actions in a round if you spend an action to command them. If your familiar dies, you can spend a week of downtime to replace it at no cost.","You can have only one familiar at a time.",{"type":"pf2-h3","page":217,"name":"Modifiers and AC","entries":["Your familiar's save modifiers and AC are equal to yours before applying circumstance or status bonuses or penalties. Its Perception, {@skill Acrobatics}, and {@skill Stealth} modifiers are equal to your level plus your spellcasting ability modifier (Charisma if you don't have one, unless otherwise specified). If it attempts an attack roll or other skill check, it uses your level as its modifier. It doesn't have or use its own ability modifiers and can never benefit from item bonuses."],"source":"CRB"},{"type":"pf2-h3","page":217,"name":"Hit Points","entries":["Your familiar has 5 Hit Points for each of your levels."],"source":"CRB"},{"type":"pf2-h3","page":218,"name":"Size","entries":["Your familiar is Tiny."],"source":"CRB"},{"type":"pf2-h3","page":218,"name":"Senses","entries":["Your familiar has {@ability low-light vision} and can gain additional senses from familiar abilities. It can communicate empathically with you as long as it's within 1 mile of you, sharing emotions. It doesn't understand or speak languages normally, but it can gain speech from a familiar ability."],"source":"CRB"},{"type":"pf2-h3","page":218,"name":"Movement","entries":["Your familiar has either a Speed of 25 feet or a swim Speed of 25 feet (choose one upon gaining the familiar).","It can gain other movement types from familiar abilities."],"source":"CRB"},{"type":"pf2-h3","page":218,"name":"Familiar and Master Abilities","entries":["Each day, you channel your magic into two abilities, which can be either familiar or master abilities. If your familiar is an animal that naturally has one of these abilities (for instance, an owl has a fly Speed), you must select that ability. Your familiar can't be an animal that naturally has more familiar abilities than your daily maximum familiar abilities.",{"type":"pf2-h4","page":218,"name":"Familiar Abilities","entries":[{"type":"pf2-options","style":"pf2-p text-indent-subsequent block","items":[{"name":"Amphibious","entries":["It gains a swim Speed of 25 feet (or Speed of 25 feet if it already has a swim Speed)."]},{"name":"Burrower","entries":["It gains a burrow Speed of 5 feet, allowing it to dig Tiny holes."]},{"name":"Climber","entries":["It gains a climb Speed of 25 feet."]},{"name":"Damage Avoidance","entries":["Choose one type of save. It takes no damage when it succeeds at that type of save; this doesn't prevent effects other than damage."]},{"name":"Darkvision","entries":["It gains {@ability darkvision}."]},{"name":"Fast Movement","entries":["Increase one of the familiar's Speeds from 25 feet to 40 feet."]},{"name":"Flier","entries":["It gains a fly Speed of 25 feet."]},{"name":"Kinspeech","entries":["It can understand and speak with animals of the same species. To select this, your familiar must be an animal, it must have the speech ability, and you must be at least 6th level."]},{"name":"Lab Assistant","entries":["It can use your Quick Alchemy action. You must have Quick Alchemy, and your familiar must be in your space. This has the same cost and requirement as if you used it. It must have the manual dexterity ability to select this."]},{"name":"Manual Dexterity","entries":["It can use up to two of its limbs as if they were hands to use manipulate actions."]},{"name":"Scent","entries":["It gains {@ability scent} (imprecise, 30 feet)."]},{"name":"Speech","entries":["It understands and speaks a language you know."]}]}],"source":"CRB"},{"type":"pf2-h4","page":218,"name":"Master Abilities","entries":[{"type":"pf2-options","style":"pf2-p text-indent-subsequent block","items":[{"name":"Cantrip Connection","entries":["You can prepare an additional cantrip, or if you have a repertoire, instead designate a cantrip to add to your repertoire every time you select this ability; you can retrain it but can't otherwise change it. You must be able to prepare cantrips or add them to your repertoire to select this."]},{"name":"Extra Reagents","entries":["Your familiar grows extra infused reagents on or in its body. You gain an additional batch of infused reagents. You must have the infused reagents ability to select this ability."]},{"name":"Familiar Focus","entries":["Once per day, your familiar can use 2 actions with the {@trait concentrate} to regain 1 Focus Point, up to your usual maximum You must have a focus pool to select this."]},{"name":"Lifelink","entries":["If your familiar would be reduced to 0 HP by damage, as a reaction with the {@trait concentrate}, you can take the damage. If you do, you take all the damage and your familiar takes none. However, if special effects when a hit damages your familiar (such as snake venom) still apply to your familiar."]},{"name":"Spell Battery","entries":["You gain one additional spell slot at least 3 levels lower than your highest-level spell slot; you must be able to cast 4th-level spells using spell slots to select this master ability."]},{"name":"Spell Delivery","entries":["If your familiar is in your space, you can cast a spell with a range of touch, transfer its power to your familiar, and command the familiar to deliver the spell. If you do, the familiar uses its 2 actions for the round to move to a target of your choice and touch that target. If it doesn't reach the target to touch it this turn, the spell has no effect."]}]}],"source":"CRB"}],"source":"CRB"}],"data":{"quickref":1},"source":"CRB"},{"type":"section","page":31,"name":"Leveling Up","entries":["The world of Pathfinder is a dangerous place, and your character will face terrifying beasts and deadly traps on their journey into legend. With each challenge resolved, a character earns Experience Points (XP) that allow them to increase in level. Each level grants greater skill, increased resiliency, and new capabilities, allowing your character to face even greater challenges and go on to earn even more impressive rewards.","Each time your character reaches 1,000 Experience Points, their level increases by 1. On your character sheet, indicate your character's new level beside the name of their class, and deduct 1,000 XP from their XP total. If you have any Experience Points left after this, record them—they count toward your next level, so your character is already on their way to advancing yet again!","Next, return to your character's class entry. Increase your character's total Hit Points by the number indicated for your class. Then, take a look at the class advancement table and find the row for your character's new level.","Your character gains all the abilities listed for that level, including new abilities specific to your class and additional benefits all characters gain as they level up.","For example, all characters gain four ability boosts at 5th level and every 5 levels thereafter.","You can find all the new abilities specific to your class, including class feats, right in your class entry, though you can also use class feats to take an archetype (page 219).","Your character's class entry also explains how to apply any ability boosts and skill increases your character gains.","If they gain an ancestry feat, head back to the entry for your character's ancestry in Chapter 2 and select another ancestry feat from the list of options. If they gain a skill increase, refer to Chapter 4 when deciding which skill to apply it to. If they gain a general feat or a skill feat, you can choose from the feats listed in Chapter 5. If they can cast spells, see the class entry for details on adding spell slots and spells. It's also a good idea to review your character's spells in Chapter 7 and see if there are heightened versions they can now cast.","Once you've made all your choices for your character's new level, be sure to go over your character sheet and adjust any values that have changed. At a bare minimum, your proficiency bonuses all increase by 1 because you've gained a level, so your AC, attack rolls, Perception, saving throws, skill modifiers, spell attack rolls, and class DC all increase by at least 1. You might need to change other values because of skill increases, ability boosts, or class features that either increase your proficiency rank or increase other statistics at certain levels. If an ability boost increases your character's Constitution modifier, recalculate their maximum Hit Points using their new Constitution modifier (typically this adds 1 Hit Point per level). If an ability boost increases your character's Intelligence modifier, they become trained in an additional skill and language.","Some feats grant a benefit based on your level, such as Toughness, and these benefits are adjusted whenever you gain a level as well.","You can perform the steps in the leveling-up process in whichever order you want. For example, if you wanted to take the skill feat Intimidating Prowess as your skill feat at 10th level, but your character's Strength score was only 14, you could first increase their Strength score to 16 using the ability boosts gained at 10th level, and then take Intimidating Prowess as a skill feat at the same level.",{"type":"pf2-h3","page":31,"name":"Leveling-Up Checklist","entries":["Every time you gain a level, make sure you do each of the following:",{"type":"list","items":["Increase your level by 1 and subtract 1,000 XP from your XP total.","Increase your maximum Hit Points by the amount listed in your class entry in Chapter 3.","Add class features from your class advancement table, including ability boosts and skill increases.","Select feats as indicated on your class advancement table. For ancestry feats, see Chapter 2. For class feats, see your class entry in Chapter 3. For general feats and skill feats, see Chapter 5.","Add spells and spell slots if your class grants spellcasting. See Chapter 7 for spells.","Increase all of your proficiency bonuses by 1 from your new level, and make other increases to your proficiency bonuses as necessary from skill increases or other class features. Increase any other statistics that changed as a result of ability boosts or other abilities.","Adjust bonuses from feats and other abilities that are based on your level."]}],"source":"CRB"}],"data":{"quickref":1},"source":"CRB"}]},{"type":"entries","entries":[{"type":"section","page":532,"name":"Activating Items","entries":["Some items produce their effects only when used properly in the moment. Others always offer the same benefits as their mundane counterparts when worn, but have magical abilities you can gain by further spending actions. Either case requires you to use the Activate an Item activity. {@action Activate an Item||Activating an Item} works much like {@action Cast a Spell||Casting a Spell}, in that the activity takes a variable number of actions and can have different components depending on how you Activate the Item. This information appears in the item's Activate entry.","If an item is used up when activated, as is the case for consumable items, its Activate entry appears toward the top of the stat block. For permanent items with activated abilities, the Activate entry is a paragraph in the description. Activations are not necessarily magical—for instance, drinking an alchemical elixir isn't usually a magical effect.",{"type":"statblock","tag":"action","name":"Activate an Item","source":"CRB"},{"type":"pf2-brown-box","page":532,"name":"DISRUPTING ACTIVATIONS","entries":["Some abilities and effects can disrupt the process of {@action Activate an Item||Activating an Item}. If something disrupts your item activation, you fail to Activate the Item and lose the actions you committed. If the item can be activated only a certain number of times per day, the failed activation still counts against that limit. If an item requires you to spend actions to Sustain an Activation and one of those actions is disrupted, the item's effect ends."],"source":"CRB"},{"type":"pf2-h3","page":533,"name":"Activation Components","entries":["An item's activate entry lists the components required to activate its abilities. Each component adds certain traits to the Activate an Item activity, and some components have special requirements. The components that appear in this book are listed below.",{"type":"pf2-h4","page":533,"name":"Command","entries":["This component is a specific utterance you must make in a loud and strong voice. Activate an Item gains the auditory and {@trait concentrate}s. You must be able to speak to provide this component."],"source":"CRB"},{"type":"pf2-h4","page":533,"name":"Envision","entries":["This component is a specific image or phenomenon you need to imagine. Activate an Item gains the {@trait concentrate}."],"source":"CRB"},{"type":"pf2-h4","page":533,"name":"Interact","entries":["This component works like the Interact basic action.","Activate an Item gains the manipulate trait and requires you to use your hands, just like with any Interact action."],"source":"CRB"},{"type":"pf2-h4","page":533,"name":"Cast a Spell","entries":["If an item lists \"{@action Cast a Spell}\" after \"Activate,\" the activation requires you to use the {@action Cast a Spell} activity (described on page 302) to Activate the Item. This happens when the item replicates a spell. You must have a spellcasting class feature to Activate an Item with this activation component.","If the item can be used for a specific spell, the action icon for that spell is provided. If it's an item like a staff, which can be used for many spells, the icon is omitted, and you must refer to each spell to determine which actions you must spend to Activate the Item to cast it.","In this case, Activate an Item gains all the traits from the relevant components of the {@action Cast a Spell} activity."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":533,"name":"Limited Activations","entries":["Some items can be activated only a limited number of times per day, as described in the items. This limit is independent of any costs for activating the item. The limit resets during your daily preparations. The limit is inherent to the item, so if an ability that can be used only once per day is used, it doesn't refresh if another creature later invests or tries to activate the item."],"source":"CRB"},{"type":"pf2-brown-box","page":533,"name":"ITEM CATEGORIES","entries":["Items are grouped into the following categories, shown here with the page number where those items appear and a brief description of the category.",{"type":"list","items":["{@b {@filter Alchemical Items|items||source=CRB|category=Bomb;Poison;Elixir}} are powered by the reactions of alchemical reagents. Almost all alchemical items are consumable items that are used up when you activate them. This category includes bombs, elixirs (including mutagens), poisons, and alchemical tools.","{@b {@filter Ammunition|items||source=CRB|category=Ammunition}}, in Consumables, includes different types of magical arrows, crossbow bolts, and other types of ammunition.","{@b {@filter Apex Items|items||source=CRB|category=Apex}} are a subcategory of worn items of a high level that increase an ability score.","{@b {@filter Armor|items||source=CRB|category=armor}} includes the rules for basic magical armor as well as special suits of armor.","{@b {@filter Companion Items|items||source=CRB|category=companion}} are a category of worn items meant for animal companions and mounts.","{@b {@filter Consumables|items||source=CRB|category=consumable}} are used up when you activate them, and include ammunition, oils, potions, scrolls, and talismans, among others. Categories of items that are consumables but have specific rules, such as alchemical items, are presented separately.","{@b {@filter Held Items|items||source=CRB|category=held}} include a wide variety of items you use with your hands. This doesn't include more narrow categories of held items, such as weapons.","{@b {@filter Materials|items||source=CRB|category=material}} can be used to make items with unique properties and other advantages.","{@b {@filter Oils|items||source=CRB|category=oil}} are consumables applied to the surface of an object or person.","{@b {@filter Potions|items||source=CRB|category=potion}} are consumable magical liquids you drink to activate.","{@b {@filter Runes|items||source=CRB|category=rune}} modify armor and weapons when etched onto them. This section includes fundamental runes for weapons ({@item weapon potency (generic)||weapon potency} and {@item striking (generic)||striking}) and armor ({@item armor potency (generic)||armor potency} and {@item resilient (generic)||resilient}).","{@b {@filter Scrolls|items||source=CRB|category=scroll}} are consumables that allow spellcasters to cast more spells.","{@b {@filter Shields|items||source=CRB|category=shield}} include more durable shields and ones with special magical powers.","{@b {@filter Snares|items||source=CRB|category=snare}} are single-use traps typically made by rangers.","{@b {@filter Staves|items||source=CRB|category=staff}} provide flexible spellcasting options.","{@b {@filter Structures|items||source=CRB|category=structure}} include buildings, tents, and other larger items.","{@b {@filter Talismans|items||source=CRB|category=talisman}} are consumables that are affixed to items and then activated for a one-time combat or physical benefit.","{@b {@filter Wands|items||source=CRB|category=wand}} hold a spell of the crafter's choice, and can be used to repeatedly cast that spell.","{@b {@filter Weapons|items||source=CRB|category=weapon}} include the rules for basic magical weapons, weapons made from precious materials, and specific magic weapons.","{@b {@filter Worn Items|items||source=CRB|category=worn}} consist of a vast collection of clothing and other items you wear on your body."]}],"source":"CRB"},{"type":"pf2-h3","page":533,"name":"Sustaining Activations","entries":["Some items, once activated, have effects that can be sustained if you concentrate on them. This works much like the Sustain a Spell action (found on page 304). If an item's description states that you can sustain the effect, that effect lasts until the end of your turn in the round after you Activated the Item. You can use a Sustain an Activation action on that turn to extend the duration.",{"type":"statblock","tag":"action","name":"Sustain an Activation","source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":534,"name":"Dismissing Activations","entries":["Some item effects can be dismissed, ending the duration early due to you or the target taking action. Dismissing an activation requires using the Dismiss action.",{"type":"statblock","tag":"action","name":"Dismiss","source":"CRB"}],"source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":294,"name":"Animals","entries":["The Prices for animals are listed both for renting and for purchasing them outright. You usually need to pay for animal rentals up front, and if the vendor believes the animal might be put in danger, they typically require a deposit equal to the purchase Price. Most animals panic in battle. When combat begins, they become {@condition frightened||frightened 4} and {@condition fleeing} as long as they're {@condition frightened}. If you successfully {@action Command your Animal} using {@skill Nature}, you can keep it from fleeing, though this doesn't remove its frightened condition. If the animal is attacked or damaged, it returns to {@condition frightened||frightened 4} and {@condition fleeing}, with the same exceptions.","Warhorses and warponies are combat trained. They don't become {@condition frightened} or {@condition fleeing} during encounters in this way.",{"type":"statblock","tag":"table","name":"Animals","source":"CRB"},{"type":"pf2-h3","page":295,"name":"Barding","entries":["You can purchase special armor for animals, called barding (shown on {@table Barding||Table 6–18}). All animals have a trained proficiency rank in light barding, and combat-trained animals are trained in heavy barding. Barding uses the same rules as armor except for the following. The Price and Bulk of barding depend on the animal's size. Unlike for a suit of armor, barding's Strength entry is listed as a modifier, not a score. Barding can't be etched with magic runes, though special magical barding might be available.",{"type":"statblock","tag":"table","name":"Barding","source":"CRB"}],"source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":274,"name":"Armor","entries":[{"type":"pf2-h1-flavor","page":274,"entries":["{@i Armor increases your character's defenses, but some medium or heavy armor can hamper movement. If you want to increase your character's defense beyond the protection your armor provides, they can use a shield. Armor protects your character only while they're wearing it.}"],"source":"CRB"},{"type":"pf2-h2","page":274,"name":"Armor Class","entries":["Your {@b Armor Class} ({@b AC}) measures how well you can defend against attacks. When a creature attacks you, your Armor Class is the DC for that attack roll.",{"type":"pf2-inset","page":274,"entries":["Armor Class = 10 + Dexterity modifier (up to your armor's Dex Cap) + proficiency bonus + armor's item bonus to AC + other bonuses + penalties"],"source":"CRB"},"Use your proficiency bonus for the category (light, medium, or heavy) or the specific type of armor you're wearing. If you're not wearing armor, use your proficiency in unarmored defense."],"source":"CRB"},{"type":"pf2-h2","page":274,"name":"Donning and Removing Armor","entries":["Getting in and out of armor is time consuming—so make sure you're wearing it when you need it! Donning and removing armor are both activities involving many Interact actions. It takes 1 minute to don light armor, 5 minutes to don medium or heavy armor, and 1 minute to remove any armor."],"source":"CRB"},{"type":"pf2-h2","page":274,"name":"Armor Statistics","entries":["{@table Unarmored Defense||Table 6–3: Unarmored Defense} provides the statistics for the various forms of protection without wearing armor. {@table Armor||Table 6–4: Armor} provides the statistics for suits of armor that can be purchased and worn, organized by category. The columns in both tables provide the following statistics.",{"type":"pf2-h3","page":274,"name":"Category","entries":["The armor's category—unarmored, light armor, medium armor, or heavy armor—indicates which proficiency bonus you use while wearing the armor."],"source":"CRB"},{"type":"pf2-h3","page":274,"name":"AC Bonus","entries":["This number is the item bonus you add for the armor when determining Armor Class."],"source":"CRB"},{"type":"pf2-h3","page":274,"name":"Dexterity Modifier Cap (Dex Cap)","entries":["This number is the maximum amount of your Dexterity modifier that can apply to your AC while you are wearing a given suit of armor. For example, if you have a Dexterity modifier of +4 and you are wearing a suit of half plate, you apply only a +1 bonus from your Dexterity modifier to your AC while wearing that armor."],"source":"CRB"},{"type":"pf2-h3","page":274,"name":"Check Penalty","entries":["While wearing your armor, you take this penalty to Strength- and Dexterity-based skill checks, except for those that have the attack trait. If you meet the armor's Strength threshold (see Strength below), you don't take this penalty."],"source":"CRB"},{"type":"pf2-h3","page":274,"name":"Speed Penalty","entries":["While wearing a suit of armor, you take the penalty listed in this entry to your Speed, as well as to any other movement types you have, such as a climb Speed or swim Speed, to a minimum Speed of 5 feet. If you meet the armor's Strength threshold (see below), you reduce the penalty by 5 feet."],"source":"CRB"},{"type":"pf2-h3","page":274,"name":"Strength","entries":["This entry indicates the Strength score at which you are strong enough to overcome some of the armor's penalties. If your Strength is equal to or greater than this value, you no longer take the armor's check penalty, and you decrease the Speed penalty by 5 feet (to no penalty if the penalty was –5 feet, or to a –5-foot penalty if the penalty was –10 feet)."],"source":"CRB"},{"type":"pf2-h3","page":274,"name":"Bulk","entries":["This entry gives the armor's Bulk, assuming you're wearing the armor and distributing its weight across your body. A suit of armor that's carried or worn usually has 1 more Bulk than what's listed here (or 1 Bulk total for armor of light Bulk). An armor's Bulk is increased or decreased if it's sized for creatures that aren't Small or Medium in size, following the rules on page 295."],"source":"CRB"},{"type":"pf2-h3","page":274,"name":"Group","entries":["Each type of medium and heavy armor belongs to an armor group, which classifies it with similar types of armor. Some abilities reference armor groups, typically to grant armor specialization effects, which are described on page 275."],"source":"CRB"},{"type":"pf2-h3","page":274,"name":"Armor Traits","entries":["The traits for each suit of armor appear in this entry.","Armor can have the following traits.","{@b Bulwark:} The armor covers you so completely that it provides benefits against some damaging effects. On Reflex saves to avoid a damaging effect, such as a {@spell fireball}, you add a +3 modifier instead of your Dexterity modifier.","{@b Comfort:} The armor is so comfortable that you can rest normally while wearing it.","{@b Flexible:} The armor is flexible enough that it doesn't hinder most actions. You don't apply its check penalty to {@skill Acrobatics} or {@skill Athletics} checks.","{@b Noisy:} This armor is loud and likely to alert others to your presence when you're using the {@action Avoid Notice} exploration activity (page 479).",{"type":"statblock","tag":"table","name":"Unarmored Defense","source":"CRB"},{"type":"statblock","tag":"table","name":"Armor","source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":275,"name":"Armor Specialization Effects","entries":["Certain class features can grant you additional benefits with certain armors. This is called an armor specialization effect. The exact effect depends on which armor group your armor belongs to, as listed below. Only medium and heavy armors have armor specialization effects.","{@b Chain:} The armor is so flexible it can bend with a critical hit and absorb some of the blow. Reduce the damage from critical hits by either 4 + the value of the armor's potency rune for medium armor, or 6 + the value of the armor's potency rune for heavy armor. This can't reduce the damage to less than the damage rolled for the hit before doubling for a critical hit.","{@b Composite:} The numerous overlapping pieces of this armor protect you from piercing attacks. You gain resistance to piercing damage equal to 1 + the value of the armor's potency rune for medium armor, or 2 + the value of the armor's potency rune for heavy armor.","{@b Leather:} The thick second skin of the armor disperses blunt force to reduce bludgeoning damage. You gain resistance to bludgeoning damage equal to 1 + the value of the armor's potency rune for medium armor, or 2 + the value of the armor's potency rune for heavy armor.","{@b Plate:} The sturdy plate provides no purchase for a cutting edge. You gain resistance to slashing damage equal to 1 + the value of the armor's potency rune for medium armor, or 2 + the value of the armor's potency rune for heavy armor."],"source":"CRB"},{"type":"statblock","tag":"table","name":"Unarmored Defense","source":"CRB"},{"type":"statblock","tag":"table","name":"Armor","source":"CRB"},{"type":"pf2-brown-box","page":275,"name":"MATERIALS","entries":["Most suits of armor and weapons are made from ordinary, commonly available materials like iron, leather, steel, and wood. If you're not sure what a suit of armor is made of, the GM determines the details.","Some armor, shields, and weapons are instead made of precious materials. These often have inherent supernatural properties. Cold iron, for example, which harms fey, and silver can damage werecreatures. These materials are detailed beginning on page 577."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":275,"name":"Armor Descriptions","entries":["Each type of armor is described in more detail below.","{@b Breastplate:} Though referred to as a breastplate, this type of armor consists of several pieces of plate or half-plate armor (page 276) that protect the torso, chest, neck, and sometimes the hips and lower legs. It strategically grants some of the protection of plate while allowing greater flexibility and speed.","{@b Chain Mail:} A suit of chain mail consists of several pieces of armor composed of small metal rings linked together in a protective mesh. It typically includes a chain shirt, leggings, a pair of arms, and a coif, collectively protecting most of the body.","{@b Chain Shirt:} Sometimes called a hauberk, this is a long shirt constructed of the same metal rings as chainmail. However, it is much lighter than chainmail and protects only the torso, upper arms, and upper legs of its wearer.","{@b Explorer's Clothing:} Adventurers who don't wear armor travel in durable clothing. Though it's not armor and uses your unarmored defense proficiency, it still has a Dex Cap and can grant an item bonus to AC if etched with potency runes (as described on page 581).","{@b Full Plate:} Plate mail consists of interlocking plates that encase nearly the entire body in a carapace of steel. It is costly and heavy, and the wearer often requires help to don it correctly, but it provides some of the best defense armor can supply. A suit of this armor comes with an undercoat of padded armor (see below) and a pair of gauntlets (page 285).","{@b Half Plate:} Half plate consists of most of the upper body plates used in full plate, with lighter or sparser steel plate protection for the arms and legs. This provides some of the protection of full plate with greater flexibility and speed. A suit of this armor comes with an undercoat of padded armor (see below) and a pair of gauntlets (page 285).","{@b Hide:} A mix of furs, sturdy hide, and sometimes molded boiled leather, this armor provides protection due to its layers of leather, though its bulkiness slows the wearer down and decreases mobility.","{@b Leather:} A mix of flexible and molded boiled leather, a suit of this type of armor provides some protection with maximum flexibility.","{@b Padded Armor:} This armor is simply a layer of heavy, quilted cloth, but it is sometimes used because it's so inexpensive. Padded armor is easier to damage and destroy than other types of armor. Heavy armor comes with a padded armor undercoat included in its Price, though it loses the comfort trait when worn under heavy armor. You can wear just that padded armor undercoat to sleep in, if your heavy armor is destroyed, or when otherwise not wearing the full heavy armor. This allows you to keep the armor invested and benefit from the power of any runes on the associated heavy armor, but no one else can wear your heavy armor without the padded undercoat.","{@b Scale Mail:} Scale mail consists of many metal scales sewn onto a reinforced leather backing, often in the form of a long shirt that protects the torso, arms, and legs.","{@b Splint Mail:} This type of armor is chain mail reinforced with flexible, interlocking metal plates, typically located on the wearer's torso, upper arms, and legs. A suit of this armor comes with an undercoat of padded armor (see above) and a pair of gauntlets (page 285).","{@b Studded Leather:} This leather armor is reinforced with metal studs and sometimes small metal plates, providing most of the flexibility of leather armor with more robust protection.",{"type":"statblock","tag":"table","name":"Damaging Armor","source":"CRB"}],"source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":271,"name":"Carrying and Using Items","entries":["A character carries items in three ways: held, worn, and stowed. Held items are in your hands; a character typically has two hands, allowing them to hold an item in each hand or a single two-handed item using both hands. Worn items are tucked into pockets, belt pouches, bandoliers, weapon sheaths, and so forth, and they can be retrieved and returned relatively quickly. Stowed items are in a backpack or a similar container, and they are more difficult to access.","Drawing a worn item or changing how you're carrying an item usually requires you to use an {@action Interact} action (though to drop an item, you use the {@action Release} action instead). {@table Changing Equipment||Table 6–2: Changing Equipment} lists some ways that you might change the items you're holding or carrying, and the number of hands you need to do so.","Many ways of using items require you to spend multiple actions. For example, drinking a potion stowed in your belt pouch requires using an {@action Interact} action to draw it and then using a second action to drink it as described in its {@action Activate an Item||Activate} entry.",{"type":"pf2-h3","page":271,"name":"Bulk","entries":["Carrying especially heavy or unwieldy items can make it more difficult for you to move, as can overloading yourself with too much gear. The Bulk value of an item reflects how difficult the item is to handle, representing its size, weight, and general awkwardness. If you have a high Strength score, you usually don't need to worry about Bulk unless you're carrying numerous substantial items.",{"type":"pf2-h4","page":272,"name":"Bulk Limits","entries":["You can carry an amount of Bulk equal to 5 plus your Strength modifier without penalty; if you carry more, you gain the encumbered condition. You can't hold or carry more Bulk than 10 plus your Strength modifier.",{"type":"pf2-beige-box","page":272,"name":"Encumbered","entries":["You are carrying more weight than you can manage. While you're {@condition encumbered}, you're {@condition clumsy} 1 and take a –10-foot penalty to all your Speeds. As with all penalties to your Speed, this can't reduce your Speed below 5 feet."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h4","page":272,"name":"Bulk Values","entries":["Items can have a number to indicate their Bulk value, or they can be light (indicated by an L) or negligible (indicated by a—) for the purpose of determining Bulk. For instance, {@item full plate} armor is 4 Bulk, a {@item longsword} is 1 Bulk, a dagger or scroll is light, and a piece of chalk is negligible. Ten light items count as 1 Bulk, and you round down fractions (so 9 light items count as 0 Bulk, and 11 light items count as 1 Bulk). Items of negligible Bulk don't count toward Bulk unless you try to carry vast numbers of them, as determined by the GM."],"source":"CRB"},{"type":"pf2-h4","page":272,"name":"Estimating an Item's Bulk","entries":["As a general rule, an item that weighs 5 to 10 pounds is 1 Bulk, an item weighing less than a few ounces is negligible, and anything in between is light. Particularly awkward or unwieldy items might have higher Bulk values. For example, a 10-foot pole isn't heavy, but its length makes it difficult for you to move while you have one on your person, so its Bulk is 1. Items made for larger or smaller creatures have greater or lesser Bulk, as described on page 295."],"source":"CRB"},{"type":"pf2-h4","page":272,"name":"Bulk of Coins","entries":["Coins are a popular means of exchange due to their portability, but they can still add up. A thousand coins of any denomination or combination of denominations count as 1 Bulk. It's not usually necessary to determine the Bulk of coins in fractions of 1,000; simply round down fractions of 1,000. In other words, 100 coins don't count as a light item, and 1,999 coins are 1 Bulk, not 2."],"source":"CRB"},{"type":"pf2-h4","page":272,"name":"Bulk of Creatures","entries":["You might need to know the Bulk of a creature, especially if you need to carry someone off the battlefield. The table that follows lists the typical Bulk of a creature based on its size, but the GM might adjust this number.",{"type":"table","page":272,"colStyles":["text-center","text-center"],"rows":[["Size of Creature","Bulk"],["{@trait Tiny}","1"],["{@trait Small}","3"],["{@trait Medium}","6"],["{@trait Large}","12"],["{@trait Huge}","24"],["{@trait Gargantuan}","48"]],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h4","page":272,"name":"Dragging","entries":["In some situations, you might drag an object or creature rather than carry it. If you're dragging something, treat its Bulk as half. Typically, you can drag one thing at a time, you must use both hands to do so, and you drag slowly—roughly 50 feet per minute unless you have some means to speed it up. Use the total Bulk of what you're dragging, so if you have a sack laden with goods, use the sum of all the Bulk it carries instead of an individual item within."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":272,"name":"Wielding Items","entries":["Some abilities require you to wield an item, typically a weapon. You're wielding an item any time you're holding it in the number of hands needed to use it effectively. When wielding an item, you're not just carrying it around—you're ready to use it. Other abilities might require you to merely carry or have an item. These apply as long as you have the item on your person; you don't have to wield it."],"source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":271,"name":"Coins and Currency","entries":["Though you might be able to barter valuable items in some areas, currency is the most versatile way to make transactions when you head to market. The most common currency is coins. For most commoners and beginning adventurers, the standard unit is the {@b silver piece} ({@b sp}). Each silver piece is a standard weight of silver and is typically accepted by any merchant or kingdom no matter where it was minted. There are three other common types of coins, each likewise standardized in weight and value. The first is the {@b copper piece} ({@b cp}). Each copper piece is worth one-tenth of a silver piece. The {@b gold piece} ({@b gp}) is often used for purchasing magic items and other expensive items, as 1 gold piece is worth 10 silver pieces or 100 copper pieces. The {@b platinum piece} ({@b pp}) is used by nobles to demonstrate their wealth, for the purchase of very expensive items, or simply as a way to easily transport large sums of currency. A platinum piece is worth 10 gold pieces, 100 silver pieces, or 1,000 copper pieces. See {@table Coin Values||Table 6–1: Coin Values} for the exchange rates of common types of coins.",{"type":"pf2-h3","page":271,"name":"Other Currency","entries":["Art objects, gems, and raw materials (such as those used for the {@action Craft} activity) can be used much like currency: you can sell them for the same Price you can buy them."],"source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":531,"name":"Constant Abilities","entries":["Some magic items have abilities that always function. You don't have to use any actions to do anything special (beyond wearing and investing a worn item or wielding a held item) to make these abilities work. For example, an {@item everburning torch} always sheds light, and a {@item flaming} weapon deals fire damage every time it deals damage."],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":293,"name":"Formulas","entries":["Formulas are instructions for making items with the {@action Craft} activity. You can usually read a formula as long as you can read the language it's written in, though you might lack the skill to {@action Craft} the item. Often, alchemists and crafting guilds use obscure languages or create codes to protect their formulas from rivals.","You can buy common formulas at the Price listed on {@table formulas||Table 6–13}, or you can hire an NPC to let you copy their formula for the same Price. A purchased formula is typically a schematic on rolled-up parchment of light Bulk. You can copy a formula into your formula book in 1 hour, either from a schematic or directly from someone else's formula book. If you have a formula, you can {@action Craft} a copy of it using the {@skill Crafting} skill. Formulas for uncommon items and rare items are usually significantly more valuable—if you can find them at all!","If you have an item, you can try to reverse-engineer its formula. This uses the Craft activity and takes the same amount of time as creating the item from a formula would. You must first disassemble the item. After the base downtime, you attempt a {@skill Crafting} check against the same DC it would take to {@action Craft} the item. If you succeed, you {@action Craft} the formula at its full Price, and you can keep working to reduce the Price as normal. If you fail, you're left with raw materials and no formula. If you critically fail, you also waste 10% of the raw materials you'd normally be able to salvage.","The item's disassembled parts are worth half its Price in raw materials and can't be reassembled unless you successfully reverse-engineer the formula or acquire the formula another way. Reassembling the item from the formula works just like {@action Craft||Crafting} it from scratch; you use the disassembled parts as the necessary raw materials.",{"type":"statblock","tag":"table","name":"Formulas","source":"CRB"},{"type":"pf2-h3","page":293,"name":"Items with Multiple Types","entries":["If an item has multiple types of different levels, each type has its own formula, and you need the formula for the specific type of item you want to Craft. For example, {@i if you have a formula for a type I bag of holding but not for a type II bag of holding, you must acquire a separate formula to Craft a type II bag of holding.}"],"source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":531,"name":"Investing Magic Items","entries":["Certain magic items convey their magical benefits only when worn and invested using the Invest an Item activity, tying them to your inner potential. These items have the invested trait. Many invested items have constant abilities that function all the time or that always trigger when you use the item—but only when they're invested. If you don't have an item invested, these abilities don't work. If an invested item can be activated, you must have invested the item to activate it.","You can benefit from no more than 10 invested magic items each day. Because this limit is fairly high, and because it matters only for worn items, you probably won't need to worry about reaching the limit until higher levels, when you've acquired many useful magic items to wear.","You can still gain the mundane benefits of an item if you don't invest it. A suit of {@i +1 resilient armor} still gives you its item bonus to AC when not invested, but it doesn't give its magical bonus to saving throws, and {@item winged boots} still protect your feet even though you can't activate them to fly. Entirely non-magical items don't need to be invested.",{"type":"statblock","tag":"action","name":"Invest an Item","source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":272,"name":"Item Damage","entries":["An item can be broken or destroyed if it takes enough damage. Every item has a {@b Hardness} value. Each time an item takes damage, reduce any damage the item takes by its Hardness. The rest of the damage reduces the item's Hit Points. Normally an item takes damage only when a creature is directly attacking it—commonly targeted items include doors and traps. A creature that attacks you doesn't normally damage your armor or other gear, even if it hits you. However, the {@feat Shield Block} reaction can cause your shield to take damage as you use it to prevent damage to yourself, and some monsters have exceptional abilities that can damage your items.","An item that takes damage can become and eventually destroyed. It becomes broken when its Hit Points are equal to or lower than its {@b Broken Threshold} ({@b BT}); once its Hit Points are reduced to 0, it is {@b destroyed}. A broken item has the broken condition until Repaired above its Broken Threshold. Anything that automatically makes an item broken immediately reduces its Hit Points to its Broken Threshold if the item had more Hit Points than that when the effect occurred. If an item has no {@condition Broken} Threshold, then it has no relevant changes to its function due to being broken, but it's still destroyed at 0 Hit Points. (See the broken condition definition on page 273 for more information.) A destroyed item can't be Repaired.","An item's Hardness, Hit Points, and {@condition Broken} Threshold usually depend on the material the item is made of. This information appears on page 577.",{"type":"pf2-beige-box","page":273,"name":"Broken","entries":["Broken is a condition that affects objects. An object is broken when damage has reduced its Hit Points to equal or less than its Broken Threshold. A broken object can't be used for its normal function, nor does it grant bonuses— with the exception of armor. Broken armor still grants its item bonus to AC, but it also imparts a status penalty to AC depending on its category: –1 for broken light armor, –2 for broken medium armor, or –3 for broken heavy armor.","A {@condition broken} item still imposes penalties and limitations normally incurred by carrying, holding, or wearing it. For example, broken armor would still impose its Dexterity modifier cap, check penalty, and so forth.","If an effect makes an item {@condition broken} automatically and the item has more HP than its Broken Threshold, that effect also reduces the item's current HP to the Broken Threshold."],"source":"CRB"},{"type":"pf2-h3","page":273,"name":"Object Immunities","entries":["Inanimate objects and hazards are immune to bleed, death effects, disease, healing, mental effects, necromancy, nonlethal attacks, and poison, as well as the doomed, drained, fatigued, paralyzed, sickened, and unconscious conditions. An item that has a mind is not immune to mental effects. Many objects are immune to other conditions, at the GM's discretion. For instance, a sword has no Speed, so it can't take a penalty to its Speed, but an effect that causes a Speed penalty might work on a moving blade trap."],"source":"CRB"},{"type":"statblock","tag":"table","name":"Changing Equipment","source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":271,"name":"Item Level","entries":["Each item has an item level, which represents the item's complexity and any magic used in its construction. Simpler items with a lower level are easier to construct, and you can't Craft items that have a higher level than your own (page 243). If an item's level isn't listed, its level is 0. While characters can use items of any level, GMs should keep in mind that allowing characters access to items far above their current level may have a negative impact on the game."],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":295,"name":"Items and Sizes","entries":["The Bulk rules in this chapter are for {@trait Small} and {@trait Medium} creatures, as the items are made for creatures of those sizes. Large creatures can carry more, and smaller creatures can carry less, as noted on {@table Bulk Conversions||Table 6–19}.","These rules for Bulk limits come up most often when a group tries to load up a mount or animal companion. The rules for items of different sizes tend to come into play when the characters defeat a big creature that has gear, since in most cases, the only creatures of other sizes are creatures under the GM's control. In most cases, Small or Medium creatures can wield a Large weapon, though it's unwieldy, giving them the clumsy 1 condition, and the larger size is canceled by the difficulty of swinging the weapon, so it grants no special benefit. Large armor is simply too large for Small and Medium creatures.",{"type":"pf2-h3","page":295,"name":"Bulk Conversions for Different Sizes","entries":["As shown in {@table Bulk Conversions||Table 6–19}, {@trait Large} or larger creatures are less encumbered by bulky items than {@trait Small} or {@trait Medium} creatures, while {@trait Tiny} creatures become overburdened more quickly. A {@trait Large} creature treats 10 items of 1 Bulk as 1 Bulk, a {@trait Huge} creature treats 10 items of 2 Bulk as 1 Bulk, and so on. A {@trait Tiny} creature treats 10 items of negligible Bulk as 1 Bulk. Negligible items work in a similar way—a {@trait Huge} creature treats items of 1 Bulk as negligible, so it can carry any number of items of 1 Bulk. A {@trait Tiny} creature doesn't treat any items as having negligible Bulk.",{"type":"statblock","tag":"table","name":"Bulk conversions","source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":295,"name":"Items of Different Sizes","entries":["Creatures of sizes other than {@trait Small} or {@trait Medium} need items appropriate to their size. These items have different Bulk and possibly a different Price. {@table Differently Sized Items||Table 6 –20} provides the Price and Bulk conversion for such items.",{"type":"statblock","tag":"table","name":"Differently Sized Items","source":"CRB"},"For example, a {@item morningstar} sized for a {@trait Medium} creature has a Price of 1 gp and 1 Bulk, so one made for a {@trait Huge} creature has a Price of 4 gp and 4 Bulk. One made for a {@trait Tiny} creature still costs 1 gp (due to its intricacy) and has 1/2 Bulk, which rounds down to light Bulk.","Because the way that a creature treats Bulk and the Bulk of gear sized for it scale the same way, {@trait Tiny} or {@trait Large} (or larger) creatures can usually wear and carry about the same amount of appropriately sized gear as a {@trait Medium} creature.","Higher-level magic items that cost significantly more than 8 times the cost of a mundane item can use their listed Price regardless of size. Precious materials, however, have a Price based on the Bulk of the item, so multiply the Bulk value as described on {@table Differently Sized Items||Table 6 –20}, then use the formula in the precious material's entry to determine the item's Price. See page 578 for more information."],"source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":271,"name":"Price","entries":["Most items in the following tables have a Price, which is the amount of currency it typically takes to purchase that item. An item with a Price of \"—\" can't be purchased. An item with a Price of 0 is normally free, but its value could be higher based on the materials used to create it. Most items can be sold for half their Price, but coins, gems, art objects, and raw materials (such as components for the Craft activity) can be exchanged for their full Price.",{"type":"pf2-key-box","page":271,"name":"STARTING MONEY","entries":[{"type":"pf2-title","name":"15 GP (150 SP)"}],"source":"CRB"},{"type":"statblock","tag":"table","name":"Coin Values","source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":580,"name":"Runes","entries":["Most magic weapons and armor gain their enhancements from potent eldritch runes etched into them. These runes allow for in-depth customization of items.","Runes must be physically engraved on items through a special process to convey their effects. They take two forms:","fundamental runes and property runes. Fundamental runes offer the most basic and essential benefits: a {@item weapon potency (generic)||weapon potency} rune adds a bonus to a weapon's attack rolls, and the {@item striking (generic)||striking} rune adds extra weapon damage dice. An {@item armor potency (generic)||armor potency} rune increases the armor's item bonus to AC, and the {@item resilient (generic)||resilient} rune grants a bonus to the wearer's saving throws. Property runes, by contrast, grant more varied effects—typically powers that are constant while the armor is worn or that take effect each time the weapon is used, such as a rune that grants energy resistance or one that adds fire damage to a weapon's attacks.","The number of property runes a weapon or armor can have is equal to the value of its potency rune. A +1 weapon can have one property rune, but it could hold another if the {@item +1 weapon potency} rune were upgraded to a {@item +2 weapon potency} rune. Since the {@item striking (generic)||striking} and {@item resilient (generic)||resilient} runes are fundamental runes, they don't count against this limit.","An item with runes is typically referred to by the value of its potency rune, followed by any other fundamental runes, then the names of any property runes, and ends with the name of the base item. For example, you might have a {@runeItem longsword||+1 weapon potency|} or {@runeItem chain mail||+2 armor potency||greater resilient||fire-resistant|}.","Rune-etched armor and weapons have the same Bulk and general characteristics as the non-magical version unless noted otherwise. The level of an item with runes etched onto it is equal to the highest level among the base item and all runes etched on it; therefore, a {@runeItem mace||+1 weapon potency||striking|} (a 4th-level item) with a {@item disrupting} rune (a 5th-level rune) would be a 5th-level item.","Each rune can be etched into a specific type of armor or weapon, as indicated in the Usage entry of the rune's stat block. Explorer's clothing can have armor runes etched on it even though it's not armor, but because it's not in the light, medium, or heavy armor category, it can't have runes requiring any of those categories.",{"type":"pf2-h3","page":580,"name":"Investiture","entries":["If a suit of armor has any runes, it has the {@trait invested} trait, requiring you to invest it to get its magical benefits."],"source":"CRB"},{"type":"pf2-h3","page":580,"name":"Rune Formulas","entries":["The Price of a rune's formula is the same as the Price of a formula for an item of the same level; it can be acquired in the same way as an {@quickref item formula||1|formulas}."],"source":"CRB"},{"type":"pf2-h3","page":580,"name":"The Etching Process","entries":["Etching a rune on an item follows the same process as using the {@action Craft} activity to make an item. You must have the formula for the rune, the item you're adding the rune to must be in your possession throughout the etching process, and you must meet any special Craft Requirements of the rune. The rune has no effect until you complete the {@action Craft} activity. You can etch only one rune at a time.",{"type":"pf2-h4","page":580,"name":"Transferring Runes","entries":["You can transfer runes between one item and another, including a {@item runestone}. This also uses the {@action Craft} activity. This lets you either move one rune from one item to another or swap a rune on one item with a rune on the other item. To swap, the runes must be of the same form (fundamental or property).","If an item can have two or more property runes, you decide which runes to swap and which to leave when transferring. If you attempt to transfer a rune to an item that can't accept it, such as transferring a melee weapon rune to a ranged weapon, you get an automatic critical failure on your {@action craft||Crafting} check. If you transfer a potency rune, you might end up with property runes on an item that can't benefit from them. These property runes go dormant until transferred to an item with the necessary potency rune or until you etch the appropriate potency rune on the item bearing them.","The DC of the {@skill Crafting} check to transfer a rune is determined by the item level of the rune being transferred, and the Price of the transfer is 10% of the rune's Price, unless transferring from a {@item runestone}, which is free. If you're swapping, use the higher level and higher Price between the two runes to determine these values. It takes 1 day (instead of the 4 days usually needed to Craft) to transfer a rune or swap a pair of runes, and you can continue to work over additional days to get a discount, as usual with Craft."],"data":{"quickrefIndex":true},"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":580,"name":"Fundamental Runes","entries":["Four fundamental runes produce the most essential magic of protection and destruction: {@item armor potency (generic)||armor potency} and {@item resilient (generic)||resilient} runes for armor, and {@item weapon potency (generic)||weapon potency} and {@item striking (generic)||striking} runes for weapons. A potency rune is what makes a weapon a magic weapon (page 599) or armor magic armor (page 556).","An item can have only one fundamental rune of each type, though etching a stronger rune can upgrade an existing rune to the more powerful version (as described in each rune's entry). As you level up, you typically alternate between increasing an item's potency rune and its {@item striking (generic)||striking} or {@item resilient (generic)||resilient} rune when you can afford to.",{"type":"statblock","tag":"table","name":"Fundamental Runes","source":"CRB"}],"source":"CRB"},{"type":"pf2-brown-box","page":581,"name":"SPECIFIC ARMOR AND WEAPONS","entries":["Unlike armor and weapons enhanced with runes, specific armor and weapons (such as {@item ghoul hide} or a {@item holy avenger}) are created for a specific purpose and can work quite differently from other items of their type. Specific magic armor and weapons can't gain property runes, but you can add or improve their fundamental runes."],"source":"CRB"},{"type":"pf2-brown-box","page":581,"name":"RUNE TRANSFER EXAMPLES","entries":["You could transfer a {@item flaming} rune from a {@runeItem greatsword||+1 weapon potency||striking||flaming|} to a {@runeItem longsword||+2 weapon potency||striking|}, resulting in a {@runeItem longsword||+2 weapon potency||striking||flaming|} and a {@runeItem greatsword||+1 weapon potency||striking|}. You could swap the weapon potency runes from a {@runeItem longsword||+1 weapon potency} and a {@runeItem greatsword||+2 weapon potency}, resulting in a {@runeItem longsword||+2 weapon potency} and a {@runeItem greatsword||+1 weapon potency}. However, you couldn't swap a {@item +1 weapon potency} rune from one weapon with a {@item flaming} property rune from another weapon, as the two runes don't have the same form.","When transferring a rune to an item that can hold multiple property runes, you can decide whether you transfer a single rune or swap runes between the items.","For example, a +2 weapon can hold two property runes. If you transferred a {@item flaming} rune from a {@runeItem rapier||+1 weapon potency||striking||flaming|} to a {@runeItem warhammer||+2 weapon potency||striking||frost|}, you would decide whether you wanted to end up with a {@runeItem rapier||+1 weapon potency||striking|} and a {@runeItem warhammer||+2 weapon potency||striking||flaming||frost|} or a {@runeItem rapier||+1 weapon potency||striking||frost|} and a {@runeItem warhammer||+2 weapon potency||striking||flaming|}."],"source":"CRB"},{"type":"pf2-brown-box","page":582,"name":"UPGRADING ARMOR AND WEAPON RUNES","entries":["You'll often want to upgrade the fundamental runes of magic armor or a magic weapon you already have. This requires upgrading each rune separately. Tables 11–5 and 11–6 summarize the Price of each step, with a number in parentheses indicating the item's level for the Craft activity. This also indicates the typical progression for an adventurer to follow when upgrading their armor and weapons. The tables here don't include progressions that aren't as likely to come up, like turning a +1 weapon directly into a +1 greater striking weapon.",{"type":"statblock","tag":"table","name":"Armor Upgrade Prices","source":"CRB"},{"type":"statblock","tag":"table","name":"Weapon Upgrade Price","source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":582,"name":"Property Runes","entries":["Property runes add special abilities to armor or a weapon in addition to the item's fundamental runes. If a suit of armor or a weapon has multiple etchings of the same rune, only the highest-level one applies. You can upgrade a property rune to a higher-level type of that rune in the same way you would upgrade a fundamental rune.","Rune abilities that must be activated follow the rules for activating magic items on page 532."],"source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":564,"name":"Scrolls","entries":["A scroll contains a single spell that you can cast without having to expend a spell slot. A scroll can be Crafted to contain nearly any spell, so the types of scrolls available are limited only by the number of spells in the game. The exceptions are cantrips, focus spells, and rituals, none of which can be put on scrolls. The spell on a scroll can be cast only once, and the scroll is destroyed as part of the casting. The spell on the scroll is cast at a particular spell level, as determined by the scroll. For instance, a scroll of {@spell magic missile} (1st level) can be used to cast the 1st-level version of magic missile, but not a magic missile heightened to 2nd level. If no level is listed, the scroll can be used to cast the spell at its lowest level.","If you find a scroll, you can try to figure out what spell it contains. If the spell is a common spell from your spell list or a spell you know, you can spend a single {@action Recall Knowledge} action and automatically succeed at identifying the scroll's spell. If it's not, you must use {@action Identify Magic} to learn what spell the scroll holds.",{"type":"pf2-h4","page":564,"name":"Casting a Spell from a Scroll","entries":["{@action Cast a Spell||Casting a Spell} from a scroll requires holding the scroll in one hand and activating it with a {@action Cast a Spell} activity using the normal number of actions for that spell.","To {@action Cast a Spell} from a scroll, the spell must appear on your spell list. Because you're the one {@action Cast a Spell||Casting the Spell}, use your spell attack roll and spell DC. The spell also gains the appropriate trait for your tradition (arcane, divine, occult, or primal).","Any physical material components and costs are provided when a scroll is created, so you don't need to provide them when {@action Cast a Spell||Casting a Spell} from a scroll. You must replace any required material component for that spell with a somatic component. If the spell requires a focus, you must have that focus to {@action Cast a Spell||Cast the Spell} from a scroll."],"source":"CRB"},{"type":"pf2-h4","page":564,"name":"Scroll Statistics","entries":["All scrolls have the same base statistics unless noted otherwise. A scroll has light Bulk, and it must be held in one hand to be activated."],"source":"CRB"},{"type":"pf2-h4","page":565,"name":"Varying Statistics","entries":["Table 11–3 indicates the item level and Price of a scroll, both of which are based on the level of the spell contained on the scroll. Any costs to {@action Cast a Spell||Cast the Spell} are added to the scroll's Price when the scroll is crafted, so a scroll containing a spell with a Cost entry will have a higher Price than what appears on the table. The scroll's rarity matches the spell's rarity.","The traits for a scroll vary based on the spell it contains.","A scroll always has the consumable, magical, and scroll traits, plus the traits of the spell stored on it."],"source":"CRB"},{"type":"statblock","tag":"table","name":"Scroll Statistics","source":"CRB"},{"type":"pf2-h4","page":565,"name":"Crafting a Scroll","entries":["The process to {@action Craft} a scroll is much like that to {@action Craft} any other magic item. When you begin the crafting process, choose a spell to put into the scroll. You have to either {@action Cast a Spell||Cast that Spell} during the crafting process, or someone else must do so in your presence. {@action Cast a Spell||Casting that Spell} doesn't produce its normal effects; instead, the magic is trapped inside the scroll. The casting must come from a spellcaster expending a spell slot.","You can't {@action Craft} a scroll from a spell produced from another magic item, for example. The caster has to provide any cost of the spell.","Like other {@trait consumable||consumables}, scrolls can be crafted in batches of four. All scrolls of one batch must contain the same spell at the same level, and you must provide one casting for each scroll crafted."],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h4","page":565,"name":"Sample Scrolls","entries":["A wide variety of spells can appear on scrolls. The following specific scrolls are just examples.",{"type":"data","tag":"item","data":{"name":"Scroll of Illusory Disguise","source":"CRB","page":565,"type":"Item","level":1,"traits":["consumable","illusion","magical","scroll"],"price":{"coin":"gp","amount":3},"usage":"held in 1 hand","bulk":"L","activate":{"activity":{"number":2,"unit":"action"},"components":"{@action Cast a Spell}"},"category":"Scroll","entries":["This scroll can cast {@spell illusory disguise} as a 1st-level spell."],"craftReq":"Supply one casting of illusory disguise."}},{"type":"data","tag":"item","data":{"name":"Scroll of Glitterdust","source":"CRB","page":565,"type":"Item","level":3,"traits":["consumable","evocation","magical","scroll"],"price":{"coin":"gp","amount":12},"usage":"held in 1 hand","bulk":"L","activate":{"activity":{"number":2,"unit":"action"},"components":"{@action Cast a Spell}"},"category":"Scroll","entries":["This scroll can be used to cast {@spell glitterdust} as a 2nd-level spell."],"craftReq":"Supply one casting of glitterdust."}}],"source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":294,"name":"Services","entries":["The services listed on {@table Basic Services and Consumables||Table 6–14} describe expenditures for common services and consumables.",{"type":"statblock","tag":"table","name":"Basic Services and Consumables","source":"CRB"},{"type":"pf2-h3","page":294,"name":"Hirelings","entries":["Paid laborers can provide services for you. Unskilled hirelings can perform simple manual labor and are untrained at most skills. Skilled hirelings have expert proficiency in a particular skill. Hirelings are level 0. If a skill check is needed, an untrained hireling has a +0 modifier, while a skilled hireling has a +4 modifier in their area of expertise and +0 for other skill checks. Hirelings' rates double if they're going adventuring with you."],"source":"CRB"},{"type":"pf2-h3","page":294,"name":"Transportation","entries":["The cost to hire transportation includes standard travel with no amenities. Most transit services provide basic sleeping arrangements, and some provide meals at the rates listed on Table 6–14. Arranging transportation into dangerous lands can be more expensive or impossible."],"source":"CRB"},{"type":"pf2-h3","page":294,"name":"Spellcasting","entries":["Spellcasting services, listed on {@table Spellcasting Services||Table 6–15}, are uncommon. Having a spell cast for you requires finding a spellcaster who knows and is willing to cast it. It's hard to find someone who can cast higher-level spells, and uncommon spells typically cost at least 100% more, if you can find someone who knows them at all. Spells that take a long time to cast (over 1 minute) usually cost 25% more. You must pay any cost listed in the spell in addition to the Price on the table.",{"type":"statblock","tag":"table","name":"Spellcasting Services","source":"CRB"}],"source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":277,"name":"Shields","entries":[{"type":"pf2-h1-flavor","page":277,"entries":["{@i A shield can increase your character's defense beyond the protection their armor provides. Your character must be wielding a shield in one hand to make use of it, and it grants its bonus to AC only if they use an action to Raise a Shield. This action grants the shield's bonus to AC as a circumstance bonus until their next turn starts. A shield's Speed penalty applies whenever your character is holding the shield, whether they have raised it or not.}"],"source":"CRB"},"{@action Raise a Shield} is the action most commonly used with shields. Most shields must be held in one hand, so you can't hold anything with that hand and {@action Raise a Shield}. A {@item buckler}, however, doesn't take up your hand, so you can {@action Raise a Shield} with a {@item buckler} if the hand is free (or, at the GM's discretion, if it's holding a simple, lightweight object that's not a weapon). You lose the benefits of {@action Raise a Shield} if that hand is no longer free.","When you have a {@item tower shield} raised, you can use the {@action Take Cover} action to increase the circumstance bonus to AC to +4. This lasts until the shield is no longer raised. If you would normally provide {@quickref lesser cover||3|cover} against an attack, having your tower shield raised provides {@quickref standard cover||3|cover} against it (and other creatures can {@action Take Cover} as normal using the cover from your shield).","If you have access to the {@feat Shield Block} reaction (from your class or from a feat), you can use it while {@action Raise a Shield||Raising your Shield} to reduce the damage you take by an amount equal to the shield's Hardness. Both you and the shield then take any remaining damage.",{"type":"pf2-h2","page":277,"name":"Shield Statistics","entries":["Shields have statistics that follow the same rules as armor:","Price, Speed Penalty, and Bulk. See page 274 for the rules for those statistics. Their other statistics are described here.",{"type":"pf2-h3","page":277,"name":"AC Bonus","entries":["A shield grants a circumstance bonus to AC, but only when the shield is raised. This requires using the Raise a Shield action, found on page 472."],"source":"CRB"},{"type":"pf2-h3","page":277,"name":"Hardness","entries":["Whenever a shield takes damage, the amount of damage it takes is reduced by this amount. This number is particularly relevant for shields because of the {@feat Shield Block} feat (page 266). The rules for Hardness appear on page 272."],"source":"CRB"},{"type":"pf2-h3","page":277,"name":"HP (BT)","entries":["This column lists the shield's Hit Points (HP) and Broken Threshold (BT). These measure how much damage the shield can take before it's destroyed (its total HP) and how much it can take before being broken and unusable (its BT). These matter primarily for the {@feat Shield Block} reaction."],"source":"CRB"},{"type":"statblock","tag":"table","name":"Shields","source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":277,"name":"Attacking with a Shield","entries":["A shield can be used as a martial weapon for attacks, using the statistics listed for a shield bash on {@table Melee Weapons||Table 6–7: Melee Weapons}. The shield bash is an option only for shields that weren't designed to be used as weapons. A shield can't have runes added to it. You can also buy and attach a {@item shield boss} or {@item shield spikes} to a shield to make it a more practical weapon. These can be found on {@table Melee Weapons||Table 6–7}. These work like other weapons and can even be etched with runes."],"source":"CRB"},{"type":"pf2-h2","page":277,"name":"Shield Descriptions","entries":["Each type of shield is described in more detail below.","{@b Buckler:} This very small shield is a favorite of duelists and quick, lightly armored warriors. It's typically made of steel and strapped to your forearm. You can Raise a Shield with your buckler as long as you have that hand free or are holding a light object that's not a weapon in that hand.","{@b Wooden Shield:} Though they come in a variety of shapes and sizes, the protection offered by wooden shields comes from the stoutness of their materials. While wooden shields are less expensive than steel shields, they break more easily.","{@b Steel Shield:} Like wooden shields, steel shields come in a variety of shapes and sizes. Though more expensive than wooden shields, they are much more durable.","{@b Tower Shield:} These massive shields can be used to provide cover to nearly the entire body. Due to their size, they are typically made of wood reinforced with metal."],"source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":273,"name":"Shoddy Items","entries":["Improvised or of dubious make, shoddy items are never available for purchase except for in the most desperate of communities. When available, a shoddy item usually costs half the Price of a standard item, though you can never sell one in any case. Attacks and checks involving a shoddy item take a –2 item penalty. This penalty also applies to any DCs that a shoddy item applies to (such as AC, for shoddy armor). A shoddy suit of armor also worsens the armor's check penalty by 2. A shoddy item's Hit Points and Broken Threshold are each half that of a normal item of its type."],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":592,"name":"Staves","entries":["A magical staff is an indispensable accessory for an elite spellcaster. A staff is tied to one person during a preparation process, after which the preparer, and only the preparer, can harness the staff to cast a variety of spells throughout the day. The spells that can be cast from a staff are listed in bullet points organized by level under each version of the staff. Many staves can be found in multiple versions, with more powerful versions that contain more spells—such a staff always contains the spells of all lower-level versions, in addition to the spells listed in its own entry. All magical staves have the staff trait.",{"type":"pf2-h3","page":592,"name":"Casting Spells from a Staff","entries":["A staff gains charges when someone prepares it for the day. The person who prepared a staff can expend the charges to cast spells from it. You can {@action Cast a Spell} from a staff only if you have that spell on your spell list, are able to cast spells of the appropriate level, and expend a number of charges from the staff equal to the spell's level. {@action Cast a Spell||Casting a Spell} from a staff requires holding the staff (typically in one hand) and {@action Activate an Item||Activating} the staff by {@action Cast a Spell||Casting the Spell}, which takes the spell's normal number of actions.","Use your spell attack roll and spell DC when {@action Cast a Spell||Casting a Spell} from a staff. The spell gains the appropriate trait for your magical tradition (arcane, divine, occult, or primal) and can be affected by any modifications you can normally make when casting spells, such as metamagic feats. You must provide any material components, cost, or focus required by the spell, or you fail to cast it.","Prepared spellcasters and spontaneous spellcasters each have a unique way of altering how their staves gain charges and the ways they can be used (see the Prepared Spellcasters and Spontaneous Spellcasters sections below).",{"type":"pf2-h4","page":592,"name":"Casting Cantrips from a Staff","entries":["If a staff contains a cantrip, you can cast that cantrip using the staff without expending any charges. The cantrip's level is heightened to the same level as cantrips you cast."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":592,"name":"Preparing a Staff","entries":["During your daily preparations, you can prepare a staff to add charges to it for free. When you do so, that staff gains a number of charges equal to the level of your highest-level spell slot. You don't need to expend any spells to add charges in this way. No one can prepare more than one staff per day, nor can a staff be prepared by more than one person per day. If the charges aren't used within 24 hours, they're lost, and preparing the staff anew removes any charges previously stored in it. You can prepare a staff only if you have at least one of the staff's spells on your spell list.",{"type":"pf2-h4","page":592,"name":"Prepared Spellcasters","entries":["A prepared spellcaster—such as a cleric, druid, or wizard— can place some of their own magic in a staff to increase its number of charges. When a prepared spellcaster prepares a staff, they can expend a spell slot to add a number of charges to the staff equal to the level of the spell. They can't expend more than one spell in this way each day. For example, if Ezren can cast 3rd-level spells and prepared a staff, the staff would gain 3 charges, but Ezren could increase this to 6 by expending one of his 3rd-level spells, 5 by expending a 2nd-level spell, or 4 by expending a 1st-level spell."],"source":"CRB"},{"type":"pf2-h4","page":592,"name":"Spontaneous Spellcasters","entries":["A spontaneous spellcaster, such as a bard or sorcerer, can reduce the number of charges it takes to Activate a staff by supplementing with their own energy. When a spontaneous spellcaster Activates a staff, they can expend 1 charge from the staff and one of their spell slots to cast a spell from the staff of the same level (or lower) as the expended spell slot. This doesn't change the number of actions it takes to cast the spell. For example, if Seoni can cast 3rd-level spells and prepared a staff, the staff would gain 3 charges. She could expend 1 charge and one of her 3rd-level spell slots to cast a 3rd-level spell from the staff, or 1 charge and one of her 2nd-level spell slots to cast a 2nd-level spell from the staff. She could still expend 3 charges from the staff to cast a 3rd-level spell from it without using any of her own slots, just like any other spellcaster"],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":592,"name":"Attacking with a Staff","entries":["Staves are also {@item staff} weapons. They can be etched with fundamental runes but not property runes. This doesn't alter any of their spellcasting abilities."],"source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":597,"name":"Wands","entries":["Short, slender items typically made of wood, wands let you cast a specific spell without expending a spell slot. They can be used once per day, but can be overcharged to attempt to cast them again at great risk. Each wand holds a spell of a certain level, determined when the wand is created. Cantrips, focus spells, and rituals can't be placed in wands.","If you find a wand, you can try to figure out what spell is in it. If the spell is a common spell from your spell list or is a spell you know, you can use a single {@action Recall Knowledge} action and automatically succeed.","If it's not, you must {@action Identify Magic}.",{"type":"pf2-h3","page":597,"name":"Casting Spells from a Wand","entries":["A wand contains a spell that can be cast once per day. Casting a spell from a wand requires holding the wand in one hand and activating the item with a {@action Cast a Spell} activity using the normal number of actions for the spell.","To cast a spell from a wand, it must be on your spell list. Because you're the one casting the spell, use your spell attack roll and spell DC. The spell is of your tradition.","A spell cast from a wand doesn't require physical material components, but you must replace any material component normally required to cast the spell with a somatic component. If the spell requires a focus, you must still have that focus to cast the spell from a wand, and if the spell has a cost, you must still pay that cost to cast the spell from a wand.",{"type":"pf2-h4","page":597,"name":"Overcharging a Wand","entries":["After the spell is cast from the wand for the day, you can attempt to cast it one more time—overcharging the wand at the risk of destroying it. {@action Cast a Spell||Cast the Spell} again, then roll a DC {@flatDC 10} flat check. On a success, the wand is broken.","On a failure, the wand is destroyed. If anyone tries to overcharge a wand when it's already been overcharged that day, the wand is automatically destroyed (even if it had been repaired) and no spell is cast."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":597,"name":"Wand Statistics","entries":["A wand's base statistics are the same unless noted otherwise in a special wand. It has light Bulk, and must be held in one hand to be activated. Each wand contains a specific level of the spell. When you activate a wand, you can only cast the spell at the specified level, but you can craft a wand with a heightened version of a spell.",{"type":"pf2-h4","page":597,"name":"Varying Statistics","entries":["Each type of wand has a Level and Price determined by the spell's level. The wand's rarity matches the spell's rarity. The item's traits also vary, based on the spell. A wand has any traits listed in its stat block (usually just magical and wand), plus any traits of the spell stored on it. A wand has the normal Hardness, BT, and HP of a thin item of its material (page 577)."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":597,"name":"Crafting a Wand","entries":["For the most part, the process to Craft a wand is like that to Craft any other magic item. When you begin the crafting process, choose a spell to put into the wand. You have to either cast that spell during the process, or someone else must do so in your presence. That spell doesn't have its normal effects; instead, the magic is captured inside the wand. The caster doesn't need to pay any cost of the spell.","The casting must come from a spellcaster expending a spell slot. You can't make a wand from a spell that comes from another magic item, for example.",{"type":"pf2-brown-box","page":597,"name":"EXAMPLE WAND","entries":["This example {@item magic wand (generic)} has the {@spell heal} spell.",{"type":"data","tag":"item","data":{"name":"Wand of Heal","source":"CRB","page":597,"type":"Item","level":"3+","traits":["magical","necromancy","positive","wand"],"usage":"held in 1 hand","bulk":"L","category":"Wand","entries":["The golden end caps on this white wooden wand are adorned with ruby cabochons.",{"type":"ability","style":"compact","components":["{@action Cast a Spell}"],"frequency":{"freq":1,"unit":"day","overcharge":true,"number":"once "},"entries":["You cast a {@spell heal} spell at the indicated level."]}],"craftReq":"Supply a listed-level casting of heal.","generic":"G","variants":[{"type":"1st-level spell","level":3,"price":{"coin":"gp","amount":60},"entries":[]},{"type":"2nd-level spell","level":5,"price":{"coin":"gp","amount":160},"entries":[]},{"type":"3rd-level spell","level":7,"price":{"coin":"gp","amount":360},"entries":[]},{"type":"4th-level spell","level":9,"price":{"coin":"gp","amount":700},"entries":[]},{"type":"5th-level spell","level":11,"price":{"coin":"gp","amount":1500},"entries":[]},{"type":"6th-level spell","level":13,"price":{"coin":"gp","amount":3000},"entries":[]},{"type":"7th-level spell","level":15,"price":{"coin":"gp","amount":6500},"entries":[]},{"type":"8th-level spell","level":17,"price":{"coin":"gp","amount":15000},"entries":[]},{"type":"9th-level spell","level":19,"price":{"coin":"gp","amount":40000},"entries":[]}]}}],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":597,"name":"Magic Wand","entries":["The simplest form of wand contains a spell, with Price and level based on that spell. The wand has the magical and wand traits, as well as the traits the spell has. The name of a magic wand with a spell in it is simply \"wand of,\" followed by the spell's name."],"source":"CRB"},{"type":"pf2-h3","page":598,"name":"Specialty Wands","entries":["Specialty wands can contain only certain kinds of spells, as noted in the stat block, and either alter the spell's effects or affect how it can be cast. The Craft Requirements entry lists what kinds of spells the wand can hold."],"source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":278,"name":"Weapons","entries":[{"type":"pf2-h1-flavor","page":278,"entries":["{@i Most characters in Pathfinder carry weapons, ranging from mighty warhammers to graceful bows to even simple clubs. Full details on how you calculate the bonuses, modifiers, and penalties for attack rolls and damage rolls are given in Chapter 9 on page 446, but they're summarized here, followed by the rules for weapons and dozens of weapon choices.}"],"source":"CRB"},{"type":"pf2-h2","page":278,"name":"Attack Rolls","entries":["When making an attack roll, determine the result by rolling 1d20 and adding your attack modifier for the weapon or unarmed attack you're using. Modifiers for melee and ranged attacks are calculated differently.",{"type":"pf2-inset","page":278,"entries":["Ranged attack modifier = Dexterity modifier + proficiency bonus + other bonuses + penalties"],"source":"CRB"},{"type":"pf2-inset","page":278,"entries":["Melee attack modifier = Strength modifier {@n (or optionally Dexterity for a finesse weapon)} + proficiency bonus + other bonuses + penalties"],"source":"CRB"},"Bonuses, and penalties apply to these rolls just like with other types of checks. Weapons with potency runes (page 581) add an item bonus to your attack rolls.",{"type":"pf2-h3","page":278,"name":"Multiple Attack Penalty","entries":["If you use an action with the attack trait more than once on the same turn, your attacks after the first take a penalty called a multiple attack penalty. Your second attack takes a –5 penalty, and any subsequent attacks take a –10 penalty.","The multiple attack penalty doesn't apply to attacks you make when it isn't your turn (such as attacks made as part of a reaction). You can use a weapon with the {@trait agile} trait (page 282) to reduce your multiple attack penalty."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":278,"name":"Damage Rolls","entries":["When the result of your attack roll with a weapon or unarmed attack equals or exceeds your target's AC, you hit your target! Roll the weapon or unarmed attack's damage die and add the relevant modifiers, bonuses, and penalties to determine the amount of damage you deal. Calculate a damage roll as follows.",{"type":"pf2-inset","page":278,"entries":["Melee damage roll = damage die of weapon or unarmed attack + Strength modifier + bonuses + penalties"],"source":"CRB"},{"type":"pf2-inset","page":278,"entries":["Ranged damage roll = damage die of weapon + Strength modifier for thrown weapons + bonuses + penalties"],"source":"CRB"},"Ranged weapons don't normally add an ability modifier to the damage roll, though weapons with the propulsive trait (page 283) add half your Strength modifier (or your full modifier if it is a negative number), and thrown weapons add your full Strength modifier.","Magic weapons with {@item striking}, {@item greater striking}, or {@item major striking} runes (page 581) add one or more weapon damage dice to your damage roll. These extra dice are the same die size as the weapon's damage die. At higher levels, most characters also gain extra damage from weapon specialization."],"source":"CRB"},{"type":"pf2-h2","page":278,"name":"Critical Hits","entries":["When you make an attack and succeed with a natural 20 (the number on the die is 20), or if the result of your attack exceeds the target's AC by 10, you achieve a critical success (also known as a critical hit).","If you critically succeed at a {@action Strike}, your attack deals {@book double damage|CRB|9|Doubling and Halving Damage}. Other attacks, such as spell attack rolls and some uses of the {@skill Athletics} skill, describe the specific effects that occur when their outcomes are critical successes."],"source":"CRB"},{"type":"pf2-h2","page":278,"name":"Unarmed Attacks","entries":["Almost all characters start out trained in unarmed attacks. You can {@action Strike} with your fist or another body part, calculating your attack and damage rolls in the same way you would with a weapon. Unarmed attacks can belong to a weapon group (page 280), and they might have weapon traits (page 282). However, unarmed attacks aren't weapons, and effects and abilities that work with weapons never work with unarmed attacks unless they specifically say so.","{@table Unarmed Attacks||Table 6–6: Unarmed Attacks} lists the statistics for an unarmed attack with a fist, though you'll usually use the same statistics for attacks made with any other parts of your body. Certain ancestry feats, class features, and spells give access to special, more powerful unarmed attacks. Details for those unarmed attacks are provided in the abilities that grant them."],"source":"CRB"},{"type":"pf2-h2","page":278,"name":"Improvised Weapons","entries":["If you attack with something that wasn't built to be a weapon, such as a chair or a vase, you're making an attack with an improvised weapon. Improvised weapons are simple weapons. You take a –2 item penalty to attack rolls with an improvised weapon. The GM determines the amount and type of damage the attack deals, if any, as well as any weapon traits the improvised weapon should have."],"source":"CRB"},{"type":"pf2-h2","page":279,"name":"Weapon Statistics","entries":["The tables on pages 280 –282 list the statistics for various melee and ranged weapons that you can purchase, as well as the statistics for striking with a fist (or another basic unarmed attack). The tables present the following statistics. All weapons listed in this chapter have an item level of 0.",{"type":"pf2-h3","page":279,"name":"Damage","entries":["This entry lists the weapon's damage die and the type of damage it deals: B for bludgeoning, P for piercing, or S for slashing.",{"type":"pf2-beige-box","page":279,"name":"Damage Dice","entries":["Each weapon lists the damage die used for its damage roll. A standard weapon deals one die of damage, but a magical {@item striking (generic)||striking} rune can increase the number of dice rolled, as can some special actions and spells. These additional dice use the same die size as the weapon or unarmed attack's normal damage die.",{"type":"pf2-title","name":"Counting Damage Dice"},"Effects based on a weapon's number of damage dice include only the weapon's damage die plus any extra dice from a {@item striking (generic)||striking} rune. They don't count extra dice from abilities, critical specialization effects, property runes, weapon traits, or the like.",{"type":"pf2-title","name":"Increasing Die Size"},"When an effect calls on you to increase the size of your weapon damage dice, instead of using its normal weapon damage dice, use the next larger die, as listed below (so if you were using a d4, you'd use a d6, and so on). If you are already using a d12, the size is already at its maximum. You can't increase your weapon damage die size more than once.","{@c {@b {@dice 1d4} ➞ {@dice 1d6} ➞ {@dice 1d8} ➞ {@dice 1d10} ➞ {@dice 1d12}}}"],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":279,"name":"Range","entries":["Ranged and thrown weapons have a range increment. Attacks with these weapons work normally up to that distance. Attack rolls beyond a weapon's range increment take a –2 penalty for each additional multiple of that increment between you and the target. Attacks beyond the sixth range increment are impossible.","For example, a shortbow takes no penalty against a target up to 60 feet away, a –2 penalty against a target beyond 60 feet but up to 120 feet away, and a –4 penalty against a target beyond 120 feet but up to 180 feet away, and so on, up to 360 feet."],"source":"CRB"},{"type":"pf2-h3","page":279,"name":"Reload","entries":["While all weapons need some amount of time to get into position, many ranged weapons also need to be loaded and reloaded. This entry indicates how many {@action Interact} actions it takes to reload such weapons. This can be 0 if drawing ammunition and firing the weapon are part of the same action. If an item takes 2 or more actions to reload, the GM determines whether they must be performed together as an activity, or you can spend some of those actions during one turn and the rest during your next turn.","An item with an entry of \"—\" must be drawn to be thrown, which usually takes an {@action Interact} action just like drawing any other weapon. Reloading a ranged weapon and drawing a thrown weapon both require a free hand. Switching your grip to free a hand and then to place your hands in the grip necessary to wield the weapon are both included in the actions you spend to reload a weapon."],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h3","page":279,"name":"Bulk","entries":["This entry gives the weapon's Bulk. A weapon's Bulk is increased or decreased if it's sized for creatures that aren't Small or Medium size, following the rules on page 295."],"source":"CRB"},{"type":"pf2-brown-box","page":279,"name":"SELECTING WEAPONS","entries":["Characters who focus on combat need to carefully consider their choice of weapons, evaluating whether they want to fight in melee or at range, the weapons' damage potential, and the special features of various weapons. Characters who are primarily spellcasters usually just need to pick a backup weapon in the best category they're trained or better in.","When selecting weapons, start by identifying the weapon types you're trained or better in. You should then compare weapons within these types to determine which ones you will have the highest melee or ranged attack modifier with. It's usually considered best practice to select both a melee and ranged weapon during character creation so you can contend with a broader variety of foes and situations.",{"type":"pf2-title","name":"Weapon Categories"},"Weapons fall into broad categories depending on how much damage they deal and what traits they have. Martial weapons generally deal more damage than simple weapons, and advanced weapons generally have more advantageous traits than martial weapons with the same damage. Generally, you'll want to select weapons that deal more damage, but if you're a highly skilled combatant, you might want to pick a weapon with interesting traits, even if it has a lower weapon damage die. You can also purchase multiple weapons within your budget, allowing you to switch between them for different situations."],"source":"CRB"},{"type":"pf2-h3","page":279,"name":"Hands","entries":["Some weapons require one hand to wield, and others require two. A few items, such as a longbow, list 1+ for its Hands entry. You can hold a weapon with a 1+ entry in one hand, but the process of shooting it requires using a second to retrieve, nock, and loose an arrow. This means you can do things with your free hand while holding the bow without changing your grip, but the other hand must be free when you shoot. To properly wield a 1+ weapon, you must hold it in one hand and also have a hand free.","Weapons requiring two hands typically deal more damage. Some one-handed weapons have the two-hand trait, causing them to deal a different size of weapon damage die when used in two hands. In addition, some abilities require you to wield a weapon in two hands. You meet this requirement while holding the weapon in two hands, even if it doesn't require two hands or have the two-hand trait."],"source":"CRB"},{"type":"pf2-h3","page":280,"name":"Group","entries":["A weapon or unarmed attack's group classifies it with similar weapons. Groups affect some abilities and what the weapon does on a critical hit if you have access to that weapon or unarmed attack's critical specialization effects; for full details, see page 283."],"source":"CRB"},{"type":"pf2-h3","page":280,"name":"Weapon Traits","entries":["The traits a weapon or unarmed attack has are listed in this entry. Any trait that refers to a \"weapon\" can also apply to an unarmed attack that has that trait."],"source":"CRB"},{"type":"pf2-h3","page":280,"name":"Ammunition","entries":["Some entries in the ranged weapons tables are followed by an entry indicating the type of ammunition that weapon launches. The damage die is determined by the weapon, not the ammunition. Because that and other relevant statistics vary by weapon, ammunition entries list only the name, quantity, Price, and Bulk. Using ammunition destroys it."],"source":"CRB"},{"type":"statblock","tag":"table","name":"Unarmed Attacks","source":"CRB"},{"type":"statblock","tag":"table","name":"Melee Weapons","source":"CRB"},{"type":"statblock","tag":"table","name":"Ranged Weapons","source":"CRB"},{"type":"pf2-h3","page":282,"name":"Weapon Traits","entries":["{@filter Weapons and unarmed attacks with the weapon trait can have the following traits.|traits||source=CRB}"],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":283,"name":"Critical Specialization Effects","entries":["Certain feats, class features, weapon runes, and other effects can grant you additional benefits when you make a Strike with certain weapons and get a critical success. This is called a critical specialization effect. The exact effect depends on which weapon group your weapon belongs to, as listed below. You can always decide not to add the critical specialization effect of your weapon.","{@b Axe:} Choose one creature adjacent to the initial target and within reach. If its AC is lower than your attack roll result for the critical hit, you deal damage to that creature equal to the result of the weapon damage die you rolled (including extra dice for its potency rune, if any). This amount isn't doubled, and no bonuses or other additional dice apply to this damage.","{@b Bomb:} Increase the radius of the bomb's splash damage (if any) to 10 feet.","{@b Bow:} If the target of the critical hit is adjacent to a surface, it gets stuck to that surface by the missile. The target is immobilized and must spend an Interact action to attempt a DC 10 {@skill Athletics} check to pull the missile free; it can't move from its space until it succeeds. The creature doesn't become stuck if it is incorporeal, is liquid (like a water elemental or some oozes), or could otherwise escape without effort.","{@b Brawling:} The target must succeed at a Fortitude save against your class DC or be slowed 1 until the end of your next turn.","{@b Club:} You knock the target away from you up to 10 feet (you choose the distance). This is {@quickref forced movement||3|forced movement}.","{@b Dart:} The target takes {@dice 1d6} {@condition Persistent Damage|CRB|persistent bleed damage}. You gain an item bonus to this bleed damage equal to the weapon's item bonus to attack rolls.","{@b Flail:} The target is knocked {@condition prone}.","{@b Hammer:} The target is knocked {@condition prone}.","{@b Knife:} The target takes {@dice 1d6} {@condition Persistent Damage|CRB|persistent bleed} damage. You gain an item bonus to this bleed damage equal to the weapon's item bonus to attack rolls.","{@b Pick:} The weapon viciously pierces the target, who takes 2 additional damage per weapon damage die.","{@b Polearm:} The target is moved 5 feet in a direction of your choice. This is {@quickref forced movement||3|forced movement}.","{@b Shield:} You knock the target back from you 5 feet. This is {@quickref forced movement||3|forced movement}.","{@b Sling:} The target must succeed at a Fortitude save against your class DC or be stunned 1.","{@b Spear:} The weapon pierces the target, weakening its attacks. The target is clumsy 1 until the start of your next turn.","{@b Sword:} The target is made off-balance by your attack, becoming {@condition flat-footed} until the start of your next turn.",{"type":"pf2-h3","page":284,"name":"Weapon Descriptions","entries":["You can view all weapons on the {@filter Items page|items||source=CRB|category=weapon|type=equipment}."],"source":"CRB"}],"source":"CRB"}],"data":{"quickref":2},"source":"CRB"}]},{"type":"entries","entries":[{"type":"section","page":300,"name":"Cantrips","entries":["A cantrip is a special type of spell that's weaker than other spells but can be used with greater freedom and flexibility. The title of a cantrip's stat block says \"Cantrip\" instead of \"Spell.\" Casting a cantrip doesn't use up your spell slots; you can cast a cantrip at will, any number of times per day. If you're a prepared caster, you can prepare a specific number of cantrips each day. You can't prepare a cantrip in a spell slot.","A cantrip is always automatically heightened to half your level, rounded up. For a typical spellcaster, this means its level is equal to the highest level of spell slot you have."],"data":{"quickref":3},"source":"CRB"},{"type":"section","page":302,"name":"Casting Spells","entries":["The casting of a spell can range from a simple word of magical might that creates a fleeting effect to a complex process taking minutes or hours to cast and producing a long-term impact. {@action Cast a Spell||Casting a Spell} is a special activity that takes a number of actions defined by the spell. When you {@action Cast a Spell}, your spellcasting creates obvious visual manifestations of the gathering magic, although feats such as Conceal Spell (page 210) and Melodious Spell (page 101) can help hide such manifestations or otherwise prevent observers from noticing that you are casting.",{"type":"statblock","tag":"action","name":"Cast a Spell","source":"CRB"},{"type":"pf2-h3","page":303,"name":"Spell Components","entries":["A spell description lists the components required to {@action Cast a Spell||Cast the Spell}. For most spells, the number of components is equal to the number of actions you must spend to {@action Cast a Spell||Cast the Spell}. Each component adds certain traits to the {@action Cast a Spell} activity, and some components have special requirements. The components that appear in this book are listed below.",{"type":"pf2-h4","page":303,"name":"Material","entries":["A material component is a bit of physical matter consumed in the casting of the spell. The spell gains the manipulate trait and requires you to have a free hand to retrieve and manipulate a material component. That component is expended in the casting (even if the spell is disrupted).","Except in extreme circumstances, you can assume all common components are included in a material component pouch (page 290)."],"source":"CRB"},{"type":"pf2-h4","page":303,"name":"Somatic","entries":["A somatic component is a specific hand movement or gesture that generates a magical nexus. The spell gains the manipulate trait and requires you to make gestures. You can use this component while holding something in your hand, but not if you are restrained or otherwise unable to gesture freely.","Spells that require you to touch the target require a somatic component. You can do so while holding something as long as part of your hand is able to touch the target (even if it's through a glove or gauntlet)."],"source":"CRB"},{"type":"pf2-h4","page":303,"name":"Verbal","entries":["A verbal component is a vocalization of words of power.","You must speak them in a strong voice, so it's hard to conceal that you're {@action Cast a Spell||Casting a Spell}. The spell gains the {@trait concentrate}. You must be able to speak to provide this component."],"source":"CRB"},{"type":"pf2-h4","page":303,"name":"Focus","entries":["A focus is an object that funnels the magical energy of the spell. The spell gains the manipulate trait and requires you to either have a free hand to retrieve the focus listed in the spell or already be holding the focus in your hand.","As part of {@action Cast a Spell||Casting the Spell}, you retrieve the focus (if necessary), manipulate it, and can stow it again if you so choose.","Foci tend to be expensive, and you need to acquire them in advance to {@action Cast a Spell||Cast the Spell}."],"source":"CRB"},{"type":"pf2-brown-box","page":303,"name":"Component Substitution","entries":["Some classes can substitute one component for another or alter how a component works.","If you're a {@class bard} {@action Cast a Spell||Casting a Spell} from the {@trait occult} tradition you can usually play an {@item musical instrument||instrument} for spells requiring somatic or material components, as long as it takes at least one of your hands to do so. If you use an instrument, you don't need a spell component pouch or another hand free. You can usually also play an instrument for spells requiring verbal components, instead of speaking.","If you're a {@class cleric} {@action Cast a Spell||Casting a Spell} from the {@trait divine} tradition while holding a divine focus (such as a {@item religious symbol} or {@item religious text||text}), you can replace any material component the spell requires by using the divine focus as a focus component instead. Unlike the normal rules for a focus component, you can't retrieve or stow the focus when making this substitution.","If you're a {@class druid} {@action Cast a Spell||Casting a Spell} from the {@trait primal} tradition while holding a primal focus (such as {@item holly and mistletoe}), you can replace any material component the spell requires by using the primal focus as a focus component instead. Unlike the normal rules for a focus component, you can't retrieve or stow the focus when making this substitution.","If you're a {@class sorcerer} {@action Cast a Spell||Casting a Spell} from the magical tradition that matches your bloodline, you can draw on the magic within your blood to replace any material component with a somatic component.","Any character casting an innate spell can replace any material component with a somatic component."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-brown-box","page":304,"name":"Metamagic","entries":["Many spellcasters can gain access to metamagic actions, typically by selecting metamagic feats. Actions with the metamagic trait tweak the properties of your spells, changing their range, damage, or any number of other properties. You must use a metamagic action directly before the spell you want to alter. If you use any action (including free actions, reactions, and additional metamagic actions) other than {@action Cast a Spell} directly after, you waste the benefits of the metamagic action. Any additional effects added by a metamagic action are part of the spell's effect, not of the metamagic action itself."],"source":"CRB"}],"data":{"quickref":3},"source":"CRB"},{"type":"section","page":298,"name":"Disbelieving Illusions","entries":["Sometimes illusions allow an affected creature a chance to disbelieve the spell, which lets the creature effectively ignore the spell if it succeeds at doing so. This usually happens when a creature {@action Seek||Seeks} or otherwise spends actions to engage with the illusion, comparing the result of its {@skill Perception} check (or another check or saving throw, at the GM's discretion) to the caster's spell DC. {@trait Mental} illusions typically provide rules in the spell's description for disbelieving the effect (often allowing the affected creature to attempt a Will save).","If the illusion is {@trait visual}, and a creature interacts with the illusion in a way that would prove it is not what it seems, the creature might know that an illusion is present, but it still can't ignore the illusion without successfully disbelieving it. For instance, if a character is pushed through the illusion of a door, they will know that the door is an illusion, but they still can't see through it. Disbelieving an illusion makes it and those things it blocks seem hazy and indistinct, so even in the case where a visual illusion is disbelieved, it may, at the GM's discretion, block vision enough to make those on the other side concealed.."],"data":{"quickref":3},"source":"CRB"},{"type":"section","page":304,"name":"Durations","entries":["The duration of a spell is how long the spell effect lasts.","Spells that last for more than an instant have a Duration entry. A spell might last until the start or end of a turn, for some number of rounds, for minutes, or even longer. If a spell's duration is given in rounds, the number of rounds remaining decreases by 1 at the start of each of the spellcaster's turns, ending when the duration reaches 0.","Some spells have effects that remain even after the spell's magic is gone. Any ongoing effect that isn't part of the spell's duration entry isn't considered magical.","For instance, a spell that creates a loud sound and has no duration might deafen someone for a time, even permanently. This deafness couldn't be counteracted because it is not itself magical (though it might be cured by other magic, such as {@spell restore senses}).","If a spell's caster dies or is incapacitated during the spell's duration, the spell remains in effect till its duration ends.","You might need to keep track of the caster's initiative after they stopped being able to act to monitor spell durations.",{"type":"pf2-h3","page":304,"name":"Sustaining Spells","entries":["If the spell's duration is \"sustained,\" it lasts until the end of your next turn unless you use a Sustain a Spell action on that turn to extend the duration of that spell.",{"type":"statblock","tag":"action","name":"Sustain a Spell","source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":305,"name":"Long Durations","entries":["If a spell's duration says it lasts until your next daily preparations, on the next day you can refrain from preparing a new spell in that spell's slot. (If you are a spontaneous caster, you can instead expend a spell slot during your preparations.) Doing so extends the spell's duration until your next daily preparations. This effectively Sustains the Spell over a long period of time.","If you prepare a new spell in the slot (or don't expend a spell slot), the spell ends. You can't do this if the spell didn't come from one of your spell slots. If you are dead or otherwise incapacitated at the 24-hour mark after the time you {@action Cast a Spell||Cast the Spell} or the last time you extended its duration, the spell ends. Spells with an unlimited duration last until counteracted or Dismissed. You don't need to keep a spell slot open for these spells."],"source":"CRB"},{"type":"pf2-h3","page":305,"name":"Dismissing","entries":["Some spells can be dismissed, ending the duration early. This requires the caster or target to use the Dismiss action.",{"type":"statblock","tag":"action","name":"Dismiss","source":"CRB"}],"source":"CRB"}],"data":{"quickref":3},"source":"CRB"},{"type":"section","page":300,"name":"Focus Spells","entries":["Focus spells are a special type of spell attained directly from a branch of study, from a deity, or from another specific source. You can learn focus spells only through special class features or feats, rather than choosing them from a spell list. Furthermore, you cast focus spells using a special pool of Focus Points—you can't prepare a focus spell in a spell slot or use your spell slots to cast focus spells; similarly, you can't spend your Focus Points to cast spells that aren't focus spells. Even some classes that don't normally grant spellcasting, such as the champion and monk, can grant focus spells.","Focus spells are automatically heightened to half your level rounded up, just like cantrips are. You can't cast a focus spell if its minimum level is greater than half your level rounded up, even if you somehow gain access to it.","Casting any of your focus spells costs you 1 Focus Point. You automatically gain a focus pool of 1 Focus Point the first time you gain an ability that gives you a focus spell.","You replenish all the Focus Points in your pool during your daily preparations. You can also use the {@action Refocus} activity to pray, study, meditate, or otherwise reattune yourself to the source of your focus magic and regain a Focus Point.","Some abilities allow you to increase the Focus Points in your pool beyond 1. Typically, these are feats that give you a new focus spell and increase the number of points in your pool by 1. Your focus pool can't have a capacity beyond 3 Focus Points, even if feats that increase your pool would cause it to exceed this number.",{"type":"statblock","tag":"action","name":"Refocus","source":"CRB"},{"type":"pf2-brown-box","page":302,"name":"Focus Points from Multiple Sources","entries":["It's possible, especially through archetypes, to gain focus spells and Focus Points from more than one source. If this happens, you have just one focus pool, adding all the Focus Points together to determine the total size of your pool. (Remember that the maximum number of Focus Points a pool can have is 3.) If you have multiple abilities that give you a focus pool, each one adds 1 Focus Point to your pool. For instance, if you were a cleric with the Domain Initiate feat, you would have a pool with 1 Focus Point. Let's say you then took the champion multiclass archetype and the Healing Touch feat. Normally, this feat would give you a focus pool. Since you already have one, it instead increases your existing pool's capacity by 1.","Focus Points are not differentiated by source; you can spend any of your Focus Points on any of your focus spells. Likewise, when you {@action Refocus}, you get back a point as long as you follow the guidelines of any abilities that granted you focus spells. Having Focus Points from multiple sources doesn't change the tradition of your spells; if you had both cleric domain spells and druid order spells, your domain spells would remain divine and the order spells primal. This could mean that you need to keep track of a different proficiency and ability modifier with the spell DC and spell attack roll of different focus spells."],"source":"CRB"},{"type":"pf2-h3","page":302,"name":"Spellcasters with Focus Spells","entries":["If you are a spellcaster, your focus spells are the same tradition of spell as the class that gave you the focus spell. A {@class bard||bard's} are occult, a {@class cleric||cleric's} are divine, a {@class druid||druid's} are primal, a {@class wizard||wizard's} are arcane, and a {@class sorcerer||sorcerer's} are determined by their bloodline."],"source":"CRB"},{"type":"pf2-h3","page":302,"name":"Non-Spellcasters with Focus Spells","entries":["If you get focus spells from a class or other source that doesn't grant spellcasting ability (for example, if you're a monk with the {@feat Ki Strike} feat), the ability that gives you focus spells also provides your proficiency rank for spell attack rolls and spell DCs, as well as the magical tradition of your focus spells. You gain the ability to {@action Cast a Spell} and use any spellcasting actions necessary to cast your focus spells (see below). However, you don't qualify for feats and other rules that require you to be a spellcaster."],"source":"CRB"}],"data":{"quickref":3},"source":"CRB"},{"type":"section","page":305,"name":"Hostile Actions","entries":["Sometimes spell effects prevent a target from using hostile actions, or the spell ends if a creature uses any hostile actions. A hostile action is one that can harm or damage another creature, whether directly or indirectly, but not one that a creature is unaware could cause harm.","For instance, lobbing a {@spell fireball} into a crowd would be a hostile action, but opening a door and accidentally freeing a horrible monster would not be. The GM is the final arbitrator of what constitutes a hostile action."],"data":{"quickref":3},"source":"CRB"},{"type":"section","page":305,"name":"Identifying Spells","entries":["Sometimes you need to identify a spell, especially if its effects are not obvious right away. If you notice a spell being cast, and you have prepared that spell or have it in your repertoire, you automatically know what the spell is, including the level to which it is heightened.","If you want to identify a spell but don't have it prepared or in your repertoire, you must spend an action on your turn to attempt to identify it using Recall Knowledge. You typically notice a spell being cast by seeing its visual manifestations or hearing its verbal casting components. Identifying long-lasting spells that are already in place requires using Identify Magic instead of {@action Recall Knowledge} because you don't have the advantage of watching the spell being cast."],"data":{"quickref":3},"source":"CRB"},{"type":"section","page":302,"name":"Innate Spells","entries":["Certain spells are natural to your character, typically coming from your ancestry or a magic item rather than your class. You can cast your innate spells even if you aren't a member of a spellcasting class. The ability that gives you an innate spell tells you how often you can cast it—usually once per day—and its magical tradition. Innate spells are refreshed during your daily preparations. Innate cantrips are cast at will and automatically heightened as normal for cantrips (see Cantrips on page 300) unless otherwise specified.","You're always trained in spell attack rolls and spell DCs for your innate spells, even if you aren't otherwise trained in spell attack rolls or spell DCs. If your proficiency in spell attack rolls or spell DCs is expert or better, apply that proficiency to your innate spells, too. You use your Charisma modifier as your spellcasting ability modifier for innate spells unless otherwise specified.","If you have an innate spell, you can cast it, even if it's not of a spell level you can normally cast. This is especially common for monsters, which might be able to cast innate spells far beyond what a character of the same level could use.","You can't use your spell slots to cast your innate spells, but you might have an innate spell and also be able to prepare or cast the same spell through your class. You also can't heighten innate spells, but some abilities that grant innate spells might give you the spell at a higher level than its base level or change the level at which you cast the spell."],"data":{"quickref":3},"source":"CRB"},{"type":"section","page":304,"name":"Ranges, Areas, and Targets","entries":["Spells with a range can affect targets, create areas, or make things appear only within that range. Most spell ranges are measured in feet, though some can stretch over miles, reach anywhere on the planet, or go even farther!",{"type":"pf2-h3","page":304,"name":"Touch Range","entries":["A spell with a range of touch requires you to physically touch the target. You use your unarmed reach to determine whether you can touch the creature. You can usually touch the target automatically, though the spell might specify that the target can attempt a saving throw or that you must attempt a spell attack roll. If an ability increases the range of a touch spell, start at 0 feet and increase from there."],"source":"CRB"},{"type":"pf2-h3","page":304,"name":"Areas","entries":["Sometimes a spell has an area, which can be a burst, cone, emanation, or line. The method of measuring these areas can be found {@quickref here||3|Areas}. If the spell originates from your position, the spell has only an area; if you can cause the spell's area to appear farther away from you, the spell has both a range and an area."],"source":"CRB"},{"type":"pf2-h3","page":304,"name":"Targets","entries":["Some spells allow you to directly target a creature, an object, or something that fits a more specific category. The target must be within the spell's range, and you must be able to see it (or otherwise perceive it with a precise sense) to target it normally. At the GM's discretion, you can attempt to target a creature you can't see, as described in Detecting Creatures on pages 465–467. If you fail to target a particular creature, this doesn't change how the spell affects any other targets the spell might have.","If you choose a target that isn't valid, such as if you thought a vampire was a living creature and targeted it with a spell that can target only living creatures, your spell fails to target that creature. If a creature starts out as a valid target but ceases to be one during a spell's duration, the spell typically ends, but the GM might decide otherwise in certain situations.","Spells that affect multiple creatures in an area can have both an Area entry and a Targets entry. A spell that has an area but no targets listed usually affects all creatures in the area indiscriminately.","Some spells restrict you to willing targets. A player can declare their character a willing or unwilling target at any time, regardless of turn order or their character's condition (such as when a character is paralyzed, unconscious, or even dead)."],"source":"CRB"},{"type":"pf2-h3","page":304,"name":"Line of Effect","entries":["You usually need an unobstructed path to the target of a spell, the origin point of an area, or the place where you create something with a spell. More information on line of effect can be found {@quickref here||3|line of effect}."],"source":"CRB"}],"data":{"quickref":3},"source":"CRB"},{"type":"section","page":306,"name":"Reading Spells","entries":["Each spell uses the following format. Entries appear only when applicable, so not all spells will have every entry described here. The spell's name line also lists the type of spell if it's a cantrip or focus spell, as well as the level."],"data":{"quickref":3},"source":"CRB"},{"type":"section","page":408,"name":"Rituals","entries":[{"type":"pf2-h1-flavor","page":408,"entries":["{@i A ritual is an esoteric and complex spell that anyone can cast. It takes much longer to cast a ritual than a normal spell, but rituals can have more powerful effects.}"],"source":"CRB"},{"type":"pf2-h2","page":408,"name":"Casting Rituals","entries":["When you take charge of a ritual, you are its primary caster, and others assisting you are secondary casters. You can be a primary caster for a ritual even if you can't cast spells. You must know the ritual, and the ritual's spell level can be no higher than half your level rounded up.","You must also have the required proficiency rank in the skill used for the ritual's primary check (see Checks below), and as the primary caster, you must attempt this skill check to determine the ritual's effects. The primary skill check determines the tradition.","Rituals do not require spell slots to cast. You can heighten a ritual up to half your level rounded up, decided when the ritual is initiated. A ritual always takes at least 1 hour to perform, and often longer. While a ritual is a downtime activity, it's possible—albeit risky—to perform a ritual during exploration with enough uninterrupted time. A ritual's casting time is usually listed in days. Each day of casting requires 8 hours of participation in the ritual from all casters, with breaks during multiday rituals to allow rest. One caster can continue a multiday ritual, usually with some light chanting or meditation, while the other casters rest. All rituals require material, somatic, and verbal components throughout their casting time.",{"type":"pf2-h3","page":408,"name":"Learning Rituals","entries":["Learning a ritual does not count against any limits on spells in your spell repertoire or on any other normal spellcasting ability. Rituals are never common, though if you look hard, you can probably find someone who can perform an uncommon ritual for you. They may still be unwilling to teach it to you."],"source":"CRB"},{"type":"pf2-h3","page":408,"name":"Cost","entries":["A ritual's Cost entry lists valuable components required to cast the ritual. If a ritual doesn't have any such components, it won't have a Cost entry. The cost is consumed when you attempt the primary skill check. Costs are often presented as a base cost multiplied by the target's level and sometimes the spell's level. If the target's level is lower than 1, multiply the cost by 1 instead. Heightened versions that increase the base cost multiply it by the target's level or another value as appropriate. Most rituals that create permanent creatures, such as {@ritual create undead}, use costs based on the level of the spell, as presented on {@table creature creation rituals||Table 7–1}."],"source":"CRB"},{"type":"pf2-h3","page":408,"name":"Secondary Casters","entries":["Many rituals need additional secondary casters, who also don't need to be able to cast spells. Unlike a primary caster, a secondary caster doesn't need a minimum level or skill proficiency. The Secondary Casters entry, if present, indicates the minimum number of secondary casters required."],"source":"CRB"},{"type":"pf2-h3","page":408,"name":"Checks","entries":["At the ritual's culmination, you must attempt the skill check listed in the Primary Check entry to determine the ritual's outcome. Primary checks usually have a very hard DC for a level that's twice the ritual's spell level. As with other downtime activities, fortune and misfortune effects can't modify your checks for the ritual, nor can bonuses or penalties that aren't active throughout the process.","The GM can adjust the DCs of rituals, add or change primary or secondary checks, or even waive requirements to fit specific circumstances. For example, performing a ritual in a location where ley lines converge on the night of a new moon might make a normally difficult ritual drastically easier.",{"type":"statblock","tag":"table","name":"Creature Creation Rituals","source":"CRB"}],"source":"CRB"}],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h4","page":408,"name":"Secondary Checks","entries":["Often, a ritual requires secondary checks to represent aspects of its casting, usually with a standard DC for a level twice the ritual's spell level. A different secondary caster must attempt each secondary check. If there are more secondary casters than checks, the others don't attempt any.","Secondary casters attempt their checks before you attempt the primary check; no matter their results, the ritual proceeds to the primary check. Secondary checks affect the primary check depending on their results.",{"type":"successDegree","entries":{"Critical Success":"You gain a +2 circumstance bonus to the primary check.","Success":"No bonus or penalty.","Failure":"You take a –4 circumstance penalty to the primary check.","Critical Failure":"As failure, and you reduce the degree of success of the primary skill check by one step."}}],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h3","page":409,"name":"Effect","entries":["A ritual's effect depends on the result of the primary check.","If an effect lists a save DC, use your spell DC for the ritual's magic tradition (or 12 + your level + your highest mental ability modifier, if you don't have a spell DC)."],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h2","page":409,"name":"Rituals","entries":["{@note Please visit the {@filter rituals page|rituals||source=CRB} to view all Rituals.}"],"source":"CRB"}],"data":{"quickref":3},"source":"CRB"},{"type":"section","page":305,"name":"Saving Throws","entries":["Spells that require a target to attempt a save to resist some or all of the spell's effects have a Saving Throw entry. This entry presents the type of save for quick reference, and specific details appear in the spell description. Whenever a spell allows a saving throw, it uses the caster's spell DC.",{"type":"pf2-h3","page":305,"name":"Basic Saving Throws","entries":["If a spell's Saving Throw entry specifies a \"basic\" saving throw, the spell's potential effects all relate to the damage listed in the spell's description. The target takes no damage on a critical success, half damage on a success, full damage on a failure, or double damage on a critical failure. The rules for basic saving throws are found on page 449."],"source":"CRB"}],"data":{"quickref":3},"source":"CRB"},{"type":"section","page":305,"name":"Setting Triggers","entries":["If a spell is meant to respond only to certain events or under certain conditions—such as {@spell magic mouth}—it might require you to set a trigger. This is a simple sensory cue that causes the spell to activate. The spell activates as a reaction when the spell's sensor observes something that fits its trigger. Depending on the spell, the trigger might be the presence of a type of creature, such as \"red-haired dwarven women,\" or it could be an observed action, such as \"whenever someone enters the spell's area.\" Disguises and illusions fool the spell as long as they appear to match its parameters. For a spell to detect something visually, the spell's origin point must have line of sight. Darkness doesn't prevent this, but invisibility does, as does a successful {@skill Stealth} check to Hide (against the spell's DC). For auditory detection, line of sight isn't necessary, though the sound must be audible at the spell's origin point. A {@skill Stealth} check to Sneak can fool the sensor."],"data":{"quickref":3},"source":"CRB"},{"type":"section","page":305,"name":"Spell Attacks","entries":["Some spells require you to succeed at a spell attack roll to affect the target. This is usually because they require you to precisely aim a ray or otherwise make an accurate attack. A spell attack roll is compared to the target's AC.","Spell attack rolls benefit from any bonuses or penalties to attack rolls, including your multiple attack penalty, but not any special benefits or penalties that apply only to weapon or unarmed attacks. Spell attacks don't deal any damage beyond what's listed in the spell description.","In rare cases, a spell might have you make some other type of attack, such as a weapon Strike. Such attacks use the normal rules and attack bonus for that type of attack."],"data":{"quickref":3},"source":"CRB"},{"type":"section","page":298,"name":"Spell Slots","entries":["Characters of spellcasting classes can cast a certain number of spells each day; the spells you can cast in a day are referred to as spell slots. At 1st level, a character has only a small number of 1st-level spell slots per day, but as you advance in level, you gain more spell slots and new slots for higher-level spells. A spell's level indicates its overall power, from 1 to 10.",{"type":"pf2-h3","page":298,"name":"Prepared Spells","entries":["If you're a prepared spellcaster—such as a cleric, druid, or wizard—you must spend time each day preparing spells for that day. At the start of your daily preparations, you select a number of spells of different spell levels determined by your character level and class. Your spells remain prepared until you cast them or until you prepare spells again.","Each prepared spell is expended after a single casting, so if you want to cast a particular spell more than once in a day, you need to prepare that spell multiple times. The exceptions to this rule are spells with the cantrip trait; once you prepare a cantrip, you can cast it as many times as you want until the next time you prepare spells. See page 300 for more information on cantrips.","You might gain an ability that allows you to swap prepared spells or perform other aspects of preparing spells at different times throughout the day, but only your daily preparation counts for the purpose of effects that last until the next time you prepare spells."],"source":"CRB"},{"type":"pf2-h3","page":298,"name":"Spontaneous Spells","entries":["If you're a spontaneous spellcaster—such as a bard or a sorcerer—you choose which spell you're using a spell slot for at the moment you decide to cast it. This provides you with more freedom in your spellcasting, but you have fewer spells in your spell repertoire, as determined by your character level and class. When you make your daily preparations, all your spell slots are refreshed, but you don't get to change the spells in your repertoire."],"source":"CRB"},{"type":"pf2-red-box","page":299,"name":"Magical Traditions","entries":["Spellcasters cast spells from one of four different spell list, each representing a different magical tradition: arcane, divine, occult, and primal.","Your class determines which tradition of magic your spells use. In some cases, such as when a cleric gains spells from their deity or when a sorcerer gets spells from their bloodline, you might be able to cast spells from a different spell list. In these cases, the spell uses your magic tradition, not the list the spell normally comes from. When you cast a spell, add your tradition's trait to the spell.","Some types of magic, such as that of most magic items, don't belong to any single tradition. These have the magical trait instead of a tradition trait.",{"type":"table","style":"pf2-box__table--red","rows":[["Arcane","Divine","Occult","Primal"],["Arcane spellcasters use logic and rationality to categorize the magic inherent in the world around them. Because of its far-reaching approach, the arcane tradition has the broadest spell list, though it's generally poor at affecting the spirit or the soul. Wizards are the most iconic arcane spellcasters, poring over tomes and grimoires, though arcane sorcerers study the secrets of their blood to unlock the power within themselves.","The power of the divine is steeped in faith, the unseen, and belief in a power source from beyond the Material Plane. Clerics are the most iconic divine spellcasters, beseeching the gods to grant them their magic. Divine sorcerers can use the blood of their celestial or fiendish ancestors as a divine conduit, and champions call upon their gods to grant them martial prowess through divine guidance.","The practitioners of occult traditions seek to understand the unexplainable, categorize the bizarre, and otherwise access the ephemeral in a systematic way. Bards are the most iconic occult spellcasters, collecting strange esoterica and using their performances to influence the mind or elevate the soul, and occult sorcerers strive to understand the mysterious power in their blood.","An instinctual connection to and faith in the world, the cycle of day and night, theturning of the seasons, and the natural selection of predator and prey drive the primal tradition. Druids are the most iconic primal spellcasters, calling upon the magic of nature through deep faith and a connection to the plants and animals around them, and primal sorcerers call upon their fey or beast blood to harness the same natural energies."]]}],"source":"CRB"},{"type":"pf2-h3","page":299,"name":"Heightened Spells","entries":["Both prepared and spontaneous spellcasters can cast a spell at a higher spell level than that listed for the spell.","This is called heightening the spell. A prepared spellcaster can heighten a spell by preparing it in a higher-level slot than its normal spell level, while a spontaneous spellcaster can heighten a spell by casting it using a higher-level spell slot, so long as they know the spell at that level (see Heightened Spontaneous Spells below). When you heighten your spell, the spell's level increases to match the higher level of the spell slot you've prepared it in or used to cast it. This is useful for any spell, because some effects, such as counteracting, depend on the spell's level.","In addition, many spells have additional specific benefits when they are heightened, such as increased damage. These extra benefits are described at the end of the spell's stat block. Some heightened entries specify one or more levels at which the spell must be prepared or cast to gain these extra advantages. Each of these heightened entries states specifically which aspects of the spell change at the given level. Read the heightened entry only for the spell level you're using or preparing; if its benefits are meant to include any of the effects of a lower-level heightened entry, those benefits will be included in the entry.","Other heightened entries give a number after a plus sign, indicating that heightening grants extra advantages over multiple levels. The listed effect applies for every increment of levels by which the spell is heightened above its lowest spell level, and the benefit is cumulative. For example, {@spell fireball} says \"{@b Heightened (+1)} The damage increases by 2d6.\" Because {@spell fireball} deals {@damage 6d6} fire damage at 3rd level, a 4th-level {@spell fireball} would deal {@dice 8d6} fire damage, a 5th-level spell would deal {@dice 10d6} fire damage, and so on.",{"type":"pf2-h4","page":299,"name":"Heightened Spontaneous Spells","entries":["If you're a spontaneous spellcaster, you must know a spell at the specific level that you want to cast it in order to heighten it. You can add a spell to your spell repertoire at more than a single level so that you have more options when casting it. For example, if you added {@spell fireball} to your repertoire as a 3rd-level spell and again as a 5th-level spell, you could cast it as a 3rd-level or a 5th-level spell; however, you couldn't cast it as a 4th-level spell.","Many spontaneous spellcasting classes provide abilities like the signature spells class feature, which allows you to cast a limited number of spells as heightened versions even if you know the spell at only a single level."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-red-box","page":299,"name":"The Four Essences","entries":["Spells that affect certain physical or metaphysical forces tend to be grouped into particular magical traditions. Scholars of magic widely agree that all of existence is composed of some combination of four essences, though they disagree on the names and particular qualities of each essence.","The following entries discuss each essence and the traditions and spell schools relevant to it; for instance, evocation spells tend to manipulate matter. The abjuration school is an unusual case, as abjuration spells draw upon different essences depending on who they are warding and what they are protecting against.",{"type":"table","style":"pf2-box__table--red","rows":[["Matter","Spirit","Mind","Life"],["Also called body, material essence, or physical essence, matter is the fundamental building block that makes up all physical things in the universe. The arcane and primal traditions are especially attuned toward manipulating and shaping matter. Spells that are used to create or alter matter most often come from the conjuration, evocation, or transmutation schools.","Also called soul, ethereal essence, or spiritual essence, spirit is an otherworldly building block that makes up a being's immaterial and immortal self. The spirit travels through the Ethereal Plane and into the Great Beyond after the death of the physical body. The spirit is most easily affected by divine and occult spells. Spirit spells are usually of the divination or necromancy schools.","Also called thought or astral essence, the mind essence allows thinking creatures to have rational thoughts, ideas, plans, logic, and memories. Mind touches even nonsapient creatures like animals, though in a more limited capacity. Arcane and occult casters usually excel at mind spells. Spells that use mind essence are usually found in the divination, enchantment, and illusion schools.","Also called heart, faith, instinct, or vital essence, life represents the animating universal force within all things. Whereas matter provides the base materials for a body, life keeps it alive and well. This essence is responsible for unconscious responses and belief, such as ancestral instincts and divine guidance. The divine and primal traditions hold power over life. Life spells are usually necromancy."]]}],"source":"CRB"}],"data":{"quickref":3},"source":"CRB"},{"type":"section","page":306,"name":"Walls","entries":["Spells that create walls list the depth, length, and height of the wall, also specifying how it can be positioned. Some walls can be shaped; you can manipulate the wall into a form other than a straight line, choosing its contiguous path square by square. The path of a shaped wall can't enter the same space more than once, but it can double back so one section is adjacent to another section of the wall."],"data":{"quickref":3},"source":"CRB"}]},{"type":"entries","entries":[{"type":"section","page":461,"name":"Actions","entries":["You affect the world around you primarily by using actions, which produce effects. Actions are most closely measured and restricted during the encounter mode of play, but even when it isn't important for you to keep strict track of actions, they remain the way in which you interact with the game world. There are four types of actions: single actions, activities, reactions, and free actions.","{@b Single actions} can be completed in a very short time. They're self-contained, and their effects are generated within the span of that single action. During an encounter, you get 3 actions at the beginning of your turn, which you can use as described on page 468.","{@b Activities} usually take longer and require using multiple actions, which must be spent in succession. Stride is a single action, but Sudden Charge is an activity in which you use both the Stride and Strike actions to generate its effect.","{@b Reactions} have triggers, which must be met for you to use the reaction. You can use a reaction anytime its trigger is met, whether it's your turn or not. In an encounter, you get 1 reaction each round, which you can use as described on page 468. Outside of encounters, your use of reactions is more flexible and up to the GM. Reactions are usually triggered by other creatures or by events outside your control.","{@b Free actions} don't cost you any of your actions per turn, nor do they cost your reaction. A free action with no trigger follows the same rules as a single action (except the action cost), and a free action with a trigger follows the same rules as a reaction (except the reaction cost).",{"type":"pf2-brown-box","page":461,"name":"ACTION ICON KEY","entries":["These icons appear in stat blocks as shorthand for each type of action.","{@as 1} Single Action","{@as 2} Two-Action Activity","{@as 3} Three-Action Activity","{@as R} Reaction","{@as F} Free Action"],"source":"CRB"},{"type":"pf2-h3","page":461,"name":"Activities","entries":["An activity typically involves using multiple actions to create an effect greater than you can produce with a single action, or combining multiple single actions to produce an effect that's different from merely the sum of those actions. In some cases, usually when spellcasting, an activity can consist of only 1 action, 1 reaction, or even 1 free action.","An activity might cause you to use specific actions within it. You don't have to spend additional actions to perform them—they're already factored into the activity's required actions. (See Subordinate Actions on page 462.) You have to spend all the actions of an activity at once to gain its effects. In an encounter, this means you must complete it during your turn. If an activity gets interrupted or disrupted in an encounter (page 462), you lose all the actions you committed to it.",{"type":"pf2-h4","page":461,"name":"Exploration and Downtime Activities","entries":["Outside of encounters, activities can take minutes, hours, or even days. These activities usually have the exploration or downtime trait to indicate they're meant to be used during these modes of play. You can often do other things off and on as you carry out these activities, provided they aren't significant activities of their own. For instance, if you're Repairing an item, you might move around to stretch your legs or have a brief discussion—but you couldn't also Decipher Writing at the same time.","If an activity that occurs outside of an encounter is interrupted or disrupted, as described in Disrupting Actions below, you usually lose the time you put in, but no additional time beyond that."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-brown-box","page":462,"name":"IN-DEPTH ACTION RULES","entries":["These rules clarify some of the specifics of using actions.",{"type":"pf2-title","name":"Simultaneous Actions"},"You can use only one single action, activity, or free action that doesn't have a trigger at a time. You must complete one before beginning another. For example, the Sudden Charge activity states you must Stride twice and then Strike, so you couldn't use an Interact action to open a door in the middle of the movement, nor could you perform part of the move, make your attack, and then finish the move.","Free actions with triggers and reactions work differently. You can use these whenever the trigger occurs, even if the trigger occurs in the middle of another action.",{"type":"pf2-title","name":"Subordinate Actions"},"An action might allow you to use a simpler action—usually one of the Basic Actions on page 469—in a different circumstance or with different effects. This subordinate action still has its normal traits and effects, but is modified in any ways listed in the larger action. For example, an activity that tells you to Stride up to half your Speed alters the normal distance you can move in a Stride. The Stride would still have the move trait, would still trigger reactions that occur based on movement, and so on. The subordinate action doesn't gain any of the traits of the larger action unless specified. The action that allows you to use a subordinate action doesn't require you to spend more actions or reactions to do so; that cost is already factored in.","Using an activity is not the same as using any of its subordinate actions. For example, the quickened condition you get from the {@spell haste} spell lets you spend an extra action each turn to Stride or Strike, but you couldn't use the extra action for an activity that includes a Stride or Strike. As another example, if you used an action that specified, \"If the next action you use is a Strike,\" an activity that includes a Strike wouldn't count, because the next thing you are doing is starting an activity, not using the Strike basic action."],"source":"CRB"},{"type":"pf2-h3","page":462,"name":"Actions with Triggers","entries":["You can use free actions that have triggers and reactions only in response to certain events. Each such reaction and free action lists the trigger that must happen for you to perform it. When its trigger is satisfied—and {@i only} when it is satisfied—you can use the reaction or free action, though you don't have to use the action if you don't want to.","There are only a few basic reactions and free actions that all characters can use. You're more likely to gain actions with triggers from your class, feats, and magic items.",{"type":"pf2-h4","page":462,"name":"Limitations on Triggers","entries":["The triggers listed in the stat blocks of reactions and some free actions limit when you can use those actions. You can use only one action in response to a given trigger. For example, if you had a reaction and a free action that both had a trigger of \"your turn begins,\" you could use either of them at the start of your turn—but not both. If two triggers are similar, but not identical, the GM determines whether you can use one action in response to each or whether they're effectively the same thing. Usually, this decision will be based on what's happening in the narrative.","This limitation of one action per trigger is per creature; more than one creature can use a reaction or free action in response to a given trigger."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":462,"name":"Other Actions","entries":["Sometimes you need to attempt something not already covered by defined actions in the game. When this happens, the rules tell you how many actions you need to spend, as well any traits your action might have. For example, a spell that lets you switch targets might say you can do so \"by spending a single action, which has the {@trait concentrate}.\" Game masters can also use this approach when a character tries to do something that isn't covered in the rules."],"source":"CRB"},{"type":"pf2-h3","page":462,"name":"Gaining and Losing Actions","entries":["Conditions can change the number of actions you can use on your turn, or whether you can use actions at all. The slowed condition, for example, causes you to lose actions, while the quickened condition causes you to gain them.","Conditions are detailed in the appendix on pages 618–623.","Whenever you lose a number of actions—whether from these conditions or in any other way—you choose which to lose if there's any difference between them. For instance, the {@spell haste} spell makes you quickened, but it limits what you can use your extra action to do. If you lost an action while {@spell haste} was active, you might want to lose the action from haste first, since it's more limited than your normal actions.","Some effects are even more restrictive. Certain abilities, instead of or in addition to changing the number of actions you can use, say specifically that you can't use reactions. The most restrictive form of reducing actions is when an effect states that you can't act: this means you can't use any actions, or even speak. When you can't act, you don't regain your actions and reaction on your turn."],"source":"CRB"},{"type":"pf2-h3","page":462,"name":"Disrupting Actions","entries":["Various abilities and conditions, such as an Attack of Opportunity, can disrupt an action. When an action is disrupted, you still use the actions or reactions you committed and you still expend any costs, but the action's effects don't occur. In the case of an activity, you usually lose all actions spent for the activity up through the end of that turn. For instance, if you began a {@action Cast a Spell} activity requiring 3 actions and the first action was disrupted, you lose all 3 actions that you committed to that activity.","The GM decides what effects a disruption causes beyond simply negating the effects that would have occurred from the disrupted action. For instance, a Leap disrupted midway wouldn't transport you back to the start of your jump, and a disrupted item hand off might cause the item to fall to the ground instead of staying in the hand of the creature who was trying to give it away."],"source":"CRB"}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":457,"name":"Afflictions","entries":["Diseases and poisons are types of afflictions, as are curses and radiation. An affliction can infect a creature for a long time, progressing through different and often increasingly debilitating stages. The level of an affliction is the level of the monster, hazard, or item causing the affliction or, in the case of a spell, is listed in the affliction entry for that spell.",{"type":"pf2-h3","page":457,"name":"Format","entries":["Whether appearing in a spell, as an item, or within a creature's stat block, afflictions appear in the following format.",{"type":"pf2-h4","page":457,"name":"Name and Traits","entries":["The affliction's name is given first, followed by its traits in parentheses—including the trait for the type of affliction (curse, disease, poison, and so forth). If the affliction needs to have a level specified, it follows the parentheses, followed by any unusual details, such as restrictions on removing the conditions imposed by an affliction."],"source":"CRB"},{"type":"pf2-h4","page":457,"name":"Saving Throw","entries":["When you're first exposed to the affliction, you must attempt a saving throw against it. This first attempt to stave off the affliction is called the initial save. An affliction usually requires a Fortitude save, but the exact save and its DC are listed after the name and type of affliction. Spells that can poison you typically use the caster's spell DC.","On a successful initial saving throw, you are unaffected by that exposure to the affliction. You do not need to attempt further saving throws against it unless you are exposed to the affliction again.","If you fail the initial saving throw, after the affliction's onset period elapses (if applicable), you advance to stage 1 of the affliction and are subjected to the listed effect. On a critical failure, after its onset period (if applicable), you advance to stage 2 of the affliction and are subjected to that effect instead. The stages of an affliction are described below."],"source":"CRB"},{"type":"pf2-h4","page":458,"name":"Onset","entries":["Some afflictions have onset times. For these afflictions, once you fail your initial save, you don't gain the effects for the first stage of the affliction until the onset time has elapsed. If this entry is absent, you gain the effects for the first stage (or the second stage on a critical failure) immediately upon failing the initial saving throw."],"source":"CRB"},{"type":"pf2-h4","page":458,"name":"Maximum Duration","entries":["If an affliction lasts only a limited amount of time, it lists a maximum duration. Once this duration passes, the affliction ends. Otherwise, the affliction lasts until you succeed at enough saves to recover, as described in Stages below."],"source":"CRB"},{"type":"pf2-h4","page":458,"name":"Stages","entries":["An affliction typically has multiple stages, each of which lists an effect followed by an interval in parentheses. When you reach a given stage of an affliction, you are subjected to the effects listed for that stage.","At the end of a stage's listed interval, you must attempt a new saving throw. On a success, you reduce the stage by 1; on a critical success, you reduce the stage by 2. You are then subjected to the effects of the new stage. If the affliction's stage is ever reduced below stage 1, the affliction ends and you don't need to attempt further saves unless you're exposed to the affliction again.","On a failure, the stage increases by 1; on a critical failure, the stage increases by 2. You are then subjected to the effects listed for the new stage. If a failure or critical failure would increase the stage beyond the highest listed stage, the affliction instead repeats the effects of the highest stage."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":458,"name":"Conditions from Afflictions","entries":["An affliction might give you conditions with a longer or shorter duration than the affliction. For instance, if an affliction causes you to be drained but has a maximum duration of 5 minutes, you remain drained even after the affliction ends, as is normal for the drained condition. Or, you might succeed at the flat check to remove persistent damage you took from an ongoing affliction, but you would still need to attempt saves to remove the affliction itself, and failing one might give you new persistent damage."],"source":"CRB"},{"type":"pf2-h3","page":458,"name":"Multiple Exposures","entries":["Multiple exposures to the same curse or disease currently affecting you have no effect. For a poison, however, failing the initial saving throw against a new exposure increases the stage by 1 (or by 2 if you critically fail) without affecting the maximum duration. This is true even if you're within the poison's onset period, though it doesn't change the onset length."],"source":"CRB"},{"type":"pf2-h3","page":458,"name":"Virulent Afflictions","entries":["Afflictions with the {@trait virulent} trait are harder to remove.","You must succeed at two consecutive saves to reduce a virulent affliction's stage by 1. A critical success reduces a virulent affliction's stage by only 1 instead of by 2."],"source":"CRB"}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":443,"name":"Checks","entries":["When success isn't certain—whether you're swinging a sword at a foul beast, attempting to leap across a chasm, or straining to remember the name of the earl's second cousin at a soiree—you'll attempt a check. Pathfinder has many types of checks, from skill checks to attack rolls to saving throws, but they all follow these basic steps.",{"type":"list","style":"list-decimal","items":["Roll a d20 and identify the modifiers, bonuses, and penalties that apply.","Calculate the result.","Compare the result to the difficulty class (DC).","Determine the degree of success and the effect."]},"Checks and difficulty classes (DC) both come in many forms. When you swing your sword at that foul beast, you'll make an attack roll against its Armor Class, which is the DC to hit another creature. If you are leaping across that chasm, you'll attempt an {@skill Athletics} skill check with a DC based on the distance you are trying to jump. When calling to mind the name of the earl's second cousin, you attempt a check to Recall Knowledge. You might use either the Society skill or a Lore skill you have that's relevant to the task, and the DC depends on how common the knowledge of the cousin's name might be, or how many drinks your character had when they were introduced to the cousin the night before.","No matter the details, for any check you must roll the d20 and achieve a result equal to or greater than the DC to succeed. Each of these steps is explained below.",{"type":"pf2-h3","page":444,"name":"Step 1: Roll D20 and Identify The Modifiers, Bonuses, and Penalties That Apply","entries":["Start by rolling your d20. You'll then identify all the relevant modifiers, bonuses, and penalties that apply to the roll. A {@b modifier} can be either positive or negative, but a {@b bonus} is always positive, and a {@b penalty} is always negative.","The sum of all the modifiers, bonuses, and penalties you apply to the d20 roll is called your total modifier for that statistic.","Nearly all checks allow you to add an {@b ability modifier} to the roll. An ability modifier represents your raw capabilities and is derived from an ability score, as described on page 20. Exactly which ability modifier you use is determined by what you're trying to accomplish. Usually a sword swing applies your Strength modifier, whereas remembering the name of the earl's cousin uses your Intelligence modifier.","When attempting a check that involves something you have some training in, you will also add your {@b bonus}. This bonus depends on your proficiency rank:","untrained, trained, expert, master, or legendary. If you're untrained, your bonus is +0—you must rely on raw talent and any bonuses from the situation. Otherwise, the bonus equals your character's level plus a certain amount depending on your rank. If your proficiency rank is trained, this bonus is equal to your level + 2, and higher proficiency ranks further increase the amount you add to your level.",{"type":"table","colStyles":["text-center","text-center"],"rows":[["Proficiency Rank","Proficiency Bonus"],["Untrained","0"],["Trained","Your level + 2"],["Expert","Your level + 4"],["Master","Your level + 6"],["Legendary","Your level + 8"]]},"There are three other types of bonus that frequently appear: circumstance bonuses, item bonuses, and status bonuses. If you have different types of bonus that would apply to the same roll, you'll add them all. But if you have multiple bonuses of the same type, you can use only the highest bonus on a given roll—in other words, they don't \"stack.\" For instance, if you have both a proficiency bonus and an item bonus, you add both to your d20 result, but if you have two item bonuses that could apply to the same check, you add only the higher of the two.","{@b Circumstance bonuses} typically involve the situation you find yourself in when attempting a check. For instance, using Raise a Shield with a buckler grants you a +1 circumstance bonus to AC. Being behind cover grants you a +2 circumstance bonus to AC. If you are both behind cover and Raising a Shield, you gain only the +2 circumstance bonus for cover, since they're the same type and the bonus from cover is higher.","{@b Item bonuses} are granted by some item that you are wearing or using, either mundane or magical. For example, armor gives you an item bonus to AC, while expanded alchemist's tools grant you an item bonus to {@skill Crafting} checks when making alchemical items.","{@b Status bonuses} typically come from spells, other magical effects, or something applying a helpful, often temporary, condition to you. For instance, the 3rd-level {@spell heroism} spell grants a +1 status bonus to attack rolls, {@skill Perception} checks, saving throws, and skill checks. If you were under the effect of {@spell heroism} and someone cast the {@spell bless} spell, which also grants a +1 status bonus on attacks, your attack rolls would gain only a +1 status bonus, since both spells grant a +1 status bonus to those rolls, and you only take the highest status bonus.","Penalties work very much like bonuses. You can have {@b circumstance penalties {@b status penalties}, and sometimes even {@b item penalties.} Like bonuses of the same type, you take only the worst all of various penalties of a given type. However, you can apply both a bonus and a penalty of the same type on a single roll. For example, if you had a +1 status bonus from a {@spell heroism} spell but a –2 status penalty from the sickened condition, you'd apply them both to your roll—so {@spell heroism} still helps even though you're feeling unwell.","Unlike bonuses, penalties can also be {@b untyped}, in which case they won't be classified as \"circumstance,\" \"item,\" or \"status.\" Unlike other penalties, you always add all your untyped penalties together rather than simply taking the worst one. For instance, when you use attack actions, you incur a multiple attack penalty on each attack you make on your turn after the first attack, and when you attack a target that's beyond your weapon's normal range increment, you incur a range penalty on the attack.","Because these are both untyped penalties, if you make multiple attacks at a faraway target, you'd apply both the multiple attack penalty and the range penalty to your roll.","Once you've identified all your various modifiers, bonuses, and penalties, you move on to the next step."],"source":"CRB"},{"type":"pf2-h3","page":445,"name":"Step 2: Calculate the Result","entries":["This step is simple. Add up all the various modifiers, bonuses, and penalties you identified in Step 1—this is your total modifier. Next add that to the number that came up on your d20 roll. This total is your check result."],"source":"CRB"},{"type":"pf2-h3","page":445,"name":"Step 3: Compare the Result to the DC","entries":["This step can be simple, or it can create suspense. Sometimes you'll know the {@b Difficulty Class} ({@b DC}) of your check. In these cases, if your result is equal to or greater than the DC, you succeed! If your roll anything less than the DC, you fail.","Other times, you might not know the DC right away. Swimming across a river would require an {@skill Athletics} check, but it doesn't have a specified DC—so how will you know if you succeed or fail? You call out your result to the GM and they will let you know if it is a success, failure, or otherwise. While you might learn the exact DC through trial and error, DCs sometimes change, so asking the GM whether a check is successful is the best way to determine whether or not you have met or exceeded the DC.",{"type":"pf2-h4","page":445,"name":"Calculating DCs","entries":["Whenever you attempt a check, you compare your result against a DC. When someone or something else attempts a check against you, rather than both forces rolling against one another, the GM (or player, if the opponent is another PC) compares their result to a fixed DC based on your relevant statistic. Your DC for a given statistic is 10 + the total modifier for that statistic."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":445,"name":"Step 4: Determine the Degree of Success and Effect","entries":["Many times, it's important to determine not only if you succeed or fail, but also how spectacularly you succeed or fail. Exceptional results—either good or bad—can cause you to critically succeed at or critically fail a check.","You critically succeed at a check when a check's result meets or exceeds the DC by 10 or more. If the check is an attack roll, this is sometimes called a critical hit. You can also critically fail a check. The rules for critical failure—sometimes called a fumble—are the same as those for a critical success, but in the other direction: if you fail a check by 10 or more, that's a critical failure.","If you rolled a 20 on the die (a \"natural 20\"), your result is one degree of success better than it would be by numbers alone. If you roll a 1 on the d20 (a \"natural 1\"), your result is one degree worse. This means that a natural 20 usually results in a critical success and natural 1 usually results in a critical failure. However, if you were going up against a very high DC, you might get only a success with a natural 20, or even a failure if 20 plus your total modifier is 10 or more below the DC. Likewise, if your modifier for a statistic is so high that adding it to a 1 from your d20 roll exceeds the DC by 10 or more, you can succeed even if you roll a natural 1! If a feat, magic item, spell, or other effect does not list a critical success or critical failure, treat is as an ordinary success or failure instead.","Some other abilities can change the degree of success for rolls you get. When resolving the effect of an ability that changes your degree of success, always apply the adjustment from a natural 20 or natural 1 before anything else."],"source":"CRB"}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":467,"name":"Concealment and Invisibility","entries":["The concealed and invisible conditions reflect certain circumstances that can make a creature harder to see.",{"type":"pf2-h4","page":467,"name":"Concealed","entries":["This condition protects a creature if it's in mist, within dim light, or amid something else that obscures sight but does not provide a physical barrier to effects. An effect or type of terrain that describes an area of concealment makes all creatures within it concealed.","When you target a creature that's {@condition concealed} from you, you must attempt a DC {@flatDC 5} flat check before you roll to determine your effect. If you fail, you don't affect the target. the {@condition concealed} condition doesn't change which of the main categories of detection apply to the creature. A creature in a light fog bank is still observed even though it's concealed."],"source":"CRB"},{"type":"pf2-h4","page":467,"name":"Invisible","entries":["A creature with the invisible condition (by way of an {@spell invisibility} spell or {@item invisibility potion}, for example) is automatically {@condition undetected} to any creatures relying on sight as their only precise sense. Precise senses other than sight ignore the invisible condition.","You can use the {@action Seek} basic action to attempt to figure out an {@condition invisible} creature's location, making it instead only {@condition hidden} from you. This lasts until the {@condition invisible} creature successfully uses {@action Sneak} to become {@condition undetected} again. If you're already {@condition observed||observing} a creature when it becomes {@condition invisible}, it starts out {@condition hidden}, since you know where it was when it became {@condition invisible}, though it can then {@action Sneak} to become {@condition undetected}.","Other effects might make an {@condition invisible} creature hidden or even observed but concealed. For instance, if you were tracking an invisible creature's footprints through the snow, the footprints would make it hidden.","Similarly, throwing a net over an {@condition invisible} creature would make it {@condition observed} but {@condition concealed} for as long as the net is on the creature."],"source":"CRB"}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":618,"name":"Condition Values","entries":["Some conditions have a numerical value, called a condition value, indicated by a numeral following the condition. This value conveys the severity of a condition, and such conditions often give you a bonus or penalty equal to their value. These values can often be reduced by skills, spells, or simply waiting. If a condition value is ever reduced to 0, the condition ends."],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":453,"name":"Conditions","entries":["The results of various checks might apply conditions to you or, less often, an item. Conditions change your state of being in some way. You might be gripped with fear or made faster by a spell or magic item. One condition represents what happens when a creature successfully drains your blood or life essence, while others represent creatures' attitudes toward you and how they interact with you.","Conditions are persistent; when you're affected by a condition, its effects last until the stated duration ends, the condition is removed, or terms dictated in the condition cause it to end. The rules for conditions are summarized on page 454 and described in full on pages 618–623.",{"type":"pf2-brown-box","name":"CONDITIONS","entries":["These conditions appear often in the game and are defined in detail in the Conditions Appendix on pages 618–623. Here's a brief summary of each.","{@b {@condition Blinded}:} You're unable to see.","{@b {@condition Broken}:} This item can't be used for its normal function until repaired.","{@b {@condition Clumsy}:} You can't move as easily or gracefully as usual.","{@b {@condition Concealed}:} Fog or similar obscuration makes you difficult to see and target.","{@b {@condition Confused}:} You attack indiscriminately.","{@b {@condition Controlled}:} Another creature determines your actions.","{@b {@condition Dazzled}:} Everything is {@condition concealed} to you.","{@b {@condition Deafened}:} You're unable to hear.","{@b {@condition Doomed}:} With your soul in peril, you are now closer to death.","{@b {@condition Drained}:} Blood loss or something similar has leached your vitality.","{@b {@condition Dying}:} You're slipping closer to death.","{@b {@condition Encumbered}:} You're carrying more weight than you can manage.","{@b {@condition Enfeebled}:} Your strength has been sapped away.","{@b {@condition Fascinated}:} You are compelled to focus your attention on something.","{@b {@condition Fatigued}:} Your defenses are lower and you can't focus while exploring.","{@b {@condition Flat-Footed}:} You're unable to defend yourself to your full capability.","{@b {@condition Fleeing}:} You must run away.","{@b {@condition Friendly}:} An NPC with this condition has a good attitude toward you.","{@b {@condition Frightened}:} Fear makes you less capable of attacking and defending.","{@b {@condition Grabbed}:} A creature, object, or magic holds you in place.","{@b {@condition Helpful}:} An NPC with this condition wants to assist you.","{@b {@condition Hidden}:} A creature you're {@condition hidden} from knows your location but can't see you.","{@b {@condition Hostile}:} An NPC with this condition wants to harm you.","{@b {@condition Immobilized}:} You can't move.","{@b {@condition Indifferent}:} An NPC with this condition doesn't have a strong opinion about you.","{@b {@condition Invisible}:} Creatures can't see you.","{@b {@condition Observed}:} You're in plain view.","{@b {@condition Paralyzed}:} You body is frozen in place.","{@b {@condition Persistent Damage|CRB|Persistent Damage}:} You keep taking damage every round.","{@b {@condition Petrified}:} You've been turned to stone.","{@b {@condition Prone}:} You're lying on the ground and easier to attack.","{@b {@condition Quickened}:} You get an extra action each turn.","{@b {@condition Restrained}:} You're tied up and can't move, or a grappling creature has you pinned.","{@b {@condition Sickened}:} You're sick to your stomach.","{@b {@condition Slowed}:} You lose actions each turn.","{@b {@condition Stunned}:} You can't use actions.","{@b {@condition Stupefied}:} Your can't access your full mental faculties, and you have trouble casting spells.","{@b {@condition Unconscious}:} You're asleep or knocked out.","{@b {@condition Undetected}:} A creature you're {@condition undetected} by doesn't know where you are.","{@b {@condition Unfriendly}:} An NPC with this condition doesn't like you.","{@b {@condition Unnoticed}:} A creature is entirely unaware you're present.","{@b {@condition Wounded}:} You've been brought back from the brink of death but haven't fully recovered."]}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":458,"name":"Counteracting","entries":["Some effects try to counteract spells, afflictions, conditions, or other effects. Counteract checks compare the power of two forces and determine which defeats the other. Successfully counteracting an effect ends it unless noted otherwise.","When attempting a counteract check, add the relevant skill modifier or other appropriate modifier to your check against the target's DC. If you're counteracting an affliction, the DC is in the affliction's stat block. If it's a spell, use the caster's DC. The GM can also calculate a DC based on the target effect's level. For spells, the counteract check modifier is your spellcasting ability modifier plus your spellcasting proficiency bonus, plus any bonuses and penalties that specifically apply to counteract checks. What you can counteract depends on the check result and the target's level. If an effect is a spell, its level is the counteract level.","Otherwise, halve its level and round up to determine its counteract level. If an effect's level is unclear and it came from a creature, halve and round up the creature's level.",{"type":"successDegree","entries":{"Critical Success":"Counteract the target if its counteract level is no more than 3 levels higher than your effect's counteract level.","Success":"Counteract the target if its counteract level is no more than 1 level higher than your effect's counteract level.","Failure":"Counteract the target if its counteract level is lower than your effect's counteract level.","Critical Failure":"You fail to counteract the target."}}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":477,"name":"Cover","entries":["When you're behind an obstacle that could block weapons, guard you against explosions, and make you harder to detect, you're behind cover. Standard cover gives you a +2 circumstance bonus to AC, to Reflex saves against area effects, and to {@skill Stealth} checks to {@action Hide}, {@action Sneak}, or otherwise avoid detection. You can increase this to greater cover using the {@action Take Cover} basic action, increasing the circumstance bonus to +4. If cover is especially light, typically when it's provided by a creature, you have lesser cover, which grants a +1 circumstance bonus to AC. A creature with standard cover or greater cover can attempt to use {@skill Stealth} to {@action Hide}, but lesser cover isn't sufficient.",{"type":"table","colStyles":["text-center","text-center","text-center"],"rows":[["Type of Cover","Bonus","Can Hide"],["Lesser","+1 to AC","No"],["Standard","+2 to AC, Reflex, {@skill Stealth}","Yes"],["Greater","+4 to AC, Reflex, {@skill Stealth}","Yes"]]},"Cover is relative, so you might simultaneously have cover against one creature and not another. Cover applies only if your path to the target is partially blocked. If a creature is entirely behind a wall or the like, you don't have {@quickref line of effect||3|line of effect} and typically can't target it at all.","Usually, the GM can quickly decide whether your target has cover. If you're uncertain or need to be more precise, draw a line from the center of your space to the center of the target's space. If that line passes through any terrain or object that would block the effect, the target has standard cover (or greater cover if the obstruction is extreme or the target has {@action Take Cover||Taken Cover}). If the line passes through a creature instead, the target has lesser cover. When measuring cover against an area effect, draw the line from the effect's point of origin to the center of the creature's space.",{"type":"pf2-h4","page":477,"name":"Cover and Large Creatures","entries":["If a creature between you and a target is two or more sizes larger than both you and your target, that creature's space blocks the effect enough to provide standard cover instead of lesser cover. The GM might determine that a creature doesn't gain cover from terrain that it's significantly larger than. For example, a Huge dragon probably wouldn't receive any benefit from being behind a 1-foot-wide pillar."],"source":"CRB"},{"type":"pf2-h4","page":477,"name":"Special Circumstances","entries":["Your GM might allow you to overcome your target's cover in some situations. If you're right next to an arrow slit, you can shoot without penalty, but you have greater cover against someone shooting back at you from far away. Your GM might let you reduce or negate cover by leaning around a corner to shoot or the like. This usually takes an action to set up, and the GM might measure cover from an edge or corner of your space instead of your center."],"source":"CRB"}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":450,"name":"Damage","entries":["In the midst of combat, you attempt checks to determine if you can damage your foe with weapons, spells, or alchemical concoctions. On a successful check, you hit and deal damage. Damage decreases a creature's Hit Points on a 1-to-1 basis (so a creature that takes 6 damage loses 6 Hit Points). The full rules can be found in the Hit Points, Healing, and Dying section on page 459.","Damage is sometimes given as a fixed amount, but more often than not you'll make a damage roll to determine how much damage you deal. A damage roll typically uses a number and type of dice determined by the weapon or unarmed attack used or the spell cast, and it is often enhanced by various modifiers, bonuses, and penalties.","Like checks, a damage roll—especially a melee weapon damage roll—is often modified by a number of modifiers, penalties, and bonuses. When making a damage roll, you take the following steps, explained in detail below.",{"type":"list","style":"list-decimal","items":["Roll the dice indicated by the weapon, unarmed attack, or spell, and apply the modifiers, bonuses, and penalties that apply to the result of the roll.","Determine the damage type.","Apply the target's immunities, weaknesses, and resistances to the damage.","If any damage remains, reduce the target's Hit Points by that amount."]},{"type":"pf2-h3","page":450,"name":"Step 1: Roll The Damage Dice and Apply Modifiers, Bonuses, and Penalties","entries":["Your weapon, unarmed attack, spell, or sometimes even a magic item determines what type of dice you roll for damage, and how many. For instance, if you're using a normal longsword, you'll roll {@dice 1d8}. If you're casting a 3rd-level {@spell fireball} spell, you'll roll {@dice 6d6}. Sometimes, especially in the case of weapons, you'll apply modifiers, bonuses, and penalties to the damage.","When you use melee weapons, unarmed attacks, and thrown ranged weapons, the most common modifier you'll add to damage is your Strength ability modifier. Weapons with the propulsive trait sometimes add half your Strength modifier. You typically do not add an ability modifier to spell damage, damage from most ranged weapons, or damage from alchemical bombs and similar items.","As with checks, you might add circumstance, status, or item bonuses to your damage rolls, but if you have multiple bonuses of the same type, you add only the highest bonus of that type. Again like checks, you may also apply circumstance, status, item, and untyped penalties to the damage roll, and again you apply only the greatest penalty of a specific type but apply all untyped penalties together.","Use the formulas below.",{"type":"pf2-inset","entries":["Melee damage roll = damage die of weapon or unarmed attack + Strength modifier + bonuses + penalties"]},{"type":"pf2-inset","entries":["Ranged damage roll = damage die of weapon + Strength modifier for thrown weapons + bonuses + penalties"]},{"type":"pf2-inset","entries":["Spell (and similar effects) damage roll = damage die of the effect + bonuses + penalties"]},"If the combined penalties on an attack would reduce the damage to 0 or below, you still deal 1 damage.",{"type":"pf2-h4","page":451,"name":"Increasing Damage","entries":["In some cases, you increase the number of dice you roll when making weapon damage rolls. Magic weapons etched with the {@item striking} rune can add one or more weapon damage dice to your damage roll. These extra dice are the same die size as the weapon's damage die. At certain levels, most characters gain the ability to deal extra damage from the weapon specialization class feature."],"source":"CRB"},{"type":"pf2-h4","page":451,"name":"Persistent Damage","entries":["Persistent damage is a condition that causes damage to recur beyond the original effect. Unlike with normal damage, when you are subject to persistent damage, you don't take it right away. Instead, you take the specified damage at the end of your turns, after which you attempt a DC {@flatDC 15} flat check to see if you recover from the persistent damage.","See the Conditions Appendix on pages 618–623 for the complete rules regarding the persistent damage condition."],"source":"CRB"},{"type":"pf2-h4","page":451,"name":"Doubling and Halving Damage","entries":["Sometimes you'll need to halve or double an amount of damage, such as when the outcome of your Strike is a critical hit, or when you succeed at a basic Reflex save against a spell. When this happens, you roll the damage normally, adding all the normal modifiers, bonuses, and penalties. Then you double or halve the amount as appropriate (rounding down if you halved it). The GM might allow you to roll the dice twice and double the modifiers, bonuses, and penalties instead of doubling the entire result, but this usually works best for singletarget attacks or spells at low levels when you have a small number of damage dice to roll. Benefits you gain specifically from a critical hit, like the {@item flaming} weapon rune's persistent fire damage or the extra damage die from the fatal weapon trait, aren't doubled."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":451,"name":"Step 2: Determine The Damage Type","entries":["Once you've calculated how much damage you deal, you'll need to determine the damage type. There are many types of damage and sometimes certain types are applied in different ways. The smack of a club deals bludgeoning damage. The stab of a spear deals piercing damage. The staccato crack of a {@spell lightning bolt} spell deals electricity damage. Sometimes you might apply precision damage, dealing more damage for hitting a creature in a vulnerable spot or when the target is somehow vulnerable. The damage types are described on page 452.",{"type":"pf2-h4","page":451,"name":"Damage Types and Traits","entries":["When an attack deals a type of damage, the attack action gains that trait. For example, the Strikes and attack actions you use wielding a sword when its {@item flaming} rune is active gain the fire trait, since the rune gives the weapon the ability to deal fire damage."],"source":"CRB"},{"type":"pf2-brown-box","name":"DAMAGE TYPES","entries":["Damage has a number of different types and categories, which are described below.",{"type":"pf2-title","name":"Physical Damage"},"Damage dealt by weapons, many physical hazards, and a handful of spells is collectively called physical damage. The main types of physical damage are bludgeoning, piercing, and slashing. {@b Bludgeoning damage} comes from weapons and hazards that deal blunt-force trauma, like a hit from a club or being dashed against rocks. {@b Piercing damage} is dealt from stabs and punctures, whether from a dragon's fangs or the thrust of a spear. {@b Slashing damage} is delivered by a cut, be it the swing of the sword or the blow from a scythe blades trap.","Ghosts and other incorporeal creatures have a high resistance to physical attacks that aren't magical (attacks that lack the magical trait). Furthermore, most incorporeal creatures have additional, though lower, resistance to magical physical damage (such as damage dealt from a mace with the magical trait) and most other damage types.",{"type":"pf2-title","name":"Energy Damage"},"Many spells and other magical effects deal energy damage. Energy damage is also dealt from effects in the world, such as the biting cold of a blizzard to a raging forest fire. The main types of energy damage are acid, cold, electricity, fire, and sonic. {@b Acid damage} can be delivered by gases, liquids, and certain solids that dissolve flesh, and sometimes harder materials. {@b Cold damage} freezes material by way of contact with chilling gases and ice. {@b Electricity Damage} comes from the discharge of powerful lightning and sparks. {@b Fire damage} burns through heat and combustion. {@b Sonic damage} assaults matter with high-frequency vibration and sound waves. Many times, you deal energy damage by casting magic spells, and doing so is often useful against creatures that have immunities or resistances to physical damage.","Two special types of energy damage specifically target the living and the undead. Positive energy often manifests as healing energy to living creatures but can create {@b positive damage} that withers undead bodies and disrupts and injures incorporeal undead. Negative energy often revivifies the unnatural, unliving power of undead, while manifesting as {@b negative damage} that gnaws at the living.","Powerful and pure magical energy can manifest itself as {@b force damage}. Few things can resist this type of damage—not even incorporeal creatures such as ghosts and wraiths.",{"type":"pf2-title","name":"Alignment Damage"},"Weapons and effects keyed to a particular alignment can deal {@b chaotic}, {@b evil}, {@b good}, or {@b lawful} damage. These damage types apply only to creatures that have the opposing alignment trait. Chaotic damage harms only lawful creatures, evil damage harms only good creatures, good damage harms only evil creatures, and lawful damage harms only chaotic creatures.",{"type":"pf2-title","name":"Mental Damage"},"Sometimes an effect can target the mind with enough psychic force to actually deal damage to the creature. When it does, it deals {@b mental damage}. Mindless creatures and those with only programmed or rudimentary intelligence are often immune to mental damage and effects.",{"type":"pf2-title","name":"Poison Damage"},"Venoms, toxins and the like can deal {@b poison damage}, which affects creatures by way of contact, ingestion, inhalation, or injury. In addition to coming from monster attacks, alchemical items, and spells, poison damage is often caused by ongoing afflictions, which follow special rules described on page 457.",{"type":"pf2-title","name":"Bleed Damage"},"Another special type of physical damage is {@b bleed damage}. This is persistent damage that represents loss of blood.","As such, it has no effect on nonliving creatures or living creatures that don't need blood to live. Weaknesses and resistances to physical damage apply. Bleed damage ends automatically if you're healed to your full Hit Points.",{"type":"pf2-title","name":"Precision Damage"},"Sometimes you are able to make the most of your attack through sheer precision. When you hit with an ability that grants you {@b precision damage}, you increase the attack's listed damage, using the same damage type, rather than tracking a separate pool of damage. For example, a non-magical dagger Strike that deals 1d6 precision damage from a rogue's sneak attack increases the piercing damage by 1d6.","Some creatures are immune to precision damage, regardless of the damage type; these are often amorphous creatures that lack vulnerable anatomy. A creature immune to precision damage would ignore the 1d6 precision damage in the example above, but it would still take the rest of the piercing damage from the Strike. Since precision damage is always the same type of damage as the attack it's augmenting, a creature that is resistant to physical damage, like a gargoyle, would resist not only the dagger's damage but also the precision damage, even though it is not specifically resistant to precision damage.",{"type":"pf2-title","name":"Precious Materials"},"While not their own damage category, precious materials can modify damage to penetrate a creature's resistances or take advantage of its weaknesses. For instance, silver weapons are particularly effective against lycanthropes and bypass the resistances to physical damage that most devils have."]}],"source":"CRB"},{"type":"pf2-h3","page":451,"name":"Step 3: Apply the Target's Immunities, Weaknesses, and Resistances","entries":["Defenses against certain types of damage or effects are called immunities or resistances, while vulnerabilities are called weaknesses. Apply immunities first, then weaknesses, and resistances third. Immunity, weakness, or resistance to an alignment applies only to damage of that type, not to damage from an attacking creature of that alignment.",{"type":"pf2-h4","page":451,"name":"Immunity","entries":["When you have immunity to a specific type of damage, you ignore all damage of that type. If you have immunity to a specific condition or type of effect, you can't be affected by that condition or any effect of that type. If you have immunity to effects with a certain trait (such as death effects, poison, or disease) you are unaffected by any effect with that trait. Often, an effect can be both a trait and a damage type (this is especially true in the case of energy damage types). In these cases, the immunity applies to the entire effect, not just the damage. You can still be targeted by an ability with an effect you are immune to; you just don't apply the effect. However, some complex effects might have parts that affect you even if you're immune to one of the effect's traits; for instance, a spell that deals both fire and acid damage can still deal acid damage to you even if you're immune to fire.","Immunity to critical hits works a little differently. When a creature immune to critical hits is critically hit by a Strike or other attack that deals damage, it takes normal damage instead of double damage. This does not make it immune to any other critical success effects of other actions that have the attack trait (such as {@action Grapple} and {@action Shove}).","Another exception is immunity to nonlethal attacks. If you are immune to nonlethal attacks, you are immune to all damage from attacks with the nonlethal trait, no matter what other type the damage has. For instance, a {@creature stone golem} has immunity to nonlethal attacks. This means that no matter how hard you hit it with your fist, you're not going to damage it—unless your fists don't have the {@trait nonlethal} trait, such as if you're a {@class monk}."],"source":"CRB"},{"type":"pf2-h4","page":453,"name":"Temporary Immunity","entries":["Some effects grant you immunity to the same effect for a set amount of time. If an effect grants you temporary immunity, repeated applications of that effect don't affect you for as long as the temporary immunity lasts. Unless the effect says it applies only to a certain creature's ability, it doesn't matter who created the effect. For example, the {@spell blindness} spell says, \"The target is temporarily immune to blindness for 1 minute.\" If anyone casts {@spell blindness} on that creature again before 1 minute passes, the spell has no effect.","Temporary immunity doesn't prevent or end ongoing effects of the source of the temporary immunity. For instance, if an ability makes you frightened and you then gain temporary immunity to the ability, you don't immediately lose the frightened condition due to the immunity you just gained—you simply don't become frightened if you're targeted by the ability again before the immunity ends."],"source":"CRB"},{"type":"pf2-h4","page":453,"name":"Weakness","entries":["If you have a weakness to a certain type of damage or damage from a certain source, that type of damage is extra effective against you. Whenever you would take that type of damage, increase the damage you take by the value of the weakness. For instance, if you are dealt 2d6 fire damage and have weakness 5 to fire, you take 2d6+5 fire damage.","If you have a weakness to something that doesn't normally deal damage, such as water, you take damage equal to the weakness value when touched or affected by it. If more than one weakness would apply to the same instance of damage, use only the highest applicable weakness value. This usually happens only when a monster is weak to both a type of physical damage and a given material."],"source":"CRB"},{"type":"pf2-h4","page":453,"name":"Resistance","entries":["If you have resistance to a type of damage, each time you take that type of damage, you reduce the amount of damage you take by the listed amount (to a minimum of 0 damage). Resistance can specify combinations of damage types or other traits. For instance, you might encounter a monster that's resistant to non-magical bludgeoning damage, meaning it would take less damage from bludgeoning attacks that weren't magical, but would take normal damage from your {@runeItem mace||+1 wepon potency|} (since it's magical) or a non-magical {@item spear} (since it deals piercing damage). A resistance also might have an exception. For example, resistance 10 to physical damage (except silver) would reduce any physical damage by 10 unless that damage was dealt by a silver weapon.","If you have more than one type of resistance that would apply to the same instance of damage, use only the highest applicable resistance value.","It's possible to have resistance to all damage. When an effect deals damage of multiple types and you have resistance to all damage, apply the resistance to each type of damage separately. If an attack would deal 7 slashing damage and 4 fire damage, resistance 5 to all damage would reduce the slashing damage to 2 and negate the fire damage entirely."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":453,"name":"Step 4: If Damage Remains, Reduce the Target's Hit Points","entries":["After applying the target's immunities, resistances, and weaknesses to the damage, whatever damage is left reduces the target's Hit Points on a 1-to-1 basis. More information about Hit Points can be found in the Hit Points, Healing, and Dying section on page 459.",{"type":"pf2-h4","page":453,"name":"Nonlethal Attacks","entries":["You can make a nonlethal attack in an effort to knock someone out instead of killing them (see Knocked Out and Dying on page 459). Weapons with the nonlethal trait (including fists) do this automatically. You take a –2 circumstance penalty to the attack roll when you make a nonlethal attack using a weapon that doesn't have the nonlethal trait. You also take this penalty when making a lethal attack using a nonlethal weapon.","Spells and other effects with the nonlethal trait that reduce a creature to 0 Hit Points knock the creature out instead of killing them."],"source":"CRB"}],"source":"CRB"}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":481,"name":"Downtime Mode","entries":[{"type":"pf2-h1-flavor","page":481,"entries":["{@i Downtime mode is played day-by-day rather than minute-by-minute or scene-by-scene. Usually this mode of play occurs when you are in the safety of a settlement, maybe recovering from your adventures or studying an artifact you found.}"],"source":"CRB"},"Downtime gives you time to rest fully, engage in crafting or a professional endeavor, learn new spells, retrain feats, or just have fun. You can sell items acquired during your adventures, buy new goods, and perform other activities as determined by your feats, your skills, and the settlement where you are spending the downtime.",{"type":"pf2-h2","page":481,"name":"Long-Term Rest","entries":["You can spend an entire day and night resting during downtime to recover Hit Points equal to your Constitution modifier (minimum 1) multiplied by twice your level."],"source":"CRB"},{"type":"pf2-h2","page":481,"name":"Retraining","entries":["Retraining offers a way to alter some of your character choices, which is helpful when you want to take your character in a new direction or change decisions that didn't meet your expectations. You can retrain feats, skills, and some selectable class features. You can't retrain your ancestry, heritage, background, class, or ability scores. You can't perform other downtime activities while retraining.","Retraining usually requires you to spend time learning from a teacher, whether that entails physical training, studying at a library, or falling into shared magical trances. Your GM determines whether you can get proper training or whether something can be retrained at all. In some cases, you'll have to pay your instructor.","Some abilities can be difficult or impossible to retrain (for instance, a sorcerer can retrain their bloodline only in extraordinary circumstances).","When retraining, you generally can't make choices you couldn't make when you selected the original option. For instance, you can't exchange a 2nd-level skill feat for a 4th-level one, or for one that requires prerequisites you didn't meet at the time you took the original feat. If you don't remember whether you met the prerequisites at the time, ask your GM to make the call. If you cease to meet the prerequisites for an ability due to retraining, you can't use that ability. You might need to retrain several abilities in sequence in order to get all the abilities you want.",{"type":"pf2-h3","page":481,"name":"Feats","entries":["You can spend a week of downtime retraining to swap out one of your feats. Remove the old feat and replace it with another of the same type. For example, you could swap a skill feat for another skill feat, but not for a wizard feat."],"source":"CRB"},{"type":"pf2-h3","page":481,"name":"Skills","entries":["You can spend a week of downtime retraining to swap out one of your skill increases. Reduce your proficiency rank in the skill losing its increase by one step and increase your proficiency rank in another skill by one step. The new proficiency rank has to be equal to or lower than the proficiency rank you traded away. For instance, if your bard is a master in {@skill Performance} and {@skill Stealth}, and an expert in {@skill Occultism}, you could reduce the character's proficiency in {@skill Stealth} to expert and become a master in {@skill Occultism}, but you couldn't reassign that skill increase to become legendary in {@skill Performance}. Keep track of your level when you reassign skill increases; the level at which your skill proficiencies changed can influence your ability to retrain feats with skill prerequisites.","You can also spend a week to retrain an initial trained skill you gained during character creation."],"source":"CRB"},{"type":"pf2-h3","page":481,"name":"Class Features","entries":["You can change a class feature that required a choice, making a different choice instead. This lets you change a druid order or a wizard school, for example. The GM will tell you how long this takes—always at least a month."],"source":"CRB"},{"type":"pf2-brown-box","page":481,"name":"SKILL DOWNTIME ACTIVITIES","entries":["Chapter 4: Skills includes several downtime activities, which are summarized here.","{@b {@action Craft}:} Using the {@skill Crafting} skill, you can create items from raw materials (page 244).","{@b {@action Create Forgery}:} You forge a document (page 251).","{@b {@action Earn Income}:} You earn money, typically using {@skill Crafting}, Lore, or {@skill Performance} (page 236).","{@b {@action Subsist}:} You find food and shelter in the wilderness or within a settlement (page 240).","{@b {@action Treat Disease}:} You spend time caring for a diseased creature in the hope of curing that creature (page 248)."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":481,"name":"Other Downtime Activities","entries":["Work with your GM if there are other ways you want to spend downtime. You might need to pay for your cost of living (the prices for this can be found on page 294).","You might acquire property, manage a business, become part of a guild or civic group, curry favor in a large city, take command of an army, take on an apprentice, start a family, or minister to a flock of the faithful."],"source":"CRB"}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":453,"name":"Effects","entries":["Anything you do in the game has an {@b effect}. Many of these outcomes are easy to adjudicate during the game.","If you tell the GM that you draw your sword, no check is needed, and the result is that your character is now holding a sword. Other times, the specific effect requires more detailed rules governing how your choice is resolved.","Many spells, magic items, and feats create specific effects, and your character will be subject to effects caused by monsters, hazards, the environment, and other characters.","While a check might determine the overall impact or strength of an effect, a check is not always part of creating an effect. Casting a {@spell fly} spell on yourself creates an effect that allows you to soar through the air, but casting the spell does not require a check. Conversely, using the Intimidate skill to Demoralize a foe does require a check, and your result on that check determines the effect's outcome.","The following general rules are used to understand and apply effects.",{"type":"pf2-h3","page":455,"name":"Duration","entries":["Most effects are discrete, creating an instantaneous effect when you let the GM know what actions you are going to use. Firing a bow, moving to a new space, or taking something out of your pack all resolve instantly. Other effects instead last for a certain duration. Once the duration has elapsed, the effect ends. The rules generally use the following conventions for durations, though spells have some special durations detailed on pages 304–305.","For an effect that lasts a number of rounds, the remaining duration decreases by 1 at the start of each turn of the creature that created the effect. This is common for beneficial effects that target you or your allies. Detrimental effects often last \"until the end of the target's next turn\" or \"through\" a number of their turns (such as \"through the target's next 3 turns\"), which means that the effect's duration decreases at the end of the creature's turn, rather than the start.","Instead of lasting a fixed number of rounds, a duration might end only when certain conditions are met (or cease to be true). If so, the effects last until those conditions are met."],"source":"CRB"},{"type":"pf2-h3","page":455,"name":"Range and Reach","entries":["Actions and other abilities that generate an effect typically work within a specified range or a reach. Most spells and abilities list a {@b range}—the maximum distance from the creature or object creating the effect in which the effect can occur.","Ranged and thrown weapons have a {@b range increment}.","Attacks with such weapons work normally up to that range. Attacks against targets beyond that range take a –2 penalty, which worsens by 2 for every additional multiple of that range, to a maximum of a –10 penalty after five additional range increments. Attacks beyond this range are not possible. For example, if you are using a shortbow, your attacks take no penalty against a target up to 60 feet away, a –2 penalty if a target is over 60 and up to 120 feet away, a –4 if a target is over 120 and up to 180 feet away, and so on, up to a maximum distance of 360 feet.","{@b Reach} is how far you can physically reach with your body or a weapon. Melee Strikes rely on reach. Your reach also creates an area around your space where other creatures could trigger your reactions. Your reach is typically 5 feet, but weapons with the reach trait can extend this. Larger creatures can have greater reach; for instance, an ogre has a 10-foot reach. Unlike with measuring most distances, 10-foot reach can reach 2 squares diagonally. Reach greater than 10 feet is measured normally; 20-foot reach can reach 3 squares diagonally, 25-foot reach can reach 4, and so on."],"source":"CRB"},{"type":"pf2-h3","page":455,"name":"Targets","entries":["Some effects require you to choose specific targets.","Targeting can be difficult or impossible if your chosen creature is undetected by you, if the creature doesn't match restrictions on who you can target, or if some other ability prevents it from being targeted.","Some effects require a target to be willing. Only you can decide whether your PC is willing, and the GM decides whether an NPC is willing. Even if you or your character don't know what the effect is, such as if your character is unconscious, you still decide if you're willing.","Some effects target or require an ally, or otherwise refer to an ally. This must be someone on your side, often another PC, but it might be a bystander you are trying to protect. You are not your own ally. If it isn't clear, the GM decides who counts as an ally or an enemy."],"source":"CRB"},{"type":"pf2-h3","page":456,"name":"Areas","entries":["Some effects occupy an area of a specified shape and size.","An area effect always has a point of origin and extends out from that point. There are four types of areas: emanations, bursts, cones, and lines. When you're playing in encounter mode and using a grid, areas are measured in the same way as movement (page 463), but areas' distances are never reduced or affected by {@quickref difficult terrain||3|terrain} or lesser cover (page 476). You can use the diagrams below as common reference templates for areas, rather than measuring squares each time. Many area effects describe only the effects on creatures in the area. The GM determines any effects to the environment and unattended objects.",{"type":"pf2-h4","page":456,"name":"Burst","entries":["A burst effect issues forth in all directions from a single corner of a square within the range of the effect, spreading in all directions to a specified radius. For instance, when you cast {@spell fireball}, it detonates at the corner of a square within 500 feet of you and creates a 20-foot burst, meaning it extends out 20 feet in every direction from the corner of the square you chose, affecting each creature whose space (or even one square of its space) is within the burst."],"source":"CRB"},{"type":"pf2-h4","page":457,"name":"Cone","entries":["A cone shoots out from you in a quarter circle on the grid.","When you aim a cone, the first square of that cone must share an edge with your space if you're aiming orthogonally, or it must touch a corner of your space if you're aiming diagonally. If you're Large or larger, the first square can run along the edge of any square of your space. You can't aim a cone so that it overlaps your space. The cone extends out for a number of feet, widening as it goes, as shown in the Areas diagram. For instance, when a green dragon uses its breath weapon, it breathes a cone of poisonous gas that originates at the edge of one square of its space and affects a quarter-circle area 30 feet on each edge.","If you make a cone originate from someone or something else, follow these same rules, with the first square of the cone using an edge or corner of that creature or object's space instead of your own."],"source":"CRB"},{"type":"pf2-h4","page":457,"name":"Emanation","entries":["An emanation issues forth from each side of your space, extending out to a specified number of feet in all directions. For instance, the {@spell bless} spell's emanation radiates 5 or more feet outward from the caster. Because the sides of a creature's space are the starting point for the emanation, an emanation from a Large or larger creature affects a greater overall area than that of a Medium or smaller creature. Unless the text states otherwise, the creature creating an emanation effect chooses whether the creature at its center is affected."],"source":"CRB"},{"type":"pf2-h4","page":457,"name":"Line","entries":["A line shoots forth from you in a straight line in a direction of your choosing. The line affects each creature whose space it overlaps. Unless a line effect says otherwise, it is 5 feet wide. For example, the {@spell lightning bolt} spell's area is a 60-foot line that's 5 feet wide."],"source":"CRB"}],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h3","page":457,"name":"Line of Effect","entries":["When creating an effect, you usually need an unblocked path to the target of a spell, the origin point of an effect's area, or the place where you create something with a spell or other ability. This is called a line of effect. You have line of effect unless a creature is entirely behind a solid physical barrier. Visibility doesn't matter for line of effect, nor do portcullises and other barriers that aren't totally solid. If you're unsure whether a barrier is solid enough, usually a 1-foot-square gap is enough to maintain a line of effect, though the GM makes the final call.","In an area effect, creatures or targets must have line of effect to the point of origin to be affected. If there's no line of effect between the origin of the area and the target, the effect doesn't apply to that target. For example, if there's a solid wall between the origin of a {@spell fireball} and a creature that's within the burst radius, the wall blocks the effect—that creature is unaffected by the {@spell fireball} and doesn't need to attempt a save against it. Likewise, any ongoing effects created by an ability with an area cease to affect anyone who moves outside of the line of effect."],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h3","page":457,"name":"Line of Sight","entries":["Some effects require you to have line of sight to your target. As long as you can precisely sense the area (as described in Perception on page 464) and it is not blocked by a solid barrier (as described in {@quickref Cover||4|Cover}), you have line of sight. An area of darkness prevents line of sight if you don't have {@ability darkvision}, but portcullises and other obstacles that aren't totally solid do not. If you're unsure whether a barrier is solid enough to block line of sight, usually a 1-foot-square gap is enough to maintain line of sight, though the GM makes the final call."],"data":{"quickrefIndex":true},"source":"CRB"}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":468,"name":"Encounter Mode","entries":[{"type":"pf2-h1-flavor","page":468,"entries":["{@i When every individual action counts, you enter the encounter mode of play. In this mode, time is divided into rounds, each of which is 6 seconds of time in the game world. Every round, each participant takes a turn in an established order. During your turn, you can use actions, and depending on the details of the encounter, you might have the opportunity to use reactions and free actions on your own turn and on others' turns.}"],"source":"CRB"},{"type":"pf2-h2","page":468,"name":"Structure","entries":["An encounter is played out in a series of rounds, during which the player characters, adversaries, and other participants in the encounter act in sequence.","You roll initiative to determine this order at the start of the encounter and then play through rounds until a conclusion is reached and the encounter ends. The rules in this section assume a combat encounter—a battle—but the general structure can apply to any kind of encounter.",{"type":"pf2-h3","page":468,"name":"Step 1: Roll Initiative","entries":["When the GM calls for it, you'll roll initiative to determine your place in the initiative order, which is the sequence in which the encounter's participants will take their turns. Rolling initiative marks the start of an encounter. More often than not, you'll roll initiative when you enter a battle.","Typically, you'll roll a Perception check to determine your initiative—the more aware you are of your surroundings, the more quickly you can respond. Sometimes, though, the GM might call on you to roll some other type of check. For instance, if you were Avoiding Notice during exploration (page 479), you'd roll a {@skill Stealth} check. A social encounter could call for a {@skill Deception} or {@skill Diplomacy} check.","The GM rolls initiative for anyone other than the player characters in the encounter. If these include a number of identical creatures, the GM could roll once for the group as a whole and have them take their turns within the group in any order. However, this can make battles less predictable and more dangerous, so the GM might want to roll initiative for some or all creatures individually unless it's too much of a burden.","Unlike a typical check, where the result is compared to a DC, the results of initiative rolls are ranked. This ranking sets the order in which the encounter's participants act—the initiative order. The character with the highest result goes first. The second highest follows, and so on until whoever had the lowest result takes their turn last.","If your result is tied with a foe's result, the adversary goes first. If your result is tied with another PC's, you can decide between yourselves who goes first when you reach that place in the initiative order. After that, your places in the initiative order usually don't change during the encounter."],"source":"CRB"},{"type":"pf2-h3","page":468,"name":"Step 2: Play a Round","entries":["A round begins when the participant with the highest initiative roll result starts their turn, and it ends when the one with the lowest initiative ends their turn. The process of taking a turn is detailed below. Creatures might also act outside their turns with reactions and free actions."],"source":"CRB"},{"type":"pf2-h3","page":468,"name":"Step 3: Begin the Next Round","entries":["Once everyone in the encounter has taken a turn, the round is over and the next one begins. Don't roll initiative again; the new round proceeds in the same order as the previous one, repeating the cycle until the encounter ends."],"source":"CRB"},{"type":"pf2-h3","page":468,"name":"Step 4: End the Encounter","entries":["When your foes are defeated, some sort of truce is reached, or some other event or circumstance ends the combat, the encounter is over. You and the other participants no longer follow the initiative order, and a more free-form style of play resumes, with the game typically moving into exploration mode. Sometimes at the end of an encounter, the GM will award Experience Points to the party or you'll find treasure to divvy up."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":468,"name":"Turns","entries":["When it's your turn to act, you can use single actions ({@as 1}), short activities ({@as 2} and {@as 3}), reactions ([reaction]), and free actions ({@as f}). When you're finished, your turn ends and the character next in the initiative order begins their turn.","Sometimes it's important to note when during your turn something happens, so a turn is divided into three steps.",{"type":"pf2-h3","page":468,"name":"Step 1: Start Your Turn","entries":["Many things happen automatically at the start of your turn—it's a common point for tracking the passage of time for effects that last multiple rounds. At the start of each of your turns, take these steps in any order you choose:",{"type":"list","items":["If you created an effect lasting for a certain number of rounds, reduce the number of rounds remaining by 1. The effect ends if the duration is reduced to 0. For example, if you cast a spell that lasts 3 rounds on yourself during your first turn of a fight, it would affect you during that turn, decrease to 2 rounds of duration at the start of your second turn, decrease to 1 round of duration at the start of your third turn, and expire at the start of your fourth turn.","You can use 1 free action or reaction with a trigger of \"Your turn begins\" or something similar.","If you're {@condition dying}, roll a recovery check (page 459).","Do anything else that is specified to happen at the start of your turn."]},"The last step of starting your turn is always the same.",{"type":"list","items":["Regain your 3 actions and 1 reaction. If you haven't spent your reaction from your last turn, you lose it—you can't \"save\" actions or reactions from one turn to use during the next turn. If a condition prevents you from being able to act, you don't regain any actions or your reaction. Some abilities or conditions (such as {@condition quickened} and {@condition slowed}) can change how many actions you regain and whether you regain your reaction. If you lose actions and gain additional actions (such as if you're both {@condition quickened} and {@condition slowed}), you choose which actions to lose."]}],"source":"CRB"},{"type":"pf2-h3","page":469,"name":"Step 2: Act","entries":["You can use actions in any order you wish during your turn, but you have to complete one action or activity before beginning another; for example, you can't use a single action in the middle of performing a 2-action activity. What actions you can use often depend on your class features, skills, feats, and items, but there are default actions anyone can use, described in Basic Actions below. Some effects might prevent you from acting. If you can't act, you can't use any actions, including reactions and free actions.","If you begin a 2-action or 3-action activity on your turn, you must be able to complete it on your turn. You can't, for example, begin to High Jump using your final action on one turn and then complete it as your first action on your next turn.","Once you have spent all 3 of your actions, your turn ends (as described in Step 3) and the next creature's turn begins. You can, however, use only some of your actions and end your turn early. As soon as your turn ends, you lose all your remaining actions, but not your reaction or your ability to use free actions."],"source":"CRB"},{"type":"pf2-h3","page":469,"name":"Step 3: End Your Turn","entries":["Once you've done all the things you want to do with the actions you have available, you reach the end of your turn.","Take the following steps in any order you choose. Play then proceeds to the next creature in the initiative order.",{"type":"list","items":["End any effects that last until the end of your turn. For example, spells with a sustained duration end at the end of your turn unless you used the {@action Sustain a Spell} action during your turn to extend them. Some effects caused by enemies might also last through a certain number of your turns, and you decrease the remaining duration by 1 during this step, ending the effect if its duration is reduced to 0.","If you have a {@condition Persistent Damage|CRB|persistent damage} condition, you take the damage at this point. After you take the damage, you can attempt the flat check to end the {@condition Persistent Damage|CRB|persistent damage}. You then attempt any saving throws for ongoing afflictions. Many other conditions change at the end of your turn, such as the {@condition frightened} condition decreasing in severity. These take place after you've taken any {@condition Persistent Damage|CRB|persistent damage}, attempted flat checks to end the {@condition Persistent Damage|CRB|persistent damage}, and attempted saves against any afflictions.","You can use 1 free action or reaction with a trigger of \"Your turn ends\" or something similar.","Resolve anything else specified to happen at the end of your turn."]}],"source":"CRB"},{"type":"pf2-brown-box","page":469,"name":"TRACKING INITIATIVE","entries":["The GM keeps track of the initiative order for an encounter.","It's usually okay for the players to know this order, since they'll see who goes when and be aware of one another's results. However, the GM might want to conceal the names of adversaries the PCs have yet to identify.","Once the encounter's order is set, it's usually not necessary to track the original initiative numbers. The GM can create a simple list, use a series of cards or other indicators, or use a {@i Pathfinder Combat Pad}, which has magnetic markers to allow for easily rearranging the order.",{"type":"pf2-title","name":"Changing the Initiative Order"},"Any method used to track the initiative order needs to be flexible because the order can change. A creature can use the Delay basic action to change its place in the order, in which case you can erase it from the list or pull its marker aside until it reenters the initiative order. When a creature gets knocked out, its initiative order also changes (see Knocked Out and Dying on page 459). Using the Ready basic action doesn't change a creature's place in the initiative order, though, because the designated action becomes a reaction."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":469,"name":"Basic Actions","entries":["Basic actions represent common tasks like moving around, attacking, and helping others. As such, every creature can use basic actions except in some extreme circumstances, and many of those actions are used very frequently. Most notably, you'll use Interact, Step, Stride, and Strike a great deal. Many feats and other actions call upon you to use one of these basic actions or modify them to produce different effects. For example, a more complex action might let you Stride up to double your Speed instead of just up to your Speed, and a large number of activities include a Strike.","Actions that are used less frequently but are still available to most creatures are presented in Specialty Basic Actions starting on page 472. These typically have requirements that not all characters are likely to meet, such as wielding a shield or having a burrow Speed.","In addition to the actions in these two sections, the actions for spellcasting can be found on pages 302–305, and the actions for using magic items appear on pages 531–534.","{@note To view all actions, please visit the {@filter Actions page.|actions||source=CRB}}",{"type":"pf2-brown-box","page":471,"name":"SPEAKING","entries":["As long as you can act, you can also speak. You don't need to spend any type of action to speak, but because a round represents 6 seconds of time, you can usually speak at most a single sentence or so per round. Special uses of speech, such as attempting a {@skill Deception} skill check to Lie, require spending actions and follow their own rules.","All speech has the auditory trait. If you communicate in some way other than speech, other rules might apply. For instance, using sign language is visual instead of auditory.","not trigger reactions that can be triggered by actions with the manipulate trait (such as Attack of Opportunity).","If you want to prepare to Release something outside of your turn, use the Ready activity."],"source":"CRB"},{"type":"pf2-h3","page":472,"name":"Specialty Basic Actions","entries":["These actions are useful under specific circumstances. Some require you to have a special movement type (page 463)."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":472,"name":"Activities in Encounters","entries":["Activities that take longer than a turn can't normally be performed during an encounter. Spells with a casting time of 1 minute or more are a common example of this, as are several skill actions. When you commit to an activity during your turn in an encounter, you commit to spending all of the actions it requires. If the activity gets interrupted partway through, you lose all of the actions you would have spent on that activity. Activities are described in full on page 461."],"source":"CRB"},{"type":"pf2-h2","page":472,"name":"Reactions in Encounters","entries":["Your reactions let you respond immediately to what's happening around you. The GM determines whether you can use reactions before your first turn begins, depending on the situation in which the encounter happens.","Once your first turn begins, you gain your actions and reaction. You can use 1 reaction per round. You can use a reaction on anyone's turn (including your own), but only when its trigger occurs. If you don't use your reaction, you lose it at the start of your next turn, though you typically then gain a reaction at the start of that turn.","Some reactions are specifically meant to be used in combat and can change how the battle plays out drastically.","One example of such a reaction is {@action Attack of Opportunity}, which {@class fighter||fighters} gain at 1st level.","This reaction lets you make a melee {@action Strike} if a creature within reach uses a {@trait manipulate} or {@trait move} action, makes a ranged attack, or leaves a square during a {@trait move} action. The Triggering Moves diagram on page 474 illustrates examples of movements that might trigger an {@action Attack of Opportunity} from a creature without reach and one with reach.","You'll notice this reaction allows you to use a modified basic action, a {@action Strike}. This follows the rules on subordinate actions found on page 462.","Because your {@action Attack of Opportunity} takes place outside of your turn, the attack roll doesn't incur a multiple attack penalty."],"source":"CRB"},{"type":"pf2-h2","page":473,"name":"Movement in Encounters","entries":["Your movement during encounter mode depends on the actions and other abilities you use. Whether you Stride, Step, Swim, or Climb, the maximum distance you can move is based on your Speed. Certain feats or magic items can grant you other movement types, allowing you to swiftly burrow, climb, fly, or swim (page 463).","When the rules refer to a \"movement cost\" or \"spending movement,\" they are describing how many feet of your Speed you must use to move from one point to another. Normally, movement costs 5 feet per square when you're moving on a grid, or it costs the number of feet you move if you're not using a grid. However, sometimes it's harder to move a certain distance due to {@quickref difficult terrain||3|terrain} or other factors. In such a case, you might have to spend a different amount of movement to move from one place to another.","For example, a form of movement might require 10 feet of movement to move 1 square, and moving through some types of terrain costs an extra 5 feet of movement per square.",{"type":"pf2-h3","page":473,"name":"Grid Movement","entries":["If an encounter involves combat, it's often a good idea to track the movement and relative position of the participants using a Pathfinder Flip-Mat, Flip-Tiles, or some other form of grid to display the terrain, and miniatures to represent the combatants. When a character moves on a grid, every 1-inch square of the play area is 5 feet across in the game world. Hence, a creature moving in a straight line spends 5 feet of its movement for every map square traveled.","Because moving diagonally covers more ground, you count that movement differently. The first square of diagonal movement you make in a turn counts as 5 feet, but the second counts as 10 feet, and your count thereafter alternates between the two. For example, as you move across 4 squares diagonally, you would count 5 feet, then 10, then 5, and then 10, for a total of 30 feet. You track your total diagonal movement across all your movement during your turn, but reset your count at the end of your turn."],"source":"CRB"},{"type":"pf2-h3","page":473,"name":"Size, Space, and Reach","entries":["Creatures and objects of different sizes occupy different amounts of space. The sizes and the spaces they each take up on a grid are listed in {@table Size and Reach||Table 9–1: Size and Reach}.","Table 9–1 also lists the typical reach for creatures of each size, for both tall creatures (most bipeds) and long creatures (most quadrupeds). See page 455 for more about reach.","The Space entry lists how many feet on a side a creature's space is, so a Large creature fills a 10-foot-by-10-foot space (4 squares on the grid). Sometimes part of a creature extends beyond its space, such as if a giant octopus is grabbing you with its tentacles. In that case, the GM will usually allow attacking the extended portion, even if you can't reach the main creature. A Small or larger creature or object takes up at least 1 square on a grid, and creatures of these sizes can't usually share spaces except in situations like a character riding a mount. Rules for moving through other creatures' spaces appear below.",{"type":"statblock","tag":"table","source":"CRB","name":"Size and Reach"},"Multiple Tiny creatures can occupy the same square. At least four can fit in a single square, though the GM might determine that even more can fit. Tiny creatures can occupy a space occupied by a larger creature as well, and if their reach is 0 feet, they must do so in order to attack."],"source":"CRB"},{"type":"pf2-h3","page":474,"name":"Move Actions That Trigger Reactions","entries":["Some reactions and free actions are triggered by a creature using an action with the move trait. The most notable example is Attack of Opportunity. Actions with the move trait can trigger reactions or free actions throughout the course of the distance traveled. Each time you exit a square (or move 5 feet if not using a grid) within a creature's reach, your movement triggers those reactions and free actions (although no more than once per move action for a given reacting creature). If you use a move action but don't move out of a square, the trigger instead happens at the end of that action or ability.","Some actions, such as Step, specifically state they don't trigger reactions or free actions based on movement."],"source":"CRB"},{"type":"pf2-h3","page":474,"name":"Moving Through a Creature's Space","entries":["You can move through the space of a willing creature. If you want to move through an unwilling creature's space, you can Tumble Through that creature's space using {@skill Acrobatics}. You can't end your turn in a square occupied by another creature, though you can end a move action in its square provided that you immediately use another move action to leave that square. If two creatures end up in the same square by accident, the GM determines which one is forced out of the square (or whether one falls prone).",{"type":"pf2-h4","page":474,"name":"Prone and Incapacitated Creatures","entries":["You can share a space with a prone creature if that creature is willing, unconscious, or dead and if it is your size or smaller. The GM might allow you to climb atop the corpse or unconscious body of a larger creature in some situations. A prone creature can't stand up while someone else occupies its space, but it can Crawl to a space where it's able to stand, or it can attempt to Shove the other creature out of the way."],"source":"CRB"},{"type":"pf2-h4","page":475,"name":"Creatures of Different Sizes","entries":["In most cases, you can move through the space of a creature at least three sizes larger than you (Table 9-1). This means a Medium creature can move through the space of a Gargantuan creature and a Small creature can move through the space of a Huge creature. Likewise, a bigger creature can move through the space of a creature three sizes smaller than itself or smaller. You still can't end your movement in a space occupied by a creature.","Tiny creatures are an exception. They can move through creatures' spaces and can even end their movement there."],"source":"CRB"},{"type":"pf2-h4","page":475,"name":"Objects","entries":["Because objects aren't as mobile as creatures are, they're more likely to fill a space. This means you can't always move through their spaces like you might move through a space occupied by a creature. You might be able to occupy the same square as a statue of your size, but not a wide column. The GM determines whether you can move into an object's square normally, whether special rules apply, or if you are unable to move into the square at all."],"source":"CRB"}],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":475,"name":"Forced Movement","entries":["When an effect forces you to move, or if you start falling, the distance you move is defined by the effect that moved you, not by your Speed. Because you're not acting to move, this doesn't trigger reactions that are triggered by movement.","If forced movement would move you into a space you can't occupy—because objects are in the way or because you lack the movement type needed to reach it, for example—you stop moving in the last space you can occupy. Usually the creature or effect forcing the movement chooses the path the victim takes. If you're pushed or pulled, you can usually be moved through hazardous terrain, pushed off a ledge, or the like. Abilities that reposition you in some other way can't put you in such dangerous places unless they specify otherwise. In all cases, the GM makes the final call if there's doubt on where forced movement can move a creature."],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h3","page":475,"name":"Terrain","entries":["Several types of terrain can complicate your movement by slowing you down, damaging you, or endangering you.",{"type":"pf2-h4","page":475,"name":"Difficult Terrain","entries":["Difficult terrain is any terrain that impedes your movement, ranging from particularly rough or unstable surfaces to thick ground cover and countless other impediments. Moving into a square of {@b difficult terrain} (or moving 5 feet into or within an area of difficult terrain, if you're not using a grid) costs an extra 5 feet of movement.","Moving into a square of {@b greater difficult terrain} instead costs 10 additional feet of movement. This additional cost is not increased when moving diagonally. You can't Step into difficult terrain.","Movement you make while you are jumping ignores the terrain you're jumping over. Some abilities (such as flight or being incorporeal) allow you to avoid the movement reduction from some types of difficult terrain. Certain other abilities let you ignore difficult terrain on foot; such an ability also allows you to move through greater difficult terrain at the normal movement cost as for difficult terrain, though it wouldn't let you ignore greater difficult terrain unless the ability specifies otherwise."],"source":"CRB"},{"type":"pf2-h4","page":476,"name":"Hazardous Terrain","entries":["Hazardous terrain damages you whenever you move through it. An acid pool and a pit of burning embers are both examples of hazardous terrain. The amount and type of damage depend on the specific hazardous terrain."],"source":"CRB"},{"type":"pf2-h4","page":476,"name":"Narrow Surfaces","entries":["A narrow surface is so precariously thin that you need to {@action Balance} or risk falling. Even on a success, you are {@condition flat-footed} on a narrow surface.","Each time you are hit by an attack or fail a save on a narrow surface, you must succeed at a Reflex save (with the same DC as the {@skill Acrobatics} check to {@action Balance}) or fall."],"source":"CRB"},{"type":"pf2-h4","page":476,"name":"Uneven Ground","entries":["Uneven ground is an area unsteady enough that you need to {@action Balance} or risk falling prone and possibly injuring yourself, depending on the specifics of the uneven ground. You are {@condition flat-footed} on uneven ground. Each time you are hit by an attack or fail a save on uneven ground, you must succeed at a Reflex save (with the same DC as the {@skill Acrobatics} check to Balance) or fall prone."],"source":"CRB"},{"type":"pf2-h4","page":476,"name":"Inclines","entries":["An incline is an area so steep that you need to {@action Climb} using the {@skill Athletics} skill in order to progress upward.","You're {@condition flat-footed} when {@action Climb||Climbing} an incline."],"source":"CRB"}],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h2","page":477,"name":"Special Battles","entries":["Sometimes fights occur while the characters are atop mounts or when the PCs take to the sky or seas.",{"type":"pf2-h3","page":478,"name":"Mounted Combat","entries":["You can ride some creatures into combat. As noted in the {@action Mount} specialty basic action, your mount needs to be at least one size larger than you and willing. Your mount acts on your initiative. You must use the {@action Command an Animal} action (page 249) to get your mount to spend its actions. If you don't, the animal wastes its actions. If you have the Ride general feat, you succeed automatically when you {@action Command an Animal} that's your mount.","For example, if you are mounted on a horse and you make three attacks, your horse would remain stationary since you didn't command it. If you instead spent your first action to {@action Command an Animal} and succeeded, you could get your mount to Stride. You could spend your next action to attack or to command the horse to attack, but not both.",{"type":"pf2-h4","page":478,"name":"Mounted Attacks","entries":["You and your mount fight as a unit. Consequently, you share a multiple attack penalty. For example, if you Strike and then {@action Command an Animal} to have your mount Strike, your mount's attack takes a –5 multiple attack penalty.","You occupy every square of your mount's space for the purpose of making your attacks. If you were Medium and on a Large mount, you could attack a creature on one side of your mount, then attack on the opposite side with your next action. If you have a longer reach, the distance depends partly on the size of your mount. On a Medium or smaller mount, use your normal reach. On a Large or Huge mount, you can attack any square adjacent to the mount if you have 5- or 10-foot reach, or any square within 10 feet of the mount (including diagonally) if you have 15-foot reach."],"source":"CRB"},{"type":"pf2-h4","page":478,"name":"Mounted Defenses","entries":["When you're mounted, attackers can target either you or your mount. Anything that affects multiple creatures (such as an area) affects both of you as long as you're both in the area. You are in an attacker's reach or range if any square of your mount is within reach or range. Because your mount is larger than you and you share its space, you have lesser cover against attacks targeting you when you're mounted if the mount would be in the way.","Because you can't move your body as freely while you're riding a mount, you take a –2 circumstance penalty to Reflex saves while mounted. Additionally, the only move action you can use is the Mount action to dismount."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-brown-box","page":478,"name":"THREE-DIMENSIONAL COMBAT","entries":["In aerial and aquatic combat, you might need to track positioning in three dimensions. For flying creatures, you might use one of the following methods:",{"type":"list","items":["Find platforms to place flying creatures' miniatures on.","Set a die next to a creature with the number indicating how many squares up in the air it is.","Make a stack of dice or tokens, 1 per 5 feet of elevation.","Write the elevation next to the monster on the grid. In underwater combat, choose a plane to be the\nbaseline, typically the waterline, the sea floor, or a stationary object you can measure from."]},"As with ground-based movement, moving diagonally up or down in 3-D space requires counting every other diagonal as 10 feet. Measure flanking in all directions—creatures above and below an enemy can flank it just as effectively as they can from opposite sides."],"source":"CRB"},{"type":"pf2-h3","page":478,"name":"Aerial Combat","entries":["Many monsters can fly, and PCs can use spells and items to gain the ability to fly. Flying creatures have to use the Fly action (page 472) to move through the air. Performing an especially tricky maneuver—such as trying to reverse course 180 degrees or fly through a narrow gap—might require using {@skill Acrobatics} to Maneuver in Flight. Creatures might fall from the sky, using the falling rules found on page 463. At the GM's discretion, some ground-based actions might not work in the air. For instance, a flying creature couldn't Leap."],"source":"CRB"},{"type":"pf2-h3","page":478,"name":"Aquatic Combat","entries":["Use these rules for battles in water or underwater:",{"type":"list","items":["You're {@condition flat-footed} unless you have a swim Speed.","You gain resistance 5 to acid and fire.","You take a –2 circumstance penalty to melee slashing or bludgeoning attacks that pass through water.","Ranged attacks that deal bludgeoning or slashing damage automatically miss if the attacker or target is underwater, and piercing ranged attacks made by an underwater creature or against an underwater target have their range increments halved.","You can't cast fire spells or use actions with the fire trait underwater.","At the GM's discretion, some ground-based actions might not work underwater or while floating."]},{"type":"pf2-h4","page":478,"name":"Drowning and Suffocating","entries":["You can hold your breath for a number of rounds equal to 5 + your Constitution modifier. Reduce your remaining air by 1 round at the end of each of your turns, or by 2 if you attacked or cast any spells that turn. You also lose 1 round worth of air each time you are critically hit or critically fail a save against a damaging effect. If you speak (including casting spells with verbal components or activating items with command components) you lose all remaining air.","When you run out of air, you fall {@condition unconscious} and start suffocating. You can't recover from being unconscious and must attempt a DC 20 Fortitude save at the end of each of your turns. On a failure, you take 1d10 damage, and on a critical failure, you die. On each check after the first, the DC increases by 5 and the damage by 1d10; these increases are cumulative. Once your access to air is restored, you stop suffocating and are no longer unconscious (unless you're at 0 Hit Points)."],"data":{"quickrefIndex":true},"source":"CRB"}],"data":{"quickrefIndex":true},"source":"CRB"}],"source":"CRB"}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":479,"name":"Exploration Mode","entries":[{"type":"pf2-h1-flavor","page":479,"entries":["{@i While encounters use rounds for combat, exploration is more free form. The GM determines the flow of time, as you could be traveling by horseback across craggy highlands, negotiating with merchants, or delving in a dungeon in search of danger and treasure. Exploration lacks the immediate danger of encounter mode, but it offers its own challenges.}"],"source":"CRB"},"Much of exploration mode involves movement and roleplaying. You might be traveling from one town to another, chatting with a couple of merchants an outpost along the way, or maybe having a terse conversation with the watchful city guards at your destination. Instead of measuring your rate of movement in 5-foot squares every round, you measure it in feet or miles per minute, hour, or day, using your travel speed. Rather than deciding on each action every turn, you'll engage in an exploration activity, and you'll typically spend some time every day resting and making your daily preparations.",{"type":"pf2-h2","page":479,"name":"Travel Speed","entries":["Depending on how the GM tracks movement, you move in feet or miles based on your character's Speed with the relevant movement type. Typical rates are on the table below.",{"type":"statblock","tag":"table","source":"CRB","name":"Travel Speed"},"The rates in Table 9 –2 assume traveling over flat and clear terrain at a determined pace, but one that's not exhausting.","Moving through {@quickref difficult terrain||3|terrain} halves the listed movement rate. {@quickref greater difficult terrain||3|terrain} reduces the distance traveled to one-third the listed amount. If the travel requires a skill check to accomplish, such as mountain climbing or swimming, the GM might call for a check once per hour using the result and the table above to determine your progress."],"source":"CRB"},{"type":"pf2-h2","page":479,"name":"Exploration Activities","entries":["While you're traveling and exploring, tell the GM what you'd generally like to do along the way. If you to do nothing more than make steady progress toward your goal, you move at the full travel speeds given in Table 9 –2.","When you want to do something other than simply travel, you describe what you are attempting to do. It isn't necessary to go into extreme detail, such as \"Using my dagger, I nudge the door so I can check for devious traps.\" Instead, \"I'm searching the area for hazards\" is sufficient. The GM finds the best exploration activity to match your description and describes the effects of that activity. Some exploration activities limit how fast you can travel and be effective.","These are most common exploration activities.",{"type":"pf2-brown-box","page":480,"name":"SKILL EXPLORATION ACTIVITIES","entries":["Chapter 4: Skills includes numerous additional exploration activities, which are summarized here.","{@b {@action Borrow an Arcane Spell}:} You use {@skill Arcana} to prepare a spell from someone else's spellbook (page 241).","{@b {@action Coerce}:} You use {@skill Intimidation} to threaten a creature so it does what you want (page 247).","{@b {@action Cover Tracks}:} You use {@skill Survival} to obscure your passing (page 252).","{@b {@action Decipher Writing}:} You use a suitable skill to understand archaic, esoteric, or obscure texts (page 234).","{@b {@action Gather Information}:} You use {@skill Diplomacy} to canvass the area to learn about a specific individual or topic (page 246).","{@b {@action Identify Alchemy}:} You use Craft and alchemist's tools to identify an alchemical item (page 245).","{@b {@action Identify Magic}:} Using a variety of skills, you can learn about a magic item, location, or ongoing effect (page 238).","{@b {@action Impersonate}:} You use {@skill Deception} and usually a disguise kit to create a disguise (page 245).","{@b {@action Learn a Spell}:} You use the skill corresponding to the spell's tradition to gain access to a new spell (page 238).","{@b {@action Make an Impression}:} You use {@skill Diplomacy} to make a good impression on someone (page 246).","{@b {@action Repair}:} With a repair kit and the {@skill Crafting} skill, you fix a damaged item (page 243).","{@b {@action Sense Direction}:} You use {@skill Survival} to get a sense of where you are or determine the cardinal directions (page 252).","{@b {@action Squeeze}:} Using {@skill Acrobatics}, you squeeze though very tight spaces (page 241).","{@b {@action Track}:} You use {@skill Survival} to find and follow creatures' tracks (page 252).","{@b {@action Treat Wounds}:} You use {@skill Medicine} to treat a living creature's wounds (page 249)."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":480,"name":"Rest and Daily Preparations","entries":["You perform at your best when you take enough time to rest and prepare. Once every 24 hours, you can take a period of rest (typically 8 hours), after which you regain Hit Points equal to your Constitution modifier (minimum 1) times your level, and you might recover from or improve certain conditions (page 453). Sleeping in armor results in poor rest that leaves you {@condition fatigued}. If you go more than 16 hours without resting, you become {@condition fatigued} (you cannot recover from this until you rest at least 6 continuous hours).","After you rest, you make your daily preparations, which takes around 1 hour. You can prepare only if you've rested, and only once per day. Preparing includes the following:",{"type":"list","items":["Spellcasters regain spell slots, and prepared spellcasters choose spells to have available that day.","Focus Points, other abilities that refresh during your preparations, and abilities that can be used only a certain number of times per day, including magic item uses, are reset.","You don armor and equip weapons and other gear.","You invest up to 10 worn magic items to gain their benefits for the day."]}],"data":{"quickrefIndex":true},"source":"CRB"}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":476,"name":"Flanking","entries":["When you and an ally are flanking a foe, it has a harder time defending against you. A creature is {@condition flat-footed} (taking a –2 circumstance penalty to AC) to creatures that are flanking it.","To flank a foe, you and your ally must be on opposites sides or corners of the creature. A line drawn between the center of your space and the center of your ally's space must pass through opposite sides or opposite corners of the foe's space. Additionally, both you and the ally have to be able to act, must be wielding melee weapons or able to make an unarmed attack, can't be under any effects that prevent you from attacking, and must have the enemy within reach. If you are wielding a reach weapon, you use your {@trait reach} with that weapon for this purpose."],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":444,"name":"Game Conventions","entries":["Pathfinder has many specific rules, but you'll also want to keep these general guidelines in mind when playing.",{"type":"pf2-h3","name":"The GM Has the Final Say"},"If you're ever uncertain how to apply a rule, the GM decides.","Of course, Pathfinder is a game, so when adjudicating the rules, the GM is encouraged to listen to everyone's point of view and make a decision that is both fair and fun.",{"type":"pf2-h3","name":"Specific Overrides General"},"A core principle of Pathfinder is that specific rules override general ones. If two rules conflict, the more specific one takes precedence. If there's still ambiguity, the GM determines which rule to use. For example, the rules state that when attacking a concealed creature, you must attempt a DC {@flatDC 5} flat check to determine if you hit. Flat checks don't benefit from modifiers, bonuses, or penalties, but an ability that's specifically designed to overcome concealment might override and alter this. If a rule doesn't specify otherwise, default to the general rules presented in this chapter. While some special rules may also state the normal rules to provide context, you should always default to the normal rules even if effects don't specifically say to.",{"type":"pf2-h3","name":"Rounding"},"You may need to calculate a fraction of a value, like halving damage. Always round down unless otherwise specified.","For example, if a spell deals 7 damage and a creature takes half damage from it, that creature takes 3 damage.",{"type":"pf2-h3","name":"Multiplying"},"When more than one effect would multiply the same number, don't multiply more than once. Instead, combine all the multipliers into a single multiplier, with each multiple after the first adding 1 less than its value. For instance, if one ability doubled the duration of one of your spells and another one doubled the duration of the same spell, you would triple the duration, not quadruple it.",{"type":"pf2-h3","name":"Duplicate Effects"},"When you're affected by the same thing multiple times, only one instance applies, using the higher level of the effects, or the newer effect if the two are the same level. For example, if you were using {@spell mage armor} and then cast it again, you'd still benefit from only one casting of that spell. Casting a spell again on the same target might get you a better duration or effect if it were cast at a higher level the second time, but otherwise doing so gives you no advantage.",{"type":"pf2-h3","name":"Ambiguous Rules"},"Sometimes a rule could be interpreted multiple ways. If one version is too good to be true, it probably is. If a rule seems to have wording with problematic repercussions or doesn't work as intended, work with your group to find a good solution, rather than just playing with the rule as printed."],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":467,"name":"Hero Points","entries":["Your heroic deeds earn you Hero Points, which grant you good fortune or let you recover from the brink of death. Unlike most aspects of your character, which persist over the long term, Hero Points last for only a single session.","The GM is in charge of awarding Hero Points (guidelines for doing so can be found {@quickref here||4|rewards|1}).","Usually, each character gets 1 Hero Point at the start of a session and can gain more later by performing heroic deeds—something selfless, daring, or beyond normal expectations. You can have a maximum of 3 Hero Points at a time, and you lose any remaining Hero Points at the end of a session.","You can spend your Hero Points in one of two ways.","Neither of these is an action, and you can spend Hero Points even if you aren't able to act. You can spend a Hero Point on behalf of your familiar or animal companion.",{"type":"list","items":["{@b Spend 1 Hero Point} to reroll a check. You must use the second result. This is a fortune effect (which means you can't use more than 1 Hero Point on a check).","{@b Spend all your Hero Points} (minimum 1) to avoid death. You can do this when your {@condition dying} condition would increase. You lose the {@condition dying} condition entirely and stabilize with 0 Hit Points. You don't gain the {@condition wounded} condition or increase its value from losing the {@condition dying} condition in this way, but if you already had that condition, you don't lose it or decrease its value."]},{"type":"pf2-h3","page":467,"name":"Describing Heroic Deeds","entries":["Because spending Hero Points reflects heroic deeds or tasks that surpass normal expectations, if you spend a Hero Point, you should describe the deed or task your character accomplishes with it to the other players.","Your character's deed might invoke a lesson learned in a past adventure, could be spurred by a determination to save someone else, or might depend on an item that ended up on their person due to a previous exploit. If you don't want to describe the deed or don't have any strong ideas about how to do so, ask the GM to come up with something for you. This can be a collaborative process, too. The GM might remind you of a long-forgotten event in the campaign, and all you have to do is fill in how that event comes to mind just at the right time, motivating you to push past your limits."],"source":"CRB"}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":459,"name":"Hit Points, Healing, and Dying","entries":["All creatures and objects have Hit Points (HP). Your maximum Hit Point value represents your health, wherewithal, and heroic drive when you are in good health and rested. Your maximum Hit Points include the Hit Points you gain at 1st level from your ancestry and class, those you gain at higher levels from your class, and any you gain from other sources (like the Toughness general feat). When you take damage, you reduce your current Hit Points by a number equal to the damage dealt.","Some spells, items, and other effects, as well as simply resting, can heal living or undead creatures. When you are healed, you regain Hit Points equal to the amount healed, up to your maximum Hit Points.",{"type":"pf2-h3","page":459,"name":"Knocked Out and Dying","entries":["Creatures cannot be reduced to fewer than 0 Hit Points.","When most creatures reach 0 Hit Points, they die and are removed from play unless the attack was nonlethal, in which case they are instead knocked out for a significant amount of time (usually 1 minute or more). When undead and construct creatures reach 0 Hit Points, they are destroyed.","Player characters, their companions, and other significant characters and creatures don't automatically die when they reach 0 Hit Points. Instead, they are knocked out and are at risk of death. At the GM's discretion, villains, powerful monsters, special NPCs, and enemies with special abilities that are likely to bring them back to the fight (like ferocity, regeneration, or healing magic) can use these rules as well.","As a player character, when you are reduced to 0 Hit Points, you're knocked out with the following effects:",{"type":"list","items":["You immediately move your initiative position to directly before the turn in which you were reduced to 0 HP.","You gain the {@condition dying} 1 condition. If the effect that knocked you out was a critical success from the attacker or the result of your critical failure, you gain the {@condition dying} 2 condition instead. If you have the {@condition wounded} condition (page 460), increase your {@condition dying} value by an amount equal to your {@condition wounded} value. If the damage was dealt by a nonlethal attack or nonlethal effect, you don't gain the dying condition; you are instead unconscious with 0 Hit Points."]},{"type":"pf2-h4","page":459,"name":"Taking Damage while Dying","entries":["If you take damage while you already have the dying condition, increase your dying condition value by 1, or by 2 if the damage came from an attacker's critical hit or your own critical failure. If you have the wounded condition, remember to add the value of your wounded condition to your dying value."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":459,"name":"Recovery Checks","entries":["When you're dying, at the start of each of your turns, you must attempt a flat check with a DC equal to 10 + your current dying value to see if you get better or worse. This is called a recovery check. The effects of this check are as follows.",{"type":"successDegree","entries":{"Critical Success":"Your {@condition dying} value is reduced by 2.","Success":"Your {@condition dying} value is reduced by 1.","Failure":"Your {@condition dying} value increases by 1.","Critical Failure":"Your {@condition dying} value increases by 2."}}],"source":"CRB"},{"type":"pf2-h3","page":459,"name":"Conditions Related to Death and Dying","entries":["To understand the rules for getting knocked out and how dying works in the game, you'll need some more information on the conditions used in those rules.","Presented below are the rules for the {@condition dying}, {@condition unconscious}, wounded, and doomed conditions.",{"type":"pf2-h4","page":459,"name":"Dying","entries":["You are bleeding out or otherwise at death's door. While you have this condition, you are unconscious. Dying always includes a value. If this value ever reaches dying 4, you die. If you're dying, you must attempt a recovery check at the start of your turn each round to determine whether you get better or worse.","If you lose the {@condition dying} condition by succeeding at a recovery check and are still at 0 Hit Points, you remain unconscious, but you can wake up as described on page 460. You lose the dying condition automatically and wake up if you ever have 1 Hit Point or more. Anytime you lose the dying condition, you gain the wounded 1 condition, or increase your wounded value by 1 if you already have that condition."],"source":"CRB"},{"type":"pf2-h4","page":459,"name":"Unconscious","entries":["You're sleeping, or you've been knocked out. You can't act.","You take a –4 status penalty to AC, Perception, and Reflex saves, and you have the blinded and {@condition flat-footed} conditions.","When you gain this condition, you fall {@condition prone} and drop items you are wielding or holding unless the effect states otherwise or the GM determines you're in a position in which you wouldn't.","{@b If you're {@condition unconscious} because you're {@condition dying}}, you can't wake up as long as you have 0 Hit Points. If you're restored to 1 Hit Point or more via healing, you lose the dying and unconscious conditions and can act normally on your next turn.","If you are {@condition unconscious} and at 0 Hit Points, but not {@b dying}, you naturally return to 1 Hit Point and awaken after sufficient time passes. The GM determines how long you remain unconscious, from a minimum of 10 minutes to several hours. If you receive healing during this time, you lose the unconscious condition and can act normally on your next turn.","If you're {@condition unconscious} and have more than 1 Hit Point (typically because you are asleep or unconscious due to an effect), you wake up in one of the following ways.","Each causes you to lose the {@condition unconscious} condition.",{"type":"list","items":["You take damage, provided the damage doesn't reduce you to 0 Hit Points. (If the damage reduces you to 0 Hit Points, you remain {@condition unconscious} and gain the {@condition dying} condition as normal.)","You receive healing, other than the natural healing you get from resting.","Someone nudges or shakes you awake using an Interact action.","Loud noise is being made around you—though this isn't automatic. At the start of your turn, you automatically attempt a Perception check against the noise's DC (or the lowest DC if there is more than one noise), waking up if you succeed. This is often DC 5 for a battle, but if creatures are attempting to stay quiet around you, this Perception check uses their {@skill Stealth} DC. Some magical effects make you sleep so deeply that they don't allow you to attempt this Perception check.","If you are simply asleep, the GM decides you wake up either because you have had a restful night's sleep or something disrupted that rest."]}],"source":"CRB"},{"type":"pf2-h4","page":460,"name":"Wounded","entries":["You have been seriously injured during a fight. Anytime you lose the dying condition, you become wounded 1 if you didn't already have the wounded condition. If you already have the wounded condition, your wounded condition value instead increases by 1. If you gain the dying condition while wounded, increase the dying condition's value by your wounded value. The wounded condition ends if someone successfully restores Hit Points to you with Treat Wounds, or if you are restored to full Hit Points and rest for 10 minutes."],"source":"CRB"},{"type":"pf2-h4","page":460,"name":"Doomed","entries":["Your life is ebbing away, bringing you ever closer to death. Some powerful spells and evil creatures can inflict the doomed condition on you. Doomed always includes a value. The maximum dying value at which you die is reduced by your doomed value. For example, if you were {@condition doomed 1}, you would die upon reaching dying 3 instead of dying 4. If your maximum dying value is ever reduced to 0, you instantly die. When you die, you're no longer doomed.","Your {@condition doomed} value decreases by 1 each time you get a full night's rest."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":460,"name":"Death","entries":["After you die, you can't act or be affected by spells that target creatures (unless they specifically target dead creatures), and for all other purposes you are an object. When you die, you are reduced to 0 Hit Points if you had a different amount, and you can't be brought above 0 Hit Points as long as you remain dead. Some magic can bring creatures back to life, such as the {@ritual resurrect} ritual or the {@spell raise dead} spell."],"source":"CRB"},{"type":"pf2-h3","page":460,"name":"Heroic Recovery","entries":["If you have at least 1 Hero Point (page 467), you can spend all of your remaining Hero Points at the start of your turn or when your dying value would increase. You lose the dying condition entirely and stabilize with 0 Hit Points. You don't gain the wounded condition or increase its value from losing the dying condition in this way, but if you already had that condition, you don't lose it or decrease its value. You lose the dying condition and become conscious. You do not gain the wounded condition (or increase its value) when you perform a heroic recovery."],"source":"CRB"},{"type":"pf2-h3","page":461,"name":"Death Effects and Instant Death","entries":["Some spells and abilities can kill you immediately or bring you closer to death without needing to reduce you to 0 Hit Points first. These abilities have the death trait and usually involve negative energy, the antithesis of life. If you are reduced to 0 Hit Points by a death effect, you are slain instantly without needing to reach dying 4. If an effect states it kills you outright, you die without having to reach dying 4 and without being reduced to 0 Hit Points."],"source":"CRB"},{"type":"pf2-h3","page":461,"name":"Massive Damage","entries":["You die instantly if you ever take damage equal to or greater than double your maximum Hit Points in one blow."],"source":"CRB"},{"type":"pf2-h3","page":461,"name":"Temporary Hit Points","entries":["Some spells or abilities give you temporary Hit Points.","Track these separately from your current and maximum Hit Points; when you take damage, reduce your temporary Hit Points first. Most temporary Hit Points last for a limited duration. You can't regain lost temporary Hit Points through healing, but you can gain more via other abilities. You can have temporary Hit Points from only one source at a time. If you gain temporary Hit Points when you already have some, choose whether to keep the amount you already have and their corresponding duration or to gain the new temporary Hit Points and their duration."],"source":"CRB"},{"type":"pf2-h3","page":461,"name":"Fast Healing and Regeneration","entries":["A creature with fast healing or regeneration regains the listed amount of Hit Points each round at the beginning of its turn. A creature with regeneration has additional benefits. Its dying condition can't increase to a value that would kill it (this stops most creatures from going beyond dying 3) as long as its regeneration is active. If it takes damage of a type listed in the regeneration entry, its regeneration deactivates until the end of its next turn, including against the triggering damage."],"source":"CRB"},{"type":"pf2-h3","page":461,"name":"Items and Hit Points","entries":["Items have Hit Points like creatures, but the rules for damaging them are different (page 272). An item has a Hardness statistic that reduces damage the item takes by that amount. The item then takes any damage left over. If an item is reduced to 0 HP, it's destroyed. An item also has a Broken Threshold. If its HP are reduced to this amount or lower, it's broken, meaning it can't be used for its normal function and it doesn't grant bonuses. Damaging an unattended item usually requires attacking it directly, and can be difficult due to that item's Hardness and immunities. You usually can't attack an attended object (one on a creature's person)."],"source":"CRB"}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":443,"name":"Making Choices","entries":["Pathfinder is a game where your choices determine the story's direction. Throughout the game, the GM describes what's happening in the world and then asks the players, \"So what do you do?\" Exactly what you choose to do, and how the GM responds to those choices, builds a unique story experience. Every game is different, because you'll rarely, if ever, make the same decisions as another group of players.","This is true for the GM as well—two GMs running the exact same adventure will put different emphasis and flourishes on the way they present each scenario and encounter.","Often, your choices have no immediate risk or consequences. If you're traveling along a forest path and come across a fork in the trail, the GM will ask, \"Which way do you go?\" You might choose to take the right fork or the left. You could also choose to leave the trail, or just go back to town. Once your choice is made, the GM tells you what happens next. Down the line, that choice may impact what you encounter later in the game, but in many cases nothing dangerous happens immediately.","But sometimes what happens as a result of your choices is less than certain. In those cases, you'll attempt a check."],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":463,"name":"Movement","entries":["Your movement and position determine how you can interact with the world. Moving around in exploration and downtime modes is relatively fluid and free form.","Movement in encounter mode, by contrast, is governed by rules explained in Movement in Encounters (page 473). The rules below apply regardless of which mode you're playing in.",{"type":"pf2-h3","page":463,"name":"Movement Types","entries":["Creatures in Pathfinder soar through the clouds, scale sheer cliffs, and tunnel underfoot. Most creatures have a Speed, which is how fast they can move across the ground. Some abilities give you different ways to move, such as through the air or underground.","Each of these special movement types has its own Speed value. Many creatures have these Speeds naturally. The various types of movement are listed below. Since the Stride action can be used only with your normal Speed, moving using one of these movement types requires using a special action, and you can't Step while using one of these movement types. Since Speed by itself refers to your land Speed, rules text concerning these special movement types specifies the movement types to which it applies. Even though Speeds aren't checks, they can have item, circumstance, and status bonuses and penalties. These can't reduce your Speeds below 5 feet unless stated otherwise.","Switching from one movement type to another requires ending your action that has the first movement type and using a new action that has the second movement type. For instance, if you Climbed 10 feet to the top of a cliff, you could then Stride forward 10 feet.",{"type":"pf2-h4","page":463,"name":"Speed","entries":["Most characters and monsters have a speed statistic—also called land Speed—which indicates how quickly they can move across the ground. When you use the Stride action, you move a number of feet equal to your Speed. Numerous other abilities also allow you to move, from Crawling to Leaping, and most of them are based on your Speed in some way. Whenever a rule mentions your Speed without specifying a type, it's referring to your land Speed."],"source":"CRB"},{"type":"pf2-h4","page":463,"name":"Burrow Speed","entries":["A burrow Speed lets you tunnel through the ground. You can use the {@action Burrow} action if you have a burrow Speed. Burrowing doesn't normally leave behind a tunnel unless the ability specifically states that it does. Most creatures need to hold their breath when burrowing, and they may need tremorsense (page 465) to navigate with any accuracy."],"source":"CRB"},{"type":"pf2-h4","page":463,"name":"Climb Speed","entries":["A climb Speed allows you to move up or down inclines and vertical surfaces. Instead of needing to attempt {@skill Athletics} checks to Climb, you automatically succeed and move up to your climb Speed instead of the listed distance.","You might still have to attempt {@skill Athletics} checks to Climb in hazardous conditions, to Climb extremely difficult surfaces, or to cross horizontal planes such as ceilings. You can also choose to roll an {@skill Athletics} check to Climb rather than accept an automatic success in hopes of getting a critical success. Your climb Speed grants you a +4 circumstance bonus to {@skill Athletics} checks to Climb.","If you have a climb Speed, you're not {@condition flat-footed} while climbing."],"source":"CRB"},{"type":"pf2-h4","page":463,"name":"Fly Speed","entries":["As long as you have a fly Speed, you can use the {@action Fly} and {@action Arrest a Fall} actions. You can also attempt to {@action Maneuver in Flight} if you're trained in the {@skill Acrobatics} skill.","Wind conditions can affect how you use the {@action Fly} action. In general, moving against the wind uses the same rules as moving through {@quickref difficult terrain||3|terrain} (or {@quickref greater difficult terrain||3|terrain}, if you're also flying upward), and moving with the wind allows you to move 10 feet for every 5 feet of movement you spend (not cumulative with moving straight downward). For more information on spending movement, see Movement in Encounters on page 473.","Upward and downward movement are both relative to the gravity in your area; if you're in a place with zero gravity, moving up or down is no different from moving horizontally."],"source":"CRB"},{"type":"pf2-h4","page":463,"name":"Swim Speed","entries":["With a swim Speed, you can propel yourself through the water with little impediment. Instead of attempting {@skill Athletics} checks to {@action Swim}, you automatically succeed and move up to your swim Speed instead of the listed distance. Moving up or down is still moving through {@quickref difficult terrain||3|terrain}.","You might still have to attempt checks to {@action Swim} in hazardous conditions or to cross turbulent water. You can also choose to roll an {@skill Athletics} check to {@action Swim} rather than accept an automatic success in hopes of getting a critical success. Your swim Speed grants you a +4 circumstance bonus to {@skill Athletics} checks to {@action Swim}.","Having a swim Speed doesn't necessarily mean you can breathe in water, so you might still have to hold your breath if you're underwater to avoid {@quickref drowning||3|drowning and suffocating}."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":463,"name":"Falling","entries":["When you fall more than 5 feet, you take bludgeoning damage equal to half the distance you fell when you land. Treat falls longer than 1,500 feet as though they were 1,500 feet (750 damage). If you take any damage from a fall, you land prone. You fall about 500 feet in the first round of falling and about 1,500 feet each round thereafter.","You can Grab an Edge as a reaction to reduce the damage from some falls. In addition, if you fall into water, snow, or another relatively soft substance, you can treat the fall as though it were 20 feet shorter, or 30 feet shorter if you intentionally dove in. The effective reduction can't be greater than the depth (so when falling into 10-foot-deep water, you treat the fall as 10 feet shorter).",{"type":"pf2-h4","page":464,"name":"Falling on a Creature","entries":["If you land on a creature, that creature must attempt a DC 15 Reflex save. Landing exactly on a creature after a long fall is almost impossible.",{"type":"successDegree","entries":{"Critical Success":"The creature takes no damage.","Success":"The creature takes bludgeoning damage equal to one-quarter the falling damage you took.","Failure":"The creature takes bludgeoning damage equal to half the falling damage you took.","Critical Failure":"The creature takes the same amount of bludgeoning damage you took from the fall."}}],"source":"CRB"},{"type":"pf2-h4","page":464,"name":"Falling Objects","entries":["A dropped object takes damage just like a falling creature. If the object lands on a creature, that creature can attempt a Reflex save using the same rules as for a creature falling on a creature. Hazards and spells that involve falling objects, such as a rock slide, have their own rules about how they interact with creatures and the damage they deal."],"source":"CRB"}],"data":{"quickrefIndex":true},"source":"CRB"}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":618,"name":"Overriding Conditions","entries":["Some conditions override others. This is always specified in the entry for the overriding condition. When this happens, all effects of the overridden condition are suppressed until the overriding condition ends. The overridden condition's duration continues to elapse, and it might run out while suppressed."],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":464,"name":"Perception","entries":["Your Perception measures your ability to notice things, search for what's hidden, and tell whether something about a situation is suspicious. This statistic is frequently used for rolling initiative to determine who goes first in an encounter, and it's also used for the {@action Seek} action .","The rules for rolling a Perception check are found on page 448. The rules below describe the effects of light and visibility on your specific senses to perceive the world, as well as the rules for sensing and locating creatures with Perception.",{"type":"pf2-h3","page":464,"name":"Light","entries":["The amount of light in an area can affect how well you see things. There are three levels of light: bright light, dim light, and darkness. The rules in this book assume that all creatures are in bright light unless otherwise noted. A source of light lists the radius in which it sheds bright light, and it sheds dim light to double that radius.",{"type":"pf2-h4","page":464,"name":"Bright Light","entries":["In bright light, such as sunlight, creatures and objects can be observed clearly by anyone with average vision or better. Some types of creatures are dazzled or blinded by bright light."],"source":"CRB"},{"type":"pf2-h4","page":464,"name":"Dim Light","entries":["Areas in shadow or lit by weak light sources are in dim light. Creatures and objects in dim light have the {@condition concealed} condition, unless the seeker has {@ability darkvision} or {@ability low-light vision} (see Special Senses on page 465), or a precise sense other than vision."],"source":"CRB"},{"type":"pf2-h4","page":464,"name":"Darkness","entries":["A creature or object within darkness is hidden or undetected unless the seeker has {@ability darkvision} or a precise sense other than vision (Special Senses are on page 465). A creature without {@ability darkvision} or another means of perceiving in darkness has the blinded condition while in darkness, though it might be able to see illuminated areas beyond the darkness. If a creature can see into an illuminated area, it can observe creatures within that illuminated area normally. After being in darkness, sudden exposure to bright light might make you dazzled for a short time, as determined by the GM."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":464,"name":"Senses","entries":["The ways a creature can use {@skill Perception} depend on what senses it has. The primary concepts you need to know for understanding senses are precise senses, imprecise senses, and the three states of detection a target can be in: observed, hidden, or undetected. Vision, hearing, and scent are three prominent senses, but they don't have the same degree of acuity.",{"type":"pf2-h4","page":464,"name":"Precise Senses","entries":["Average vision is a precise sense—a sense that can be used to perceive the world in nuanced detail. The only way to target a creature without having drawbacks is to use a precise sense. You can usually detect a creature automatically with a precise sense unless that creature is hiding or obscured by the environment, in which case you can use the Seek basic action to better detect the creature."],"source":"CRB"},{"type":"pf2-h4","page":464,"name":"Imprecise Senses","entries":["Hearing is an imprecise sense—it cannot detect the full range of detail that a precise sense can. You can usually sense a creature automatically with an imprecise sense, but it has the hidden condition instead of the observed condition. It might be undetected by you if it's using {@skill Stealth} or is in an environment that distorts the sense, such as a noisy room in the case of hearing. In those cases, you have to use the Seek basic action to detect the creature. At best, an imprecise sense can be used to make an undetected creature (or one you didn't even know was there) merely hidden—it can't make the creature observed."],"source":"CRB"},{"type":"pf2-h4","page":465,"name":"Vague Senses","entries":["A character also has many vague senses—ones that can alert you that something is there but aren't useful for zeroing in on it to determine exactly what it is. The most useful of these for a typical character is the sense of smell. At best, a vague sense can be used to detect the presence of an unnoticed creature, making it undetected. Even then, the vague sense isn't sufficient to make the creature hidden or observed.","When one creature might detect another, the GM almost always uses the most precise sense available.","Pathfinder's rules assume that a given creature has vision as its only precise sense and hearing as its only imprecise sense. Some characters and creatures, however, have precise or imprecise senses that don't match this assumption. For instance, a character with poor vision might treat that sense as imprecise, an animal with the {@ability scent} ability can use its sense of smell as an imprecise sense, and a creature with echolocation or a similar ability can use hearing as a precise sense. Such senses are often given special names and appear as \"echolocation (precise),\" \"scent (imprecise) 30 feet,\" or the like."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":465,"name":"Special Senses","entries":["While a human might have a difficult time making creatures out in dim light, an elf can see those creatures just fine. And though elves have no problem seeing on a moonlit night, their vision cannot penetrate complete darkness, whereas a dwarf's can.","Special senses grant greater awareness that allows a creature with these senses to either ignore or reduce the effects of the undetected, hidden, or concealed conditions (described in Detecting Creatures below) when it comes to situations that foil average vision. The following are a few examples of common special senses.",{"type":"pf2-h4","page":465,"name":"Darkvision and Greater Darkvision","entries":["A creature with {@ability darkvision} or {@ability darkvision||greater darkvision} can see perfectly well in areas of darkness and dim light, though such vision is in black and white only. Some forms of magical darkness, such as a 4th-level {@spell darkness} spell, block normal {@ability darkvision}. A creature with {@ability darkvision||greater darkvision}, however, can see through even these forms of magical darkness."],"source":"CRB"},{"type":"pf2-h4","page":465,"name":"Low-Light Vision","entries":["A creature with {@ability low-light vision} can see in dim light as though it were bright light, so it ignores the {@condition concealed} condition due to dim light."],"source":"CRB"},{"type":"pf2-h4","page":465,"name":"Scent","entries":["Scent involves sensing creatures or objects by smell, and is usually a vague sense. The range is listed in the ability, and it functions only if the creature or object being detected emits an aroma (for instance, incorporeal creatures usually do not exude an aroma).","If a creature emits a heavy aroma or is upwind, the GM can double or even triple the range of {@ability scent} abilities used to detect that creature, and the GM can reduce the range if a creature is downwind."],"source":"CRB"},{"type":"pf2-h4","page":465,"name":"Tremorsense","entries":["Tremorsense allows a creature to feel the vibrations through a solid surface caused by movement. It is usually an imprecise sense with a limited range (listed in the ability). Tremorsense functions only if the detecting creature is on the same surface as the subject, and only if the subject is moving along (or burrowing through) the surface."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-brown-box","page":465,"name":"DETECTING WITH OTHER SENSES","entries":["If a monster uses a sense other than vision, the GM can adapt the variables that keep its foes from being detected to equivalents that work with the monster's senses. For example, a creature that has echolocation might use hearing as a primary sense. This could mean its quarry is concealed in a noisy chamber, hidden in a great enough din, or even {@condition invisible} in the area of a {@spell silence} spell.",{"type":"pf2-title","name":"Using Stealth with Other Senses"},"The {@skill Stealth} skill is designed to use Hide for avoiding visual detection and Avoid Notice and Sneak to avoid being both seen and heard. For many special senses, a player can describe how they're avoiding detection by that special sense and use the most applicable {@skill Stealth} action. For instance, a creature stepping lightly to avoid being detected via tremorsense would be using Sneak.","In some cases, rolling a Dexterity-based {@skill Stealth} skill check to Sneak doesn't make the most sense. For example, when facing a creature that can detect heartbeats, a PC trying to avoid being detected might meditate to slow their heart rate, using Wisdom instead of Dexterity as the ability modifier for the {@skill Stealth} check. When a creature that can detect you has multiple senses, such as if it could also hear or see, the PC would use the lowest applicable ability modifier for the check."],"source":"CRB"},{"type":"pf2-h3","page":465,"name":"Detecting Creatures","entries":["There are three conditions that measure the degree to which you can sense a creature: observed, hidden, and undetected. However, the concealed and invisible conditions can partially mask a creature, and the unnoticed condition indicates you have no idea a creature is around. In addition to the descriptions here, you can find these conditions in the Conditions Appendix on pages 618–623.","With the exception of {@condition invisible}, these conditions are relative to the viewer—it's possible for a creature to be observed to you but hidden from your ally. When you're trying to target a creature that's hard to see or otherwise sense, various drawbacks apply. Most of these rules apply to objects you're trying to detect as well as creatures.","Typically, the GM tracks how well creatures detect each other, since neither party has perfect information. For example, you might think a creature is in the last place you sensed it, but it was able to Sneak away. Or you might think a creature can't see you in the dark, but it has {@ability darkvision}.","You can attempt to avoid detection by using the {@skill Stealth} skill (page 251) to Avoid Notice, Hide, or Sneak, or by using {@skill Deception} to Create a Diversion (page 245).",{"type":"pf2-h4","page":466,"name":"Observed","entries":["In most circumstances, you can sense creatures without difficulty and target them normally. Creatures in this state are observed. Observing requires a precise sense, which for most creatures means sight, but see the Detecting with Other Senses sidebar (page 465) for advice regarding creatures that don't use sight as their primary sense. If you can't observe the creature, it's either hidden, undetected, or unnoticed, and you'll need to factor in the targeting restrictions. Even if a creature is observed, it might still be concealed."],"source":"CRB"},{"type":"pf2-h4","page":466,"name":"Hidden","entries":["A creature that's hidden is only barely perceptible. You know what space a hidden creature occupies, but little else. Perhaps the creature just moved behind cover and successfully used the Hide action. Your target might be in a deep fogbank or behind a waterfall, where you can see some movement but can't determine an exact location. Maybe you've been {@condition blinded} or the creature is under the effects of {@spell invisibility}, but you used the {@action Seek} basic action to determine its general location based on hearing alone. Regardless of the specifics, you're {@condition flat-footed} to a hidden creature.","When targeting a {@condition hidden} creature, before you roll to determine your effect, you must attempt a DC {@flatDC 11} flat check. If you fail, you don't affect the creature, though the actions you used are still expended—as well as any spell slots, costs, and other resources. You remain {@condition flat-footed} to the creature, whether you successfully target it or not."],"source":"CRB"},{"type":"pf2-h4","page":466,"name":"Undetected","entries":["If a creature is undetected, you don't know what space it occupies, you're {@condition flat-footed} to it, and you can't easily target it. Using the {@action Seek} basic action can help you find an undetected creature, usually making it {@condition hidden} from you instead of {@condition undetected}. If a creature is {@condition undetected}, that doesn't necessarily mean you're unaware of its presence—you might suspect an {@condition undetected} creature is in the room with you, even though you're unable to find its space. The {@condition unnoticed} condition covers creatures you're entirely unaware of.","Targeting an {@condition undetected} creature is difficult. If you suspect there's a creature around, you can pick a square and attempt an attack. This works like targeting a {@condition hidden} creature, but the flat check and attack roll are both rolled in secret by the GM. The GM won't tell you why you missed—whether it was due to failing the flat check, rolling an insufficient attack roll, or choosing the wrong square. The GM might allow you to try targeting an undetected creature with some spells or other abilities in a similar fashion. {@condition Undetected} creatures are subject to area effects normally.","For instance, suppose an enemy elf wizard cast {@spell invisibility} and then {@action sneak||Sneaked} away. You suspect that with the elf's Speed of 30 feet, they probably moved 15 feet toward an open door. You move up and attack a space 15 feet from where the elf started and directly on the path to the door. The GM secretly rolls an attack roll and flat check, but they know that you were not quite correct—the elf was actually in the adjacent space! The GM tells you that you missed, so you decide to make your next attack on the adjacent space, just in case. This time, it's the right space, and the GM's secret attack roll and flat check both succeed, so you hit!"],"source":"CRB"},{"type":"pf2-h4","page":467,"name":"Unnoticed","entries":["If you have no idea a creature is even present, that creature is unnoticed by you. A creature that is undetected might also be unnoticed. This condition usually matters for abilities that can be used only against targets totally unaware of your presence."],"source":"CRB"}],"source":"CRB"}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":450,"name":"Special Checks","entries":["Some categories of checks follow special rules. The most notable are flat checks and secret checks.",{"type":"pf2-h3","page":450,"name":"Flat Checks","entries":["When the chance something will happen or fail to happen is based purely on chance, you'll attempt a flat check. A flat check never includes any modifiers, bonuses, or penalties—you just roll a d20 and compare the result on the die to the DC. Only abilities that specifically apply to flat checks can change the checks' DCs; most such effects affect only certain types of flat checks.","If more than one flat check would ever cause or prevent the same thing, just roll once and use the highest DC. In the rare circumstance that a flat check has a DC of 1 or lower, skip rolling; you automatically succeed. Conversely, if one ever has a DC of 21 or higher, you automatically fail."],"source":"CRB"},{"type":"pf2-h3","page":450,"name":"Secret Checks","entries":["Sometimes you as the player shouldn't know the exact result and effect of a check. In these situations, the rules (or the GM) will call for a secret check. The secret trait appears on anything that uses secret checks. This type of check uses the same formulas you normally would use for that check, but is rolled by the GM, who doesn't reveal the result. Instead, the GM simply describes the information or effects determined by the check's result. If you don't know a secret check is happening (for instance, if the GM rolls a secret Fortitude save against a poison that you failed to notice), you can't use any fortune or misfortune abilities (see the sidebar on page 449) on that check, but if a fortune or misfortune effect would apply automatically, the GM applies it to the secret check. If you know that the GM is attempting a secret check—as often happens with {@action Recall Knowledge} or Seek—you can usually activate fortune or misfortune abilities for that check. Just tell the GM, and they'll apply the ability to the check.","The GM can choose to make any check secret, even if it's not usually rolled secretly. Conversely, the GM can let you roll any check yourself, even if that check would usually be secret. Some groups find it simpler to have players roll all secret checks and just try to avoid acting on any out-of-character knowledge, while others enjoy the mystery."],"source":"CRB"}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":446,"name":"Specific Checks","entries":["While most checks follow these basic rules, it's useful to know about a few specific types of checks, how they're used, and how they differ from one another.",{"type":"pf2-h3","page":446,"name":"Attack Rolls","entries":["When you use a {@action Strike} action or make a spell attack, you attempt a check called an attack roll. Attack rolls take a variety of forms and are often highly variable based on the weapon you are using for the attack, but there are three main types: melee attack rolls, ranged attack rolls, and spell attack rolls. Spell attack rolls work a little bit differently, so they are explained separately on the next page.","{@b Melee attack rolls} use Strength as their ability modifier by default. If you're using a weapon or attack with the finesse trait, then you can use your Dexterity modifier instead.",{"type":"pf2-inset","entries":["Melee attack roll result = d20 roll + Strength modifier (or optionally Dexterity modifier for a finesse weapon) + proficiency bonus + other bonuses + penalties"]},"{@b Ranged attack rolls} use Dexterity as their ability modifier.",{"type":"pf2-inset","entries":["Ranged attack roll result = d20 roll + Dexterity modifier + proficiency bonus + other bonuses + penalties"]},"When attacking with a weapon, whether melee or ranged, you add your proficiency bonus for the weapon you're using. Your class determines your proficiency rank for various weapons. Sometimes, you'll have different proficiency ranks for different weapons. For instance, at 5th level, a fighter gains the weapon mastery class feature, which grants master proficiency with the simple and martial weapons of one weapon group, expert proficiency with advanced weapons of that group and other simple and martial weapons, and trained proficiency in all other advanced weapons.","The bonuses you might apply to attack rolls can come from a variety of sources. Circumstance bonuses can come from the aid of an ally or a beneficial situation. Status bonuses are typically granted by spells and other magical aids. The item bonus to attack rolls comes from magic weapons—notably, a weapon's potency rune (page 580).","Penalties to attack rolls come from situations and effects as well. Circumstance penalties come from risky tactics or detrimental circumstances, status penalties come from spells and magic working against you, and item penalties occur when you use a shoddy item (page 273). When making attack rolls, two main types of untyped penalties are likely to apply. The first is the multiple attack penalty, and the second is the range penalty. The first applies anytime you make more than one attack action during the course of your turn, and the other applies only with ranged or thrown weapons. Both are described below.",{"type":"pf2-h4","page":446,"name":"Multiple Attack Penalty","entries":["The more attacks you make beyond your first in a single turn, the less accurate you become, represented by the multiple attack penalty. The second time you use an attack action during your turn, you take a –5 penalty to your attack roll. The third time you attack, and on any subsequent attacks, you take a –10 penalty to your attack roll. Every check that has the attack trait counts toward your multiple attack penalty, including Strikes, spell attack rolls, certain skill actions like Shove, and many others.","Some weapons and abilities reduce multiple attack penalties, such as agile weapons, which reduce these penalties to –4 on the second attack or –8 on further attacks.",{"type":"table","colStyles":["text-center","text-center","text-center"],"rows":[["Attack","Multiple Attack Penalty","Agile"],["First","None","None"],["Second","–5","–4"],["Third or subsequent","–10","–8"]]},"Always calculate your multiple attack penalty for the weapon you're using on that attack. For example, let's say you're wielding a longsword in one hand and a shortsword (which has the agile trait) in your other hand, and you are going to make three Strikes with these weapons during the course of your turn. The first Strike you make during your turn has no penalty, no matter what weapon you are using. The second Strike will take either a –5 penalty if you use the longsword or a –4 penalty if you use the shortsword.","Just like the second attack, the penalty for your third attack is based on which weapon you're using for that particular Strike. It would be a –10 penalty with the longsword and a –8 penalty with the shortsword, no matter what weapon you used for your previous Strikes.","The multiple attack penalty applies only during your turn, so you don't have to keep track of it if you can perform an Attack of Opportunity or a similar reaction that lets you make a Strike on someone else's turn.",{"type":"pf2-h4","page":446,"name":"Range Penalty","entries":["Ranged and thrown weapons each have a listed range increment, and attacks with them grow less accurate against targets farther away (range and range increments are covered in depth on page 279). As long as your target is at or within the listed range increment, also called the first range increment, you take no penalty to the attack roll. If you're attacking beyond that range increment, you take a –2 penalty for each additional increment beyond the first.","You can attempt to attack with a ranged weapon or thrown weapon up to six range increments away, but the farther away you are, the harder it is to hit your target.","For example, the range increment of a crossbow is 120 feet. If you are shooting at a target no farther away than that distance, you take no penalty due to range. If they're beyond 120 feet but no more than 240 feet away, you take a –2 penalty due to range. If they're beyond 240 feet but no more than 360 feet away, you take a –4 penalty due to range, and so on, until you reach the last range increment: beyond 600 feet but no more than 720 feet away, where you take a –10 penalty due to range."],"source":"CRB"},{"type":"pf2-h4","page":447,"name":"Armor Class","entries":["Attack rolls are compared to a special difficulty class called an {@b Armor Class} ({@b AC}), which measures how hard it is for your foes to hit you with Strikes and other attack actions. Just like for any other check and DC, the result of an attack roll must meet or exceed your AC to be successful, which allows your foe to deal damage to you.","Armor Class is calculated using the following formula.",{"type":"pf2-inset","entries":["Armor Class = 10 + Dexterity modifier (up to your armor's Dex Cap) + proficiency bonus + armor's item bonus to AC + other bonuses + penalties"]},"Use the proficiency bonus for the category (light, medium, or heavy) or the specific type of armor you're wearing. If you're not wearing armor, use your proficiency in unarmored defense.","Armor Class can benefit from bonuses with a variety of sources, much like attack rolls. Armor itself grants an item bonus, so other item bonuses usually won't apply to your AC, but magic armor can increase the item bonus granted by your armor.","Penalties to AC come from situations and effects in much the same way bonuses do. Circumstance penalties come from unfavorable situations, and status penalties come from effects that impede your abilities or from broken armor. You take an item penalty when you wear shoddy armor (page 273)."],"source":"CRB"}],"source":"CRB"}],"source":"CRB"},{"type":"pf2-brown-box","page":447,"name":"STRIDING AND STRIKING","entries":["Two of the simplest and most common actions you'll use in combat are Stride and Strike, described in full on page 471.","{@b {@action Stride}} is an action that has the move trait and that allows you to move a number of feet up to your Speed.","You'll often need to Stride multiple times to reach a foe who's far away or to run from danger! Move actions can often trigger reactions or free actions. However, unlike other actions, a move action can trigger reactions not only when you first use the action, but also for every 5 feet you move during that action, as described on page 474. The Step action (page 471) lets you move without triggering reactions, but only 5 feet.","{@b {@action Strike}} is an action that has the attack trait and that allows you to attack with a weapon you're wielding or an unarmed attack (such as a fist).","If you're using a melee weapon or unarmed attack, your target must be within your reach; if you're attacking with a ranged weapon, your target must be within range. Your reach is how far you can physically extend a part of your body to make an unarmed attack, or the farthest distance you can reach with a melee weapon. This is typically 5 feet, but special weapons and larger creatures have longer reaches. Your range is how far away you can attack with a ranged weapon or with some types of magical attacks.","Different weapons and magical attacks have different maximum ranges, and ranged weapons get less effective as you exceed their range increments.","Striking multiple times in a turn has diminishing returns. The multiple attack penalty (detailed on page 446) applies to each attack after the first, whether those attacks are Strikes, special attacks like the Grapple action of the {@skill Athletics} skill, or spell attack rolls."],"source":"CRB"},{"type":"pf2-h3","page":447,"name":"Spell Attack Rolls","entries":["If you cast spells, you might be able to make a spell attack roll. These rolls are usually made when a spell makes an attack against a creature's AC.","The ability modifier for a spell attack roll depends on how you gained access to your spells. If your class grants you spellcasting, use your key ability modifier. Innate spells use your Charisma modifier unless the ability that granted them states otherwise. Focus spells and other sources of spells specify which ability modifier you use for spell attack rolls in the ability that granted them. If you have spells from multiple sources or traditions, you might use different ability modifiers for spell attack rolls for these different sources of spells. For example, a dwarf cleric with the Stonewalker ancestry feat would use her Charisma modifier when casting {@spell meld into stone} from that feat, since it's a divine innate spell, but she would use her Wisdom modifier when casting {@spell heal} and other spells using her cleric divine spellcasting.","Determine the spell attack roll with the following formula.",{"type":"pf2-inset","entries":["Spell attack roll result = d20 roll + ability modifier used for spellcasting + proficiency bonus + other bonuses + penalties"]},"If you have the ability to cast spells, you'll have a proficiency rank for your spell attack rolls, so you'll always add a proficiency bonus. Like your ability modifier, this proficiency rank may vary from one spell to another if you have spells from multiple sources. Spell attack rolls can benefit from circumstance bonuses and status bonuses, though item bonuses to spell attack rolls are rare. Penalties affect spell attack rolls just like any other attack roll—including your multiple attack penalty.","Many times, instead of requiring you to make a spell attack roll, the spells you cast will require those within the area or targeted by the spell to attempt a saving throw against your {@b Spell DC} to determine how the spell affects them.","Your spell DC is calculated using the following formula.",{"type":"pf2-inset","entries":["Spell DC = 10 + ability modifier used for spellcasting + proficiency bonus + other bonuses + penalties"]}],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h3","page":448,"name":"Perception","entries":["Perception measures your ability to be aware of your environment. Every creature has Perception, which works with and is limited by a creature's senses (described on page 464). Whenever you need to attempt a check based on your awareness, you'll attempt a Perception check.","Your Perception uses your Wisdom modifier, so you'll use the following formula when attempting a Perception check.",{"type":"pf2-inset","entries":["Perception check result = d20 roll + Wisdom modifier + proficiency bonus + other bonuses + penalties"]},"Nearly all creatures are at least trained in Perception, so you will almost always add a proficiency bonus to your Perception modifier. You might add a circumstance bonus for advantageous situations or environments, and typically get status bonuses from spells or other magical effects. Items can also grant you a bonus to Perception, typically in a certain situation. For instance, a fine spyglass grants a +1 item bonus to Perception when attempting to see something a long distance away. Circumstance penalties to Perception occur when an environment or situation (such as fog) hampers your senses, while status penalties typically come from conditions, spells, and magic effects that foil the senses. You'll rarely encounter item penalties or untyped penalties for Perception.","Many abilities are compared to your {@b Perception DC} to determine whether they succeed. Your Perception DC is 10 + your total Perception modifier.",{"type":"pf2-h4","page":448,"name":"Perception for Initiative","entries":["Often, you'll roll a Perception check to determine your order in initiative. When you do this, instead of comparing the result against a DC, everyone in the encounter will compare their results. The creature with the highest result acts first, the creature with the second-highest result goes second, and so on. Sometimes you may be called on to roll a skill check for initiative instead, but you'll compare results just as if you had rolled Perception. The full rules for initiative are found in the rules for encounter mode on page 468."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":448,"name":"Saving Throws","entries":["There are three types of saving throws: Fortitude saves, Reflex saves, and Will saves. In all cases, saving throws measure your ability to shrug off harmful effects in the form of afflictions, damage, or conditions. You'll always add a proficiency bonus to each save. Your class might give a different proficiency to each save, but you'll be trained at minimum. Some circumstances and spells might give you circumstance or status bonuses to saves, and you might find {@item resilient} armor or other magic items that give an item bonus.","{@b Fortitude saving throws} allow you to reduce the effects of abilities and afflictions that can debilitate the body.","They use your Constitution modifier and are calculated as shown in the formula below.",{"type":"pf2-inset","entries":["Fortitude save result = d20 roll + Constitution modifier + proficiency bonus + other bonuses + penalties"]},"{@b Reflex saving throws} measure how well you can respond quickly to a situation and how gracefully you can avoid effects that have been thrown at you. They use your Dexterity modifier and are calculated as shown in the formula below.",{"type":"pf2-inset","entries":["Reflex save result = d20 roll + Dexterity modifier + proficiency bonus + other bonuses + penalties"]},"{@b Will saving throws} measure how well you can resist attacks to your mind and spirit. They use your Wisdom modifier and are calculated as shown in the formula below.",{"type":"pf2-inset","entries":["Will save result = d20 roll + Wisdom modifier + proficiency bonus + other bonuses + penalties"]},"Sometimes you'll need to know your DC for a given saving throw. The DC for a saving throw is 10 + the total modifier for that saving throw.","Most of the time, when you attempt a saving throw, you don't have to use your actions or your reaction. You don't even need to be able to act to attempt saving throws. However, in some special cases you might have to take an action to attempt a save. For instance, you can try to recover from the sickened condition by spending an action to attempt a Fortitude save.",{"type":"pf2-h4","page":449,"name":"Basic Saving Throws","entries":["Sometimes you will be called on to attempt a basic saving throw. This type of saving throw works just like any other saving throw—the \"basic\" part refers to the effects.","For a basic save, you'll attempt the check and determine whether you critically succeed, succeed, fail, or critically fail like you would any other saving throw. Then one of the following outcomes applies based on your degree of success—no matter what caused the saving throw.",{"type":"successDegree","entries":{"Critical Success":"You take no damage from the spell, hazard, or effect that caused you to attempt the save.","Success":"You take half the listed damage from the effect.","Failure":"You take the full damage listed from the effect.","Critical Failure":"You take double the listed damage from the effect."}}],"source":"CRB"}],"source":"CRB"},{"type":"pf2-brown-box","page":449,"name":"FORTUNE AND MISFORTUNE EFFECTS","entries":["Fortune and misfortune effects can alter how you roll your dice. These abilities might allow you to reroll a failed roll, force you to reroll a successful roll, allow you to roll twice and use the higher result, or force you to roll twice and use the lower result.","You can never have more than one fortune and more than one misfortune effect come into play on a single roll. For instance, if an effect lets you roll twice and use the higher roll, you can't then use Halfling Luck (a fortune effect) to reroll if you fail. If multiple fortune effects would apply, you have to pick which to use. If two misfortune effects apply, the GM decides which is worse and applies it.","If both a fortune effect and a misfortune effect would apply to the same roll, the two cancel each other out, and you roll normally."],"source":"CRB"},{"type":"pf2-h3","page":449,"name":"Skill Checks","entries":["Pathfinder has a variety of skills, from {@skill Athletics} to {@skill Medicine} to {@skill Occultism}. Each grants you a set of related actions that rely on you rolling a skill check. Each skill has a key ability score, based on the scope of the skill in question. For instance, {@skill Athletics} deals with feats of physical prowess, like swimming and jumping, so its key ability score is Strength. {@skill Medicine} deals with the ability to diagnose and treat wounds and ailments, so its key ability score is Wisdom. The key ability score for each skill is listed in Chapter 4: Skills. No matter which skill you're using, you calculate a check for it using the following formula.",{"type":"pf2-inset","entries":["Skill check result = d20 roll + modifier of the skill's key ability score + proficiency bonus + other bonuses + penalties"]},"You're unlikely to be trained in every skill. When using a skill in which you're untrained, your proficiency bonus is +0; otherwise, it equals your level plus 2 for trained, or higher once you become expert or better. The proficiency rank is specific to the skill you're using. Aid from another character or some other beneficial situation may grant you a circumstance bonus. A status bonus might come from a helpful spell or magical effect. Sometimes tools related to the skill grant you an item bonus to your skill checks. Conversely, unfavorable situations might give you a circumstance penalty to your skill check, while harmful spells, magic, or conditions might also impose a status penalty. Using shoddy or makeshift tools might cause you to take an item penalty. Sometimes a skill action can be an attack, and in these cases, the skill check might take a multiple attack penalty, as described on page 446.","When an ability calls for you to use the DC for a specific skill, you can calculate it by adding 10 + your total modifier for that skill."],"source":"CRB"},{"type":"pf2-h3","page":450,"name":"Notating Total Modifiers","entries":["When creating your character and adventuring you'll record the total modifier for various important checks on your character sheet. Since many bonuses and penalties are due to the immediate circumstances, spells, and other temporary magical effects, you typically won't apply them to your notations.","Item bonuses and penalties are often more persistent, so you will often want to record them ahead of time. For instance, if you are using a weapon with a {@item +1 weapon potency} rune, you'll want to add the +1 item bonus to your notation for your attack rolls with that weapon, since you will include that bonus every time you attack with that weapon. But if you have a fine spyglass, you wouldn't add its item bonus to your Perception check notation, since you gain that bonus only if you are using sight—and the spyglass!—to see long distances."],"source":"CRB"}],"data":{"quickref":4},"source":"CRB"}]},{"type":"entries","entries":[{"type":"section","page":503,"name":"Difficulty Classes","alias":["DCs"],"entries":[{"type":"pf2-h1-flavor","page":503,"entries":["{@i As the Game Master, it's up to you to set the difficulty classes (DCs) for checks that don't use a predefined DC. The following sections offer advice on how to set appropriate DCs and tweak them as needed to feel natural for your story. Picking a simple DC and using a level-based DC each work well in certain circumstances, and you can adjust both types of DC using the advice on adjusting difficulty.}"],"source":"CRB"},{"type":"pf2-h2","page":503,"name":"Simple DCs","entries":["Sometimes you need to quickly set a Difficulty Class. The easiest method is to select a simple DC from Table 10–4 by estimating which proficiency rank best matches the task (that rank is usually not required to succeed at the task).","If it's something pretty much anyone would have a decent chance at, use the untrained DC. If it would require a degree of training, use the DC listed for trained, expert, master, or legendary proficiency, as appropriate to the complexity of the task. For example, say a PC was trying to uncover the true history behind a fable. You determine this requires a check to Recall Knowledge, and that only someone with master proficiency in Folktale Lore would know the information, so you'd set the DC at 30—the simple master DC.","Simple DCs work well when you need a DC on the fly and there's no level associated with the task. They're most useful for skill checks. Because there isn't much gradation between the simple DCs, they don't work as well for hazards or combatants, where the PCs' lives are on the line; you're better off using level-based DCs for such challenges.",{"name":"Simple DCs","type":"statblock","tag":"table","source":"CRB","page":503}],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h2","page":503,"name":"Level-Based DCs","entries":["When you're determining a skill DC based on something that has a level, use Table 10–5 to set the DC. Find the level of the subject, and assign the corresponding DC. Since spells use a 1–10 scale, use the Spell Level column for them.","Use these DCs when a PC needs to Identify a Spell or {@action Recall Knowledge} about a creature, attempts to Earn Income by performing a task of a certain level, and so on. You can also use the level-based DCs for obstacles instead of assigning a simple DC. For example, you might determine that a wall in a high-level dungeon was constructed of smooth metal and is hard to climb. You could simply say only someone with master proficiency could climb it, and use the simple DC of 30. Or you might decide that the 15th-level villain who created the dungeon crafted the wall, and use the 15th-level DC of 34. Either approach is reasonable!","Note that PCs who invest in a skill become more likely to succeed at a DC of their level as they increase in level, and the listed DCs eventually become very easy for them.",{"type":"statblock","tag":"table","name":"DCs by Level","source":"CRB"}],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h2","page":503,"name":"Adjusting Difficulty","entries":["You might decide a DC should differ from the baseline, whether to account for PCs' areas of expertise or to represent the rarity of spells or items. A DC adjustment represents an essential difference in the difficulty of a task and applies to anyone attempting a specific check for it.","Adjustments happen most often with tasks whose DCs are based on their level. Adjustments use a scale of –10 to +10, from incredibly easy checks to incredibly hard ones, and are broken into increments of 2, 5, and 10.","You'll often apply the adjustments for uncommon, rare, or unique subjects.",{"type":"statblock","tag":"table","name":"DC Adjustments","source":"CRB"},"The adjustments' names don't translate to how hard a task actually is for a PC or group of PCs, and adjustments aren't meant to balance out or replace PCs' bonuses and penalties. PCs who invest in a skill will become better and better at that skill as they increase in level. For example, even the best 1st-level PC has grim odds against an incredibly hard 1st-level DC, with a huge chance of critical failure, but by 20th level, an optimized character with a modicum of magic or assistance can take down incredibly hard 20th-level DCs over half the time, critically failing only on a 1. At higher levels, many groups will find that the very hard DC is more like standard for them; keep that in mind if you need a check that presents a true challenge to a high level group.","You might use different DCs for a task based on the particular skill or statistic used for the check. Let's say your PCs encounter a magical tome about aberrant creatures. The tome is 4th-level and has the occult trait, so you set the DC of an {@skill Occultism} check to Identify the Magic to 19, based on Table 10–5. As noted in Identify Magic, other magic-related skills can typically be used at a higher DC, so you might decide the check is very hard for a character using {@skill Arcana} and set the DC at 24 for characters using that skill. If a character in your group had Aberration Lore, you might determine that it would be easy or very easy to use that skill and adjust the DC to 17 or 14. These adjustments aren't taking the place of characters' bonuses, modifiers, and penalties—they are due to the applicability of the skills being used.",{"type":"pf2-h3","page":504,"name":"Group Attempts","entries":["The DCs in this chapter give an individual character a strong and increasing chance of success if they have some proficiency. On occasion, though, you'll have a task that only one person in the group needs to succeed at, but that everyone can attempt. The number of dice being rolled means that there's a very high chance at least one of them will succeed. Most of the time, that's perfectly fine, but sometimes you'll want the task to be a challenge, with some uncertainty as to whether the party can succeed. In these cases, make the check very hard, or incredibly hard if you want it to be particularly difficult or at high levels.","At these DCs, most of the party will probably fail, but someone will probably still succeed, likely a character who has heavily invested in the given skill, as is expected for specialized characters."],"source":"CRB"}],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h2","page":504,"name":"Minimum Proficiency","entries":["Sometimes succeeding at a particular task requires a character to have a specific proficiency rank in addition to a success on the check. Locks and traps often require a certain proficiency rank to successfully use the Pick a Lock or Disable a Device actions of {@skill Thievery}. A character whose proficiency rank is lower than what's listed can attempt the check, but they can't succeed. You can apply similar minimum proficiencies to other tasks. You might decide, for example, that a particular arcane theorem requires training in {@skill Arcana} to understand. An untrained barbarian can't succeed at the check, but she can still attempt it if she wants—after all, she needs to have a chance to critically fail and get erroneous information!","For checks that require a minimum proficiency, keep the following guidelines in mind. A 2nd-level or lower task should almost never require expert proficiency, a 6th-level or lower task should almost never require master proficiency, and a 14th-level or lower task should almost never require legendary proficiency. If they did, no character of the appropriate level could succeed."],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h2","page":504,"name":"Specific Actions","entries":["Several parts of this book, most notably Chapter 4: Skills, state that you as the GM set the DCs for certain checks or determine other parameters. Here are guidelines for the most common tasks. Remember that all of these are guidelines, and you can adjust them as necessary to suit the situation.",{"type":"pf2-h3","page":504,"name":"Craft","entries":["When a character Crafts an item, use the item's level to determine the DC, applying the adjustments from Table 10–6 for the item's rarity if it's not common. You might also apply the easy DC adjustment for an item the crafter has made before. Repairing an item usually uses the DC of the item's level with no adjustments, though you might adjust the DC to be more difficult for an item of a higher level than the character can Craft."],"source":"CRB"},{"type":"pf2-h3","page":504,"name":"Earn Income","entries":["You set the task level when someone tries to Earn Income.","The highest-level task available is usually the same as the level of the settlement where the character is located. If you don't know the settlement's level, it's usually 0–1 for a village, 2–4 for a town, or 5–7 for a city. A PC might need to travel to a metropolis or capital to find tasks of levels 8-10, and to the largest cities in the world or another plane to routinely find tasks beyond that. Some locations might have higher-level tasks available based on the nature of the settlement. A major port might have higher-level tasks for Sailing Lore, a city with a vibrant arts scene might have higher-level tasks for {@skill Performance}, and so on. If someone is trying to use a particularly obscure skill, they might have trouble finding tasks of an ideal level, or any at all—no one in most settlements is clamoring for the expertise of someone with Troll Lore.","Once the PC has decided on a particular level of task from those available, use the DC for that level from Table 10–5. You might adjust the DC to be more difficult if there's inclement weather during an outdoor job, a rowdy audience for a performance, or the like."],"source":"CRB"},{"type":"pf2-h3","page":505,"name":"Gather Information","entries":["To set the DC to Gather Information, use a simple DC representing the availability of information about the subject. Adjust the DC upward if the PC Gathering Information seeks in-depth information. For example, if a character wants to Gather Information about a visiting caravan, you might decide that a common person wouldn't know much about it, but any merchant or guard would, so learning basic facts uses the simple DC for trained proficiency. A caravan leader's name is superficial, so discovering it might be DC 15 (the simple trained DC in Table 10–4). Learning the identity of the leader's employers, however, might be DC 20 if the employers are more obscure."],"source":"CRB"},{"type":"pf2-h3","page":505,"name":"Identify Magic or Learn a Spell","entries":["The DC to {@action Identify Magic} or {@action Learn a Spell} is usually the DC listed in Table 10–5 for the spell or item's level, adjusted for its rarity. A very strange item or phenomenon usually uses a higher DC adjustment. For a cursed item or certain illusory items, use an incredibly hard DC to increase the chance of misidentification."],"source":"CRB"},{"type":"pf2-h3","page":505,"name":"Recall Knowledge","entries":["On most topics, you can use simple DCs for checks to {@action Recall Knowledge}. For a check about a specific creature, trap, or other subject with a level, use a {@quickref level-based DCs||4|level-based dcs} (adjusting for rarity as needed). You might adjust the difficulty down, maybe even drastically, if the subject is especially notorious or famed. Knowing simple tales about an infamous dragon's exploits, for example, might be incredibly easy for the dragon's level, or even just a simple trained DC.",{"type":"pf2-h4","page":505,"name":"Alternative Skills","entries":["As noted in the action's description, a character might attempt to {@action Recall Knowledge} using a different skill than the ones listed as the default options. If the skill is highly applicable, like using {@skill Medicine} to identify a medicinal tonic, you probably don't need to adjust the DC. If its relevance is a stretch, adjust the DC upward as described in {@quickref Adjusting Difficulty||4|Adjusting Difficulty}."],"source":"CRB"},{"type":"pf2-h4","page":505,"name":"Additional Knowledge","entries":["Sometimes a character might want to follow up on a check to {@action Recall Knowledge}, rolling another check to discover more information. After a success, further uses of {@action Recall Knowledge} can yield more information, but you should adjust the difficulty to be higher for each attempt. Once a character has attempted an incredibly hard check or failed a check, further attempts are fruitless—the character has recalled everything they know about the subject."],"source":"CRB"},{"type":"pf2-h4","page":505,"name":"Creature Identification","entries":["A character who successfully identifies a creature learns one of its best-known attributes—such as a troll's regeneration (and the fact that it can be stopped by acid or fire) or a manticore's tail spikes. On a critical success, the character also learns something subtler, like a demon's weakness or the trigger for one of the creature's reactions.","The skill used to identify a creature usually depends on that creature's trait, as shown on Table 10–7, but you have leeway on which skills apply. For instance, hags are humanoids but have a strong connection to occult spells and live outside society, so you might allow a character to use {@skill Occultism} to identify them without any DC adjustment, while Society is harder. Lore skills can also be used to identify their specific creature. Using the applicable Lore usually has an easy or very easy DC (before adjusting for rarity).",{"type":"statblock","tag":"table","name":"Creature Identification Skills","source":"CRB"}],"source":"CRB"}],"source":"CRB"},{"type":"pf2-brown-box","page":506,"name":"DETERMINING THE SCOPE OF LORE","entries":["{@skill Lore} skills are one of the most specialized aspects of Pathfinder, but they require GM oversight, particularly in determining which {@skill Lore} subcategories are acceptable for characters to select. A {@skill Lore} subcategory represents a narrow focus, and thus it shouldn't replace all or even most of an entire skill, nor should it convey vast swaths of information. For example, a single {@skill Lore} subcategory doesn't cover all religions—that's covered by the {@skill Religion} skill—but a character could have a {@skill Lore} subcategory that covers a single deity. One {@skill Lore} subcategory won't cover an entire country or all of history, but it could cover a city, an ancient civilization, or one aspect of a modern country, like Taldan History {@skill Lore}. A single {@skill Lore} subcategory couldn't cover the entire multiverse, but it could cover a whole plane other than the Material Plane."],"source":"CRB"},{"type":"pf2-h3","page":506,"name":"Sense Direction","entries":["Pick the most appropriate simple DC when someone uses {@skill Survival} to Sense Direction. This is usually the trained DC in normal wilderness, expert in deep forest or underground, master in featureless or tricky locations, or legendary in weird or surreal environments on other planes."],"source":"CRB"},{"type":"pf2-h3","page":506,"name":"Social Skills","entries":["When a character uses {@skill Deception}, {@skill Diplomacy}, {@skill Intimidation}, or {@skill Performance} to influence or impress someone whose level or Will DC you don't know, estimate the level of the creature and use that DC. A commoner is usually level 0 or 1. Don't worry about being exact. It often makes sense to adjust the DC based on the target's attitude for {@skill Deception}, {@skill Diplomacy}, or {@skill Performance}, making the DC easy for a friendly creature, very easy for a helpful one, hard for an unfriendly one, or very hard for a hostile one. You might adjust the DC further or differently based on the PC's goal; for instance, the DC to Request something an indifferent NPC is fundamentally opposed to might be incredibly hard or impossible, and it might be easy to convince an unfriendly creature to do something it already wants to do."],"source":"CRB"},{"type":"pf2-h3","page":506,"name":"Subsist","entries":["A simple DC is usually sufficient for the Subsist action, with a trained DC for a typical situation. Use the disposition of the environment or city as a guide; an environment with scarce resources or a city with little tolerance for transience might require an expert or higher DC."],"source":"CRB"},{"type":"pf2-h3","page":506,"name":"Track","entries":["Often when a PC uses {@skill Survival} to Track, you can pick a simple DC and adjust it based on the circumstances. For example, an army is usually easy to track, so you could use the untrained DC of 10. If the army marched through mud, you could even adjust this down to DC 5. On the other hand, if the party pursues a cunning survivalist using Cover Tracks, you might use their {@skill Survival} DC as the DC to Track."],"source":"CRB"},{"type":"pf2-h3","page":506,"name":"Train an Animal","entries":["Train Animal (page 268) allows PCs to teach animals tricks. Use the level of the animal as the baseline; you can adjust the DC up if the trick is especially difficult, or down if the animal is especially domesticated, like a dog."],"source":"CRB"}],"source":"CRB"}],"data":{"quickref":5},"source":"CRB"},{"type":"section","source":"GMG","page":120,"name":"Drugs","entries":["Drugs offer short-term benefits with harmful side effects and long-term consequences. These short-term benefits, such as euphoria, draw many to drugs, but addiction keeps users hooked long after their first dose. A character can voluntarily fail their initial save against a drug, but for each dose they consume, they must attempt a saving throw against addiction, a disease that represents cravings and withdrawal. Addiction is unique to each drug, so a character can be affected by multiple instances of addiction at once.","Certain drugs alter how addiction works for that drug, adding the {@trait virulent} trait to the addiction, limiting the maximum stage a character can reach, or adding additional stages beyond those listed in the base affliction.",{"type":"data","tag":"disease","data":{"source":"GMG","page":120,"name":"Addiction","level":", level varies","type":"disease","entries":["Track the maximum stage you reach with each drug's addiction. This maximum stage is separate from your current addiction stage for the drug. The maximum stage can't be reduced, even if you fully remove the disease. When you take the drug, two things happen: you attempt a saving throw against addiction, and you suppress the effects of addiction for 1 day. Failing a save against addiction caused by taking the drug causes you to go to 1 stage higher than the maximum stage you had previously reached (2 stages higher on a critical failure). If you're currently suffering from addiction when you attempt a save from taking the drug, you can't improve your stage; if you succeed at the save, the stage remains the same as it was.","When you attempt your save against addiction each week, the stage you are currently at can't get worse—it can only stay the same or improve. The conditions from addiction can't be removed while you are affected by the addiction, and suppressing addiction by taking the drug only avoids the effects—it doesn't remove the disease.",{"type":"affliction","savingThrow":"Fortitude (DC equals that of the drug)","onset":"1 day","stages":[{"stage":1,"entry":"{@condition fatigued}","duration":"1 week"},{"stage":2,"entry":"{@condition fatigued} and {@condition sickened||sickened 1}","duration":"1 week"},{"stage":3,"entry":"{@condition fatigued}, {@condition drained||drained 1} and {@condition sickened||sickened 1}","duration":"1 week"},{"stage":4,"entry":"{@condition fatigued}, {@condition drained||drained 2}, {@condition sickened||sickened 2} and {@condition stupefied||stupefied 2}","duration":"1 week"}]}]}},{"type":"pf2-brown-box","source":"GMG","page":120,"name":"DRUGS IN YOUR GAME","entries":["Drugs are socially complex, and including them in your game has the potential to make some of your players uncomfortable—particularly players who have struggled with substance abuse themselves or seen friends and family members go through that struggle. As with any potentially difficult subject matter, you should discuss the role drugs play in your game with your players and ensure that all the players at the table are comfortable with the material; if they aren't, avoid the topic.","If you do include drugs in your game, consider the role they'll play. In some campaigns, drugs might simply be an element of flavor and a tool characters use to reach their goals; in others, the side effects and risk of addiction might be a terrible price to pay. The rules assume something of a middle path, where drugs are addictive substances that may provide a short-term benefit but have consequences. To make drugs more accessible in your game, remove some of the more severe stages of addiction. To make them more dangerous, add the {@trait virulent} trait to the addiction affliction, add more stages with increasingly severe effects, or increase the DC of the save against the addiction by 1 for every use of the drug, decreasing back to normal over time as they stop using the drug."]}],"data":{"quickref":5}},{"type":"section","page":512,"name":"Environment","entries":[{"type":"pf2-h1-flavor","page":512,"entries":["{@i Primarily used during exploration, environment rules bring the locales your party travels through to life. You'll often be able to use common sense to adjudicate how environments work, but you'll need special rules for environments that really stand out.}"],"source":"CRB"},"Each of the environments presented in this section uses the terrain rules (which are summarized on page 514 and appear in full beginning on page 475) in different ways, so be sure to familiarize yourself with those rules before reading this section. Some environments refer to the rules for climate (page 517) and natural disasters (beginning on page 517). Many places have the traits of multiple environments; a snow-covered mountain might use both the arctic and mountain environments, for example. For environmental features with effects based on how tall or deep they are, those effects vary further based on a creature's size. For instance, a shallow bog for a Medium creature might be a deep bog for smaller creatures, and a deep bog for a Medium creature could be only a shallow bog for a larger creature (and so insignificant for a truly massive creature that it isn't even {@quickref difficult terrain||3|terrain}).","Table 10–12 lists the features of various environments alphabetically for quick reference. The Proficiency DC Band entry indicates a range of appropriate simple DCs for that environmental feature, while also providing a rough estimate of the danger or complexity of the feature.",{"type":"statblock","tag":"table","name":"Enviromental Features","source":"CRB"},{"type":"pf2-h2","page":512,"name":"Environmental Damage","entries":["Some environmental features or natural disasters deal damage. Because the amount of damage can vary based on the specific circumstances, the rules for specific environments and natural disasters use damage categories to describe the damage, rather than exact numbers.","Use Table 10–11 below to determine damage from an environment or natural disaster. When deciding the exact damage amount, use your best judgment based on how extreme you deem the danger to be.",{"type":"statblock","tag":"table","name":"Enviromental Damage","source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":512,"name":"Aquatic","entries":["Aquatic environments are among the most challenging for PCs short of other worlds and unusual planes. PCs in an aquatic environment need a way to breathe (typically a {@spell water breathing} spell) and must usually {@action Swim} to move, though a PC who sinks to the bottom can walk awkwardly, using the rules for {@quickref greater difficult terrain||3|terrain}.","Characters in aquatic environments make frequent use of the {@quickref aquatic combat||3|aquatic combat} and {@quickref drowning and suffocation||3|drowning and suffocating} rules.",{"type":"pf2-h3","page":512,"name":"Currents and Flowing Water","entries":["Ocean currents, flowing rivers, and similar moving water are {@quickref difficult terrain||3|terrain} or {@quickref greater difficult terrain||3|terrain} (depending on the speed of the water) for a creature Swimming against the current. At the end of a creature's turn, it moves a certain distance depending on the current's speed. For instance, a 10-foot current moves a creature 10 feet in the current's direction at the end of that creature's turn."],"source":"CRB"},{"type":"pf2-h3","page":512,"name":"Visibility","entries":["It's much harder to see things at a distance underwater than it is on land, and it's particularly difficult if the water is murky or full of particles. In pure water, the maximum visual range is roughly 240 feet to see a small object, and in murky water, visibility can be reduced to only 10 feet or even less."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":512,"name":"Arctic","entries":["The main challenge in an arctic environment is the low temperature, but arctic environments also contain ice and snow. The disasters that most often strike in arctic environments are avalanches, blizzards, and floods.",{"type":"pf2-h3","page":512,"name":"Ice","entries":["Icy ground is both uneven ground and {@quickref difficult terrain||3|terrain}, as characters slip and slide due to poor traction."],"source":"CRB"},{"type":"pf2-h3","page":512,"name":"Snow","entries":["Depending on the depth of snow and its composition, most snowy ground is either {@quickref difficult terrain||3|terrain} or {@quickref greater difficult terrain||3|terrain}. In denser snow, characters can attempt to walk along the surface without breaking through, but some patches might be loose or soft enough that they're uneven ground."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":512,"name":"Desert","entries":["Desert encompasses sandy and rocky deserts as well as badlands. Though tundra is technically a desert, it's classified as arctic, as the climate is the primary challenge in such areas. Sandy deserts often have quicksand hazards (page 526) and sandstorms.",{"type":"pf2-h3","page":513,"name":"Rubble","entries":["Rocky deserts are strewn with rubble, which is {@quickref difficult terrain||3|terrain}. Rubble dense enough to be walked over rather than navigated through is uneven ground."],"source":"CRB"},{"type":"pf2-h3","page":513,"name":"Sand","entries":["Packed sand doesn't usually significantly impede a character's movement, but loose sand is either {@quickref difficult terrain||3|terrain} (if it's shallow) or uneven ground (if it's deep).","The wind in a desert often shifts sand into dunes, hills of loose sand with uneven ground facing the wind and steeper inclines away from the wind."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":513,"name":"Forest","entries":["These diverse environments include jungles and other wooded areas. They are sometimes struck by wildfires.",{"type":"pf2-h3","page":513,"name":"Canopies","entries":["Particularly dense forests, such as rain forests, have a canopy level above the ground. A creature trying to reach the canopy or travel along it must Climb. Swinging on vines and branches usually requires an {@skill Acrobatics} or {@skill Athletics} check. A canopy provides cover, and a thicker one can prevent creatures in the canopy from seeing those on the ground, and vice versa."],"source":"CRB"},{"type":"pf2-h3","page":513,"name":"Trees","entries":["While trees are omnipresent in a forest, they typically don't provide cover unless a character uses the Take Cover action. Only larger trees that take up an entire 5-foot square on the map (or more) are big enough to provide cover automatically."],"source":"CRB"},{"type":"pf2-h3","page":513,"name":"Undergrowth","entries":["Light undergrowth is {@quickref difficult terrain||3|terrain} that allows a character to Take Cover. Heavy undergrowth is {@quickref greater difficult terrain||3|terrain} that automatically provides cover. Some sorts of undergrowth, such as thorns, might also be hazardous terrain, and areas with plenty of twisting roots might be uneven ground."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":513,"name":"Mountain","entries":["Mountain environments also include hills, which share many aspects of mountains, though not their more extreme features. The most common disasters here are avalanches.",{"type":"pf2-h3","page":513,"name":"Chasms","entries":["Chasms are natural pits, typically at least 20 feet long and clearly visible (barring mundane or magical efforts to conceal them). The main danger posed by a chasm is that characters must Long Jump to get across. Alternatively, characters can take the safer but slower route of Climbing down the near side of the chasm and then ascending the far side to get across."],"source":"CRB"},{"type":"pf2-h3","page":513,"name":"Cliffs","entries":["Cliffs and rock walls require creatures to {@action Climb} to ascend or descend. Without extensive safety precautions, a critical failure can result in significant falling damage."],"source":"CRB"},{"type":"pf2-h3","page":513,"name":"Rubble","entries":["Mountains often have extremely rocky areas or shifting, gravelly scree that makes for {@quickref difficult terrain||3|terrain}. Especially deep or pervasive rubble is uneven ground."],"source":"CRB"},{"type":"pf2-h3","page":514,"name":"Slopes","entries":["Slopes vary from the gentle rises of normal terrain to {@quickref difficult terrain||3|terrain} and inclines, depending on the angle of elevation. Moving down a slope is typically normal terrain, but characters might need to Climb up particularly steep slopes."],"source":"CRB"},{"type":"pf2-h3","page":514,"name":"Undergrowth","entries":["Light undergrowth is common in mountains. It is {@quickref difficult terrain||3|terrain} and allows a character to Take Cover."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":514,"name":"Plains","entries":["The plains environment encompasses grasslands such as savannas and farmland. The most common disasters in plains are tornadoes and wildfires.",{"type":"pf2-h3","page":514,"name":"Hedges","entries":["Hedges are planted rows of bushes, shrubs, and trees.","Their iconic appearance in adventures consists of tall hedges grown into mazes. A typical hedge is 2 to 5 feet tall, takes up a row of squares, and provides cover. A character trying to push through a hedge faces {@quickref greater difficult terrain||3|terrain}; it's sometimes faster to Climb over."],"source":"CRB"},{"type":"pf2-h3","page":514,"name":"Undergrowth","entries":["Light undergrowth is {@quickref difficult terrain||3|terrain} that allows a character to Take Cover. Heavy undergrowth is {@quickref greater difficult terrain||3|terrain} that provides cover automatically.","Undergrowth in plains is usually light with a few scattered areas of heavy undergrowth, but fields of certain crops, like corn, are entirely heavy undergrowth."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":514,"name":"Swamp","entries":["Wetlands are the most common kind of swamp, but this category also includes drier marshes such as moors.","Swamps often contain quicksand hazards (page 526).","Despite their soggy nature, swamps aren't very likely to experience heavy flooding, since they act as natural sponges and absorb a great deal of water before they flood.",{"type":"pf2-h3","page":514,"name":"Bogs","entries":["Also called mires, bogs are watery areas that accumulate peat, are covered by shrubs and moss, and sometimes feature floating islands of vegetation covering deeper pools.","Shallow bogs are {@quickref difficult terrain||3|terrain} for a Medium creature, and deep bogs are {@quickref greater difficult terrain||3|terrain}. If a bog is deep enough that a creature can't reach the bottom, the creature has to Swim. Bogs are also acidic, so particularly extreme or magical bogs can be hazardous terrain."],"source":"CRB"},{"type":"pf2-h3","page":514,"name":"Undergrowth","entries":["Light undergrowth is {@quickref difficult terrain||3|terrain} that allows a character to Take Cover, while heavy undergrowth is {@quickref greater difficult terrain||3|terrain} that provides cover automatically.","Some sorts of undergrowth, such as thorns, are also hazardous terrain, and areas with plenty of twisting roots are uneven ground."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-brown-box","page":514,"name":"TERRAIN RULES","entries":["Environments make frequent use of the rules for {@quickref difficult terrain||3|terrain}, {@quickref greater difficult terrain||3|terrain}, and hazardous terrain, so those rules are summarized here.","{@b Difficult terrain} is any terrain that impedes movement, ranging from particularly rough or unstable surfaces to thick ground cover and countless other impediments. Moving into a square of {@quickref difficult terrain||3|terrain} (or moving 5 feet into or within an area of {@quickref difficult terrain||3|terrain}, if you're not using a grid) costs an extra 5 feet of movement. Moving into a square of {@b greater difficult terrain} instead costs 10 additional feet of movement. This additional cost is not increased when moving diagonally. Creatures can't normally Step into {@quickref difficult terrain||3|terrain}.","Any movement creatures make while jumping ignores terrain that the creature is jumping over. Some abilities (such as flight or being incorporeal) allow creatures to avoid the movement reduction from some types of {@quickref difficult terrain||3|terrain}. Certain other abilities let creatures ignore {@quickref difficult terrain||3|terrain} while traveling on foot; such an ability also allows a creature to move through {@quickref greater difficult terrain||3|terrain} using the movement cost for {@quickref difficult terrain||3|terrain}, but unless the ability specifies otherwise, these abilities don't let creatures ignore {@quickref greater difficult terrain||3|terrain}.","{@b Hazardous terrain} damages creatures whenever they move through it. For instance, an acid pool, a pit of burning embers, and a spike-filled passageway all constitute hazardous terrain. The amount and type of damage depend on the specific hazardous terrain."],"source":"CRB"},{"type":"pf2-h2","page":514,"name":"Urban","entries":["Urban environments include open city spaces as well as buildings. The building information in this section also applies to ruins and constructed dungeons. Depending on their construction and location, cities might be vulnerable to many sorts of disasters, especially fires and floods.",{"type":"pf2-h3","page":514,"name":"Crowds","entries":["Crowded thoroughfares and similar areas are {@quickref difficult terrain||3|terrain}, or {@quickref greater difficult terrain||3|terrain} if an area is truly packed with people. You might allow a character to get a crowd to part using {@skill Diplomacy}, {@skill Intimidation}, or {@skill Performance}.","A crowd exposed to an obvious danger, like a fire or a rampaging monster, attempts to move away from the danger as quickly as possible, but it is slowed by its own mass. A fleeing crowd typically moves at the Speed of an average member each round (usually 25 feet), potentially trampling or leaving behind slower-moving members of the crowd."],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h3","page":515,"name":"Doors","entries":["Opening an unlocked door requires an Interact action (or more than one for a particularly complicated or large door). Stuck doors must be Forced Open, and locked ones require a character to Pick the Lock or Force them Open."],"source":"CRB"},{"type":"pf2-h3","page":515,"name":"Floors","entries":["Wooden floors are easy to walk on, as are flagstone floors made of fitted stones. However, floors of worn flagstone often contain areas of uneven ground."],"source":"CRB"},{"type":"pf2-h3","page":515,"name":"Gates","entries":["Walled settlements often have gates that the city can close for defense or open to allow travel. A typical gate consists of one portcullis at each end of a gatehouse, with murder holes in between or other protected spots from which guards can attack foes."],"source":"CRB"},{"type":"pf2-h3","page":515,"name":"Guards","entries":["Most settlements of significant size have guards working in shifts to protect the settlement at all hours, patrolling the streets and guarding various posts. The size of this force varies from one guard for every 1,000 residents to a force 10 times this number."],"source":"CRB"},{"type":"pf2-h3","page":515,"name":"Portcullises","entries":["A portcullis is a wooden or iron grate that descends to seal off a gate or corridor. Most are raised on ropes or chains operated by a winch, and they have locking mechanisms that keep them from being lifted easily. The rules on lifting a portcullis or bending its bars appear in the sidebar on this page. If a portcullis falls on a creature, use a slamming door trap (page 523)."],"source":"CRB"},{"type":"pf2-brown-box","page":515,"name":"DOORS, GATES, AND WALLS","entries":["Some of the most common obstacles that characters face in urban areas and dungeons are doors, gates, and walls.",{"type":"pf2-title","name":"Climbing"},"The table below gives the typical DC for {@skill Athletics} checks to Climb a structure, which is usually a simple DC. You might adjust the difficulty based on the specifics of the structure and environment.",{"type":"pf2-title","name":"Demolishing"},"A character might want to smash their way through a door, a window, or certain walls. The Hardness, Hit Point, and Broken Threshold values provided in the table below are based on the material the structure is typically made out of, so a portcullis made of iron, for example, has a higher Hardness than one of wood. For more on damaging objects, see page 272.","Strong walls, such as well-maintained masonry or hewn stone, can't be broken without dedicated work and proper tools. Getting through such walls requires downtime.",{"type":"table","rowLabelIdx":[0,5,11],"colStyles":["text-center","text-center","text-center"],"rows":[["Door","Climb DC","Hardness, HP (BT)"],["Wood","20","10, 40 (20)"],["Stone","30","14, 56 (28)"],["Reinforced Wood","15","15, 60 (30)"],["Iron","30","18, 72 (36)"],["Wall","Climb DC","Hardness, HP (BT)"],["Crumbling masonry","15","10, 40 (20)"],["Wooden slats","15","10, 40 (20)"],["Masonry","20","14, 56 (28)"],["Hewn stone","30","14, 56 (28)"],["Iron","40","18, 72 (36)"],["Portcullis","Climb DC","Hardness, HP (BT)"],["Wood","10","10, 40 (20)"],["Iron","10","18, 72 (36)"]]},{"type":"pf2-title","name":"Forcing Open"},"Structures that can be opened—such as doors, gates, and windows—can be Forced Open using {@skill Athletics}. This is usually necessary only if they're locked or stuck. The DC to Force Open a structure uses the {@skill Thievery} DC of its lock but adjusts it to be very hard (increasing the DC by 5).","If there's no lock, use the following table; when lifting a portcullis, use the lock DC or the DC from the table, whichever is higher."],"source":"CRB"},{"type":"pf2-h3","page":515,"name":"Rooftops","entries":["Rooftops make for memorable ambushes, chase scenes, infiltrations, and running fights. Flat roofs are easy to move across, but they're rare in any settlement that receives significant snowfall, since heavy buildups of snow can collapse a roof. Angled roofs are uneven ground, or inclines if they're especially steep. The peak of an angled roof is a narrow surface.","Hurdling from roof to roof often requires a Long Jump, though some buildings are close enough to Leap between.","A High Jump might be necessary to reach a higher roof, or a Leap followed by Grabbing an Edge and Climbing up."],"source":"CRB"},{"type":"pf2-h3","page":515,"name":"Sewers","entries":["Sewers are generally 10 feet or more below street level and are equipped with ladders or other means to ascend and descend. Raised paths along the walls allow sewer workers access, while channels in the center carry the waste itself. Less sophisticated sewers, or sections those workers don't usually access, might require wading through diseaseridden waste. Sewers can be accessed through sewer grates, which usually require 2 or more Interact actions to open.",{"type":"pf2-h4","page":516,"name":"Sewer Gas","entries":["Sewer gas often contains pockets of highly flammable gas. A pocket of sewer gas exposed to a source of flame explodes, dealing moderate environmental fire damage to creatures in the area."],"source":"CRB"}],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":516,"name":"Stairs","entries":["Stairs are {@quickref difficult terrain||3|terrain} for characters moving up them, and shoddy stairs might also be uneven ground. Some temples and giant-built structures have enormous stairs that are {@quickref greater difficult terrain||3|terrain} both up and down, or might require Climbing every step."],"source":"CRB"},{"type":"pf2-h3","page":516,"name":"Streets","entries":["Most settlements have narrow and twisting streets that were largely established organically as the settlement grew. These roads are rarely more than 20 feet wide, with alleys as narrow as 5 feet. Streets are generally paved with cobblestones. If the cobblestones are in poor repair, they could be {@quickref difficult terrain||3|terrain} or uneven ground.","Particularly lawful or well-planned cities have major thoroughfares that allow wagons and merchants to reach marketplaces and other important areas in town. These need to be at least 25 feet wide to accommodate wagons moving in both directions, and they often have narrow sidewalks that allow pedestrians to avoid wagon traffic."],"source":"CRB"},{"type":"pf2-h3","page":516,"name":"Walls","entries":["Well-built structures have exterior walls of brick or stonemasonry. Smaller, lower-quality, or temporary structures might have wooden walls. Interior walls tend to be less sturdy; they could be made of wooden planks, or even simply of thick, opaque paper held in a wooden frame. An underground structure might have thick walls carved out of solid rock to prevent the weight of the ground above from collapsing the structure. Rules for climbing and breaking walls are in the sidebar on page 515."],"source":"CRB"},{"type":"pf2-h2","page":516,"name":"Underground","entries":["Underground environments consist of caves and natural underground areas. Artificial dungeons and ruins combine underground features with urban features like stairs and walls. Deep underground vaults have some of the same terrain features as mountains, such as chasms and cliffs.","The most common disasters underground are collapses.",{"type":"pf2-h3","page":516,"name":"Floors","entries":["Natural underground environments rarely have flat floors, instead featuring abrupt changes in elevation that result in {@quickref difficult terrain||3|terrain}, uneven ground, and inclines."],"source":"CRB"},{"type":"pf2-h3","page":516,"name":"Ledges","entries":["Ledges are narrow surfaces that overlook a lower area or provide the only means to move along the edge of a chasm. Moving across a narrow ledge requires using {@skill Acrobatics} to Balance."],"source":"CRB"},{"type":"pf2-h3","page":516,"name":"Rubble","entries":["Caverns can be covered in rubble, which is {@quickref difficult terrain||3|terrain}. Deep or pervasive rubble is also uneven ground."],"source":"CRB"},{"type":"pf2-h3","page":516,"name":"Stalagmites and Stalactites","entries":["Stalagmites are tapering columns that rise from the floor of a cave. Areas filled with stalagmites are {@quickref greater difficult terrain||3|terrain}, and especially large stalagmites have to be sidestepped or Climbed. Stalagmites can be sharp enough they can be used as hazardous terrain in some circumstances, as can stalactites (icicle-shaped formations that hang from the roof of a cave) if they're knocked loose from a ceiling or overhang."],"source":"CRB"},{"type":"pf2-h3","page":517,"name":"Walls","entries":["Natural cave walls are uneven, with nooks, crannies, and ledges. Since most caves are formed by water, cave walls are often damp, making them even more difficult to Climb."],"source":"CRB"},{"type":"pf2-brown-box","page":517,"name":"DUNGEONS","entries":["Dungeon environments, which include both ruins and contemporary buildings constructed in the wilderness, are a fairly common venue for adventures. As an environment, they combine urban features like doors and buildings (page 515) with features from an underground environment, and occasionally components from other environments. While underground dungeons are particularly common, you might also consider setting your adventure in a ruin reclaimed by the forest, with giant trees spreading their roots through the walls, or a ruin deep in a swamp, with bogs covering access to some of the ruin's hidden secrets."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":517,"name":"Climate","entries":["Weather is more than just set dressing to establish mood—it has mechanical effects you can combine with environmental components to create a more memorable encounter. Weather can impose circumstance penalties on certain checks, from –1 to –4 based on severity.",{"type":"pf2-h3","page":517,"name":"Fog","entries":["Fog imposes a circumstance penalty to visual {@skill Perception} checks, depending on the thickness; it causes creatures viewed through significant amounts of fog to be concealed; and it cuts off all visibility at half a mile or less—possibly much less. Conditions limiting visibility to about a mile are called mist, and those that do so to about 3 miles are called haze."],"source":"CRB"},{"type":"pf2-h3","page":517,"name":"Precipitation","entries":["Precipitation includes rain as well as colder snow, sleet, and hail. Wet precipitation douses flames, and frozen precipitation can create areas of snow or ice on the ground. Drizzle or light snowfall has little mechanical effect beyond limited visibility.",{"type":"pf2-h4","page":517,"name":"Visibility","entries":["Most forms of precipitation impose circumstance penalties on visual {@skill Perception} checks. Hail often is sparser but loud, instead penalizing auditory {@skill Perception} checks.","Especially heavy precipitation, such as a downpour of rain or heavy snow, might make creatures concealed if they're far away."],"source":"CRB"},{"type":"pf2-h4","page":517,"name":"Fatigue","entries":["Precipitation causes discomfort and fatigue. Anything heavier than drizzle or light snowfall reduces the time it takes for characters to become fatigued from overland travel to only 4 hours. Heavy precipitation can be dangerous in cold environments when characters go without protection. Soaked characters treat the temperature as one step colder (mild to severe, severe to extreme; see Temperature below)."],"source":"CRB"},{"type":"pf2-h4","page":517,"name":"Thunderstorms","entries":["High winds and heavy precipitation accompany many thunderstorms. There's also a very small chance that a character might be struck by lightning during a storm. A lightning strike usually deals moderate electricity damage, or major electricity damage in a severe thunderstorm."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":517,"name":"Temperature","entries":["Often, temperature doesn't impose enough of a mechanical effect to worry about beyond describing the clothing the characters need to wear to be comfortable.","Particularly hot and cold weather can make creatures fatigued more quickly during overland travel and can cause damage if harsh enough, as shown in Table 10–13 on page 518.","Appropriate cold-weather gear (such as the winter clothing) can negate the damage from severe cold or reduce the damage from extreme cold to that of particularly severe cold.",{"type":"statblock","tag":"table","name":"Temperature Effects","source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":517,"name":"Wind","entries":["Wind imposes a circumstance penalty on auditory {@skill Perception} checks depending on its strength. It also interferes with physical ranged attacks such as arrows, imposing a circumstance penalty to attack rolls involving such weapons, and potentially making attacks with them impossible in powerful windstorms. Wind snuffs out handheld flames; lanterns protect their flame from the wind, but particularly powerful winds can extinguish these as well.",{"type":"pf2-h4","page":517,"name":"Moving in Wind","entries":["Wind is difficult or {@quickref greater difficult terrain||3|terrain} when Flying.","Moving in wind of sufficient strength requires a Maneuver in Flight action, and fliers are blown away on a critical failure or if they don't succeed at a minimum of one such check each round.","Even on the ground, particularly strong winds might require a creature to succeed at an {@skill Athletics} check to move, knocking the creature back and prone on a critical failure. On such checks, Small creatures typically take a –1 circumstance penalty, and Tiny creatures typically take a –2 penalty."],"source":"CRB"}],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":518,"name":"Natural Disasters","entries":["Climate and environmental features can be a hindrance or long-term threat, but natural disasters represent acute danger, especially to those directly exposed to their fury.","The damage in the following sections uses the categories in {@table Environmental Damage||Table 10–11: Environmental Damage}.",{"type":"pf2-h3","page":518,"name":"Avalanches","entries":["Though the term avalanche specifically refers to a cascading flow of ice and snow down a mountain's slope, the same rules work for landslides, mudslides, and other similar disasters. Avalanches of wet snow usually travel up to 200 feet per round, though powdery snow can travel up to 10 times faster. Rockslides and mudslides are slower, sometimes even slow enough that a character might be able to outrun them.","An avalanche deals major or even massive bludgeoning damage to creatures and objects in its path. These victims are also buried under a significant mass. Creatures caught in an avalanche's path can attempt a Reflex save; if they succeed, they take only half the bludgeoning damage, and if they critically succeed, they also avoid being buried.",{"type":"pf2-h4","page":518,"name":"Burial","entries":["Buried creatures take minor bludgeoning damage each minute, and they potentially take minor cold damage if buried under an avalanche of snow. At the GM's discretion, creatures without a sufficient air pocket could also risk suffocation (page 478). A buried creature is restrained and usually can't free itself.","Allies or bystanders can attempt to dig out a buried creature. Each creature digging clears roughly a 5-footby- 5-foot square every 4 minutes with a successful {@skill Athletics} check (or every 2 minutes on a critical success).","Using shovels or other proper tools halves the time."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":518,"name":"Blizzards","entries":["Blizzards combine cold weather, heavy snow, and strong winds. They don't pose a single direct threat as other disasters do; instead, the combination of these factors all at once poses a substantial impediment to characters."],"source":"CRB"},{"type":"pf2-h3","page":518,"name":"Collapses","entries":["Collapses and cave-ins occur when caverns or buildings fall, dumping tons of rock or other material on those caught below or inside them. Creatures under the collapse take major or massive bludgeoning damage and become buried, just as with an avalanche. Fortunately, collapses don't spread unless they weaken the overall integrity of the area and lead to further collapses."],"source":"CRB"},{"type":"pf2-h3","page":518,"name":"Earthquakes","entries":["Earthquakes often cause other natural disasters in the form of avalanches, collapses, floods, and tsunamis, but they also present unique threats such as fissures, soil liquefaction, and tremors.",{"type":"pf2-h4","page":518,"name":"Fissures","entries":["Fissures and other ground ruptures can destabilize structures, but more directly they lead to creatures taking bludgeoning damage from falling into a fissure."],"source":"CRB"},{"type":"pf2-h4","page":518,"name":"Soil Liquefaction","entries":["Liquefaction occurs when granular particles shake to the point where they temporarily lose their solid form and act as liquids. When this happens to soil, it can cause creatures and even whole buildings to sink into the ground. You can use the {@spell earthquake} spell for more specific rules, though that spell represents only one particular kind of localized quake."],"source":"CRB"},{"type":"pf2-h4","page":518,"name":"Tremors","entries":["Tremors knock creatures prone, causing them to fall or careen into other objects, which can deal bludgeoning damage appropriate to the severity of the quake."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":518,"name":"Floods","entries":["Though more gradual floods can damage structures and drown creatures, flash floods are similar to avalanches, except with a liquid mass instead of a solid one. Instead of burying creatures, a flash flood carries creatures and even massive objects away, buffeting the creatures and potentially drowning them. The drowning rules appear on page 478.",{"type":"statblock","tag":"table","name":"Temperature Effects","source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":519,"name":"Sandstorms","entries":["Mild sandstorms and dust storms don't present much more danger than a windy rainstorm, but they can cause damage to a creature's lungs and spread diseases across long distances. Heavy sandstorms deal minor slashing damage each round to those exposed to the sand, force creatures to hold their breath to avoid suffocation, or both."],"source":"CRB"},{"type":"pf2-h3","page":519,"name":"Tornadoes","entries":["In a tornado's path, wind conditions impose severe circumstance penalties, but creatures that would normally be blown away are instead picked up in the tornado's funnel, where they take massive bludgeoning damage from flying debris as they rise through the cone until they are eventually expelled (taking bludgeoning damage from falling).","Tornadoes usually travel around 300 feet per round (roughly 30 miles per hour). They normally travel a few miles before dissipating. Some tornadoes are stationary or travel much faster."],"source":"CRB"},{"type":"pf2-h3","page":519,"name":"Tsunamis","entries":["Tsunamis present many of the same dangers as flash floods but are much larger and more destructive. Tsunami waves can reach 100 feet or more in height, wrecking buildings and creatures alike with massive bludgeoning damage from both the wave itself and debris pulled up along its path of destruction."],"source":"CRB"},{"type":"pf2-h3","page":519,"name":"Volcanic Eruptions","entries":["Volcanic eruptions can contain any combination of ash, lava bombs, lava flows, pyroclastic flows, and vents.",{"type":"pf2-h4","page":519,"name":"Ash","entries":["Ash from volcanic eruptions is hot enough to cause minor fire damage each minute. It limits visibility like a thick fog and can make air unbreathable, requiring characters to hold their breath or suffocate (page 478).","Ash clouds generate ash lightning strikes, which typically deal moderate electricity damage but are very unlikely to hit an individual creature. Ash buildup on the ground creates areas of uneven ground, {@quickref difficult terrain||3|terrain}, or {@quickref greater difficult terrain||3|terrain}, and ash in the atmosphere can block the sun for weeks or even months, leading to colder temperatures and longer winters."],"source":"CRB"},{"type":"pf2-h4","page":519,"name":"Lava Bombs","entries":["Pressure can launch lava into the air that falls as lava bombs: masses of lava that solidify as they fly and shatter on impact, dealing at least moderate bludgeoning damage and moderate fire damage."],"source":"CRB"},{"type":"pf2-h4","page":519,"name":"Lava Flows","entries":["Lava flows are an iconic volcanic threat; they usually move between 5 and 60 feet per round over normal ground, so characters can often outrun them. However, flows can move up to 300 feet per round in a steep volcanic tube or channel. Lava emanates heat that deals minor fire damage even before it comes into contact with creatures, and immersion in lava deals massive fire damage each round."],"source":"CRB"},{"type":"pf2-h4","page":519,"name":"Pyroclastic Flows","entries":["Mixes of hot gases and rock debris, pyroclastic flows spread much faster than lava, sometimes more than 4,000 feet per round. While cooler than the hottest lava, pyroclastic flows are capable of overwhelming entire settlements. They work like avalanches but deal half of their damage as fire damage."],"source":"CRB"},{"type":"pf2-h4","page":519,"name":"Vents","entries":["Steam vents shoot from the ground, dealing moderate fire damage or more in a wide column. Acidic and poisonous gases released from beneath the surface can create wide areas of hazardous terrain that deals at least minor acid or poison damage."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":519,"name":"Wildfires","entries":["Wildfires travel mainly along a front moving in a single direction. In a forest, the front can advance up to 70 feet per round (7 miles per hour). They can move up to twice as fast across plains due to a lack of shade and the relatively low humidity. Embers from the fire, carried by winds and rising hot air, can scatter, forming spot fires as far as 10 miles away from the main wildfire. Wildfires present three main threats: flames, heat, and smoke.",{"type":"pf2-h4","page":519,"name":"Flames","entries":["Flames are hazardous terrain, usually dealing moderate damage and potentially setting a character on fire, dealing moderate persistent fire damage. The flames from a small fire are often less dangerous than the advancing heat from the front of a large fire."],"source":"CRB"},{"type":"pf2-h4","page":519,"name":"Heat","entries":["Wildfires increase the temperature in advance of the front, reaching nearly 1,500° F at the fire's arrival, as hot as some lava. This begins as minor fire damage every round at a reasonable distance from the front and increases to massive fire damage for someone within the wildfire."],"source":"CRB"},{"type":"pf2-h4","page":519,"name":"Smoke","entries":["Wind can carry smoke far in front of the wildfire itself. Smoke imposes a circumstance penalty to visual {@skill Perception} checks, depending on the thickness. It causes creatures viewed through significant amounts of smoke to be concealed, and it cuts off all visibility at half a mile or less. Near or within the wildfire, the combination of smoke and heated air require characters to hold their breath or suffocate (page 478)."],"source":"CRB"}],"source":"CRB"}],"source":"CRB"}],"data":{"quickref":5},"source":"CRB"},{"type":"section","page":520,"name":"Hazards","entries":[{"type":"pf2-h1-flavor","page":520,"entries":["{@i Dungeons are rife with devious traps meant to protect the treasures within. These range from mechanical devices that shoot darts or drop heavy blocks to magic runes that explode into bursts of flame. In addition to traps, adventurers may stumble into other types of hazards, including naturally occurring environmental hazards, mysterious hauntings, and more.}"],"source":"CRB"},{"type":"pf2-h2","page":520,"name":"Detecting a Hazard","entries":["Every hazard has a trigger of some kind that sets its dangers in motion. For traps, this could be a mechanism like a trip wire or a pressure plate, while for an environmental hazard or haunt, the trigger may simply be proximity. When characters approach a hazard, they have a chance of finding the trigger area or mechanism before triggering the hazard. They automatically receive a check to detect hazards unless the hazards require a minimum proficiency rank to do so.","During exploration, determine whether the party detects a hazard when the PCs first enter the general area in which it appears. If the hazard doesn't list a minimum proficiency rank, roll a secret Perception check against the hazard's {@skill Stealth} DC for each PC. For hazards with a minimum proficiency rank, roll only if someone is actively searching (using the Search activity while exploring or the {@action Seek} action in an encounter), and only if they have the listed proficiency rank or higher. Anyone who succeeds becomes aware of the hazard, and you can describe what they notice.","Magical hazards that don't have a minimum proficiency rank can be found using {@spell detect magic}, but this spell doesn't provide enough information to understand or disable the hazard—it only reveals the hazard's presence.","Determining a magical hazard's properties thoroughly enough to disable it requires either the use of more powerful magic or a successful skill check, likely using {@action Identify Magic} or {@action Recall Knowledge}. Magical hazards with a minimum proficiency rank cannot be found with {@spell detect magic} at all."],"source":"CRB"},{"type":"pf2-h2","page":520,"name":"Triggering a Hazard","entries":["If the group fails to detect a hazard and the hazard's trigger is a standard part of traveling (such as stepping on a floor plate or moving through a magical sensor while walking), the hazard's reaction occurs. Hazards that would be triggered only when someone directly manipulates the environment—by opening a door, for example—use their reactions only if a PC explicitly takes that action.",{"type":"pf2-h3","page":520,"name":"Reaction or Free Action","entries":["Most hazards have reactions that occur when they're triggered. For simple hazards, the reaction is the entirety of the hazard's effect. For complex hazards, the reaction may also cause the hazard to roll initiative, either starting a combat encounter or joining one already in progress, and the hazard continues to pose a threat over multiple rounds. Some hazards have a triggered free action instead of a reaction; for instance, quicksand can suck down multiple creatures per round."],"source":"CRB"},{"type":"pf2-h3","page":520,"name":"Routine","entries":["A complex hazard usually follows a set of preprogrammed actions called a routine. Once triggered, the hazard first performs its initial reaction; then, if the PCs are not yet in encounter mode, they should roll initiative. (If they're already in encounter mode, their initiative remains the same.) The hazard might tell you to roll initiative for it—in this case, the hazard rolls initiative using its {@skill Stealth} modifier.","After this happens, the hazard follows its routine each round on its initiative. The number of actions a hazard can take each round, as well as what they can be used for, depend on the hazard."],"source":"CRB"},{"type":"pf2-brown-box","page":520,"name":"MONSTERS AND HAZARDS","entries":["The statistics for NPCs and monsters usually don't list their proficiency ranks. Most of the time, they don't need to deal with detecting or disabling hazards the way PCs do, so you don't need this information. However, if a PC resets a trap in a monster's path or plans to lure a monster into a hazard, you can improvise this information.","For Perception, a monster is usually an expert at 3rd or 4th level, a master at 8th or 9th level, and legendary at 16th or 17th level. If the monster has {@skill Thievery} listed in its skills, it has the highest proficiency possible for its level (trained at 1st, expert at 3rd, master at 7th, and legendary at 15th); otherwise, it's untrained. Of course, an individual monster might deviate from these guidelines, especially if it's mindless or not very perceptive."],"source":"CRB"},{"type":"pf2-h3","page":520,"name":"Resetting a Hazard","entries":["Some hazards can be reset, allowing them to be triggered again. This can occur automatically, as for quicksand, whose surface settles after 24 hours, or manually, like a hidden pit, whose trapdoor must be closed for the pit to become hidden again."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":521,"name":"Disabling a Hazard","entries":["The most versatile method for deactivating traps is the Disable a Device action of the {@skill Thievery} skill, though most mechanical traps can also simply be smashed, and magical traps can usually be counteracted. Environmental hazards often can be overcome with {@skill Nature} or {@skill Survival}, and haunts can often be overcome with {@skill Occultism} or {@skill Religion}. The specific skill and DC required to disable a hazard are listed in the hazard's stat block. Like using Disable a Device, using these skills to disable a trap is a 2-action activity with the same degrees of success, though the activity might have different traits determined by the GM. As with detecting a hazard, disabling a hazard might require a character to have a certain proficiency rank in the listed skill.","A character must first detect a hazard (or have it pointed out to them) to try to deactivate it. They can attempt to deactivate a hazard whether or not it has already been triggered, though some hazards no longer pose a danger once their reactions have occurred, especially if there is no way for them to be reset.","For most hazards, a successful check for the listed skill against the DC in the stat block disables the hazard without triggering it. Any other means of deactivating the hazard are included in the hazard's stat block, as are any additional steps required to properly deactivate it.","A critical failure on any roll to disable a hazard triggers it, including a critical failure on a roll to counteract a magic hazard.","Some hazards require multiple successful checks to deactivate, typically because they have a particularly complicated component or have several discrete portions. For hazards with a complex component, a critical success on a check to disable the hazard counts as two successes on a single component.",{"type":"pf2-h3","page":521,"name":"Damaging a Hazard","entries":["Rather than trying to carefully disable a hazard, a character might just smash it. Damaging a mechanical trap or another physical hazard works like damaging objects: the hazard reduces the damage it takes by its Hardness. In most cases, hitting the hazard also triggers it, as explained in Attacking a Hazard below. If a hazard's Hit Points are reduced to its Broken Threshold (BT) or lower, the hazard becomes broken and can't be activated, though it can still be repaired. If it's reduced to 0 HP, it's destroyed and can't be repaired. (See page 272 in Chapter 6 for more information on damaging objects.)","Hazards' AC, applicable saving throw modifiers, Hardness, HP, and BT are listed in their stat blocks. A hazard that doesn't list one of these statistics can't be affected by anything targeting that statistic. For example, a hazard that has HP but no BT can't be broken, but can still be destroyed. Hazards are immune to anything an object is immune to unless specifically noted otherwise, and they can't be targeted by anything that can't target objects. Some hazards may have additional immunities, as well as resistances or weaknesses.",{"type":"pf2-h4","page":521,"name":"Attacking a Hazard","entries":["If someone hits a hazard—especially if it's a mechanical trap—they usually trigger it, though you might determine otherwise in some cases. An attack that breaks the hazard might prevent it from triggering, depending on the circumstances. If the hazard has multiple parts, breaking one part might still trigger the trap. For example, if a trap has a trip wire in one location and launches an attack from another location, severing the trip wire could still trigger the attack. Destroying a trap in one blow almost never triggers it. These rules also apply to most damaging spells or other effects in addition to attacks."],"source":"CRB"},{"type":"pf2-h4","page":521,"name":"Repairing a Hazard","entries":["You might allow a character to repair a damaged hazard to restore its functionality. You determine the specifics of this, since it can vary by trap. The Repair action might be insufficient if fixing the trap requires gathering scattered components or the like. If the item has a Reset entry, the character needs to do whatever is listed there, in addition to repairing the damage."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":521,"name":"Counteracting a Magical Hazard","entries":["Some magical hazards can be counteracted using {@spell dispel magic} and the counteracting rules found on page 458. These hazards' spell levels and counteract DCs are listed in their stat block. Counteracting a hazard otherwise works like using a skill check to disable the hazard."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":521,"name":"Hazard Experience","entries":["Characters gain Experience Points for overcoming a hazard, whether they disable it, avoid it, or simply endure its attacks. If they trigger the same hazard later on, they don't gain XP for the hazard again. The XP values for hazards of different levels also appear on page 508, but are repeated here for convenience. The XP for a complex hazard is equal to the XP for a monster of the same level, and the XP for a simple hazard is one-fifth of that. Hazards of a lower level than the party's level –4 are trivial and award no XP.",{"type":"statblock","tag":"table","name":"Hazard XP","source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":522,"name":"Hazard Format","entries":["Hazards are presented in a stat block format similar to those used for monsters. A few notes regarding the format follow the sample stat block.",{"type":"data","tag":"generic","data":{"source":"CRB","page":522,"name":"Hazard Name","category":"Hazard","level":" [Level]","traits":["traits"],"sections":[[[{"name":"Stealth","entry":"This entry lists the {@skill Stealth} modifier for a complex\nhazard's initiative or the {@skill Stealth} DC to detect a simple\nhazard, followed by the minimum proficiency rank to detect\nthe hazard (if any) in parentheses. If {@spell detect magic} can be\nused to detect the hazard, this information is located here\nas well."}],[{"name":"Description","entry":"This explains what the hazard looks like and might\ninclude special rules."}]],[[{"name":"Disable","entry":"The DC of any skill checks required to disable the\nhazard are here; if the hazard can be counteracted, its spell\nlevel and counteract DC are listed in parentheses."}],[{"name":"AC","entry":"the hazard's AC"},{"name":"Saving Throws","entry":"the hazard's saves. Usually\nonly haunts are subject to Will saves."}],[{"name":"Hardness","entry":"the hazard's Hardness"},{"name":"HP","entry":"the hazard's Hit Points,\nwith its Broken Threshold in parentheses"},{"name":"Immunities","entry":"the\nhazard's immunities"},{"name":"Weaknesses","entry":"the hazard's weaknesses,\nif any"},{"name":"Resistances","entry":"the hazard's resistances, if any"}],[{"name":"Action Type","entry":"{@as r} or {@as f} This is the reaction or free action the\nhazard uses"},{"name":"Trigger","entry":"The trigger that sets off the hazard\nappears here"},{"name":"Effect","entry":"For a simple hazard, this effect is often\nall the hazard does. For a complex hazard, this might also\ncause the hazard to roll initiative.\nRoutine This section describes what a"}],[{"name":"Routine","entry":"This section describes what a complex hazard does on\neach of its turns during an encounter; the number in parentheses\nafter the word \"Routine\" indicates how many actions the hazard\ncan use each turn. Simple hazards don't have this entry."}],[{"name":"Action","entry":"Any action the hazard can use appears here. Typically,\nthis is a melee or ranged attack."}]],[[{"name":"Reset","entry":"If the hazard can be reset, that information is here."}]]]}},{"type":"pf2-h3","page":522,"name":"Level","entries":["The hazard's level indicates what level of party it's a good challenge for. If the hazard involves a toxin, curse, or other non-spell feature, that feature's level is the hazard's level."],"source":"CRB"},{"type":"pf2-h3","page":522,"name":"Traits","entries":["The most notable hazard traits are trap (constructed to harm intruders), environmental (natural hazards), and haunt (spectral phenomena). Traps have a trait to indicate whether they're magical or mechanical. Hazards that have initiative and a routine have the complex trait."],"source":"CRB"},{"type":"pf2-h3","page":522,"name":"Stealth or Stealth DC","entries":["Complex hazards list their {@skill Stealth} modifier, which they use for initiative, instead of their {@skill Stealth} DC. If you need the DC, it's equal to this modifier + 10."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":526,"name":"Hazards","entries":["{@note To view all Hazards, please view the {@filter Hazards page.|hazards||source=CRB}}",{"type":"pf2-brown-box","page":528,"name":"UPGRADED SUMMONING RUNES","entries":["You can make a summoning rune of nearly any level. It summons a creature of a level equal to the trap's level.","Use {@table DCs by Level||Table 10–5: DCs by Level} to determine the {@skill Thievery} DC and spell DC, using the trap's level and applying a {@table DC Adjustments||hard adjustment} (+2). The {@skill Stealth} modifier for the trap is equal to this number –10. Stronger summoning runes usually require expert proficiency or better in {@skill Perception} to find, and they might require a higher proficiency rank in {@skill Thievery} to disable."],"source":"CRB"}],"source":"CRB"}],"data":{"quickref":5},"source":"CRB"},{"type":"section","page":483,"name":"Planning a Campaign","entries":["A Pathfinder game is typically structured as a campaign—a serialized story that focuses on a single party of characters.","A campaign is subdivided into multiple adventures, smaller stories that involve exploration and interaction with nonplayer characters. A single adventure represents a complete story that might be connected to the larger arc of a campaign. Playing an adventure spans one or more game sessions—gatherings where the group plays a part of the adventure over the course of several hours.","A campaign provides the overall structure for your Pathfinder game. As you prepare for your campaign, you'll establish its scope and themes, which you'll then reinforce in the adventures and scenes that take place within it.",{"type":"pf2-brown-box","page":483,"name":"COLLABORATION DURING PLAY","entries":["As Game Master, you have the final say on how the world and rules function, and how nonplayer characters act. This rule's purpose is to make the game run smoothly, with one guiding hand ensuring consistency. It's not intended to make one player into a dictator over the rest of the group. Collaboration is vital to roleplaying games!","How you implement collaboration in a game depends on what your players are interested in. In some groups, players enjoy adding details to the world and to nonplayer characters. In others, players want to feel like the world is outside their control, and the only decisions they get to make are those made by their own characters. Both are fun and acceptable ways to play.","You are encouraged to collect input from your players before you start, asking what storytelling genres they'd like to emphasize, which areas of the world they want to play in, the types of enemies they'd like to face, or which published adventure they want to play. A good campaign includes some back-and-forth at the beginning as the players figure out what characters they want to play and you figure out what sort of adventure to run. The results can range from building an adventure entirely to fit the characters to choosing a specific published adventure, having the players make their characters, and then just adapting the beginning of that adventure so that all the player characters have a reason to be involved.","As you play, opportunities to collaborate will occur again and again. When players throw out suggestions or come up with specific theories about the events of the campaign, they're telling you what they'd like to see in the game. Try to find ways to incorporate their suggestions, but with enough of a twist that each still includes something unexpected."],"source":"CRB"},{"type":"pf2-h3","page":483,"name":"Campaign Length","entries":["The length of a campaign can range from a few sessions to many years. Two main factors determine campaign length: how much time you need to complete the story, and how much time players want to devote to the game.","A single session, or a \"one-shot,\" is great if your group is trying out Pathfinder or wants to play a specific short adventure. This requires a smaller time commitment but requires the GM to present the events of the game in a way that is immediately engaging, since there's less opportunity for the players to become invested in the story or setting.","If you want to play through a longer campaign, you'll need to add some story elements that speak directly to the characters in your game rather than just to the events of the adventure. In other words, the characters should have individual goals in addition to the group's overall goals.","You can estimate how long a campaign will take by looking at the amount of time you actually have to play, or the number of character levels you intend the characters to advance. It typically takes three to four sessions for a group to level up. Since you'll probably cancel sessions on occasion, playing once a week for a year results in roughly a 14-level campaign, playing every 2 weeks for a year gives you an 8-level campaign, and playing monthly allows for a 5-level campaign. If you play only once a month, you might consider holding longer sessions and using fast advancement (page 509).","It's entirely okay to have a campaign with an indefinite length. Many groups play through one adventure and then decide to take on another. If you run an indefinite campaign, however, avoid ongoing plots that you can't satisfactorily end if the campaign comes to a close after the next adventure. If you introduce an overwhelmingly powerful villain who's crucial to the story but can't be stopped until the player characters are 15th level, ending the campaign at 8th level will feel anticlimactic.","It pays to be conservative when estimating your campaign length and scope. It's always tempting to run a 20-level epic campaign with complex, interwoven plots, but such games can fall apart long before the end if your group can play only once a month and the players have other responsibilities.",{"type":"pf2-h4","name":"Expected Duration","entries":["Not every campaign ends at the same point. Some campaigns go all the way to 20th level, ending after the player characters attain the height of power and confront the greatest threats any mortal could face. Others end at a lower level, after the group takes down a major villain or solves a crucial problem. And still other campaigns end when players become unable to attend or decide its a good time to stop playing.","You should have an end point in mind when you start a campaign. Still, you have to be flexible, since you're telling the story alongside other players, and your initial expectations for the campaign may be proven incorrect. When you think you're heading toward a satisfying conclusion, it's useful to check in with the other players. You might say, \"I think we have about two sessions left. Does that work for everyone? Is there any unfinished business you want to take care of?\" This lets you gauge whether your assumptions match up with the rest of the group—and make any necessary adjustments."]}],"source":"CRB"},{"type":"pf2-h3","page":484,"name":"Themes","entries":["The themes you choose for your campaign are what distinguish it from other campaigns. They include the major dramatic questions of your story and the repeated use of certain environments or creatures, and they can also include embracing a genre beyond traditional high fantasy. The themes you choose for your campaign also suggest storyline elements you might use.","A storyline's themes usually relate to the backstories, motivations, and flaws of the player characters and villains. For example, if you've chosen revenge as one of the themes of your game, you might introduce a villain whose quest for revenge tears his life apart and causes tragic harm to those around him. If one of the player characters is a chaotic good believer in liberty and freedom, you might engage that character by pitting the group against slavers. Or, you might choose a theme of love, leading to nonplayer characters involved in doomed romances, seeking to regain lovers they have lost, or courting the player characters.","Using similar locations and related creatures helps you form connections between disparate adventures. The players feel like their characters are becoming experts negotiating with giants, navigating seaways, battling devils, exploring the planes, or dealing with whatever the recurring elements are. For example, you might have the players explore a frozen tundra early on, then later travel to an icy plane filled with more difficult challenges that can be overcome using knowledge they've previously developed. Likewise, hobgoblin soldiers may be tough enemies for your group at low levels, but as the PCs attain higher levels and the hobgoblins become mere minions of another creature, the players feel a sense of progression.","Pathfinder is a fantasy adventure game, but you can shift your campaign to include elements of other fictional genres. You might want to infuse your game a with a sense of horror, reduce the amount of magic and use slow advancement (page 509) to make it a tale of sword and sorcery, or turn magic into technology for a steampunk setting."],"source":"CRB"},{"type":"pf2-h3","page":485,"name":"A Welcoming Environment","entries":["The role of Game Master comes with the responsibility of ensuring you and the rest of the players have a rewarding, fun time during the game. Games can deal with difficult subjects and have stressful moments, but fundamentally Pathfinder is a leisure activity. It can remain so only if the players follow the social contract and respect one another.","Players with physical or mental disabilities might find themselves more challenged than abled players. Work with your players to ensure they have the resources and support they need. Additionally, be on the lookout for behavior that's inappropriate, whether intentional or inadvertent, and pay careful attention to players' body language during the game. If you notice a player becoming uncomfortable, you are empowered to pause the game, take it in a new direction, privately check in with your players during or after the session, or take any other action you think is appropriate.","If a player tells you they're uncomfortable with something in the game, whether it's content you've presented as the GM or another player's or PC's actions, listen carefully to that player and take steps to ensure they can once again have fun during your game. If you're preparing prewritten material and you find a character or a situation inappropriate, you are fully empowered to change any details as you see fit. You also have the authority (and responsibility) to ask players to change their behavior—or even leave the table—if what they're doing is unacceptable or makes others feel uncomfortable. It's never appropriate to make the person who is uncomfortable responsible for resolving a problem. It's okay if mistakes happen. What's important is how you respond and move forward.","Gaming is for everyone. Never let those acting in bad faith undermine your game or exclude other players. Your efforts are part of the long-term process of making games and game culture welcoming to all. Working together, we can build a community where players of all identities and experiences feel safe.",{"type":"pf2-brown-box","page":485,"name":"TOOLS FOR RESPONSIBLE PLAY","entries":["Consent and comfort are important topics for roleplaying games, and many designers have created techniques to help facilitate responsible play. Some methods you can use are lines and veils, developed by Ron Edwards, and the X-Card, developed by John Stavropoulos.","Lines and Veils The terms \"line\" and \"veil\" can give your table a common vocabulary for the concepts described in this section. A line is a hard limit to the actions players might take, such as \"We're drawing a line at torture.\" The group agrees not to cross a line and omits that content from the game.","A veil indicates something that shouldn't be described in detail. The scene fades to black for a veil, or the group moves on to discuss a different topic, though whatever the veil is drawn across still happens. For example, you might say, \"We'll draw a veil across the scene as those characters head into the bedroom.\" You might come up with some lines and veils in advance, but then find more as play continues.","The X-Card Draw an \"X\" on a card, and you've got an X-Card. Place it on the table at the start of the session and describe its use to the players: any player can silently reject content they find upsetting by tapping the X-Card; whoever's speaking then rewinds a bit and continues on, excising the objectionable content. As with setting the basic guidelines for your campaign, there are no questions asked, no judgment, and no argument when someone invokes the X-Card. You can, however, ask for clarification if you need it, such as \"How far back should I rewind this?\" Some groups instead make an X with their hands, say \"Let's X that out,\" or use some other method. Either way, follow up with the player privately, after the game, to see if the guidelines need to be revised.","You can find more details at {@b {@link tinyurl.com/x-card-rpg|https://tinyurl.com/x-card-rpg}}."],"source":"CRB"},{"type":"pf2-h4","page":486,"name":"Objectionable Content","entries":["Before a campaign begins, check in with your players—as a group or individually—to find out what types of content they want to allow in the game, and which topics they would prefer to avoid. Because the story unfolds in real time, it's essential that you discuss these topics before the game starts. These discussions are intended to keep players safe, and so it's not okay to ask why someone wants a type of content banned. If someone wants it banned, ban it—no questions asked.","It can help to start with a rating, like those used for movies or video games. Pathfinder games often include violence and cruelty. What's the limit on how graphically these concepts should be described? Can players swear at the table? Does anyone have phobias they don't want to appear in the game, such as spiders or body horror?","After you figure out the limits on objectionable content, you have four important tasks:",{"type":"list","items":["Clearly convey these limits to the other players.","Ensure you and the players abide by the boundaries.","Act immediately if someone becomes uncomfortable about content during a session, even if it wasn't already banned in a prior discussion. Once the issue is resolved, move on.","Resolve the issue if any player deliberately pushes these boundaries, tries to find loopholes, tries to renegotiate the limits, or belittles people for having a different tolerance to objectionable content."]}],"source":"CRB"},{"type":"pf2-h4","page":486,"name":"The Pathfinder Baseline","entries":["You might find that your players don't have much to say on the topic of objectionable content, and just assume that general societal mores will keep the most uncomfortable topics out of the game. That's not always enough, as that approach relies on shared assumptions that aren't always accurate. The following is a set of basic assumptions that works for many groups, which you can modify to fit your preferences and those of the other players.",{"type":"list","items":["Bloodshed, injuries, and even dismemberment might be described. However, excessive descriptions of gore and cruelty should be avoided.","Romantic and sexual relationships can happen in the game, but players should avoid being overly suggestive. Sex always happens \"off-screen.\" Because attempts at initiating a relationship between player characters can be uncomfortably similar to one player hitting on another, this should generally be avoided (and is entirely inappropriate when playing with strangers).","Avoid excessively gross or scatological descriptions."]},"The following acts should never be performed by player characters:",{"type":"list","items":["Torture","Rape, nonconsensual sexual contact, or sexual threats","Harm to children, including sexual abuse","Owning slaves or profiting from the slave trade","Reprehensible uses of mind-control magic"]},"Villains might engage in such acts, but they won't happen \"on-screen\" or won't be described in detail. Many groups choose to not have villains engage in these activities at all, keeping these reprehensible acts out of mind entirely."],"source":"CRB"},{"type":"pf2-h4","name":"Social Splash Damage","page":486,"entries":["As important as it is to take care of yourself and the other players in your game, be mindful of your group's impact on the other people around you. If you're playing in a space that's not your own, respect your hosts. If you're playing in public, consider the comfort of the people around you, not just what your group is comfortable with. It's easy to get caught up in a game, as we get sucked into the microcosm of an imagined world, but don't ignore the real world around you. Be aware when you're making too much noise, leaving a mess, alarming passersby with graphic descriptions of violence, or even just giving the cold shoulder to curious spectators witnessing RPG play for the first time."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":486,"name":"Character Creation","entries":["At the outset of a new campaign, the players will create new player characters. Part of that process involves you introducing what the campaign will be about and what types of characters are most appropriate. Work with the players to determine which rule options are available. The safest options are the common choices from the {@book Pathfinder Core Rulebook|CRB}. If players want to use common options from other books or uncommon or rare options, through play, review those options to see if any of them conflict with the style of campaign you have in mind or might present strange surprises down the road. It's usually best to allow new options, but there's no obligation to do so. Be as open as you're comfortable with."],"source":"CRB"}],"data":{"quickref":5},"source":"CRB"},{"type":"section","page":486,"name":"Preparing an Adventure","entries":["An adventure is a self-contained collection of story elements, characters, and settings that become the basis for the story you and the other players tell. Think of the adventure as an outline for your own story. You'll have major beats you want to include, some consistent characters, and themes you want to convey, but all sorts of things can change during the process of turning the outline into a completed story.","You might use a published adventure from Paizo or another company, or you might construct your own adventure as you prepare for your game sessions.",{"type":"pf2-h3","page":486,"name":"Published Adventures","entries":["Prewritten adventures include background information and nonplayer characters needed for the story, plus all the locations, maps, and monster groups necessary for both exploration and encounters. Prewritten adventures can speed up your preparation, since you can simply read the relevant sections of the adventure before a game, and you don't have to create everything from scratch. A published adventure already includes the expected amount of encounters and treasure, and you can find adventures built for different character levels to match your group. Reading a published adventure or running one as your first game can help you see how adventures are structured, which makes it easier to write one later if you choose.","Though a published adventure is prewritten, it's not set in stone. Changing the details of an adventure to suit your group isn't just acceptable, it's preferred! Use the backstories and predilections of the player characters to inform how you change the adventure. This can mean altering adversaries so they're linked to the player characters, changing the setting to a place some of the player characters are from, or excising particular scenes if you know they won't appeal to your players."],"source":"CRB"},{"type":"pf2-h3","page":487,"name":"Creating Adventures","entries":["Building your own adventure is much more challenging than using a published one, but it lets you express yourself, be even more creative, and tailor the game directly to the players and their characters. Later sections in this chapter include guidelines for building and running encounters, placing treasure, and setting appropriately difficult challenges, all to help you construct your own adventures.","Adventure plotting can start at many different points. You might begin with a particular antagonist, then construct an adventure that fits that villain's theme and leads the group to them. Alternatively, you could start with an interesting location for exploration, then populate it with adversaries and challenges appropriate to the setting.",{"type":"pf2-h4","page":487,"name":"Locations","entries":["Memorable settings that include mysterious and fantastical locations for players to visit can elicit the players' curiosity.","Exploring each location should be a treat in itself, not just a chore the players must complete to get from one fight to the next. As you create a locale, picture it in your mind's eye and write down minor details you can include as you narrate the game. Describing decorations, natural landmarks, wildlife, peculiar smells, and even temperature changes make a place feel more real.","Beyond monsters and loot, your locations can include environment-based challenges, from environmental conditions like blizzards to puzzles, traps, or other hazards.","These challenges should suit your adventure's location: walls of brambles in a castle ruin overrun with vegetation, pools of acid in a cursed swamp, or magical traps in the tomb of a paranoid wizard. Rules for environments appear on page 512, and those for hazards start on page 520."],"source":"CRB"},{"type":"pf2-h4","page":487,"name":"Encounters","entries":["A robust set of encounters forms the backbone of your adventure. Encounters often feature combat with other creatures, but they can also include hazards, or you might create social encounters in which characters duel only with words. The rules for building encounters appropriate to your group's level begin below.","Some adventures have a clear and direct progression, with encounters occurring at specific times or in a specific order. Others, such as a dungeon filled with interconnected rooms the group can investigate in any order, are nonlinear, and the group can face encounters in any order—or even avoid them entirely. Most adventures are somewhere in between, with some keystone encounters you know the characters will need to contend with, but others that are optional."],"source":"CRB"},{"type":"pf2-h4","page":487,"name":"Treasure","entries":["Your adventure should give out an amount of treasure that's appropriate to the characters' level. The guidelines for assigning treasure are on page 508. You can dole out treasure in all kinds of ways. Treasure could be items carried by an adversary, rewards from a patron for completing a mission, or a classic pile of coins and items inside a wooden chest guarded by a monster. It's best to spread treasure throughout an adventure rather than stockpiled in a single hoard. This gives the players incremental rewards, letting their characters advance in frequent small steps rather than giant leaps separated by many hours of play."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-brown-box","page":488,"name":"USING RARITY AND ACCESS","entries":["The rarity system has two purposes: to convey how common or rare certain spells, creatures, or items are in the game world, and to give you an easy tool to control the complexity of your game. Uncommon and rare options aren't more powerful than other options of their level, but they introduce complications for certain types of stories, or are less common in the world. For instance, it might be more challenging to run a mystery adventure when a player can cast an uncommon spell such as {@spell detect evil}.","At the start of the campaign, communicate your preferred expectations on rarity to the players. Unless you decide otherwise, the players can choose from any common options they qualify for, plus any uncommon options granted by their character choices—primarily their ancestry and class. By default, a character who tries hard enough might eventually find an uncommon option, whereas a rare option is always a special reward.","Beyond that baseline, you can grant access as freely as you want; some GMs open up all uncommon and rare options universally. If you're not sure, just look over any uncommon or rare elements before you include them as rewards or otherwise allow a player to acquire them.",{"type":"pf2-title","name":"Rewards"},"You can use uncommon and rare rules elements to reward characters. These still have the same value and approximate power as any other treasure of the same Price, but they're just a bit more special because they hail from distant lands or have unusual or surprising abilities.","Items are the most likely candidates for uncommon or rare rewards, but an NPC might teach an uncommon or rare spell to a PC in gratitude or to help the party prepare for a certain adversary. You can also improvise extra benefits based around uncommon or rare items. For instance, if a PC gains a rare plant with occult uses, you might also decide that the PC should temporarily get more money if they use it while Earning Income using Herbalism Lore, because it enables them to produce novel poultices.",{"type":"pf2-title","name":"Different Locations"},"The rarities in this book assume you're playing in the Inner Sea region of Golarion, where most Pathfinder games are set. These rarities are also suitable for most western medieval fantasy games. However, you might want to alter the rarities for a campaign set in another location on Golarion (detailed in Chapter 8), to emphasize a non-human culture, or to play in a fantasy setting with different roots, like a wuxia game based on Chinese culture. These changes most often affect basic items. If you start your campaign in a dwarven stronghold, for example, you might make all the weapons with the dwarf trait common. You should feel free to adjust rarities to suit your campaign's theme, but if you do, you should share your changes with your group."],"source":"CRB"},{"type":"pf2-h3","page":488,"name":"Building Encounters","entries":["The most common type of encounter is a combat encounter, where the PCs face other creatures. Combat encounters are strictly governed by rules; the guidelines that follow will help you build combat encounters that pose appropriate challenges for your group. Building hazard encounters works the same way. Social encounters are more free-form, and are up to you as the GM to design.","To build a combat encounter, first decide how the encounter fits in the adventure as a whole. Then, estimate how much of a threat you want the encounter to pose, using one of five categories below.","{@b Trivial-threat} encounters are so easy that the characters have essentially no chance of losing; they shouldn't even need to spend significant resources unless they are particularly wasteful. These encounters work best as warm-ups, palate cleansers, or reminders of how awesome the characters are. A trivial-threat encounter can still be fun to play, so don't ignore them just because of the lack of threat.","{@b Low-threat} encounters present a veneer of difficulty and typically use some of the party's resources. However, it would be rare or the result of very poor tactics for the entire party to be seriously threatened.","{@b Moderate-threat} encounters are a serious challenge to the characters, though unlikely to overpower them completely. Characters usually need to use sound tactics and manage their resources wisely to come out of a moderate-threat encounter ready to continue on and face a harder challenge without resting.","{@b Severe-threat} encounters are the hardest encounters most groups of characters can consistently defeat. These encounters are most appropriate for important moments in your story, such as confronting a final boss. Bad luck, poor tactics, or a lack of resources due to prior encounters can easily turn a severe-threat encounter against the characters, and a wise group keeps the option to disengage open.","{@b Extreme-threat} encounters are so dangerous that they are likely to be an even match for the characters, particularly if the characters are low on resources. This makes them too challenging for most uses. An extremethreat encounter might be appropriate for a fully rested group of characters that can go all-out, for the climactic encounter at the end of an entire campaign, or for a group of veteran players using advanced tactics and teamwork.",{"type":"pf2-h4","page":488,"name":"XP Budget","entries":["Once you've selected a threat level, it's time to build the encounter. You have an XP budget based on the threat, and each creature costs some of that budget. Start with the monsters or NPCs that are most important to the encounter, then decide how you want to use the rest of your XP budget. Many encounters won't match the XP budget exactly, but they should come close. The XP budget is based on a group of four characters. If your group is larger or smaller, see Different Party Sizes below."],"source":"CRB"},{"type":"pf2-h4","page":488,"name":"Choosing Creatures","entries":["In all but the most unusual circumstances, you'll select creatures for your encounter that range from 4 levels lower than the PCs' level to 4 levels higher (see {@table Creature XP and Role||Table 10–2: Creature XP and Role}). Each creature has a part to play in your encounter, from a lowly lackey to a boss so mighty it could defeat the entire party single-handedly.","Each creature costs some of the XP from your XP budget for the encounter, based on its level compared to the levels of the characters in your party. For instance, if the PCs are 5th level, a 2nd-level creature is a \"party level –3\" creature, a lackey appropriate for a lowto- moderate-threat encounter, and it costs 15 XP in an encounter's XP budget. Party level is explained in detail on page 508."],"source":"CRB"},{"type":"pf2-h4","page":488,"name":"Different Party Sizes","entries":["For each additional character in the party beyond the fourth, increase your XP budget by the amount shown in the Character Adjustment value for your encounter in {@table Encounter Budget||Table 10–1: Encounter Budget}. If you have fewer than four characters, use the same process in reverse: for each missing character, remove that amount of XP from your XP budget. Note that if you adjust your XP budget to account for party size, the XP awards for the encounter don't change—you'll always award the amount of XP listed for a group of four characters.","It's best to use the XP increase from more characters to add more enemies or hazards, and the XP decrease from fewer characters to subtract enemies and hazards, rather than making one enemy tougher or weaker. Encounters are typically more satisfying if the number of enemy creatures is fairly close to the number of player characters."],"source":"CRB"},{"type":"statblock","tag":"table","source":"CRB","name":"Encounter Budget"},{"type":"statblock","tag":"table","source":"CRB","name":"Creature XP and Role"}],"data":{"quickrefIndex":true},"source":"CRB"}],"data":{"quickref":5},"source":"CRB"},{"type":"section","page":507,"name":"Rewards","entries":[{"type":"pf2-h1-flavor","page":507,"entries":["{@i In Pathfinder, player characters can receive three kinds of rewards for their heroic deeds: Hero Points, which they can use to get out of sticky situations; Experience Points, which they'll use to level up; and treasure, including powerful magic items.}"],"source":"CRB"},{"type":"pf2-h2","page":507,"name":"Hero Points","entries":["Unlike Experience Points and treasure, which stay with a character, Hero Points are granted and used on a per-session basis. At the start of a game session, you give out 1 Hero Point to each player character. You can also give out more Hero Points during the game, typically after a heroic moment or accomplishment (see below). As noted on page 467, a player can spend 1 Hero Point for a reroll, or they can spend all their Hero Points to recover when near death.","In a typical game, you'll hand out about 1 Hero Point during each hour of play after the first (for example, 3 extra points in a 4-hour session). If you want a more overthetop game, or if your group is up against incredible odds and showing immense bravery, you might give them out at a faster rate, like 1 every 30 minutes (6 over a 4-hour session). Try to ensure each PC has opportunities to earn Hero Points, and avoid granting all of the Hero Points to a single character.","Brave last stands, protecting innocents, and using a smart strategy or spell to save the day could all earn a character a Hero Point. Look for those moments when everybody at the table celebrates or sits back in awe of a character's accomplishments; that's your cue to issue that character a Hero Point.","The party could also gain Hero Points for their accomplishments throughout the game. For a moderate or major accomplishment, consider giving out a Hero Point as well. This point typically goes to a PC who was instrumental in attaining that accomplishment."],"source":"CRB"},{"type":"pf2-h2","page":507,"name":"Experience Points","entries":["As characters adventure, they earn Experience Points (XP).","These awards come from achieving goals, completing social encounters, exploring new places, fighting monsters, overcoming hazards, and other sorts of deeds. You have a great deal of control over when the characters gain XP, though the following guidelines are what you're expected to give out in a standard campaign.","Normally, when a player character reaches 1,000 XP or more, they level up, reduce their XP by 1,000, and start progressing toward the next level. Other means of advancement are described in the Advancement Speeds sidebar on page 509.",{"type":"pf2-h3","page":507,"name":"XP Awards","entries":["Experience Points are awarded for encounters, exploration, and progress in an adventure. When the PCs face direct opposition, such as a fight or a social conflict, the XP earned is based on the level of the challenge the party overcame. Characters can also gain XP from exploration, such as finding secret areas, locating a hideout, enduring a dangerous environment, or mapping an entire dungeon.","Any XP awarded goes to all members of the group. For instance, if the party wins a battle worth 100 XP, they each get 100 XP, even if the party's rogue was off in a vault stealing treasure during the battle. But if the rogue collected a splendid and famous gemstone, which you've decided was a moderate accomplishment worth 30 XP, each member of the party gets 30 XP, too.",{"type":"pf2-h3","page":507,"name":"Adversaries and Hazards","entries":["Encounters with adversaries and hazards grant a set amount of XP. When the group overcomes an encounter with creatures or hazards, each character gains XP equal to the total XP of the creatures and hazards in the encounter (this excludes XP adjustments for different party sizes; see Party Size on page 508 for details).","Trivial encounters don't normally grant any XP, but you might decide to award the same XP as for a minor or moderate accomplishment for a trivial encounter that was important to the story, or for an encounter that became trivial because of the order in which the PCs encountered it in a nonlinear adventure."],"source":"CRB"},{"type":"pf2-h3","page":507,"name":"Accomplishments","entries":["Characters' actions that move the story forward—like securing a major alliance, establishing an organization, or causing an NPC to have a change of heart—are considered accomplishments and should be rewarded with XP. Their significance determines the size of the XP award. Determine whether the achievement was a minor, moderate, or major accomplishment, and refer to {@table XP Awards||Table 10–8: XP Awards} to award an appropriate amount of XP. Minor accomplishments include all sorts of significant, memorable, or surprising moments in the game. A moderate accomplishment typically represents a goal that takes most of a session to complete, and a major accomplishment is usually the culmination of the characters' efforts across many sessions. Moderate and major accomplishments usually come after heroic effort, so that's an ideal time to also give a Hero Point to one or more of the characters involved.","As mentioned earlier, it's up to you how much XP to give out for accomplishments. As a general guideline, in a given game session, you'll typically give several minor awards, one or two moderate awards, and only one major award, if any."],"source":"CRB"},{"type":"statblock","tag":"table","name":"XP Awards","source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":508,"name":"Party Size","entries":["The rules for advancement assume a group of four PCs. The rules for encounters (page 489) describe how to accommodate groups of a different size, but the XP awards don't change—always award the amount of XP listed for a group of four characters. You usually won't need to make many adjustments for a differently sized group outside of encounters. Be careful of providing too many ways to get accomplishment XP when you have a large group, though, since they can pursue multiple accomplishments at once, which can lead to the PCs leveling up too fast."],"source":"CRB"},{"type":"pf2-h3","page":508,"name":"Group Parity and Party Level","entries":["It's recommended that you keep all the player characters at the same XP total. This makes it much easier to know what challenges are suitable for your players. Having characters at different levels can mean weaker characters die more easily and their players feel less effective, which in turn makes the game less fun for those players.","If you choose not to keep the whole group at the same character level, you'll need to select a party level to determine your XP budget for encounters. Choose the level you think best represents the party's ability as a whole. Use the highest level if only one or two characters are behind, or an average if everyone is at a different level. If only one character is two or more levels ahead, use a party level suitable for the lower-level characters, and adjust the encounters as if there were one additional PC for every 2 levels the higher-level character has beyond the rest of the party.","Party members who are behind the party level gain double the XP other characters do until they reach the party's level. When tracking individually, you'll need to decide whether party members get XP for missed sessions."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":508,"name":"Treasure","entries":["As the GM, it's your job to distribute treasure to the player characters. Treasure appears throughout an adventure, and the PCs obtain it by raiding treasure hoards, defeating foes who carry valuable items or currency, getting paid for successful quests, and any other way you can imagine.","This section provides guidelines for distributing treasure in a typical Pathfinder campaign, but you always have the freedom to assign extra treasure for a high-powered game, less treasure for a gritty survival horror adventure, or any amount in between.",{"type":"pf2-h3","page":508,"name":"Treasure by Level","entries":["Table 10–9: Party Treasure by Level on the next page shows how much treasure you should give out over the course of a level for a group of four PCs. The Total Value column gives an approximate total value of all the treasure, in case you want to spend it like a budget. The next several columns provide suggestions for breaking down that total into permanent items, which the PCs keep and use for a long time; consumables, which are destroyed after being used once; and currency, which includes coins, gems, and other valuables primarily spent to acquire items or services. The final column gives the amount of currency to add for each PC beyond four in the group; use this only if you have more than four characters in the game. (Different Party Sizes on page 510 provides more guidance on this.) For instance, between the time your PCs reach 3rd level and the time they reach 4th level, you should give them the treasure listed in the table for 3rd level, worth approximately 500 gp: two 4th-level permanent items, two 3rd-level permanent items, two 4th-level consumables, two 3rd-level consumables, two 2nd-level consumables, and 120 gp worth of currency.","When assigning 1st-level permanent items, your best options are armor, weapons, and other gear from Chapter 6 worth between 10 and 20 gp. The treasure listed in the row for 20th level represents a full level's worth of adventures, even though there is no way to reach 21st level.","Some creature entries in the {@Pf2eTools Pathfinder Bestiary|bestiary.html} list treasure that can be gained by defeating an individual creature; this counts toward the treasure for any given level.","Published adventures include a suitable amount of treasure throughout the adventure, though you should still monitor the party's capabilities as the PCs progress through the adventure to make sure they don't end up behind.",{"type":"pf2-h4","page":509,"name":"Currency","entries":["A party will find money and other treasure that isn't useful on its own but that can be sold or spent on other things. The gp values in the Party Currency column don't refer only to coins. Gems, art objects, crafting materials (including precious materials), jewelry, and even items of much lower level than the party's level can all be more interesting than a pile of gold.","If you include a lower-level permanent item as part of a currency reward, count only half the item's Price toward the gp amount, assuming the party will sell the item or use it as crafting material. But lower-level consumables might still be useful, particularly scrolls, and if you think your party will use them, count those items at their full Price."],"source":"CRB"},{"type":"pf2-brown-box","page":509,"name":"ADVANCEMENT SPEEDS","entries":["By varying the amount of XP it takes to gain a level, you can change how quickly characters gain power. The game rules assume a group playing with standard advancement.","Fast advancement works best when you know you won't be playing a very long campaign and want to accomplish as much as possible quickly; slow advancement works best for a gritty campaign where all progress is hard won.","You can alter XP from one adventure to the next to get a different feel. During a street-level murder mystery and travel through a haunted wilderness, you might use slow advancement. When the PCs reach the dungeon, you might switch to standard or fast advancement. The values below are just examples. You can use values even higher or lower.",{"type":"table","colStyles":["text-center","text-center"],"rows":[["Advancement Speed","XP to Level Up"],["Fast","800 XP"],["Standad","1,000 XP"],["Slow","1,200 XP"]]},{"type":"pf2-title","name":"Story-Based Leveling"},"If you don't want to deal with managing and handing out XP, or if you want to have progression based solely on events in the story, you can ignore the XP process entirely and instead simply decide when the characters level up.","Generally, the characters should gain a level every three to four game sessions, just after the most appropriate big event that happens during that time, such as defeating a significant villain or achieving a major goal."],"source":"CRB"},{"type":"pf2-h4","page":509,"name":"Other Types of Treasure","entries":["Not all treasure has to be items or currency. Crafters can use the {@skill Crafting} skill to turn raw materials directly into items instead of buying those items with coins. Knowledge can expand a character's abilities, and formulas make good treasure for item-crafting characters. A spellcaster might get access to new spells from an enemy's spellbook or an ancient scholar, while a monk might retrain techniques with rarer ones learned from a master on a remote mountaintop."],"source":"CRB"},{"type":"pf2-h4","page":509,"name":"Treasure and Rarity","entries":["Giving out uncommon and rare items and formulas can get players more interested in treasure. It's best to introduce uncommon items as a reward fairly regularly but rare items only occasionally. These rewards are especially compelling when the adventurers get the item by defeating or outsmarting an enemy who carries an item that fits their backstory or theme.","Uncommon and rare formulas make great treasure for a character who Crafts items. Note that if an uncommon or rare formula is broadly disseminated, it eventually becomes more common. This can take months or years, but the item might start showing up in shops all around the world."],"source":"CRB"},{"type":"statblock","tag":"table","name":"Party Treasure by Level","source":"CRB"},{"type":"pf2-h4","page":510,"name":"Different Item Levels","entries":["The levels listed for items on {@table Party Treasure by Level||Table 10–9: Party Treasure by Level} aren't set in stone. You can provide items of slightly higher or lower level as long as you take into account the value of the items you hand out. For instance, suppose you were considering giving a party of 11th-level PCs a {@item runestone} with a {@item fortification} rune (with a Price of 2,000 gp) as one of their 12th-level items, but you realize they've had trouble finding armor in their recent adventures, so you instead decide to give them a suit of 11th-level +2 resilient armor (1,400 gp) instead. Since the armor has a lower Price than the rune, you might also add a 9th-level {@item shadow} rune (650 gp) to make up the difference. The total isn't exactly the same, but that's all right.","However, if you wanted to place a 13th-level permanent item in a treasure hoard, you could remove two 11thlevel permanent items to make a roughly equivalent exchange. When you make an exchange upward like this, be cautious: not only might you introduce an item with effects that are disruptive at the party's current level of play, but you also might give an amazing item to one PC while other characters don't gain any new items at all!","If you're playing in a long-term campaign, you can spread out the treasure over time. A major milestone can give extra treasure at one level, followed by a tougher dungeon with fewer new items at the next level. Check back occasionally to see whether each PC's treasure is comparable to the amount they'd get if they created a new character at their current level, as described under Treasure for New Characters below. They should be a bit higher. but if there's a significant discrepancy, adjust the adventure's upcoming treasure rewards accordingly."],"source":"CRB"},{"type":"pf2-h4","page":510,"name":"Different Party Sizes","entries":["If a party has more than four characters, add the following for each additional character:",{"type":"list","items":["One permanent item of the party's level or 1 level higher","Two consumables, usually one of the party's level and one of 1 level higher","Currency equal to the value in the Currency per Additional PC column of Table 10–9"]},"If the party has fewer than four characters, you can subtract the same amount for each missing character, but since the game is inherently more challenging with a smaller group that can't cover all roles as efficiently, you might consider subtracting less treasure and allowing the extra gear help compensate for the smaller group size."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-brown-box","page":510,"name":"ADJUSTING TREASURE","entries":["The treasure you award to the party should be monitored and adjusted as you play. You might need to give out treasure you hadn't originally planned for, especially if the group bypasses part of an adventure. Keep an eye on the party's resources. If they're running out of consumables or money, or if they're having trouble in combat because their items aren't up to the task, you can make adjustments.","This is especially common in adventures that have little downtime or that take place far from civilization. If the group goes a long time without being able to purchase or Craft useful items, the PCs will be flush with coins and valuables but behind on useful equipment. In a situation like this, you can either place more useful treasure in the adventure or introduce NPCs who are willing to trade.",{"type":"pf2-title","name":"Megadungeons and Sandboxes"},"Some adventures have an expectation that the player characters explore where they want and find only what their skill, luck, and ingenuity afford. Two common examples of this type of adventure are the sprawling dungeon with multiple different sections and paths, often called a megadungeon, and free-form exploration, often called a sandbox and typically occurring in a wilderness.","If you want to build a free-form adventure like this where characters are likely to miss at least some of the treasure, increase the amount of treasure you place. Be aware, however, that a meticulous group can end up with more treasure than normal and will have advantages in later adventures.","For a simple guideline to these situations, increase the treasure as though there were one more PC in the party.","If the structure is especially loose, especially in sandbox adventures, you can increase this amount even further."],"source":"CRB"},{"type":"pf2-h3","page":510,"name":"Treasure for New Characters","entries":["When your new campaign starts at a higher level, a new player joins an existing group, or a current player's character dies and they need a new one, your campaign will have one or more PCs who don't start at 1st level. In these cases, refer to {@table Character Wealth||Table 10–10: Character Wealth} on the next page, which shows how many common permanent items of various levels the PC should have, in addition to currency. A single item on this table is always a baseline item. If the player wants armor or a weapon with property runes, they must buy the property runes separately, and for armor or a weapon made of a precious material, they must pay for the precious material separately as well.","These values are for a PC just starting out at the given level. If the PC is joining a party that has already made progress toward the next level, consider giving the new character an additional item of their current level. If your party has kept the treasure of dead or retired PCs and passed it on to new characters, you might need to give the new character less than the values on the table or reduce some of the treasure rewards of the next few adventures.",{"type":"pf2-h4","page":511,"name":"Item Selection","entries":["You should work with the new character's player to decide which items their character has. Allow the player to make suggestions, and if they know what items they want their character to have, respect their choices unless you believe those choices will have a negative impact on your game.","At your discretion, you can grant the player character uncommon or rare items that fit their backstory and concept, keeping in mind how many items of those rarities you have introduced into your game. The player can also spend currency on consumables or lower-level permanent items, keeping the rest as coinage. As usual, you determine which items the character can find for purchase.","A PC can voluntarily choose an item that has a lower level than any or all of the listed items, but they don't gain any more currency by doing so.","If you choose, you can allow the player to instead start with a lump sum of currency and buy whatever common items they want, with a maximum item level of 1 lower than the character's level. This has a lower total value than the normal allotment of permanent items and currency, since the player can select a higher ratio of high-level items."],"source":"CRB"},{"type":"statblock","tag":"table","name":"Character Wealth","source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":511,"name":"Buying and Selling Items","entries":["Characters can usually buy and sell items only during downtime. An item can typically be sold for only half its Price, though art objects, gems, and raw materials can be sold for their full Price (page 271)."],"source":"CRB"}],"source":"CRB"}],"data":{"quickref":5},"source":"CRB"},{"type":"section","page":493,"name":"Running Modes of Play","entries":[{"type":"pf2-h1-flavor","page":493,"entries":["{@i Pathfinder sessions are divided into three different modes of play: encounters, exploration, and downtime. Each mode represents different kinds of situations, with specific stakes and time scales, and characters can use different sorts of actions and reactions in each.}"],"source":"CRB"},"Encounters take place in real time or slower, and they involve direct engagement between players and enemies, potential allies, or each other. Combat and direct social interaction usually take place in encounter mode.","Exploration is the connective tissue of an adventure, and it is used whenever characters are exploring a place where there's danger or uncertainty, such as an unfamiliar city or a dungeon. In exploration mode, characters aren't in immediate peril, but they must still be on their toes. Exploration and encounters are collectively called adventuring.","When the party isn't adventuring, the characters are in downtime. This mode covers most of a normal person's life, such as mundane, day-to-day tasks and working toward long-term goals.",{"type":"pf2-h2","page":493,"name":"Encounters","entries":["Encounter mode is the most structured mode of play, and you'll mostly be following the rules presented in Chapter 9 to run this mode. Because you usually call for initiative during exploration before transitioning into an encounter, guidelines for initiative order appear on page 498 in the discussion of exploration mode. Rules for building combat encounters appear on page 488.","{@b Stakes:} Moderate to high. Encounters always have significant stakes, and they are played in a step-by-step time frame to reflect that.","{@b Time Scale:} Encounter mode is highly structured and proceeds in combat rounds for combat encounters, while other sorts of encounters can have rounds of any length. In combat, 1 minute consists of 10 rounds, where each combat round is 6 seconds long, but you might decide a verbal confrontation proceeds in minute-long or longer rounds to give each speaker enough time to make a solid point.","{@b Actions and Reactions:} In combat encounters, each participant's turn is broken into discrete actions, and participants can use reactions when their triggers occur.","Reactions can occur in social situations, though their triggers are usually more descriptive and less tactical.",{"type":"pf2-h3","page":493,"name":"Choosing Adversaries' Actions","entries":["Players often coordinate and plan to be as efficient as possible, but their adversaries might not. As the GM, you're roleplaying these foes, and you decide their tactics.","Most creatures have a basic grasp of simple tactics like flanking or focusing on a single target. But you should remember that they also react based on emotions and make mistakes—perhaps even more than the player characters do.","When selecting targets or choosing which abilities to use, rely on the adversaries' knowledge of the situation, not your own. You might know that the cleric has a high Will save modifier, but a monster might still try to use a fear ability on her. That doesn't mean you should play adversaries as complete fools; they can learn from their mistakes, make sound plans, and even research the player characters in advance.","Adversaries usually don't attack a character who's knocked out. Even if a creature knows a fallen character might come back into the fight, only the most vicious creatures focus on helpless foes rather than the more immediate threats around them.","Running adversaries is a mix of being true to the creature and doing what's best for the drama of the game. Think of your encounter like a fight scene in a movie or novel. If the fighter taunts a fire giant to draw its attention away from the fragile wizard, the tactically sound decision is for the giant to keep pummeling the wizard. But is that the best choice for the scene? Perhaps everyone will have more fun if the giant redirects its ire to the infuriating fighter."],"source":"CRB"},{"type":"pf2-h3","page":493,"name":"Bypassed Encounters","entries":["What happens if you've planned a fight or challenge and the PCs find a way to avoid it entirely? This could leave them behind in XP or cause them to miss important information or treasure.","In the case of XP, the guidelines are simple: If the player characters avoided the challenge through smart tactical play, a savvy diplomatic exchange, clever use of magic, or another approach that required ingenuity and planning, award them the normal XP for the encounter.","If they did something that took only moderate effort or was a lucky break, like finding a secret passage and using it to avoid a fight, award them XP for a minor or moderate accomplishment. In an adventure that's more free-form, like a sprawling dungeon with multiple paths, there might be no reward for bypassing an encounter, because doing so was trivial.","You'll have to think on your feet if information or items get skipped when players bypass encounters. First, look for another reasonable place in the adventure to place the information or item. If it makes sense, move the original encounter to another part of the adventure and give the PCs a major advantage for bypassing the encounter in the first place."],"source":"CRB"},{"type":"pf2-brown-box","page":494,"name":"PLAYING WITHOUT A GRID","entries":["The Pathfinder rules are built to play combat encounters on a 1-inch grid, but you can play without a grid or map. In what's traditionally called the \"theater of the mind,\" you and other players imagine the locations of the combatants and the environment. In this style of play, you'll frequently need to make judgment calls. These are usually simple, like \"Can I see the ogre from where I'm standing?\" or \"Can I get to the ogre with one Stride?\" It's often best to have a player tell you what they want to do, such as \"I want to cross the beam to get to the ogre and attack it.\" Then, you tell the player how that breaks down into actions, like \"You'll need to spend one action and succeed at an {@skill Acrobatics} check, then Stride to get close enough, then you'll have one action left for a Strike.\"","When preparing encounters, avoid using lots of {@quickref difficult terrain||3|terrain}, cover, or other battlefield challenges that work better on a grid. Also, be more lenient with combat tactics like flanking. You won't have a way to measure flanking, but the rules expect melee characters like rogues to often get into a flanking position—often, two characters ganging up in melee is enough to count."],"source":"CRB"},{"type":"pf2-h3","page":494,"name":"Ending Encounters","entries":["A combat encounter typically ends when all the creatures on one side are killed or knocked unconscious. Once this happens, you can stop acting in initiative order.","The surviving side then has ample time to ensure that everyone taken out stays down. However, you might need to keep using combat rounds if any player characters are near death, clinging to a cliff, or in some other situation where every moment matters for their survival.","You can decide a fight is over if there's no challenge left, and the player characters are just cleaning up the last few weak enemies. However, avoid doing this if any of the players still have inventive and interesting things they want to try or spells they're concentrating on—ending an encounter early is a tool to avoid boredom, not to deny someone their fun. You can end a fight early in several ways: the foes can surrender, an adversary can die before its Hit Points actually run out, or you can simply say the battle's over and that the PCs easily dispatch their remaining foes. In this last case, you might ask, \"Is everyone okay if we call the fight?\" to make sure your players are on board.","One side might surrender when almost all its members are defeated or if spells or skills thoroughly demoralize them. Once there's a surrender, come out of initiative order and enter into a short negotiation.","These conversations are really about whether the winners will show mercy to the losers or just kill or otherwise get rid of them. The surrendering side usually doesn't have much leverage in these cases, so avoid long back-and-forth discussions.",{"type":"pf2-h3","page":494,"name":"Fleeing Enemies","entries":["Fleeing enemies can be a problem. Player characters often want to pursue foes that flee because they think an enemy might return as a threat later on. Avoid playing this out move by move, as it can easily bog down the game. If every adversary is fleeing, forgo initiative order and give each PC the option to pursue any one fleeing foe. Each PC can declare one action, spell, or other ability to use to try to keep up. Then, compare the PC's Speed to that of the target, assess how much the pursuer's chosen spell or ability would help, and factor in any abilities the quarry has that would aid escape. If you determine that the pursuer catches up, go back into combat with the original initiative order. If not, the quarry escapes for now.","If the PCs decide to flee, it's usually best to let them do so. Pick a particular location and allow them to escape once they all reach it. However, if they're encumbered or otherwise slowed down, or if enemies have higher Speeds and a strong motive to pursue, you might impose consequences upon PCs who flee."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":494,"name":"Social Encounters","entries":["Most conversations play best as free-form roleplaying, with maybe one or two checks for social skills involved.","Sometimes, though, a tense situation or crucial parlay requires a social encounter that uses initiative, much like a combat encounter. As with any other encounter, the stakes of a social encounter need to be high! A failed social encounter could mean a character is imprisoned or put to death, a major rival becomes a political powerhouse, or a key ally is disgraced and ostracized.","Using the structure of an encounter is {@condition helpful} because it makes the timing clearer than in free-form play, and each character feels like they're contributing. When running a social encounter, establish the stakes up front, so the players know the consequences of success or failure and the circumstances that will cause the encounter to end.","You have much more flexibility in how you run a social encounter than in a combat encounter. Extending the length of rounds beyond 6 seconds, allowing more improvisation, and focusing less on special attacks and spells all differentiate a social encounter from a combat one. In most cases, you don't need to worry about character's movements, nor do you need a map. Some examples of social encounters include:",{"type":"list","items":["Proving someone's innocence in front of a judge.","Convincing a neighboring monarch to help defend against an invasion.","Besting a rival bard in a battle of wits.","Exposing a villain's deception before a noble court."]},{"type":"pf2-h4","page":494,"name":"Initiative and Actions","entries":["Initiative in a social encounter typically has characters rolling {@skill Society} or a Charisma-based skill, such as {@skill Diplomacy} or {@skill Deception}. As with other encounters, a character's approach to the conflict determines which skill they'll roll. On a character's turn, they typically get to attempt one roll, usually by using a skill action. Let the player roleplay what their character says and does, then determine what they'll roll. Allow them to use any abilities or spells that might help them make their case, though keep in mind that when most people see the visual signs of a spell being cast, they think someone is using magic to try to influence or harm them, and they have a negative reaction.","Good social encounters include an opposition. This can be direct, such as a rival who argues against the characters' case, or passive, such as a mob that automatically becomes more unruly as each round passes. Give the opposition one or more positions in the initiative order so you can convey what it is doing. You can create game statistics for the opposition, especially if it's an individual, but in situations like that of the unruly mob, you might need nothing more than establish a set of increasingly difficult DCs."],"source":"CRB"},{"type":"pf2-h4","page":495,"name":"Measuring Success and Progress","entries":["You'll need to decide how to measure the characters' success in social encounters, because there's no AC to target or HP to whittle down. Chapter 4 includes guidance on setting DCs for social skill actions, often using a target's Will DC. If you need a DC for people who don't have stats, such as a crowd or an NPC for whom you haven't already generated statistics, use the guidelines on setting DCs, found on page 503. You can either pick a simple DC or use a level-based DC, estimating a level for the subject or how challenging it should be to sway them.","The attitude conditions—{@condition hostile}, {@condition unfriendly}, {@condition indifferent}, friendly, and helpful—provide a useful way to track the progress of a social encounter. Use these to represent the attitude of an authority, a crowd, a jury, or the like. A typical goal for a social encounter is to change the attitude of a person or group to helpful so they assist you, or calming a hostile group or person to defuse a situation. Try to give the players a clear idea of how much they've progressed as the encounter proceeds.","Another option is to track the number of successes or failures the characters accrue. For instance, you might need to trick four guards into leaving their posts, and count each successful attempt to Lie or Create a Diversion toward a total of four necessary successes. You can combine these two methods; if the PCs need a group of important nobles to vote their way, the goal of the encounter might be to ensure that a majority of the nobles have a better attitude toward the PCs than they have of a rival—all within a limited time frame."],"source":"CRB"},{"type":"pf2-h4","page":495,"name":"Consequences","entries":["When you set stakes at the start of a social encounter, give an idea of the consequences. Beyond whatever narrative benefits player characters might gain, a social encounter usually includes an XP award. Because these are encounters along the same lines as combat encounters, they grant a sizable amount of XP, typically that of a moderate accomplishment, or even a major accomplishment if the encounter was the culmination of long-term plans or a significant adversary got their comeuppance.","The outcome of a social encounter should direct the story of the game. Look for repercussions. Which NPCs might view the PCs more favorably now? Which might hold a grudge or formulate a new plan? A social encounter can seal the fate of an NPC and end their story, but this isn't true for player characters. Even if something looks truly dire for them, such as a death sentence, the social encounter isn't the end—there's still time for desperate heroics or a twist in the story."],"source":"CRB"}],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":496,"name":"Exploration","entries":["Exploration mode is intentionally less regimented than encounters. As a result, during exploration you'll be making judgment calls on just about everything that happens.","Fundamentally, exploration is all about rewarding the PCs for learning about their surroundings. To facilitate this, it's especially important to have and convey a clear mental picture of the group's surroundings. You'll be better able to keep track of where the players are and describe the sights, sounds, and other sensations of their adventuring locales. Encourage the players to have their characters truly explore, and reward their curiosity. The things they try to do in exploration mode show you what they're interested in and what they consider important.","As you play, you'll get a good feel for the aspects of exploration that intrigue certain players, and you can add more of those things to your adventures or emphasize these points in published adventures.","{@b Stakes:} Low to moderate. Exploration mode should be used when there's some amount of risk, but no immediate danger. The PCs might be in an environment where they're likely to face monsters or hazards, but they usually stay in exploration mode until they enter a fight or engage in some other direct interaction.","{@b Time Scale:} When the PCs are in exploration mode, time in the game world passes much faster than real-world time at the table, so it's rarely measured out to the second or the minute. You can speed up or slow down how quickly things are happening as needed. If it's important to know exactly how much time is passing, you can usually estimate time spent in exploration mode to 10-minute increments.","{@b Actions and Reactions:} Though exploration isn't broken into rounds, exploration activities assume the PCs are spending part of their time using actions, such as Seeking or Interacting. If they have specific actions they want to use, they should ask; you can decide whether the actions apply and whether to switch to encounter mode for greater detail. PCs can use any relevant reactions that come up during exploration mode.",{"type":"pf2-h3","page":496,"name":"Exploration Activities","entries":["In exploration mode, each player who wants to do something beyond just traveling chooses an exploration activity for their character. The most common activities are Avoid Notice, Detect Magic, Hustle, and Search, though there are many options available. While players usually hew close to these default activities, there's no need for them to memorize the exploration activities and use them exactly. Instead, allow each player to describe what their character is doing. Then, as the GM, you can determine which activity applies. This also means you determine how an activity works if the character's actions differ from those on the list.","The following sections discuss exploration activities that require adjudication from you beyond the guidelines for players detailed on pages 479–480 of Chapter 9.",{"type":"pf2-h4","page":496,"name":"Detect Magic","entries":["This activity doesn't enable characters to automatically find every single magical aura or object during travel. Hazards that require a minimum proficiency can't be found with {@spell detect magic}, nor can illusions of equal or higher level than the spell.","When characters find something magical using this activity, let them know and give them the option to stop and explore further or continue on. Stopping brings you into a more roleplay-heavy scene in which players can search through an area, assess different items, or otherwise try to figure out the source of the magic and what it does. Continuing on might cause the group to miss out on beneficial magic items or trigger a magic trap."],"source":"CRB"},{"type":"pf2-h4","page":496,"name":"Follow the Expert","entries":["A skilled character can help out less skilled allies who choose to {@action Follow the Expert}. This is a good way to help a character with a low {@skill Stealth} modifier sneak around, get a character with poor {@skill Athletics} up a steep cliff, and so on. Usually, a character who is {@action Following the Expert} can't perform other exploration activities or follow more than one person at a time."],"source":"CRB"},{"type":"pf2-h4","page":496,"name":"Investigate","entries":["As with {@action Searching} or {@action Detecting Magic}, the initial result of {@action Investigating} is usually enough to give the investigator a clue that leads into a more thorough examination, but it rarely gives all possible information. For instance, a character might note that the walls of a dungeon are covered with {@language Abyssal} writing, but they would need to stop to read the text or determine that it's written in blood."],"source":"CRB"},{"type":"pf2-h4","page":496,"name":"Search","entries":["With a successful Perception check while {@action Search||Searching}, a character notices the presence or absence of something unusual in the area, but it doesn't provide a comprehensive catalog of everything there. Instead, it gives a jumping-off point for closer inspection or an encounter. For instance, if an area has both a DC 30 secret door and a DC 25 trap, and a {@action Search||Searching} character got a 28 on their Perception check, you would tell the player that their character noticed a trap in the area, and you'd give a rough idea of the trap's location and nature. The party needs to examine the area more to learn specifics about the trap, and someone would need to Search again to get another chance to find the secret door.","If an area contains many objects or something that will take a while to search (such as a cabinet full of papers), {@action Search||Searching} would reveal the cabinet, but the PCs would have to examine it more thoroughly to check the papers. This usually requires the party to stop for a complete search.","You roll a secret Perception check for a {@action Search||Searching} character to detect any secrets they pass that's in a place that stands out (such as near a door or a turn in a corridor), but not one that's in a more inconspicuous place (like a random point in a long hallway) unless they are searching particularly slowly and meticulously."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-brown-box","page":498,"name":"EXPLORATION ACTIVITIES","entries":["The following exploration activities are fully detailed on pages 479–480 of Chapter 9. Many more appear within Chapter 4: Skills.",{"type":"list","items":["{@action Avoid Notice}","{@action Defend}","{@action Detect Magic}","{@action Follow the Expert}","{@action Hustle}","{@action Investigate}","{@action Repeat a Spell}","{@action Scout}","{@action Search}"]},{"type":"pf2-title","name":"Improvising New Activities"},"If a player wants to do something not covered by other rules, here are some guidelines. If the activity is similar to an action someone could use in an encounter, such as Avoid Notice, it usually consists of a single action repeated roughly 10 times per minute (such as using the Sneak action 10 times) or an alternation of actions that works out similarly (such as Search, which alternates Stride and Seek). An activity using a quicker pace, corresponding to roughly 20 actions per minute, might have limited use or cause fatigue, as would one requiring intense concentration.","You might find that a player wants to do something equivalent to spending 3 actions every 6 seconds, just like they would in combat. Characters can exert themselves to this extent in combat only because combat lasts such a short time—such exertion isn't sustainable over the longer time frame of exploration."],"source":"CRB"},{"type":"pf2-h3","page":497,"name":"Setting a Party Order","entries":["In exploration mode, it often matters which characters are in the front or back of the party formation. Let the players decide among themselves where in the group their characters are while exploring. This order can determine who gets attacked first when enemies or traps threaten from various directions. It's up to you to determine the specifics of who gets targeted based on the situation.","When you come out of exploration mode, the group usually remains in the same general formation. Decide the PCs' exact positions, with their input, if you're moving to a grid (as usually happens at the start of a combat encounter). If they come out of exploration mode on their own terms, they can move around as they see fit. For example, if they detect a trap and the rogue starts attempting to disarm it, the other characters can move to whatever locations they think are safe."],"source":"CRB"},{"type":"pf2-h3","page":497,"name":"Adverse Terrain and Weather","entries":["Exploration gets slower when the party faces dense jungles, deep snow, sandstorms, extreme heat, or similar difficult conditions. You decide how much these factors impact the characters' progress. The specific effects of certain types of terrain and weather are described starting on page 512.","{@quickref difficult terrain||3|terrain} such as thick undergrowth usually slows down progress. Unless it's important how far the group gets in a particular time frame, this can be covered with a quick description of chopping through the vines or trudging through a bog. If the characters are on a deadline, adjust their progress on {@table Travel Speed||Table 9–2: Travel Speed}, typically cutting it in half if almost all of the land is {@quickref difficult terrain||3|terrain} or to one-third for {@quickref greater difficult terrain||3|terrain}.","Hazardous terrain, such as the caldera of an active volcano, might physically harm the player characters. The group might have the option to travel directly through or go around by spending more time. You can transition into a more detailed scene while the characters move through hazardous terrain and attempt to mitigate the damage with spells or skill checks. If they endure hazardous terrain, consider giving the PCs a minor or moderate XP reward at the end of their exploration, with slightly more XP if they took smart precautions to avoid taking damage.","Dangerous crevasses, swampy bogs, quicksand, and similar dangers are environmental hazards, which are described beginning on page 512."],"source":"CRB"},{"type":"pf2-h3","page":498,"name":"Hazards","entries":["Exploration can get broken up by traps and other hazards (see Hazards on page 520). Simple hazards pose a threat to the PCs only once and can be dealt with in exploration mode. Complex hazards require jumping into encounter mode until the hazard is dealt with. Disabling a trap or overcoming a hazard usually takes place in encounter mode. PCs have a better chance to detect hazards while exploring if they're using the Search activity (and the Detect Magic activity, in the case of some magic traps)."],"source":"CRB"},{"type":"pf2-h3","page":498,"name":"Rolling Initiative","entries":["Transitioning from exploration to an encounter usually involves rolling for initiative. Call for initiative once a trap is triggered, as soon as two opposing groups come into contact, or when a creature on one side decides to take action against the other. For example:",{"type":"list","items":["A group of PCs are exploring a cavern. They enter a narrow passage patrolled by a group of kobold warriors. Now that the two groups are in the same area, it's time to roll initiative.","Amiri and a kobold champion agree to have a {@condition friendly} wrestling match. They square off on a patch of dirt, and you call for initiative using {@skill Athletics}.","Merisiel and Kyra are negotiating with the kobold king. Things aren't going well, so Merisiel decides to launch a surprise attack. As soon as she says this is her plan, you call for initiative.","Harsk and Ezren are trying to Balance across a narrow beam to reach an isolated kobold treasure trove. When they get halfway across, a red dragon who was hiding behind the mountain flies around to attack! As soon as the dragon makes its appearance, you call for an initiative roll."]},{"type":"pf2-h4","page":498,"name":"Initiative after Reactions","entries":["In some cases, a trap or a foe has a reaction that tells you to roll initiative. For instance, a complex trap that's triggered might make an attack with its reaction before the initiative order begins. In these cases, resolve all the results of the reaction before calling for initiative rolls."],"source":"CRB"},{"type":"pf2-h4","page":498,"name":"Choosing the Type of Roll","entries":["When choosing what type of roll to use for initiative, lean toward the most obvious choice. The most common roll is {@skill Perception}; this is what the kobolds would use in the first example, as would Kyra and the kobold king in the third example. The next most common skills to use are {@skill Stealth} (for sneaking up, like the dragon in the last example) and {@skill Deception} (for tricking opponents, like Merisiel in the third example). For social contests, it's common to use {@skill Deception}, {@skill Diplomacy}, {@skill Intimidation}, {@skill Performance}, or {@skill Society}.","If you're unsure what roll to call for, use {@skill Perception}. If a different type of roll could make sense for a character, you should usually offer the choice of that roll or {@skill Perception} and let the player decide. Don't do this if it's absolutely clear another kind of check matters more sense than {@skill Perception}, such as when the character is sneaking up on enemies and should definitely use {@skill Stealth}.","You can allow a player to make a case that they should use a different skill than {@skill Perception}, but only if they base it on something they've established beforehand. For example, if in the prelude to the attack, Merisiel's player had said, \"I'm going to dangle down off the chandelier to get the drop on them,\" you could let them use {@skill Acrobatics} for their initiative roll. If they just said, \"Hey, I want to attack these guys. Can I use {@skill Acrobatics}?\" without having established a reason beforehand, you probably shouldn't allow it."],"source":"CRB"},{"type":"pf2-h4","page":498,"name":"Character Placement","entries":["When calling for initiative for a combat encounter, you'll need to decide where the participants in the encounter go on the battle map. Use the party's order, described on page 497, as a base. You can move forward characters who are using {@skill Stealth} to get into position, putting them in a place they could reasonably have moved up to before having a chance to be detected. Consult with each player to make sure their position makes sense to both of you."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-brown-box","page":499,"name":"MONITORING SPELL DURATIONS","entries":["Spell durations are approximate values that codify the vagaries and eccentricities of magic into a convenient number. However, that doesn't mean you can set your watch by a spell with a 1-hour duration. This is one of the reasons the passage of time outside of encounters is in your hands and isn't as precise as encounter rounds.","If a question arises about whether a spell has expired, you make the call. You shouldn't be punitive, but you also shouldn't treat characters like they move with clockwork precision and perfect efficiency between encounters.","There are two times these durations matter most: when players try to fit multiple encounters within the duration of a spell, and when they want to use a spell before a fight and keep it in effect during the encounter.",{"type":"pf2-title","name":"Multiple Encounters"},"A 1-minute spell should last for multiple encounters only if the encounters happen in very close proximity (usually in two adjoining rooms) and if the PCs go directly from one fight to the next without leaving encounter mode. If they want to stop and heal, or if the party debates whether to go on, the process takes enough time that the spell runs out.","Be more generous with spells lasting 10 minutes or more. A 10-minute spell easily lasts for one encounter and could continue for another if the locations are close. A 1-hour spell usually lasts for several encounters.",{"type":"pf2-title","name":"Before a Fight"},"Casting advantageous spells before a fight (sometimes called \"pre-buffing\") gives the characters a big advantage, since they can spend more combat rounds on offensive actions instead of preparatory ones. If the players have the drop on their foes, you usually can let each character cast one spell or prepare in some similar way, then roll initiative.","Casting preparatory spells before combat becomes a problem when it feels rote and the players assume it will always work—that sort of planning can't hold up in every situation! In many cases, the act of casting spells gives away the party's presence. In cases where the PCs' preparations could give them away, you might roll for initiative before everyone can complete their preparations."],"source":"CRB"},{"type":"pf2-h3","page":499,"name":"Resting","entries":["Characters require 8 hours of sleep each day. Though resting typically happens at night, a group gains the same benefits for resting during the day. Either way, they can gain the benefits of resting only once every 24 hours. A character who rests for 8 hours recovers in the following ways:",{"type":"list","items":["The character regains Hit Points equal to their Constitution modifier (minimum 1) multiplied by their level. If they rest without any shelter or comfort, you might reduce this healing by half (to a minimum of 1 HP).","The character loses the {@condition fatigued} condition.","The character reduces the severity of the {@condition doomed} and {@condition drained} conditions by 1.","Most spellcasters need to rest before they regain their spells for the day."]},"A group in exploration mode can attempt to rest, but they aren't entirely safe from danger, and their rest might be interrupted. The 8 hours of rest do not need to be consecutive, however, and after an interruption, characters can go back to sleep.","Sleeping in armor results in poor rest and causes a character to wake up fatigued. If a character would have recovered from fatigue, sleeping in armor prevents it.","If a character goes more than 16 hours without going to sleep, they become fatigued.","Taking long-term rest for faster recovery is part of downtime and can't be done during exploration. See page 502 for these rules.",{"type":"pf2-h4","page":499,"name":"Resting","entries":["Adventuring parties usually put a few people on guard to watch out for danger while the others rest. Spending time on watch also interrupts sleep, so a night's schedule needs to account for everyone's time on guard duty. Table 10–3:","Watches and Rest on the next page indicates how long the group needs to set aside for rest, assuming everyone gets a rotating watch assignment of equal length.","If a surprise encounter would occur during rest, you can roll a die to randomly determine which character is on watch at the time. All characters roll initiative; sleeping characters typically roll Perception with a –4 status penalty for being unconscious. They don't automatically wake up when rolling initiative, but they might roll a Perception check to wake up at the start of their turn due to noise. If a savvy enemy waits for a particularly vulnerable character to take watch before attacking, the attack can happen on that character's watch automatically. However, you might have the ambusher attempt a {@skill Stealth} check against the Perception DCs of all characters to see if anyone noticed its approach.",{"type":"statblock","tag":"table","source":"CRB","name":"Watches and Rest"}],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":500,"name":"Daily Preperations","entries":["Just before setting out to explore, or after a night's rest, the PCs spend time to prepare for the adventuring day. This typically happens over the span of 30 minutes to an hour in the morning, but only after 8 full hours of rest. Daily preparations include the following.",{"type":"list","items":["Spellcasters who prepare spells choose which spells they'll have available that day.","Focus Points and other abilities that reset during daily preparations refresh. This includes abilities that can be used only a certain number of times per day.","Each character equips their gear. This includes donning their armor and strapping on their weapons.","Characters invest up to 10 worn magic items to gain their benefits for the day (page 531)."]}],"source":"CRB"},{"type":"pf2-h3","page":500,"name":"Starvation and Thirst","entries":["Typically characters eat and drink enough to survive comfortably. When they can't, they're fatigued until they do. After 1 day + a creature's Constitution modifier without water, it takes 1d4 damage each hour that can't be healed until it quenches its thirst. After the same amount of time without food, it takes 1 damage each day that can't be healed until it sates its hunger."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":500,"name":"Downtime","entries":["In downtime, you can sum up the important events of a whole day with just one roll. Use this mode when the characters return home or otherwise aren't adventuring.","Usually, downtime is a few minutes at the start of a session or a break between major chapters of an adventure. As with exploration, you might punctuate downtime with roleplaying or encounters when it's natural to do so.","This section describes ways to handle downtime and details several activities and considerations specific to downtime, such as cost of living, buying and selling goods, long-term rest, and retraining. Most other downtime activities are skill actions; a number of these common downtime activities and their associated skills are listed below. See the relevant skills in Chapter 4 for details.",{"type":"list","items":["{@action Craft} ({@skill Crafting})","{@action Earn Income} ({@skill Crafting}, {@skill Lore}, {@skill Performance})","{@action Treat Disease} ({@skill Medicine})","{@action Create Forgery} ({@skill Society})","{@action Subsist} ({@skill Society}, {@skill Survival})"]},"{@b Stakes:} None to low. Downtime is the counterpart to adventuring and covers low-risk activities.","{@b Time Scale:} Downtime can last days, weeks, months, or years in the game world in a few minutes of real time.","{@b Actions and Reactions:} If you need to use actions and reactions, switch to exploration or encounter mode.","A creature that can't act is unable to perform most downtime activities, but it can take long-term rest.",{"type":"pf2-h3","page":500,"name":"Playing out a Downtime Day","entries":["At the start of a given day of downtime, have all the players declare what their characters are trying to accomplish that day. You can then resolve one character's efforts at a time (or group some characters together, if they are cooperating on a single project). Some activities, such as Earning Income, require only a simple roll and some embellishment from you and the player. Other activities are more involved, incorporating encounters or exploration. You can call on the players to play out their downtime activities in any order, though it's often best to do the simplest ones first. Players who aren't part of a more involved activity might have time to take a break from the table while the more complex activities are played out.","Characters can undertake their daily preparations if they want, just as they would on a day of exploration. Ask players to establish a standard set of preparations, and you can assume the characters go through the same routine every day unless their players say otherwise.",{"type":"pf2-h4","page":500,"name":"Cooperation","entries":["Multiple characters can cooperate on the same downtime task. If it's a simple task that requires just one check, such as a party Subsisting as they await rescue on a desert island, one character rolls the necessary check while everyone else Aids that character. If it's a complex task, assume all of them are working on different parts of it at one time, so all their efforts count toward its completion. For example, a party might collaborate to build a theater, with one character drawing up architectural plans, one doing manual labor, and one talking to local politicians and guilds."],"source":"CRB"},{"type":"pf2-h4","page":500,"name":"Checks","entries":["Some downtime activities require rolls, typically skill checks. Because these rolls represent the culmination of a series of tasks over a long period, players can't use most abilities or spells that manipulate die rolls, such as activating a magic item to gain a bonus or casting a fortune spell to roll twice. Constant benefits still apply, though, so someone might invest a magic item that gives them a bonus without requiring activation. You might make specific exceptions to this rule. If something could apply constantly, or so often that it might as well be constant, it's more likely to be used for downtime checks."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":501,"name":"Longer Periods of Downtime","entries":["Running downtime during a long time off—like several weeks, months, or even years—can be more challenging.","However, it's also an opportunity for the characters to progress toward long-term plans rather than worrying about day-to-day activities. Because so much time is involved, characters don't roll a check for each day. Instead, they deal with a few special events, average out the rest of the downtime, and pay for their cost of living.",{"type":"pf2-h4","page":501,"name":"Events","entries":["After the characters state what they want to achieve in their downtime, select a few standout events for each of them—usually one event for a period of a week or a month, or four events for a year or longer. These events should be tailored to each character and their goals, and they can serve as hooks for adventures or plot development.","Though the following examples of downtime events all involve Earning Income, you can use them to spark ideas for other activities. A character using Perform to Earn Income could produce a commanding performance of a new play for visiting nobility. Someone using {@skill Crafting} might get a lucrative commission to craft a special item. A character with Lore might have to research a difficult problem that needs a quick response.","PCs who want to do things that don't correspond to a specific downtime activity should still experience downtime events; you just choose the relevant skill and DC. For example, if a character intends to build their own library to house their books on magic, you might decide setting the foundation and organizing the library once construction is finished are major events. The first could be a {@skill Crafting} check, and the second an {@skill Arcana} or Library Lore check."],"source":"CRB"},{"type":"pf2-h4","page":501,"name":"Average Progress","entries":["For long periods of downtime, you might not want to roll for every week, or even every month. Instead, set the level for one task using the lowest level the character can reliably find in the place where they spend their downtime (see Difficulty Classes on page 503 for more on setting task levels). If the character fails this check, you might allow them to try again after a week (or a month, if you're dealing with years of downtime). Don't allow them to roll again if they succeeded but want to try for a critical success, unless they do something in the story of the game that you think makes it reasonable to allow a new roll.","The events you include during a long stretch of downtime should typically feature higher-level tasks than the baseline. For instance, a character Earning Income with Sailing Lore for 4 months might work at a port doing 1st-level tasks most of the time, but have 1 week of 3rd-level tasks to account for busy periods. You'll normally have the player roll once for the time they spent at 1st-level tasks and once for the week of 3rd-level tasks."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":502,"name":"Cost of Living","entries":["For short periods of downtime, characters are usually just passing through a settlement or spending a bit of time there. They can use the prices for inn stays and meals found on page 294. For long stretches of downtime, use the values on {@table Cost of Living||Table 6–16: Cost of Living} on the same page. Deduct these costs from a character's funds after they gain any money from their other downtime activities.","A character can live off the land instead, but each day they do, they typically use the Subsist activity (page 240) to the exclusion of any other downtime activity."],"source":"CRB"},{"type":"pf2-h3","page":502,"name":"Buying and Selling","entries":["After an adventure yields a windfall, the characters might have a number of items they want to sell. Likewise, when they're flush with currency, they might want to stock up on gear. It usually takes 1 day of downtime to sell off a few goods or shop around to buy a couple items. It can take longer to sell off a large number of goods, expensive items, or items that aren't in high demand.","This assumes the characters are at a settlement of decent size during their downtime. In some cases, they might spend time traveling for days to reach bigger cities.","As always, you have final say over what sort of shops and items are available.","An item can usually be purchased at its full Price and sold for half its Price. Supply and demand adjusts these numbers, but only occasionally."],"source":"CRB"},{"type":"pf2-h3","page":502,"name":"Long-Term Rest","entries":["Each full 24-hour period a character spends resting during downtime allows them to recover double what they would for an 8-hour rest (as listed on page 499). They must spend this time resting in a comfortable and secure location, typically in bed.","If they spend significantly longer in bed rest—usually from a few days to a week of downtime—they recover from all damage and most nonpermanent conditions. Characters affected by diseases, long-lasting poisons, or similar afflictions might need to continue attempting saves during downtime. Some curses, permanent injuries, and other situations that require magic or special care to remove don't end automatically during long-term rest."],"source":"CRB"},{"type":"pf2-h3","page":502,"name":"Retraining","entries":["The retraining rules on page 481 allow a player to change some character choices, but they rely on you to decide whether the retraining requires a teacher, how long it takes, if it has any associated costs, and if the ability can be retrained at all. It's reasonable for a character to retrain most choices, and you should allow them. Only choices that are truly intrinsic to the character, like a sorcerer's bloodline, should be off limits without extraordinary circumstances.","Try to make retraining into a story. Use NPCs the character already knows as teachers, have a character undertake intense research in a mysterious old library, or ground the retraining in the game's narrative by making it the consequence of something that happened to the character in a previous session.",{"type":"pf2-h4","page":502,"name":"Time","entries":["Retraining a feat or skill increase typically takes a week. Class features that require a choice can also be retrained but take longer: at least a month, and possibly more. Retraining might take even longer if it would be especially physically demanding or require travel, lengthy experimentation, or in-depth research, but usually you won't want to require more than a month for a feat or skill, or 4 months for a class feature.","A character might need to retrain several options at once. For instance, retraining a skill increase might mean they have skill feats they can no longer use, and so they'll need to retrain those as well. You can add all this retraining time together, then reduce the total a bit to represent the cohesive nature of the retraining."],"source":"CRB"},{"type":"pf2-h4","page":502,"name":"Instruction and Cost","entries":["The rules abstract the process of learning new things as you level up—you're learning on the job—but retraining suggests that the character works with a teacher or undergoes specific practice to retrain. If you want, you can entirely ignore this aspect of retraining, but it does give an opportunity to introduce (or reintroduce) NPCs and further the game's story. You can even have one player character mentor another, particularly when it comes to retraining skills.","Any costs to retraining should be pretty minor—about as much as a PC could gain by Earning Income over the same period of time. The costs are mostly there to make the training feel appropriate within the context of the story, not to consume significant amounts of the character's earnings. A teacher might volunteer to work without pay as a reward for something the character has already done, or simply ask for a favor in return."],"source":"CRB"},{"type":"pf2-h4","page":502,"name":"Disallowed Options","entries":["While some character options can't normally be retrained, you can invent ways for a character to retrain even these—special rituals, incredible quests, or the perfect tutor. For example, ability scores can't normally be retrained, as that can unbalance the game. But not all players necessarily want to exploit the system—maybe a player simply wants to swap an ability boost between two low stats. In situations like this, you could let them spend a few months working out or studying to reassign an ability boost."],"source":"CRB"}],"source":"CRB"}],"source":"CRB"}],"data":{"quickref":5},"source":"CRB"},{"type":"section","page":489,"name":"Running a Game Session","entries":["A campaign happens over a series of sessions. Each session is usually several hours long, with multiple encounters, some exploration, and possibly downtime. Your session can be compared to an episode of a TV show; it should include some twists, turns, and changes, and end leaving people excited about what comes next.",{"type":"pf2-h3","page":489,"name":"Planning a Session","entries":["One of the greatest challenges in gaming is scheduling a time for everyone to get together and play. Often, this responsibility falls on you as the GM, since you're the one who has to prepare your game between sessions. Many games have a set schedule, such as once per week, once every 2 weeks, or once per month. The less frequently your group meets, the better notes and recaps you'll need to keep everyone on the same page.","Plan a time for everybody will arrive, and also try to set a time when playing the game will begin. This can make it easier for everyone to finish chatting, catching up, and eating in a timely fashion so you can start playing the game. Having an end time in mind is also fairly important. A typical game session lasts about 4 hours, though some groups hold 2-hour sessions or play marathon games. Less than 2 hours usually isn't enough time to get much done in most Pathfinder campaigns. If your session will be longer than 2 hours, plan out some 15-minute breaks (in addition to bathroom and beverage breaks, which players can take as needed)."],"source":"CRB"},{"type":"pf2-h3","page":490,"name":"Starting a Session","entries":["Once everyone is ready, get everyone's attention and cover the following topics. These are in a rough order that you can change based on your group's style or a session's needs.",{"type":"list","items":["Recap what happened during the previous sessions.","Establish where the characters are at the beginning of this session. Have they been resting since their last challenge? Are they in a hallway, preparing to raid the next room of a dungeon? Tell players whether their characters had time to rest or recover since the last session.","Remind players that they each have 1 Hero Point at the start of the session ({@quickref here||4|rewards|1}).","Establish goals. The players should have an idea of what they want to do next. Reestablish any goals the group already had, then let the players weigh in on whether these goals still apply, and on whether there's anything else they hope to accomplish in this session.","Commence adventuring! Decide which mode of play you're going to start in, then lead off with a verbal prompt to get the action started. You might ask a question related to a particular character, have everyone immediately roll initiative as a monster attacks, or briefly describe the environment and sensations that surround the player characters, allowing them to react."]}],"source":"CRB"},{"type":"pf2-h3","page":490,"name":"Running a Session","entries":["During a session, you're in charge of keeping the game's action moving, managing the different modes of play, fielding questions, and making rules decisions. You'll also want to keep a rough eye on the time, so you can end when most convenient for the group.","You're the interface between the rules and the imagined world you and the other players share. They will ask you questions, and they'll act based on their own assumptions. It's up to you to establish what's true in the world, but you don't do this unilaterally. You're informed by the setting's backstory, your preparations, and the suggestions and assumptions the other players bring to the table. Keep in mind that until you announce something, your own plans are subject to change. For example, if you originally intended the owner of a tavern to be kindly and well-intentioned, but a player misreads her and invents an interesting conspiracy theory regarding her intentions that sounds fun, you might convert the tavern owner into an agent of evil after all.","You'll also determine when PCs and foes need to attempt checks, as well as the consequences of those rolls. This comes up most often outside of encounters, as encounters are more regimented about when checks happen and how they are resolved. In an encounter, a player can usually determine their own character's turn, with you chiming in only to say whether an attack hits or if something in the environment requires a character to attempt a check.",{"type":"pf2-h4","page":490,"name":"The Spotlight","entries":["As you run the game, keep track of who has the spotlight. It can be easy to keep attention on the most outgoing player or character, but you need to check in with all the players. If a player hasn't contributed in some time, stop and ask, \"What's your character doing at this point?\" If the player's not sure, add a detail or nonplayer character to the scene that the player might find interesting."],"source":"CRB"},{"type":"pf2-h4","page":490,"name":"Distractions and Interrupting","entries":["Maintaining the players' attention keeps a game moving and leads to memorable moments when everyone's in the same zone. Too many interruptions break the flow. This is fine in moderation. Distractions become a problem if they're too frequent, as they cause people to miss things and make misinformed decisions as the session becomes disconnected. Yet every game includes breaks—sometimes intentional, sometimes not—and digressions. Finding the right balance of diversions for your group is essential.","A game is a social gathering, so there's definitely a place for conversation that's not directly related to playing the game. These interruptions become a problem if they're too frequent, or if people are talking over others. If a player repeatedly interrupts you or other people or undercuts every crucial moment of the game with a joke, talk to them about limiting their comments to appropriate times. Often, all you need to do is hold up your hand or otherwise indicate that the player is talking out of turn to delay them until after you or another speaker finishes talking.","Phones and other mobile devices are another major source of distraction. Banning them entirely is often impractical—many players use apps to roll dice or manage their character sheets, or they need to answer texts from their partner, check in on a work project, or otherwise stay connected with people who rely on them. However, you can set ground rules against using a device for anything that's not time-sensitive or game-related, such as refreshing social media, checking the score of a hockey game, playing a mobile game, or answering a non-urgent text. You can relax these rules for players when their characters are \"offstage.\" If a player's character isn't in a scene, that might be a good time for the player to use a mobile device."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-brown-box","page":491,"name":"OFF-SESSION GAMING","entries":["Session play with a full group isn't the only way to play Pathfinder. Finding opportunities to expand on the game outside of its regular schedule can keep your group engaged between sessions.","You can get together with a single player to run a mini-session for their character, covering a mission that's important to their story but doesn't concern the rest of the group. You and the players can work out what their characters do during solid stretches of downtime via e-mail or chat messages. You can also give players opportunities to collaborate on details of the story, like having a player design a heraldic symbol for the adventuring group or map out their home base. You might even decide to award a Hero Point at the next session to a player for events that happened outside a session.","Some events aren't suitable for handling outside of sessions. Any event that strongly affects a character whose player isn't present should be handled at the table when everyone can attend. It's also helpful to recap events that took place outside of the session for all characters so no one feels excluded or lost."],"source":"CRB"},{"type":"pf2-h3","page":491,"name":"Adjudicating the Rules","entries":["As the GM, you are responsible for solving any rules disputes. Remember that keeping your game moving is more important than being 100% correct. Looking up rules at the table can slow the game down, so in many cases it's better to make your best guess rather than scour the book for the exact rule. (It can be instructive to look those rules up during a break or after the session, though!)","To make calls on the fly, use the following guidelines, which are the same principles the game rules are based on. You might want to keep printouts of these guidelines and the DC guidelines (page 503) for quick reference.",{"type":"list","items":["If you don't know how long a quick task takes, go with 1 action, or 2 actions if a character shouldn't be able to perform it three times per round.","If you're not sure what action a task uses, look for the most similar basic action. If you don't find one, make up an undefined action (page XXX) adding any necessary traits (usually attack, concentrate, manipulate, or move).","When two sides are opposed, have one roll against the other's DC. Don't have both sides roll (initiative is the exception to this rule). The character who rolls is usually the one acting (except in the case of saving throws).","If an effect raises or lowers chances of success, grant a +1 circumstance bonus or a –1 circumstance penalty.","If you're not sure how difficult a significant challenge should be, use the DC for the party's level.","If you're making up an effect, creatures should be incapacitated or killed on only a critical success (or for a saving throw, on a critical failure).","If you don't know what check to use, pick the most appropriate skill. If no other skill applies to a check to Recall Knowledge, use an appropriate Lore skill (usually at an untrained proficiency rank).","Use the characters' daily preparations as the time to reset anything that lasts roughly a day.","When a character accomplishes something noteworthy that doesn't have rules for XP, award them XP for an accomplishment (10 to 30 XP, as described {@quickref here||4|rewards|1}).","When the PCs fail at a task, look for a way they might fail forward, meaning the story moves forward with a negative consequence rather than the failure halting progress entirely."]}],"source":"CRB"},{"type":"pf2-h3","page":492,"name":"Special Circumstances","entries":["The player characters in your group will at times attempt tasks that should be easier or harder than the rules or adventure would otherwise lead you to expect, such as a PC Gathering Information in their hometown. In these cases, you can just apply a circumstance bonus or penalty. Usually, this is +1 or –1 for a minor but significant circumstance, but you can adjust this bonus or penalty to +2 or –2 for a major circumstance. The maximum bonus or penalty, +4 or –4, should apply only if someone has an overwhelming advantage or is trying something extremely unlikely but not quite impossible.","You can also add traits to actions. Let's say that during a fight, Seelah dips her sword into a brazier of hot coals before swinging it at an enemy with a weakness to fire. You could add the fire trait to this attack. A PC getting an advantage in this way should usually have to use an action to do so, so Seelah would get the benefit for one attack, but to do it again she'd need to bury her sword in the coals once more."],"source":"CRB"},{"type":"pf2-brown-box","page":492,"name":"SHARING RESPONSIBILITY","entries":["Just because you're the GM and ostensibly in charge doesn't mean you have to do all the extra work to make the campaign run. Some of the tasks described here, like scheduling games, taking notes, and giving recaps, can be delegated to other players. You might also have someone track initiative or the Hit Points of the PCs' foes for you in encounters, or even run those foes if you have a large group and someone would rather do that than control a character of their own. It's also great when someone else can host a session, provide snacks for the group, or take on other responsibilities that aren't directly related to the game.","It's best to figure out a schedule of responsibilities when you're first setting up a game. Ask the players what they're willing to take on. If you start to feel overwhelmed partway through a campaign, you can revisit the topic and try out new options until you find a setup that's comfortable."],"source":"CRB"},{"type":"pf2-h3","page":492,"name":"Incorporating Additional Options","entries":["You might grant players access to additional rule or character options. If you feel confident that allowing a character to take a particular option will be a good addition to your game, then go for it! If you're uncertain or worried about a request, you don't have to allow it, and it's your call to make. However, try to meet players halfway or suggest alternatives. If you want to allow an option on a trial basis but are worried it might become a problem later, talk to the player beforehand and explain that you are tentatively allowing the option, but might change your mind later, after you see how the option can be used during play."],"source":"CRB"},{"type":"pf2-brown-box","page":492,"name":"PAIZO'S PUBLISHED ADVENTURES","entries":["You can purchase the following types of adventures at {@b {@link paizo.com|https://paizo.com}}, your local game store, or many book stores. If you want to acquire all the adventures in a given line, you can purchase a subscription at {@b {@link paizo.com|https://paizo.com}}.",{"type":"pf2-title","name":"Pathfinder Adventure Paths"},"Each monthly volume of a Pathfinder Adventure Path leads into the next as part of a greater story spanning multiple volumes. The first volume of each Adventure Path typically starts at 1st level, and each volume has a self-contained story that eventually leads to a big climax at the end of the final volume. Each volume also typically includes new monsters, rules, and details about the world.","Each Adventure Path has a different theme, and their settings range across the Inner Sea region and beyond.",{"type":"pf2-title","name":"Pathfinder Adventures"},"Pathfinder Adventures are standalone adventures that cover several levels of play. They're self-contained and typically have a unique structure or theme. You can play through a Pathfinder Adventure on its own or as part of your ongoing campaign—some make ideal side adventures for Adventure Paths that have similar themes.",{"type":"pf2-title","name":"Pathfinder Society Scenarios"},"Scenarios are the adventures used by the Pathfinder Society Roleplaying Guild; you can play them as part of the Pathfinder Society or on your own. Each takes about 4 to 5 hours to run, so you can tell a whole story in a short amount of time, but they're also part of a larger continuity and can be combined together to form the basis of a longer campaign."],"source":"CRB"}],"data":{"quickref":5},"source":"CRB"}]}]}} \ No newline at end of file +{"reference":{"bookref-quick":{"name":"Quick Reference","id":"bookref-quick","contents":[{"name":"Character Creation","headers":["Animal Companions","Archetypes","Character Creation","Characters With Disabilities","Familiars","Leveling Up"]},{"name":"Items & Equipment","headers":["Activating Items","Animals","Armor","Carrying and Using Items","Coins and Currency","Constant Abilities","Formulas","Investing Magic Items","Item Damage","Item Level","Items and Sizes","Price","Runes","Scrolls","Services","Shields","Shoddy Items","Staves","Wands","Weapons","Wearing Tools"]},{"name":"Spells","headers":["Cantrips","Casting Spells","Disbelieving Illusions","Durations","Focus Spells","Hostile Actions","Identifying Spells","Innate Spells","Ranges, Areas, and Targets","Reading Spells","Rituals","Saving Throws","Setting Triggers","Spell Attacks","Spell Slots","Walls"]},{"name":"Playing the Game","headers":["Actions","Afflictions","Checks","Concealment and Invisibility","Condition Values","Conditions","Counteracting","Cover","Damage","Downtime Mode","Effects","Encounter Mode","Exploration Mode","Flanking","Game Conventions","Hero Points","Hit Points, Healing, and Dying","Making Choices","Movement","Overriding Conditions","Perception","Special Checks","Specific Checks"]},{"name":"Game Mastering","headers":["Difficulty Classes","Drugs","Environment","Hazards","Planning a Campaign","Preparing an Adventure","Rewards","Running Modes of Play","Running a Game Session"]}]}},"data":{"bookref-quick":[{"type":"entries","entries":[{"type":"section","page":214,"name":"Animal Companions","entries":["An animal companion is a loyal comrade who follows your orders without you needing to use Handle an Animal on it. Your animal companion has the minion trait, and it gains 2 actions during your turn if you use the {@action Command an Animal} action to command it; this is in place of the usual effects of {@action Command an Animal}. If your companion dies, you can spend a week of downtime to replace it at no cost. You can have only one animal companion at a time.",{"type":"pf2-h3","page":214,"name":"Riding Animal Companions","entries":["You or an ally can ride your animal companion as long as it is at least one size larger than the rider. If it is carrying a rider, the animal companion can use only its land Speed, and it can't move and Support you on the same turn. However, if your companion has the mount special ability, it's especially suited for riding and ignores both of these restrictions."],"source":"CRB"},{"type":"pf2-h3","page":214,"name":"Young Animal Companions","entries":["The following are the base statistics for a young animal companion, the first animal companion most characters get. You make adjustments to these statistics depending on the type of animal you choose. As you gain levels, you might make further adjustments as your companion becomes more powerful. An animal companion has the same level you do. Animal companions calculate their modifiers and DCs just as you do with one difference: the only item bonuses they can benefit from are to speed and AC (their maximum item bonus to AC is +2)."],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h4","page":214,"name":"Proficiencies","entries":["Your animal companion uses your level to determine its proficiency bonuses. It's trained in its unarmed attacks, unarmored defense, barding, all saving throws, Perception, {@skill Acrobatics}, and {@skill Athletics}. Animal companions can't use abilities that require greater Intelligence, such as Coerce or Decipher Writing, even if trained in the appropriate skill, unless they have a specialization that allows it."],"source":"CRB"},{"type":"pf2-h4","page":214,"name":"Ability Modifiers","entries":["An animal companion begins with base ability modifiers of {@b Str} +2, {@b Dex} +2, {@b Con} +1, {@b Int}–4, {@b Wis} +1, {@b Cha} +0. Each type has its own strengths and increases two of these modifiers by 1 each. These increases are already calculated into the stat blocks in Companion Types below."],"source":"CRB"},{"type":"pf2-h4","page":214,"name":"Hit Points","entries":["Your animal companion has ancestry Hit Points from its type, plus a number of Hit Points equal to 6 plus its Constitution modifier for each level you have."],"source":"CRB"},{"type":"pf2-h3","page":214,"name":"Mature Animal Companions","entries":["To advance a young animal companion to a mature animal companion (usually a result of one of your class feat choices), increase its Strength, Dexterity, Constitution, and Wisdom modifiers by 1. Increase its unarmed attack damage from one die to two dice (for instance 1d8 to 2d8), and its proficiency rank for Perception and all saving throws to expert. Increase its proficiency ranks in {@skill Intimidation}, {@skill Stealth}, and {@skill Survival} to trained, and if it was already trained in one of those skills from its type, increase its proficiency rank in that skill to expert. If your companion is Medium or smaller, it grows by one size."],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h3","page":214,"name":"Nimble Animal Companions","entries":["To advance a mature animal companion to a nimble animal companion, increase its Dexterity modifier by 2 and its Strength, Constitution, and Wisdom modifiers by 1. It deals 2 additional damage with its unarmed attacks. Increase its proficiency ranks in {@skill Acrobatics} and unarmored defense to expert. It also learns the advanced maneuver for its type. Its attacks become magical for the purpose of ignoring resistances."],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h3","page":214,"name":"Savage Animal Companions","entries":["To advance a mature animal companion to a savage animal companion, increase its Strength modifier by 2 and its Dexterity, Constitution, and Wisdom modifiers by 1. It deals 3 additional damage with its unarmed attacks. Increase its proficiency rank in {@skill Athletics} to expert. It also learns the advanced maneuver for its type. If your companion is Medium or smaller, it grows by one size. Its attacks become magical for the purpose of ignoring resistances."],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h3","page":214,"name":"Companion Types","entries":["The species of animal you choose is called your {@filter companion's type|companionsfamiliars||Type=Companion}. Each {@filter companion type|companionsfamiliars||Type=Companion} has its own statistics. The Size entry indicates your companion's starting size as a young animal companion. Following the size entry are the companion's unarmed attacks, and then its ability modifiers. The Hit Points entry indicates the companion's ancestry Hit Points. The Skill entry indicates an additional trained skill your companion has. The Senses entry lists your companion's special senses. The Speed entry gives your companion's Speeds. The Special entry, if present, lists any other special abilities your companion has, for example whether it often serves as a mount and is particularly appropriate for mounted classes, such as the champion.","The Support Benefit entry indicates a special benefit you gain by {@action Command an Animal||Commanding the Animal} to use the Support action (see below). The Advanced Maneuver entry indicates a powerful new action your companion learns how to use if it becomes a nimble or savage animal companion."],"source":"CRB"},{"type":"pf2-h3","page":217,"name":"Specialized Animal Companions","entries":["Specialized animal companions are more intelligent and engage in more complex behaviors. The first time an animal gains a specialization, it gains the following: Its proficiency rank for unarmed attacks increases to expert. Its proficiency ranks for saving throws and Perception increase to master.","Increase its Dexterity modifier by 1 and its Intelligence modifier by 2. Its unarmed attack damage increases from two dice to three dice, and it increases its additional damage with unarmed attacks from 2 to 4 or from 3 to 6.","Each specialization grants additional benefits. Most animal companions can have only one specialization.",{"type":"pf2-h4","page":217,"name":"Ambusher","entries":["In your companion's natural environment, it can use a Sneak action even if it's currently observed. Its proficiency rank in {@skill Stealth} increases to expert (or master if it was already an expert from its type), and its Dexterity modifier increases by 1. Its proficiency rank for unarmored defense increases to expert, or master if it's nimble."],"source":"CRB"},{"type":"pf2-h4","page":217,"name":"Bully","entries":["Your companion terrorizes foes with dominance displays and pushes them around the battlefield. Its proficiency ranks for {@skill Athletics} and {@skill Intimidation} increase to expert (or master if it was already expert from its type), its Strength modifier increases by 1, and its Charisma modifier increases by 3."],"source":"CRB"},{"type":"pf2-h4","page":217,"name":"Daredevil","entries":["Your companion joins the fray with graceful leaps and dives.","It gains the deny advantage ability, so it isn't {@condition flat-footed} to hidden, undetected, or flanking creatures unless such a creature's level is greater than yours. Its proficiency rank in {@skill Acrobatics} increases to master, and its Dexterity modifier increases by 1. Its proficiency rank in unarmored defense increases to expert, or master if it's nimble."],"source":"CRB"},{"type":"pf2-h4","page":217,"name":"Racer","entries":["Your companion races. It gains a +10-foot status bonus to its Speed, swim Speed, or fly Speed (your choice). Its proficiency in Fortitude saves increases to legendary, and its Constitution modifier increases by 1."],"source":"CRB"},{"type":"pf2-h4","page":217,"name":"Tracker","entries":["Your companion is an incredible tracker. It can move at full Speed while following tracks. Its proficiency rank in {@skill Survival} increases to expert (or master if it was already an expert from its type), and its Wisdom modifier increases by 1."],"source":"CRB"},{"type":"pf2-h4","page":217,"name":"Wrecker","entries":["Your companion smashes things. Its unarmed attacks ignore half an object's Hardness. Its {@skill Athletics} proficiency increases to master, and its Strength modifier increases by 1."],"source":"CRB"}],"data":{"quickrefIndex":true},"source":"CRB"}],"data":{"quickref":1},"source":"CRB"},{"type":"section","page":219,"name":"Archetypes","entries":[{"type":"pf2-h1-flavor","page":219,"entries":["{@i There are infinite possible character concepts, but you might find that the feats and skill choices from a single class aren't sufficient to fully realize your character. Archetypes allow you to expand the scope of your character's class.}"],"source":"CRB"},"Applying an archetype requires you to select archetype feats instead of class feats. Start by finding the archetype that best fits your character concept, and select the archetype's dedication feat using one of your class feat choices. Once you have the dedication feat, you can select any feat from that archetype in place of a class feat as long as you meet its prerequisites. The archetype feat you select is still subject to any selection restrictions on the class feat it replaces. For example, if you gained an ability at 6th level that granted you a 4th-level class feat with the dwarf trait, you could swap out that class feat only for an archetype feat of 4th level or lower with the dwarf trait. Archetype feats you gain in place of a class feat are called archetype class feats.","Occasionally, an archetype feat works like a skill feat instead of a class feat. These archetype feats have the skill trait, and you select them in place of a skill feat, otherwise following the same rules above. These are not archetype class feats (for instance, to determine the number of Hit Points you gain from the Fighter Resiliency archetype feat).","Each archetype's dedication feat represents a certain portion of your character's time and focus, so once you select a dedication feat for an archetype, you must satisfy its requirements before you can gain another dedication feat. Typically, you satisfy an archetype dedication feat by gaining a certain number of feats from the archetype's list. You cannot retrain a dedication feat as long as you have any other feats from that archetype.","Sometimes an archetype feat lets you gain another feat, such as the alchemist's basic concoction. You must always meet the prerequisites of the feat you gain in this way.","Two special kinds of archetypes are designated by the class and multiclass traits. The archetypes in this book are all multiclass archetypes.",{"type":"pf2-h3","page":219,"name":"Multiclass Archetypes","entries":["Archetypes with the multiclass trait represent diversifying your training into another class's specialties. You can't select a multiclass archetype's dedication feat if you are a member of the class of the same name (for instance, a fighter can't select the Fighter Dedication feat)."],"source":"CRB"},{"type":"pf2-h3","page":219,"name":"Class Archetypes","entries":["Archetypes with the class trait represent a fundamental divergence from your class's specialties, but one that exists within the context of your class. You can select a class archetype only if you are a member of the class of the same name. Class archetypes always alter or replace some of a class's static class features, in addition to any new feats they offer. It may be possible to take a class archetype at 1st level if it alters or replaces some of the class's initial class features.","In that case, you must take that archetype's dedication feat at 2nd level, and after that you proceed normally. You can never have more than one class archetype."],"source":"CRB"},{"type":"pf2-h4","page":219,"name":"Spellcasting Archetypes","entries":["Some archetypes grant you a substantial degree of spellcasting, albeit delayed compared to a character from a spellcasting class. In this book, the spellcasting archetypes are bard, cleric, druid, sorcerer, and wizard, the multiclass archetypes for the five main spellcasting classes, but future books might introduce spellcasting archetypes that aren't multiclass archetypes.","A spellcasting archetype allows you to use scrolls, staves, and wands in the same way that a member of a spellcasting class can.","Spellcasting archetypes always grant the ability to cast cantrips in their dedication, and then they have a basic spellcasting feat, an expert spellcasting feat, and a master spellcasting feat. These feats share their name with the archetype; for instance, the wizard's master spellcasting feat is called Master Wizard Spellcasting.","All spell slots you gain from spellcasting archetypes have restrictions depending on the archetype; for instance, the bard archetype grants you spell slots you can use only to cast occult spells from your bard repertoire, even if you are a sorcerer with occult spells in your sorcerer repertoire.","{@b Basic Spellcasting Feat:} Usually available at 4th level, these feats grant a 1st-level spell slot. At 6th level, they grant you a 2nd-level spell slot, and if you have a spell repertoire, you can select one spell from your repertoire as a signature spell. At 8th level, they grant you a 3rd-level spell slot. Archetypes refer to these benefits as the \"basic spellcasting benefits.\"","{@b Expert Spellcasting Feat:} Typically taken at 12th level, these feats make you an expert in spell attack rolls and DCs of the appropriate magical tradition and grant you a 4th-level spell slot. If you have a spell repertoire, you can select a second spell from your repertoire as a signature spell. At 14th level, they grant you a 5th-level spell slot, and at 16th level, they grant you a 6th-level spell slot. Archetypes refer to these benefits as the \"expert spellcasting benefits.\"","{@b Master Spellcasting Feat:} Usually found at 18th level, these feats make you a master in spell attack rolls and DCs of the appropriate magical tradition and grant you a 7th-level spell slot. If you have a spell repertoire, you can select a third spell from your repertoire as a signature spell. At 20th level, they grant you an 8th-level spell slot. Archetypes refer to these benefits as the \"master spellcasting benefits.\""],"data":{"quickrefIndex":true},"source":"CRB"},"{@note To view all Archetypes, please view the {@filter Archetypes page.|archetypes||source=CRB}}"],"data":{"quickref":1},"source":"CRB"},{"type":"section","page":19,"name":"Character Creation","entries":["Unless you're the GM, the first thing you need to do when playing Pathfinder is create your character. It's up to you to imagine your character's past experiences, personality, and worldview, and this will set the stage for your roleplaying during the game. You'll use the game's mechanics to determine your character's ability to perform various tasks and use special abilities during the game.","This section provides a step-by-step guide for creating a character using the Pathfinder rules, preceded by a guide to help you understand ability scores. These scores are a critical part of your character, and you will be asked to make choices about them during many of the following steps. The steps of character creation are presented in a suggested order, but you can complete them in whatever order you prefer.","Many of the steps on pages 21 –28 instruct you to fill out fields on your character sheet. The character sheet is shown on pages 24 –25; you can find a copy in the back of this book or online as a free pdf. The character sheet is designed to be easy to use when you're actually playing the game—but creating a character happens in a different order, so you'll move back and forth through the character sheet as you go through the character creation process. Additionally, the character sheet includes every field you might need, even though not all characters will have something to put in each field. If a field on your character sheet is not applicable to your character, just leave that field blank.","All the steps of character creation are detailed on the following pages; each is marked with a number that corresponds to the sample character sheet on pages 24 –25, showing you where the information goes. If the field you need to fill out is on the third or fourth page of the character sheet, which aren't shown, the text will tell you.","If you're creating a higher-level character, it's a good idea to begin with the instructions here, then turn to page 29 for instructions on leveling up characters.",{"type":"pf2-h3","page":19,"name":"The Six Ability Scores","entries":["One of the most important aspects of your character is their ability scores. These scores represent your character's raw potential and influence nearly every other statistic on your character sheet. Determining your ability scores is not done all at once, but instead happens over several steps during character creation.","Ability scores are split into two main groups: physical and mental. Strength, Dexterity, and Constitution are physical ability scores, measuring your character's physical power, agility, and stamina. In contrast, Intelligence, Wisdom, and Charisma are mental ability scores and measure your character's learned prowess, awareness, and force of personality.","Excellence in an ability score improves the checks and statistics related to that ability, as described below. When imagining your character, you should also decide what ability scores you want to focus on to give you the best chance at success.",{"type":"pf2-h4","page":19,"name":"Strength","entries":["Strength measures your character's physical power.","Strength is important if your character plans to engage in hand-to-hand combat. Your Strength modifier gets added to melee damage rolls and determines how much your character can carry."],"source":"CRB"},{"type":"pf2-h4","page":19,"name":"Dexterity","entries":["Dexterity measures your character's agility, balance, and reflexes. Dexterity is important if your character plans to make attacks with ranged weapons or use stealth to surprise foes. Your Dexterity modifier is also added to your character's AC and Reflex saving throws."],"source":"CRB"},{"type":"pf2-h4","page":19,"name":"Constitution","entries":["Constitution measures your character's overall health and stamina. Constitution is an important statistic for all characters, especially those who fight in close combat.","Your Constitution modifier is added to your Hit Points and Fortitude saving throws."],"source":"CRB"},{"type":"pf2-h4","page":19,"name":"Intelligence","entries":["Intelligence measures how well your character can learn and reason. A high Intelligence allows your character to analyze situations and understand patterns, and it means they can become trained in additional skills and might be able to master additional languages."],"source":"CRB"},{"type":"pf2-h4","page":19,"name":"Wisdom","entries":["Wisdom measures your character's common sense, awareness, and intuition. Your Wisdom modifier is added to your Perception and Will saving throws."],"source":"CRB"},{"type":"pf2-h4","page":19,"name":"Charisma","entries":["Charisma measures your character's personal magnetism and strength of personality. A high Charisma score helps you influence the thoughts and moods of others."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":20,"name":"Ability Score Overview","entries":["Each ability score starts at 10, representing human average, but as you make character choices, you'll adjust these scores by applying ability boosts, which increase a score, and ability flaws, which decrease a score. As you build your character, remember to apply ability score adjustments when making the following decisions.","{@b Ancestry:} Each ancestry provides ability boosts, and sometimes an ability flaw. If you are taking any voluntary flaws, apply them in this step (see the sidebar on page 24).","{@b Background:} Your character's background provides two ability boosts.","{@b Class:} Your character's class provides an ability boost to the ability score most important to your class, called your key ability score.","{@b Determine Scores:} After the other steps, you apply four more ability boosts of your choice. Then, determine your ability modifiers based on those scores.",{"type":"pf2-h4","page":20,"name":"Ability Boosts","entries":["An ability boost normally increases an ability score's value by 2. However, if the ability score to which you're applying an ability boost is already 18 or higher, its value increases by only 1. At 1st level, a character can never have any ability score that's higher than 18.","When your character receives an ability boost, the rules indicate whether it must be applied to a specific ability score or to one of two specific ability scores, or whether it is a \"free\" ability boost that can be applied to any ability score of your choice. However, when you gain multiple ability boosts at the same time, you must apply each one to a different score. Dwarves, for example, receive an ability boost to their Constitution score and their Wisdom score, as well as one free ability boost, which can be applied to any score other than Constitution or Wisdom."],"source":"CRB"},{"type":"pf2-h4","page":20,"name":"Ability Flaws","entries":["Ability flaws are not nearly as common in Pathfinder as ability boosts. If your character has an ability flaw—likely from their ancestry—you decrease that ability score by 2."],"source":"CRB"},{"type":"pf2-brown-box","page":20,"name":"ALTERNATIVE METHOD: ROLLING ABILITY SCORES","entries":["The standard method of generating ability scores that's described above works great if you want to create a perfectly customized, balanced character. But your GM may decide to add a little randomness to character creation and let the dice decide what kind of character the players are going to play. In that case, you can use this alternative method to generate your ability scores. Be warned—the same randomness that makes this system fun also allows it to sometimes create characters that are significantly more (or less) powerful than the standard ability score system and other Pathfinder rules assume.","If your GM opts for rolling ability scores, follow these alternative steps, ignoring all other instructions and guidelines about applying ability boosts and ability flaws throughout the character generation process.",{"type":"pf2-title","name":"STEP 1: ROLL AND ASSIGN SCORES"},"Roll four 6-sided dice (4d6) and discard the lowest die result.","Add the three remaining results together and record the sum.","(For example, if you rolled a 2, 4, 5, and 6, you would discard the 2 and your total would be 15.) Repeat this process until you've generated six such values. Decide which value you want for each of your ability scores.",{"type":"pf2-title","name":"STEP 2: ASSIGN ABILITY BOOSTS AND ABILITY FLAWS"},"Apply the ability boosts your character gains from their ancestry, but your character gets one fewer free ability boost than normal. If your character's ancestry has any ability flaws, apply those next. Finally, apply one ability boost to one of the ability scores specified in the character's background (you do not get the other free ability boost).","These ability boosts cannot raise a score above 18. If this would happen, you can put the ability boost into another ability score instead, as if it were a free ability boost, or you can put it into an ability score of 17 to reach 18 and lose the excess increase.",{"type":"pf2-title","name":"STEP 3: RECORD SCORES AND MODIFIERS"},"Record the final scores and assign the ability modifiers according to {@table ABILITY MODIFIERS||Table 1–1}. When your character receives additional ability boosts at higher levels, you assign them as any character would."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":20,"name":"Ability Modifiers","entries":["Once you've finalized your ability scores, you can use them to determine your ability modifiers, which are used in most other statistics in the game. Find the score in {@table ABILITY MODIFIERS||Table 1–1: Ability Modifiers} to determine its ability modifier.",{"type":"data","tag":"table","name":"Ability Modifiers","source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":21,"name":"Create a Concept","entries":["What sort of hero do you want to play? The answer to this question might be as simple as \"a brave warrior,\" or as complicated as \"the child of elven wanderers, but raised in a city dominated by humans and devoted to Sarenrae, goddess of the sun.\" Consider your character's personality, sketch out a few details about their past, and think about how and why they adventure. You'll want to peruse Pathfinder's available ancestries, backgrounds, and classes. The summaries on pages 22 –23 might help you match your concept with some of these basic rule elements. Before a game begins, it's also a good idea for the players to discuss how their characters might know each other and how they'll work together throughout the course of their adventures.","There are many ways to approach your character concept.","Once you have a good idea of the character you'd like to play, move on to Step 2 to start building your character.",{"type":"pf2-h3","page":21,"name":"Ancestry, Background, Class, or Details","entries":["If one of Pathfinder's character ancestries, backgrounds, or classes particularly intrigues you, it's easy to build a character concept around these options. The summaries of ancestries and classes on pages 22 –23 give a brief overview of these options (full details appear in Chapters 2 and 3, respectively). Each ancestry also has several heritages that might refine your concept further, such as a human with an elf or orc parent, or an arctic or woodland elf. Additionally, the game has many backgrounds to choose from, representing your character's upbringing, their family's livelihood, or their earliest profession. Backgrounds are detailed later in Chapter 2, beginning on page 60.","Building a character around a specific ancestry, background, or class can be a fun way to interact with the world's lore. Would you like to build a typical member of your character's ancestry or class, as described in the relevant entry, or would you prefer to play a character who defies commonly held notions about their people?","For example, you could play a dwarf with a wide-eyed sense of wonder and a zest for change, or a performing rogue capable of amazing acrobatic feats but with little interest in sneaking about.","You can draw your concept from any aspect of a character's details. You can use roleplaying to challenge not only the norms of Pathfinder's fictional world, but even real-life societal norms. Your character might challenge gender notions, explore cultural identity, have a disability, or any combination of these suggestions. Your character can live any life you see fit."],"source":"CRB"},{"type":"pf2-h3","page":21,"name":"Faith","entries":["Perhaps you'd like to play a character who is a devout follower of a specific deity. Pathfinder is a rich world with myriad faiths and philosophies spanning a wide range, from Cayden Cailean, the Drunken Hero of good-hearted adventuring; to Desna, the Song of Spheres and goddess of dreaming and the stars; to Iomedae, the Inheritor, goddess of honor, justice, and rulership. Pathfinder's major deities appear on pages 437–440. Your character might be so drawn to a particular faith that you decide they should be a champion or cleric of that deity; they might instead be a lay worshipper who applies their faith's teachings to daily life, or simply the child of devout parents."],"source":"CRB"},{"type":"pf2-brown-box","page":21,"name":"ANCESTRIES AND CLASSES","entries":["Each player takes a different approach to creating a character. Some want a character who will fit well into the story, while others look for a combination of abilities that complement each other mechanically. You might combine these two approaches. There is no wrong way!","When you turn the page, you'll see a graphical representation of ancestries and classes that provide at-aglance information for players looking to make the most of their starting ability scores. In the ancestries overview on page 22, each entry lists which ability scores it boosts, and also indicates any ability flaws the ancestry might have.","You can find more about ability boosts and ability flaws in Ability Scores on page 20.","The summaries of the classes on pages 22 –23 list each class's key ability score—the ability score used to calculate the potency of many of their class abilities. Characters receive an ability boost in that ability score when you choose their class. This summary also lists one or more secondary ability scores important to members of that class.","Keep in mind a character's background also affects their ability scores, though there's more flexibility in the ability boosts from backgrounds than in those from classes. For descriptions of the available backgrounds, see pages 60–64."],"source":"CRB"},{"type":"pf2-h3","page":21,"name":"Your Allies","entries":["You might want to coordinate with other players when forming your character concept. Your characters could have something in common already; perhaps they are relatives, or travelers from the same village. You might discuss mechanical aspects with the other players, creating characters whose combat abilities complement each other. In the latter case, it can be helpful for a party to include characters who deal damage, characters who can absorb damage, and characters who can provide healing.","However, Pathfinder's classes include a lot of choices, and there are many options for building each type of character, so don't let these broad categories restrict your decisions."],"source":"CRB"},{"type":"pf2-tips-box","page":21,"name":"CHARACTER SHEET","entries":["Once you've developed your character's concept, jot down a few sentences summarizing your ideas under the Notes section on the third page of your character sheet. Record any of the details you've already decided, such as your character's name, on the appropriate lines on the first page."],"source":"CRB"}],"step":"1","source":"CRB"},{"type":"pf2-h2","page":21,"name":"Start Building Ability Scores","entries":["At this point, you need to start building your character's ability scores. See the overview of ability scores on pages 19 –20 for more information about these important aspects of your character and an overview of the process.","Your character's ability scores each start at 10, and as you select your ancestry, background, and class, you'll apply ability boosts, which increase a score by 2, and ability flaws, which decrease a score by 2. At this point, just note a 10 in each ability score and familiarize yourself with the rules for ability boosts and flaws on page 20. This is also a good time to identify which ability scores will be most important to your character. See The Six Ability Scores on page 19 and the class summaries on pages 22 –23 for more information."],"step":"2","source":"CRB"},{"type":"pf2-h2","page":21,"name":"Select an Ancestry","entries":["Select an ancestry for your character. The ancestry summaries on page 22 provide an overview of Pathfinder's core ancestry options, and each is fully detailed in Chapter 2. Ancestry determines your character's size, Speed, and languages, and contributes to their Hit Points.","Each also grants ability boosts and ability flaws to represent the ancestry's basic capabilities.","You'll make four decisions when you select your character's ancestry:",{"type":"list","items":["Pick the ancestry itself.","Assign any free ability boosts and decide if you are taking any voluntary flaws.","Select a heritage from those available within that ancestry, further defining the traits your character was born with.","Choose an ancestry feat, representing an ability your hero learned at an early age."]},{"type":"pf2-tips-box","page":21,"name":"CHARACTER SHEET","entries":["Write your character's ancestry and heritage in the appropriate space at the top of your character sheet's first page. Adjust your ability scores, adding 2 to an ability score if you gained an ability boost from your ancestry, and subtracting 2 from an ability score if you gained an ability flaw from your ancestry. Note the number of Hit Points your character gains from their ancestry—you'll add more to this number later. Finally, in the appropriate spaces, record your character's size, Speed, and languages. If your character's ancestry provides them with special abilities, write them in the appropriate spaces, such as {@ability darkvision} in the Senses"],"source":"CRB"}],"step":"3","source":"CRB"},{"type":"pf2-h2","page":21,"name":"Pick a Background","entries":["Your character's background might represent their upbringing, an aptitude they've been honing since their youth, or another aspect of their life before they became an adventurer. Character backgrounds appear in Chapter 2, starting on page 60. They typically provide two ability boosts (one that can be applied to either of two specific ability scores, and one that is free), training in a specific skill, training in a Lore skill, and a specific skill feat.",{"type":"pf2-tips-box","page":21,"name":"CHARACTER SHEET","entries":["Record your character's background in the space at the top of the first page of your character sheet. Adjust your ability scores, adding 2 to an ability score if you gained an ability boost from your background. Record the skill feat the background provides in the Skill Feat section of your character sheet's second page. On the first page, check the \"T\" box next to the name of the specific skill and for one Lore skill to indicate your character is trained, then write the name of the Lore skill granted by your background."],"source":"CRB"}],"step":"4","source":"CRB"},{"type":"pf2-h2","page":21,"name":"Choose a Class","entries":["At this point, you need to decide your character's class.","A class gives your character access to a suite of heroic abilities, determines how effectively they fight, and governs how easily they can shake off or avoid certain harmful effects. Each class is fully detailed in Chapter 3, but the summaries on pages 22 –23 provide an overview of each and tells you which ability scores are important when playing that class.","You don't need to write down all of your character's class features yet. You simply need to know which class you want to play, which determines the ability scores that will be most important for your character.",{"type":"pf2-tips-box","page":21,"name":"CHARACTER SHEET","entries":["Write your character's class in the space at the top of the first page of your character sheet, then write \"1\" in the Level box to indicate that your character is 1st level. Next to the ability scores, note the class's key ability score, and add 2 to that ability score from the ability boost the class provides. Don't worry about recording the rest of your character's class features and abilities yet—you'll handle that in Step 7."],"source":"CRB"}],"step":"5","source":"CRB"},{"type":"pf2-h2","page":26,"name":"Determine Ability Scores","entries":[{"type":"pf2-sidebar","page":26,"name":"OPTIONAL: VOLUNTARY FLAWS","entries":["Sometimes, it's fun to play a character with a major flaw even if you're not playing an ancestry that imposes one. You can elect to take two additional ability flaws when applying the ability boosts and ability flaws from your ancestry. If you do, you can also apply one additional free ability boost. These ability flaws can be assigned to any ability score you like, but you can't apply more than one ability flaw to the same ability score during this step unless you apply both of the additional ability flaws to a score that is already receiving an ability boost during this step. In this case, the first ability flaw cancels the ability boost, and the second ability flaw decreases the score by 2. Likewise, as an exception to the normal rules for ability boosts, you can apply two free ability boosts to an ability score receiving an ability flaw during this step; the first ability boost cancels the ability flaw, and the second ability boost increases the score by 2. For example, a dwarf normally gets an ability boost to Constitution and Wisdom, along with an ability flaw to Charisma.","You could apply one ability flaw each to Intelligence and Strength, or you could apply both ability flaws to Wisdom. You could not apply either additional ability flaw to Charisma, though, because it is already receiving dwarves' ability flaw during this step."],"source":"CRB"},"Now that you've made the main mechanical choices about your character, it's time to finalize their ability scores. Do these three things:",{"type":"list","items":["First, make sure you've applied all the ability boosts and ability flaws you've noted in previous steps (from your ancestry, background, and class).","Then, apply four more ability boosts to your character's ability scores, choosing a different ability score for each and increasing that ability score by 2.","Finally, record your starting ability scores and ability modifiers, as determined using {@table ABILITY MODIFIERS||Table 1–1: Ability Modifiers}."]},"Remember that each ability boost adds 2 to the base score of 10, and each ability flaw subtracts 2. You should have no ability score lower than 8 or higher than 18.",{"type":"pf2-tips-box","page":26,"name":"CHARACTER SHEET","entries":["Write your character's starting ability scores in the box provided for each. Record the ability modifier for each ability score in the box to the left of the ability's name."],"source":"CRB"}],"step":"6","source":"CRB"},{"type":"pf2-h2","page":26,"name":"Record Class Details","entries":["Now, record all the benefits and class features that your character receives from the class you've chosen. While you've already noted your key ability score, you'll want to be sure to record the following class features.",{"type":"pf2-sidebar","page":27,"name":"SPELLS AND SPELLCASTING","entries":["Most classes can learn to cast a few focus spells, but the bard, cleric, druid, sorcerer, and wizard all gain spellcasting—the ability to cast a wide variety of spells.","If your character's class grants spells, you should take time during Step 7 to learn about the spells they know and how to cast them. The fourth page of the character sheet provides space to note your character's magic tradition and their proficiency rank for spell attack rolls and spell DCs. It also gives ample space to record the spells in your character's repertoire or spellbook, or that you prepare frequently. Each class determines which spells a character can cast, how they are cast, and how many they can cast in a day, but the spells themselves and detailed rules for spellcasting are located in Chapter 7."],"source":"CRB"},{"type":"list","items":["To determine your character's total starting Hit Points, add together the number of Hit Points your character gains from their ancestry (chosen in Step 2) and the number of Hit Points they gain from their class.","The Initial Proficiencies section of your class entry indicates your character's starting proficiency ranks in a number of areas. Choose which skills your character is trained in and record those, along with the ones set by your class. If your class would make you trained in a skill you're already trained in (typically due to your background), you can select another skill to become trained in.","See the class advancement table in your class entry to learn the class features your character gains at 1st level—but remember, you already chose an ancestry and background. Some class features require you to make additional choices, such as selecting spells."]},{"type":"pf2-tips-box","page":26,"name":"CHARACTER SHEET","entries":["Write your character's total Hit Points on the first page of your character sheet. Use the proficiency fields (the boxes marked \"T,\" \"E,\" \"M,\" and \"L\") on your character sheet to record your character's initial proficiencies in Perception, saving throws, and the skills granted by their class; mark \"T\" if your character is trained, or \"E\" if your character is expert. Indicate which additional skills you chose for your character to be trained in by marking the \"T\" proficiency box for each skill you selected. Likewise, record your character's their armor proficiencies in the Armor Class section at the top of the first page and their weapon proficiencies at the bottom of the first page. Record all other class feats and abilities on the second page. Don't worry yet about finalizing any values for your character's statistics—you'll handle that in Step 9."],"source":"CRB"}],"step":"7","source":"CRB"},{"type":"pf2-h2","page":27,"name":"Buy Equipment","entries":["At 1st level, your character has 15 gold pieces (150 silver pieces) to spend on armor, weapons, and other basic equipment. Your character's class lists the types of weapons and armor with which they are trained (or better!). Their weapons determine how much damage they deal in combat, and their armor influences their Armor Class; these calculations are covered in more detail in Step 10. Don't forget essentials such as food and traveling gear! For more on the available equipment and how much it costs, see Chapter 6.",{"type":"pf2-tips-box","page":27,"name":"CHARACTER SHEET","entries":["Once you've spent your character's starting wealth, calculate any remaining gp, sp, and cp they might still have and write those amounts in Inventory on the second page. Record your character's weapons in the Melee Strikes and Ranged Strikes sections of the first page, depending on the weapon, and the rest of their equipment in the Inventory section on your character sheet's second page. You'll calculate specific numbers for melee Strikes and ranged Strikes with the weapons in Step 9 and for AC when wearing that armor in Step 10."],"source":"CRB"}],"step":"8","source":"CRB"},{"type":"pf2-h2","page":27,"name":"Calculate Modifiers","entries":["With most of the big decisions for your character made, it's time to calculate the modifiers for each of the following statistics. If your proficiency rank for a statistic is trained, expert, master, and legendary, your bonus equals your character's level plus another number based on the rank (2, 4, 6, and 8, respectively). If your character is untrained, your proficiency bonus is +0.",{"type":"pf2-h3","page":27,"name":"Perception","entries":["Your character's Perception modifier measures how alert they are. This modifier is equal to their proficiency bonus in Perception plus their Wisdom modifier. For more about Perception, see page 448."],"source":"CRB"},{"type":"pf2-h3","page":27,"name":"Saving Throws","entries":["For each kind of saving throw, add your character's Fortitude, Reflex, or Will proficiency bonus (as appropriate) plus the ability modifier associated with that kind of saving throw. For Fortitude saving throws, use your character's Constitution modifier. For Reflex saving throws, use your character's Dexterity modifier. For Will saving throws, use your character's Wisdom modifier. Then add in any bonuses or penalties from abilities, feats, or items that always apply (but not modifiers, bonuses, or penalties that apply only in certain situations). Record this number on the line for that saving throw."],"source":"CRB"},{"type":"pf2-h3","page":27,"name":"Melee Strikes and Ranged Strikes","entries":["Next to where you've written your character's melee and ranged weapons, calculate the modifier to Strike with each weapon and how much damage that Strike deals. The modifier for a Strike is equal to your character's proficiency bonus with the weapon plus an ability modifier (usually Strength for melee Strikes and Dexterity for ranged Strikes).","You also add any item bonus from the weapon and any other permanent bonuses or penalties. You also need to calculate how much damage each weapon's Strike deals.","Melee weapons usually add your character's Strength modifier to damage rolls, while ranged weapons might add some or all of your character's Strength modifier, depending on the weapon's traits. See the weapon entries in Chapter 6 for more information."],"source":"CRB"},{"type":"pf2-h3","page":28,"name":"Skills","entries":["In the second box to the right of each skill name on your character sheet, there's an abbreviation that reminds you of the ability score tied to that skill. For each skill in which your character is trained, add your proficiency bonus for that skill (typically +3 for a 1st-level character) to the indicated ability's modifier, as well as any other applicable bonuses and penalties, to determine the total modifier for that skill. For skills your character is untrained in, use the same method, but your proficiency bonus is +0."],"source":"CRB"},{"type":"pf2-tips-box","page":28,"name":"CHARACTER SHEET","entries":["For Perception and saving throws, write your proficiency bonus and the appropriate ability modifier in the boxes provided, then record the total modifier in the large space.","Record the proficiency bonuses, ability modifiers, and total modifiers for your melee Strikes and ranged Strikes in the box after the name of each weapon, and put the damage for each in the space below, along with the traits for that attack. For skills, record the relevant ability modifier and proficiency bonus in the appropriate box for each skill, and then write the total skill modifiers in the spaces to the left.","If your character has any modifiers, bonuses, or penalties from feats or abilities that always apply, add them into the total modifiers. For ones that apply only in certain situations, note them next to the total modifiers."],"source":"CRB"}],"step":"9","source":"CRB"},{"type":"pf2-h2","page":28,"name":"Finishing Details","entries":["Now add the following details to your character sheet in the appropriate spaces.",{"type":"pf2-h3","page":28,"name":"Alignment","entries":["Your character's alignment is an indicator of their morality and personality. There are nine possible alignments in Pathfinder, as shown on Table 1 –2: The Nine Alignments. If your alignment has any components other than neutral, your character gains the traits of those alignment components. This might affect the way various spells, items, and creatures interact with your character.","Your character's alignment is measured by two pairs of opposed values: the axis of good and evil and the axis of law and chaos. A character who isn't committed strongly to either side is neutral on that axis. Keep in mind that alignment is a complicated subject, and even acts that might be considered good can be used for nefarious purposes, and vice versa. The GM is the arbiter of questions about how specific actions might affect your character's alignment.","If you play a champion, your character's alignment must be one allowed for their deity and cause (pages 437–440 and 106–107), and if you play a cleric, your character's alignment must be one allowed for their deity (pages 437–440).",{"type":"pf2-h4","page":29,"name":"Good and Evil","entries":["Your character has a good alignment if they consider the happiness of others above their own and work selflessly to assist others, even those who aren't friends and family. They are also good if they value protecting others from harm, even if doing so puts the character in danger. Your character has an evil alignment if they're willing to victimize others for their own selfish gain, and even more so if they enjoy inflicting harm. If your character falls somewhere in the middle, they're likely neutral on this axis."],"source":"CRB"},{"type":"pf2-h4","page":29,"name":"Law and Chaos","entries":["Your character has a lawful alignment if they value consistency, stability, and predictability over flexibility.","Lawful characters have a set system in life, whether it's meticulously planning day-to-day activities, carefully following a set of official or unofficial laws, or strictly adhering to a code of honor. On the other hand, if your character values flexibility, creativity, and spontaneity over consistency, they have a chaotic alignment—though this doesn't mean they make decisions by choosing randomly.","Chaotic characters believe that lawful characters are too inflexible to judge each situation by its own merits or take advantage of opportunities, while lawful characters believe that chaotic characters are irresponsible and flighty.","Many characters are in the middle, obeying the law or following a code of conduct in many situations, but bending the rules when the situation requires it. If your character is in the middle, they are neutral on this axis."],"source":"CRB"},{"type":"pf2-h4","page":29,"name":"Changing Alignment","entries":["Alignment can change during play as a character's beliefs change, or as you realize that your character's actions reflect a different alignment than the one on your character sheet. In most cases, you can just change their alignment and continue playing. However, if you play a cleric or champion and your character's alignment changes to one not allowed for their deity (or cause, for champions), your character loses some of their class abilities until they atone (as described in the class)."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":29,"name":"Deity","entries":["Write down the deity your character worships, if any.","Champions and clerics must worship a deity. See pages 437–440 for more about Pathfinder's deities."],"source":"CRB"},{"type":"pf2-h3","page":29,"name":"Age","entries":["Decide your character's age and note it on the third page of the character sheet. The description for your character's ancestry in Chapter 2 gives some guidance on the age ranges of members of that ancestry. Beyond that, you can play a character of whatever age you like. There aren't any mechanical adjustments to your character for being particularly old, but you might want to take it into account when considering your starting ability scores and future advancement. Particularly young characters can change the tone of some of the game's threats, so it's recommended that characters are at least young adults."],"source":"CRB"},{"type":"pf2-h3","page":29,"name":"Gender and Pronouns","entries":["Characters of all genders are equally likely to become adventurers. Record your character's gender, if applicable, and their pronouns on the third page of the character sheet."],"source":"CRB"},{"type":"pf2-h3","page":29,"name":"Class DC","entries":["A class DC sets the difficulty for certain abilities granted by your character's class. This DC equals 10 plus their proficiency bonus for their class DC (+3 for most 1st-level characters) plus the modifier for the class's key ability score."],"source":"CRB"},{"type":"pf2-h3","page":29,"name":"Hero Points","entries":["Your character usually begins each game session with 1 Hero Point, and you can gain additional Hero Points during sessions by performing heroic deeds or devising clever strategies. Your character can use Hero Points to gain certain benefits, such as staving off death or rerolling a d20. See page 467 for more about Hero Points."],"source":"CRB"},{"type":"pf2-h3","page":29,"name":"Armor Class (AC)","entries":["Your character's Armor Class represents how difficult they are to hit in combat. To calculate your AC, add 10 plus your character's Dexterity modifier (up to their armor's Dexterity modifier cap; page 274), plus their proficiency bonus with their armor, plus their armor's item bonus to AC and any other permanent bonuses and penalties."],"source":"CRB"},{"type":"pf2-h3","page":29,"name":"Bulk","entries":["Your character's maximum Bulk determines how much weight they can comfortably carry. If they're carrying a total amount of Bulk that exceeds 5 plus their Strength modifier, they are encumbered. A character can't carry a total amount of Bulk that exceeds 10 plus their Strength modifier. The Bulk your character is carrying equals the sum of all of their items; keep in mind that 10 light items make up 1 Bulk. You can find out more about Bulk in Chapter 6: Equipment."],"source":"CRB"}],"step":"10","source":"CRB"}],"data":{"quickref":1},"source":"CRB"},{"type":"section","page":487,"name":"Characters With Disabilities","entries":["A player might want to create a character with a disability, or their character might end up with a disability over the course of play. Work with the player to find ways to respectfully represent the disability. Conditions such as blinded and deafened aren't a good fit for a character who has been living with a disability long-term. Here are suggestions for rules you might use for PCs with disabilities.",{"type":"pf2-h3","name":"Blindness or Impaired Vision"},"A blind character can't detect anything using vision, critically fails {@skill Perception} checks requiring sight, is immune to {@trait visual} effects, and can't be {@condition blinded} or {@condition dazzled}. You might give this character the {@feat Blind-Fight (Fighter)||Blind-Fight} feat for free.","A character with impaired vision might take a –2 to –4 penalty to vision-based {@skill Perception} checks. {@item Basic Corrective Lenses|LOTGB|Spectacles} or {@filter other corrective devices|items||source=|type=|Subcategory=Vision} might reduce or remove this.",{"type":"pf2-h3","name":"Deafness or Being Hard of Hearing"},"A deaf character can't detect anything using hearing, critically fails {@skill Perception} checks that require hearing, and is immune to {@trait auditory} effects. They have enough practice to supply verbal components for casting spells and command components for activating magic items, but if they perform an action they're not accustomed to that involves auditory elements, they must succeed at a DC {@flatDC 5} flat check or the action is lost. It's best to give them the {@feat Sign Language} feat for free, and you might give them {@feat Read Lips} as well. You might give one or more other characters in the group {@feat Sign Language} for free as well.","A hard-of-hearing character might take a –2 to –4 penalty to {@skill Perception} checks that are hearing-based. {@filter Corrective devices for hearing|items||Subcategory=Hearing} are less common than spectacles are in a typical Pathfinder world.",{"type":"pf2-h3","name":"Missing Limb"},"Some magic items require certain limbs or other body parts. It's fine to allow an alternative form of the item, turning boots into bracers for a character without legs, for example.","A character with a missing hand or arm might need to spend 2 actions to {@action Interact} with an item that requires two hands, or otherwise compensate. Using a two-handed weapon is not possible. A character can acquire a {@filter prosthetic hand or arm|items||source=|type=|subcategory=prosthesis} to compensate.","Someone missing a foot or leg might take a small penalty to Speed, but can typically acquire a prosthetic to compensate. If they have no legs, they might use a {@filter wheelchair|items||source=|type=|subcategory=wheelchair}, a dependable mount, or levitation or flight magic.",{"type":"pf2-h3","name":"Mental Illness and Chronic Illness"},"Some disabilities, such as mental illness and chronic illnesses, are best left to the player to roleplay. Mental illness is an especially fraught topic, with a history of insensitive portrayal. Be careful about the intentions of the player and the impact the presentation might have on other players."],"data":{"quickref":1},"source":"CRB"},{"type":"section","page":217,"name":"Familiars","entries":["Familiars are mystically bonded creatures tied to your magic. Most familiars were originally animals, though the ritual of becoming a familiar makes them something more. You can choose a Tiny animal you want as your familiar, such as a bat, cat, raven, or snake. Some familiars are different, usually described in the ability that granted you a familiar; for example, a druid's leshy familiar is a Tiny plant instead of an animal, formed from a minor nature spirit.","Familiars have the minion trait (page 634), so during an encounter, they gain 2 actions in a round if you spend an action to command them. If your familiar dies, you can spend a week of downtime to replace it at no cost.","You can have only one familiar at a time.",{"type":"pf2-h3","page":217,"name":"Modifiers and AC","entries":["Your familiar's save modifiers and AC are equal to yours before applying circumstance or status bonuses or penalties. Its Perception, {@skill Acrobatics}, and {@skill Stealth} modifiers are equal to your level plus your spellcasting ability modifier (Charisma if you don't have one, unless otherwise specified). If it attempts an attack roll or other skill check, it uses your level as its modifier. It doesn't have or use its own ability modifiers and can never benefit from item bonuses."],"source":"CRB"},{"type":"pf2-h3","page":217,"name":"Hit Points","entries":["Your familiar has 5 Hit Points for each of your levels."],"source":"CRB"},{"type":"pf2-h3","page":218,"name":"Size","entries":["Your familiar is Tiny."],"source":"CRB"},{"type":"pf2-h3","page":218,"name":"Senses","entries":["Your familiar has {@ability low-light vision} and can gain additional senses from familiar abilities. It can communicate empathically with you as long as it's within 1 mile of you, sharing emotions. It doesn't understand or speak languages normally, but it can gain speech from a familiar ability."],"source":"CRB"},{"type":"pf2-h3","page":218,"name":"Movement","entries":["Your familiar has either a Speed of 25 feet or a swim Speed of 25 feet (choose one upon gaining the familiar).","It can gain other movement types from familiar abilities."],"source":"CRB"},{"type":"pf2-h3","page":218,"name":"Familiar and Master Abilities","entries":["Each day, you channel your magic into two abilities, which can be either familiar or master abilities. If your familiar is an animal that naturally has one of these abilities (for instance, an owl has a fly Speed), you must select that ability. Your familiar can't be an animal that naturally has more familiar abilities than your daily maximum familiar abilities.",{"type":"pf2-h4","page":218,"name":"Familiar Abilities","entries":[{"type":"pf2-options","style":"pf2-p text-indent-subsequent block","items":[{"name":"Amphibious","entries":["It gains a swim Speed of 25 feet (or Speed of 25 feet if it already has a swim Speed)."]},{"name":"Burrower","entries":["It gains a burrow Speed of 5 feet, allowing it to dig Tiny holes."]},{"name":"Climber","entries":["It gains a climb Speed of 25 feet."]},{"name":"Damage Avoidance","entries":["Choose one type of save. It takes no damage when it succeeds at that type of save; this doesn't prevent effects other than damage."]},{"name":"Darkvision","entries":["It gains {@ability darkvision}."]},{"name":"Fast Movement","entries":["Increase one of the familiar's Speeds from 25 feet to 40 feet."]},{"name":"Flier","entries":["It gains a fly Speed of 25 feet."]},{"name":"Kinspeech","entries":["It can understand and speak with animals of the same species. To select this, your familiar must be an animal, it must have the speech ability, and you must be at least 6th level."]},{"name":"Lab Assistant","entries":["It can use your Quick Alchemy action. You must have Quick Alchemy, and your familiar must be in your space. This has the same cost and requirement as if you used it. It must have the manual dexterity ability to select this."]},{"name":"Manual Dexterity","entries":["It can use up to two of its limbs as if they were hands to use manipulate actions."]},{"name":"Scent","entries":["It gains {@ability scent} (imprecise, 30 feet)."]},{"name":"Speech","entries":["It understands and speaks a language you know."]}]}],"source":"CRB"},{"type":"pf2-h4","page":218,"name":"Master Abilities","entries":[{"type":"pf2-options","style":"pf2-p text-indent-subsequent block","items":[{"name":"Cantrip Connection","entries":["You can prepare an additional cantrip, or if you have a repertoire, instead designate a cantrip to add to your repertoire every time you select this ability; you can retrain it but can't otherwise change it. You must be able to prepare cantrips or add them to your repertoire to select this."]},{"name":"Extra Reagents","entries":["Your familiar grows extra infused reagents on or in its body. You gain an additional batch of infused reagents. You must have the infused reagents ability to select this ability."]},{"name":"Familiar Focus","entries":["Once per day, your familiar can use 2 actions with the {@trait concentrate} to regain 1 Focus Point, up to your usual maximum You must have a focus pool to select this."]},{"name":"Lifelink","entries":["If your familiar would be reduced to 0 HP by damage, as a reaction with the {@trait concentrate}, you can take the damage. If you do, you take all the damage and your familiar takes none. However, if special effects when a hit damages your familiar (such as snake venom) still apply to your familiar."]},{"name":"Spell Battery","entries":["You gain one additional spell slot at least 3 levels lower than your highest-level spell slot; you must be able to cast 4th-level spells using spell slots to select this master ability."]},{"name":"Spell Delivery","entries":["If your familiar is in your space, you can cast a spell with a range of touch, transfer its power to your familiar, and command the familiar to deliver the spell. If you do, the familiar uses its 2 actions for the round to move to a target of your choice and touch that target. If it doesn't reach the target to touch it this turn, the spell has no effect."]}]}],"source":"CRB"}],"source":"CRB"}],"data":{"quickref":1},"source":"CRB"},{"type":"section","page":31,"name":"Leveling Up","entries":["The world of Pathfinder is a dangerous place, and your character will face terrifying beasts and deadly traps on their journey into legend. With each challenge resolved, a character earns Experience Points (XP) that allow them to increase in level. Each level grants greater skill, increased resiliency, and new capabilities, allowing your character to face even greater challenges and go on to earn even more impressive rewards.","Each time your character reaches 1,000 Experience Points, their level increases by 1. On your character sheet, indicate your character's new level beside the name of their class, and deduct 1,000 XP from their XP total. If you have any Experience Points left after this, record them—they count toward your next level, so your character is already on their way to advancing yet again!","Next, return to your character's class entry. Increase your character's total Hit Points by the number indicated for your class. Then, take a look at the class advancement table and find the row for your character's new level.","Your character gains all the abilities listed for that level, including new abilities specific to your class and additional benefits all characters gain as they level up.","For example, all characters gain four ability boosts at 5th level and every 5 levels thereafter.","You can find all the new abilities specific to your class, including class feats, right in your class entry, though you can also use class feats to take an archetype (page 219).","Your character's class entry also explains how to apply any ability boosts and skill increases your character gains.","If they gain an ancestry feat, head back to the entry for your character's ancestry in Chapter 2 and select another ancestry feat from the list of options. If they gain a skill increase, refer to Chapter 4 when deciding which skill to apply it to. If they gain a general feat or a skill feat, you can choose from the feats listed in Chapter 5. If they can cast spells, see the class entry for details on adding spell slots and spells. It's also a good idea to review your character's spells in Chapter 7 and see if there are heightened versions they can now cast.","Once you've made all your choices for your character's new level, be sure to go over your character sheet and adjust any values that have changed. At a bare minimum, your proficiency bonuses all increase by 1 because you've gained a level, so your AC, attack rolls, Perception, saving throws, skill modifiers, spell attack rolls, and class DC all increase by at least 1. You might need to change other values because of skill increases, ability boosts, or class features that either increase your proficiency rank or increase other statistics at certain levels. If an ability boost increases your character's Constitution modifier, recalculate their maximum Hit Points using their new Constitution modifier (typically this adds 1 Hit Point per level). If an ability boost increases your character's Intelligence modifier, they become trained in an additional skill and language.","Some feats grant a benefit based on your level, such as Toughness, and these benefits are adjusted whenever you gain a level as well.","You can perform the steps in the leveling-up process in whichever order you want. For example, if you wanted to take the skill feat Intimidating Prowess as your skill feat at 10th level, but your character's Strength score was only 14, you could first increase their Strength score to 16 using the ability boosts gained at 10th level, and then take Intimidating Prowess as a skill feat at the same level.",{"type":"pf2-h3","page":31,"name":"Leveling-Up Checklist","entries":["Every time you gain a level, make sure you do each of the following:",{"type":"list","items":["Increase your level by 1 and subtract 1,000 XP from your XP total.","Increase your maximum Hit Points by the amount listed in your class entry in Chapter 3.","Add class features from your class advancement table, including ability boosts and skill increases.","Select feats as indicated on your class advancement table. For ancestry feats, see Chapter 2. For class feats, see your class entry in Chapter 3. For general feats and skill feats, see Chapter 5.","Add spells and spell slots if your class grants spellcasting. See Chapter 7 for spells.","Increase all of your proficiency bonuses by 1 from your new level, and make other increases to your proficiency bonuses as necessary from skill increases or other class features. Increase any other statistics that changed as a result of ability boosts or other abilities.","Adjust bonuses from feats and other abilities that are based on your level."]}],"source":"CRB"}],"data":{"quickref":1},"source":"CRB"}]},{"type":"entries","entries":[{"type":"section","page":532,"name":"Activating Items","entries":["Some items produce their effects only when used properly in the moment. Others always offer the same benefits as their mundane counterparts when worn, but have magical abilities you can gain by further spending actions. Either case requires you to use the Activate an Item activity. {@action Activate an Item||Activating an Item} works much like {@action Cast a Spell||Casting a Spell}, in that the activity takes a variable number of actions and can have different components depending on how you Activate the Item. This information appears in the item's Activate entry.","If an item is used up when activated, as is the case for consumable items, its Activate entry appears toward the top of the stat block. For permanent items with activated abilities, the Activate entry is a paragraph in the description. Activations are not necessarily magical—for instance, drinking an alchemical elixir isn't usually a magical effect.",{"type":"data","tag":"action","name":"Activate an Item","source":"CRB"},{"type":"pf2-brown-box","page":532,"name":"DISRUPTING ACTIVATIONS","entries":["Some abilities and effects can disrupt the process of {@action Activate an Item||Activating an Item}. If something disrupts your item activation, you fail to Activate the Item and lose the actions you committed. If the item can be activated only a certain number of times per day, the failed activation still counts against that limit. If an item requires you to spend actions to Sustain an Activation and one of those actions is disrupted, the item's effect ends."],"source":"CRB"},{"type":"pf2-h3","page":533,"name":"Activation Components","entries":["An item's activate entry lists the components required to activate its abilities. Each component adds certain traits to the Activate an Item activity, and some components have special requirements. The components that appear in this book are listed below.",{"type":"pf2-h4","page":533,"name":"Command","entries":["This component is a specific utterance you must make in a loud and strong voice. Activate an Item gains the auditory and {@trait concentrate}s. You must be able to speak to provide this component."],"source":"CRB"},{"type":"pf2-h4","page":533,"name":"Envision","entries":["This component is a specific image or phenomenon you need to imagine. Activate an Item gains the {@trait concentrate}."],"source":"CRB"},{"type":"pf2-h4","page":533,"name":"Interact","entries":["This component works like the Interact basic action.","Activate an Item gains the manipulate trait and requires you to use your hands, just like with any Interact action."],"source":"CRB"},{"type":"pf2-h4","page":533,"name":"Cast a Spell","entries":["If an item lists \"{@action Cast a Spell}\" after \"Activate,\" the activation requires you to use the {@action Cast a Spell} activity (described on page 302) to Activate the Item. This happens when the item replicates a spell. You must have a spellcasting class feature to Activate an Item with this activation component.","If the item can be used for a specific spell, the action icon for that spell is provided. If it's an item like a staff, which can be used for many spells, the icon is omitted, and you must refer to each spell to determine which actions you must spend to Activate the Item to cast it.","In this case, Activate an Item gains all the traits from the relevant components of the {@action Cast a Spell} activity."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":533,"name":"Limited Activations","entries":["Some items can be activated only a limited number of times per day, as described in the items. This limit is independent of any costs for activating the item. The limit resets during your daily preparations. The limit is inherent to the item, so if an ability that can be used only once per day is used, it doesn't refresh if another creature later invests or tries to activate the item."],"source":"CRB"},{"type":"pf2-brown-box","page":533,"name":"ITEM CATEGORIES","entries":["Items are grouped into the following categories, shown here with the page number where those items appear and a brief description of the category.",{"type":"list","items":["{@b {@filter Alchemical Items|items||source=CRB|category=Bomb;Poison;Elixir}} are powered by the reactions of alchemical reagents. Almost all alchemical items are consumable items that are used up when you activate them. This category includes bombs, elixirs (including mutagens), poisons, and alchemical tools.","{@b {@filter Ammunition|items||source=CRB|category=Ammunition}}, in Consumables, includes different types of magical arrows, crossbow bolts, and other types of ammunition.","{@b {@filter Apex Items|items||source=CRB|category=Apex}} are a subcategory of worn items of a high level that increase an ability score.","{@b {@filter Armor|items||source=CRB|category=armor}} includes the rules for basic magical armor as well as special suits of armor.","{@b {@filter Companion Items|items||source=CRB|category=companion}} are a category of worn items meant for animal companions and mounts.","{@b {@filter Consumables|items||source=CRB|category=consumable}} are used up when you activate them, and include ammunition, oils, potions, scrolls, and talismans, among others. Categories of items that are consumables but have specific rules, such as alchemical items, are presented separately.","{@b {@filter Held Items|items||source=CRB|category=held}} include a wide variety of items you use with your hands. This doesn't include more narrow categories of held items, such as weapons.","{@b {@filter Materials|items||source=CRB|category=material}} can be used to make items with unique properties and other advantages.","{@b {@filter Oils|items||source=CRB|category=oil}} are consumables applied to the surface of an object or person.","{@b {@filter Potions|items||source=CRB|category=potion}} are consumable magical liquids you drink to activate.","{@b {@filter Runes|items||source=CRB|category=rune}} modify armor and weapons when etched onto them. This section includes fundamental runes for weapons ({@item weapon potency (generic)||weapon potency} and {@item striking (generic)||striking}) and armor ({@item armor potency (generic)||armor potency} and {@item resilient (generic)||resilient}).","{@b {@filter Scrolls|items||source=CRB|category=scroll}} are consumables that allow spellcasters to cast more spells.","{@b {@filter Shields|items||source=CRB|category=shield}} include more durable shields and ones with special magical powers.","{@b {@filter Snares|items||source=CRB|category=snare}} are single-use traps typically made by rangers.","{@b {@filter Staves|items||source=CRB|category=staff}} provide flexible spellcasting options.","{@b {@filter Structures|items||source=CRB|category=structure}} include buildings, tents, and other larger items.","{@b {@filter Talismans|items||source=CRB|category=talisman}} are consumables that are affixed to items and then activated for a one-time combat or physical benefit.","{@b {@filter Wands|items||source=CRB|category=wand}} hold a spell of the crafter's choice, and can be used to repeatedly cast that spell.","{@b {@filter Weapons|items||source=CRB|category=weapon}} include the rules for basic magical weapons, weapons made from precious materials, and specific magic weapons.","{@b {@filter Worn Items|items||source=CRB|category=worn}} consist of a vast collection of clothing and other items you wear on your body."]}],"source":"CRB"},{"type":"pf2-h3","page":533,"name":"Sustaining Activations","entries":["Some items, once activated, have effects that can be sustained if you concentrate on them. This works much like the Sustain a Spell action (found on page 304). If an item's description states that you can sustain the effect, that effect lasts until the end of your turn in the round after you Activated the Item. You can use a Sustain an Activation action on that turn to extend the duration.",{"type":"data","tag":"action","name":"Sustain an Activation","source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":534,"name":"Dismissing Activations","entries":["Some item effects can be dismissed, ending the duration early due to you or the target taking action. Dismissing an activation requires using the Dismiss action.",{"type":"data","tag":"action","name":"Dismiss","source":"CRB"}],"source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":294,"name":"Animals","entries":["The Prices for animals are listed both for renting and for purchasing them outright. You usually need to pay for animal rentals up front, and if the vendor believes the animal might be put in danger, they typically require a deposit equal to the purchase Price. Most animals panic in battle. When combat begins, they become {@condition frightened||frightened 4} and {@condition fleeing} as long as they're {@condition frightened}. If you successfully {@action Command your Animal} using {@skill Nature}, you can keep it from fleeing, though this doesn't remove its frightened condition. If the animal is attacked or damaged, it returns to {@condition frightened||frightened 4} and {@condition fleeing}, with the same exceptions.","Warhorses and warponies are combat trained. They don't become {@condition frightened} or {@condition fleeing} during encounters in this way.",{"type":"data","tag":"table","name":"Animals","source":"CRB"},{"type":"pf2-h3","page":295,"name":"Barding","entries":["You can purchase special armor for animals, called barding (shown on {@table Barding||Table 6–18}). All animals have a trained proficiency rank in light barding, and combat-trained animals are trained in heavy barding. Barding uses the same rules as armor except for the following. The Price and Bulk of barding depend on the animal's size. Unlike for a suit of armor, barding's Strength entry is listed as a modifier, not a score. Barding can't be etched with magic runes, though special magical barding might be available.",{"type":"data","tag":"table","name":"Barding","source":"CRB"}],"source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":274,"name":"Armor","entries":[{"type":"pf2-h1-flavor","page":274,"entries":["{@i Armor increases your character's defenses, but some medium or heavy armor can hamper movement. If you want to increase your character's defense beyond the protection your armor provides, they can use a shield. Armor protects your character only while they're wearing it.}"],"source":"CRB"},{"type":"pf2-h2","page":274,"name":"Armor Class","entries":["Your {@b Armor Class} ({@b AC}) measures how well you can defend against attacks. When a creature attacks you, your Armor Class is the DC for that attack roll.",{"type":"pf2-inset","page":274,"entries":["Armor Class = 10 + Dexterity modifier (up to your armor's Dex Cap) + proficiency bonus + armor's item bonus to AC + other bonuses + penalties"],"source":"CRB"},"Use your proficiency bonus for the category (light, medium, or heavy) or the specific type of armor you're wearing. If you're not wearing armor, use your proficiency in unarmored defense."],"source":"CRB"},{"type":"pf2-h2","page":274,"name":"Donning and Removing Armor","entries":["Getting in and out of armor is time consuming—so make sure you're wearing it when you need it! Donning and removing armor are both activities involving many Interact actions. It takes 1 minute to don light armor, 5 minutes to don medium or heavy armor, and 1 minute to remove any armor."],"source":"CRB"},{"type":"pf2-h2","page":274,"name":"Armor Statistics","entries":["{@table Unarmored Defense||Table 6–3: Unarmored Defense} provides the statistics for the various forms of protection without wearing armor. {@table Armor||Table 6–4: Armor} provides the statistics for suits of armor that can be purchased and worn, organized by category. The columns in both tables provide the following statistics.",{"type":"pf2-h3","page":274,"name":"Category","entries":["The armor's category—unarmored, light armor, medium armor, or heavy armor—indicates which proficiency bonus you use while wearing the armor."],"source":"CRB"},{"type":"pf2-h3","page":274,"name":"AC Bonus","entries":["This number is the item bonus you add for the armor when determining Armor Class."],"source":"CRB"},{"type":"pf2-h3","page":274,"name":"Dexterity Modifier Cap (Dex Cap)","entries":["This number is the maximum amount of your Dexterity modifier that can apply to your AC while you are wearing a given suit of armor. For example, if you have a Dexterity modifier of +4 and you are wearing a suit of half plate, you apply only a +1 bonus from your Dexterity modifier to your AC while wearing that armor."],"source":"CRB"},{"type":"pf2-h3","page":274,"name":"Check Penalty","entries":["While wearing your armor, you take this penalty to Strength- and Dexterity-based skill checks, except for those that have the attack trait. If you meet the armor's Strength threshold (see Strength below), you don't take this penalty."],"source":"CRB"},{"type":"pf2-h3","page":274,"name":"Speed Penalty","entries":["While wearing a suit of armor, you take the penalty listed in this entry to your Speed, as well as to any other movement types you have, such as a climb Speed or swim Speed, to a minimum Speed of 5 feet. If you meet the armor's Strength threshold (see below), you reduce the penalty by 5 feet."],"source":"CRB"},{"type":"pf2-h3","page":274,"name":"Strength","entries":["This entry indicates the Strength score at which you are strong enough to overcome some of the armor's penalties. If your Strength is equal to or greater than this value, you no longer take the armor's check penalty, and you decrease the Speed penalty by 5 feet (to no penalty if the penalty was –5 feet, or to a –5-foot penalty if the penalty was –10 feet)."],"source":"CRB"},{"type":"pf2-h3","page":274,"name":"Bulk","entries":["This entry gives the armor's Bulk, assuming you're wearing the armor and distributing its weight across your body. A suit of armor that's carried or worn usually has 1 more Bulk than what's listed here (or 1 Bulk total for armor of light Bulk). An armor's Bulk is increased or decreased if it's sized for creatures that aren't Small or Medium in size, following the rules on page 295."],"source":"CRB"},{"type":"pf2-h3","page":274,"name":"Group","entries":["Each type of medium and heavy armor belongs to an armor group, which classifies it with similar types of armor. Some abilities reference armor groups, typically to grant armor specialization effects, which are described on page 275."],"source":"CRB"},{"type":"pf2-h3","page":274,"name":"Armor Traits","entries":["The traits for each suit of armor appear in this entry.","Armor can have the following traits.","{@b Bulwark:} The armor covers you so completely that it provides benefits against some damaging effects. On Reflex saves to avoid a damaging effect, such as a {@spell fireball}, you add a +3 modifier instead of your Dexterity modifier.","{@b Comfort:} The armor is so comfortable that you can rest normally while wearing it.","{@b Flexible:} The armor is flexible enough that it doesn't hinder most actions. You don't apply its check penalty to {@skill Acrobatics} or {@skill Athletics} checks.","{@b Noisy:} This armor is loud and likely to alert others to your presence when you're using the {@action Avoid Notice} exploration activity (page 479).",{"type":"data","tag":"table","name":"Unarmored Defense","source":"CRB"},{"type":"data","tag":"table","name":"Armor","source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":275,"name":"Armor Specialization Effects","entries":["Certain class features can grant you additional benefits with certain armors. This is called an armor specialization effect. The exact effect depends on which armor group your armor belongs to, as listed below. Only medium and heavy armors have armor specialization effects.","{@b Chain:} The armor is so flexible it can bend with a critical hit and absorb some of the blow. Reduce the damage from critical hits by either 4 + the value of the armor's potency rune for medium armor, or 6 + the value of the armor's potency rune for heavy armor. This can't reduce the damage to less than the damage rolled for the hit before doubling for a critical hit.","{@b Composite:} The numerous overlapping pieces of this armor protect you from piercing attacks. You gain resistance to piercing damage equal to 1 + the value of the armor's potency rune for medium armor, or 2 + the value of the armor's potency rune for heavy armor.","{@b Leather:} The thick second skin of the armor disperses blunt force to reduce bludgeoning damage. You gain resistance to bludgeoning damage equal to 1 + the value of the armor's potency rune for medium armor, or 2 + the value of the armor's potency rune for heavy armor.","{@b Plate:} The sturdy plate provides no purchase for a cutting edge. You gain resistance to slashing damage equal to 1 + the value of the armor's potency rune for medium armor, or 2 + the value of the armor's potency rune for heavy armor."],"source":"CRB"},{"type":"data","tag":"table","name":"Unarmored Defense","source":"CRB"},{"type":"data","tag":"table","name":"Armor","source":"CRB"},{"type":"pf2-brown-box","page":275,"name":"MATERIALS","entries":["Most suits of armor and weapons are made from ordinary, commonly available materials like iron, leather, steel, and wood. If you're not sure what a suit of armor is made of, the GM determines the details.","Some armor, shields, and weapons are instead made of precious materials. These often have inherent supernatural properties. Cold iron, for example, which harms fey, and silver can damage werecreatures. These materials are detailed beginning on page 577."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":275,"name":"Armor Descriptions","entries":["Each type of armor is described in more detail below.","{@b Breastplate:} Though referred to as a breastplate, this type of armor consists of several pieces of plate or half-plate armor (page 276) that protect the torso, chest, neck, and sometimes the hips and lower legs. It strategically grants some of the protection of plate while allowing greater flexibility and speed.","{@b Chain Mail:} A suit of chain mail consists of several pieces of armor composed of small metal rings linked together in a protective mesh. It typically includes a chain shirt, leggings, a pair of arms, and a coif, collectively protecting most of the body.","{@b Chain Shirt:} Sometimes called a hauberk, this is a long shirt constructed of the same metal rings as chainmail. However, it is much lighter than chainmail and protects only the torso, upper arms, and upper legs of its wearer.","{@b Explorer's Clothing:} Adventurers who don't wear armor travel in durable clothing. Though it's not armor and uses your unarmored defense proficiency, it still has a Dex Cap and can grant an item bonus to AC if etched with potency runes (as described on page 581).","{@b Full Plate:} Plate mail consists of interlocking plates that encase nearly the entire body in a carapace of steel. It is costly and heavy, and the wearer often requires help to don it correctly, but it provides some of the best defense armor can supply. A suit of this armor comes with an undercoat of padded armor (see below) and a pair of gauntlets (page 285).","{@b Half Plate:} Half plate consists of most of the upper body plates used in full plate, with lighter or sparser steel plate protection for the arms and legs. This provides some of the protection of full plate with greater flexibility and speed. A suit of this armor comes with an undercoat of padded armor (see below) and a pair of gauntlets (page 285).","{@b Hide:} A mix of furs, sturdy hide, and sometimes molded boiled leather, this armor provides protection due to its layers of leather, though its bulkiness slows the wearer down and decreases mobility.","{@b Leather:} A mix of flexible and molded boiled leather, a suit of this type of armor provides some protection with maximum flexibility.","{@b Padded Armor:} This armor is simply a layer of heavy, quilted cloth, but it is sometimes used because it's so inexpensive. Padded armor is easier to damage and destroy than other types of armor. Heavy armor comes with a padded armor undercoat included in its Price, though it loses the comfort trait when worn under heavy armor. You can wear just that padded armor undercoat to sleep in, if your heavy armor is destroyed, or when otherwise not wearing the full heavy armor. This allows you to keep the armor invested and benefit from the power of any runes on the associated heavy armor, but no one else can wear your heavy armor without the padded undercoat.","{@b Scale Mail:} Scale mail consists of many metal scales sewn onto a reinforced leather backing, often in the form of a long shirt that protects the torso, arms, and legs.","{@b Splint Mail:} This type of armor is chain mail reinforced with flexible, interlocking metal plates, typically located on the wearer's torso, upper arms, and legs. A suit of this armor comes with an undercoat of padded armor (see above) and a pair of gauntlets (page 285).","{@b Studded Leather:} This leather armor is reinforced with metal studs and sometimes small metal plates, providing most of the flexibility of leather armor with more robust protection.",{"type":"data","tag":"table","name":"Damaging Armor","source":"CRB"}],"source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":271,"name":"Carrying and Using Items","entries":["A character carries items in three ways: held, worn, and stowed. Held items are in your hands; a character typically has two hands, allowing them to hold an item in each hand or a single two-handed item using both hands. Worn items are tucked into pockets, belt pouches, bandoliers, weapon sheaths, and so forth, and they can be retrieved and returned relatively quickly. Stowed items are in a backpack or a similar container, and they are more difficult to access.","Drawing a worn item or changing how you're carrying an item usually requires you to use an {@action Interact} action (though to drop an item, you use the {@action Release} action instead). {@table Changing Equipment||Table 6–2: Changing Equipment} lists some ways that you might change the items you're holding or carrying, and the number of hands you need to do so.","Many ways of using items require you to spend multiple actions. For example, drinking a potion stowed in your belt pouch requires using an {@action Interact} action to draw it and then using a second action to drink it as described in its {@action Activate an Item||Activate} entry.",{"type":"pf2-h3","page":271,"name":"Bulk","entries":["Carrying especially heavy or unwieldy items can make it more difficult for you to move, as can overloading yourself with too much gear. The Bulk value of an item reflects how difficult the item is to handle, representing its size, weight, and general awkwardness. If you have a high Strength score, you usually don't need to worry about Bulk unless you're carrying numerous substantial items.",{"type":"pf2-h4","page":272,"name":"Bulk Limits","entries":["You can carry an amount of Bulk equal to 5 plus your Strength modifier without penalty; if you carry more, you gain the encumbered condition. You can't hold or carry more Bulk than 10 plus your Strength modifier.",{"type":"pf2-beige-box","page":272,"name":"Encumbered","entries":["You are carrying more weight than you can manage. While you're {@condition encumbered}, you're {@condition clumsy} 1 and take a –10-foot penalty to all your Speeds. As with all penalties to your Speed, this can't reduce your Speed below 5 feet."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h4","page":272,"name":"Bulk Values","entries":["Items can have a number to indicate their Bulk value, or they can be light (indicated by an L) or negligible (indicated by a—) for the purpose of determining Bulk. For instance, {@item full plate} armor is 4 Bulk, a {@item longsword} is 1 Bulk, a dagger or scroll is light, and a piece of chalk is negligible. Ten light items count as 1 Bulk, and you round down fractions (so 9 light items count as 0 Bulk, and 11 light items count as 1 Bulk). Items of negligible Bulk don't count toward Bulk unless you try to carry vast numbers of them, as determined by the GM."],"source":"CRB"},{"type":"pf2-h4","page":272,"name":"Estimating an Item's Bulk","entries":["As a general rule, an item that weighs 5 to 10 pounds is 1 Bulk, an item weighing less than a few ounces is negligible, and anything in between is light. Particularly awkward or unwieldy items might have higher Bulk values. For example, a 10-foot pole isn't heavy, but its length makes it difficult for you to move while you have one on your person, so its Bulk is 1. Items made for larger or smaller creatures have greater or lesser Bulk, as described on page 295."],"source":"CRB"},{"type":"pf2-h4","page":272,"name":"Bulk of Coins","entries":["Coins are a popular means of exchange due to their portability, but they can still add up. A thousand coins of any denomination or combination of denominations count as 1 Bulk. It's not usually necessary to determine the Bulk of coins in fractions of 1,000; simply round down fractions of 1,000. In other words, 100 coins don't count as a light item, and 1,999 coins are 1 Bulk, not 2."],"source":"CRB"},{"type":"pf2-h4","page":272,"name":"Bulk of Creatures","entries":["You might need to know the Bulk of a creature, especially if you need to carry someone off the battlefield. The table that follows lists the typical Bulk of a creature based on its size, but the GM might adjust this number.",{"type":"table","page":272,"colStyles":["text-center","text-center"],"rows":[["Size of Creature","Bulk"],["{@trait Tiny}","1"],["{@trait Small}","3"],["{@trait Medium}","6"],["{@trait Large}","12"],["{@trait Huge}","24"],["{@trait Gargantuan}","48"]],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h4","page":272,"name":"Dragging","entries":["In some situations, you might drag an object or creature rather than carry it. If you're dragging something, treat its Bulk as half. Typically, you can drag one thing at a time, you must use both hands to do so, and you drag slowly—roughly 50 feet per minute unless you have some means to speed it up. Use the total Bulk of what you're dragging, so if you have a sack laden with goods, use the sum of all the Bulk it carries instead of an individual item within."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":272,"name":"Wielding Items","entries":["Some abilities require you to wield an item, typically a weapon. You're wielding an item any time you're holding it in the number of hands needed to use it effectively. When wielding an item, you're not just carrying it around—you're ready to use it. Other abilities might require you to merely carry or have an item. These apply as long as you have the item on your person; you don't have to wield it."],"source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":271,"name":"Coins and Currency","entries":["Though you might be able to barter valuable items in some areas, currency is the most versatile way to make transactions when you head to market. The most common currency is coins. For most commoners and beginning adventurers, the standard unit is the {@b silver piece} ({@b sp}). Each silver piece is a standard weight of silver and is typically accepted by any merchant or kingdom no matter where it was minted. There are three other common types of coins, each likewise standardized in weight and value. The first is the {@b copper piece} ({@b cp}). Each copper piece is worth one-tenth of a silver piece. The {@b gold piece} ({@b gp}) is often used for purchasing magic items and other expensive items, as 1 gold piece is worth 10 silver pieces or 100 copper pieces. The {@b platinum piece} ({@b pp}) is used by nobles to demonstrate their wealth, for the purchase of very expensive items, or simply as a way to easily transport large sums of currency. A platinum piece is worth 10 gold pieces, 100 silver pieces, or 1,000 copper pieces. See {@table Coin Values||Table 6–1: Coin Values} for the exchange rates of common types of coins.",{"type":"pf2-h3","page":271,"name":"Other Currency","entries":["Art objects, gems, and raw materials (such as those used for the {@action Craft} activity) can be used much like currency: you can sell them for the same Price you can buy them."],"source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":531,"name":"Constant Abilities","entries":["Some magic items have abilities that always function. You don't have to use any actions to do anything special (beyond wearing and investing a worn item or wielding a held item) to make these abilities work. For example, an {@item everburning torch} always sheds light, and a {@item flaming} weapon deals fire damage every time it deals damage."],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":293,"name":"Formulas","entries":["Formulas are instructions for making items with the {@action Craft} activity. You can usually read a formula as long as you can read the language it's written in, though you might lack the skill to {@action Craft} the item. Often, alchemists and crafting guilds use obscure languages or create codes to protect their formulas from rivals.","You can buy common formulas at the Price listed on {@table formulas||Table 6–13}, or you can hire an NPC to let you copy their formula for the same Price. A purchased formula is typically a schematic on rolled-up parchment of light Bulk. You can copy a formula into your formula book in 1 hour, either from a schematic or directly from someone else's formula book. If you have a formula, you can {@action Craft} a copy of it using the {@skill Crafting} skill. Formulas for uncommon items and rare items are usually significantly more valuable—if you can find them at all!","If you have an item, you can try to reverse-engineer its formula. This uses the Craft activity and takes the same amount of time as creating the item from a formula would. You must first disassemble the item. After the base downtime, you attempt a {@skill Crafting} check against the same DC it would take to {@action Craft} the item. If you succeed, you {@action Craft} the formula at its full Price, and you can keep working to reduce the Price as normal. If you fail, you're left with raw materials and no formula. If you critically fail, you also waste 10% of the raw materials you'd normally be able to salvage.","The item's disassembled parts are worth half its Price in raw materials and can't be reassembled unless you successfully reverse-engineer the formula or acquire the formula another way. Reassembling the item from the formula works just like {@action Craft||Crafting} it from scratch; you use the disassembled parts as the necessary raw materials.",{"type":"data","tag":"table","name":"Formulas","source":"CRB"},{"type":"pf2-h3","page":293,"name":"Items with Multiple Types","entries":["If an item has multiple types of different levels, each type has its own formula, and you need the formula for the specific type of item you want to Craft. For example, {@i if you have a formula for a type I bag of holding but not for a type II bag of holding, you must acquire a separate formula to Craft a type II bag of holding.}"],"source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":531,"name":"Investing Magic Items","entries":["Certain magic items convey their magical benefits only when worn and invested using the Invest an Item activity, tying them to your inner potential. These items have the invested trait. Many invested items have constant abilities that function all the time or that always trigger when you use the item—but only when they're invested. If you don't have an item invested, these abilities don't work. If an invested item can be activated, you must have invested the item to activate it.","You can benefit from no more than 10 invested magic items each day. Because this limit is fairly high, and because it matters only for worn items, you probably won't need to worry about reaching the limit until higher levels, when you've acquired many useful magic items to wear.","You can still gain the mundane benefits of an item if you don't invest it. A suit of {@i +1 resilient armor} still gives you its item bonus to AC when not invested, but it doesn't give its magical bonus to saving throws, and {@item winged boots} still protect your feet even though you can't activate them to fly. Entirely non-magical items don't need to be invested.",{"type":"data","tag":"action","name":"Invest an Item","source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":272,"name":"Item Damage","entries":["An item can be broken or destroyed if it takes enough damage. Every item has a {@b Hardness} value. Each time an item takes damage, reduce any damage the item takes by its Hardness. The rest of the damage reduces the item's Hit Points. Normally an item takes damage only when a creature is directly attacking it—commonly targeted items include doors and traps. A creature that attacks you doesn't normally damage your armor or other gear, even if it hits you. However, the {@feat Shield Block} reaction can cause your shield to take damage as you use it to prevent damage to yourself, and some monsters have exceptional abilities that can damage your items.","An item that takes damage can become and eventually destroyed. It becomes broken when its Hit Points are equal to or lower than its {@b Broken Threshold} ({@b BT}); once its Hit Points are reduced to 0, it is {@b destroyed}. A broken item has the broken condition until Repaired above its Broken Threshold. Anything that automatically makes an item broken immediately reduces its Hit Points to its Broken Threshold if the item had more Hit Points than that when the effect occurred. If an item has no {@condition Broken} Threshold, then it has no relevant changes to its function due to being broken, but it's still destroyed at 0 Hit Points. (See the broken condition definition on page 273 for more information.) A destroyed item can't be Repaired.","An item's Hardness, Hit Points, and {@condition Broken} Threshold usually depend on the material the item is made of. This information appears on page 577.",{"type":"pf2-beige-box","page":273,"name":"Broken","entries":["Broken is a condition that affects objects. An object is broken when damage has reduced its Hit Points to equal or less than its Broken Threshold. A broken object can't be used for its normal function, nor does it grant bonuses— with the exception of armor. Broken armor still grants its item bonus to AC, but it also imparts a status penalty to AC depending on its category: –1 for broken light armor, –2 for broken medium armor, or –3 for broken heavy armor.","A {@condition broken} item still imposes penalties and limitations normally incurred by carrying, holding, or wearing it. For example, broken armor would still impose its Dexterity modifier cap, check penalty, and so forth.","If an effect makes an item {@condition broken} automatically and the item has more HP than its Broken Threshold, that effect also reduces the item's current HP to the Broken Threshold."],"source":"CRB"},{"type":"pf2-h3","page":273,"name":"Object Immunities","entries":["Inanimate objects and hazards are immune to bleed, death effects, disease, healing, mental effects, necromancy, nonlethal attacks, and poison, as well as the doomed, drained, fatigued, paralyzed, sickened, and unconscious conditions. An item that has a mind is not immune to mental effects. Many objects are immune to other conditions, at the GM's discretion. For instance, a sword has no Speed, so it can't take a penalty to its Speed, but an effect that causes a Speed penalty might work on a moving blade trap."],"source":"CRB"},{"type":"data","tag":"table","name":"Changing Equipment","source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":271,"name":"Item Level","entries":["Each item has an item level, which represents the item's complexity and any magic used in its construction. Simpler items with a lower level are easier to construct, and you can't Craft items that have a higher level than your own (page 243). If an item's level isn't listed, its level is 0. While characters can use items of any level, GMs should keep in mind that allowing characters access to items far above their current level may have a negative impact on the game."],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":295,"name":"Items and Sizes","entries":["The Bulk rules in this chapter are for {@trait Small} and {@trait Medium} creatures, as the items are made for creatures of those sizes. Large creatures can carry more, and smaller creatures can carry less, as noted on {@table Bulk Conversions||Table 6–19}.","These rules for Bulk limits come up most often when a group tries to load up a mount or animal companion. The rules for items of different sizes tend to come into play when the characters defeat a big creature that has gear, since in most cases, the only creatures of other sizes are creatures under the GM's control. In most cases, Small or Medium creatures can wield a Large weapon, though it's unwieldy, giving them the clumsy 1 condition, and the larger size is canceled by the difficulty of swinging the weapon, so it grants no special benefit. Large armor is simply too large for Small and Medium creatures.",{"type":"pf2-h3","page":295,"name":"Bulk Conversions for Different Sizes","entries":["As shown in {@table Bulk Conversions||Table 6–19}, {@trait Large} or larger creatures are less encumbered by bulky items than {@trait Small} or {@trait Medium} creatures, while {@trait Tiny} creatures become overburdened more quickly. A {@trait Large} creature treats 10 items of 1 Bulk as 1 Bulk, a {@trait Huge} creature treats 10 items of 2 Bulk as 1 Bulk, and so on. A {@trait Tiny} creature treats 10 items of negligible Bulk as 1 Bulk. Negligible items work in a similar way—a {@trait Huge} creature treats items of 1 Bulk as negligible, so it can carry any number of items of 1 Bulk. A {@trait Tiny} creature doesn't treat any items as having negligible Bulk.",{"type":"data","tag":"table","name":"Bulk conversions","source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":295,"name":"Items of Different Sizes","entries":["Creatures of sizes other than {@trait Small} or {@trait Medium} need items appropriate to their size. These items have different Bulk and possibly a different Price. {@table Differently Sized Items||Table 6 –20} provides the Price and Bulk conversion for such items.",{"type":"data","tag":"table","name":"Differently Sized Items","source":"CRB"},"For example, a {@item morningstar} sized for a {@trait Medium} creature has a Price of 1 gp and 1 Bulk, so one made for a {@trait Huge} creature has a Price of 4 gp and 4 Bulk. One made for a {@trait Tiny} creature still costs 1 gp (due to its intricacy) and has 1/2 Bulk, which rounds down to light Bulk.","Because the way that a creature treats Bulk and the Bulk of gear sized for it scale the same way, {@trait Tiny} or {@trait Large} (or larger) creatures can usually wear and carry about the same amount of appropriately sized gear as a {@trait Medium} creature.","Higher-level magic items that cost significantly more than 8 times the cost of a mundane item can use their listed Price regardless of size. Precious materials, however, have a Price based on the Bulk of the item, so multiply the Bulk value as described on {@table Differently Sized Items||Table 6 –20}, then use the formula in the precious material's entry to determine the item's Price. See page 578 for more information."],"source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":271,"name":"Price","entries":["Most items in the following tables have a Price, which is the amount of currency it typically takes to purchase that item. An item with a Price of \"—\" can't be purchased. An item with a Price of 0 is normally free, but its value could be higher based on the materials used to create it. Most items can be sold for half their Price, but coins, gems, art objects, and raw materials (such as components for the Craft activity) can be exchanged for their full Price.",{"type":"pf2-key-box","page":271,"name":"STARTING MONEY","entries":[{"type":"pf2-title","name":"15 GP (150 SP)"}],"source":"CRB"},{"type":"data","tag":"table","name":"Coin Values","source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":580,"name":"Runes","entries":["Most magic weapons and armor gain their enhancements from potent eldritch runes etched into them. These runes allow for in-depth customization of items.","Runes must be physically engraved on items through a special process to convey their effects. They take two forms:","fundamental runes and property runes. Fundamental runes offer the most basic and essential benefits: a {@item weapon potency (generic)||weapon potency} rune adds a bonus to a weapon's attack rolls, and the {@item striking (generic)||striking} rune adds extra weapon damage dice. An {@item armor potency (generic)||armor potency} rune increases the armor's item bonus to AC, and the {@item resilient (generic)||resilient} rune grants a bonus to the wearer's saving throws. Property runes, by contrast, grant more varied effects—typically powers that are constant while the armor is worn or that take effect each time the weapon is used, such as a rune that grants energy resistance or one that adds fire damage to a weapon's attacks.","The number of property runes a weapon or armor can have is equal to the value of its potency rune. A +1 weapon can have one property rune, but it could hold another if the {@item +1 weapon potency} rune were upgraded to a {@item +2 weapon potency} rune. Since the {@item striking (generic)||striking} and {@item resilient (generic)||resilient} runes are fundamental runes, they don't count against this limit.","An item with runes is typically referred to by the value of its potency rune, followed by any other fundamental runes, then the names of any property runes, and ends with the name of the base item. For example, you might have a {@runeItem longsword||+1 weapon potency|} or {@runeItem chain mail||+2 armor potency||greater resilient||fire-resistant|}.","Rune-etched armor and weapons have the same Bulk and general characteristics as the non-magical version unless noted otherwise. The level of an item with runes etched onto it is equal to the highest level among the base item and all runes etched on it; therefore, a {@runeItem mace||+1 weapon potency||striking|} (a 4th-level item) with a {@item disrupting} rune (a 5th-level rune) would be a 5th-level item.","Each rune can be etched into a specific type of armor or weapon, as indicated in the Usage entry of the rune's stat block. Explorer's clothing can have armor runes etched on it even though it's not armor, but because it's not in the light, medium, or heavy armor category, it can't have runes requiring any of those categories.",{"type":"pf2-h3","page":580,"name":"Investiture","entries":["If a suit of armor has any runes, it has the {@trait invested} trait, requiring you to invest it to get its magical benefits."],"source":"CRB"},{"type":"pf2-h3","page":580,"name":"Rune Formulas","entries":["The Price of a rune's formula is the same as the Price of a formula for an item of the same level; it can be acquired in the same way as an {@quickref item formula||1|formulas}."],"source":"CRB"},{"type":"pf2-h3","page":580,"name":"The Etching Process","entries":["Etching a rune on an item follows the same process as using the {@action Craft} activity to make an item. You must have the formula for the rune, the item you're adding the rune to must be in your possession throughout the etching process, and you must meet any special Craft Requirements of the rune. The rune has no effect until you complete the {@action Craft} activity. You can etch only one rune at a time.",{"type":"pf2-h4","page":580,"name":"Transferring Runes","entries":["You can transfer runes between one item and another, including a {@item runestone}. This also uses the {@action Craft} activity. This lets you either move one rune from one item to another or swap a rune on one item with a rune on the other item. To swap, the runes must be of the same form (fundamental or property).","If an item can have two or more property runes, you decide which runes to swap and which to leave when transferring. If you attempt to transfer a rune to an item that can't accept it, such as transferring a melee weapon rune to a ranged weapon, you get an automatic critical failure on your {@action craft||Crafting} check. If you transfer a potency rune, you might end up with property runes on an item that can't benefit from them. These property runes go dormant until transferred to an item with the necessary potency rune or until you etch the appropriate potency rune on the item bearing them.","The DC of the {@skill Crafting} check to transfer a rune is determined by the item level of the rune being transferred, and the Price of the transfer is 10% of the rune's Price, unless transferring from a {@item runestone}, which is free. If you're swapping, use the higher level and higher Price between the two runes to determine these values. It takes 1 day (instead of the 4 days usually needed to Craft) to transfer a rune or swap a pair of runes, and you can continue to work over additional days to get a discount, as usual with Craft."],"data":{"quickrefIndex":true},"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":580,"name":"Fundamental Runes","entries":["Four fundamental runes produce the most essential magic of protection and destruction: {@item armor potency (generic)||armor potency} and {@item resilient (generic)||resilient} runes for armor, and {@item weapon potency (generic)||weapon potency} and {@item striking (generic)||striking} runes for weapons. A potency rune is what makes a weapon a magic weapon (page 599) or armor magic armor (page 556).","An item can have only one fundamental rune of each type, though etching a stronger rune can upgrade an existing rune to the more powerful version (as described in each rune's entry). As you level up, you typically alternate between increasing an item's potency rune and its {@item striking (generic)||striking} or {@item resilient (generic)||resilient} rune when you can afford to.",{"type":"data","tag":"table","name":"Fundamental Runes","source":"CRB"}],"source":"CRB"},{"type":"pf2-brown-box","page":581,"name":"SPECIFIC ARMOR AND WEAPONS","entries":["Unlike armor and weapons enhanced with runes, specific armor and weapons (such as {@item ghoul hide} or a {@item holy avenger}) are created for a specific purpose and can work quite differently from other items of their type. Specific magic armor and weapons can't gain property runes, but you can add or improve their fundamental runes."],"source":"CRB"},{"type":"pf2-brown-box","page":581,"name":"RUNE TRANSFER EXAMPLES","entries":["You could transfer a {@item flaming} rune from a {@runeItem greatsword||+1 weapon potency||striking||flaming|} to a {@runeItem longsword||+2 weapon potency||striking|}, resulting in a {@runeItem longsword||+2 weapon potency||striking||flaming|} and a {@runeItem greatsword||+1 weapon potency||striking|}. You could swap the weapon potency runes from a {@runeItem longsword||+1 weapon potency} and a {@runeItem greatsword||+2 weapon potency}, resulting in a {@runeItem longsword||+2 weapon potency} and a {@runeItem greatsword||+1 weapon potency}. However, you couldn't swap a {@item +1 weapon potency} rune from one weapon with a {@item flaming} property rune from another weapon, as the two runes don't have the same form.","When transferring a rune to an item that can hold multiple property runes, you can decide whether you transfer a single rune or swap runes between the items.","For example, a +2 weapon can hold two property runes. If you transferred a {@item flaming} rune from a {@runeItem rapier||+1 weapon potency||striking||flaming|} to a {@runeItem warhammer||+2 weapon potency||striking||frost|}, you would decide whether you wanted to end up with a {@runeItem rapier||+1 weapon potency||striking|} and a {@runeItem warhammer||+2 weapon potency||striking||flaming||frost|} or a {@runeItem rapier||+1 weapon potency||striking||frost|} and a {@runeItem warhammer||+2 weapon potency||striking||flaming|}."],"source":"CRB"},{"type":"pf2-brown-box","page":582,"name":"UPGRADING ARMOR AND WEAPON RUNES","entries":["You'll often want to upgrade the fundamental runes of magic armor or a magic weapon you already have. This requires upgrading each rune separately. Tables 11–5 and 11–6 summarize the Price of each step, with a number in parentheses indicating the item's level for the Craft activity. This also indicates the typical progression for an adventurer to follow when upgrading their armor and weapons. The tables here don't include progressions that aren't as likely to come up, like turning a +1 weapon directly into a +1 greater striking weapon.",{"type":"data","tag":"table","name":"Armor Upgrade Prices","source":"CRB"},{"type":"data","tag":"table","name":"Weapon Upgrade Price","source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":582,"name":"Property Runes","entries":["Property runes add special abilities to armor or a weapon in addition to the item's fundamental runes. If a suit of armor or a weapon has multiple etchings of the same rune, only the highest-level one applies. You can upgrade a property rune to a higher-level type of that rune in the same way you would upgrade a fundamental rune.","Rune abilities that must be activated follow the rules for activating magic items on page 532."],"source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":564,"name":"Scrolls","entries":["A scroll contains a single spell that you can cast without having to expend a spell slot. A scroll can be Crafted to contain nearly any spell, so the types of scrolls available are limited only by the number of spells in the game. The exceptions are cantrips, focus spells, and rituals, none of which can be put on scrolls. The spell on a scroll can be cast only once, and the scroll is destroyed as part of the casting. The spell on the scroll is cast at a particular spell level, as determined by the scroll. For instance, a scroll of {@spell magic missile} (1st level) can be used to cast the 1st-level version of magic missile, but not a magic missile heightened to 2nd level. If no level is listed, the scroll can be used to cast the spell at its lowest level.","If you find a scroll, you can try to figure out what spell it contains. If the spell is a common spell from your spell list or a spell you know, you can spend a single {@action Recall Knowledge} action and automatically succeed at identifying the scroll's spell. If it's not, you must use {@action Identify Magic} to learn what spell the scroll holds.",{"type":"pf2-h4","page":564,"name":"Casting a Spell from a Scroll","entries":["{@action Cast a Spell||Casting a Spell} from a scroll requires holding the scroll in one hand and activating it with a {@action Cast a Spell} activity using the normal number of actions for that spell.","To {@action Cast a Spell} from a scroll, the spell must appear on your spell list. Because you're the one {@action Cast a Spell||Casting the Spell}, use your spell attack roll and spell DC. The spell also gains the appropriate trait for your tradition (arcane, divine, occult, or primal).","Any physical material components and costs are provided when a scroll is created, so you don't need to provide them when {@action Cast a Spell||Casting a Spell} from a scroll. You must replace any required material component for that spell with a somatic component. If the spell requires a focus, you must have that focus to {@action Cast a Spell||Cast the Spell} from a scroll."],"source":"CRB"},{"type":"pf2-h4","page":564,"name":"Scroll Statistics","entries":["All scrolls have the same base statistics unless noted otherwise. A scroll has light Bulk, and it must be held in one hand to be activated."],"source":"CRB"},{"type":"pf2-h4","page":565,"name":"Varying Statistics","entries":["Table 11–3 indicates the item level and Price of a scroll, both of which are based on the level of the spell contained on the scroll. Any costs to {@action Cast a Spell||Cast the Spell} are added to the scroll's Price when the scroll is crafted, so a scroll containing a spell with a Cost entry will have a higher Price than what appears on the table. The scroll's rarity matches the spell's rarity.","The traits for a scroll vary based on the spell it contains.","A scroll always has the consumable, magical, and scroll traits, plus the traits of the spell stored on it."],"source":"CRB"},{"type":"data","tag":"table","name":"Scroll Statistics","source":"CRB"},{"type":"pf2-h4","page":565,"name":"Crafting a Scroll","entries":["The process to {@action Craft} a scroll is much like that to {@action Craft} any other magic item. When you begin the crafting process, choose a spell to put into the scroll. You have to either {@action Cast a Spell||Cast that Spell} during the crafting process, or someone else must do so in your presence. {@action Cast a Spell||Casting that Spell} doesn't produce its normal effects; instead, the magic is trapped inside the scroll. The casting must come from a spellcaster expending a spell slot.","You can't {@action Craft} a scroll from a spell produced from another magic item, for example. The caster has to provide any cost of the spell.","Like other {@trait consumable||consumables}, scrolls can be crafted in batches of four. All scrolls of one batch must contain the same spell at the same level, and you must provide one casting for each scroll crafted."],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h4","page":565,"name":"Sample Scrolls","entries":["A wide variety of spells can appear on scrolls. The following specific scrolls are just examples.",{"type":"data","tag":"item","data":{"name":"Scroll of Illusory Disguise","source":"CRB","page":565,"type":"Item","level":1,"traits":["consumable","illusion","magical","scroll"],"price":{"coin":"gp","amount":3},"usage":"held in 1 hand","bulk":"L","activate":{"activity":{"number":2,"unit":"action"},"components":"{@action Cast a Spell}"},"category":"Scroll","entries":["This scroll can cast {@spell illusory disguise} as a 1st-level spell."],"craftReq":"Supply one casting of illusory disguise."}},{"type":"data","tag":"item","data":{"name":"Scroll of Glitterdust","source":"CRB","page":565,"type":"Item","level":3,"traits":["consumable","evocation","magical","scroll"],"price":{"coin":"gp","amount":12},"usage":"held in 1 hand","bulk":"L","activate":{"activity":{"number":2,"unit":"action"},"components":"{@action Cast a Spell}"},"category":"Scroll","entries":["This scroll can be used to cast {@spell glitterdust} as a 2nd-level spell."],"craftReq":"Supply one casting of glitterdust."}}],"source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":294,"name":"Services","entries":["The services listed on {@table Basic Services and Consumables||Table 6–14} describe expenditures for common services and consumables.",{"type":"data","tag":"table","name":"Basic Services and Consumables","source":"CRB"},{"type":"pf2-h3","page":294,"name":"Hirelings","entries":["Paid laborers can provide services for you. Unskilled hirelings can perform simple manual labor and are untrained at most skills. Skilled hirelings have expert proficiency in a particular skill. Hirelings are level 0. If a skill check is needed, an untrained hireling has a +0 modifier, while a skilled hireling has a +4 modifier in their area of expertise and +0 for other skill checks. Hirelings' rates double if they're going adventuring with you."],"source":"CRB"},{"type":"pf2-h3","page":294,"name":"Transportation","entries":["The cost to hire transportation includes standard travel with no amenities. Most transit services provide basic sleeping arrangements, and some provide meals at the rates listed on Table 6–14. Arranging transportation into dangerous lands can be more expensive or impossible."],"source":"CRB"},{"type":"pf2-h3","page":294,"name":"Spellcasting","entries":["Spellcasting services, listed on {@table Spellcasting Services||Table 6–15}, are uncommon. Having a spell cast for you requires finding a spellcaster who knows and is willing to cast it. It's hard to find someone who can cast higher-level spells, and uncommon spells typically cost at least 100% more, if you can find someone who knows them at all. Spells that take a long time to cast (over 1 minute) usually cost 25% more. You must pay any cost listed in the spell in addition to the Price on the table.",{"type":"data","tag":"table","name":"Spellcasting Services","source":"CRB"}],"source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":277,"name":"Shields","entries":[{"type":"pf2-h1-flavor","page":277,"entries":["{@i A shield can increase your character's defense beyond the protection their armor provides. Your character must be wielding a shield in one hand to make use of it, and it grants its bonus to AC only if they use an action to Raise a Shield. This action grants the shield's bonus to AC as a circumstance bonus until their next turn starts. A shield's Speed penalty applies whenever your character is holding the shield, whether they have raised it or not.}"],"source":"CRB"},"{@action Raise a Shield} is the action most commonly used with shields. Most shields must be held in one hand, so you can't hold anything with that hand and {@action Raise a Shield}. A {@item buckler}, however, doesn't take up your hand, so you can {@action Raise a Shield} with a {@item buckler} if the hand is free (or, at the GM's discretion, if it's holding a simple, lightweight object that's not a weapon). You lose the benefits of {@action Raise a Shield} if that hand is no longer free.","When you have a {@item tower shield} raised, you can use the {@action Take Cover} action to increase the circumstance bonus to AC to +4. This lasts until the shield is no longer raised. If you would normally provide {@quickref lesser cover||3|cover} against an attack, having your tower shield raised provides {@quickref standard cover||3|cover} against it (and other creatures can {@action Take Cover} as normal using the cover from your shield).","If you have access to the {@feat Shield Block} reaction (from your class or from a feat), you can use it while {@action Raise a Shield||Raising your Shield} to reduce the damage you take by an amount equal to the shield's Hardness. Both you and the shield then take any remaining damage.",{"type":"pf2-h2","page":277,"name":"Shield Statistics","entries":["Shields have statistics that follow the same rules as armor:","Price, Speed Penalty, and Bulk. See page 274 for the rules for those statistics. Their other statistics are described here.",{"type":"pf2-h3","page":277,"name":"AC Bonus","entries":["A shield grants a circumstance bonus to AC, but only when the shield is raised. This requires using the Raise a Shield action, found on page 472."],"source":"CRB"},{"type":"pf2-h3","page":277,"name":"Hardness","entries":["Whenever a shield takes damage, the amount of damage it takes is reduced by this amount. This number is particularly relevant for shields because of the {@feat Shield Block} feat (page 266). The rules for Hardness appear on page 272."],"source":"CRB"},{"type":"pf2-h3","page":277,"name":"HP (BT)","entries":["This column lists the shield's Hit Points (HP) and Broken Threshold (BT). These measure how much damage the shield can take before it's destroyed (its total HP) and how much it can take before being broken and unusable (its BT). These matter primarily for the {@feat Shield Block} reaction."],"source":"CRB"},{"type":"data","tag":"table","name":"Shields","source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":277,"name":"Attacking with a Shield","entries":["A shield can be used as a martial weapon for attacks, using the statistics listed for a shield bash on {@table Melee Weapons||Table 6–7: Melee Weapons}. The shield bash is an option only for shields that weren't designed to be used as weapons. A shield can't have runes added to it. You can also buy and attach a {@item shield boss} or {@item shield spikes} to a shield to make it a more practical weapon. These can be found on {@table Melee Weapons||Table 6–7}. These work like other weapons and can even be etched with runes."],"source":"CRB"},{"type":"pf2-h2","page":277,"name":"Shield Descriptions","entries":["Each type of shield is described in more detail below.","{@b Buckler:} This very small shield is a favorite of duelists and quick, lightly armored warriors. It's typically made of steel and strapped to your forearm. You can Raise a Shield with your buckler as long as you have that hand free or are holding a light object that's not a weapon in that hand.","{@b Wooden Shield:} Though they come in a variety of shapes and sizes, the protection offered by wooden shields comes from the stoutness of their materials. While wooden shields are less expensive than steel shields, they break more easily.","{@b Steel Shield:} Like wooden shields, steel shields come in a variety of shapes and sizes. Though more expensive than wooden shields, they are much more durable.","{@b Tower Shield:} These massive shields can be used to provide cover to nearly the entire body. Due to their size, they are typically made of wood reinforced with metal."],"source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":273,"name":"Shoddy Items","entries":["Improvised or of dubious make, shoddy items are never available for purchase except for in the most desperate of communities. When available, a shoddy item usually costs half the Price of a standard item, though you can never sell one in any case. Attacks and checks involving a shoddy item take a –2 item penalty. This penalty also applies to any DCs that a shoddy item applies to (such as AC, for shoddy armor). A shoddy suit of armor also worsens the armor's check penalty by 2. A shoddy item's Hit Points and Broken Threshold are each half that of a normal item of its type."],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":592,"name":"Staves","entries":["A magical staff is an indispensable accessory for an elite spellcaster. A staff is tied to one person during a preparation process, after which the preparer, and only the preparer, can harness the staff to cast a variety of spells throughout the day. The spells that can be cast from a staff are listed in bullet points organized by level under each version of the staff. Many staves can be found in multiple versions, with more powerful versions that contain more spells—such a staff always contains the spells of all lower-level versions, in addition to the spells listed in its own entry. All magical staves have the staff trait.",{"type":"pf2-h3","page":592,"name":"Casting Spells from a Staff","entries":["A staff gains charges when someone prepares it for the day. The person who prepared a staff can expend the charges to cast spells from it. You can {@action Cast a Spell} from a staff only if you have that spell on your spell list, are able to cast spells of the appropriate level, and expend a number of charges from the staff equal to the spell's level. {@action Cast a Spell||Casting a Spell} from a staff requires holding the staff (typically in one hand) and {@action Activate an Item||Activating} the staff by {@action Cast a Spell||Casting the Spell}, which takes the spell's normal number of actions.","Use your spell attack roll and spell DC when {@action Cast a Spell||Casting a Spell} from a staff. The spell gains the appropriate trait for your magical tradition (arcane, divine, occult, or primal) and can be affected by any modifications you can normally make when casting spells, such as metamagic feats. You must provide any material components, cost, or focus required by the spell, or you fail to cast it.","Prepared spellcasters and spontaneous spellcasters each have a unique way of altering how their staves gain charges and the ways they can be used (see the Prepared Spellcasters and Spontaneous Spellcasters sections below).",{"type":"pf2-h4","page":592,"name":"Casting Cantrips from a Staff","entries":["If a staff contains a cantrip, you can cast that cantrip using the staff without expending any charges. The cantrip's level is heightened to the same level as cantrips you cast."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":592,"name":"Preparing a Staff","entries":["During your daily preparations, you can prepare a staff to add charges to it for free. When you do so, that staff gains a number of charges equal to the level of your highest-level spell slot. You don't need to expend any spells to add charges in this way. No one can prepare more than one staff per day, nor can a staff be prepared by more than one person per day. If the charges aren't used within 24 hours, they're lost, and preparing the staff anew removes any charges previously stored in it. You can prepare a staff only if you have at least one of the staff's spells on your spell list.",{"type":"pf2-h4","page":592,"name":"Prepared Spellcasters","entries":["A prepared spellcaster—such as a cleric, druid, or wizard— can place some of their own magic in a staff to increase its number of charges. When a prepared spellcaster prepares a staff, they can expend a spell slot to add a number of charges to the staff equal to the level of the spell. They can't expend more than one spell in this way each day. For example, if Ezren can cast 3rd-level spells and prepared a staff, the staff would gain 3 charges, but Ezren could increase this to 6 by expending one of his 3rd-level spells, 5 by expending a 2nd-level spell, or 4 by expending a 1st-level spell."],"source":"CRB"},{"type":"pf2-h4","page":592,"name":"Spontaneous Spellcasters","entries":["A spontaneous spellcaster, such as a bard or sorcerer, can reduce the number of charges it takes to Activate a staff by supplementing with their own energy. When a spontaneous spellcaster Activates a staff, they can expend 1 charge from the staff and one of their spell slots to cast a spell from the staff of the same level (or lower) as the expended spell slot. This doesn't change the number of actions it takes to cast the spell. For example, if Seoni can cast 3rd-level spells and prepared a staff, the staff would gain 3 charges. She could expend 1 charge and one of her 3rd-level spell slots to cast a 3rd-level spell from the staff, or 1 charge and one of her 2nd-level spell slots to cast a 2nd-level spell from the staff. She could still expend 3 charges from the staff to cast a 3rd-level spell from it without using any of her own slots, just like any other spellcaster"],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":592,"name":"Attacking with a Staff","entries":["Staves are also {@item staff} weapons. They can be etched with fundamental runes but not property runes. This doesn't alter any of their spellcasting abilities."],"source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":597,"name":"Wands","entries":["Short, slender items typically made of wood, wands let you cast a specific spell without expending a spell slot. They can be used once per day, but can be overcharged to attempt to cast them again at great risk. Each wand holds a spell of a certain level, determined when the wand is created. Cantrips, focus spells, and rituals can't be placed in wands.","If you find a wand, you can try to figure out what spell is in it. If the spell is a common spell from your spell list or is a spell you know, you can use a single {@action Recall Knowledge} action and automatically succeed.","If it's not, you must {@action Identify Magic}.",{"type":"pf2-h3","page":597,"name":"Casting Spells from a Wand","entries":["A wand contains a spell that can be cast once per day. Casting a spell from a wand requires holding the wand in one hand and activating the item with a {@action Cast a Spell} activity using the normal number of actions for the spell.","To cast a spell from a wand, it must be on your spell list. Because you're the one casting the spell, use your spell attack roll and spell DC. The spell is of your tradition.","A spell cast from a wand doesn't require physical material components, but you must replace any material component normally required to cast the spell with a somatic component. If the spell requires a focus, you must still have that focus to cast the spell from a wand, and if the spell has a cost, you must still pay that cost to cast the spell from a wand.",{"type":"pf2-h4","page":597,"name":"Overcharging a Wand","entries":["After the spell is cast from the wand for the day, you can attempt to cast it one more time—overcharging the wand at the risk of destroying it. {@action Cast a Spell||Cast the Spell} again, then roll a DC {@flatDC 10} flat check. On a success, the wand is broken.","On a failure, the wand is destroyed. If anyone tries to overcharge a wand when it's already been overcharged that day, the wand is automatically destroyed (even if it had been repaired) and no spell is cast."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":597,"name":"Wand Statistics","entries":["A wand's base statistics are the same unless noted otherwise in a special wand. It has light Bulk, and must be held in one hand to be activated. Each wand contains a specific level of the spell. When you activate a wand, you can only cast the spell at the specified level, but you can craft a wand with a heightened version of a spell.",{"type":"pf2-h4","page":597,"name":"Varying Statistics","entries":["Each type of wand has a Level and Price determined by the spell's level. The wand's rarity matches the spell's rarity. The item's traits also vary, based on the spell. A wand has any traits listed in its stat block (usually just magical and wand), plus any traits of the spell stored on it. A wand has the normal Hardness, BT, and HP of a thin item of its material (page 577)."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":597,"name":"Crafting a Wand","entries":["For the most part, the process to Craft a wand is like that to Craft any other magic item. When you begin the crafting process, choose a spell to put into the wand. You have to either cast that spell during the process, or someone else must do so in your presence. That spell doesn't have its normal effects; instead, the magic is captured inside the wand. The caster doesn't need to pay any cost of the spell.","The casting must come from a spellcaster expending a spell slot. You can't make a wand from a spell that comes from another magic item, for example.",{"type":"pf2-brown-box","page":597,"name":"EXAMPLE WAND","entries":["This example {@item magic wand (generic)} has the {@spell heal} spell.",{"type":"data","tag":"item","data":{"name":"Wand of Heal","source":"CRB","page":597,"type":"Item","level":"3+","traits":["magical","necromancy","positive","wand"],"usage":"held in 1 hand","bulk":"L","category":"Wand","entries":["The golden end caps on this white wooden wand are adorned with ruby cabochons.",{"type":"ability","style":"compact","components":["{@action Cast a Spell}"],"frequency":{"freq":1,"unit":"day","overcharge":true,"number":"once "},"entries":["You cast a {@spell heal} spell at the indicated level."]}],"craftReq":"Supply a listed-level casting of heal.","generic":"G","variants":[{"type":"1st-level spell","level":3,"price":{"coin":"gp","amount":60},"entries":[]},{"type":"2nd-level spell","level":5,"price":{"coin":"gp","amount":160},"entries":[]},{"type":"3rd-level spell","level":7,"price":{"coin":"gp","amount":360},"entries":[]},{"type":"4th-level spell","level":9,"price":{"coin":"gp","amount":700},"entries":[]},{"type":"5th-level spell","level":11,"price":{"coin":"gp","amount":1500},"entries":[]},{"type":"6th-level spell","level":13,"price":{"coin":"gp","amount":3000},"entries":[]},{"type":"7th-level spell","level":15,"price":{"coin":"gp","amount":6500},"entries":[]},{"type":"8th-level spell","level":17,"price":{"coin":"gp","amount":15000},"entries":[]},{"type":"9th-level spell","level":19,"price":{"coin":"gp","amount":40000},"entries":[]}]}}],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":597,"name":"Magic Wand","entries":["The simplest form of wand contains a spell, with Price and level based on that spell. The wand has the magical and wand traits, as well as the traits the spell has. The name of a magic wand with a spell in it is simply \"wand of,\" followed by the spell's name."],"source":"CRB"},{"type":"pf2-h3","page":598,"name":"Specialty Wands","entries":["Specialty wands can contain only certain kinds of spells, as noted in the stat block, and either alter the spell's effects or affect how it can be cast. The Craft Requirements entry lists what kinds of spells the wand can hold."],"source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":278,"name":"Weapons","entries":[{"type":"pf2-h1-flavor","page":278,"entries":["{@i Most characters in Pathfinder carry weapons, ranging from mighty warhammers to graceful bows to even simple clubs. Full details on how you calculate the bonuses, modifiers, and penalties for attack rolls and damage rolls are given in Chapter 9 on page 446, but they're summarized here, followed by the rules for weapons and dozens of weapon choices.}"],"source":"CRB"},{"type":"pf2-h2","page":278,"name":"Attack Rolls","entries":["When making an attack roll, determine the result by rolling 1d20 and adding your attack modifier for the weapon or unarmed attack you're using. Modifiers for melee and ranged attacks are calculated differently.",{"type":"pf2-inset","page":278,"entries":["Ranged attack modifier = Dexterity modifier + proficiency bonus + other bonuses + penalties"],"source":"CRB"},{"type":"pf2-inset","page":278,"entries":["Melee attack modifier = Strength modifier {@n (or optionally Dexterity for a finesse weapon)} + proficiency bonus + other bonuses + penalties"],"source":"CRB"},"Bonuses, and penalties apply to these rolls just like with other types of checks. Weapons with potency runes (page 581) add an item bonus to your attack rolls.",{"type":"pf2-h3","page":278,"name":"Multiple Attack Penalty","entries":["If you use an action with the attack trait more than once on the same turn, your attacks after the first take a penalty called a multiple attack penalty. Your second attack takes a –5 penalty, and any subsequent attacks take a –10 penalty.","The multiple attack penalty doesn't apply to attacks you make when it isn't your turn (such as attacks made as part of a reaction). You can use a weapon with the {@trait agile} trait (page 282) to reduce your multiple attack penalty."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":278,"name":"Damage Rolls","entries":["When the result of your attack roll with a weapon or unarmed attack equals or exceeds your target's AC, you hit your target! Roll the weapon or unarmed attack's damage die and add the relevant modifiers, bonuses, and penalties to determine the amount of damage you deal. Calculate a damage roll as follows.",{"type":"pf2-inset","page":278,"entries":["Melee damage roll = damage die of weapon or unarmed attack + Strength modifier + bonuses + penalties"],"source":"CRB"},{"type":"pf2-inset","page":278,"entries":["Ranged damage roll = damage die of weapon + Strength modifier for thrown weapons + bonuses + penalties"],"source":"CRB"},"Ranged weapons don't normally add an ability modifier to the damage roll, though weapons with the propulsive trait (page 283) add half your Strength modifier (or your full modifier if it is a negative number), and thrown weapons add your full Strength modifier.","Magic weapons with {@item striking}, {@item greater striking}, or {@item major striking} runes (page 581) add one or more weapon damage dice to your damage roll. These extra dice are the same die size as the weapon's damage die. At higher levels, most characters also gain extra damage from weapon specialization."],"source":"CRB"},{"type":"pf2-h2","page":278,"name":"Critical Hits","entries":["When you make an attack and succeed with a natural 20 (the number on the die is 20), or if the result of your attack exceeds the target's AC by 10, you achieve a critical success (also known as a critical hit).","If you critically succeed at a {@action Strike}, your attack deals {@book double damage|CRB|9|Doubling and Halving Damage}. Other attacks, such as spell attack rolls and some uses of the {@skill Athletics} skill, describe the specific effects that occur when their outcomes are critical successes."],"source":"CRB"},{"type":"pf2-h2","page":278,"name":"Unarmed Attacks","entries":["Almost all characters start out trained in unarmed attacks. You can {@action Strike} with your fist or another body part, calculating your attack and damage rolls in the same way you would with a weapon. Unarmed attacks can belong to a weapon group (page 280), and they might have weapon traits (page 282). However, unarmed attacks aren't weapons, and effects and abilities that work with weapons never work with unarmed attacks unless they specifically say so.","{@table Unarmed Attacks||Table 6–6: Unarmed Attacks} lists the statistics for an unarmed attack with a fist, though you'll usually use the same statistics for attacks made with any other parts of your body. Certain ancestry feats, class features, and spells give access to special, more powerful unarmed attacks. Details for those unarmed attacks are provided in the abilities that grant them."],"source":"CRB"},{"type":"pf2-h2","page":278,"name":"Improvised Weapons","entries":["If you attack with something that wasn't built to be a weapon, such as a chair or a vase, you're making an attack with an improvised weapon. Improvised weapons are simple weapons. You take a –2 item penalty to attack rolls with an improvised weapon. The GM determines the amount and type of damage the attack deals, if any, as well as any weapon traits the improvised weapon should have."],"source":"CRB"},{"type":"pf2-h2","page":279,"name":"Weapon Statistics","entries":["The tables on pages 280 –282 list the statistics for various melee and ranged weapons that you can purchase, as well as the statistics for striking with a fist (or another basic unarmed attack). The tables present the following statistics. All weapons listed in this chapter have an item level of 0.",{"type":"pf2-h3","page":279,"name":"Damage","entries":["This entry lists the weapon's damage die and the type of damage it deals: B for bludgeoning, P for piercing, or S for slashing.",{"type":"pf2-beige-box","page":279,"name":"Damage Dice","entries":["Each weapon lists the damage die used for its damage roll. A standard weapon deals one die of damage, but a magical {@item striking (generic)||striking} rune can increase the number of dice rolled, as can some special actions and spells. These additional dice use the same die size as the weapon or unarmed attack's normal damage die.",{"type":"pf2-title","name":"Counting Damage Dice"},"Effects based on a weapon's number of damage dice include only the weapon's damage die plus any extra dice from a {@item striking (generic)||striking} rune. They don't count extra dice from abilities, critical specialization effects, property runes, weapon traits, or the like.",{"type":"pf2-title","name":"Increasing Die Size"},"When an effect calls on you to increase the size of your weapon damage dice, instead of using its normal weapon damage dice, use the next larger die, as listed below (so if you were using a d4, you'd use a d6, and so on). If you are already using a d12, the size is already at its maximum. You can't increase your weapon damage die size more than once.","{@c {@b {@dice 1d4} ➞ {@dice 1d6} ➞ {@dice 1d8} ➞ {@dice 1d10} ➞ {@dice 1d12}}}"],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":279,"name":"Range","entries":["Ranged and thrown weapons have a range increment. Attacks with these weapons work normally up to that distance. Attack rolls beyond a weapon's range increment take a –2 penalty for each additional multiple of that increment between you and the target. Attacks beyond the sixth range increment are impossible.","For example, a shortbow takes no penalty against a target up to 60 feet away, a –2 penalty against a target beyond 60 feet but up to 120 feet away, and a –4 penalty against a target beyond 120 feet but up to 180 feet away, and so on, up to 360 feet."],"source":"CRB"},{"type":"pf2-h3","page":279,"name":"Reload","entries":["While all weapons need some amount of time to get into position, many ranged weapons also need to be loaded and reloaded. This entry indicates how many {@action Interact} actions it takes to reload such weapons. This can be 0 if drawing ammunition and firing the weapon are part of the same action. If an item takes 2 or more actions to reload, the GM determines whether they must be performed together as an activity, or you can spend some of those actions during one turn and the rest during your next turn.","An item with an entry of \"—\" must be drawn to be thrown, which usually takes an {@action Interact} action just like drawing any other weapon. Reloading a ranged weapon and drawing a thrown weapon both require a free hand. Switching your grip to free a hand and then to place your hands in the grip necessary to wield the weapon are both included in the actions you spend to reload a weapon."],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h3","page":279,"name":"Bulk","entries":["This entry gives the weapon's Bulk. A weapon's Bulk is increased or decreased if it's sized for creatures that aren't Small or Medium size, following the rules on page 295."],"source":"CRB"},{"type":"pf2-brown-box","page":279,"name":"SELECTING WEAPONS","entries":["Characters who focus on combat need to carefully consider their choice of weapons, evaluating whether they want to fight in melee or at range, the weapons' damage potential, and the special features of various weapons. Characters who are primarily spellcasters usually just need to pick a backup weapon in the best category they're trained or better in.","When selecting weapons, start by identifying the weapon types you're trained or better in. You should then compare weapons within these types to determine which ones you will have the highest melee or ranged attack modifier with. It's usually considered best practice to select both a melee and ranged weapon during character creation so you can contend with a broader variety of foes and situations.",{"type":"pf2-title","name":"Weapon Categories"},"Weapons fall into broad categories depending on how much damage they deal and what traits they have. Martial weapons generally deal more damage than simple weapons, and advanced weapons generally have more advantageous traits than martial weapons with the same damage. Generally, you'll want to select weapons that deal more damage, but if you're a highly skilled combatant, you might want to pick a weapon with interesting traits, even if it has a lower weapon damage die. You can also purchase multiple weapons within your budget, allowing you to switch between them for different situations."],"source":"CRB"},{"type":"pf2-h3","page":279,"name":"Hands","entries":["Some weapons require one hand to wield, and others require two. A few items, such as a longbow, list 1+ for its Hands entry. You can hold a weapon with a 1+ entry in one hand, but the process of shooting it requires using a second to retrieve, nock, and loose an arrow. This means you can do things with your free hand while holding the bow without changing your grip, but the other hand must be free when you shoot. To properly wield a 1+ weapon, you must hold it in one hand and also have a hand free.","Weapons requiring two hands typically deal more damage. Some one-handed weapons have the two-hand trait, causing them to deal a different size of weapon damage die when used in two hands. In addition, some abilities require you to wield a weapon in two hands. You meet this requirement while holding the weapon in two hands, even if it doesn't require two hands or have the two-hand trait."],"source":"CRB"},{"type":"pf2-h3","page":280,"name":"Group","entries":["A weapon or unarmed attack's group classifies it with similar weapons. Groups affect some abilities and what the weapon does on a critical hit if you have access to that weapon or unarmed attack's critical specialization effects; for full details, see page 283."],"source":"CRB"},{"type":"pf2-h3","page":280,"name":"Weapon Traits","entries":["The traits a weapon or unarmed attack has are listed in this entry. Any trait that refers to a \"weapon\" can also apply to an unarmed attack that has that trait."],"source":"CRB"},{"type":"pf2-h3","page":280,"name":"Ammunition","entries":["Some entries in the ranged weapons tables are followed by an entry indicating the type of ammunition that weapon launches. The damage die is determined by the weapon, not the ammunition. Because that and other relevant statistics vary by weapon, ammunition entries list only the name, quantity, Price, and Bulk. Using ammunition destroys it."],"source":"CRB"},{"type":"data","tag":"table","name":"Unarmed Attacks","source":"CRB"},{"type":"data","tag":"table","name":"Melee Weapons","source":"CRB"},{"type":"data","tag":"table","name":"Ranged Weapons","source":"CRB"},{"type":"pf2-h3","page":282,"name":"Weapon Traits","entries":["{@filter Weapons and unarmed attacks with the weapon trait can have the following traits.|traits||source=CRB}"],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":283,"name":"Critical Specialization Effects","entries":["Certain feats, class features, weapon runes, and other effects can grant you additional benefits when you make a Strike with certain weapons and get a critical success. This is called a critical specialization effect. The exact effect depends on which weapon group your weapon belongs to, as listed below. You can always decide not to add the critical specialization effect of your weapon.","{@b Axe:} Choose one creature adjacent to the initial target and within reach. If its AC is lower than your attack roll result for the critical hit, you deal damage to that creature equal to the result of the weapon damage die you rolled (including extra dice for its potency rune, if any). This amount isn't doubled, and no bonuses or other additional dice apply to this damage.","{@b Bomb:} Increase the radius of the bomb's splash damage (if any) to 10 feet.","{@b Bow:} If the target of the critical hit is adjacent to a surface, it gets stuck to that surface by the missile. The target is immobilized and must spend an Interact action to attempt a DC 10 {@skill Athletics} check to pull the missile free; it can't move from its space until it succeeds. The creature doesn't become stuck if it is incorporeal, is liquid (like a water elemental or some oozes), or could otherwise escape without effort.","{@b Brawling:} The target must succeed at a Fortitude save against your class DC or be slowed 1 until the end of your next turn.","{@b Club:} You knock the target away from you up to 10 feet (you choose the distance). This is {@quickref forced movement||3|forced movement}.","{@b Dart:} The target takes {@dice 1d6} {@condition Persistent Damage|CRB|persistent bleed damage}. You gain an item bonus to this bleed damage equal to the weapon's item bonus to attack rolls.","{@b Flail:} The target is knocked {@condition prone}.","{@b Hammer:} The target is knocked {@condition prone}.","{@b Knife:} The target takes {@dice 1d6} {@condition Persistent Damage|CRB|persistent bleed} damage. You gain an item bonus to this bleed damage equal to the weapon's item bonus to attack rolls.","{@b Pick:} The weapon viciously pierces the target, who takes 2 additional damage per weapon damage die.","{@b Polearm:} The target is moved 5 feet in a direction of your choice. This is {@quickref forced movement||3|forced movement}.","{@b Shield:} You knock the target back from you 5 feet. This is {@quickref forced movement||3|forced movement}.","{@b Sling:} The target must succeed at a Fortitude save against your class DC or be stunned 1.","{@b Spear:} The weapon pierces the target, weakening its attacks. The target is clumsy 1 until the start of your next turn.","{@b Sword:} The target is made off-balance by your attack, becoming {@condition flat-footed} until the start of your next turn.",{"type":"pf2-h3","page":284,"name":"Weapon Descriptions","entries":["You can view all weapons on the {@filter Items page|items||source=CRB|category=weapon|type=equipment}."],"source":"CRB"}],"source":"CRB"}],"data":{"quickref":2},"source":"CRB"},{"type":"section","page":287,"name":"Wearing Tools","entries":["You can make a set of tools (such as {@item alchemist's tools} or {@item healer's tools}) easier to use by wearing it. This allows you to draw and replace the tools as part of the action that uses them. You can wear up to 2 Bulk of tools in this manner; tools beyond this limit must be stowed or drawn with an {@action Interact} action to use."],"data":{"quickref":2},"source":"CRB"}]},{"type":"entries","entries":[{"type":"section","page":300,"name":"Cantrips","entries":["A cantrip is a special type of spell that's weaker than other spells but can be used with greater freedom and flexibility. The title of a cantrip's stat block says \"Cantrip\" instead of \"Spell.\" Casting a cantrip doesn't use up your spell slots; you can cast a cantrip at will, any number of times per day. If you're a prepared caster, you can prepare a specific number of cantrips each day. You can't prepare a cantrip in a spell slot.","A cantrip is always automatically heightened to half your level, rounded up. For a typical spellcaster, this means its level is equal to the highest level of spell slot you have."],"data":{"quickref":3},"source":"CRB"},{"type":"section","page":302,"name":"Casting Spells","entries":["The casting of a spell can range from a simple word of magical might that creates a fleeting effect to a complex process taking minutes or hours to cast and producing a long-term impact. {@action Cast a Spell||Casting a Spell} is a special activity that takes a number of actions defined by the spell. When you {@action Cast a Spell}, your spellcasting creates obvious visual manifestations of the gathering magic, although feats such as Conceal Spell (page 210) and Melodious Spell (page 101) can help hide such manifestations or otherwise prevent observers from noticing that you are casting.",{"type":"data","tag":"action","name":"Cast a Spell","source":"CRB"},{"type":"pf2-h3","page":303,"name":"Spell Components","entries":["A spell description lists the components required to {@action Cast a Spell||Cast the Spell}. For most spells, the number of components is equal to the number of actions you must spend to {@action Cast a Spell||Cast the Spell}. Each component adds certain traits to the {@action Cast a Spell} activity, and some components have special requirements. The components that appear in this book are listed below.",{"type":"pf2-h4","page":303,"name":"Material","entries":["A material component is a bit of physical matter consumed in the casting of the spell. The spell gains the manipulate trait and requires you to have a free hand to retrieve and manipulate a material component. That component is expended in the casting (even if the spell is disrupted).","Except in extreme circumstances, you can assume all common components are included in a material component pouch (page 290)."],"source":"CRB"},{"type":"pf2-h4","page":303,"name":"Somatic","entries":["A somatic component is a specific hand movement or gesture that generates a magical nexus. The spell gains the manipulate trait and requires you to make gestures. You can use this component while holding something in your hand, but not if you are restrained or otherwise unable to gesture freely.","Spells that require you to touch the target require a somatic component. You can do so while holding something as long as part of your hand is able to touch the target (even if it's through a glove or gauntlet)."],"source":"CRB"},{"type":"pf2-h4","page":303,"name":"Verbal","entries":["A verbal component is a vocalization of words of power.","You must speak them in a strong voice, so it's hard to conceal that you're {@action Cast a Spell||Casting a Spell}. The spell gains the {@trait concentrate}. You must be able to speak to provide this component."],"source":"CRB"},{"type":"pf2-h4","page":303,"name":"Focus","entries":["A focus is an object that funnels the magical energy of the spell. The spell gains the manipulate trait and requires you to either have a free hand to retrieve the focus listed in the spell or already be holding the focus in your hand.","As part of {@action Cast a Spell||Casting the Spell}, you retrieve the focus (if necessary), manipulate it, and can stow it again if you so choose.","Foci tend to be expensive, and you need to acquire them in advance to {@action Cast a Spell||Cast the Spell}."],"source":"CRB"},{"type":"pf2-brown-box","page":303,"name":"Component Substitution","entries":["Some classes can substitute one component for another or alter how a component works.","If you're a {@class bard} {@action Cast a Spell||Casting a Spell} from the {@trait occult} tradition you can usually play an {@item musical instrument||instrument} for spells requiring somatic or material components, as long as it takes at least one of your hands to do so. If you use an instrument, you don't need a spell component pouch or another hand free. You can usually also play an instrument for spells requiring verbal components, instead of speaking.","If you're a {@class cleric} {@action Cast a Spell||Casting a Spell} from the {@trait divine} tradition while holding a divine focus (such as a {@item religious symbol} or {@item religious text||text}), you can replace any material component the spell requires by using the divine focus as a focus component instead. Unlike the normal rules for a focus component, you can't retrieve or stow the focus when making this substitution.","If you're a {@class druid} {@action Cast a Spell||Casting a Spell} from the {@trait primal} tradition while holding a primal focus (such as {@item holly and mistletoe}), you can replace any material component the spell requires by using the primal focus as a focus component instead. Unlike the normal rules for a focus component, you can't retrieve or stow the focus when making this substitution.","If you're a {@class sorcerer} {@action Cast a Spell||Casting a Spell} from the magical tradition that matches your bloodline, you can draw on the magic within your blood to replace any material component with a somatic component.","Any character casting an innate spell can replace any material component with a somatic component."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-brown-box","page":304,"name":"Metamagic","entries":["Many spellcasters can gain access to metamagic actions, typically by selecting metamagic feats. Actions with the metamagic trait tweak the properties of your spells, changing their range, damage, or any number of other properties. You must use a metamagic action directly before the spell you want to alter. If you use any action (including free actions, reactions, and additional metamagic actions) other than {@action Cast a Spell} directly after, you waste the benefits of the metamagic action. Any additional effects added by a metamagic action are part of the spell's effect, not of the metamagic action itself."],"source":"CRB"}],"data":{"quickref":3},"source":"CRB"},{"type":"section","page":298,"name":"Disbelieving Illusions","entries":["Sometimes illusions allow an affected creature a chance to disbelieve the spell, which lets the creature effectively ignore the spell if it succeeds at doing so. This usually happens when a creature {@action Seek||Seeks} or otherwise spends actions to engage with the illusion, comparing the result of its {@skill Perception} check (or another check or saving throw, at the GM's discretion) to the caster's spell DC. {@trait Mental} illusions typically provide rules in the spell's description for disbelieving the effect (often allowing the affected creature to attempt a Will save).","If the illusion is {@trait visual}, and a creature interacts with the illusion in a way that would prove it is not what it seems, the creature might know that an illusion is present, but it still can't ignore the illusion without successfully disbelieving it. For instance, if a character is pushed through the illusion of a door, they will know that the door is an illusion, but they still can't see through it. Disbelieving an illusion makes it and those things it blocks seem hazy and indistinct, so even in the case where a visual illusion is disbelieved, it may, at the GM's discretion, block vision enough to make those on the other side concealed.."],"data":{"quickref":3},"source":"CRB"},{"type":"section","page":304,"name":"Durations","entries":["The duration of a spell is how long the spell effect lasts.","Spells that last for more than an instant have a Duration entry. A spell might last until the start or end of a turn, for some number of rounds, for minutes, or even longer. If a spell's duration is given in rounds, the number of rounds remaining decreases by 1 at the start of each of the spellcaster's turns, ending when the duration reaches 0.","Some spells have effects that remain even after the spell's magic is gone. Any ongoing effect that isn't part of the spell's duration entry isn't considered magical.","For instance, a spell that creates a loud sound and has no duration might deafen someone for a time, even permanently. This deafness couldn't be counteracted because it is not itself magical (though it might be cured by other magic, such as {@spell restore senses}).","If a spell's caster dies or is incapacitated during the spell's duration, the spell remains in effect till its duration ends.","You might need to keep track of the caster's initiative after they stopped being able to act to monitor spell durations.",{"type":"pf2-h3","page":304,"name":"Sustaining Spells","entries":["If the spell's duration is \"sustained,\" it lasts until the end of your next turn unless you use a Sustain a Spell action on that turn to extend the duration of that spell.",{"type":"data","tag":"action","name":"Sustain a Spell","source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":305,"name":"Long Durations","entries":["If a spell's duration says it lasts until your next daily preparations, on the next day you can refrain from preparing a new spell in that spell's slot. (If you are a spontaneous caster, you can instead expend a spell slot during your preparations.) Doing so extends the spell's duration until your next daily preparations. This effectively Sustains the Spell over a long period of time.","If you prepare a new spell in the slot (or don't expend a spell slot), the spell ends. You can't do this if the spell didn't come from one of your spell slots. If you are dead or otherwise incapacitated at the 24-hour mark after the time you {@action Cast a Spell||Cast the Spell} or the last time you extended its duration, the spell ends. Spells with an unlimited duration last until counteracted or Dismissed. You don't need to keep a spell slot open for these spells."],"source":"CRB"},{"type":"pf2-h3","page":305,"name":"Dismissing","entries":["Some spells can be dismissed, ending the duration early. This requires the caster or target to use the Dismiss action.",{"type":"data","tag":"action","name":"Dismiss","source":"CRB"}],"source":"CRB"}],"data":{"quickref":3},"source":"CRB"},{"type":"section","page":300,"name":"Focus Spells","entries":["Focus spells are a special type of spell attained directly from a branch of study, from a deity, or from another specific source. You can learn focus spells only through special class features or feats, rather than choosing them from a spell list. Furthermore, you cast focus spells using a special pool of Focus Points—you can't prepare a focus spell in a spell slot or use your spell slots to cast focus spells; similarly, you can't spend your Focus Points to cast spells that aren't focus spells. Even some classes that don't normally grant spellcasting, such as the champion and monk, can grant focus spells.","Focus spells are automatically heightened to half your level rounded up, just like cantrips are. You can't cast a focus spell if its minimum level is greater than half your level rounded up, even if you somehow gain access to it.","Casting any of your focus spells costs you 1 Focus Point. You automatically gain a focus pool of 1 Focus Point the first time you gain an ability that gives you a focus spell.","You replenish all the Focus Points in your pool during your daily preparations. You can also use the {@action Refocus} activity to pray, study, meditate, or otherwise reattune yourself to the source of your focus magic and regain a Focus Point.","Some abilities allow you to increase the Focus Points in your pool beyond 1. Typically, these are feats that give you a new focus spell and increase the number of points in your pool by 1. Your focus pool can't have a capacity beyond 3 Focus Points, even if feats that increase your pool would cause it to exceed this number.",{"type":"data","tag":"action","name":"Refocus","source":"CRB"},{"type":"pf2-brown-box","page":302,"name":"Focus Points from Multiple Sources","entries":["It's possible, especially through archetypes, to gain focus spells and Focus Points from more than one source. If this happens, you have just one focus pool, adding all the Focus Points together to determine the total size of your pool. (Remember that the maximum number of Focus Points a pool can have is 3.) If you have multiple abilities that give you a focus pool, each one adds 1 Focus Point to your pool. For instance, if you were a cleric with the Domain Initiate feat, you would have a pool with 1 Focus Point. Let's say you then took the champion multiclass archetype and the Healing Touch feat. Normally, this feat would give you a focus pool. Since you already have one, it instead increases your existing pool's capacity by 1.","Focus Points are not differentiated by source; you can spend any of your Focus Points on any of your focus spells. Likewise, when you {@action Refocus}, you get back a point as long as you follow the guidelines of any abilities that granted you focus spells. Having Focus Points from multiple sources doesn't change the tradition of your spells; if you had both cleric domain spells and druid order spells, your domain spells would remain divine and the order spells primal. This could mean that you need to keep track of a different proficiency and ability modifier with the spell DC and spell attack roll of different focus spells."],"source":"CRB"},{"type":"pf2-h3","page":302,"name":"Spellcasters with Focus Spells","entries":["If you are a spellcaster, your focus spells are the same tradition of spell as the class that gave you the focus spell. A {@class bard||bard's} are occult, a {@class cleric||cleric's} are divine, a {@class druid||druid's} are primal, a {@class wizard||wizard's} are arcane, and a {@class sorcerer||sorcerer's} are determined by their bloodline."],"source":"CRB"},{"type":"pf2-h3","page":302,"name":"Non-Spellcasters with Focus Spells","entries":["If you get focus spells from a class or other source that doesn't grant spellcasting ability (for example, if you're a monk with the {@feat Ki Strike} feat), the ability that gives you focus spells also provides your proficiency rank for spell attack rolls and spell DCs, as well as the magical tradition of your focus spells. You gain the ability to {@action Cast a Spell} and use any spellcasting actions necessary to cast your focus spells (see below). However, you don't qualify for feats and other rules that require you to be a spellcaster."],"source":"CRB"}],"data":{"quickref":3},"source":"CRB"},{"type":"section","page":305,"name":"Hostile Actions","entries":["Sometimes spell effects prevent a target from using hostile actions, or the spell ends if a creature uses any hostile actions. A hostile action is one that can harm or damage another creature, whether directly or indirectly, but not one that a creature is unaware could cause harm.","For instance, lobbing a {@spell fireball} into a crowd would be a hostile action, but opening a door and accidentally freeing a horrible monster would not be. The GM is the final arbitrator of what constitutes a hostile action."],"data":{"quickref":3},"source":"CRB"},{"type":"section","page":305,"name":"Identifying Spells","entries":["Sometimes you need to identify a spell, especially if its effects are not obvious right away. If you notice a spell being cast, and you have prepared that spell or have it in your repertoire, you automatically know what the spell is, including the level to which it is heightened.","If you want to identify a spell but don't have it prepared or in your repertoire, you must spend an action on your turn to attempt to identify it using Recall Knowledge. You typically notice a spell being cast by seeing its visual manifestations or hearing its verbal casting components. Identifying long-lasting spells that are already in place requires using Identify Magic instead of {@action Recall Knowledge} because you don't have the advantage of watching the spell being cast."],"data":{"quickref":3},"source":"CRB"},{"type":"section","page":302,"name":"Innate Spells","entries":["Certain spells are natural to your character, typically coming from your ancestry or a magic item rather than your class. You can cast your innate spells even if you aren't a member of a spellcasting class. The ability that gives you an innate spell tells you how often you can cast it—usually once per day—and its magical tradition. Innate spells are refreshed during your daily preparations. Innate cantrips are cast at will and automatically heightened as normal for cantrips (see Cantrips on page 300) unless otherwise specified.","You're always trained in spell attack rolls and spell DCs for your innate spells, even if you aren't otherwise trained in spell attack rolls or spell DCs. If your proficiency in spell attack rolls or spell DCs is expert or better, apply that proficiency to your innate spells, too. You use your Charisma modifier as your spellcasting ability modifier for innate spells unless otherwise specified.","If you have an innate spell, you can cast it, even if it's not of a spell level you can normally cast. This is especially common for monsters, which might be able to cast innate spells far beyond what a character of the same level could use.","You can't use your spell slots to cast your innate spells, but you might have an innate spell and also be able to prepare or cast the same spell through your class. You also can't heighten innate spells, but some abilities that grant innate spells might give you the spell at a higher level than its base level or change the level at which you cast the spell."],"data":{"quickref":3},"source":"CRB"},{"type":"section","page":304,"name":"Ranges, Areas, and Targets","entries":["Spells with a range can affect targets, create areas, or make things appear only within that range. Most spell ranges are measured in feet, though some can stretch over miles, reach anywhere on the planet, or go even farther!",{"type":"pf2-h3","page":304,"name":"Touch Range","entries":["A spell with a range of touch requires you to physically touch the target. You use your unarmed reach to determine whether you can touch the creature. You can usually touch the target automatically, though the spell might specify that the target can attempt a saving throw or that you must attempt a spell attack roll. If an ability increases the range of a touch spell, start at 0 feet and increase from there."],"source":"CRB"},{"type":"pf2-h3","page":304,"name":"Areas","entries":["Sometimes a spell has an area, which can be a burst, cone, emanation, or line. The method of measuring these areas can be found {@quickref here||3|Areas}. If the spell originates from your position, the spell has only an area; if you can cause the spell's area to appear farther away from you, the spell has both a range and an area."],"source":"CRB"},{"type":"pf2-h3","page":304,"name":"Targets","entries":["Some spells allow you to directly target a creature, an object, or something that fits a more specific category. The target must be within the spell's range, and you must be able to see it (or otherwise perceive it with a precise sense) to target it normally. At the GM's discretion, you can attempt to target a creature you can't see, as described in Detecting Creatures on pages 465–467. If you fail to target a particular creature, this doesn't change how the spell affects any other targets the spell might have.","If you choose a target that isn't valid, such as if you thought a vampire was a living creature and targeted it with a spell that can target only living creatures, your spell fails to target that creature. If a creature starts out as a valid target but ceases to be one during a spell's duration, the spell typically ends, but the GM might decide otherwise in certain situations.","Spells that affect multiple creatures in an area can have both an Area entry and a Targets entry. A spell that has an area but no targets listed usually affects all creatures in the area indiscriminately.","Some spells restrict you to willing targets. A player can declare their character a willing or unwilling target at any time, regardless of turn order or their character's condition (such as when a character is paralyzed, unconscious, or even dead)."],"source":"CRB"},{"type":"pf2-h3","page":304,"name":"Line of Effect","entries":["You usually need an unobstructed path to the target of a spell, the origin point of an area, or the place where you create something with a spell. More information on line of effect can be found {@quickref here||3|line of effect}."],"source":"CRB"}],"data":{"quickref":3},"source":"CRB"},{"type":"section","page":306,"name":"Reading Spells","entries":["Each spell uses the following format. Entries appear only when applicable, so not all spells will have every entry described here. The spell's name line also lists the type of spell if it's a cantrip or focus spell, as well as the level."],"data":{"quickref":3},"source":"CRB"},{"type":"section","page":408,"name":"Rituals","entries":[{"type":"pf2-h1-flavor","page":408,"entries":["{@i A ritual is an esoteric and complex spell that anyone can cast. It takes much longer to cast a ritual than a normal spell, but rituals can have more powerful effects.}"],"source":"CRB"},{"type":"pf2-h2","page":408,"name":"Casting Rituals","entries":["When you take charge of a ritual, you are its primary caster, and others assisting you are secondary casters. You can be a primary caster for a ritual even if you can't cast spells. You must know the ritual, and the ritual's spell level can be no higher than half your level rounded up.","You must also have the required proficiency rank in the skill used for the ritual's primary check (see Checks below), and as the primary caster, you must attempt this skill check to determine the ritual's effects. The primary skill check determines the tradition.","Rituals do not require spell slots to cast. You can heighten a ritual up to half your level rounded up, decided when the ritual is initiated. A ritual always takes at least 1 hour to perform, and often longer. While a ritual is a downtime activity, it's possible—albeit risky—to perform a ritual during exploration with enough uninterrupted time. A ritual's casting time is usually listed in days. Each day of casting requires 8 hours of participation in the ritual from all casters, with breaks during multiday rituals to allow rest. One caster can continue a multiday ritual, usually with some light chanting or meditation, while the other casters rest. All rituals require material, somatic, and verbal components throughout their casting time.",{"type":"pf2-h3","page":408,"name":"Learning Rituals","entries":["Learning a ritual does not count against any limits on spells in your spell repertoire or on any other normal spellcasting ability. Rituals are never common, though if you look hard, you can probably find someone who can perform an uncommon ritual for you. They may still be unwilling to teach it to you."],"source":"CRB"},{"type":"pf2-h3","page":408,"name":"Cost","entries":["A ritual's Cost entry lists valuable components required to cast the ritual. If a ritual doesn't have any such components, it won't have a Cost entry. The cost is consumed when you attempt the primary skill check. Costs are often presented as a base cost multiplied by the target's level and sometimes the spell's level. If the target's level is lower than 1, multiply the cost by 1 instead. Heightened versions that increase the base cost multiply it by the target's level or another value as appropriate. Most rituals that create permanent creatures, such as {@ritual create undead}, use costs based on the level of the spell, as presented on {@table creature creation rituals||Table 7–1}."],"source":"CRB"},{"type":"pf2-h3","page":408,"name":"Secondary Casters","entries":["Many rituals need additional secondary casters, who also don't need to be able to cast spells. Unlike a primary caster, a secondary caster doesn't need a minimum level or skill proficiency. The Secondary Casters entry, if present, indicates the minimum number of secondary casters required."],"source":"CRB"},{"type":"pf2-h3","page":408,"name":"Checks","entries":["At the ritual's culmination, you must attempt the skill check listed in the Primary Check entry to determine the ritual's outcome. Primary checks usually have a very hard DC for a level that's twice the ritual's spell level. As with other downtime activities, fortune and misfortune effects can't modify your checks for the ritual, nor can bonuses or penalties that aren't active throughout the process.","The GM can adjust the DCs of rituals, add or change primary or secondary checks, or even waive requirements to fit specific circumstances. For example, performing a ritual in a location where ley lines converge on the night of a new moon might make a normally difficult ritual drastically easier.",{"type":"data","tag":"table","name":"Creature Creation Rituals","source":"CRB"}],"source":"CRB"}],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h4","page":408,"name":"Secondary Checks","entries":["Often, a ritual requires secondary checks to represent aspects of its casting, usually with a standard DC for a level twice the ritual's spell level. A different secondary caster must attempt each secondary check. If there are more secondary casters than checks, the others don't attempt any.","Secondary casters attempt their checks before you attempt the primary check; no matter their results, the ritual proceeds to the primary check. Secondary checks affect the primary check depending on their results.",{"type":"successDegree","entries":{"Critical Success":"You gain a +2 circumstance bonus to the primary check.","Success":"No bonus or penalty.","Failure":"You take a –4 circumstance penalty to the primary check.","Critical Failure":"As failure, and you reduce the degree of success of the primary skill check by one step."}}],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h3","page":409,"name":"Effect","entries":["A ritual's effect depends on the result of the primary check.","If an effect lists a save DC, use your spell DC for the ritual's magic tradition (or 12 + your level + your highest mental ability modifier, if you don't have a spell DC)."],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h2","page":409,"name":"Rituals","entries":["{@note Please visit the {@filter rituals page|rituals||source=CRB} to view all Rituals.}"],"source":"CRB"}],"data":{"quickref":3},"source":"CRB"},{"type":"section","page":305,"name":"Saving Throws","entries":["Spells that require a target to attempt a save to resist some or all of the spell's effects have a Saving Throw entry. This entry presents the type of save for quick reference, and specific details appear in the spell description. Whenever a spell allows a saving throw, it uses the caster's spell DC.",{"type":"pf2-h3","page":305,"name":"Basic Saving Throws","entries":["If a spell's Saving Throw entry specifies a \"basic\" saving throw, the spell's potential effects all relate to the damage listed in the spell's description. The target takes no damage on a critical success, half damage on a success, full damage on a failure, or double damage on a critical failure. The rules for basic saving throws are found on page 449."],"source":"CRB"}],"data":{"quickref":3},"source":"CRB"},{"type":"section","page":305,"name":"Setting Triggers","entries":["If a spell is meant to respond only to certain events or under certain conditions—such as {@spell magic mouth}—it might require you to set a trigger. This is a simple sensory cue that causes the spell to activate. The spell activates as a reaction when the spell's sensor observes something that fits its trigger. Depending on the spell, the trigger might be the presence of a type of creature, such as \"red-haired dwarven women,\" or it could be an observed action, such as \"whenever someone enters the spell's area.\" Disguises and illusions fool the spell as long as they appear to match its parameters. For a spell to detect something visually, the spell's origin point must have line of sight. Darkness doesn't prevent this, but invisibility does, as does a successful {@skill Stealth} check to Hide (against the spell's DC). For auditory detection, line of sight isn't necessary, though the sound must be audible at the spell's origin point. A {@skill Stealth} check to Sneak can fool the sensor."],"data":{"quickref":3},"source":"CRB"},{"type":"section","page":305,"name":"Spell Attacks","entries":["Some spells require you to succeed at a spell attack roll to affect the target. This is usually because they require you to precisely aim a ray or otherwise make an accurate attack. A spell attack roll is compared to the target's AC.","Spell attack rolls benefit from any bonuses or penalties to attack rolls, including your multiple attack penalty, but not any special benefits or penalties that apply only to weapon or unarmed attacks. Spell attacks don't deal any damage beyond what's listed in the spell description.","In rare cases, a spell might have you make some other type of attack, such as a weapon Strike. Such attacks use the normal rules and attack bonus for that type of attack."],"data":{"quickref":3},"source":"CRB"},{"type":"section","page":298,"name":"Spell Slots","entries":["Characters of spellcasting classes can cast a certain number of spells each day; the spells you can cast in a day are referred to as spell slots. At 1st level, a character has only a small number of 1st-level spell slots per day, but as you advance in level, you gain more spell slots and new slots for higher-level spells. A spell's level indicates its overall power, from 1 to 10.",{"type":"pf2-h3","page":298,"name":"Prepared Spells","entries":["If you're a prepared spellcaster—such as a cleric, druid, or wizard—you must spend time each day preparing spells for that day. At the start of your daily preparations, you select a number of spells of different spell levels determined by your character level and class. Your spells remain prepared until you cast them or until you prepare spells again.","Each prepared spell is expended after a single casting, so if you want to cast a particular spell more than once in a day, you need to prepare that spell multiple times. The exceptions to this rule are spells with the cantrip trait; once you prepare a cantrip, you can cast it as many times as you want until the next time you prepare spells. See page 300 for more information on cantrips.","You might gain an ability that allows you to swap prepared spells or perform other aspects of preparing spells at different times throughout the day, but only your daily preparation counts for the purpose of effects that last until the next time you prepare spells."],"source":"CRB"},{"type":"pf2-h3","page":298,"name":"Spontaneous Spells","entries":["If you're a spontaneous spellcaster—such as a bard or a sorcerer—you choose which spell you're using a spell slot for at the moment you decide to cast it. This provides you with more freedom in your spellcasting, but you have fewer spells in your spell repertoire, as determined by your character level and class. When you make your daily preparations, all your spell slots are refreshed, but you don't get to change the spells in your repertoire."],"source":"CRB"},{"type":"pf2-red-box","page":299,"name":"Magical Traditions","entries":["Spellcasters cast spells from one of four different spell list, each representing a different magical tradition: arcane, divine, occult, and primal.","Your class determines which tradition of magic your spells use. In some cases, such as when a cleric gains spells from their deity or when a sorcerer gets spells from their bloodline, you might be able to cast spells from a different spell list. In these cases, the spell uses your magic tradition, not the list the spell normally comes from. When you cast a spell, add your tradition's trait to the spell.","Some types of magic, such as that of most magic items, don't belong to any single tradition. These have the magical trait instead of a tradition trait.",{"type":"table","style":"pf2-box__table--red","rows":[["Arcane","Divine","Occult","Primal"],["Arcane spellcasters use logic and rationality to categorize the magic inherent in the world around them. Because of its far-reaching approach, the arcane tradition has the broadest spell list, though it's generally poor at affecting the spirit or the soul. Wizards are the most iconic arcane spellcasters, poring over tomes and grimoires, though arcane sorcerers study the secrets of their blood to unlock the power within themselves.","The power of the divine is steeped in faith, the unseen, and belief in a power source from beyond the Material Plane. Clerics are the most iconic divine spellcasters, beseeching the gods to grant them their magic. Divine sorcerers can use the blood of their celestial or fiendish ancestors as a divine conduit, and champions call upon their gods to grant them martial prowess through divine guidance.","The practitioners of occult traditions seek to understand the unexplainable, categorize the bizarre, and otherwise access the ephemeral in a systematic way. Bards are the most iconic occult spellcasters, collecting strange esoterica and using their performances to influence the mind or elevate the soul, and occult sorcerers strive to understand the mysterious power in their blood.","An instinctual connection to and faith in the world, the cycle of day and night, theturning of the seasons, and the natural selection of predator and prey drive the primal tradition. Druids are the most iconic primal spellcasters, calling upon the magic of nature through deep faith and a connection to the plants and animals around them, and primal sorcerers call upon their fey or beast blood to harness the same natural energies."]]}],"source":"CRB"},{"type":"pf2-h3","page":299,"name":"Heightened Spells","entries":["Both prepared and spontaneous spellcasters can cast a spell at a higher spell level than that listed for the spell.","This is called heightening the spell. A prepared spellcaster can heighten a spell by preparing it in a higher-level slot than its normal spell level, while a spontaneous spellcaster can heighten a spell by casting it using a higher-level spell slot, so long as they know the spell at that level (see Heightened Spontaneous Spells below). When you heighten your spell, the spell's level increases to match the higher level of the spell slot you've prepared it in or used to cast it. This is useful for any spell, because some effects, such as counteracting, depend on the spell's level.","In addition, many spells have additional specific benefits when they are heightened, such as increased damage. These extra benefits are described at the end of the spell's stat block. Some heightened entries specify one or more levels at which the spell must be prepared or cast to gain these extra advantages. Each of these heightened entries states specifically which aspects of the spell change at the given level. Read the heightened entry only for the spell level you're using or preparing; if its benefits are meant to include any of the effects of a lower-level heightened entry, those benefits will be included in the entry.","Other heightened entries give a number after a plus sign, indicating that heightening grants extra advantages over multiple levels. The listed effect applies for every increment of levels by which the spell is heightened above its lowest spell level, and the benefit is cumulative. For example, {@spell fireball} says \"{@b Heightened (+1)} The damage increases by 2d6.\" Because {@spell fireball} deals {@damage 6d6} fire damage at 3rd level, a 4th-level {@spell fireball} would deal {@dice 8d6} fire damage, a 5th-level spell would deal {@dice 10d6} fire damage, and so on.",{"type":"pf2-h4","page":299,"name":"Heightened Spontaneous Spells","entries":["If you're a spontaneous spellcaster, you must know a spell at the specific level that you want to cast it in order to heighten it. You can add a spell to your spell repertoire at more than a single level so that you have more options when casting it. For example, if you added {@spell fireball} to your repertoire as a 3rd-level spell and again as a 5th-level spell, you could cast it as a 3rd-level or a 5th-level spell; however, you couldn't cast it as a 4th-level spell.","Many spontaneous spellcasting classes provide abilities like the signature spells class feature, which allows you to cast a limited number of spells as heightened versions even if you know the spell at only a single level."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-red-box","page":299,"name":"The Four Essences","entries":["Spells that affect certain physical or metaphysical forces tend to be grouped into particular magical traditions. Scholars of magic widely agree that all of existence is composed of some combination of four essences, though they disagree on the names and particular qualities of each essence.","The following entries discuss each essence and the traditions and spell schools relevant to it; for instance, evocation spells tend to manipulate matter. The abjuration school is an unusual case, as abjuration spells draw upon different essences depending on who they are warding and what they are protecting against.",{"type":"table","style":"pf2-box__table--red","rows":[["Matter","Spirit","Mind","Life"],["Also called body, material essence, or physical essence, matter is the fundamental building block that makes up all physical things in the universe. The arcane and primal traditions are especially attuned toward manipulating and shaping matter. Spells that are used to create or alter matter most often come from the conjuration, evocation, or transmutation schools.","Also called soul, ethereal essence, or spiritual essence, spirit is an otherworldly building block that makes up a being's immaterial and immortal self. The spirit travels through the Ethereal Plane and into the Great Beyond after the death of the physical body. The spirit is most easily affected by divine and occult spells. Spirit spells are usually of the divination or necromancy schools.","Also called thought or astral essence, the mind essence allows thinking creatures to have rational thoughts, ideas, plans, logic, and memories. Mind touches even nonsapient creatures like animals, though in a more limited capacity. Arcane and occult casters usually excel at mind spells. Spells that use mind essence are usually found in the divination, enchantment, and illusion schools.","Also called heart, faith, instinct, or vital essence, life represents the animating universal force within all things. Whereas matter provides the base materials for a body, life keeps it alive and well. This essence is responsible for unconscious responses and belief, such as ancestral instincts and divine guidance. The divine and primal traditions hold power over life. Life spells are usually necromancy."]]}],"source":"CRB"}],"data":{"quickref":3},"source":"CRB"},{"type":"section","page":306,"name":"Walls","entries":["Spells that create walls list the depth, length, and height of the wall, also specifying how it can be positioned. Some walls can be shaped; you can manipulate the wall into a form other than a straight line, choosing its contiguous path square by square. The path of a shaped wall can't enter the same space more than once, but it can double back so one section is adjacent to another section of the wall."],"data":{"quickref":3},"source":"CRB"}]},{"type":"entries","entries":[{"type":"section","page":461,"name":"Actions","entries":["You affect the world around you primarily by using actions, which produce effects. Actions are most closely measured and restricted during the encounter mode of play, but even when it isn't important for you to keep strict track of actions, they remain the way in which you interact with the game world. There are four types of actions: single actions, activities, reactions, and free actions.","{@b Single actions} can be completed in a very short time. They're self-contained, and their effects are generated within the span of that single action. During an encounter, you get 3 actions at the beginning of your turn, which you can use as described on page 468.","{@b Activities} usually take longer and require using multiple actions, which must be spent in succession. Stride is a single action, but Sudden Charge is an activity in which you use both the Stride and Strike actions to generate its effect.","{@b Reactions} have triggers, which must be met for you to use the reaction. You can use a reaction anytime its trigger is met, whether it's your turn or not. In an encounter, you get 1 reaction each round, which you can use as described on page 468. Outside of encounters, your use of reactions is more flexible and up to the GM. Reactions are usually triggered by other creatures or by events outside your control.","{@b Free actions} don't cost you any of your actions per turn, nor do they cost your reaction. A free action with no trigger follows the same rules as a single action (except the action cost), and a free action with a trigger follows the same rules as a reaction (except the reaction cost).",{"type":"pf2-brown-box","page":461,"name":"ACTION ICON KEY","entries":["These icons appear in stat blocks as shorthand for each type of action.","{@as 1} Single Action","{@as 2} Two-Action Activity","{@as 3} Three-Action Activity","{@as R} Reaction","{@as F} Free Action"],"source":"CRB"},{"type":"pf2-h3","page":461,"name":"Activities","entries":["An activity typically involves using multiple actions to create an effect greater than you can produce with a single action, or combining multiple single actions to produce an effect that's different from merely the sum of those actions. In some cases, usually when spellcasting, an activity can consist of only 1 action, 1 reaction, or even 1 free action.","An activity might cause you to use specific actions within it. You don't have to spend additional actions to perform them—they're already factored into the activity's required actions. (See Subordinate Actions on page 462.) You have to spend all the actions of an activity at once to gain its effects. In an encounter, this means you must complete it during your turn. If an activity gets interrupted or disrupted in an encounter (page 462), you lose all the actions you committed to it.",{"type":"pf2-h4","page":461,"name":"Exploration and Downtime Activities","entries":["Outside of encounters, activities can take minutes, hours, or even days. These activities usually have the exploration or downtime trait to indicate they're meant to be used during these modes of play. You can often do other things off and on as you carry out these activities, provided they aren't significant activities of their own. For instance, if you're Repairing an item, you might move around to stretch your legs or have a brief discussion—but you couldn't also Decipher Writing at the same time.","If an activity that occurs outside of an encounter is interrupted or disrupted, as described in Disrupting Actions below, you usually lose the time you put in, but no additional time beyond that."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-brown-box","page":462,"name":"IN-DEPTH ACTION RULES","entries":["These rules clarify some of the specifics of using actions.",{"type":"pf2-title","name":"Simultaneous Actions"},"You can use only one single action, activity, or free action that doesn't have a trigger at a time. You must complete one before beginning another. For example, the Sudden Charge activity states you must Stride twice and then Strike, so you couldn't use an Interact action to open a door in the middle of the movement, nor could you perform part of the move, make your attack, and then finish the move.","Free actions with triggers and reactions work differently. You can use these whenever the trigger occurs, even if the trigger occurs in the middle of another action.",{"type":"pf2-title","name":"Subordinate Actions"},"An action might allow you to use a simpler action—usually one of the Basic Actions on page 469—in a different circumstance or with different effects. This subordinate action still has its normal traits and effects, but is modified in any ways listed in the larger action. For example, an activity that tells you to Stride up to half your Speed alters the normal distance you can move in a Stride. The Stride would still have the move trait, would still trigger reactions that occur based on movement, and so on. The subordinate action doesn't gain any of the traits of the larger action unless specified. The action that allows you to use a subordinate action doesn't require you to spend more actions or reactions to do so; that cost is already factored in.","Using an activity is not the same as using any of its subordinate actions. For example, the quickened condition you get from the {@spell haste} spell lets you spend an extra action each turn to Stride or Strike, but you couldn't use the extra action for an activity that includes a Stride or Strike. As another example, if you used an action that specified, \"If the next action you use is a Strike,\" an activity that includes a Strike wouldn't count, because the next thing you are doing is starting an activity, not using the Strike basic action."],"source":"CRB"},{"type":"pf2-h3","page":462,"name":"Actions with Triggers","entries":["You can use free actions that have triggers and reactions only in response to certain events. Each such reaction and free action lists the trigger that must happen for you to perform it. When its trigger is satisfied—and {@i only} when it is satisfied—you can use the reaction or free action, though you don't have to use the action if you don't want to.","There are only a few basic reactions and free actions that all characters can use. You're more likely to gain actions with triggers from your class, feats, and magic items.",{"type":"pf2-h4","page":462,"name":"Limitations on Triggers","entries":["The triggers listed in the stat blocks of reactions and some free actions limit when you can use those actions. You can use only one action in response to a given trigger. For example, if you had a reaction and a free action that both had a trigger of \"your turn begins,\" you could use either of them at the start of your turn—but not both. If two triggers are similar, but not identical, the GM determines whether you can use one action in response to each or whether they're effectively the same thing. Usually, this decision will be based on what's happening in the narrative.","This limitation of one action per trigger is per creature; more than one creature can use a reaction or free action in response to a given trigger."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":462,"name":"Other Actions","entries":["Sometimes you need to attempt something not already covered by defined actions in the game. When this happens, the rules tell you how many actions you need to spend, as well any traits your action might have. For example, a spell that lets you switch targets might say you can do so \"by spending a single action, which has the {@trait concentrate}.\" Game masters can also use this approach when a character tries to do something that isn't covered in the rules."],"source":"CRB"},{"type":"pf2-h3","page":462,"name":"Gaining and Losing Actions","entries":["Conditions can change the number of actions you can use on your turn, or whether you can use actions at all. The slowed condition, for example, causes you to lose actions, while the quickened condition causes you to gain them.","Conditions are detailed in the appendix on pages 618–623.","Whenever you lose a number of actions—whether from these conditions or in any other way—you choose which to lose if there's any difference between them. For instance, the {@spell haste} spell makes you quickened, but it limits what you can use your extra action to do. If you lost an action while {@spell haste} was active, you might want to lose the action from haste first, since it's more limited than your normal actions.","Some effects are even more restrictive. Certain abilities, instead of or in addition to changing the number of actions you can use, say specifically that you can't use reactions. The most restrictive form of reducing actions is when an effect states that you can't act: this means you can't use any actions, or even speak. When you can't act, you don't regain your actions and reaction on your turn."],"source":"CRB"},{"type":"pf2-h3","page":462,"name":"Disrupting Actions","entries":["Various abilities and conditions, such as an Attack of Opportunity, can disrupt an action. When an action is disrupted, you still use the actions or reactions you committed and you still expend any costs, but the action's effects don't occur. In the case of an activity, you usually lose all actions spent for the activity up through the end of that turn. For instance, if you began a {@action Cast a Spell} activity requiring 3 actions and the first action was disrupted, you lose all 3 actions that you committed to that activity.","The GM decides what effects a disruption causes beyond simply negating the effects that would have occurred from the disrupted action. For instance, a Leap disrupted midway wouldn't transport you back to the start of your jump, and a disrupted item hand off might cause the item to fall to the ground instead of staying in the hand of the creature who was trying to give it away."],"source":"CRB"}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":457,"name":"Afflictions","entries":["Diseases and poisons are types of afflictions, as are curses and radiation. An affliction can infect a creature for a long time, progressing through different and often increasingly debilitating stages. The level of an affliction is the level of the monster, hazard, or item causing the affliction or, in the case of a spell, is listed in the affliction entry for that spell.",{"type":"pf2-h3","page":457,"name":"Format","entries":["Whether appearing in a spell, as an item, or within a creature's stat block, afflictions appear in the following format.",{"type":"pf2-h4","page":457,"name":"Name and Traits","entries":["The affliction's name is given first, followed by its traits in parentheses—including the trait for the type of affliction (curse, disease, poison, and so forth). If the affliction needs to have a level specified, it follows the parentheses, followed by any unusual details, such as restrictions on removing the conditions imposed by an affliction."],"source":"CRB"},{"type":"pf2-h4","page":457,"name":"Saving Throw","entries":["When you're first exposed to the affliction, you must attempt a saving throw against it. This first attempt to stave off the affliction is called the initial save. An affliction usually requires a Fortitude save, but the exact save and its DC are listed after the name and type of affliction. Spells that can poison you typically use the caster's spell DC.","On a successful initial saving throw, you are unaffected by that exposure to the affliction. You do not need to attempt further saving throws against it unless you are exposed to the affliction again.","If you fail the initial saving throw, after the affliction's onset period elapses (if applicable), you advance to stage 1 of the affliction and are subjected to the listed effect. On a critical failure, after its onset period (if applicable), you advance to stage 2 of the affliction and are subjected to that effect instead. The stages of an affliction are described below."],"source":"CRB"},{"type":"pf2-h4","page":458,"name":"Onset","entries":["Some afflictions have onset times. For these afflictions, once you fail your initial save, you don't gain the effects for the first stage of the affliction until the onset time has elapsed. If this entry is absent, you gain the effects for the first stage (or the second stage on a critical failure) immediately upon failing the initial saving throw."],"source":"CRB"},{"type":"pf2-h4","page":458,"name":"Maximum Duration","entries":["If an affliction lasts only a limited amount of time, it lists a maximum duration. Once this duration passes, the affliction ends. Otherwise, the affliction lasts until you succeed at enough saves to recover, as described in Stages below."],"source":"CRB"},{"type":"pf2-h4","page":458,"name":"Stages","entries":["An affliction typically has multiple stages, each of which lists an effect followed by an interval in parentheses. When you reach a given stage of an affliction, you are subjected to the effects listed for that stage.","At the end of a stage's listed interval, you must attempt a new saving throw. On a success, you reduce the stage by 1; on a critical success, you reduce the stage by 2. You are then subjected to the effects of the new stage. If the affliction's stage is ever reduced below stage 1, the affliction ends and you don't need to attempt further saves unless you're exposed to the affliction again.","On a failure, the stage increases by 1; on a critical failure, the stage increases by 2. You are then subjected to the effects listed for the new stage. If a failure or critical failure would increase the stage beyond the highest listed stage, the affliction instead repeats the effects of the highest stage."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":458,"name":"Conditions from Afflictions","entries":["An affliction might give you conditions with a longer or shorter duration than the affliction. For instance, if an affliction causes you to be drained but has a maximum duration of 5 minutes, you remain drained even after the affliction ends, as is normal for the drained condition. Or, you might succeed at the flat check to remove persistent damage you took from an ongoing affliction, but you would still need to attempt saves to remove the affliction itself, and failing one might give you new persistent damage."],"source":"CRB"},{"type":"pf2-h3","page":458,"name":"Multiple Exposures","entries":["Multiple exposures to the same curse or disease currently affecting you have no effect. For a poison, however, failing the initial saving throw against a new exposure increases the stage by 1 (or by 2 if you critically fail) without affecting the maximum duration. This is true even if you're within the poison's onset period, though it doesn't change the onset length."],"source":"CRB"},{"type":"pf2-h3","page":458,"name":"Virulent Afflictions","entries":["Afflictions with the {@trait virulent} trait are harder to remove.","You must succeed at two consecutive saves to reduce a virulent affliction's stage by 1. A critical success reduces a virulent affliction's stage by only 1 instead of by 2."],"source":"CRB"}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":443,"name":"Checks","entries":["When success isn't certain—whether you're swinging a sword at a foul beast, attempting to leap across a chasm, or straining to remember the name of the earl's second cousin at a soiree—you'll attempt a check. Pathfinder has many types of checks, from skill checks to attack rolls to saving throws, but they all follow these basic steps.",{"type":"list","style":"list-decimal","items":["Roll a d20 and identify the modifiers, bonuses, and penalties that apply.","Calculate the result.","Compare the result to the difficulty class (DC).","Determine the degree of success and the effect."]},"Checks and difficulty classes (DC) both come in many forms. When you swing your sword at that foul beast, you'll make an attack roll against its Armor Class, which is the DC to hit another creature. If you are leaping across that chasm, you'll attempt an {@skill Athletics} skill check with a DC based on the distance you are trying to jump. When calling to mind the name of the earl's second cousin, you attempt a check to Recall Knowledge. You might use either the Society skill or a Lore skill you have that's relevant to the task, and the DC depends on how common the knowledge of the cousin's name might be, or how many drinks your character had when they were introduced to the cousin the night before.","No matter the details, for any check you must roll the d20 and achieve a result equal to or greater than the DC to succeed. Each of these steps is explained below.",{"type":"pf2-h3","page":444,"name":"Step 1: Roll D20 and Identify The Modifiers, Bonuses, and Penalties That Apply","entries":["Start by rolling your d20. You'll then identify all the relevant modifiers, bonuses, and penalties that apply to the roll. A {@b modifier} can be either positive or negative, but a {@b bonus} is always positive, and a {@b penalty} is always negative.","The sum of all the modifiers, bonuses, and penalties you apply to the d20 roll is called your total modifier for that statistic.","Nearly all checks allow you to add an {@b ability modifier} to the roll. An ability modifier represents your raw capabilities and is derived from an ability score, as described on page 20. Exactly which ability modifier you use is determined by what you're trying to accomplish. Usually a sword swing applies your Strength modifier, whereas remembering the name of the earl's cousin uses your Intelligence modifier.","When attempting a check that involves something you have some training in, you will also add your {@b bonus}. This bonus depends on your proficiency rank:","untrained, trained, expert, master, or legendary. If you're untrained, your bonus is +0—you must rely on raw talent and any bonuses from the situation. Otherwise, the bonus equals your character's level plus a certain amount depending on your rank. If your proficiency rank is trained, this bonus is equal to your level + 2, and higher proficiency ranks further increase the amount you add to your level.",{"type":"table","colStyles":["text-center","text-center"],"rows":[["Proficiency Rank","Proficiency Bonus"],["Untrained","0"],["Trained","Your level + 2"],["Expert","Your level + 4"],["Master","Your level + 6"],["Legendary","Your level + 8"]]},"There are three other types of bonus that frequently appear: circumstance bonuses, item bonuses, and status bonuses. If you have different types of bonus that would apply to the same roll, you'll add them all. But if you have multiple bonuses of the same type, you can use only the highest bonus on a given roll—in other words, they don't \"stack.\" For instance, if you have both a proficiency bonus and an item bonus, you add both to your d20 result, but if you have two item bonuses that could apply to the same check, you add only the higher of the two.","{@b Circumstance bonuses} typically involve the situation you find yourself in when attempting a check. For instance, using Raise a Shield with a buckler grants you a +1 circumstance bonus to AC. Being behind cover grants you a +2 circumstance bonus to AC. If you are both behind cover and Raising a Shield, you gain only the +2 circumstance bonus for cover, since they're the same type and the bonus from cover is higher.","{@b Item bonuses} are granted by some item that you are wearing or using, either mundane or magical. For example, armor gives you an item bonus to AC, while expanded alchemist's tools grant you an item bonus to {@skill Crafting} checks when making alchemical items.","{@b Status bonuses} typically come from spells, other magical effects, or something applying a helpful, often temporary, condition to you. For instance, the 3rd-level {@spell heroism} spell grants a +1 status bonus to attack rolls, {@skill Perception} checks, saving throws, and skill checks. If you were under the effect of {@spell heroism} and someone cast the {@spell bless} spell, which also grants a +1 status bonus on attacks, your attack rolls would gain only a +1 status bonus, since both spells grant a +1 status bonus to those rolls, and you only take the highest status bonus.","Penalties work very much like bonuses. You can have {@b circumstance penalties {@b status penalties}, and sometimes even {@b item penalties.} Like bonuses of the same type, you take only the worst all of various penalties of a given type. However, you can apply both a bonus and a penalty of the same type on a single roll. For example, if you had a +1 status bonus from a {@spell heroism} spell but a –2 status penalty from the sickened condition, you'd apply them both to your roll—so {@spell heroism} still helps even though you're feeling unwell.","Unlike bonuses, penalties can also be {@b untyped}, in which case they won't be classified as \"circumstance,\" \"item,\" or \"status.\" Unlike other penalties, you always add all your untyped penalties together rather than simply taking the worst one. For instance, when you use attack actions, you incur a multiple attack penalty on each attack you make on your turn after the first attack, and when you attack a target that's beyond your weapon's normal range increment, you incur a range penalty on the attack.","Because these are both untyped penalties, if you make multiple attacks at a faraway target, you'd apply both the multiple attack penalty and the range penalty to your roll.","Once you've identified all your various modifiers, bonuses, and penalties, you move on to the next step."],"source":"CRB"},{"type":"pf2-h3","page":445,"name":"Step 2: Calculate the Result","entries":["This step is simple. Add up all the various modifiers, bonuses, and penalties you identified in Step 1—this is your total modifier. Next add that to the number that came up on your d20 roll. This total is your check result."],"source":"CRB"},{"type":"pf2-h3","page":445,"name":"Step 3: Compare the Result to the DC","entries":["This step can be simple, or it can create suspense. Sometimes you'll know the {@b Difficulty Class} ({@b DC}) of your check. In these cases, if your result is equal to or greater than the DC, you succeed! If your roll anything less than the DC, you fail.","Other times, you might not know the DC right away. Swimming across a river would require an {@skill Athletics} check, but it doesn't have a specified DC—so how will you know if you succeed or fail? You call out your result to the GM and they will let you know if it is a success, failure, or otherwise. While you might learn the exact DC through trial and error, DCs sometimes change, so asking the GM whether a check is successful is the best way to determine whether or not you have met or exceeded the DC.",{"type":"pf2-h4","page":445,"name":"Calculating DCs","entries":["Whenever you attempt a check, you compare your result against a DC. When someone or something else attempts a check against you, rather than both forces rolling against one another, the GM (or player, if the opponent is another PC) compares their result to a fixed DC based on your relevant statistic. Your DC for a given statistic is 10 + the total modifier for that statistic."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":445,"name":"Step 4: Determine the Degree of Success and Effect","entries":["Many times, it's important to determine not only if you succeed or fail, but also how spectacularly you succeed or fail. Exceptional results—either good or bad—can cause you to critically succeed at or critically fail a check.","You critically succeed at a check when a check's result meets or exceeds the DC by 10 or more. If the check is an attack roll, this is sometimes called a critical hit. You can also critically fail a check. The rules for critical failure—sometimes called a fumble—are the same as those for a critical success, but in the other direction: if you fail a check by 10 or more, that's a critical failure.","If you rolled a 20 on the die (a \"natural 20\"), your result is one degree of success better than it would be by numbers alone. If you roll a 1 on the d20 (a \"natural 1\"), your result is one degree worse. This means that a natural 20 usually results in a critical success and natural 1 usually results in a critical failure. However, if you were going up against a very high DC, you might get only a success with a natural 20, or even a failure if 20 plus your total modifier is 10 or more below the DC. Likewise, if your modifier for a statistic is so high that adding it to a 1 from your d20 roll exceeds the DC by 10 or more, you can succeed even if you roll a natural 1! If a feat, magic item, spell, or other effect does not list a critical success or critical failure, treat is as an ordinary success or failure instead.","Some other abilities can change the degree of success for rolls you get. When resolving the effect of an ability that changes your degree of success, always apply the adjustment from a natural 20 or natural 1 before anything else."],"source":"CRB"}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":467,"name":"Concealment and Invisibility","entries":["The concealed and invisible conditions reflect certain circumstances that can make a creature harder to see.",{"type":"pf2-h4","page":467,"name":"Concealed","entries":["This condition protects a creature if it's in mist, within dim light, or amid something else that obscures sight but does not provide a physical barrier to effects. An effect or type of terrain that describes an area of concealment makes all creatures within it concealed.","When you target a creature that's {@condition concealed} from you, you must attempt a DC {@flatDC 5} flat check before you roll to determine your effect. If you fail, you don't affect the target. the {@condition concealed} condition doesn't change which of the main categories of detection apply to the creature. A creature in a light fog bank is still observed even though it's concealed."],"source":"CRB"},{"type":"pf2-h4","page":467,"name":"Invisible","entries":["A creature with the invisible condition (by way of an {@spell invisibility} spell or {@item invisibility potion}, for example) is automatically {@condition undetected} to any creatures relying on sight as their only precise sense. Precise senses other than sight ignore the invisible condition.","You can use the {@action Seek} basic action to attempt to figure out an {@condition invisible} creature's location, making it instead only {@condition hidden} from you. This lasts until the {@condition invisible} creature successfully uses {@action Sneak} to become {@condition undetected} again. If you're already {@condition observed||observing} a creature when it becomes {@condition invisible}, it starts out {@condition hidden}, since you know where it was when it became {@condition invisible}, though it can then {@action Sneak} to become {@condition undetected}.","Other effects might make an {@condition invisible} creature hidden or even observed but concealed. For instance, if you were tracking an invisible creature's footprints through the snow, the footprints would make it hidden.","Similarly, throwing a net over an {@condition invisible} creature would make it {@condition observed} but {@condition concealed} for as long as the net is on the creature."],"source":"CRB"}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":618,"name":"Condition Values","entries":["Some conditions have a numerical value, called a condition value, indicated by a numeral following the condition. This value conveys the severity of a condition, and such conditions often give you a bonus or penalty equal to their value. These values can often be reduced by skills, spells, or simply waiting. If a condition value is ever reduced to 0, the condition ends."],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":453,"name":"Conditions","entries":["The results of various checks might apply conditions to you or, less often, an item. Conditions change your state of being in some way. You might be gripped with fear or made faster by a spell or magic item. One condition represents what happens when a creature successfully drains your blood or life essence, while others represent creatures' attitudes toward you and how they interact with you.","Conditions are persistent; when you're affected by a condition, its effects last until the stated duration ends, the condition is removed, or terms dictated in the condition cause it to end. The rules for conditions are summarized on page 454 and described in full on pages 618–623.",{"type":"pf2-brown-box","name":"CONDITIONS","entries":["These conditions appear often in the game and are defined in detail in the Conditions Appendix on pages 618–623. Here's a brief summary of each.","{@b {@condition Blinded}:} You're unable to see.","{@b {@condition Broken}:} This item can't be used for its normal function until repaired.","{@b {@condition Clumsy}:} You can't move as easily or gracefully as usual.","{@b {@condition Concealed}:} Fog or similar obscuration makes you difficult to see and target.","{@b {@condition Confused}:} You attack indiscriminately.","{@b {@condition Controlled}:} Another creature determines your actions.","{@b {@condition Dazzled}:} Everything is {@condition concealed} to you.","{@b {@condition Deafened}:} You're unable to hear.","{@b {@condition Doomed}:} With your soul in peril, you are now closer to death.","{@b {@condition Drained}:} Blood loss or something similar has leached your vitality.","{@b {@condition Dying}:} You're slipping closer to death.","{@b {@condition Encumbered}:} You're carrying more weight than you can manage.","{@b {@condition Enfeebled}:} Your strength has been sapped away.","{@b {@condition Fascinated}:} You are compelled to focus your attention on something.","{@b {@condition Fatigued}:} Your defenses are lower and you can't focus while exploring.","{@b {@condition Flat-Footed}:} You're unable to defend yourself to your full capability.","{@b {@condition Fleeing}:} You must run away.","{@b {@condition Friendly}:} An NPC with this condition has a good attitude toward you.","{@b {@condition Frightened}:} Fear makes you less capable of attacking and defending.","{@b {@condition Grabbed}:} A creature, object, or magic holds you in place.","{@b {@condition Helpful}:} An NPC with this condition wants to assist you.","{@b {@condition Hidden}:} A creature you're {@condition hidden} from knows your location but can't see you.","{@b {@condition Hostile}:} An NPC with this condition wants to harm you.","{@b {@condition Immobilized}:} You can't move.","{@b {@condition Indifferent}:} An NPC with this condition doesn't have a strong opinion about you.","{@b {@condition Invisible}:} Creatures can't see you.","{@b {@condition Observed}:} You're in plain view.","{@b {@condition Paralyzed}:} You body is frozen in place.","{@b {@condition Persistent Damage|CRB|Persistent Damage}:} You keep taking damage every round.","{@b {@condition Petrified}:} You've been turned to stone.","{@b {@condition Prone}:} You're lying on the ground and easier to attack.","{@b {@condition Quickened}:} You get an extra action each turn.","{@b {@condition Restrained}:} You're tied up and can't move, or a grappling creature has you pinned.","{@b {@condition Sickened}:} You're sick to your stomach.","{@b {@condition Slowed}:} You lose actions each turn.","{@b {@condition Stunned}:} You can't use actions.","{@b {@condition Stupefied}:} Your can't access your full mental faculties, and you have trouble casting spells.","{@b {@condition Unconscious}:} You're asleep or knocked out.","{@b {@condition Undetected}:} A creature you're {@condition undetected} by doesn't know where you are.","{@b {@condition Unfriendly}:} An NPC with this condition doesn't like you.","{@b {@condition Unnoticed}:} A creature is entirely unaware you're present.","{@b {@condition Wounded}:} You've been brought back from the brink of death but haven't fully recovered."]}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":458,"name":"Counteracting","entries":["Some effects try to counteract spells, afflictions, conditions, or other effects. Counteract checks compare the power of two forces and determine which defeats the other. Successfully counteracting an effect ends it unless noted otherwise.","When attempting a counteract check, add the relevant skill modifier or other appropriate modifier to your check against the target's DC. If you're counteracting an affliction, the DC is in the affliction's stat block. If it's a spell, use the caster's DC. The GM can also calculate a DC based on the target effect's level. For spells, the counteract check modifier is your spellcasting ability modifier plus your spellcasting proficiency bonus, plus any bonuses and penalties that specifically apply to counteract checks. What you can counteract depends on the check result and the target's level. If an effect is a spell, its level is the counteract level.","Otherwise, halve its level and round up to determine its counteract level. If an effect's level is unclear and it came from a creature, halve and round up the creature's level.",{"type":"successDegree","entries":{"Critical Success":"Counteract the target if its counteract level is no more than 3 levels higher than your effect's counteract level.","Success":"Counteract the target if its counteract level is no more than 1 level higher than your effect's counteract level.","Failure":"Counteract the target if its counteract level is lower than your effect's counteract level.","Critical Failure":"You fail to counteract the target."}}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":477,"name":"Cover","entries":["When you're behind an obstacle that could block weapons, guard you against explosions, and make you harder to detect, you're behind cover. Standard cover gives you a +2 circumstance bonus to AC, to Reflex saves against area effects, and to {@skill Stealth} checks to {@action Hide}, {@action Sneak}, or otherwise avoid detection. You can increase this to greater cover using the {@action Take Cover} basic action, increasing the circumstance bonus to +4. If cover is especially light, typically when it's provided by a creature, you have lesser cover, which grants a +1 circumstance bonus to AC. A creature with standard cover or greater cover can attempt to use {@skill Stealth} to {@action Hide}, but lesser cover isn't sufficient.",{"type":"table","colStyles":["text-center","text-center","text-center"],"rows":[["Type of Cover","Bonus","Can Hide"],["Lesser","+1 to AC","No"],["Standard","+2 to AC, Reflex, {@skill Stealth}","Yes"],["Greater","+4 to AC, Reflex, {@skill Stealth}","Yes"]]},"Cover is relative, so you might simultaneously have cover against one creature and not another. Cover applies only if your path to the target is partially blocked. If a creature is entirely behind a wall or the like, you don't have {@quickref line of effect||3|line of effect} and typically can't target it at all.","Usually, the GM can quickly decide whether your target has cover. If you're uncertain or need to be more precise, draw a line from the center of your space to the center of the target's space. If that line passes through any terrain or object that would block the effect, the target has standard cover (or greater cover if the obstruction is extreme or the target has {@action Take Cover||Taken Cover}). If the line passes through a creature instead, the target has lesser cover. When measuring cover against an area effect, draw the line from the effect's point of origin to the center of the creature's space.",{"type":"pf2-h4","page":477,"name":"Cover and Large Creatures","entries":["If a creature between you and a target is two or more sizes larger than both you and your target, that creature's space blocks the effect enough to provide standard cover instead of lesser cover. The GM might determine that a creature doesn't gain cover from terrain that it's significantly larger than. For example, a Huge dragon probably wouldn't receive any benefit from being behind a 1-foot-wide pillar."],"source":"CRB"},{"type":"pf2-h4","page":477,"name":"Special Circumstances","entries":["Your GM might allow you to overcome your target's cover in some situations. If you're right next to an arrow slit, you can shoot without penalty, but you have greater cover against someone shooting back at you from far away. Your GM might let you reduce or negate cover by leaning around a corner to shoot or the like. This usually takes an action to set up, and the GM might measure cover from an edge or corner of your space instead of your center."],"source":"CRB"}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":450,"name":"Damage","entries":["In the midst of combat, you attempt checks to determine if you can damage your foe with weapons, spells, or alchemical concoctions. On a successful check, you hit and deal damage. Damage decreases a creature's Hit Points on a 1-to-1 basis (so a creature that takes 6 damage loses 6 Hit Points). The full rules can be found in the Hit Points, Healing, and Dying section on page 459.","Damage is sometimes given as a fixed amount, but more often than not you'll make a damage roll to determine how much damage you deal. A damage roll typically uses a number and type of dice determined by the weapon or unarmed attack used or the spell cast, and it is often enhanced by various modifiers, bonuses, and penalties.","Like checks, a damage roll—especially a melee weapon damage roll—is often modified by a number of modifiers, penalties, and bonuses. When making a damage roll, you take the following steps, explained in detail below.",{"type":"list","style":"list-decimal","items":["Roll the dice indicated by the weapon, unarmed attack, or spell, and apply the modifiers, bonuses, and penalties that apply to the result of the roll.","Determine the damage type.","Apply the target's immunities, weaknesses, and resistances to the damage.","If any damage remains, reduce the target's Hit Points by that amount."]},{"type":"pf2-h3","page":450,"name":"Step 1: Roll The Damage Dice and Apply Modifiers, Bonuses, and Penalties","entries":["Your weapon, unarmed attack, spell, or sometimes even a magic item determines what type of dice you roll for damage, and how many. For instance, if you're using a normal longsword, you'll roll {@dice 1d8}. If you're casting a 3rd-level {@spell fireball} spell, you'll roll {@dice 6d6}. Sometimes, especially in the case of weapons, you'll apply modifiers, bonuses, and penalties to the damage.","When you use melee weapons, unarmed attacks, and thrown ranged weapons, the most common modifier you'll add to damage is your Strength ability modifier. Weapons with the propulsive trait sometimes add half your Strength modifier. You typically do not add an ability modifier to spell damage, damage from most ranged weapons, or damage from alchemical bombs and similar items.","As with checks, you might add circumstance, status, or item bonuses to your damage rolls, but if you have multiple bonuses of the same type, you add only the highest bonus of that type. Again like checks, you may also apply circumstance, status, item, and untyped penalties to the damage roll, and again you apply only the greatest penalty of a specific type but apply all untyped penalties together.","Use the formulas below.",{"type":"pf2-inset","entries":["Melee damage roll = damage die of weapon or unarmed attack + Strength modifier + bonuses + penalties"]},{"type":"pf2-inset","entries":["Ranged damage roll = damage die of weapon + Strength modifier for thrown weapons + bonuses + penalties"]},{"type":"pf2-inset","entries":["Spell (and similar effects) damage roll = damage die of the effect + bonuses + penalties"]},"If the combined penalties on an attack would reduce the damage to 0 or below, you still deal 1 damage.",{"type":"pf2-h4","page":451,"name":"Increasing Damage","entries":["In some cases, you increase the number of dice you roll when making weapon damage rolls. Magic weapons etched with the {@item striking} rune can add one or more weapon damage dice to your damage roll. These extra dice are the same die size as the weapon's damage die. At certain levels, most characters gain the ability to deal extra damage from the weapon specialization class feature."],"source":"CRB"},{"type":"pf2-h4","page":451,"name":"Persistent Damage","entries":["Persistent damage is a condition that causes damage to recur beyond the original effect. Unlike with normal damage, when you are subject to persistent damage, you don't take it right away. Instead, you take the specified damage at the end of your turns, after which you attempt a DC {@flatDC 15} flat check to see if you recover from the persistent damage.","See the Conditions Appendix on pages 618–623 for the complete rules regarding the persistent damage condition."],"source":"CRB"},{"type":"pf2-h4","page":451,"name":"Doubling and Halving Damage","entries":["Sometimes you'll need to halve or double an amount of damage, such as when the outcome of your Strike is a critical hit, or when you succeed at a basic Reflex save against a spell. When this happens, you roll the damage normally, adding all the normal modifiers, bonuses, and penalties. Then you double or halve the amount as appropriate (rounding down if you halved it). The GM might allow you to roll the dice twice and double the modifiers, bonuses, and penalties instead of doubling the entire result, but this usually works best for singletarget attacks or spells at low levels when you have a small number of damage dice to roll. Benefits you gain specifically from a critical hit, like the {@item flaming} weapon rune's persistent fire damage or the extra damage die from the fatal weapon trait, aren't doubled."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":451,"name":"Step 2: Determine The Damage Type","entries":["Once you've calculated how much damage you deal, you'll need to determine the damage type. There are many types of damage and sometimes certain types are applied in different ways. The smack of a club deals bludgeoning damage. The stab of a spear deals piercing damage. The staccato crack of a {@spell lightning bolt} spell deals electricity damage. Sometimes you might apply precision damage, dealing more damage for hitting a creature in a vulnerable spot or when the target is somehow vulnerable. The damage types are described on page 452.",{"type":"pf2-h4","page":451,"name":"Damage Types and Traits","entries":["When an attack deals a type of damage, the attack action gains that trait. For example, the Strikes and attack actions you use wielding a sword when its {@item flaming} rune is active gain the fire trait, since the rune gives the weapon the ability to deal fire damage."],"source":"CRB"},{"type":"pf2-brown-box","name":"DAMAGE TYPES","entries":["Damage has a number of different types and categories, which are described below.",{"type":"pf2-title","name":"Physical Damage"},"Damage dealt by weapons, many physical hazards, and a handful of spells is collectively called physical damage. The main types of physical damage are bludgeoning, piercing, and slashing. {@b Bludgeoning damage} comes from weapons and hazards that deal blunt-force trauma, like a hit from a club or being dashed against rocks. {@b Piercing damage} is dealt from stabs and punctures, whether from a dragon's fangs or the thrust of a spear. {@b Slashing damage} is delivered by a cut, be it the swing of the sword or the blow from a scythe blades trap.","Ghosts and other incorporeal creatures have a high resistance to physical attacks that aren't magical (attacks that lack the magical trait). Furthermore, most incorporeal creatures have additional, though lower, resistance to magical physical damage (such as damage dealt from a mace with the magical trait) and most other damage types.",{"type":"pf2-title","name":"Energy Damage"},"Many spells and other magical effects deal energy damage. Energy damage is also dealt from effects in the world, such as the biting cold of a blizzard to a raging forest fire. The main types of energy damage are acid, cold, electricity, fire, and sonic. {@b Acid damage} can be delivered by gases, liquids, and certain solids that dissolve flesh, and sometimes harder materials. {@b Cold damage} freezes material by way of contact with chilling gases and ice. {@b Electricity Damage} comes from the discharge of powerful lightning and sparks. {@b Fire damage} burns through heat and combustion. {@b Sonic damage} assaults matter with high-frequency vibration and sound waves. Many times, you deal energy damage by casting magic spells, and doing so is often useful against creatures that have immunities or resistances to physical damage.","Two special types of energy damage specifically target the living and the undead. Positive energy often manifests as healing energy to living creatures but can create {@b positive damage} that withers undead bodies and disrupts and injures incorporeal undead. Negative energy often revivifies the unnatural, unliving power of undead, while manifesting as {@b negative damage} that gnaws at the living.","Powerful and pure magical energy can manifest itself as {@b force damage}. Few things can resist this type of damage—not even incorporeal creatures such as ghosts and wraiths.",{"type":"pf2-title","name":"Alignment Damage"},"Weapons and effects keyed to a particular alignment can deal {@b chaotic}, {@b evil}, {@b good}, or {@b lawful} damage. These damage types apply only to creatures that have the opposing alignment trait. Chaotic damage harms only lawful creatures, evil damage harms only good creatures, good damage harms only evil creatures, and lawful damage harms only chaotic creatures.",{"type":"pf2-title","name":"Mental Damage"},"Sometimes an effect can target the mind with enough psychic force to actually deal damage to the creature. When it does, it deals {@b mental damage}. Mindless creatures and those with only programmed or rudimentary intelligence are often immune to mental damage and effects.",{"type":"pf2-title","name":"Poison Damage"},"Venoms, toxins and the like can deal {@b poison damage}, which affects creatures by way of contact, ingestion, inhalation, or injury. In addition to coming from monster attacks, alchemical items, and spells, poison damage is often caused by ongoing afflictions, which follow special rules described on page 457.",{"type":"pf2-title","name":"Bleed Damage"},"Another special type of physical damage is {@b bleed damage}. This is persistent damage that represents loss of blood.","As such, it has no effect on nonliving creatures or living creatures that don't need blood to live. Weaknesses and resistances to physical damage apply. Bleed damage ends automatically if you're healed to your full Hit Points.",{"type":"pf2-title","name":"Precision Damage"},"Sometimes you are able to make the most of your attack through sheer precision. When you hit with an ability that grants you {@b precision damage}, you increase the attack's listed damage, using the same damage type, rather than tracking a separate pool of damage. For example, a non-magical dagger Strike that deals 1d6 precision damage from a rogue's sneak attack increases the piercing damage by 1d6.","Some creatures are immune to precision damage, regardless of the damage type; these are often amorphous creatures that lack vulnerable anatomy. A creature immune to precision damage would ignore the 1d6 precision damage in the example above, but it would still take the rest of the piercing damage from the Strike. Since precision damage is always the same type of damage as the attack it's augmenting, a creature that is resistant to physical damage, like a gargoyle, would resist not only the dagger's damage but also the precision damage, even though it is not specifically resistant to precision damage.",{"type":"pf2-title","name":"Precious Materials"},"While not their own damage category, precious materials can modify damage to penetrate a creature's resistances or take advantage of its weaknesses. For instance, silver weapons are particularly effective against lycanthropes and bypass the resistances to physical damage that most devils have."]}],"source":"CRB"},{"type":"pf2-h3","page":451,"name":"Step 3: Apply the Target's Immunities, Weaknesses, and Resistances","entries":["Defenses against certain types of damage or effects are called immunities or resistances, while vulnerabilities are called weaknesses. Apply immunities first, then weaknesses, and resistances third. Immunity, weakness, or resistance to an alignment applies only to damage of that type, not to damage from an attacking creature of that alignment.",{"type":"pf2-h4","page":451,"name":"Immunity","entries":["When you have immunity to a specific type of damage, you ignore all damage of that type. If you have immunity to a specific condition or type of effect, you can't be affected by that condition or any effect of that type. If you have immunity to effects with a certain trait (such as death effects, poison, or disease) you are unaffected by any effect with that trait. Often, an effect can be both a trait and a damage type (this is especially true in the case of energy damage types). In these cases, the immunity applies to the entire effect, not just the damage. You can still be targeted by an ability with an effect you are immune to; you just don't apply the effect. However, some complex effects might have parts that affect you even if you're immune to one of the effect's traits; for instance, a spell that deals both fire and acid damage can still deal acid damage to you even if you're immune to fire.","Immunity to critical hits works a little differently. When a creature immune to critical hits is critically hit by a Strike or other attack that deals damage, it takes normal damage instead of double damage. This does not make it immune to any other critical success effects of other actions that have the attack trait (such as {@action Grapple} and {@action Shove}).","Another exception is immunity to nonlethal attacks. If you are immune to nonlethal attacks, you are immune to all damage from attacks with the nonlethal trait, no matter what other type the damage has. For instance, a {@creature stone golem} has immunity to nonlethal attacks. This means that no matter how hard you hit it with your fist, you're not going to damage it—unless your fists don't have the {@trait nonlethal} trait, such as if you're a {@class monk}."],"source":"CRB"},{"type":"pf2-h4","page":453,"name":"Temporary Immunity","entries":["Some effects grant you immunity to the same effect for a set amount of time. If an effect grants you temporary immunity, repeated applications of that effect don't affect you for as long as the temporary immunity lasts. Unless the effect says it applies only to a certain creature's ability, it doesn't matter who created the effect. For example, the {@spell blindness} spell says, \"The target is temporarily immune to blindness for 1 minute.\" If anyone casts {@spell blindness} on that creature again before 1 minute passes, the spell has no effect.","Temporary immunity doesn't prevent or end ongoing effects of the source of the temporary immunity. For instance, if an ability makes you frightened and you then gain temporary immunity to the ability, you don't immediately lose the frightened condition due to the immunity you just gained—you simply don't become frightened if you're targeted by the ability again before the immunity ends."],"source":"CRB"},{"type":"pf2-h4","page":453,"name":"Weakness","entries":["If you have a weakness to a certain type of damage or damage from a certain source, that type of damage is extra effective against you. Whenever you would take that type of damage, increase the damage you take by the value of the weakness. For instance, if you are dealt 2d6 fire damage and have weakness 5 to fire, you take 2d6+5 fire damage.","If you have a weakness to something that doesn't normally deal damage, such as water, you take damage equal to the weakness value when touched or affected by it. If more than one weakness would apply to the same instance of damage, use only the highest applicable weakness value. This usually happens only when a monster is weak to both a type of physical damage and a given material."],"source":"CRB"},{"type":"pf2-h4","page":453,"name":"Resistance","entries":["If you have resistance to a type of damage, each time you take that type of damage, you reduce the amount of damage you take by the listed amount (to a minimum of 0 damage). Resistance can specify combinations of damage types or other traits. For instance, you might encounter a monster that's resistant to non-magical bludgeoning damage, meaning it would take less damage from bludgeoning attacks that weren't magical, but would take normal damage from your {@runeItem mace||+1 wepon potency|} (since it's magical) or a non-magical {@item spear} (since it deals piercing damage). A resistance also might have an exception. For example, resistance 10 to physical damage (except silver) would reduce any physical damage by 10 unless that damage was dealt by a silver weapon.","If you have more than one type of resistance that would apply to the same instance of damage, use only the highest applicable resistance value.","It's possible to have resistance to all damage. When an effect deals damage of multiple types and you have resistance to all damage, apply the resistance to each type of damage separately. If an attack would deal 7 slashing damage and 4 fire damage, resistance 5 to all damage would reduce the slashing damage to 2 and negate the fire damage entirely."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":453,"name":"Step 4: If Damage Remains, Reduce the Target's Hit Points","entries":["After applying the target's immunities, resistances, and weaknesses to the damage, whatever damage is left reduces the target's Hit Points on a 1-to-1 basis. More information about Hit Points can be found in the Hit Points, Healing, and Dying section on page 459.",{"type":"pf2-h4","page":453,"name":"Nonlethal Attacks","entries":["You can make a nonlethal attack in an effort to knock someone out instead of killing them (see Knocked Out and Dying on page 459). Weapons with the nonlethal trait (including fists) do this automatically. You take a –2 circumstance penalty to the attack roll when you make a nonlethal attack using a weapon that doesn't have the nonlethal trait. You also take this penalty when making a lethal attack using a nonlethal weapon.","Spells and other effects with the nonlethal trait that reduce a creature to 0 Hit Points knock the creature out instead of killing them."],"source":"CRB"}],"source":"CRB"}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":481,"name":"Downtime Mode","entries":[{"type":"pf2-h1-flavor","page":481,"entries":["{@i Downtime mode is played day-by-day rather than minute-by-minute or scene-by-scene. Usually this mode of play occurs when you are in the safety of a settlement, maybe recovering from your adventures or studying an artifact you found.}"],"source":"CRB"},"Downtime gives you time to rest fully, engage in crafting or a professional endeavor, learn new spells, retrain feats, or just have fun. You can sell items acquired during your adventures, buy new goods, and perform other activities as determined by your feats, your skills, and the settlement where you are spending the downtime.",{"type":"pf2-h2","page":481,"name":"Long-Term Rest","entries":["You can spend an entire day and night resting during downtime to recover Hit Points equal to your Constitution modifier (minimum 1) multiplied by twice your level."],"source":"CRB"},{"type":"pf2-h2","page":481,"name":"Retraining","entries":["Retraining offers a way to alter some of your character choices, which is helpful when you want to take your character in a new direction or change decisions that didn't meet your expectations. You can retrain feats, skills, and some selectable class features. You can't retrain your ancestry, heritage, background, class, or ability scores. You can't perform other downtime activities while retraining.","Retraining usually requires you to spend time learning from a teacher, whether that entails physical training, studying at a library, or falling into shared magical trances. Your GM determines whether you can get proper training or whether something can be retrained at all. In some cases, you'll have to pay your instructor.","Some abilities can be difficult or impossible to retrain (for instance, a sorcerer can retrain their bloodline only in extraordinary circumstances).","When retraining, you generally can't make choices you couldn't make when you selected the original option. For instance, you can't exchange a 2nd-level skill feat for a 4th-level one, or for one that requires prerequisites you didn't meet at the time you took the original feat. If you don't remember whether you met the prerequisites at the time, ask your GM to make the call. If you cease to meet the prerequisites for an ability due to retraining, you can't use that ability. You might need to retrain several abilities in sequence in order to get all the abilities you want.",{"type":"pf2-h3","page":481,"name":"Feats","entries":["You can spend a week of downtime retraining to swap out one of your feats. Remove the old feat and replace it with another of the same type. For example, you could swap a skill feat for another skill feat, but not for a wizard feat."],"source":"CRB"},{"type":"pf2-h3","page":481,"name":"Skills","entries":["You can spend a week of downtime retraining to swap out one of your skill increases. Reduce your proficiency rank in the skill losing its increase by one step and increase your proficiency rank in another skill by one step. The new proficiency rank has to be equal to or lower than the proficiency rank you traded away. For instance, if your bard is a master in {@skill Performance} and {@skill Stealth}, and an expert in {@skill Occultism}, you could reduce the character's proficiency in {@skill Stealth} to expert and become a master in {@skill Occultism}, but you couldn't reassign that skill increase to become legendary in {@skill Performance}. Keep track of your level when you reassign skill increases; the level at which your skill proficiencies changed can influence your ability to retrain feats with skill prerequisites.","You can also spend a week to retrain an initial trained skill you gained during character creation."],"source":"CRB"},{"type":"pf2-h3","page":481,"name":"Class Features","entries":["You can change a class feature that required a choice, making a different choice instead. This lets you change a druid order or a wizard school, for example. The GM will tell you how long this takes—always at least a month."],"source":"CRB"},{"type":"pf2-brown-box","page":481,"name":"SKILL DOWNTIME ACTIVITIES","entries":["Chapter 4: Skills includes several downtime activities, which are summarized here.","{@b {@action Craft}:} Using the {@skill Crafting} skill, you can create items from raw materials (page 244).","{@b {@action Create Forgery}:} You forge a document (page 251).","{@b {@action Earn Income}:} You earn money, typically using {@skill Crafting}, Lore, or {@skill Performance} (page 236).","{@b {@action Subsist}:} You find food and shelter in the wilderness or within a settlement (page 240).","{@b {@action Treat Disease}:} You spend time caring for a diseased creature in the hope of curing that creature (page 248)."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":481,"name":"Other Downtime Activities","entries":["Work with your GM if there are other ways you want to spend downtime. You might need to pay for your cost of living (the prices for this can be found on page 294).","You might acquire property, manage a business, become part of a guild or civic group, curry favor in a large city, take command of an army, take on an apprentice, start a family, or minister to a flock of the faithful."],"source":"CRB"}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":453,"name":"Effects","entries":["Anything you do in the game has an {@b effect}. Many of these outcomes are easy to adjudicate during the game.","If you tell the GM that you draw your sword, no check is needed, and the result is that your character is now holding a sword. Other times, the specific effect requires more detailed rules governing how your choice is resolved.","Many spells, magic items, and feats create specific effects, and your character will be subject to effects caused by monsters, hazards, the environment, and other characters.","While a check might determine the overall impact or strength of an effect, a check is not always part of creating an effect. Casting a {@spell fly} spell on yourself creates an effect that allows you to soar through the air, but casting the spell does not require a check. Conversely, using the Intimidate skill to Demoralize a foe does require a check, and your result on that check determines the effect's outcome.","The following general rules are used to understand and apply effects.",{"type":"pf2-h3","page":455,"name":"Duration","entries":["Most effects are discrete, creating an instantaneous effect when you let the GM know what actions you are going to use. Firing a bow, moving to a new space, or taking something out of your pack all resolve instantly. Other effects instead last for a certain duration. Once the duration has elapsed, the effect ends. The rules generally use the following conventions for durations, though spells have some special durations detailed on pages 304–305.","For an effect that lasts a number of rounds, the remaining duration decreases by 1 at the start of each turn of the creature that created the effect. This is common for beneficial effects that target you or your allies. Detrimental effects often last \"until the end of the target's next turn\" or \"through\" a number of their turns (such as \"through the target's next 3 turns\"), which means that the effect's duration decreases at the end of the creature's turn, rather than the start.","Instead of lasting a fixed number of rounds, a duration might end only when certain conditions are met (or cease to be true). If so, the effects last until those conditions are met."],"source":"CRB"},{"type":"pf2-h3","page":455,"name":"Range and Reach","entries":["Actions and other abilities that generate an effect typically work within a specified range or a reach. Most spells and abilities list a {@b range}—the maximum distance from the creature or object creating the effect in which the effect can occur.","Ranged and thrown weapons have a {@b range increment}.","Attacks with such weapons work normally up to that range. Attacks against targets beyond that range take a –2 penalty, which worsens by 2 for every additional multiple of that range, to a maximum of a –10 penalty after five additional range increments. Attacks beyond this range are not possible. For example, if you are using a shortbow, your attacks take no penalty against a target up to 60 feet away, a –2 penalty if a target is over 60 and up to 120 feet away, a –4 if a target is over 120 and up to 180 feet away, and so on, up to a maximum distance of 360 feet.","{@b Reach} is how far you can physically reach with your body or a weapon. Melee Strikes rely on reach. Your reach also creates an area around your space where other creatures could trigger your reactions. Your reach is typically 5 feet, but weapons with the reach trait can extend this. Larger creatures can have greater reach; for instance, an ogre has a 10-foot reach. Unlike with measuring most distances, 10-foot reach can reach 2 squares diagonally. Reach greater than 10 feet is measured normally; 20-foot reach can reach 3 squares diagonally, 25-foot reach can reach 4, and so on."],"source":"CRB"},{"type":"pf2-h3","page":455,"name":"Targets","entries":["Some effects require you to choose specific targets.","Targeting can be difficult or impossible if your chosen creature is undetected by you, if the creature doesn't match restrictions on who you can target, or if some other ability prevents it from being targeted.","Some effects require a target to be willing. Only you can decide whether your PC is willing, and the GM decides whether an NPC is willing. Even if you or your character don't know what the effect is, such as if your character is unconscious, you still decide if you're willing.","Some effects target or require an ally, or otherwise refer to an ally. This must be someone on your side, often another PC, but it might be a bystander you are trying to protect. You are not your own ally. If it isn't clear, the GM decides who counts as an ally or an enemy."],"source":"CRB"},{"type":"pf2-h3","page":456,"name":"Areas","entries":["Some effects occupy an area of a specified shape and size.","An area effect always has a point of origin and extends out from that point. There are four types of areas: emanations, bursts, cones, and lines. When you're playing in encounter mode and using a grid, areas are measured in the same way as movement (page 463), but areas' distances are never reduced or affected by {@quickref difficult terrain||3|terrain} or lesser cover (page 476). You can use the diagrams below as common reference templates for areas, rather than measuring squares each time. Many area effects describe only the effects on creatures in the area. The GM determines any effects to the environment and unattended objects.",{"type":"pf2-h4","page":456,"name":"Burst","entries":["A burst effect issues forth in all directions from a single corner of a square within the range of the effect, spreading in all directions to a specified radius. For instance, when you cast {@spell fireball}, it detonates at the corner of a square within 500 feet of you and creates a 20-foot burst, meaning it extends out 20 feet in every direction from the corner of the square you chose, affecting each creature whose space (or even one square of its space) is within the burst."],"source":"CRB"},{"type":"pf2-h4","page":457,"name":"Cone","entries":["A cone shoots out from you in a quarter circle on the grid.","When you aim a cone, the first square of that cone must share an edge with your space if you're aiming orthogonally, or it must touch a corner of your space if you're aiming diagonally. If you're Large or larger, the first square can run along the edge of any square of your space. You can't aim a cone so that it overlaps your space. The cone extends out for a number of feet, widening as it goes, as shown in the Areas diagram. For instance, when a green dragon uses its breath weapon, it breathes a cone of poisonous gas that originates at the edge of one square of its space and affects a quarter-circle area 30 feet on each edge.","If you make a cone originate from someone or something else, follow these same rules, with the first square of the cone using an edge or corner of that creature or object's space instead of your own."],"source":"CRB"},{"type":"pf2-h4","page":457,"name":"Emanation","entries":["An emanation issues forth from each side of your space, extending out to a specified number of feet in all directions. For instance, the {@spell bless} spell's emanation radiates 5 or more feet outward from the caster. Because the sides of a creature's space are the starting point for the emanation, an emanation from a Large or larger creature affects a greater overall area than that of a Medium or smaller creature. Unless the text states otherwise, the creature creating an emanation effect chooses whether the creature at its center is affected."],"source":"CRB"},{"type":"pf2-h4","page":457,"name":"Line","entries":["A line shoots forth from you in a straight line in a direction of your choosing. The line affects each creature whose space it overlaps. Unless a line effect says otherwise, it is 5 feet wide. For example, the {@spell lightning bolt} spell's area is a 60-foot line that's 5 feet wide."],"source":"CRB"}],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h3","page":457,"name":"Line of Effect","entries":["When creating an effect, you usually need an unblocked path to the target of a spell, the origin point of an effect's area, or the place where you create something with a spell or other ability. This is called a line of effect. You have line of effect unless a creature is entirely behind a solid physical barrier. Visibility doesn't matter for line of effect, nor do portcullises and other barriers that aren't totally solid. If you're unsure whether a barrier is solid enough, usually a 1-foot-square gap is enough to maintain a line of effect, though the GM makes the final call.","In an area effect, creatures or targets must have line of effect to the point of origin to be affected. If there's no line of effect between the origin of the area and the target, the effect doesn't apply to that target. For example, if there's a solid wall between the origin of a {@spell fireball} and a creature that's within the burst radius, the wall blocks the effect—that creature is unaffected by the {@spell fireball} and doesn't need to attempt a save against it. Likewise, any ongoing effects created by an ability with an area cease to affect anyone who moves outside of the line of effect."],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h3","page":457,"name":"Line of Sight","entries":["Some effects require you to have line of sight to your target. As long as you can precisely sense the area (as described in Perception on page 464) and it is not blocked by a solid barrier (as described in {@quickref Cover||4|Cover}), you have line of sight. An area of darkness prevents line of sight if you don't have {@ability darkvision}, but portcullises and other obstacles that aren't totally solid do not. If you're unsure whether a barrier is solid enough to block line of sight, usually a 1-foot-square gap is enough to maintain line of sight, though the GM makes the final call."],"data":{"quickrefIndex":true},"source":"CRB"}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":468,"name":"Encounter Mode","entries":[{"type":"pf2-h1-flavor","page":468,"entries":["{@i When every individual action counts, you enter the encounter mode of play. In this mode, time is divided into rounds, each of which is 6 seconds of time in the game world. Every round, each participant takes a turn in an established order. During your turn, you can use actions, and depending on the details of the encounter, you might have the opportunity to use reactions and free actions on your own turn and on others' turns.}"],"source":"CRB"},{"type":"pf2-h2","page":468,"name":"Structure","entries":["An encounter is played out in a series of rounds, during which the player characters, adversaries, and other participants in the encounter act in sequence.","You roll initiative to determine this order at the start of the encounter and then play through rounds until a conclusion is reached and the encounter ends. The rules in this section assume a combat encounter—a battle—but the general structure can apply to any kind of encounter.",{"type":"pf2-h3","page":468,"name":"Step 1: Roll Initiative","entries":["When the GM calls for it, you'll roll initiative to determine your place in the initiative order, which is the sequence in which the encounter's participants will take their turns. Rolling initiative marks the start of an encounter. More often than not, you'll roll initiative when you enter a battle.","Typically, you'll roll a Perception check to determine your initiative—the more aware you are of your surroundings, the more quickly you can respond. Sometimes, though, the GM might call on you to roll some other type of check. For instance, if you were Avoiding Notice during exploration (page 479), you'd roll a {@skill Stealth} check. A social encounter could call for a {@skill Deception} or {@skill Diplomacy} check.","The GM rolls initiative for anyone other than the player characters in the encounter. If these include a number of identical creatures, the GM could roll once for the group as a whole and have them take their turns within the group in any order. However, this can make battles less predictable and more dangerous, so the GM might want to roll initiative for some or all creatures individually unless it's too much of a burden.","Unlike a typical check, where the result is compared to a DC, the results of initiative rolls are ranked. This ranking sets the order in which the encounter's participants act—the initiative order. The character with the highest result goes first. The second highest follows, and so on until whoever had the lowest result takes their turn last.","If your result is tied with a foe's result, the adversary goes first. If your result is tied with another PC's, you can decide between yourselves who goes first when you reach that place in the initiative order. After that, your places in the initiative order usually don't change during the encounter."],"source":"CRB"},{"type":"pf2-h3","page":468,"name":"Step 2: Play a Round","entries":["A round begins when the participant with the highest initiative roll result starts their turn, and it ends when the one with the lowest initiative ends their turn. The process of taking a turn is detailed below. Creatures might also act outside their turns with reactions and free actions."],"source":"CRB"},{"type":"pf2-h3","page":468,"name":"Step 3: Begin the Next Round","entries":["Once everyone in the encounter has taken a turn, the round is over and the next one begins. Don't roll initiative again; the new round proceeds in the same order as the previous one, repeating the cycle until the encounter ends."],"source":"CRB"},{"type":"pf2-h3","page":468,"name":"Step 4: End the Encounter","entries":["When your foes are defeated, some sort of truce is reached, or some other event or circumstance ends the combat, the encounter is over. You and the other participants no longer follow the initiative order, and a more free-form style of play resumes, with the game typically moving into exploration mode. Sometimes at the end of an encounter, the GM will award Experience Points to the party or you'll find treasure to divvy up."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":468,"name":"Turns","entries":["When it's your turn to act, you can use single actions ({@as 1}), short activities ({@as 2} and {@as 3}), reactions ([reaction]), and free actions ({@as f}). When you're finished, your turn ends and the character next in the initiative order begins their turn.","Sometimes it's important to note when during your turn something happens, so a turn is divided into three steps.",{"type":"pf2-h3","page":468,"name":"Step 1: Start Your Turn","entries":["Many things happen automatically at the start of your turn—it's a common point for tracking the passage of time for effects that last multiple rounds. At the start of each of your turns, take these steps in any order you choose:",{"type":"list","items":["If you created an effect lasting for a certain number of rounds, reduce the number of rounds remaining by 1. The effect ends if the duration is reduced to 0. For example, if you cast a spell that lasts 3 rounds on yourself during your first turn of a fight, it would affect you during that turn, decrease to 2 rounds of duration at the start of your second turn, decrease to 1 round of duration at the start of your third turn, and expire at the start of your fourth turn.","You can use 1 free action or reaction with a trigger of \"Your turn begins\" or something similar.","If you're {@condition dying}, roll a recovery check (page 459).","Do anything else that is specified to happen at the start of your turn."]},"The last step of starting your turn is always the same.",{"type":"list","items":["Regain your 3 actions and 1 reaction. If you haven't spent your reaction from your last turn, you lose it—you can't \"save\" actions or reactions from one turn to use during the next turn. If a condition prevents you from being able to act, you don't regain any actions or your reaction. Some abilities or conditions (such as {@condition quickened} and {@condition slowed}) can change how many actions you regain and whether you regain your reaction. If you lose actions and gain additional actions (such as if you're both {@condition quickened} and {@condition slowed}), you choose which actions to lose."]}],"source":"CRB"},{"type":"pf2-h3","page":469,"name":"Step 2: Act","entries":["You can use actions in any order you wish during your turn, but you have to complete one action or activity before beginning another; for example, you can't use a single action in the middle of performing a 2-action activity. What actions you can use often depend on your class features, skills, feats, and items, but there are default actions anyone can use, described in Basic Actions below. Some effects might prevent you from acting. If you can't act, you can't use any actions, including reactions and free actions.","If you begin a 2-action or 3-action activity on your turn, you must be able to complete it on your turn. You can't, for example, begin to High Jump using your final action on one turn and then complete it as your first action on your next turn.","Once you have spent all 3 of your actions, your turn ends (as described in Step 3) and the next creature's turn begins. You can, however, use only some of your actions and end your turn early. As soon as your turn ends, you lose all your remaining actions, but not your reaction or your ability to use free actions."],"source":"CRB"},{"type":"pf2-h3","page":469,"name":"Step 3: End Your Turn","entries":["Once you've done all the things you want to do with the actions you have available, you reach the end of your turn.","Take the following steps in any order you choose. Play then proceeds to the next creature in the initiative order.",{"type":"list","items":["End any effects that last until the end of your turn. For example, spells with a sustained duration end at the end of your turn unless you used the {@action Sustain a Spell} action during your turn to extend them. Some effects caused by enemies might also last through a certain number of your turns, and you decrease the remaining duration by 1 during this step, ending the effect if its duration is reduced to 0.","If you have a {@condition Persistent Damage|CRB|persistent damage} condition, you take the damage at this point. After you take the damage, you can attempt the flat check to end the {@condition Persistent Damage|CRB|persistent damage}. You then attempt any saving throws for ongoing afflictions. Many other conditions change at the end of your turn, such as the {@condition frightened} condition decreasing in severity. These take place after you've taken any {@condition Persistent Damage|CRB|persistent damage}, attempted flat checks to end the {@condition Persistent Damage|CRB|persistent damage}, and attempted saves against any afflictions.","You can use 1 free action or reaction with a trigger of \"Your turn ends\" or something similar.","Resolve anything else specified to happen at the end of your turn."]}],"source":"CRB"},{"type":"pf2-brown-box","page":469,"name":"TRACKING INITIATIVE","entries":["The GM keeps track of the initiative order for an encounter.","It's usually okay for the players to know this order, since they'll see who goes when and be aware of one another's results. However, the GM might want to conceal the names of adversaries the PCs have yet to identify.","Once the encounter's order is set, it's usually not necessary to track the original initiative numbers. The GM can create a simple list, use a series of cards or other indicators, or use a {@i Pathfinder Combat Pad}, which has magnetic markers to allow for easily rearranging the order.",{"type":"pf2-title","name":"Changing the Initiative Order"},"Any method used to track the initiative order needs to be flexible because the order can change. A creature can use the Delay basic action to change its place in the order, in which case you can erase it from the list or pull its marker aside until it reenters the initiative order. When a creature gets knocked out, its initiative order also changes (see Knocked Out and Dying on page 459). Using the Ready basic action doesn't change a creature's place in the initiative order, though, because the designated action becomes a reaction."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":469,"name":"Basic Actions","entries":["Basic actions represent common tasks like moving around, attacking, and helping others. As such, every creature can use basic actions except in some extreme circumstances, and many of those actions are used very frequently. Most notably, you'll use Interact, Step, Stride, and Strike a great deal. Many feats and other actions call upon you to use one of these basic actions or modify them to produce different effects. For example, a more complex action might let you Stride up to double your Speed instead of just up to your Speed, and a large number of activities include a Strike.","Actions that are used less frequently but are still available to most creatures are presented in Specialty Basic Actions starting on page 472. These typically have requirements that not all characters are likely to meet, such as wielding a shield or having a burrow Speed.","In addition to the actions in these two sections, the actions for spellcasting can be found on pages 302–305, and the actions for using magic items appear on pages 531–534.","{@note To view all actions, please visit the {@filter Actions page.|actions||source=CRB}}",{"type":"pf2-brown-box","page":471,"name":"SPEAKING","entries":["As long as you can act, you can also speak. You don't need to spend any type of action to speak, but because a round represents 6 seconds of time, you can usually speak at most a single sentence or so per round. Special uses of speech, such as attempting a {@skill Deception} skill check to Lie, require spending actions and follow their own rules.","All speech has the auditory trait. If you communicate in some way other than speech, other rules might apply. For instance, using sign language is visual instead of auditory.","not trigger reactions that can be triggered by actions with the manipulate trait (such as Attack of Opportunity).","If you want to prepare to Release something outside of your turn, use the Ready activity."],"source":"CRB"},{"type":"pf2-h3","page":472,"name":"Specialty Basic Actions","entries":["These actions are useful under specific circumstances. Some require you to have a special movement type (page 463)."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":472,"name":"Activities in Encounters","entries":["Activities that take longer than a turn can't normally be performed during an encounter. Spells with a casting time of 1 minute or more are a common example of this, as are several skill actions. When you commit to an activity during your turn in an encounter, you commit to spending all of the actions it requires. If the activity gets interrupted partway through, you lose all of the actions you would have spent on that activity. Activities are described in full on page 461."],"source":"CRB"},{"type":"pf2-h2","page":472,"name":"Reactions in Encounters","entries":["Your reactions let you respond immediately to what's happening around you. The GM determines whether you can use reactions before your first turn begins, depending on the situation in which the encounter happens.","Once your first turn begins, you gain your actions and reaction. You can use 1 reaction per round. You can use a reaction on anyone's turn (including your own), but only when its trigger occurs. If you don't use your reaction, you lose it at the start of your next turn, though you typically then gain a reaction at the start of that turn.","Some reactions are specifically meant to be used in combat and can change how the battle plays out drastically.","One example of such a reaction is {@action Attack of Opportunity}, which {@class fighter||fighters} gain at 1st level.","This reaction lets you make a melee {@action Strike} if a creature within reach uses a {@trait manipulate} or {@trait move} action, makes a ranged attack, or leaves a square during a {@trait move} action. The Triggering Moves diagram on page 474 illustrates examples of movements that might trigger an {@action Attack of Opportunity} from a creature without reach and one with reach.","You'll notice this reaction allows you to use a modified basic action, a {@action Strike}. This follows the rules on subordinate actions found on page 462.","Because your {@action Attack of Opportunity} takes place outside of your turn, the attack roll doesn't incur a multiple attack penalty."],"source":"CRB"},{"type":"pf2-h2","page":473,"name":"Movement in Encounters","entries":["Your movement during encounter mode depends on the actions and other abilities you use. Whether you Stride, Step, Swim, or Climb, the maximum distance you can move is based on your Speed. Certain feats or magic items can grant you other movement types, allowing you to swiftly burrow, climb, fly, or swim (page 463).","When the rules refer to a \"movement cost\" or \"spending movement,\" they are describing how many feet of your Speed you must use to move from one point to another. Normally, movement costs 5 feet per square when you're moving on a grid, or it costs the number of feet you move if you're not using a grid. However, sometimes it's harder to move a certain distance due to {@quickref difficult terrain||3|terrain} or other factors. In such a case, you might have to spend a different amount of movement to move from one place to another.","For example, a form of movement might require 10 feet of movement to move 1 square, and moving through some types of terrain costs an extra 5 feet of movement per square.",{"type":"pf2-h3","page":473,"name":"Grid Movement","entries":["If an encounter involves combat, it's often a good idea to track the movement and relative position of the participants using a Pathfinder Flip-Mat, Flip-Tiles, or some other form of grid to display the terrain, and miniatures to represent the combatants. When a character moves on a grid, every 1-inch square of the play area is 5 feet across in the game world. Hence, a creature moving in a straight line spends 5 feet of its movement for every map square traveled.","Because moving diagonally covers more ground, you count that movement differently. The first square of diagonal movement you make in a turn counts as 5 feet, but the second counts as 10 feet, and your count thereafter alternates between the two. For example, as you move across 4 squares diagonally, you would count 5 feet, then 10, then 5, and then 10, for a total of 30 feet. You track your total diagonal movement across all your movement during your turn, but reset your count at the end of your turn."],"source":"CRB"},{"type":"pf2-h3","page":473,"name":"Size, Space, and Reach","entries":["Creatures and objects of different sizes occupy different amounts of space. The sizes and the spaces they each take up on a grid are listed in {@table Size and Reach||Table 9–1: Size and Reach}.","Table 9–1 also lists the typical reach for creatures of each size, for both tall creatures (most bipeds) and long creatures (most quadrupeds). See page 455 for more about reach.","The Space entry lists how many feet on a side a creature's space is, so a Large creature fills a 10-foot-by-10-foot space (4 squares on the grid). Sometimes part of a creature extends beyond its space, such as if a giant octopus is grabbing you with its tentacles. In that case, the GM will usually allow attacking the extended portion, even if you can't reach the main creature. A Small or larger creature or object takes up at least 1 square on a grid, and creatures of these sizes can't usually share spaces except in situations like a character riding a mount. Rules for moving through other creatures' spaces appear below.",{"type":"data","tag":"table","source":"CRB","name":"Size and Reach"},"Multiple Tiny creatures can occupy the same square. At least four can fit in a single square, though the GM might determine that even more can fit. Tiny creatures can occupy a space occupied by a larger creature as well, and if their reach is 0 feet, they must do so in order to attack."],"source":"CRB"},{"type":"pf2-h3","page":474,"name":"Move Actions That Trigger Reactions","entries":["Some reactions and free actions are triggered by a creature using an action with the move trait. The most notable example is Attack of Opportunity. Actions with the move trait can trigger reactions or free actions throughout the course of the distance traveled. Each time you exit a square (or move 5 feet if not using a grid) within a creature's reach, your movement triggers those reactions and free actions (although no more than once per move action for a given reacting creature). If you use a move action but don't move out of a square, the trigger instead happens at the end of that action or ability.","Some actions, such as Step, specifically state they don't trigger reactions or free actions based on movement."],"source":"CRB"},{"type":"pf2-h3","page":474,"name":"Moving Through a Creature's Space","entries":["You can move through the space of a willing creature. If you want to move through an unwilling creature's space, you can Tumble Through that creature's space using {@skill Acrobatics}. You can't end your turn in a square occupied by another creature, though you can end a move action in its square provided that you immediately use another move action to leave that square. If two creatures end up in the same square by accident, the GM determines which one is forced out of the square (or whether one falls prone).",{"type":"pf2-h4","page":474,"name":"Prone and Incapacitated Creatures","entries":["You can share a space with a prone creature if that creature is willing, unconscious, or dead and if it is your size or smaller. The GM might allow you to climb atop the corpse or unconscious body of a larger creature in some situations. A prone creature can't stand up while someone else occupies its space, but it can Crawl to a space where it's able to stand, or it can attempt to Shove the other creature out of the way."],"source":"CRB"},{"type":"pf2-h4","page":475,"name":"Creatures of Different Sizes","entries":["In most cases, you can move through the space of a creature at least three sizes larger than you (Table 9-1). This means a Medium creature can move through the space of a Gargantuan creature and a Small creature can move through the space of a Huge creature. Likewise, a bigger creature can move through the space of a creature three sizes smaller than itself or smaller. You still can't end your movement in a space occupied by a creature.","Tiny creatures are an exception. They can move through creatures' spaces and can even end their movement there."],"source":"CRB"},{"type":"pf2-h4","page":475,"name":"Objects","entries":["Because objects aren't as mobile as creatures are, they're more likely to fill a space. This means you can't always move through their spaces like you might move through a space occupied by a creature. You might be able to occupy the same square as a statue of your size, but not a wide column. The GM determines whether you can move into an object's square normally, whether special rules apply, or if you are unable to move into the square at all."],"source":"CRB"}],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":475,"name":"Forced Movement","entries":["When an effect forces you to move, or if you start falling, the distance you move is defined by the effect that moved you, not by your Speed. Because you're not acting to move, this doesn't trigger reactions that are triggered by movement.","If forced movement would move you into a space you can't occupy—because objects are in the way or because you lack the movement type needed to reach it, for example—you stop moving in the last space you can occupy. Usually the creature or effect forcing the movement chooses the path the victim takes. If you're pushed or pulled, you can usually be moved through hazardous terrain, pushed off a ledge, or the like. Abilities that reposition you in some other way can't put you in such dangerous places unless they specify otherwise. In all cases, the GM makes the final call if there's doubt on where forced movement can move a creature."],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h3","page":475,"name":"Terrain","entries":["Several types of terrain can complicate your movement by slowing you down, damaging you, or endangering you.",{"type":"pf2-h4","page":475,"name":"Difficult Terrain","entries":["Difficult terrain is any terrain that impedes your movement, ranging from particularly rough or unstable surfaces to thick ground cover and countless other impediments. Moving into a square of {@b difficult terrain} (or moving 5 feet into or within an area of difficult terrain, if you're not using a grid) costs an extra 5 feet of movement.","Moving into a square of {@b greater difficult terrain} instead costs 10 additional feet of movement. This additional cost is not increased when moving diagonally. You can't Step into difficult terrain.","Movement you make while you are jumping ignores the terrain you're jumping over. Some abilities (such as flight or being incorporeal) allow you to avoid the movement reduction from some types of difficult terrain. Certain other abilities let you ignore difficult terrain on foot; such an ability also allows you to move through greater difficult terrain at the normal movement cost as for difficult terrain, though it wouldn't let you ignore greater difficult terrain unless the ability specifies otherwise."],"source":"CRB"},{"type":"pf2-h4","page":476,"name":"Hazardous Terrain","entries":["Hazardous terrain damages you whenever you move through it. An acid pool and a pit of burning embers are both examples of hazardous terrain. The amount and type of damage depend on the specific hazardous terrain."],"source":"CRB"},{"type":"pf2-h4","page":476,"name":"Narrow Surfaces","entries":["A narrow surface is so precariously thin that you need to {@action Balance} or risk falling. Even on a success, you are {@condition flat-footed} on a narrow surface.","Each time you are hit by an attack or fail a save on a narrow surface, you must succeed at a Reflex save (with the same DC as the {@skill Acrobatics} check to {@action Balance}) or fall."],"source":"CRB"},{"type":"pf2-h4","page":476,"name":"Uneven Ground","entries":["Uneven ground is an area unsteady enough that you need to {@action Balance} or risk falling prone and possibly injuring yourself, depending on the specifics of the uneven ground. You are {@condition flat-footed} on uneven ground. Each time you are hit by an attack or fail a save on uneven ground, you must succeed at a Reflex save (with the same DC as the {@skill Acrobatics} check to Balance) or fall prone."],"source":"CRB"},{"type":"pf2-h4","page":476,"name":"Inclines","entries":["An incline is an area so steep that you need to {@action Climb} using the {@skill Athletics} skill in order to progress upward.","You're {@condition flat-footed} when {@action Climb||Climbing} an incline."],"source":"CRB"}],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h2","page":477,"name":"Special Battles","entries":["Sometimes fights occur while the characters are atop mounts or when the PCs take to the sky or seas.",{"type":"pf2-h3","page":478,"name":"Mounted Combat","entries":["You can ride some creatures into combat. As noted in the {@action Mount} specialty basic action, your mount needs to be at least one size larger than you and willing. Your mount acts on your initiative. You must use the {@action Command an Animal} action (page 249) to get your mount to spend its actions. If you don't, the animal wastes its actions. If you have the Ride general feat, you succeed automatically when you {@action Command an Animal} that's your mount.","For example, if you are mounted on a horse and you make three attacks, your horse would remain stationary since you didn't command it. If you instead spent your first action to {@action Command an Animal} and succeeded, you could get your mount to Stride. You could spend your next action to attack or to command the horse to attack, but not both.",{"type":"pf2-h4","page":478,"name":"Mounted Attacks","entries":["You and your mount fight as a unit. Consequently, you share a multiple attack penalty. For example, if you Strike and then {@action Command an Animal} to have your mount Strike, your mount's attack takes a –5 multiple attack penalty.","You occupy every square of your mount's space for the purpose of making your attacks. If you were Medium and on a Large mount, you could attack a creature on one side of your mount, then attack on the opposite side with your next action. If you have a longer reach, the distance depends partly on the size of your mount. On a Medium or smaller mount, use your normal reach. On a Large or Huge mount, you can attack any square adjacent to the mount if you have 5- or 10-foot reach, or any square within 10 feet of the mount (including diagonally) if you have 15-foot reach."],"source":"CRB"},{"type":"pf2-h4","page":478,"name":"Mounted Defenses","entries":["When you're mounted, attackers can target either you or your mount. Anything that affects multiple creatures (such as an area) affects both of you as long as you're both in the area. You are in an attacker's reach or range if any square of your mount is within reach or range. Because your mount is larger than you and you share its space, you have lesser cover against attacks targeting you when you're mounted if the mount would be in the way.","Because you can't move your body as freely while you're riding a mount, you take a –2 circumstance penalty to Reflex saves while mounted. Additionally, the only move action you can use is the Mount action to dismount."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-brown-box","page":478,"name":"THREE-DIMENSIONAL COMBAT","entries":["In aerial and aquatic combat, you might need to track positioning in three dimensions. For flying creatures, you might use one of the following methods:",{"type":"list","items":["Find platforms to place flying creatures' miniatures on.","Set a die next to a creature with the number indicating how many squares up in the air it is.","Make a stack of dice or tokens, 1 per 5 feet of elevation.","Write the elevation next to the monster on the grid. In underwater combat, choose a plane to be the\nbaseline, typically the waterline, the sea floor, or a stationary object you can measure from."]},"As with ground-based movement, moving diagonally up or down in 3-D space requires counting every other diagonal as 10 feet. Measure flanking in all directions—creatures above and below an enemy can flank it just as effectively as they can from opposite sides."],"source":"CRB"},{"type":"pf2-h3","page":478,"name":"Aerial Combat","entries":["Many monsters can fly, and PCs can use spells and items to gain the ability to fly. Flying creatures have to use the Fly action (page 472) to move through the air. Performing an especially tricky maneuver—such as trying to reverse course 180 degrees or fly through a narrow gap—might require using {@skill Acrobatics} to Maneuver in Flight. Creatures might fall from the sky, using the falling rules found on page 463. At the GM's discretion, some ground-based actions might not work in the air. For instance, a flying creature couldn't Leap."],"source":"CRB"},{"type":"pf2-h3","page":478,"name":"Aquatic Combat","entries":["Use these rules for battles in water or underwater:",{"type":"list","items":["You're {@condition flat-footed} unless you have a swim Speed.","You gain resistance 5 to acid and fire.","You take a –2 circumstance penalty to melee slashing or bludgeoning attacks that pass through water.","Ranged attacks that deal bludgeoning or slashing damage automatically miss if the attacker or target is underwater, and piercing ranged attacks made by an underwater creature or against an underwater target have their range increments halved.","You can't cast fire spells or use actions with the fire trait underwater.","At the GM's discretion, some ground-based actions might not work underwater or while floating."]},{"type":"pf2-h4","page":478,"name":"Drowning and Suffocating","entries":["You can hold your breath for a number of rounds equal to 5 + your Constitution modifier. Reduce your remaining air by 1 round at the end of each of your turns, or by 2 if you attacked or cast any spells that turn. You also lose 1 round worth of air each time you are critically hit or critically fail a save against a damaging effect. If you speak (including casting spells with verbal components or activating items with command components) you lose all remaining air.","When you run out of air, you fall {@condition unconscious} and start suffocating. You can't recover from being unconscious and must attempt a DC 20 Fortitude save at the end of each of your turns. On a failure, you take 1d10 damage, and on a critical failure, you die. On each check after the first, the DC increases by 5 and the damage by 1d10; these increases are cumulative. Once your access to air is restored, you stop suffocating and are no longer unconscious (unless you're at 0 Hit Points)."],"data":{"quickrefIndex":true},"source":"CRB"}],"data":{"quickrefIndex":true},"source":"CRB"}],"source":"CRB"}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":479,"name":"Exploration Mode","entries":[{"type":"pf2-h1-flavor","page":479,"entries":["{@i While encounters use rounds for combat, exploration is more free form. The GM determines the flow of time, as you could be traveling by horseback across craggy highlands, negotiating with merchants, or delving in a dungeon in search of danger and treasure. Exploration lacks the immediate danger of encounter mode, but it offers its own challenges.}"],"source":"CRB"},"Much of exploration mode involves movement and roleplaying. You might be traveling from one town to another, chatting with a couple of merchants an outpost along the way, or maybe having a terse conversation with the watchful city guards at your destination. Instead of measuring your rate of movement in 5-foot squares every round, you measure it in feet or miles per minute, hour, or day, using your travel speed. Rather than deciding on each action every turn, you'll engage in an exploration activity, and you'll typically spend some time every day resting and making your daily preparations.",{"type":"pf2-h2","page":479,"name":"Travel Speed","entries":["Depending on how the GM tracks movement, you move in feet or miles based on your character's Speed with the relevant movement type. Typical rates are on the table below.",{"type":"data","tag":"table","source":"CRB","name":"Travel Speed"},"The rates in Table 9 –2 assume traveling over flat and clear terrain at a determined pace, but one that's not exhausting.","Moving through {@quickref difficult terrain||3|terrain} halves the listed movement rate. {@quickref greater difficult terrain||3|terrain} reduces the distance traveled to one-third the listed amount. If the travel requires a skill check to accomplish, such as mountain climbing or swimming, the GM might call for a check once per hour using the result and the table above to determine your progress."],"source":"CRB"},{"type":"pf2-h2","page":479,"name":"Exploration Activities","entries":["While you're traveling and exploring, tell the GM what you'd generally like to do along the way. If you to do nothing more than make steady progress toward your goal, you move at the full travel speeds given in Table 9 –2.","When you want to do something other than simply travel, you describe what you are attempting to do. It isn't necessary to go into extreme detail, such as \"Using my dagger, I nudge the door so I can check for devious traps.\" Instead, \"I'm searching the area for hazards\" is sufficient. The GM finds the best exploration activity to match your description and describes the effects of that activity. Some exploration activities limit how fast you can travel and be effective.","These are most common exploration activities.",{"type":"pf2-brown-box","page":480,"name":"SKILL EXPLORATION ACTIVITIES","entries":["Chapter 4: Skills includes numerous additional exploration activities, which are summarized here.","{@b {@action Borrow an Arcane Spell}:} You use {@skill Arcana} to prepare a spell from someone else's spellbook (page 241).","{@b {@action Coerce}:} You use {@skill Intimidation} to threaten a creature so it does what you want (page 247).","{@b {@action Cover Tracks}:} You use {@skill Survival} to obscure your passing (page 252).","{@b {@action Decipher Writing}:} You use a suitable skill to understand archaic, esoteric, or obscure texts (page 234).","{@b {@action Gather Information}:} You use {@skill Diplomacy} to canvass the area to learn about a specific individual or topic (page 246).","{@b {@action Identify Alchemy}:} You use Craft and alchemist's tools to identify an alchemical item (page 245).","{@b {@action Identify Magic}:} Using a variety of skills, you can learn about a magic item, location, or ongoing effect (page 238).","{@b {@action Impersonate}:} You use {@skill Deception} and usually a disguise kit to create a disguise (page 245).","{@b {@action Learn a Spell}:} You use the skill corresponding to the spell's tradition to gain access to a new spell (page 238).","{@b {@action Make an Impression}:} You use {@skill Diplomacy} to make a good impression on someone (page 246).","{@b {@action Repair}:} With a repair kit and the {@skill Crafting} skill, you fix a damaged item (page 243).","{@b {@action Sense Direction}:} You use {@skill Survival} to get a sense of where you are or determine the cardinal directions (page 252).","{@b {@action Squeeze}:} Using {@skill Acrobatics}, you squeeze though very tight spaces (page 241).","{@b {@action Track}:} You use {@skill Survival} to find and follow creatures' tracks (page 252).","{@b {@action Treat Wounds}:} You use {@skill Medicine} to treat a living creature's wounds (page 249)."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":480,"name":"Rest and Daily Preparations","entries":["You perform at your best when you take enough time to rest and prepare. Once every 24 hours, you can take a period of rest (typically 8 hours), after which you regain Hit Points equal to your Constitution modifier (minimum 1) times your level, and you might recover from or improve certain conditions (page 453). Sleeping in armor results in poor rest that leaves you {@condition fatigued}. If you go more than 16 hours without resting, you become {@condition fatigued} (you cannot recover from this until you rest at least 6 continuous hours).","After you rest, you make your daily preparations, which takes around 1 hour. You can prepare only if you've rested, and only once per day. Preparing includes the following:",{"type":"list","items":["Spellcasters regain spell slots, and prepared spellcasters choose spells to have available that day.","Focus Points, other abilities that refresh during your preparations, and abilities that can be used only a certain number of times per day, including magic item uses, are reset.","You don armor and equip weapons and other gear.","You invest up to 10 worn magic items to gain their benefits for the day."]}],"data":{"quickrefIndex":true},"source":"CRB"}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":476,"name":"Flanking","entries":["When you and an ally are flanking a foe, it has a harder time defending against you. A creature is {@condition flat-footed} (taking a –2 circumstance penalty to AC) to creatures that are flanking it.","To flank a foe, you and your ally must be on opposites sides or corners of the creature. A line drawn between the center of your space and the center of your ally's space must pass through opposite sides or opposite corners of the foe's space. Additionally, both you and the ally have to be able to act, must be wielding melee weapons or able to make an unarmed attack, can't be under any effects that prevent you from attacking, and must have the enemy within reach. If you are wielding a reach weapon, you use your {@trait reach} with that weapon for this purpose."],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":444,"name":"Game Conventions","entries":["Pathfinder has many specific rules, but you'll also want to keep these general guidelines in mind when playing.",{"type":"pf2-h3","name":"The GM Has the Final Say"},"If you're ever uncertain how to apply a rule, the GM decides.","Of course, Pathfinder is a game, so when adjudicating the rules, the GM is encouraged to listen to everyone's point of view and make a decision that is both fair and fun.",{"type":"pf2-h3","name":"Specific Overrides General"},"A core principle of Pathfinder is that specific rules override general ones. If two rules conflict, the more specific one takes precedence. If there's still ambiguity, the GM determines which rule to use. For example, the rules state that when attacking a concealed creature, you must attempt a DC {@flatDC 5} flat check to determine if you hit. Flat checks don't benefit from modifiers, bonuses, or penalties, but an ability that's specifically designed to overcome concealment might override and alter this. If a rule doesn't specify otherwise, default to the general rules presented in this chapter. While some special rules may also state the normal rules to provide context, you should always default to the normal rules even if effects don't specifically say to.",{"type":"pf2-h3","name":"Rounding"},"You may need to calculate a fraction of a value, like halving damage. Always round down unless otherwise specified.","For example, if a spell deals 7 damage and a creature takes half damage from it, that creature takes 3 damage.",{"type":"pf2-h3","name":"Multiplying"},"When more than one effect would multiply the same number, don't multiply more than once. Instead, combine all the multipliers into a single multiplier, with each multiple after the first adding 1 less than its value. For instance, if one ability doubled the duration of one of your spells and another one doubled the duration of the same spell, you would triple the duration, not quadruple it.",{"type":"pf2-h3","name":"Duplicate Effects"},"When you're affected by the same thing multiple times, only one instance applies, using the higher level of the effects, or the newer effect if the two are the same level. For example, if you were using {@spell mage armor} and then cast it again, you'd still benefit from only one casting of that spell. Casting a spell again on the same target might get you a better duration or effect if it were cast at a higher level the second time, but otherwise doing so gives you no advantage.",{"type":"pf2-h3","name":"Ambiguous Rules"},"Sometimes a rule could be interpreted multiple ways. If one version is too good to be true, it probably is. If a rule seems to have wording with problematic repercussions or doesn't work as intended, work with your group to find a good solution, rather than just playing with the rule as printed."],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":467,"name":"Hero Points","entries":["Your heroic deeds earn you Hero Points, which grant you good fortune or let you recover from the brink of death. Unlike most aspects of your character, which persist over the long term, Hero Points last for only a single session.","The GM is in charge of awarding Hero Points (guidelines for doing so can be found {@quickref here||4|rewards|1}).","Usually, each character gets 1 Hero Point at the start of a session and can gain more later by performing heroic deeds—something selfless, daring, or beyond normal expectations. You can have a maximum of 3 Hero Points at a time, and you lose any remaining Hero Points at the end of a session.","You can spend your Hero Points in one of two ways.","Neither of these is an action, and you can spend Hero Points even if you aren't able to act. You can spend a Hero Point on behalf of your familiar or animal companion.",{"type":"list","items":["{@b Spend 1 Hero Point} to reroll a check. You must use the second result. This is a fortune effect (which means you can't use more than 1 Hero Point on a check).","{@b Spend all your Hero Points} (minimum 1) to avoid death. You can do this when your {@condition dying} condition would increase. You lose the {@condition dying} condition entirely and stabilize with 0 Hit Points. You don't gain the {@condition wounded} condition or increase its value from losing the {@condition dying} condition in this way, but if you already had that condition, you don't lose it or decrease its value."]},{"type":"pf2-h3","page":467,"name":"Describing Heroic Deeds","entries":["Because spending Hero Points reflects heroic deeds or tasks that surpass normal expectations, if you spend a Hero Point, you should describe the deed or task your character accomplishes with it to the other players.","Your character's deed might invoke a lesson learned in a past adventure, could be spurred by a determination to save someone else, or might depend on an item that ended up on their person due to a previous exploit. If you don't want to describe the deed or don't have any strong ideas about how to do so, ask the GM to come up with something for you. This can be a collaborative process, too. The GM might remind you of a long-forgotten event in the campaign, and all you have to do is fill in how that event comes to mind just at the right time, motivating you to push past your limits."],"source":"CRB"}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":459,"name":"Hit Points, Healing, and Dying","entries":["All creatures and objects have Hit Points (HP). Your maximum Hit Point value represents your health, wherewithal, and heroic drive when you are in good health and rested. Your maximum Hit Points include the Hit Points you gain at 1st level from your ancestry and class, those you gain at higher levels from your class, and any you gain from other sources (like the Toughness general feat). When you take damage, you reduce your current Hit Points by a number equal to the damage dealt.","Some spells, items, and other effects, as well as simply resting, can heal living or undead creatures. When you are healed, you regain Hit Points equal to the amount healed, up to your maximum Hit Points.",{"type":"pf2-h3","page":459,"name":"Knocked Out and Dying","entries":["Creatures cannot be reduced to fewer than 0 Hit Points.","When most creatures reach 0 Hit Points, they die and are removed from play unless the attack was nonlethal, in which case they are instead knocked out for a significant amount of time (usually 1 minute or more). When undead and construct creatures reach 0 Hit Points, they are destroyed.","Player characters, their companions, and other significant characters and creatures don't automatically die when they reach 0 Hit Points. Instead, they are knocked out and are at risk of death. At the GM's discretion, villains, powerful monsters, special NPCs, and enemies with special abilities that are likely to bring them back to the fight (like ferocity, regeneration, or healing magic) can use these rules as well.","As a player character, when you are reduced to 0 Hit Points, you're knocked out with the following effects:",{"type":"list","items":["You immediately move your initiative position to directly before the turn in which you were reduced to 0 HP.","You gain the {@condition dying} 1 condition. If the effect that knocked you out was a critical success from the attacker or the result of your critical failure, you gain the {@condition dying} 2 condition instead. If you have the {@condition wounded} condition (page 460), increase your {@condition dying} value by an amount equal to your {@condition wounded} value. If the damage was dealt by a nonlethal attack or nonlethal effect, you don't gain the dying condition; you are instead unconscious with 0 Hit Points."]},{"type":"pf2-h4","page":459,"name":"Taking Damage while Dying","entries":["If you take damage while you already have the dying condition, increase your dying condition value by 1, or by 2 if the damage came from an attacker's critical hit or your own critical failure. If you have the wounded condition, remember to add the value of your wounded condition to your dying value."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":459,"name":"Recovery Checks","entries":["When you're dying, at the start of each of your turns, you must attempt a flat check with a DC equal to 10 + your current dying value to see if you get better or worse. This is called a recovery check. The effects of this check are as follows.",{"type":"successDegree","entries":{"Critical Success":"Your {@condition dying} value is reduced by 2.","Success":"Your {@condition dying} value is reduced by 1.","Failure":"Your {@condition dying} value increases by 1.","Critical Failure":"Your {@condition dying} value increases by 2."}}],"source":"CRB"},{"type":"pf2-h3","page":459,"name":"Conditions Related to Death and Dying","entries":["To understand the rules for getting knocked out and how dying works in the game, you'll need some more information on the conditions used in those rules.","Presented below are the rules for the {@condition dying}, {@condition unconscious}, wounded, and doomed conditions.",{"type":"pf2-h4","page":459,"name":"Dying","entries":["You are bleeding out or otherwise at death's door. While you have this condition, you are unconscious. Dying always includes a value. If this value ever reaches dying 4, you die. If you're dying, you must attempt a recovery check at the start of your turn each round to determine whether you get better or worse.","If you lose the {@condition dying} condition by succeeding at a recovery check and are still at 0 Hit Points, you remain unconscious, but you can wake up as described on page 460. You lose the dying condition automatically and wake up if you ever have 1 Hit Point or more. Anytime you lose the dying condition, you gain the wounded 1 condition, or increase your wounded value by 1 if you already have that condition."],"source":"CRB"},{"type":"pf2-h4","page":459,"name":"Unconscious","entries":["You're sleeping, or you've been knocked out. You can't act.","You take a –4 status penalty to AC, Perception, and Reflex saves, and you have the blinded and {@condition flat-footed} conditions.","When you gain this condition, you fall {@condition prone} and drop items you are wielding or holding unless the effect states otherwise or the GM determines you're in a position in which you wouldn't.","{@b If you're {@condition unconscious} because you're {@condition dying}}, you can't wake up as long as you have 0 Hit Points. If you're restored to 1 Hit Point or more via healing, you lose the dying and unconscious conditions and can act normally on your next turn.","If you are {@condition unconscious} and at 0 Hit Points, but not {@b dying}, you naturally return to 1 Hit Point and awaken after sufficient time passes. The GM determines how long you remain unconscious, from a minimum of 10 minutes to several hours. If you receive healing during this time, you lose the unconscious condition and can act normally on your next turn.","If you're {@condition unconscious} and have more than 1 Hit Point (typically because you are asleep or unconscious due to an effect), you wake up in one of the following ways.","Each causes you to lose the {@condition unconscious} condition.",{"type":"list","items":["You take damage, provided the damage doesn't reduce you to 0 Hit Points. (If the damage reduces you to 0 Hit Points, you remain {@condition unconscious} and gain the {@condition dying} condition as normal.)","You receive healing, other than the natural healing you get from resting.","Someone nudges or shakes you awake using an Interact action.","Loud noise is being made around you—though this isn't automatic. At the start of your turn, you automatically attempt a Perception check against the noise's DC (or the lowest DC if there is more than one noise), waking up if you succeed. This is often DC 5 for a battle, but if creatures are attempting to stay quiet around you, this Perception check uses their {@skill Stealth} DC. Some magical effects make you sleep so deeply that they don't allow you to attempt this Perception check.","If you are simply asleep, the GM decides you wake up either because you have had a restful night's sleep or something disrupted that rest."]}],"source":"CRB"},{"type":"pf2-h4","page":460,"name":"Wounded","entries":["You have been seriously injured during a fight. Anytime you lose the dying condition, you become wounded 1 if you didn't already have the wounded condition. If you already have the wounded condition, your wounded condition value instead increases by 1. If you gain the dying condition while wounded, increase the dying condition's value by your wounded value. The wounded condition ends if someone successfully restores Hit Points to you with Treat Wounds, or if you are restored to full Hit Points and rest for 10 minutes."],"source":"CRB"},{"type":"pf2-h4","page":460,"name":"Doomed","entries":["Your life is ebbing away, bringing you ever closer to death. Some powerful spells and evil creatures can inflict the doomed condition on you. Doomed always includes a value. The maximum dying value at which you die is reduced by your doomed value. For example, if you were {@condition doomed 1}, you would die upon reaching dying 3 instead of dying 4. If your maximum dying value is ever reduced to 0, you instantly die. When you die, you're no longer doomed.","Your {@condition doomed} value decreases by 1 each time you get a full night's rest."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":460,"name":"Death","entries":["After you die, you can't act or be affected by spells that target creatures (unless they specifically target dead creatures), and for all other purposes you are an object. When you die, you are reduced to 0 Hit Points if you had a different amount, and you can't be brought above 0 Hit Points as long as you remain dead. Some magic can bring creatures back to life, such as the {@ritual resurrect} ritual or the {@spell raise dead} spell."],"source":"CRB"},{"type":"pf2-h3","page":460,"name":"Heroic Recovery","entries":["If you have at least 1 Hero Point (page 467), you can spend all of your remaining Hero Points at the start of your turn or when your dying value would increase. You lose the dying condition entirely and stabilize with 0 Hit Points. You don't gain the wounded condition or increase its value from losing the dying condition in this way, but if you already had that condition, you don't lose it or decrease its value. You lose the dying condition and become conscious. You do not gain the wounded condition (or increase its value) when you perform a heroic recovery."],"source":"CRB"},{"type":"pf2-h3","page":461,"name":"Death Effects and Instant Death","entries":["Some spells and abilities can kill you immediately or bring you closer to death without needing to reduce you to 0 Hit Points first. These abilities have the death trait and usually involve negative energy, the antithesis of life. If you are reduced to 0 Hit Points by a death effect, you are slain instantly without needing to reach dying 4. If an effect states it kills you outright, you die without having to reach dying 4 and without being reduced to 0 Hit Points."],"source":"CRB"},{"type":"pf2-h3","page":461,"name":"Massive Damage","entries":["You die instantly if you ever take damage equal to or greater than double your maximum Hit Points in one blow."],"source":"CRB"},{"type":"pf2-h3","page":461,"name":"Temporary Hit Points","entries":["Some spells or abilities give you temporary Hit Points.","Track these separately from your current and maximum Hit Points; when you take damage, reduce your temporary Hit Points first. Most temporary Hit Points last for a limited duration. You can't regain lost temporary Hit Points through healing, but you can gain more via other abilities. You can have temporary Hit Points from only one source at a time. If you gain temporary Hit Points when you already have some, choose whether to keep the amount you already have and their corresponding duration or to gain the new temporary Hit Points and their duration."],"source":"CRB"},{"type":"pf2-h3","page":461,"name":"Fast Healing and Regeneration","entries":["A creature with fast healing or regeneration regains the listed amount of Hit Points each round at the beginning of its turn. A creature with regeneration has additional benefits. Its dying condition can't increase to a value that would kill it (this stops most creatures from going beyond dying 3) as long as its regeneration is active. If it takes damage of a type listed in the regeneration entry, its regeneration deactivates until the end of its next turn, including against the triggering damage."],"source":"CRB"},{"type":"pf2-h3","page":461,"name":"Items and Hit Points","entries":["Items have Hit Points like creatures, but the rules for damaging them are different (page 272). An item has a Hardness statistic that reduces damage the item takes by that amount. The item then takes any damage left over. If an item is reduced to 0 HP, it's destroyed. An item also has a Broken Threshold. If its HP are reduced to this amount or lower, it's broken, meaning it can't be used for its normal function and it doesn't grant bonuses. Damaging an unattended item usually requires attacking it directly, and can be difficult due to that item's Hardness and immunities. You usually can't attack an attended object (one on a creature's person)."],"source":"CRB"}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":443,"name":"Making Choices","entries":["Pathfinder is a game where your choices determine the story's direction. Throughout the game, the GM describes what's happening in the world and then asks the players, \"So what do you do?\" Exactly what you choose to do, and how the GM responds to those choices, builds a unique story experience. Every game is different, because you'll rarely, if ever, make the same decisions as another group of players.","This is true for the GM as well—two GMs running the exact same adventure will put different emphasis and flourishes on the way they present each scenario and encounter.","Often, your choices have no immediate risk or consequences. If you're traveling along a forest path and come across a fork in the trail, the GM will ask, \"Which way do you go?\" You might choose to take the right fork or the left. You could also choose to leave the trail, or just go back to town. Once your choice is made, the GM tells you what happens next. Down the line, that choice may impact what you encounter later in the game, but in many cases nothing dangerous happens immediately.","But sometimes what happens as a result of your choices is less than certain. In those cases, you'll attempt a check."],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":463,"name":"Movement","entries":["Your movement and position determine how you can interact with the world. Moving around in exploration and downtime modes is relatively fluid and free form.","Movement in encounter mode, by contrast, is governed by rules explained in Movement in Encounters (page 473). The rules below apply regardless of which mode you're playing in.",{"type":"pf2-h3","page":463,"name":"Movement Types","entries":["Creatures in Pathfinder soar through the clouds, scale sheer cliffs, and tunnel underfoot. Most creatures have a Speed, which is how fast they can move across the ground. Some abilities give you different ways to move, such as through the air or underground.","Each of these special movement types has its own Speed value. Many creatures have these Speeds naturally. The various types of movement are listed below. Since the Stride action can be used only with your normal Speed, moving using one of these movement types requires using a special action, and you can't Step while using one of these movement types. Since Speed by itself refers to your land Speed, rules text concerning these special movement types specifies the movement types to which it applies. Even though Speeds aren't checks, they can have item, circumstance, and status bonuses and penalties. These can't reduce your Speeds below 5 feet unless stated otherwise.","Switching from one movement type to another requires ending your action that has the first movement type and using a new action that has the second movement type. For instance, if you Climbed 10 feet to the top of a cliff, you could then Stride forward 10 feet.",{"type":"pf2-h4","page":463,"name":"Speed","entries":["Most characters and monsters have a speed statistic—also called land Speed—which indicates how quickly they can move across the ground. When you use the Stride action, you move a number of feet equal to your Speed. Numerous other abilities also allow you to move, from Crawling to Leaping, and most of them are based on your Speed in some way. Whenever a rule mentions your Speed without specifying a type, it's referring to your land Speed."],"source":"CRB"},{"type":"pf2-h4","page":463,"name":"Burrow Speed","entries":["A burrow Speed lets you tunnel through the ground. You can use the {@action Burrow} action if you have a burrow Speed. Burrowing doesn't normally leave behind a tunnel unless the ability specifically states that it does. Most creatures need to hold their breath when burrowing, and they may need tremorsense (page 465) to navigate with any accuracy."],"source":"CRB"},{"type":"pf2-h4","page":463,"name":"Climb Speed","entries":["A climb Speed allows you to move up or down inclines and vertical surfaces. Instead of needing to attempt {@skill Athletics} checks to Climb, you automatically succeed and move up to your climb Speed instead of the listed distance.","You might still have to attempt {@skill Athletics} checks to Climb in hazardous conditions, to Climb extremely difficult surfaces, or to cross horizontal planes such as ceilings. You can also choose to roll an {@skill Athletics} check to Climb rather than accept an automatic success in hopes of getting a critical success. Your climb Speed grants you a +4 circumstance bonus to {@skill Athletics} checks to Climb.","If you have a climb Speed, you're not {@condition flat-footed} while climbing."],"source":"CRB"},{"type":"pf2-h4","page":463,"name":"Fly Speed","entries":["As long as you have a fly Speed, you can use the {@action Fly} and {@action Arrest a Fall} actions. You can also attempt to {@action Maneuver in Flight} if you're trained in the {@skill Acrobatics} skill.","Wind conditions can affect how you use the {@action Fly} action. In general, moving against the wind uses the same rules as moving through {@quickref difficult terrain||3|terrain} (or {@quickref greater difficult terrain||3|terrain}, if you're also flying upward), and moving with the wind allows you to move 10 feet for every 5 feet of movement you spend (not cumulative with moving straight downward). For more information on spending movement, see Movement in Encounters on page 473.","Upward and downward movement are both relative to the gravity in your area; if you're in a place with zero gravity, moving up or down is no different from moving horizontally."],"source":"CRB"},{"type":"pf2-h4","page":463,"name":"Swim Speed","entries":["With a swim Speed, you can propel yourself through the water with little impediment. Instead of attempting {@skill Athletics} checks to {@action Swim}, you automatically succeed and move up to your swim Speed instead of the listed distance. Moving up or down is still moving through {@quickref difficult terrain||3|terrain}.","You might still have to attempt checks to {@action Swim} in hazardous conditions or to cross turbulent water. You can also choose to roll an {@skill Athletics} check to {@action Swim} rather than accept an automatic success in hopes of getting a critical success. Your swim Speed grants you a +4 circumstance bonus to {@skill Athletics} checks to {@action Swim}.","Having a swim Speed doesn't necessarily mean you can breathe in water, so you might still have to hold your breath if you're underwater to avoid {@quickref drowning||3|drowning and suffocating}."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":463,"name":"Falling","entries":["When you fall more than 5 feet, you take bludgeoning damage equal to half the distance you fell when you land. Treat falls longer than 1,500 feet as though they were 1,500 feet (750 damage). If you take any damage from a fall, you land prone. You fall about 500 feet in the first round of falling and about 1,500 feet each round thereafter.","You can Grab an Edge as a reaction to reduce the damage from some falls. In addition, if you fall into water, snow, or another relatively soft substance, you can treat the fall as though it were 20 feet shorter, or 30 feet shorter if you intentionally dove in. The effective reduction can't be greater than the depth (so when falling into 10-foot-deep water, you treat the fall as 10 feet shorter).",{"type":"pf2-h4","page":464,"name":"Falling on a Creature","entries":["If you land on a creature, that creature must attempt a DC 15 Reflex save. Landing exactly on a creature after a long fall is almost impossible.",{"type":"successDegree","entries":{"Critical Success":"The creature takes no damage.","Success":"The creature takes bludgeoning damage equal to one-quarter the falling damage you took.","Failure":"The creature takes bludgeoning damage equal to half the falling damage you took.","Critical Failure":"The creature takes the same amount of bludgeoning damage you took from the fall."}}],"source":"CRB"},{"type":"pf2-h4","page":464,"name":"Falling Objects","entries":["A dropped object takes damage just like a falling creature. If the object lands on a creature, that creature can attempt a Reflex save using the same rules as for a creature falling on a creature. Hazards and spells that involve falling objects, such as a rock slide, have their own rules about how they interact with creatures and the damage they deal."],"source":"CRB"}],"data":{"quickrefIndex":true},"source":"CRB"}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":618,"name":"Overriding Conditions","entries":["Some conditions override others. This is always specified in the entry for the overriding condition. When this happens, all effects of the overridden condition are suppressed until the overriding condition ends. The overridden condition's duration continues to elapse, and it might run out while suppressed."],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":464,"name":"Perception","entries":["Your Perception measures your ability to notice things, search for what's hidden, and tell whether something about a situation is suspicious. This statistic is frequently used for rolling initiative to determine who goes first in an encounter, and it's also used for the {@action Seek} action .","The rules for rolling a Perception check are found on page 448. The rules below describe the effects of light and visibility on your specific senses to perceive the world, as well as the rules for sensing and locating creatures with Perception.",{"type":"pf2-h3","page":464,"name":"Light","entries":["The amount of light in an area can affect how well you see things. There are three levels of light: bright light, dim light, and darkness. The rules in this book assume that all creatures are in bright light unless otherwise noted. A source of light lists the radius in which it sheds bright light, and it sheds dim light to double that radius.",{"type":"pf2-h4","page":464,"name":"Bright Light","entries":["In bright light, such as sunlight, creatures and objects can be observed clearly by anyone with average vision or better. Some types of creatures are dazzled or blinded by bright light."],"source":"CRB"},{"type":"pf2-h4","page":464,"name":"Dim Light","entries":["Areas in shadow or lit by weak light sources are in dim light. Creatures and objects in dim light have the {@condition concealed} condition, unless the seeker has {@ability darkvision} or {@ability low-light vision} (see Special Senses on page 465), or a precise sense other than vision."],"source":"CRB"},{"type":"pf2-h4","page":464,"name":"Darkness","entries":["A creature or object within darkness is hidden or undetected unless the seeker has {@ability darkvision} or a precise sense other than vision (Special Senses are on page 465). A creature without {@ability darkvision} or another means of perceiving in darkness has the blinded condition while in darkness, though it might be able to see illuminated areas beyond the darkness. If a creature can see into an illuminated area, it can observe creatures within that illuminated area normally. After being in darkness, sudden exposure to bright light might make you dazzled for a short time, as determined by the GM."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":464,"name":"Senses","entries":["The ways a creature can use {@skill Perception} depend on what senses it has. The primary concepts you need to know for understanding senses are precise senses, imprecise senses, and the three states of detection a target can be in: observed, hidden, or undetected. Vision, hearing, and scent are three prominent senses, but they don't have the same degree of acuity.",{"type":"pf2-h4","page":464,"name":"Precise Senses","entries":["Average vision is a precise sense—a sense that can be used to perceive the world in nuanced detail. The only way to target a creature without having drawbacks is to use a precise sense. You can usually detect a creature automatically with a precise sense unless that creature is hiding or obscured by the environment, in which case you can use the Seek basic action to better detect the creature."],"source":"CRB"},{"type":"pf2-h4","page":464,"name":"Imprecise Senses","entries":["Hearing is an imprecise sense—it cannot detect the full range of detail that a precise sense can. You can usually sense a creature automatically with an imprecise sense, but it has the hidden condition instead of the observed condition. It might be undetected by you if it's using {@skill Stealth} or is in an environment that distorts the sense, such as a noisy room in the case of hearing. In those cases, you have to use the Seek basic action to detect the creature. At best, an imprecise sense can be used to make an undetected creature (or one you didn't even know was there) merely hidden—it can't make the creature observed."],"source":"CRB"},{"type":"pf2-h4","page":465,"name":"Vague Senses","entries":["A character also has many vague senses—ones that can alert you that something is there but aren't useful for zeroing in on it to determine exactly what it is. The most useful of these for a typical character is the sense of smell. At best, a vague sense can be used to detect the presence of an unnoticed creature, making it undetected. Even then, the vague sense isn't sufficient to make the creature hidden or observed.","When one creature might detect another, the GM almost always uses the most precise sense available.","Pathfinder's rules assume that a given creature has vision as its only precise sense and hearing as its only imprecise sense. Some characters and creatures, however, have precise or imprecise senses that don't match this assumption. For instance, a character with poor vision might treat that sense as imprecise, an animal with the {@ability scent} ability can use its sense of smell as an imprecise sense, and a creature with echolocation or a similar ability can use hearing as a precise sense. Such senses are often given special names and appear as \"echolocation (precise),\" \"scent (imprecise) 30 feet,\" or the like."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":465,"name":"Special Senses","entries":["While a human might have a difficult time making creatures out in dim light, an elf can see those creatures just fine. And though elves have no problem seeing on a moonlit night, their vision cannot penetrate complete darkness, whereas a dwarf's can.","Special senses grant greater awareness that allows a creature with these senses to either ignore or reduce the effects of the undetected, hidden, or concealed conditions (described in Detecting Creatures below) when it comes to situations that foil average vision. The following are a few examples of common special senses.",{"type":"pf2-h4","page":465,"name":"Darkvision and Greater Darkvision","entries":["A creature with {@ability darkvision} or {@ability darkvision||greater darkvision} can see perfectly well in areas of darkness and dim light, though such vision is in black and white only. Some forms of magical darkness, such as a 4th-level {@spell darkness} spell, block normal {@ability darkvision}. A creature with {@ability darkvision||greater darkvision}, however, can see through even these forms of magical darkness."],"source":"CRB"},{"type":"pf2-h4","page":465,"name":"Low-Light Vision","entries":["A creature with {@ability low-light vision} can see in dim light as though it were bright light, so it ignores the {@condition concealed} condition due to dim light."],"source":"CRB"},{"type":"pf2-h4","page":465,"name":"Scent","entries":["Scent involves sensing creatures or objects by smell, and is usually a vague sense. The range is listed in the ability, and it functions only if the creature or object being detected emits an aroma (for instance, incorporeal creatures usually do not exude an aroma).","If a creature emits a heavy aroma or is upwind, the GM can double or even triple the range of {@ability scent} abilities used to detect that creature, and the GM can reduce the range if a creature is downwind."],"source":"CRB"},{"type":"pf2-h4","page":465,"name":"Tremorsense","entries":["Tremorsense allows a creature to feel the vibrations through a solid surface caused by movement. It is usually an imprecise sense with a limited range (listed in the ability). Tremorsense functions only if the detecting creature is on the same surface as the subject, and only if the subject is moving along (or burrowing through) the surface."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-brown-box","page":465,"name":"DETECTING WITH OTHER SENSES","entries":["If a monster uses a sense other than vision, the GM can adapt the variables that keep its foes from being detected to equivalents that work with the monster's senses. For example, a creature that has echolocation might use hearing as a primary sense. This could mean its quarry is concealed in a noisy chamber, hidden in a great enough din, or even {@condition invisible} in the area of a {@spell silence} spell.",{"type":"pf2-title","name":"Using Stealth with Other Senses"},"The {@skill Stealth} skill is designed to use Hide for avoiding visual detection and Avoid Notice and Sneak to avoid being both seen and heard. For many special senses, a player can describe how they're avoiding detection by that special sense and use the most applicable {@skill Stealth} action. For instance, a creature stepping lightly to avoid being detected via tremorsense would be using Sneak.","In some cases, rolling a Dexterity-based {@skill Stealth} skill check to Sneak doesn't make the most sense. For example, when facing a creature that can detect heartbeats, a PC trying to avoid being detected might meditate to slow their heart rate, using Wisdom instead of Dexterity as the ability modifier for the {@skill Stealth} check. When a creature that can detect you has multiple senses, such as if it could also hear or see, the PC would use the lowest applicable ability modifier for the check."],"source":"CRB"},{"type":"pf2-h3","page":465,"name":"Detecting Creatures","entries":["There are three conditions that measure the degree to which you can sense a creature: observed, hidden, and undetected. However, the concealed and invisible conditions can partially mask a creature, and the unnoticed condition indicates you have no idea a creature is around. In addition to the descriptions here, you can find these conditions in the Conditions Appendix on pages 618–623.","With the exception of {@condition invisible}, these conditions are relative to the viewer—it's possible for a creature to be observed to you but hidden from your ally. When you're trying to target a creature that's hard to see or otherwise sense, various drawbacks apply. Most of these rules apply to objects you're trying to detect as well as creatures.","Typically, the GM tracks how well creatures detect each other, since neither party has perfect information. For example, you might think a creature is in the last place you sensed it, but it was able to Sneak away. Or you might think a creature can't see you in the dark, but it has {@ability darkvision}.","You can attempt to avoid detection by using the {@skill Stealth} skill (page 251) to Avoid Notice, Hide, or Sneak, or by using {@skill Deception} to Create a Diversion (page 245).",{"type":"pf2-h4","page":466,"name":"Observed","entries":["In most circumstances, you can sense creatures without difficulty and target them normally. Creatures in this state are observed. Observing requires a precise sense, which for most creatures means sight, but see the Detecting with Other Senses sidebar (page 465) for advice regarding creatures that don't use sight as their primary sense. If you can't observe the creature, it's either hidden, undetected, or unnoticed, and you'll need to factor in the targeting restrictions. Even if a creature is observed, it might still be concealed."],"source":"CRB"},{"type":"pf2-h4","page":466,"name":"Hidden","entries":["A creature that's hidden is only barely perceptible. You know what space a hidden creature occupies, but little else. Perhaps the creature just moved behind cover and successfully used the Hide action. Your target might be in a deep fogbank or behind a waterfall, where you can see some movement but can't determine an exact location. Maybe you've been {@condition blinded} or the creature is under the effects of {@spell invisibility}, but you used the {@action Seek} basic action to determine its general location based on hearing alone. Regardless of the specifics, you're {@condition flat-footed} to a hidden creature.","When targeting a {@condition hidden} creature, before you roll to determine your effect, you must attempt a DC {@flatDC 11} flat check. If you fail, you don't affect the creature, though the actions you used are still expended—as well as any spell slots, costs, and other resources. You remain {@condition flat-footed} to the creature, whether you successfully target it or not."],"source":"CRB"},{"type":"pf2-h4","page":466,"name":"Undetected","entries":["If a creature is undetected, you don't know what space it occupies, you're {@condition flat-footed} to it, and you can't easily target it. Using the {@action Seek} basic action can help you find an undetected creature, usually making it {@condition hidden} from you instead of {@condition undetected}. If a creature is {@condition undetected}, that doesn't necessarily mean you're unaware of its presence—you might suspect an {@condition undetected} creature is in the room with you, even though you're unable to find its space. The {@condition unnoticed} condition covers creatures you're entirely unaware of.","Targeting an {@condition undetected} creature is difficult. If you suspect there's a creature around, you can pick a square and attempt an attack. This works like targeting a {@condition hidden} creature, but the flat check and attack roll are both rolled in secret by the GM. The GM won't tell you why you missed—whether it was due to failing the flat check, rolling an insufficient attack roll, or choosing the wrong square. The GM might allow you to try targeting an undetected creature with some spells or other abilities in a similar fashion. {@condition Undetected} creatures are subject to area effects normally.","For instance, suppose an enemy elf wizard cast {@spell invisibility} and then {@action sneak||Sneaked} away. You suspect that with the elf's Speed of 30 feet, they probably moved 15 feet toward an open door. You move up and attack a space 15 feet from where the elf started and directly on the path to the door. The GM secretly rolls an attack roll and flat check, but they know that you were not quite correct—the elf was actually in the adjacent space! The GM tells you that you missed, so you decide to make your next attack on the adjacent space, just in case. This time, it's the right space, and the GM's secret attack roll and flat check both succeed, so you hit!"],"source":"CRB"},{"type":"pf2-h4","page":467,"name":"Unnoticed","entries":["If you have no idea a creature is even present, that creature is unnoticed by you. A creature that is undetected might also be unnoticed. This condition usually matters for abilities that can be used only against targets totally unaware of your presence."],"source":"CRB"}],"source":"CRB"}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":450,"name":"Special Checks","entries":["Some categories of checks follow special rules. The most notable are flat checks and secret checks.",{"type":"pf2-h3","page":450,"name":"Flat Checks","entries":["When the chance something will happen or fail to happen is based purely on chance, you'll attempt a flat check. A flat check never includes any modifiers, bonuses, or penalties—you just roll a d20 and compare the result on the die to the DC. Only abilities that specifically apply to flat checks can change the checks' DCs; most such effects affect only certain types of flat checks.","If more than one flat check would ever cause or prevent the same thing, just roll once and use the highest DC. In the rare circumstance that a flat check has a DC of 1 or lower, skip rolling; you automatically succeed. Conversely, if one ever has a DC of 21 or higher, you automatically fail."],"source":"CRB"},{"type":"pf2-h3","page":450,"name":"Secret Checks","entries":["Sometimes you as the player shouldn't know the exact result and effect of a check. In these situations, the rules (or the GM) will call for a secret check. The secret trait appears on anything that uses secret checks. This type of check uses the same formulas you normally would use for that check, but is rolled by the GM, who doesn't reveal the result. Instead, the GM simply describes the information or effects determined by the check's result. If you don't know a secret check is happening (for instance, if the GM rolls a secret Fortitude save against a poison that you failed to notice), you can't use any fortune or misfortune abilities (see the sidebar on page 449) on that check, but if a fortune or misfortune effect would apply automatically, the GM applies it to the secret check. If you know that the GM is attempting a secret check—as often happens with {@action Recall Knowledge} or Seek—you can usually activate fortune or misfortune abilities for that check. Just tell the GM, and they'll apply the ability to the check.","The GM can choose to make any check secret, even if it's not usually rolled secretly. Conversely, the GM can let you roll any check yourself, even if that check would usually be secret. Some groups find it simpler to have players roll all secret checks and just try to avoid acting on any out-of-character knowledge, while others enjoy the mystery."],"source":"CRB"}],"data":{"quickref":4},"source":"CRB"},{"type":"section","page":446,"name":"Specific Checks","entries":["While most checks follow these basic rules, it's useful to know about a few specific types of checks, how they're used, and how they differ from one another.",{"type":"pf2-h3","page":446,"name":"Attack Rolls","entries":["When you use a {@action Strike} action or make a spell attack, you attempt a check called an attack roll. Attack rolls take a variety of forms and are often highly variable based on the weapon you are using for the attack, but there are three main types: melee attack rolls, ranged attack rolls, and spell attack rolls. Spell attack rolls work a little bit differently, so they are explained separately on the next page.","{@b Melee attack rolls} use Strength as their ability modifier by default. If you're using a weapon or attack with the finesse trait, then you can use your Dexterity modifier instead.",{"type":"pf2-inset","entries":["Melee attack roll result = d20 roll + Strength modifier (or optionally Dexterity modifier for a finesse weapon) + proficiency bonus + other bonuses + penalties"]},"{@b Ranged attack rolls} use Dexterity as their ability modifier.",{"type":"pf2-inset","entries":["Ranged attack roll result = d20 roll + Dexterity modifier + proficiency bonus + other bonuses + penalties"]},"When attacking with a weapon, whether melee or ranged, you add your proficiency bonus for the weapon you're using. Your class determines your proficiency rank for various weapons. Sometimes, you'll have different proficiency ranks for different weapons. For instance, at 5th level, a fighter gains the weapon mastery class feature, which grants master proficiency with the simple and martial weapons of one weapon group, expert proficiency with advanced weapons of that group and other simple and martial weapons, and trained proficiency in all other advanced weapons.","The bonuses you might apply to attack rolls can come from a variety of sources. Circumstance bonuses can come from the aid of an ally or a beneficial situation. Status bonuses are typically granted by spells and other magical aids. The item bonus to attack rolls comes from magic weapons—notably, a weapon's potency rune (page 580).","Penalties to attack rolls come from situations and effects as well. Circumstance penalties come from risky tactics or detrimental circumstances, status penalties come from spells and magic working against you, and item penalties occur when you use a shoddy item (page 273). When making attack rolls, two main types of untyped penalties are likely to apply. The first is the multiple attack penalty, and the second is the range penalty. The first applies anytime you make more than one attack action during the course of your turn, and the other applies only with ranged or thrown weapons. Both are described below.",{"type":"pf2-h4","page":446,"name":"Multiple Attack Penalty","entries":["The more attacks you make beyond your first in a single turn, the less accurate you become, represented by the multiple attack penalty. The second time you use an attack action during your turn, you take a –5 penalty to your attack roll. The third time you attack, and on any subsequent attacks, you take a –10 penalty to your attack roll. Every check that has the attack trait counts toward your multiple attack penalty, including Strikes, spell attack rolls, certain skill actions like Shove, and many others.","Some weapons and abilities reduce multiple attack penalties, such as agile weapons, which reduce these penalties to –4 on the second attack or –8 on further attacks.",{"type":"table","colStyles":["text-center","text-center","text-center"],"rows":[["Attack","Multiple Attack Penalty","Agile"],["First","None","None"],["Second","–5","–4"],["Third or subsequent","–10","–8"]]},"Always calculate your multiple attack penalty for the weapon you're using on that attack. For example, let's say you're wielding a longsword in one hand and a shortsword (which has the agile trait) in your other hand, and you are going to make three Strikes with these weapons during the course of your turn. The first Strike you make during your turn has no penalty, no matter what weapon you are using. The second Strike will take either a –5 penalty if you use the longsword or a –4 penalty if you use the shortsword.","Just like the second attack, the penalty for your third attack is based on which weapon you're using for that particular Strike. It would be a –10 penalty with the longsword and a –8 penalty with the shortsword, no matter what weapon you used for your previous Strikes.","The multiple attack penalty applies only during your turn, so you don't have to keep track of it if you can perform an Attack of Opportunity or a similar reaction that lets you make a Strike on someone else's turn.",{"type":"pf2-h4","page":446,"name":"Range Penalty","entries":["Ranged and thrown weapons each have a listed range increment, and attacks with them grow less accurate against targets farther away (range and range increments are covered in depth on page 279). As long as your target is at or within the listed range increment, also called the first range increment, you take no penalty to the attack roll. If you're attacking beyond that range increment, you take a –2 penalty for each additional increment beyond the first.","You can attempt to attack with a ranged weapon or thrown weapon up to six range increments away, but the farther away you are, the harder it is to hit your target.","For example, the range increment of a crossbow is 120 feet. If you are shooting at a target no farther away than that distance, you take no penalty due to range. If they're beyond 120 feet but no more than 240 feet away, you take a –2 penalty due to range. If they're beyond 240 feet but no more than 360 feet away, you take a –4 penalty due to range, and so on, until you reach the last range increment: beyond 600 feet but no more than 720 feet away, where you take a –10 penalty due to range."],"source":"CRB"},{"type":"pf2-h4","page":447,"name":"Armor Class","entries":["Attack rolls are compared to a special difficulty class called an {@b Armor Class} ({@b AC}), which measures how hard it is for your foes to hit you with Strikes and other attack actions. Just like for any other check and DC, the result of an attack roll must meet or exceed your AC to be successful, which allows your foe to deal damage to you.","Armor Class is calculated using the following formula.",{"type":"pf2-inset","entries":["Armor Class = 10 + Dexterity modifier (up to your armor's Dex Cap) + proficiency bonus + armor's item bonus to AC + other bonuses + penalties"]},"Use the proficiency bonus for the category (light, medium, or heavy) or the specific type of armor you're wearing. If you're not wearing armor, use your proficiency in unarmored defense.","Armor Class can benefit from bonuses with a variety of sources, much like attack rolls. Armor itself grants an item bonus, so other item bonuses usually won't apply to your AC, but magic armor can increase the item bonus granted by your armor.","Penalties to AC come from situations and effects in much the same way bonuses do. Circumstance penalties come from unfavorable situations, and status penalties come from effects that impede your abilities or from broken armor. You take an item penalty when you wear shoddy armor (page 273)."],"source":"CRB"}],"source":"CRB"}],"source":"CRB"},{"type":"pf2-brown-box","page":447,"name":"STRIDING AND STRIKING","entries":["Two of the simplest and most common actions you'll use in combat are Stride and Strike, described in full on page 471.","{@b {@action Stride}} is an action that has the move trait and that allows you to move a number of feet up to your Speed.","You'll often need to Stride multiple times to reach a foe who's far away or to run from danger! Move actions can often trigger reactions or free actions. However, unlike other actions, a move action can trigger reactions not only when you first use the action, but also for every 5 feet you move during that action, as described on page 474. The Step action (page 471) lets you move without triggering reactions, but only 5 feet.","{@b {@action Strike}} is an action that has the attack trait and that allows you to attack with a weapon you're wielding or an unarmed attack (such as a fist).","If you're using a melee weapon or unarmed attack, your target must be within your reach; if you're attacking with a ranged weapon, your target must be within range. Your reach is how far you can physically extend a part of your body to make an unarmed attack, or the farthest distance you can reach with a melee weapon. This is typically 5 feet, but special weapons and larger creatures have longer reaches. Your range is how far away you can attack with a ranged weapon or with some types of magical attacks.","Different weapons and magical attacks have different maximum ranges, and ranged weapons get less effective as you exceed their range increments.","Striking multiple times in a turn has diminishing returns. The multiple attack penalty (detailed on page 446) applies to each attack after the first, whether those attacks are Strikes, special attacks like the Grapple action of the {@skill Athletics} skill, or spell attack rolls."],"source":"CRB"},{"type":"pf2-h3","page":447,"name":"Spell Attack Rolls","entries":["If you cast spells, you might be able to make a spell attack roll. These rolls are usually made when a spell makes an attack against a creature's AC.","The ability modifier for a spell attack roll depends on how you gained access to your spells. If your class grants you spellcasting, use your key ability modifier. Innate spells use your Charisma modifier unless the ability that granted them states otherwise. Focus spells and other sources of spells specify which ability modifier you use for spell attack rolls in the ability that granted them. If you have spells from multiple sources or traditions, you might use different ability modifiers for spell attack rolls for these different sources of spells. For example, a dwarf cleric with the Stonewalker ancestry feat would use her Charisma modifier when casting {@spell meld into stone} from that feat, since it's a divine innate spell, but she would use her Wisdom modifier when casting {@spell heal} and other spells using her cleric divine spellcasting.","Determine the spell attack roll with the following formula.",{"type":"pf2-inset","entries":["Spell attack roll result = d20 roll + ability modifier used for spellcasting + proficiency bonus + other bonuses + penalties"]},"If you have the ability to cast spells, you'll have a proficiency rank for your spell attack rolls, so you'll always add a proficiency bonus. Like your ability modifier, this proficiency rank may vary from one spell to another if you have spells from multiple sources. Spell attack rolls can benefit from circumstance bonuses and status bonuses, though item bonuses to spell attack rolls are rare. Penalties affect spell attack rolls just like any other attack roll—including your multiple attack penalty.","Many times, instead of requiring you to make a spell attack roll, the spells you cast will require those within the area or targeted by the spell to attempt a saving throw against your {@b Spell DC} to determine how the spell affects them.","Your spell DC is calculated using the following formula.",{"type":"pf2-inset","entries":["Spell DC = 10 + ability modifier used for spellcasting + proficiency bonus + other bonuses + penalties"]}],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h3","page":448,"name":"Perception","entries":["Perception measures your ability to be aware of your environment. Every creature has Perception, which works with and is limited by a creature's senses (described on page 464). Whenever you need to attempt a check based on your awareness, you'll attempt a Perception check.","Your Perception uses your Wisdom modifier, so you'll use the following formula when attempting a Perception check.",{"type":"pf2-inset","entries":["Perception check result = d20 roll + Wisdom modifier + proficiency bonus + other bonuses + penalties"]},"Nearly all creatures are at least trained in Perception, so you will almost always add a proficiency bonus to your Perception modifier. You might add a circumstance bonus for advantageous situations or environments, and typically get status bonuses from spells or other magical effects. Items can also grant you a bonus to Perception, typically in a certain situation. For instance, a fine spyglass grants a +1 item bonus to Perception when attempting to see something a long distance away. Circumstance penalties to Perception occur when an environment or situation (such as fog) hampers your senses, while status penalties typically come from conditions, spells, and magic effects that foil the senses. You'll rarely encounter item penalties or untyped penalties for Perception.","Many abilities are compared to your {@b Perception DC} to determine whether they succeed. Your Perception DC is 10 + your total Perception modifier.",{"type":"pf2-h4","page":448,"name":"Perception for Initiative","entries":["Often, you'll roll a Perception check to determine your order in initiative. When you do this, instead of comparing the result against a DC, everyone in the encounter will compare their results. The creature with the highest result acts first, the creature with the second-highest result goes second, and so on. Sometimes you may be called on to roll a skill check for initiative instead, but you'll compare results just as if you had rolled Perception. The full rules for initiative are found in the rules for encounter mode on page 468."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":448,"name":"Saving Throws","entries":["There are three types of saving throws: Fortitude saves, Reflex saves, and Will saves. In all cases, saving throws measure your ability to shrug off harmful effects in the form of afflictions, damage, or conditions. You'll always add a proficiency bonus to each save. Your class might give a different proficiency to each save, but you'll be trained at minimum. Some circumstances and spells might give you circumstance or status bonuses to saves, and you might find {@item resilient} armor or other magic items that give an item bonus.","{@b Fortitude saving throws} allow you to reduce the effects of abilities and afflictions that can debilitate the body.","They use your Constitution modifier and are calculated as shown in the formula below.",{"type":"pf2-inset","entries":["Fortitude save result = d20 roll + Constitution modifier + proficiency bonus + other bonuses + penalties"]},"{@b Reflex saving throws} measure how well you can respond quickly to a situation and how gracefully you can avoid effects that have been thrown at you. They use your Dexterity modifier and are calculated as shown in the formula below.",{"type":"pf2-inset","entries":["Reflex save result = d20 roll + Dexterity modifier + proficiency bonus + other bonuses + penalties"]},"{@b Will saving throws} measure how well you can resist attacks to your mind and spirit. They use your Wisdom modifier and are calculated as shown in the formula below.",{"type":"pf2-inset","entries":["Will save result = d20 roll + Wisdom modifier + proficiency bonus + other bonuses + penalties"]},"Sometimes you'll need to know your DC for a given saving throw. The DC for a saving throw is 10 + the total modifier for that saving throw.","Most of the time, when you attempt a saving throw, you don't have to use your actions or your reaction. You don't even need to be able to act to attempt saving throws. However, in some special cases you might have to take an action to attempt a save. For instance, you can try to recover from the sickened condition by spending an action to attempt a Fortitude save.",{"type":"pf2-h4","page":449,"name":"Basic Saving Throws","entries":["Sometimes you will be called on to attempt a basic saving throw. This type of saving throw works just like any other saving throw—the \"basic\" part refers to the effects.","For a basic save, you'll attempt the check and determine whether you critically succeed, succeed, fail, or critically fail like you would any other saving throw. Then one of the following outcomes applies based on your degree of success—no matter what caused the saving throw.",{"type":"successDegree","entries":{"Critical Success":"You take no damage from the spell, hazard, or effect that caused you to attempt the save.","Success":"You take half the listed damage from the effect.","Failure":"You take the full damage listed from the effect.","Critical Failure":"You take double the listed damage from the effect."}}],"source":"CRB"}],"source":"CRB"},{"type":"pf2-brown-box","page":449,"name":"FORTUNE AND MISFORTUNE EFFECTS","entries":["Fortune and misfortune effects can alter how you roll your dice. These abilities might allow you to reroll a failed roll, force you to reroll a successful roll, allow you to roll twice and use the higher result, or force you to roll twice and use the lower result.","You can never have more than one fortune and more than one misfortune effect come into play on a single roll. For instance, if an effect lets you roll twice and use the higher roll, you can't then use Halfling Luck (a fortune effect) to reroll if you fail. If multiple fortune effects would apply, you have to pick which to use. If two misfortune effects apply, the GM decides which is worse and applies it.","If both a fortune effect and a misfortune effect would apply to the same roll, the two cancel each other out, and you roll normally."],"source":"CRB"},{"type":"pf2-h3","page":449,"name":"Skill Checks","entries":["Pathfinder has a variety of skills, from {@skill Athletics} to {@skill Medicine} to {@skill Occultism}. Each grants you a set of related actions that rely on you rolling a skill check. Each skill has a key ability score, based on the scope of the skill in question. For instance, {@skill Athletics} deals with feats of physical prowess, like swimming and jumping, so its key ability score is Strength. {@skill Medicine} deals with the ability to diagnose and treat wounds and ailments, so its key ability score is Wisdom. The key ability score for each skill is listed in Chapter 4: Skills. No matter which skill you're using, you calculate a check for it using the following formula.",{"type":"pf2-inset","entries":["Skill check result = d20 roll + modifier of the skill's key ability score + proficiency bonus + other bonuses + penalties"]},"You're unlikely to be trained in every skill. When using a skill in which you're untrained, your proficiency bonus is +0; otherwise, it equals your level plus 2 for trained, or higher once you become expert or better. The proficiency rank is specific to the skill you're using. Aid from another character or some other beneficial situation may grant you a circumstance bonus. A status bonus might come from a helpful spell or magical effect. Sometimes tools related to the skill grant you an item bonus to your skill checks. Conversely, unfavorable situations might give you a circumstance penalty to your skill check, while harmful spells, magic, or conditions might also impose a status penalty. Using shoddy or makeshift tools might cause you to take an item penalty. Sometimes a skill action can be an attack, and in these cases, the skill check might take a multiple attack penalty, as described on page 446.","When an ability calls for you to use the DC for a specific skill, you can calculate it by adding 10 + your total modifier for that skill."],"source":"CRB"},{"type":"pf2-h3","page":450,"name":"Notating Total Modifiers","entries":["When creating your character and adventuring you'll record the total modifier for various important checks on your character sheet. Since many bonuses and penalties are due to the immediate circumstances, spells, and other temporary magical effects, you typically won't apply them to your notations.","Item bonuses and penalties are often more persistent, so you will often want to record them ahead of time. For instance, if you are using a weapon with a {@item +1 weapon potency} rune, you'll want to add the +1 item bonus to your notation for your attack rolls with that weapon, since you will include that bonus every time you attack with that weapon. But if you have a fine spyglass, you wouldn't add its item bonus to your Perception check notation, since you gain that bonus only if you are using sight—and the spyglass!—to see long distances."],"source":"CRB"}],"data":{"quickref":4},"source":"CRB"}]},{"type":"entries","entries":[{"type":"section","page":503,"name":"Difficulty Classes","alias":["DCs"],"entries":[{"type":"pf2-h1-flavor","page":503,"entries":["{@i As the Game Master, it's up to you to set the difficulty classes (DCs) for checks that don't use a predefined DC. The following sections offer advice on how to set appropriate DCs and tweak them as needed to feel natural for your story. Picking a simple DC and using a level-based DC each work well in certain circumstances, and you can adjust both types of DC using the advice on adjusting difficulty.}"],"source":"CRB"},{"type":"pf2-h2","page":503,"name":"Simple DCs","entries":["Sometimes you need to quickly set a Difficulty Class. The easiest method is to select a simple DC from Table 10–4 by estimating which proficiency rank best matches the task (that rank is usually not required to succeed at the task).","If it's something pretty much anyone would have a decent chance at, use the untrained DC. If it would require a degree of training, use the DC listed for trained, expert, master, or legendary proficiency, as appropriate to the complexity of the task. For example, say a PC was trying to uncover the true history behind a fable. You determine this requires a check to Recall Knowledge, and that only someone with master proficiency in Folktale Lore would know the information, so you'd set the DC at 30—the simple master DC.","Simple DCs work well when you need a DC on the fly and there's no level associated with the task. They're most useful for skill checks. Because there isn't much gradation between the simple DCs, they don't work as well for hazards or combatants, where the PCs' lives are on the line; you're better off using level-based DCs for such challenges.",{"name":"Simple DCs","type":"data","tag":"table","source":"CRB","page":503}],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h2","page":503,"name":"Level-Based DCs","entries":["When you're determining a skill DC based on something that has a level, use Table 10–5 to set the DC. Find the level of the subject, and assign the corresponding DC. Since spells use a 1–10 scale, use the Spell Level column for them.","Use these DCs when a PC needs to Identify a Spell or {@action Recall Knowledge} about a creature, attempts to Earn Income by performing a task of a certain level, and so on. You can also use the level-based DCs for obstacles instead of assigning a simple DC. For example, you might determine that a wall in a high-level dungeon was constructed of smooth metal and is hard to climb. You could simply say only someone with master proficiency could climb it, and use the simple DC of 30. Or you might decide that the 15th-level villain who created the dungeon crafted the wall, and use the 15th-level DC of 34. Either approach is reasonable!","Note that PCs who invest in a skill become more likely to succeed at a DC of their level as they increase in level, and the listed DCs eventually become very easy for them.",{"type":"data","tag":"table","name":"DCs by Level","source":"CRB"}],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h2","page":503,"name":"Adjusting Difficulty","entries":["You might decide a DC should differ from the baseline, whether to account for PCs' areas of expertise or to represent the rarity of spells or items. A DC adjustment represents an essential difference in the difficulty of a task and applies to anyone attempting a specific check for it.","Adjustments happen most often with tasks whose DCs are based on their level. Adjustments use a scale of –10 to +10, from incredibly easy checks to incredibly hard ones, and are broken into increments of 2, 5, and 10.","You'll often apply the adjustments for uncommon, rare, or unique subjects.",{"type":"data","tag":"table","name":"DC Adjustments","source":"CRB"},"The adjustments' names don't translate to how hard a task actually is for a PC or group of PCs, and adjustments aren't meant to balance out or replace PCs' bonuses and penalties. PCs who invest in a skill will become better and better at that skill as they increase in level. For example, even the best 1st-level PC has grim odds against an incredibly hard 1st-level DC, with a huge chance of critical failure, but by 20th level, an optimized character with a modicum of magic or assistance can take down incredibly hard 20th-level DCs over half the time, critically failing only on a 1. At higher levels, many groups will find that the very hard DC is more like standard for them; keep that in mind if you need a check that presents a true challenge to a high level group.","You might use different DCs for a task based on the particular skill or statistic used for the check. Let's say your PCs encounter a magical tome about aberrant creatures. The tome is 4th-level and has the occult trait, so you set the DC of an {@skill Occultism} check to Identify the Magic to 19, based on Table 10–5. As noted in Identify Magic, other magic-related skills can typically be used at a higher DC, so you might decide the check is very hard for a character using {@skill Arcana} and set the DC at 24 for characters using that skill. If a character in your group had Aberration Lore, you might determine that it would be easy or very easy to use that skill and adjust the DC to 17 or 14. These adjustments aren't taking the place of characters' bonuses, modifiers, and penalties—they are due to the applicability of the skills being used.",{"type":"pf2-h3","page":504,"name":"Group Attempts","entries":["The DCs in this chapter give an individual character a strong and increasing chance of success if they have some proficiency. On occasion, though, you'll have a task that only one person in the group needs to succeed at, but that everyone can attempt. The number of dice being rolled means that there's a very high chance at least one of them will succeed. Most of the time, that's perfectly fine, but sometimes you'll want the task to be a challenge, with some uncertainty as to whether the party can succeed. In these cases, make the check very hard, or incredibly hard if you want it to be particularly difficult or at high levels.","At these DCs, most of the party will probably fail, but someone will probably still succeed, likely a character who has heavily invested in the given skill, as is expected for specialized characters."],"source":"CRB"}],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h2","page":504,"name":"Minimum Proficiency","entries":["Sometimes succeeding at a particular task requires a character to have a specific proficiency rank in addition to a success on the check. Locks and traps often require a certain proficiency rank to successfully use the Pick a Lock or Disable a Device actions of {@skill Thievery}. A character whose proficiency rank is lower than what's listed can attempt the check, but they can't succeed. You can apply similar minimum proficiencies to other tasks. You might decide, for example, that a particular arcane theorem requires training in {@skill Arcana} to understand. An untrained barbarian can't succeed at the check, but she can still attempt it if she wants—after all, she needs to have a chance to critically fail and get erroneous information!","For checks that require a minimum proficiency, keep the following guidelines in mind. A 2nd-level or lower task should almost never require expert proficiency, a 6th-level or lower task should almost never require master proficiency, and a 14th-level or lower task should almost never require legendary proficiency. If they did, no character of the appropriate level could succeed."],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h2","page":504,"name":"Specific Actions","entries":["Several parts of this book, most notably Chapter 4: Skills, state that you as the GM set the DCs for certain checks or determine other parameters. Here are guidelines for the most common tasks. Remember that all of these are guidelines, and you can adjust them as necessary to suit the situation.",{"type":"pf2-h3","page":504,"name":"Craft","entries":["When a character Crafts an item, use the item's level to determine the DC, applying the adjustments from Table 10–6 for the item's rarity if it's not common. You might also apply the easy DC adjustment for an item the crafter has made before. Repairing an item usually uses the DC of the item's level with no adjustments, though you might adjust the DC to be more difficult for an item of a higher level than the character can Craft."],"source":"CRB"},{"type":"pf2-h3","page":504,"name":"Earn Income","entries":["You set the task level when someone tries to Earn Income.","The highest-level task available is usually the same as the level of the settlement where the character is located. If you don't know the settlement's level, it's usually 0–1 for a village, 2–4 for a town, or 5–7 for a city. A PC might need to travel to a metropolis or capital to find tasks of levels 8-10, and to the largest cities in the world or another plane to routinely find tasks beyond that. Some locations might have higher-level tasks available based on the nature of the settlement. A major port might have higher-level tasks for Sailing Lore, a city with a vibrant arts scene might have higher-level tasks for {@skill Performance}, and so on. If someone is trying to use a particularly obscure skill, they might have trouble finding tasks of an ideal level, or any at all—no one in most settlements is clamoring for the expertise of someone with Troll Lore.","Once the PC has decided on a particular level of task from those available, use the DC for that level from Table 10–5. You might adjust the DC to be more difficult if there's inclement weather during an outdoor job, a rowdy audience for a performance, or the like."],"source":"CRB"},{"type":"pf2-h3","page":505,"name":"Gather Information","entries":["To set the DC to Gather Information, use a simple DC representing the availability of information about the subject. Adjust the DC upward if the PC Gathering Information seeks in-depth information. For example, if a character wants to Gather Information about a visiting caravan, you might decide that a common person wouldn't know much about it, but any merchant or guard would, so learning basic facts uses the simple DC for trained proficiency. A caravan leader's name is superficial, so discovering it might be DC 15 (the simple trained DC in Table 10–4). Learning the identity of the leader's employers, however, might be DC 20 if the employers are more obscure."],"source":"CRB"},{"type":"pf2-h3","page":505,"name":"Identify Magic or Learn a Spell","entries":["The DC to {@action Identify Magic} or {@action Learn a Spell} is usually the DC listed in Table 10–5 for the spell or item's level, adjusted for its rarity. A very strange item or phenomenon usually uses a higher DC adjustment. For a cursed item or certain illusory items, use an incredibly hard DC to increase the chance of misidentification."],"source":"CRB"},{"type":"pf2-h3","page":505,"name":"Recall Knowledge","entries":["On most topics, you can use simple DCs for checks to {@action Recall Knowledge}. For a check about a specific creature, trap, or other subject with a level, use a {@quickref level-based DCs||4|level-based dcs} (adjusting for rarity as needed). You might adjust the difficulty down, maybe even drastically, if the subject is especially notorious or famed. Knowing simple tales about an infamous dragon's exploits, for example, might be incredibly easy for the dragon's level, or even just a simple trained DC.",{"type":"pf2-h4","page":505,"name":"Alternative Skills","entries":["As noted in the action's description, a character might attempt to {@action Recall Knowledge} using a different skill than the ones listed as the default options. If the skill is highly applicable, like using {@skill Medicine} to identify a medicinal tonic, you probably don't need to adjust the DC. If its relevance is a stretch, adjust the DC upward as described in {@quickref Adjusting Difficulty||4|Adjusting Difficulty}."],"source":"CRB"},{"type":"pf2-h4","page":505,"name":"Additional Knowledge","entries":["Sometimes a character might want to follow up on a check to {@action Recall Knowledge}, rolling another check to discover more information. After a success, further uses of {@action Recall Knowledge} can yield more information, but you should adjust the difficulty to be higher for each attempt. Once a character has attempted an incredibly hard check or failed a check, further attempts are fruitless—the character has recalled everything they know about the subject."],"source":"CRB"},{"type":"pf2-h4","page":505,"name":"Creature Identification","entries":["A character who successfully identifies a creature learns one of its best-known attributes—such as a troll's regeneration (and the fact that it can be stopped by acid or fire) or a manticore's tail spikes. On a critical success, the character also learns something subtler, like a demon's weakness or the trigger for one of the creature's reactions.","The skill used to identify a creature usually depends on that creature's trait, as shown on Table 10–7, but you have leeway on which skills apply. For instance, hags are humanoids but have a strong connection to occult spells and live outside society, so you might allow a character to use {@skill Occultism} to identify them without any DC adjustment, while Society is harder. Lore skills can also be used to identify their specific creature. Using the applicable Lore usually has an easy or very easy DC (before adjusting for rarity).",{"type":"data","tag":"table","name":"Creature Identification Skills","source":"CRB"}],"source":"CRB"}],"source":"CRB"},{"type":"pf2-brown-box","page":506,"name":"DETERMINING THE SCOPE OF LORE","entries":["{@skill Lore} skills are one of the most specialized aspects of Pathfinder, but they require GM oversight, particularly in determining which {@skill Lore} subcategories are acceptable for characters to select. A {@skill Lore} subcategory represents a narrow focus, and thus it shouldn't replace all or even most of an entire skill, nor should it convey vast swaths of information. For example, a single {@skill Lore} subcategory doesn't cover all religions—that's covered by the {@skill Religion} skill—but a character could have a {@skill Lore} subcategory that covers a single deity. One {@skill Lore} subcategory won't cover an entire country or all of history, but it could cover a city, an ancient civilization, or one aspect of a modern country, like Taldan History {@skill Lore}. A single {@skill Lore} subcategory couldn't cover the entire multiverse, but it could cover a whole plane other than the Material Plane."],"source":"CRB"},{"type":"pf2-h3","page":506,"name":"Sense Direction","entries":["Pick the most appropriate simple DC when someone uses {@skill Survival} to Sense Direction. This is usually the trained DC in normal wilderness, expert in deep forest or underground, master in featureless or tricky locations, or legendary in weird or surreal environments on other planes."],"source":"CRB"},{"type":"pf2-h3","page":506,"name":"Social Skills","entries":["When a character uses {@skill Deception}, {@skill Diplomacy}, {@skill Intimidation}, or {@skill Performance} to influence or impress someone whose level or Will DC you don't know, estimate the level of the creature and use that DC. A commoner is usually level 0 or 1. Don't worry about being exact. It often makes sense to adjust the DC based on the target's attitude for {@skill Deception}, {@skill Diplomacy}, or {@skill Performance}, making the DC easy for a friendly creature, very easy for a helpful one, hard for an unfriendly one, or very hard for a hostile one. You might adjust the DC further or differently based on the PC's goal; for instance, the DC to Request something an indifferent NPC is fundamentally opposed to might be incredibly hard or impossible, and it might be easy to convince an unfriendly creature to do something it already wants to do."],"source":"CRB"},{"type":"pf2-h3","page":506,"name":"Subsist","entries":["A simple DC is usually sufficient for the Subsist action, with a trained DC for a typical situation. Use the disposition of the environment or city as a guide; an environment with scarce resources or a city with little tolerance for transience might require an expert or higher DC."],"source":"CRB"},{"type":"pf2-h3","page":506,"name":"Track","entries":["Often when a PC uses {@skill Survival} to Track, you can pick a simple DC and adjust it based on the circumstances. For example, an army is usually easy to track, so you could use the untrained DC of 10. If the army marched through mud, you could even adjust this down to DC 5. On the other hand, if the party pursues a cunning survivalist using Cover Tracks, you might use their {@skill Survival} DC as the DC to Track."],"source":"CRB"},{"type":"pf2-h3","page":506,"name":"Train an Animal","entries":["Train Animal (page 268) allows PCs to teach animals tricks. Use the level of the animal as the baseline; you can adjust the DC up if the trick is especially difficult, or down if the animal is especially domesticated, like a dog."],"source":"CRB"}],"source":"CRB"}],"data":{"quickref":5},"source":"CRB"},{"type":"section","source":"GMG","page":120,"name":"Drugs","entries":["Drugs offer short-term benefits with harmful side effects and long-term consequences. These short-term benefits, such as euphoria, draw many to drugs, but addiction keeps users hooked long after their first dose. A character can voluntarily fail their initial save against a drug, but for each dose they consume, they must attempt a saving throw against addiction, a disease that represents cravings and withdrawal. Addiction is unique to each drug, so a character can be affected by multiple instances of addiction at once.","Certain drugs alter how addiction works for that drug, adding the {@trait virulent} trait to the addiction, limiting the maximum stage a character can reach, or adding additional stages beyond those listed in the base affliction.",{"type":"data","tag":"disease","data":{"source":"GMG","page":120,"name":"Addiction","level":", level varies","type":"disease","entries":["Track the maximum stage you reach with each drug's addiction. This maximum stage is separate from your current addiction stage for the drug. The maximum stage can't be reduced, even if you fully remove the disease. When you take the drug, two things happen: you attempt a saving throw against addiction, and you suppress the effects of addiction for 1 day. Failing a save against addiction caused by taking the drug causes you to go to 1 stage higher than the maximum stage you had previously reached (2 stages higher on a critical failure). If you're currently suffering from addiction when you attempt a save from taking the drug, you can't improve your stage; if you succeed at the save, the stage remains the same as it was.","When you attempt your save against addiction each week, the stage you are currently at can't get worse—it can only stay the same or improve. The conditions from addiction can't be removed while you are affected by the addiction, and suppressing addiction by taking the drug only avoids the effects—it doesn't remove the disease.",{"type":"affliction","savingThrow":"Fortitude (DC equals that of the drug)","onset":"1 day","stages":[{"stage":1,"entry":"{@condition fatigued}","duration":"1 week"},{"stage":2,"entry":"{@condition fatigued} and {@condition sickened||sickened 1}","duration":"1 week"},{"stage":3,"entry":"{@condition fatigued}, {@condition drained||drained 1} and {@condition sickened||sickened 1}","duration":"1 week"},{"stage":4,"entry":"{@condition fatigued}, {@condition drained||drained 2}, {@condition sickened||sickened 2} and {@condition stupefied||stupefied 2}","duration":"1 week"}]}]}},{"type":"pf2-brown-box","source":"GMG","page":120,"name":"DRUGS IN YOUR GAME","entries":["Drugs are socially complex, and including them in your game has the potential to make some of your players uncomfortable—particularly players who have struggled with substance abuse themselves or seen friends and family members go through that struggle. As with any potentially difficult subject matter, you should discuss the role drugs play in your game with your players and ensure that all the players at the table are comfortable with the material; if they aren't, avoid the topic.","If you do include drugs in your game, consider the role they'll play. In some campaigns, drugs might simply be an element of flavor and a tool characters use to reach their goals; in others, the side effects and risk of addiction might be a terrible price to pay. The rules assume something of a middle path, where drugs are addictive substances that may provide a short-term benefit but have consequences. To make drugs more accessible in your game, remove some of the more severe stages of addiction. To make them more dangerous, add the {@trait virulent} trait to the addiction affliction, add more stages with increasingly severe effects, or increase the DC of the save against the addiction by 1 for every use of the drug, decreasing back to normal over time as they stop using the drug."]}],"data":{"quickref":5}},{"type":"section","page":512,"name":"Environment","entries":[{"type":"pf2-h1-flavor","page":512,"entries":["{@i Primarily used during exploration, environment rules bring the locales your party travels through to life. You'll often be able to use common sense to adjudicate how environments work, but you'll need special rules for environments that really stand out.}"],"source":"CRB"},"Each of the environments presented in this section uses the terrain rules (which are summarized on page 514 and appear in full beginning on page 475) in different ways, so be sure to familiarize yourself with those rules before reading this section. Some environments refer to the rules for climate (page 517) and natural disasters (beginning on page 517). Many places have the traits of multiple environments; a snow-covered mountain might use both the arctic and mountain environments, for example. For environmental features with effects based on how tall or deep they are, those effects vary further based on a creature's size. For instance, a shallow bog for a Medium creature might be a deep bog for smaller creatures, and a deep bog for a Medium creature could be only a shallow bog for a larger creature (and so insignificant for a truly massive creature that it isn't even {@quickref difficult terrain||3|terrain}).","Table 10–12 lists the features of various environments alphabetically for quick reference. The Proficiency DC Band entry indicates a range of appropriate simple DCs for that environmental feature, while also providing a rough estimate of the danger or complexity of the feature.",{"type":"data","tag":"table","name":"Enviromental Features","source":"CRB"},{"type":"pf2-h2","page":512,"name":"Environmental Damage","entries":["Some environmental features or natural disasters deal damage. Because the amount of damage can vary based on the specific circumstances, the rules for specific environments and natural disasters use damage categories to describe the damage, rather than exact numbers.","Use Table 10–11 below to determine damage from an environment or natural disaster. When deciding the exact damage amount, use your best judgment based on how extreme you deem the danger to be.",{"type":"data","tag":"table","name":"Enviromental Damage","source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":512,"name":"Aquatic","entries":["Aquatic environments are among the most challenging for PCs short of other worlds and unusual planes. PCs in an aquatic environment need a way to breathe (typically a {@spell water breathing} spell) and must usually {@action Swim} to move, though a PC who sinks to the bottom can walk awkwardly, using the rules for {@quickref greater difficult terrain||3|terrain}.","Characters in aquatic environments make frequent use of the {@quickref aquatic combat||3|aquatic combat} and {@quickref drowning and suffocation||3|drowning and suffocating} rules.",{"type":"pf2-h3","page":512,"name":"Currents and Flowing Water","entries":["Ocean currents, flowing rivers, and similar moving water are {@quickref difficult terrain||3|terrain} or {@quickref greater difficult terrain||3|terrain} (depending on the speed of the water) for a creature Swimming against the current. At the end of a creature's turn, it moves a certain distance depending on the current's speed. For instance, a 10-foot current moves a creature 10 feet in the current's direction at the end of that creature's turn."],"source":"CRB"},{"type":"pf2-h3","page":512,"name":"Visibility","entries":["It's much harder to see things at a distance underwater than it is on land, and it's particularly difficult if the water is murky or full of particles. In pure water, the maximum visual range is roughly 240 feet to see a small object, and in murky water, visibility can be reduced to only 10 feet or even less."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":512,"name":"Arctic","entries":["The main challenge in an arctic environment is the low temperature, but arctic environments also contain ice and snow. The disasters that most often strike in arctic environments are avalanches, blizzards, and floods.",{"type":"pf2-h3","page":512,"name":"Ice","entries":["Icy ground is both uneven ground and {@quickref difficult terrain||3|terrain}, as characters slip and slide due to poor traction."],"source":"CRB"},{"type":"pf2-h3","page":512,"name":"Snow","entries":["Depending on the depth of snow and its composition, most snowy ground is either {@quickref difficult terrain||3|terrain} or {@quickref greater difficult terrain||3|terrain}. In denser snow, characters can attempt to walk along the surface without breaking through, but some patches might be loose or soft enough that they're uneven ground."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":512,"name":"Desert","entries":["Desert encompasses sandy and rocky deserts as well as badlands. Though tundra is technically a desert, it's classified as arctic, as the climate is the primary challenge in such areas. Sandy deserts often have quicksand hazards (page 526) and sandstorms.",{"type":"pf2-h3","page":513,"name":"Rubble","entries":["Rocky deserts are strewn with rubble, which is {@quickref difficult terrain||3|terrain}. Rubble dense enough to be walked over rather than navigated through is uneven ground."],"source":"CRB"},{"type":"pf2-h3","page":513,"name":"Sand","entries":["Packed sand doesn't usually significantly impede a character's movement, but loose sand is either {@quickref difficult terrain||3|terrain} (if it's shallow) or uneven ground (if it's deep).","The wind in a desert often shifts sand into dunes, hills of loose sand with uneven ground facing the wind and steeper inclines away from the wind."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":513,"name":"Forest","entries":["These diverse environments include jungles and other wooded areas. They are sometimes struck by wildfires.",{"type":"pf2-h3","page":513,"name":"Canopies","entries":["Particularly dense forests, such as rain forests, have a canopy level above the ground. A creature trying to reach the canopy or travel along it must Climb. Swinging on vines and branches usually requires an {@skill Acrobatics} or {@skill Athletics} check. A canopy provides cover, and a thicker one can prevent creatures in the canopy from seeing those on the ground, and vice versa."],"source":"CRB"},{"type":"pf2-h3","page":513,"name":"Trees","entries":["While trees are omnipresent in a forest, they typically don't provide cover unless a character uses the Take Cover action. Only larger trees that take up an entire 5-foot square on the map (or more) are big enough to provide cover automatically."],"source":"CRB"},{"type":"pf2-h3","page":513,"name":"Undergrowth","entries":["Light undergrowth is {@quickref difficult terrain||3|terrain} that allows a character to Take Cover. Heavy undergrowth is {@quickref greater difficult terrain||3|terrain} that automatically provides cover. Some sorts of undergrowth, such as thorns, might also be hazardous terrain, and areas with plenty of twisting roots might be uneven ground."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":513,"name":"Mountain","entries":["Mountain environments also include hills, which share many aspects of mountains, though not their more extreme features. The most common disasters here are avalanches.",{"type":"pf2-h3","page":513,"name":"Chasms","entries":["Chasms are natural pits, typically at least 20 feet long and clearly visible (barring mundane or magical efforts to conceal them). The main danger posed by a chasm is that characters must Long Jump to get across. Alternatively, characters can take the safer but slower route of Climbing down the near side of the chasm and then ascending the far side to get across."],"source":"CRB"},{"type":"pf2-h3","page":513,"name":"Cliffs","entries":["Cliffs and rock walls require creatures to {@action Climb} to ascend or descend. Without extensive safety precautions, a critical failure can result in significant falling damage."],"source":"CRB"},{"type":"pf2-h3","page":513,"name":"Rubble","entries":["Mountains often have extremely rocky areas or shifting, gravelly scree that makes for {@quickref difficult terrain||3|terrain}. Especially deep or pervasive rubble is uneven ground."],"source":"CRB"},{"type":"pf2-h3","page":514,"name":"Slopes","entries":["Slopes vary from the gentle rises of normal terrain to {@quickref difficult terrain||3|terrain} and inclines, depending on the angle of elevation. Moving down a slope is typically normal terrain, but characters might need to Climb up particularly steep slopes."],"source":"CRB"},{"type":"pf2-h3","page":514,"name":"Undergrowth","entries":["Light undergrowth is common in mountains. It is {@quickref difficult terrain||3|terrain} and allows a character to Take Cover."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":514,"name":"Plains","entries":["The plains environment encompasses grasslands such as savannas and farmland. The most common disasters in plains are tornadoes and wildfires.",{"type":"pf2-h3","page":514,"name":"Hedges","entries":["Hedges are planted rows of bushes, shrubs, and trees.","Their iconic appearance in adventures consists of tall hedges grown into mazes. A typical hedge is 2 to 5 feet tall, takes up a row of squares, and provides cover. A character trying to push through a hedge faces {@quickref greater difficult terrain||3|terrain}; it's sometimes faster to Climb over."],"source":"CRB"},{"type":"pf2-h3","page":514,"name":"Undergrowth","entries":["Light undergrowth is {@quickref difficult terrain||3|terrain} that allows a character to Take Cover. Heavy undergrowth is {@quickref greater difficult terrain||3|terrain} that provides cover automatically.","Undergrowth in plains is usually light with a few scattered areas of heavy undergrowth, but fields of certain crops, like corn, are entirely heavy undergrowth."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":514,"name":"Swamp","entries":["Wetlands are the most common kind of swamp, but this category also includes drier marshes such as moors.","Swamps often contain quicksand hazards (page 526).","Despite their soggy nature, swamps aren't very likely to experience heavy flooding, since they act as natural sponges and absorb a great deal of water before they flood.",{"type":"pf2-h3","page":514,"name":"Bogs","entries":["Also called mires, bogs are watery areas that accumulate peat, are covered by shrubs and moss, and sometimes feature floating islands of vegetation covering deeper pools.","Shallow bogs are {@quickref difficult terrain||3|terrain} for a Medium creature, and deep bogs are {@quickref greater difficult terrain||3|terrain}. If a bog is deep enough that a creature can't reach the bottom, the creature has to Swim. Bogs are also acidic, so particularly extreme or magical bogs can be hazardous terrain."],"source":"CRB"},{"type":"pf2-h3","page":514,"name":"Undergrowth","entries":["Light undergrowth is {@quickref difficult terrain||3|terrain} that allows a character to Take Cover, while heavy undergrowth is {@quickref greater difficult terrain||3|terrain} that provides cover automatically.","Some sorts of undergrowth, such as thorns, are also hazardous terrain, and areas with plenty of twisting roots are uneven ground."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-brown-box","page":514,"name":"TERRAIN RULES","entries":["Environments make frequent use of the rules for {@quickref difficult terrain||3|terrain}, {@quickref greater difficult terrain||3|terrain}, and hazardous terrain, so those rules are summarized here.","{@b Difficult terrain} is any terrain that impedes movement, ranging from particularly rough or unstable surfaces to thick ground cover and countless other impediments. Moving into a square of {@quickref difficult terrain||3|terrain} (or moving 5 feet into or within an area of {@quickref difficult terrain||3|terrain}, if you're not using a grid) costs an extra 5 feet of movement. Moving into a square of {@b greater difficult terrain} instead costs 10 additional feet of movement. This additional cost is not increased when moving diagonally. Creatures can't normally Step into {@quickref difficult terrain||3|terrain}.","Any movement creatures make while jumping ignores terrain that the creature is jumping over. Some abilities (such as flight or being incorporeal) allow creatures to avoid the movement reduction from some types of {@quickref difficult terrain||3|terrain}. Certain other abilities let creatures ignore {@quickref difficult terrain||3|terrain} while traveling on foot; such an ability also allows a creature to move through {@quickref greater difficult terrain||3|terrain} using the movement cost for {@quickref difficult terrain||3|terrain}, but unless the ability specifies otherwise, these abilities don't let creatures ignore {@quickref greater difficult terrain||3|terrain}.","{@b Hazardous terrain} damages creatures whenever they move through it. For instance, an acid pool, a pit of burning embers, and a spike-filled passageway all constitute hazardous terrain. The amount and type of damage depend on the specific hazardous terrain."],"source":"CRB"},{"type":"pf2-h2","page":514,"name":"Urban","entries":["Urban environments include open city spaces as well as buildings. The building information in this section also applies to ruins and constructed dungeons. Depending on their construction and location, cities might be vulnerable to many sorts of disasters, especially fires and floods.",{"type":"pf2-h3","page":514,"name":"Crowds","entries":["Crowded thoroughfares and similar areas are {@quickref difficult terrain||3|terrain}, or {@quickref greater difficult terrain||3|terrain} if an area is truly packed with people. You might allow a character to get a crowd to part using {@skill Diplomacy}, {@skill Intimidation}, or {@skill Performance}.","A crowd exposed to an obvious danger, like a fire or a rampaging monster, attempts to move away from the danger as quickly as possible, but it is slowed by its own mass. A fleeing crowd typically moves at the Speed of an average member each round (usually 25 feet), potentially trampling or leaving behind slower-moving members of the crowd."],"data":{"quickrefIndex":true},"source":"CRB"},{"type":"pf2-h3","page":515,"name":"Doors","entries":["Opening an unlocked door requires an Interact action (or more than one for a particularly complicated or large door). Stuck doors must be Forced Open, and locked ones require a character to Pick the Lock or Force them Open."],"source":"CRB"},{"type":"pf2-h3","page":515,"name":"Floors","entries":["Wooden floors are easy to walk on, as are flagstone floors made of fitted stones. However, floors of worn flagstone often contain areas of uneven ground."],"source":"CRB"},{"type":"pf2-h3","page":515,"name":"Gates","entries":["Walled settlements often have gates that the city can close for defense or open to allow travel. A typical gate consists of one portcullis at each end of a gatehouse, with murder holes in between or other protected spots from which guards can attack foes."],"source":"CRB"},{"type":"pf2-h3","page":515,"name":"Guards","entries":["Most settlements of significant size have guards working in shifts to protect the settlement at all hours, patrolling the streets and guarding various posts. The size of this force varies from one guard for every 1,000 residents to a force 10 times this number."],"source":"CRB"},{"type":"pf2-h3","page":515,"name":"Portcullises","entries":["A portcullis is a wooden or iron grate that descends to seal off a gate or corridor. Most are raised on ropes or chains operated by a winch, and they have locking mechanisms that keep them from being lifted easily. The rules on lifting a portcullis or bending its bars appear in the sidebar on this page. If a portcullis falls on a creature, use a slamming door trap (page 523)."],"source":"CRB"},{"type":"pf2-brown-box","page":515,"name":"DOORS, GATES, AND WALLS","entries":["Some of the most common obstacles that characters face in urban areas and dungeons are doors, gates, and walls.",{"type":"pf2-title","name":"Climbing"},"The table below gives the typical DC for {@skill Athletics} checks to Climb a structure, which is usually a simple DC. You might adjust the difficulty based on the specifics of the structure and environment.",{"type":"pf2-title","name":"Demolishing"},"A character might want to smash their way through a door, a window, or certain walls. The Hardness, Hit Point, and Broken Threshold values provided in the table below are based on the material the structure is typically made out of, so a portcullis made of iron, for example, has a higher Hardness than one of wood. For more on damaging objects, see page 272.","Strong walls, such as well-maintained masonry or hewn stone, can't be broken without dedicated work and proper tools. Getting through such walls requires downtime.",{"type":"table","rowLabelIdx":[0,5,11],"colStyles":["text-center","text-center","text-center"],"rows":[["Door","Climb DC","Hardness, HP (BT)"],["Wood","20","10, 40 (20)"],["Stone","30","14, 56 (28)"],["Reinforced Wood","15","15, 60 (30)"],["Iron","30","18, 72 (36)"],["Wall","Climb DC","Hardness, HP (BT)"],["Crumbling masonry","15","10, 40 (20)"],["Wooden slats","15","10, 40 (20)"],["Masonry","20","14, 56 (28)"],["Hewn stone","30","14, 56 (28)"],["Iron","40","18, 72 (36)"],["Portcullis","Climb DC","Hardness, HP (BT)"],["Wood","10","10, 40 (20)"],["Iron","10","18, 72 (36)"]]},{"type":"pf2-title","name":"Forcing Open"},"Structures that can be opened—such as doors, gates, and windows—can be Forced Open using {@skill Athletics}. This is usually necessary only if they're locked or stuck. The DC to Force Open a structure uses the {@skill Thievery} DC of its lock but adjusts it to be very hard (increasing the DC by 5).","If there's no lock, use the following table; when lifting a portcullis, use the lock DC or the DC from the table, whichever is higher."],"source":"CRB"},{"type":"pf2-h3","page":515,"name":"Rooftops","entries":["Rooftops make for memorable ambushes, chase scenes, infiltrations, and running fights. Flat roofs are easy to move across, but they're rare in any settlement that receives significant snowfall, since heavy buildups of snow can collapse a roof. Angled roofs are uneven ground, or inclines if they're especially steep. The peak of an angled roof is a narrow surface.","Hurdling from roof to roof often requires a Long Jump, though some buildings are close enough to Leap between.","A High Jump might be necessary to reach a higher roof, or a Leap followed by Grabbing an Edge and Climbing up."],"source":"CRB"},{"type":"pf2-h3","page":515,"name":"Sewers","entries":["Sewers are generally 10 feet or more below street level and are equipped with ladders or other means to ascend and descend. Raised paths along the walls allow sewer workers access, while channels in the center carry the waste itself. Less sophisticated sewers, or sections those workers don't usually access, might require wading through diseaseridden waste. Sewers can be accessed through sewer grates, which usually require 2 or more Interact actions to open.",{"type":"pf2-h4","page":516,"name":"Sewer Gas","entries":["Sewer gas often contains pockets of highly flammable gas. A pocket of sewer gas exposed to a source of flame explodes, dealing moderate environmental fire damage to creatures in the area."],"source":"CRB"}],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":516,"name":"Stairs","entries":["Stairs are {@quickref difficult terrain||3|terrain} for characters moving up them, and shoddy stairs might also be uneven ground. Some temples and giant-built structures have enormous stairs that are {@quickref greater difficult terrain||3|terrain} both up and down, or might require Climbing every step."],"source":"CRB"},{"type":"pf2-h3","page":516,"name":"Streets","entries":["Most settlements have narrow and twisting streets that were largely established organically as the settlement grew. These roads are rarely more than 20 feet wide, with alleys as narrow as 5 feet. Streets are generally paved with cobblestones. If the cobblestones are in poor repair, they could be {@quickref difficult terrain||3|terrain} or uneven ground.","Particularly lawful or well-planned cities have major thoroughfares that allow wagons and merchants to reach marketplaces and other important areas in town. These need to be at least 25 feet wide to accommodate wagons moving in both directions, and they often have narrow sidewalks that allow pedestrians to avoid wagon traffic."],"source":"CRB"},{"type":"pf2-h3","page":516,"name":"Walls","entries":["Well-built structures have exterior walls of brick or stonemasonry. Smaller, lower-quality, or temporary structures might have wooden walls. Interior walls tend to be less sturdy; they could be made of wooden planks, or even simply of thick, opaque paper held in a wooden frame. An underground structure might have thick walls carved out of solid rock to prevent the weight of the ground above from collapsing the structure. Rules for climbing and breaking walls are in the sidebar on page 515."],"source":"CRB"},{"type":"pf2-h2","page":516,"name":"Underground","entries":["Underground environments consist of caves and natural underground areas. Artificial dungeons and ruins combine underground features with urban features like stairs and walls. Deep underground vaults have some of the same terrain features as mountains, such as chasms and cliffs.","The most common disasters underground are collapses.",{"type":"pf2-h3","page":516,"name":"Floors","entries":["Natural underground environments rarely have flat floors, instead featuring abrupt changes in elevation that result in {@quickref difficult terrain||3|terrain}, uneven ground, and inclines."],"source":"CRB"},{"type":"pf2-h3","page":516,"name":"Ledges","entries":["Ledges are narrow surfaces that overlook a lower area or provide the only means to move along the edge of a chasm. Moving across a narrow ledge requires using {@skill Acrobatics} to Balance."],"source":"CRB"},{"type":"pf2-h3","page":516,"name":"Rubble","entries":["Caverns can be covered in rubble, which is {@quickref difficult terrain||3|terrain}. Deep or pervasive rubble is also uneven ground."],"source":"CRB"},{"type":"pf2-h3","page":516,"name":"Stalagmites and Stalactites","entries":["Stalagmites are tapering columns that rise from the floor of a cave. Areas filled with stalagmites are {@quickref greater difficult terrain||3|terrain}, and especially large stalagmites have to be sidestepped or Climbed. Stalagmites can be sharp enough they can be used as hazardous terrain in some circumstances, as can stalactites (icicle-shaped formations that hang from the roof of a cave) if they're knocked loose from a ceiling or overhang."],"source":"CRB"},{"type":"pf2-h3","page":517,"name":"Walls","entries":["Natural cave walls are uneven, with nooks, crannies, and ledges. Since most caves are formed by water, cave walls are often damp, making them even more difficult to Climb."],"source":"CRB"},{"type":"pf2-brown-box","page":517,"name":"DUNGEONS","entries":["Dungeon environments, which include both ruins and contemporary buildings constructed in the wilderness, are a fairly common venue for adventures. As an environment, they combine urban features like doors and buildings (page 515) with features from an underground environment, and occasionally components from other environments. While underground dungeons are particularly common, you might also consider setting your adventure in a ruin reclaimed by the forest, with giant trees spreading their roots through the walls, or a ruin deep in a swamp, with bogs covering access to some of the ruin's hidden secrets."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":517,"name":"Climate","entries":["Weather is more than just set dressing to establish mood—it has mechanical effects you can combine with environmental components to create a more memorable encounter. Weather can impose circumstance penalties on certain checks, from –1 to –4 based on severity.",{"type":"pf2-h3","page":517,"name":"Fog","entries":["Fog imposes a circumstance penalty to visual {@skill Perception} checks, depending on the thickness; it causes creatures viewed through significant amounts of fog to be concealed; and it cuts off all visibility at half a mile or less—possibly much less. Conditions limiting visibility to about a mile are called mist, and those that do so to about 3 miles are called haze."],"source":"CRB"},{"type":"pf2-h3","page":517,"name":"Precipitation","entries":["Precipitation includes rain as well as colder snow, sleet, and hail. Wet precipitation douses flames, and frozen precipitation can create areas of snow or ice on the ground. Drizzle or light snowfall has little mechanical effect beyond limited visibility.",{"type":"pf2-h4","page":517,"name":"Visibility","entries":["Most forms of precipitation impose circumstance penalties on visual {@skill Perception} checks. Hail often is sparser but loud, instead penalizing auditory {@skill Perception} checks.","Especially heavy precipitation, such as a downpour of rain or heavy snow, might make creatures concealed if they're far away."],"source":"CRB"},{"type":"pf2-h4","page":517,"name":"Fatigue","entries":["Precipitation causes discomfort and fatigue. Anything heavier than drizzle or light snowfall reduces the time it takes for characters to become fatigued from overland travel to only 4 hours. Heavy precipitation can be dangerous in cold environments when characters go without protection. Soaked characters treat the temperature as one step colder (mild to severe, severe to extreme; see Temperature below)."],"source":"CRB"},{"type":"pf2-h4","page":517,"name":"Thunderstorms","entries":["High winds and heavy precipitation accompany many thunderstorms. There's also a very small chance that a character might be struck by lightning during a storm. A lightning strike usually deals moderate electricity damage, or major electricity damage in a severe thunderstorm."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":517,"name":"Temperature","entries":["Often, temperature doesn't impose enough of a mechanical effect to worry about beyond describing the clothing the characters need to wear to be comfortable.","Particularly hot and cold weather can make creatures fatigued more quickly during overland travel and can cause damage if harsh enough, as shown in Table 10–13 on page 518.","Appropriate cold-weather gear (such as the winter clothing) can negate the damage from severe cold or reduce the damage from extreme cold to that of particularly severe cold.",{"type":"data","tag":"table","name":"Temperature Effects","source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":517,"name":"Wind","entries":["Wind imposes a circumstance penalty on auditory {@skill Perception} checks depending on its strength. It also interferes with physical ranged attacks such as arrows, imposing a circumstance penalty to attack rolls involving such weapons, and potentially making attacks with them impossible in powerful windstorms. Wind snuffs out handheld flames; lanterns protect their flame from the wind, but particularly powerful winds can extinguish these as well.",{"type":"pf2-h4","page":517,"name":"Moving in Wind","entries":["Wind is difficult or {@quickref greater difficult terrain||3|terrain} when Flying.","Moving in wind of sufficient strength requires a Maneuver in Flight action, and fliers are blown away on a critical failure or if they don't succeed at a minimum of one such check each round.","Even on the ground, particularly strong winds might require a creature to succeed at an {@skill Athletics} check to move, knocking the creature back and prone on a critical failure. On such checks, Small creatures typically take a –1 circumstance penalty, and Tiny creatures typically take a –2 penalty."],"source":"CRB"}],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":518,"name":"Natural Disasters","entries":["Climate and environmental features can be a hindrance or long-term threat, but natural disasters represent acute danger, especially to those directly exposed to their fury.","The damage in the following sections uses the categories in {@table Environmental Damage||Table 10–11: Environmental Damage}.",{"type":"pf2-h3","page":518,"name":"Avalanches","entries":["Though the term avalanche specifically refers to a cascading flow of ice and snow down a mountain's slope, the same rules work for landslides, mudslides, and other similar disasters. Avalanches of wet snow usually travel up to 200 feet per round, though powdery snow can travel up to 10 times faster. Rockslides and mudslides are slower, sometimes even slow enough that a character might be able to outrun them.","An avalanche deals major or even massive bludgeoning damage to creatures and objects in its path. These victims are also buried under a significant mass. Creatures caught in an avalanche's path can attempt a Reflex save; if they succeed, they take only half the bludgeoning damage, and if they critically succeed, they also avoid being buried.",{"type":"pf2-h4","page":518,"name":"Burial","entries":["Buried creatures take minor bludgeoning damage each minute, and they potentially take minor cold damage if buried under an avalanche of snow. At the GM's discretion, creatures without a sufficient air pocket could also risk suffocation (page 478). A buried creature is restrained and usually can't free itself.","Allies or bystanders can attempt to dig out a buried creature. Each creature digging clears roughly a 5-footby- 5-foot square every 4 minutes with a successful {@skill Athletics} check (or every 2 minutes on a critical success).","Using shovels or other proper tools halves the time."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":518,"name":"Blizzards","entries":["Blizzards combine cold weather, heavy snow, and strong winds. They don't pose a single direct threat as other disasters do; instead, the combination of these factors all at once poses a substantial impediment to characters."],"source":"CRB"},{"type":"pf2-h3","page":518,"name":"Collapses","entries":["Collapses and cave-ins occur when caverns or buildings fall, dumping tons of rock or other material on those caught below or inside them. Creatures under the collapse take major or massive bludgeoning damage and become buried, just as with an avalanche. Fortunately, collapses don't spread unless they weaken the overall integrity of the area and lead to further collapses."],"source":"CRB"},{"type":"pf2-h3","page":518,"name":"Earthquakes","entries":["Earthquakes often cause other natural disasters in the form of avalanches, collapses, floods, and tsunamis, but they also present unique threats such as fissures, soil liquefaction, and tremors.",{"type":"pf2-h4","page":518,"name":"Fissures","entries":["Fissures and other ground ruptures can destabilize structures, but more directly they lead to creatures taking bludgeoning damage from falling into a fissure."],"source":"CRB"},{"type":"pf2-h4","page":518,"name":"Soil Liquefaction","entries":["Liquefaction occurs when granular particles shake to the point where they temporarily lose their solid form and act as liquids. When this happens to soil, it can cause creatures and even whole buildings to sink into the ground. You can use the {@spell earthquake} spell for more specific rules, though that spell represents only one particular kind of localized quake."],"source":"CRB"},{"type":"pf2-h4","page":518,"name":"Tremors","entries":["Tremors knock creatures prone, causing them to fall or careen into other objects, which can deal bludgeoning damage appropriate to the severity of the quake."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":518,"name":"Floods","entries":["Though more gradual floods can damage structures and drown creatures, flash floods are similar to avalanches, except with a liquid mass instead of a solid one. Instead of burying creatures, a flash flood carries creatures and even massive objects away, buffeting the creatures and potentially drowning them. The drowning rules appear on page 478.",{"type":"data","tag":"table","name":"Temperature Effects","source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":519,"name":"Sandstorms","entries":["Mild sandstorms and dust storms don't present much more danger than a windy rainstorm, but they can cause damage to a creature's lungs and spread diseases across long distances. Heavy sandstorms deal minor slashing damage each round to those exposed to the sand, force creatures to hold their breath to avoid suffocation, or both."],"source":"CRB"},{"type":"pf2-h3","page":519,"name":"Tornadoes","entries":["In a tornado's path, wind conditions impose severe circumstance penalties, but creatures that would normally be blown away are instead picked up in the tornado's funnel, where they take massive bludgeoning damage from flying debris as they rise through the cone until they are eventually expelled (taking bludgeoning damage from falling).","Tornadoes usually travel around 300 feet per round (roughly 30 miles per hour). They normally travel a few miles before dissipating. Some tornadoes are stationary or travel much faster."],"source":"CRB"},{"type":"pf2-h3","page":519,"name":"Tsunamis","entries":["Tsunamis present many of the same dangers as flash floods but are much larger and more destructive. Tsunami waves can reach 100 feet or more in height, wrecking buildings and creatures alike with massive bludgeoning damage from both the wave itself and debris pulled up along its path of destruction."],"source":"CRB"},{"type":"pf2-h3","page":519,"name":"Volcanic Eruptions","entries":["Volcanic eruptions can contain any combination of ash, lava bombs, lava flows, pyroclastic flows, and vents.",{"type":"pf2-h4","page":519,"name":"Ash","entries":["Ash from volcanic eruptions is hot enough to cause minor fire damage each minute. It limits visibility like a thick fog and can make air unbreathable, requiring characters to hold their breath or suffocate (page 478).","Ash clouds generate ash lightning strikes, which typically deal moderate electricity damage but are very unlikely to hit an individual creature. Ash buildup on the ground creates areas of uneven ground, {@quickref difficult terrain||3|terrain}, or {@quickref greater difficult terrain||3|terrain}, and ash in the atmosphere can block the sun for weeks or even months, leading to colder temperatures and longer winters."],"source":"CRB"},{"type":"pf2-h4","page":519,"name":"Lava Bombs","entries":["Pressure can launch lava into the air that falls as lava bombs: masses of lava that solidify as they fly and shatter on impact, dealing at least moderate bludgeoning damage and moderate fire damage."],"source":"CRB"},{"type":"pf2-h4","page":519,"name":"Lava Flows","entries":["Lava flows are an iconic volcanic threat; they usually move between 5 and 60 feet per round over normal ground, so characters can often outrun them. However, flows can move up to 300 feet per round in a steep volcanic tube or channel. Lava emanates heat that deals minor fire damage even before it comes into contact with creatures, and immersion in lava deals massive fire damage each round."],"source":"CRB"},{"type":"pf2-h4","page":519,"name":"Pyroclastic Flows","entries":["Mixes of hot gases and rock debris, pyroclastic flows spread much faster than lava, sometimes more than 4,000 feet per round. While cooler than the hottest lava, pyroclastic flows are capable of overwhelming entire settlements. They work like avalanches but deal half of their damage as fire damage."],"source":"CRB"},{"type":"pf2-h4","page":519,"name":"Vents","entries":["Steam vents shoot from the ground, dealing moderate fire damage or more in a wide column. Acidic and poisonous gases released from beneath the surface can create wide areas of hazardous terrain that deals at least minor acid or poison damage."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":519,"name":"Wildfires","entries":["Wildfires travel mainly along a front moving in a single direction. In a forest, the front can advance up to 70 feet per round (7 miles per hour). They can move up to twice as fast across plains due to a lack of shade and the relatively low humidity. Embers from the fire, carried by winds and rising hot air, can scatter, forming spot fires as far as 10 miles away from the main wildfire. Wildfires present three main threats: flames, heat, and smoke.",{"type":"pf2-h4","page":519,"name":"Flames","entries":["Flames are hazardous terrain, usually dealing moderate damage and potentially setting a character on fire, dealing moderate persistent fire damage. The flames from a small fire are often less dangerous than the advancing heat from the front of a large fire."],"source":"CRB"},{"type":"pf2-h4","page":519,"name":"Heat","entries":["Wildfires increase the temperature in advance of the front, reaching nearly 1,500° F at the fire's arrival, as hot as some lava. This begins as minor fire damage every round at a reasonable distance from the front and increases to massive fire damage for someone within the wildfire."],"source":"CRB"},{"type":"pf2-h4","page":519,"name":"Smoke","entries":["Wind can carry smoke far in front of the wildfire itself. Smoke imposes a circumstance penalty to visual {@skill Perception} checks, depending on the thickness. It causes creatures viewed through significant amounts of smoke to be concealed, and it cuts off all visibility at half a mile or less. Near or within the wildfire, the combination of smoke and heated air require characters to hold their breath or suffocate (page 478)."],"source":"CRB"}],"source":"CRB"}],"source":"CRB"}],"data":{"quickref":5},"source":"CRB"},{"type":"section","page":520,"name":"Hazards","entries":[{"type":"pf2-h1-flavor","page":520,"entries":["{@i Dungeons are rife with devious traps meant to protect the treasures within. These range from mechanical devices that shoot darts or drop heavy blocks to magic runes that explode into bursts of flame. In addition to traps, adventurers may stumble into other types of hazards, including naturally occurring environmental hazards, mysterious hauntings, and more.}"],"source":"CRB"},{"type":"pf2-h2","page":520,"name":"Detecting a Hazard","entries":["Every hazard has a trigger of some kind that sets its dangers in motion. For traps, this could be a mechanism like a trip wire or a pressure plate, while for an environmental hazard or haunt, the trigger may simply be proximity. When characters approach a hazard, they have a chance of finding the trigger area or mechanism before triggering the hazard. They automatically receive a check to detect hazards unless the hazards require a minimum proficiency rank to do so.","During exploration, determine whether the party detects a hazard when the PCs first enter the general area in which it appears. If the hazard doesn't list a minimum proficiency rank, roll a secret Perception check against the hazard's {@skill Stealth} DC for each PC. For hazards with a minimum proficiency rank, roll only if someone is actively searching (using the Search activity while exploring or the {@action Seek} action in an encounter), and only if they have the listed proficiency rank or higher. Anyone who succeeds becomes aware of the hazard, and you can describe what they notice.","Magical hazards that don't have a minimum proficiency rank can be found using {@spell detect magic}, but this spell doesn't provide enough information to understand or disable the hazard—it only reveals the hazard's presence.","Determining a magical hazard's properties thoroughly enough to disable it requires either the use of more powerful magic or a successful skill check, likely using {@action Identify Magic} or {@action Recall Knowledge}. Magical hazards with a minimum proficiency rank cannot be found with {@spell detect magic} at all."],"source":"CRB"},{"type":"pf2-h2","page":520,"name":"Triggering a Hazard","entries":["If the group fails to detect a hazard and the hazard's trigger is a standard part of traveling (such as stepping on a floor plate or moving through a magical sensor while walking), the hazard's reaction occurs. Hazards that would be triggered only when someone directly manipulates the environment—by opening a door, for example—use their reactions only if a PC explicitly takes that action.",{"type":"pf2-h3","page":520,"name":"Reaction or Free Action","entries":["Most hazards have reactions that occur when they're triggered. For simple hazards, the reaction is the entirety of the hazard's effect. For complex hazards, the reaction may also cause the hazard to roll initiative, either starting a combat encounter or joining one already in progress, and the hazard continues to pose a threat over multiple rounds. Some hazards have a triggered free action instead of a reaction; for instance, quicksand can suck down multiple creatures per round."],"source":"CRB"},{"type":"pf2-h3","page":520,"name":"Routine","entries":["A complex hazard usually follows a set of preprogrammed actions called a routine. Once triggered, the hazard first performs its initial reaction; then, if the PCs are not yet in encounter mode, they should roll initiative. (If they're already in encounter mode, their initiative remains the same.) The hazard might tell you to roll initiative for it—in this case, the hazard rolls initiative using its {@skill Stealth} modifier.","After this happens, the hazard follows its routine each round on its initiative. The number of actions a hazard can take each round, as well as what they can be used for, depend on the hazard."],"source":"CRB"},{"type":"pf2-brown-box","page":520,"name":"MONSTERS AND HAZARDS","entries":["The statistics for NPCs and monsters usually don't list their proficiency ranks. Most of the time, they don't need to deal with detecting or disabling hazards the way PCs do, so you don't need this information. However, if a PC resets a trap in a monster's path or plans to lure a monster into a hazard, you can improvise this information.","For Perception, a monster is usually an expert at 3rd or 4th level, a master at 8th or 9th level, and legendary at 16th or 17th level. If the monster has {@skill Thievery} listed in its skills, it has the highest proficiency possible for its level (trained at 1st, expert at 3rd, master at 7th, and legendary at 15th); otherwise, it's untrained. Of course, an individual monster might deviate from these guidelines, especially if it's mindless or not very perceptive."],"source":"CRB"},{"type":"pf2-h3","page":520,"name":"Resetting a Hazard","entries":["Some hazards can be reset, allowing them to be triggered again. This can occur automatically, as for quicksand, whose surface settles after 24 hours, or manually, like a hidden pit, whose trapdoor must be closed for the pit to become hidden again."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":521,"name":"Disabling a Hazard","entries":["The most versatile method for deactivating traps is the Disable a Device action of the {@skill Thievery} skill, though most mechanical traps can also simply be smashed, and magical traps can usually be counteracted. Environmental hazards often can be overcome with {@skill Nature} or {@skill Survival}, and haunts can often be overcome with {@skill Occultism} or {@skill Religion}. The specific skill and DC required to disable a hazard are listed in the hazard's stat block. Like using Disable a Device, using these skills to disable a trap is a 2-action activity with the same degrees of success, though the activity might have different traits determined by the GM. As with detecting a hazard, disabling a hazard might require a character to have a certain proficiency rank in the listed skill.","A character must first detect a hazard (or have it pointed out to them) to try to deactivate it. They can attempt to deactivate a hazard whether or not it has already been triggered, though some hazards no longer pose a danger once their reactions have occurred, especially if there is no way for them to be reset.","For most hazards, a successful check for the listed skill against the DC in the stat block disables the hazard without triggering it. Any other means of deactivating the hazard are included in the hazard's stat block, as are any additional steps required to properly deactivate it.","A critical failure on any roll to disable a hazard triggers it, including a critical failure on a roll to counteract a magic hazard.","Some hazards require multiple successful checks to deactivate, typically because they have a particularly complicated component or have several discrete portions. For hazards with a complex component, a critical success on a check to disable the hazard counts as two successes on a single component.",{"type":"pf2-h3","page":521,"name":"Damaging a Hazard","entries":["Rather than trying to carefully disable a hazard, a character might just smash it. Damaging a mechanical trap or another physical hazard works like damaging objects: the hazard reduces the damage it takes by its Hardness. In most cases, hitting the hazard also triggers it, as explained in Attacking a Hazard below. If a hazard's Hit Points are reduced to its Broken Threshold (BT) or lower, the hazard becomes broken and can't be activated, though it can still be repaired. If it's reduced to 0 HP, it's destroyed and can't be repaired. (See page 272 in Chapter 6 for more information on damaging objects.)","Hazards' AC, applicable saving throw modifiers, Hardness, HP, and BT are listed in their stat blocks. A hazard that doesn't list one of these statistics can't be affected by anything targeting that statistic. For example, a hazard that has HP but no BT can't be broken, but can still be destroyed. Hazards are immune to anything an object is immune to unless specifically noted otherwise, and they can't be targeted by anything that can't target objects. Some hazards may have additional immunities, as well as resistances or weaknesses.",{"type":"pf2-h4","page":521,"name":"Attacking a Hazard","entries":["If someone hits a hazard—especially if it's a mechanical trap—they usually trigger it, though you might determine otherwise in some cases. An attack that breaks the hazard might prevent it from triggering, depending on the circumstances. If the hazard has multiple parts, breaking one part might still trigger the trap. For example, if a trap has a trip wire in one location and launches an attack from another location, severing the trip wire could still trigger the attack. Destroying a trap in one blow almost never triggers it. These rules also apply to most damaging spells or other effects in addition to attacks."],"source":"CRB"},{"type":"pf2-h4","page":521,"name":"Repairing a Hazard","entries":["You might allow a character to repair a damaged hazard to restore its functionality. You determine the specifics of this, since it can vary by trap. The Repair action might be insufficient if fixing the trap requires gathering scattered components or the like. If the item has a Reset entry, the character needs to do whatever is listed there, in addition to repairing the damage."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":521,"name":"Counteracting a Magical Hazard","entries":["Some magical hazards can be counteracted using {@spell dispel magic} and the counteracting rules found on page 458. These hazards' spell levels and counteract DCs are listed in their stat block. Counteracting a hazard otherwise works like using a skill check to disable the hazard."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":521,"name":"Hazard Experience","entries":["Characters gain Experience Points for overcoming a hazard, whether they disable it, avoid it, or simply endure its attacks. If they trigger the same hazard later on, they don't gain XP for the hazard again. The XP values for hazards of different levels also appear on page 508, but are repeated here for convenience. The XP for a complex hazard is equal to the XP for a monster of the same level, and the XP for a simple hazard is one-fifth of that. Hazards of a lower level than the party's level –4 are trivial and award no XP.",{"type":"data","tag":"table","name":"Hazard XP","source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":522,"name":"Hazard Format","entries":["Hazards are presented in a stat block format similar to those used for monsters. A few notes regarding the format follow the sample stat block.",{"type":"data","tag":"generic","data":{"source":"CRB","page":522,"name":"Hazard Name","category":"Hazard","level":" [Level]","traits":["traits"],"sections":[[[{"name":"Stealth","entry":"This entry lists the {@skill Stealth} modifier for a complex\nhazard's initiative or the {@skill Stealth} DC to detect a simple\nhazard, followed by the minimum proficiency rank to detect\nthe hazard (if any) in parentheses. If {@spell detect magic} can be\nused to detect the hazard, this information is located here\nas well."}],[{"name":"Description","entry":"This explains what the hazard looks like and might\ninclude special rules."}]],[[{"name":"Disable","entry":"The DC of any skill checks required to disable the\nhazard are here; if the hazard can be counteracted, its spell\nlevel and counteract DC are listed in parentheses."}],[{"name":"AC","entry":"the hazard's AC"},{"name":"Saving Throws","entry":"the hazard's saves. Usually\nonly haunts are subject to Will saves."}],[{"name":"Hardness","entry":"the hazard's Hardness"},{"name":"HP","entry":"the hazard's Hit Points,\nwith its Broken Threshold in parentheses"},{"name":"Immunities","entry":"the\nhazard's immunities"},{"name":"Weaknesses","entry":"the hazard's weaknesses,\nif any"},{"name":"Resistances","entry":"the hazard's resistances, if any"}],[{"name":"Action Type","entry":"{@as r} or {@as f} This is the reaction or free action the\nhazard uses"},{"name":"Trigger","entry":"The trigger that sets off the hazard\nappears here"},{"name":"Effect","entry":"For a simple hazard, this effect is often\nall the hazard does. For a complex hazard, this might also\ncause the hazard to roll initiative.\nRoutine This section describes what a"}],[{"name":"Routine","entry":"This section describes what a complex hazard does on\neach of its turns during an encounter; the number in parentheses\nafter the word \"Routine\" indicates how many actions the hazard\ncan use each turn. Simple hazards don't have this entry."}],[{"name":"Action","entry":"Any action the hazard can use appears here. Typically,\nthis is a melee or ranged attack."}]],[[{"name":"Reset","entry":"If the hazard can be reset, that information is here."}]]]}},{"type":"pf2-h3","page":522,"name":"Level","entries":["The hazard's level indicates what level of party it's a good challenge for. If the hazard involves a toxin, curse, or other non-spell feature, that feature's level is the hazard's level."],"source":"CRB"},{"type":"pf2-h3","page":522,"name":"Traits","entries":["The most notable hazard traits are trap (constructed to harm intruders), environmental (natural hazards), and haunt (spectral phenomena). Traps have a trait to indicate whether they're magical or mechanical. Hazards that have initiative and a routine have the complex trait."],"source":"CRB"},{"type":"pf2-h3","page":522,"name":"Stealth or Stealth DC","entries":["Complex hazards list their {@skill Stealth} modifier, which they use for initiative, instead of their {@skill Stealth} DC. If you need the DC, it's equal to this modifier + 10."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":526,"name":"Hazards","entries":["{@note To view all Hazards, please view the {@filter Hazards page.|hazards||source=CRB}}",{"type":"pf2-brown-box","page":528,"name":"UPGRADED SUMMONING RUNES","entries":["You can make a summoning rune of nearly any level. It summons a creature of a level equal to the trap's level.","Use {@table DCs by Level||Table 10–5: DCs by Level} to determine the {@skill Thievery} DC and spell DC, using the trap's level and applying a {@table DC Adjustments||hard adjustment} (+2). The {@skill Stealth} modifier for the trap is equal to this number –10. Stronger summoning runes usually require expert proficiency or better in {@skill Perception} to find, and they might require a higher proficiency rank in {@skill Thievery} to disable."],"source":"CRB"}],"source":"CRB"}],"data":{"quickref":5},"source":"CRB"},{"type":"section","page":483,"name":"Planning a Campaign","entries":["A Pathfinder game is typically structured as a campaign—a serialized story that focuses on a single party of characters.","A campaign is subdivided into multiple adventures, smaller stories that involve exploration and interaction with nonplayer characters. A single adventure represents a complete story that might be connected to the larger arc of a campaign. Playing an adventure spans one or more game sessions—gatherings where the group plays a part of the adventure over the course of several hours.","A campaign provides the overall structure for your Pathfinder game. As you prepare for your campaign, you'll establish its scope and themes, which you'll then reinforce in the adventures and scenes that take place within it.",{"type":"pf2-brown-box","page":483,"name":"COLLABORATION DURING PLAY","entries":["As Game Master, you have the final say on how the world and rules function, and how nonplayer characters act. This rule's purpose is to make the game run smoothly, with one guiding hand ensuring consistency. It's not intended to make one player into a dictator over the rest of the group. Collaboration is vital to roleplaying games!","How you implement collaboration in a game depends on what your players are interested in. In some groups, players enjoy adding details to the world and to nonplayer characters. In others, players want to feel like the world is outside their control, and the only decisions they get to make are those made by their own characters. Both are fun and acceptable ways to play.","You are encouraged to collect input from your players before you start, asking what storytelling genres they'd like to emphasize, which areas of the world they want to play in, the types of enemies they'd like to face, or which published adventure they want to play. A good campaign includes some back-and-forth at the beginning as the players figure out what characters they want to play and you figure out what sort of adventure to run. The results can range from building an adventure entirely to fit the characters to choosing a specific published adventure, having the players make their characters, and then just adapting the beginning of that adventure so that all the player characters have a reason to be involved.","As you play, opportunities to collaborate will occur again and again. When players throw out suggestions or come up with specific theories about the events of the campaign, they're telling you what they'd like to see in the game. Try to find ways to incorporate their suggestions, but with enough of a twist that each still includes something unexpected."],"source":"CRB"},{"type":"pf2-h3","page":483,"name":"Campaign Length","entries":["The length of a campaign can range from a few sessions to many years. Two main factors determine campaign length: how much time you need to complete the story, and how much time players want to devote to the game.","A single session, or a \"one-shot,\" is great if your group is trying out Pathfinder or wants to play a specific short adventure. This requires a smaller time commitment but requires the GM to present the events of the game in a way that is immediately engaging, since there's less opportunity for the players to become invested in the story or setting.","If you want to play through a longer campaign, you'll need to add some story elements that speak directly to the characters in your game rather than just to the events of the adventure. In other words, the characters should have individual goals in addition to the group's overall goals.","You can estimate how long a campaign will take by looking at the amount of time you actually have to play, or the number of character levels you intend the characters to advance. It typically takes three to four sessions for a group to level up. Since you'll probably cancel sessions on occasion, playing once a week for a year results in roughly a 14-level campaign, playing every 2 weeks for a year gives you an 8-level campaign, and playing monthly allows for a 5-level campaign. If you play only once a month, you might consider holding longer sessions and using fast advancement (page 509).","It's entirely okay to have a campaign with an indefinite length. Many groups play through one adventure and then decide to take on another. If you run an indefinite campaign, however, avoid ongoing plots that you can't satisfactorily end if the campaign comes to a close after the next adventure. If you introduce an overwhelmingly powerful villain who's crucial to the story but can't be stopped until the player characters are 15th level, ending the campaign at 8th level will feel anticlimactic.","It pays to be conservative when estimating your campaign length and scope. It's always tempting to run a 20-level epic campaign with complex, interwoven plots, but such games can fall apart long before the end if your group can play only once a month and the players have other responsibilities.",{"type":"pf2-h4","name":"Expected Duration","entries":["Not every campaign ends at the same point. Some campaigns go all the way to 20th level, ending after the player characters attain the height of power and confront the greatest threats any mortal could face. Others end at a lower level, after the group takes down a major villain or solves a crucial problem. And still other campaigns end when players become unable to attend or decide its a good time to stop playing.","You should have an end point in mind when you start a campaign. Still, you have to be flexible, since you're telling the story alongside other players, and your initial expectations for the campaign may be proven incorrect. When you think you're heading toward a satisfying conclusion, it's useful to check in with the other players. You might say, \"I think we have about two sessions left. Does that work for everyone? Is there any unfinished business you want to take care of?\" This lets you gauge whether your assumptions match up with the rest of the group—and make any necessary adjustments."]}],"source":"CRB"},{"type":"pf2-h3","page":484,"name":"Themes","entries":["The themes you choose for your campaign are what distinguish it from other campaigns. They include the major dramatic questions of your story and the repeated use of certain environments or creatures, and they can also include embracing a genre beyond traditional high fantasy. The themes you choose for your campaign also suggest storyline elements you might use.","A storyline's themes usually relate to the backstories, motivations, and flaws of the player characters and villains. For example, if you've chosen revenge as one of the themes of your game, you might introduce a villain whose quest for revenge tears his life apart and causes tragic harm to those around him. If one of the player characters is a chaotic good believer in liberty and freedom, you might engage that character by pitting the group against slavers. Or, you might choose a theme of love, leading to nonplayer characters involved in doomed romances, seeking to regain lovers they have lost, or courting the player characters.","Using similar locations and related creatures helps you form connections between disparate adventures. The players feel like their characters are becoming experts negotiating with giants, navigating seaways, battling devils, exploring the planes, or dealing with whatever the recurring elements are. For example, you might have the players explore a frozen tundra early on, then later travel to an icy plane filled with more difficult challenges that can be overcome using knowledge they've previously developed. Likewise, hobgoblin soldiers may be tough enemies for your group at low levels, but as the PCs attain higher levels and the hobgoblins become mere minions of another creature, the players feel a sense of progression.","Pathfinder is a fantasy adventure game, but you can shift your campaign to include elements of other fictional genres. You might want to infuse your game a with a sense of horror, reduce the amount of magic and use slow advancement (page 509) to make it a tale of sword and sorcery, or turn magic into technology for a steampunk setting."],"source":"CRB"},{"type":"pf2-h3","page":485,"name":"A Welcoming Environment","entries":["The role of Game Master comes with the responsibility of ensuring you and the rest of the players have a rewarding, fun time during the game. Games can deal with difficult subjects and have stressful moments, but fundamentally Pathfinder is a leisure activity. It can remain so only if the players follow the social contract and respect one another.","Players with physical or mental disabilities might find themselves more challenged than abled players. Work with your players to ensure they have the resources and support they need. Additionally, be on the lookout for behavior that's inappropriate, whether intentional or inadvertent, and pay careful attention to players' body language during the game. If you notice a player becoming uncomfortable, you are empowered to pause the game, take it in a new direction, privately check in with your players during or after the session, or take any other action you think is appropriate.","If a player tells you they're uncomfortable with something in the game, whether it's content you've presented as the GM or another player's or PC's actions, listen carefully to that player and take steps to ensure they can once again have fun during your game. If you're preparing prewritten material and you find a character or a situation inappropriate, you are fully empowered to change any details as you see fit. You also have the authority (and responsibility) to ask players to change their behavior—or even leave the table—if what they're doing is unacceptable or makes others feel uncomfortable. It's never appropriate to make the person who is uncomfortable responsible for resolving a problem. It's okay if mistakes happen. What's important is how you respond and move forward.","Gaming is for everyone. Never let those acting in bad faith undermine your game or exclude other players. Your efforts are part of the long-term process of making games and game culture welcoming to all. Working together, we can build a community where players of all identities and experiences feel safe.",{"type":"pf2-brown-box","page":485,"name":"TOOLS FOR RESPONSIBLE PLAY","entries":["Consent and comfort are important topics for roleplaying games, and many designers have created techniques to help facilitate responsible play. Some methods you can use are lines and veils, developed by Ron Edwards, and the X-Card, developed by John Stavropoulos.","Lines and Veils The terms \"line\" and \"veil\" can give your table a common vocabulary for the concepts described in this section. A line is a hard limit to the actions players might take, such as \"We're drawing a line at torture.\" The group agrees not to cross a line and omits that content from the game.","A veil indicates something that shouldn't be described in detail. The scene fades to black for a veil, or the group moves on to discuss a different topic, though whatever the veil is drawn across still happens. For example, you might say, \"We'll draw a veil across the scene as those characters head into the bedroom.\" You might come up with some lines and veils in advance, but then find more as play continues.","The X-Card Draw an \"X\" on a card, and you've got an X-Card. Place it on the table at the start of the session and describe its use to the players: any player can silently reject content they find upsetting by tapping the X-Card; whoever's speaking then rewinds a bit and continues on, excising the objectionable content. As with setting the basic guidelines for your campaign, there are no questions asked, no judgment, and no argument when someone invokes the X-Card. You can, however, ask for clarification if you need it, such as \"How far back should I rewind this?\" Some groups instead make an X with their hands, say \"Let's X that out,\" or use some other method. Either way, follow up with the player privately, after the game, to see if the guidelines need to be revised.","You can find more details at {@b {@link tinyurl.com/x-card-rpg|https://tinyurl.com/x-card-rpg}}."],"source":"CRB"},{"type":"pf2-h4","page":486,"name":"Objectionable Content","entries":["Before a campaign begins, check in with your players—as a group or individually—to find out what types of content they want to allow in the game, and which topics they would prefer to avoid. Because the story unfolds in real time, it's essential that you discuss these topics before the game starts. These discussions are intended to keep players safe, and so it's not okay to ask why someone wants a type of content banned. If someone wants it banned, ban it—no questions asked.","It can help to start with a rating, like those used for movies or video games. Pathfinder games often include violence and cruelty. What's the limit on how graphically these concepts should be described? Can players swear at the table? Does anyone have phobias they don't want to appear in the game, such as spiders or body horror?","After you figure out the limits on objectionable content, you have four important tasks:",{"type":"list","items":["Clearly convey these limits to the other players.","Ensure you and the players abide by the boundaries.","Act immediately if someone becomes uncomfortable about content during a session, even if it wasn't already banned in a prior discussion. Once the issue is resolved, move on.","Resolve the issue if any player deliberately pushes these boundaries, tries to find loopholes, tries to renegotiate the limits, or belittles people for having a different tolerance to objectionable content."]}],"source":"CRB"},{"type":"pf2-h4","page":486,"name":"The Pathfinder Baseline","entries":["You might find that your players don't have much to say on the topic of objectionable content, and just assume that general societal mores will keep the most uncomfortable topics out of the game. That's not always enough, as that approach relies on shared assumptions that aren't always accurate. The following is a set of basic assumptions that works for many groups, which you can modify to fit your preferences and those of the other players.",{"type":"list","items":["Bloodshed, injuries, and even dismemberment might be described. However, excessive descriptions of gore and cruelty should be avoided.","Romantic and sexual relationships can happen in the game, but players should avoid being overly suggestive. Sex always happens \"off-screen.\" Because attempts at initiating a relationship between player characters can be uncomfortably similar to one player hitting on another, this should generally be avoided (and is entirely inappropriate when playing with strangers).","Avoid excessively gross or scatological descriptions."]},"The following acts should never be performed by player characters:",{"type":"list","items":["Torture","Rape, nonconsensual sexual contact, or sexual threats","Harm to children, including sexual abuse","Owning slaves or profiting from the slave trade","Reprehensible uses of mind-control magic"]},"Villains might engage in such acts, but they won't happen \"on-screen\" or won't be described in detail. Many groups choose to not have villains engage in these activities at all, keeping these reprehensible acts out of mind entirely."],"source":"CRB"},{"type":"pf2-h4","name":"Social Splash Damage","page":486,"entries":["As important as it is to take care of yourself and the other players in your game, be mindful of your group's impact on the other people around you. If you're playing in a space that's not your own, respect your hosts. If you're playing in public, consider the comfort of the people around you, not just what your group is comfortable with. It's easy to get caught up in a game, as we get sucked into the microcosm of an imagined world, but don't ignore the real world around you. Be aware when you're making too much noise, leaving a mess, alarming passersby with graphic descriptions of violence, or even just giving the cold shoulder to curious spectators witnessing RPG play for the first time."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":486,"name":"Character Creation","entries":["At the outset of a new campaign, the players will create new player characters. Part of that process involves you introducing what the campaign will be about and what types of characters are most appropriate. Work with the players to determine which rule options are available. The safest options are the common choices from the {@book Pathfinder Core Rulebook|CRB}. If players want to use common options from other books or uncommon or rare options, through play, review those options to see if any of them conflict with the style of campaign you have in mind or might present strange surprises down the road. It's usually best to allow new options, but there's no obligation to do so. Be as open as you're comfortable with."],"source":"CRB"}],"data":{"quickref":5},"source":"CRB"},{"type":"section","page":486,"name":"Preparing an Adventure","entries":["An adventure is a self-contained collection of story elements, characters, and settings that become the basis for the story you and the other players tell. Think of the adventure as an outline for your own story. You'll have major beats you want to include, some consistent characters, and themes you want to convey, but all sorts of things can change during the process of turning the outline into a completed story.","You might use a published adventure from Paizo or another company, or you might construct your own adventure as you prepare for your game sessions.",{"type":"pf2-h3","page":486,"name":"Published Adventures","entries":["Prewritten adventures include background information and nonplayer characters needed for the story, plus all the locations, maps, and monster groups necessary for both exploration and encounters. Prewritten adventures can speed up your preparation, since you can simply read the relevant sections of the adventure before a game, and you don't have to create everything from scratch. A published adventure already includes the expected amount of encounters and treasure, and you can find adventures built for different character levels to match your group. Reading a published adventure or running one as your first game can help you see how adventures are structured, which makes it easier to write one later if you choose.","Though a published adventure is prewritten, it's not set in stone. Changing the details of an adventure to suit your group isn't just acceptable, it's preferred! Use the backstories and predilections of the player characters to inform how you change the adventure. This can mean altering adversaries so they're linked to the player characters, changing the setting to a place some of the player characters are from, or excising particular scenes if you know they won't appeal to your players."],"source":"CRB"},{"type":"pf2-h3","page":487,"name":"Creating Adventures","entries":["Building your own adventure is much more challenging than using a published one, but it lets you express yourself, be even more creative, and tailor the game directly to the players and their characters. Later sections in this chapter include guidelines for building and running encounters, placing treasure, and setting appropriately difficult challenges, all to help you construct your own adventures.","Adventure plotting can start at many different points. You might begin with a particular antagonist, then construct an adventure that fits that villain's theme and leads the group to them. Alternatively, you could start with an interesting location for exploration, then populate it with adversaries and challenges appropriate to the setting.",{"type":"pf2-h4","page":487,"name":"Locations","entries":["Memorable settings that include mysterious and fantastical locations for players to visit can elicit the players' curiosity.","Exploring each location should be a treat in itself, not just a chore the players must complete to get from one fight to the next. As you create a locale, picture it in your mind's eye and write down minor details you can include as you narrate the game. Describing decorations, natural landmarks, wildlife, peculiar smells, and even temperature changes make a place feel more real.","Beyond monsters and loot, your locations can include environment-based challenges, from environmental conditions like blizzards to puzzles, traps, or other hazards.","These challenges should suit your adventure's location: walls of brambles in a castle ruin overrun with vegetation, pools of acid in a cursed swamp, or magical traps in the tomb of a paranoid wizard. Rules for environments appear on page 512, and those for hazards start on page 520."],"source":"CRB"},{"type":"pf2-h4","page":487,"name":"Encounters","entries":["A robust set of encounters forms the backbone of your adventure. Encounters often feature combat with other creatures, but they can also include hazards, or you might create social encounters in which characters duel only with words. The rules for building encounters appropriate to your group's level begin below.","Some adventures have a clear and direct progression, with encounters occurring at specific times or in a specific order. Others, such as a dungeon filled with interconnected rooms the group can investigate in any order, are nonlinear, and the group can face encounters in any order—or even avoid them entirely. Most adventures are somewhere in between, with some keystone encounters you know the characters will need to contend with, but others that are optional."],"source":"CRB"},{"type":"pf2-h4","page":487,"name":"Treasure","entries":["Your adventure should give out an amount of treasure that's appropriate to the characters' level. The guidelines for assigning treasure are on page 508. You can dole out treasure in all kinds of ways. Treasure could be items carried by an adversary, rewards from a patron for completing a mission, or a classic pile of coins and items inside a wooden chest guarded by a monster. It's best to spread treasure throughout an adventure rather than stockpiled in a single hoard. This gives the players incremental rewards, letting their characters advance in frequent small steps rather than giant leaps separated by many hours of play."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-brown-box","page":488,"name":"USING RARITY AND ACCESS","entries":["The rarity system has two purposes: to convey how common or rare certain spells, creatures, or items are in the game world, and to give you an easy tool to control the complexity of your game. Uncommon and rare options aren't more powerful than other options of their level, but they introduce complications for certain types of stories, or are less common in the world. For instance, it might be more challenging to run a mystery adventure when a player can cast an uncommon spell such as {@spell detect evil}.","At the start of the campaign, communicate your preferred expectations on rarity to the players. Unless you decide otherwise, the players can choose from any common options they qualify for, plus any uncommon options granted by their character choices—primarily their ancestry and class. By default, a character who tries hard enough might eventually find an uncommon option, whereas a rare option is always a special reward.","Beyond that baseline, you can grant access as freely as you want; some GMs open up all uncommon and rare options universally. If you're not sure, just look over any uncommon or rare elements before you include them as rewards or otherwise allow a player to acquire them.",{"type":"pf2-title","name":"Rewards"},"You can use uncommon and rare rules elements to reward characters. These still have the same value and approximate power as any other treasure of the same Price, but they're just a bit more special because they hail from distant lands or have unusual or surprising abilities.","Items are the most likely candidates for uncommon or rare rewards, but an NPC might teach an uncommon or rare spell to a PC in gratitude or to help the party prepare for a certain adversary. You can also improvise extra benefits based around uncommon or rare items. For instance, if a PC gains a rare plant with occult uses, you might also decide that the PC should temporarily get more money if they use it while Earning Income using Herbalism Lore, because it enables them to produce novel poultices.",{"type":"pf2-title","name":"Different Locations"},"The rarities in this book assume you're playing in the Inner Sea region of Golarion, where most Pathfinder games are set. These rarities are also suitable for most western medieval fantasy games. However, you might want to alter the rarities for a campaign set in another location on Golarion (detailed in Chapter 8), to emphasize a non-human culture, or to play in a fantasy setting with different roots, like a wuxia game based on Chinese culture. These changes most often affect basic items. If you start your campaign in a dwarven stronghold, for example, you might make all the weapons with the dwarf trait common. You should feel free to adjust rarities to suit your campaign's theme, but if you do, you should share your changes with your group."],"source":"CRB"},{"type":"pf2-h3","page":488,"name":"Building Encounters","entries":["The most common type of encounter is a combat encounter, where the PCs face other creatures. Combat encounters are strictly governed by rules; the guidelines that follow will help you build combat encounters that pose appropriate challenges for your group. Building hazard encounters works the same way. Social encounters are more free-form, and are up to you as the GM to design.","To build a combat encounter, first decide how the encounter fits in the adventure as a whole. Then, estimate how much of a threat you want the encounter to pose, using one of five categories below.","{@b Trivial-threat} encounters are so easy that the characters have essentially no chance of losing; they shouldn't even need to spend significant resources unless they are particularly wasteful. These encounters work best as warm-ups, palate cleansers, or reminders of how awesome the characters are. A trivial-threat encounter can still be fun to play, so don't ignore them just because of the lack of threat.","{@b Low-threat} encounters present a veneer of difficulty and typically use some of the party's resources. However, it would be rare or the result of very poor tactics for the entire party to be seriously threatened.","{@b Moderate-threat} encounters are a serious challenge to the characters, though unlikely to overpower them completely. Characters usually need to use sound tactics and manage their resources wisely to come out of a moderate-threat encounter ready to continue on and face a harder challenge without resting.","{@b Severe-threat} encounters are the hardest encounters most groups of characters can consistently defeat. These encounters are most appropriate for important moments in your story, such as confronting a final boss. Bad luck, poor tactics, or a lack of resources due to prior encounters can easily turn a severe-threat encounter against the characters, and a wise group keeps the option to disengage open.","{@b Extreme-threat} encounters are so dangerous that they are likely to be an even match for the characters, particularly if the characters are low on resources. This makes them too challenging for most uses. An extremethreat encounter might be appropriate for a fully rested group of characters that can go all-out, for the climactic encounter at the end of an entire campaign, or for a group of veteran players using advanced tactics and teamwork.",{"type":"pf2-h4","page":488,"name":"XP Budget","entries":["Once you've selected a threat level, it's time to build the encounter. You have an XP budget based on the threat, and each creature costs some of that budget. Start with the monsters or NPCs that are most important to the encounter, then decide how you want to use the rest of your XP budget. Many encounters won't match the XP budget exactly, but they should come close. The XP budget is based on a group of four characters. If your group is larger or smaller, see Different Party Sizes below."],"source":"CRB"},{"type":"pf2-h4","page":488,"name":"Choosing Creatures","entries":["In all but the most unusual circumstances, you'll select creatures for your encounter that range from 4 levels lower than the PCs' level to 4 levels higher (see {@table Creature XP and Role||Table 10–2: Creature XP and Role}). Each creature has a part to play in your encounter, from a lowly lackey to a boss so mighty it could defeat the entire party single-handedly.","Each creature costs some of the XP from your XP budget for the encounter, based on its level compared to the levels of the characters in your party. For instance, if the PCs are 5th level, a 2nd-level creature is a \"party level –3\" creature, a lackey appropriate for a lowto- moderate-threat encounter, and it costs 15 XP in an encounter's XP budget. Party level is explained in detail on page 508."],"source":"CRB"},{"type":"pf2-h4","page":488,"name":"Different Party Sizes","entries":["For each additional character in the party beyond the fourth, increase your XP budget by the amount shown in the Character Adjustment value for your encounter in {@table Encounter Budget||Table 10–1: Encounter Budget}. If you have fewer than four characters, use the same process in reverse: for each missing character, remove that amount of XP from your XP budget. Note that if you adjust your XP budget to account for party size, the XP awards for the encounter don't change—you'll always award the amount of XP listed for a group of four characters.","It's best to use the XP increase from more characters to add more enemies or hazards, and the XP decrease from fewer characters to subtract enemies and hazards, rather than making one enemy tougher or weaker. Encounters are typically more satisfying if the number of enemy creatures is fairly close to the number of player characters."],"source":"CRB"},{"type":"data","tag":"table","source":"CRB","name":"Encounter Budget"},{"type":"data","tag":"table","source":"CRB","name":"Creature XP and Role"}],"data":{"quickrefIndex":true},"source":"CRB"}],"data":{"quickref":5},"source":"CRB"},{"type":"section","page":507,"name":"Rewards","entries":[{"type":"pf2-h1-flavor","page":507,"entries":["{@i In Pathfinder, player characters can receive three kinds of rewards for their heroic deeds: Hero Points, which they can use to get out of sticky situations; Experience Points, which they'll use to level up; and treasure, including powerful magic items.}"],"source":"CRB"},{"type":"pf2-h2","page":507,"name":"Hero Points","entries":["Unlike Experience Points and treasure, which stay with a character, Hero Points are granted and used on a per-session basis. At the start of a game session, you give out 1 Hero Point to each player character. You can also give out more Hero Points during the game, typically after a heroic moment or accomplishment (see below). As noted on page 467, a player can spend 1 Hero Point for a reroll, or they can spend all their Hero Points to recover when near death.","In a typical game, you'll hand out about 1 Hero Point during each hour of play after the first (for example, 3 extra points in a 4-hour session). If you want a more overthetop game, or if your group is up against incredible odds and showing immense bravery, you might give them out at a faster rate, like 1 every 30 minutes (6 over a 4-hour session). Try to ensure each PC has opportunities to earn Hero Points, and avoid granting all of the Hero Points to a single character.","Brave last stands, protecting innocents, and using a smart strategy or spell to save the day could all earn a character a Hero Point. Look for those moments when everybody at the table celebrates or sits back in awe of a character's accomplishments; that's your cue to issue that character a Hero Point.","The party could also gain Hero Points for their accomplishments throughout the game. For a moderate or major accomplishment, consider giving out a Hero Point as well. This point typically goes to a PC who was instrumental in attaining that accomplishment."],"source":"CRB"},{"type":"pf2-h2","page":507,"name":"Experience Points","entries":["As characters adventure, they earn Experience Points (XP).","These awards come from achieving goals, completing social encounters, exploring new places, fighting monsters, overcoming hazards, and other sorts of deeds. You have a great deal of control over when the characters gain XP, though the following guidelines are what you're expected to give out in a standard campaign.","Normally, when a player character reaches 1,000 XP or more, they level up, reduce their XP by 1,000, and start progressing toward the next level. Other means of advancement are described in the Advancement Speeds sidebar on page 509.",{"type":"pf2-h3","page":507,"name":"XP Awards","entries":["Experience Points are awarded for encounters, exploration, and progress in an adventure. When the PCs face direct opposition, such as a fight or a social conflict, the XP earned is based on the level of the challenge the party overcame. Characters can also gain XP from exploration, such as finding secret areas, locating a hideout, enduring a dangerous environment, or mapping an entire dungeon.","Any XP awarded goes to all members of the group. For instance, if the party wins a battle worth 100 XP, they each get 100 XP, even if the party's rogue was off in a vault stealing treasure during the battle. But if the rogue collected a splendid and famous gemstone, which you've decided was a moderate accomplishment worth 30 XP, each member of the party gets 30 XP, too.",{"type":"pf2-h3","page":507,"name":"Adversaries and Hazards","entries":["Encounters with adversaries and hazards grant a set amount of XP. When the group overcomes an encounter with creatures or hazards, each character gains XP equal to the total XP of the creatures and hazards in the encounter (this excludes XP adjustments for different party sizes; see Party Size on page 508 for details).","Trivial encounters don't normally grant any XP, but you might decide to award the same XP as for a minor or moderate accomplishment for a trivial encounter that was important to the story, or for an encounter that became trivial because of the order in which the PCs encountered it in a nonlinear adventure."],"source":"CRB"},{"type":"pf2-h3","page":507,"name":"Accomplishments","entries":["Characters' actions that move the story forward—like securing a major alliance, establishing an organization, or causing an NPC to have a change of heart—are considered accomplishments and should be rewarded with XP. Their significance determines the size of the XP award. Determine whether the achievement was a minor, moderate, or major accomplishment, and refer to {@table XP Awards||Table 10–8: XP Awards} to award an appropriate amount of XP. Minor accomplishments include all sorts of significant, memorable, or surprising moments in the game. A moderate accomplishment typically represents a goal that takes most of a session to complete, and a major accomplishment is usually the culmination of the characters' efforts across many sessions. Moderate and major accomplishments usually come after heroic effort, so that's an ideal time to also give a Hero Point to one or more of the characters involved.","As mentioned earlier, it's up to you how much XP to give out for accomplishments. As a general guideline, in a given game session, you'll typically give several minor awards, one or two moderate awards, and only one major award, if any."],"source":"CRB"},{"type":"data","tag":"table","name":"XP Awards","source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":508,"name":"Party Size","entries":["The rules for advancement assume a group of four PCs. The rules for encounters (page 489) describe how to accommodate groups of a different size, but the XP awards don't change—always award the amount of XP listed for a group of four characters. You usually won't need to make many adjustments for a differently sized group outside of encounters. Be careful of providing too many ways to get accomplishment XP when you have a large group, though, since they can pursue multiple accomplishments at once, which can lead to the PCs leveling up too fast."],"source":"CRB"},{"type":"pf2-h3","page":508,"name":"Group Parity and Party Level","entries":["It's recommended that you keep all the player characters at the same XP total. This makes it much easier to know what challenges are suitable for your players. Having characters at different levels can mean weaker characters die more easily and their players feel less effective, which in turn makes the game less fun for those players.","If you choose not to keep the whole group at the same character level, you'll need to select a party level to determine your XP budget for encounters. Choose the level you think best represents the party's ability as a whole. Use the highest level if only one or two characters are behind, or an average if everyone is at a different level. If only one character is two or more levels ahead, use a party level suitable for the lower-level characters, and adjust the encounters as if there were one additional PC for every 2 levels the higher-level character has beyond the rest of the party.","Party members who are behind the party level gain double the XP other characters do until they reach the party's level. When tracking individually, you'll need to decide whether party members get XP for missed sessions."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":508,"name":"Treasure","entries":["As the GM, it's your job to distribute treasure to the player characters. Treasure appears throughout an adventure, and the PCs obtain it by raiding treasure hoards, defeating foes who carry valuable items or currency, getting paid for successful quests, and any other way you can imagine.","This section provides guidelines for distributing treasure in a typical Pathfinder campaign, but you always have the freedom to assign extra treasure for a high-powered game, less treasure for a gritty survival horror adventure, or any amount in between.",{"type":"pf2-h3","page":508,"name":"Treasure by Level","entries":["Table 10–9: Party Treasure by Level on the next page shows how much treasure you should give out over the course of a level for a group of four PCs. The Total Value column gives an approximate total value of all the treasure, in case you want to spend it like a budget. The next several columns provide suggestions for breaking down that total into permanent items, which the PCs keep and use for a long time; consumables, which are destroyed after being used once; and currency, which includes coins, gems, and other valuables primarily spent to acquire items or services. The final column gives the amount of currency to add for each PC beyond four in the group; use this only if you have more than four characters in the game. (Different Party Sizes on page 510 provides more guidance on this.) For instance, between the time your PCs reach 3rd level and the time they reach 4th level, you should give them the treasure listed in the table for 3rd level, worth approximately 500 gp: two 4th-level permanent items, two 3rd-level permanent items, two 4th-level consumables, two 3rd-level consumables, two 2nd-level consumables, and 120 gp worth of currency.","When assigning 1st-level permanent items, your best options are armor, weapons, and other gear from Chapter 6 worth between 10 and 20 gp. The treasure listed in the row for 20th level represents a full level's worth of adventures, even though there is no way to reach 21st level.","Some creature entries in the {@Pf2eTools Pathfinder Bestiary|bestiary.html} list treasure that can be gained by defeating an individual creature; this counts toward the treasure for any given level.","Published adventures include a suitable amount of treasure throughout the adventure, though you should still monitor the party's capabilities as the PCs progress through the adventure to make sure they don't end up behind.",{"type":"pf2-h4","page":509,"name":"Currency","entries":["A party will find money and other treasure that isn't useful on its own but that can be sold or spent on other things. The gp values in the Party Currency column don't refer only to coins. Gems, art objects, crafting materials (including precious materials), jewelry, and even items of much lower level than the party's level can all be more interesting than a pile of gold.","If you include a lower-level permanent item as part of a currency reward, count only half the item's Price toward the gp amount, assuming the party will sell the item or use it as crafting material. But lower-level consumables might still be useful, particularly scrolls, and if you think your party will use them, count those items at their full Price."],"source":"CRB"},{"type":"pf2-brown-box","page":509,"name":"ADVANCEMENT SPEEDS","entries":["By varying the amount of XP it takes to gain a level, you can change how quickly characters gain power. The game rules assume a group playing with standard advancement.","Fast advancement works best when you know you won't be playing a very long campaign and want to accomplish as much as possible quickly; slow advancement works best for a gritty campaign where all progress is hard won.","You can alter XP from one adventure to the next to get a different feel. During a street-level murder mystery and travel through a haunted wilderness, you might use slow advancement. When the PCs reach the dungeon, you might switch to standard or fast advancement. The values below are just examples. You can use values even higher or lower.",{"type":"table","colStyles":["text-center","text-center"],"rows":[["Advancement Speed","XP to Level Up"],["Fast","800 XP"],["Standad","1,000 XP"],["Slow","1,200 XP"]]},{"type":"pf2-title","name":"Story-Based Leveling"},"If you don't want to deal with managing and handing out XP, or if you want to have progression based solely on events in the story, you can ignore the XP process entirely and instead simply decide when the characters level up.","Generally, the characters should gain a level every three to four game sessions, just after the most appropriate big event that happens during that time, such as defeating a significant villain or achieving a major goal."],"source":"CRB"},{"type":"pf2-h4","page":509,"name":"Other Types of Treasure","entries":["Not all treasure has to be items or currency. Crafters can use the {@skill Crafting} skill to turn raw materials directly into items instead of buying those items with coins. Knowledge can expand a character's abilities, and formulas make good treasure for item-crafting characters. A spellcaster might get access to new spells from an enemy's spellbook or an ancient scholar, while a monk might retrain techniques with rarer ones learned from a master on a remote mountaintop."],"source":"CRB"},{"type":"pf2-h4","page":509,"name":"Treasure and Rarity","entries":["Giving out uncommon and rare items and formulas can get players more interested in treasure. It's best to introduce uncommon items as a reward fairly regularly but rare items only occasionally. These rewards are especially compelling when the adventurers get the item by defeating or outsmarting an enemy who carries an item that fits their backstory or theme.","Uncommon and rare formulas make great treasure for a character who Crafts items. Note that if an uncommon or rare formula is broadly disseminated, it eventually becomes more common. This can take months or years, but the item might start showing up in shops all around the world."],"source":"CRB"},{"type":"data","tag":"table","name":"Party Treasure by Level","source":"CRB"},{"type":"pf2-h4","page":510,"name":"Different Item Levels","entries":["The levels listed for items on {@table Party Treasure by Level||Table 10–9: Party Treasure by Level} aren't set in stone. You can provide items of slightly higher or lower level as long as you take into account the value of the items you hand out. For instance, suppose you were considering giving a party of 11th-level PCs a {@item runestone} with a {@item fortification} rune (with a Price of 2,000 gp) as one of their 12th-level items, but you realize they've had trouble finding armor in their recent adventures, so you instead decide to give them a suit of 11th-level +2 resilient armor (1,400 gp) instead. Since the armor has a lower Price than the rune, you might also add a 9th-level {@item shadow} rune (650 gp) to make up the difference. The total isn't exactly the same, but that's all right.","However, if you wanted to place a 13th-level permanent item in a treasure hoard, you could remove two 11thlevel permanent items to make a roughly equivalent exchange. When you make an exchange upward like this, be cautious: not only might you introduce an item with effects that are disruptive at the party's current level of play, but you also might give an amazing item to one PC while other characters don't gain any new items at all!","If you're playing in a long-term campaign, you can spread out the treasure over time. A major milestone can give extra treasure at one level, followed by a tougher dungeon with fewer new items at the next level. Check back occasionally to see whether each PC's treasure is comparable to the amount they'd get if they created a new character at their current level, as described under Treasure for New Characters below. They should be a bit higher. but if there's a significant discrepancy, adjust the adventure's upcoming treasure rewards accordingly."],"source":"CRB"},{"type":"pf2-h4","page":510,"name":"Different Party Sizes","entries":["If a party has more than four characters, add the following for each additional character:",{"type":"list","items":["One permanent item of the party's level or 1 level higher","Two consumables, usually one of the party's level and one of 1 level higher","Currency equal to the value in the Currency per Additional PC column of Table 10–9"]},"If the party has fewer than four characters, you can subtract the same amount for each missing character, but since the game is inherently more challenging with a smaller group that can't cover all roles as efficiently, you might consider subtracting less treasure and allowing the extra gear help compensate for the smaller group size."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-brown-box","page":510,"name":"ADJUSTING TREASURE","entries":["The treasure you award to the party should be monitored and adjusted as you play. You might need to give out treasure you hadn't originally planned for, especially if the group bypasses part of an adventure. Keep an eye on the party's resources. If they're running out of consumables or money, or if they're having trouble in combat because their items aren't up to the task, you can make adjustments.","This is especially common in adventures that have little downtime or that take place far from civilization. If the group goes a long time without being able to purchase or Craft useful items, the PCs will be flush with coins and valuables but behind on useful equipment. In a situation like this, you can either place more useful treasure in the adventure or introduce NPCs who are willing to trade.",{"type":"pf2-title","name":"Megadungeons and Sandboxes"},"Some adventures have an expectation that the player characters explore where they want and find only what their skill, luck, and ingenuity afford. Two common examples of this type of adventure are the sprawling dungeon with multiple different sections and paths, often called a megadungeon, and free-form exploration, often called a sandbox and typically occurring in a wilderness.","If you want to build a free-form adventure like this where characters are likely to miss at least some of the treasure, increase the amount of treasure you place. Be aware, however, that a meticulous group can end up with more treasure than normal and will have advantages in later adventures.","For a simple guideline to these situations, increase the treasure as though there were one more PC in the party.","If the structure is especially loose, especially in sandbox adventures, you can increase this amount even further."],"source":"CRB"},{"type":"pf2-h3","page":510,"name":"Treasure for New Characters","entries":["When your new campaign starts at a higher level, a new player joins an existing group, or a current player's character dies and they need a new one, your campaign will have one or more PCs who don't start at 1st level. In these cases, refer to {@table Character Wealth||Table 10–10: Character Wealth} on the next page, which shows how many common permanent items of various levels the PC should have, in addition to currency. A single item on this table is always a baseline item. If the player wants armor or a weapon with property runes, they must buy the property runes separately, and for armor or a weapon made of a precious material, they must pay for the precious material separately as well.","These values are for a PC just starting out at the given level. If the PC is joining a party that has already made progress toward the next level, consider giving the new character an additional item of their current level. If your party has kept the treasure of dead or retired PCs and passed it on to new characters, you might need to give the new character less than the values on the table or reduce some of the treasure rewards of the next few adventures.",{"type":"pf2-h4","page":511,"name":"Item Selection","entries":["You should work with the new character's player to decide which items their character has. Allow the player to make suggestions, and if they know what items they want their character to have, respect their choices unless you believe those choices will have a negative impact on your game.","At your discretion, you can grant the player character uncommon or rare items that fit their backstory and concept, keeping in mind how many items of those rarities you have introduced into your game. The player can also spend currency on consumables or lower-level permanent items, keeping the rest as coinage. As usual, you determine which items the character can find for purchase.","A PC can voluntarily choose an item that has a lower level than any or all of the listed items, but they don't gain any more currency by doing so.","If you choose, you can allow the player to instead start with a lump sum of currency and buy whatever common items they want, with a maximum item level of 1 lower than the character's level. This has a lower total value than the normal allotment of permanent items and currency, since the player can select a higher ratio of high-level items."],"source":"CRB"},{"type":"data","tag":"table","name":"Character Wealth","source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":511,"name":"Buying and Selling Items","entries":["Characters can usually buy and sell items only during downtime. An item can typically be sold for only half its Price, though art objects, gems, and raw materials can be sold for their full Price (page 271)."],"source":"CRB"}],"source":"CRB"}],"data":{"quickref":5},"source":"CRB"},{"type":"section","page":493,"name":"Running Modes of Play","entries":[{"type":"pf2-h1-flavor","page":493,"entries":["{@i Pathfinder sessions are divided into three different modes of play: encounters, exploration, and downtime. Each mode represents different kinds of situations, with specific stakes and time scales, and characters can use different sorts of actions and reactions in each.}"],"source":"CRB"},"Encounters take place in real time or slower, and they involve direct engagement between players and enemies, potential allies, or each other. Combat and direct social interaction usually take place in encounter mode.","Exploration is the connective tissue of an adventure, and it is used whenever characters are exploring a place where there's danger or uncertainty, such as an unfamiliar city or a dungeon. In exploration mode, characters aren't in immediate peril, but they must still be on their toes. Exploration and encounters are collectively called adventuring.","When the party isn't adventuring, the characters are in downtime. This mode covers most of a normal person's life, such as mundane, day-to-day tasks and working toward long-term goals.",{"type":"pf2-h2","page":493,"name":"Encounters","entries":["Encounter mode is the most structured mode of play, and you'll mostly be following the rules presented in Chapter 9 to run this mode. Because you usually call for initiative during exploration before transitioning into an encounter, guidelines for initiative order appear on page 498 in the discussion of exploration mode. Rules for building combat encounters appear on page 488.","{@b Stakes:} Moderate to high. Encounters always have significant stakes, and they are played in a step-by-step time frame to reflect that.","{@b Time Scale:} Encounter mode is highly structured and proceeds in combat rounds for combat encounters, while other sorts of encounters can have rounds of any length. In combat, 1 minute consists of 10 rounds, where each combat round is 6 seconds long, but you might decide a verbal confrontation proceeds in minute-long or longer rounds to give each speaker enough time to make a solid point.","{@b Actions and Reactions:} In combat encounters, each participant's turn is broken into discrete actions, and participants can use reactions when their triggers occur.","Reactions can occur in social situations, though their triggers are usually more descriptive and less tactical.",{"type":"pf2-h3","page":493,"name":"Choosing Adversaries' Actions","entries":["Players often coordinate and plan to be as efficient as possible, but their adversaries might not. As the GM, you're roleplaying these foes, and you decide their tactics.","Most creatures have a basic grasp of simple tactics like flanking or focusing on a single target. But you should remember that they also react based on emotions and make mistakes—perhaps even more than the player characters do.","When selecting targets or choosing which abilities to use, rely on the adversaries' knowledge of the situation, not your own. You might know that the cleric has a high Will save modifier, but a monster might still try to use a fear ability on her. That doesn't mean you should play adversaries as complete fools; they can learn from their mistakes, make sound plans, and even research the player characters in advance.","Adversaries usually don't attack a character who's knocked out. Even if a creature knows a fallen character might come back into the fight, only the most vicious creatures focus on helpless foes rather than the more immediate threats around them.","Running adversaries is a mix of being true to the creature and doing what's best for the drama of the game. Think of your encounter like a fight scene in a movie or novel. If the fighter taunts a fire giant to draw its attention away from the fragile wizard, the tactically sound decision is for the giant to keep pummeling the wizard. But is that the best choice for the scene? Perhaps everyone will have more fun if the giant redirects its ire to the infuriating fighter."],"source":"CRB"},{"type":"pf2-h3","page":493,"name":"Bypassed Encounters","entries":["What happens if you've planned a fight or challenge and the PCs find a way to avoid it entirely? This could leave them behind in XP or cause them to miss important information or treasure.","In the case of XP, the guidelines are simple: If the player characters avoided the challenge through smart tactical play, a savvy diplomatic exchange, clever use of magic, or another approach that required ingenuity and planning, award them the normal XP for the encounter.","If they did something that took only moderate effort or was a lucky break, like finding a secret passage and using it to avoid a fight, award them XP for a minor or moderate accomplishment. In an adventure that's more free-form, like a sprawling dungeon with multiple paths, there might be no reward for bypassing an encounter, because doing so was trivial.","You'll have to think on your feet if information or items get skipped when players bypass encounters. First, look for another reasonable place in the adventure to place the information or item. If it makes sense, move the original encounter to another part of the adventure and give the PCs a major advantage for bypassing the encounter in the first place."],"source":"CRB"},{"type":"pf2-brown-box","page":494,"name":"PLAYING WITHOUT A GRID","entries":["The Pathfinder rules are built to play combat encounters on a 1-inch grid, but you can play without a grid or map. In what's traditionally called the \"theater of the mind,\" you and other players imagine the locations of the combatants and the environment. In this style of play, you'll frequently need to make judgment calls. These are usually simple, like \"Can I see the ogre from where I'm standing?\" or \"Can I get to the ogre with one Stride?\" It's often best to have a player tell you what they want to do, such as \"I want to cross the beam to get to the ogre and attack it.\" Then, you tell the player how that breaks down into actions, like \"You'll need to spend one action and succeed at an {@skill Acrobatics} check, then Stride to get close enough, then you'll have one action left for a Strike.\"","When preparing encounters, avoid using lots of {@quickref difficult terrain||3|terrain}, cover, or other battlefield challenges that work better on a grid. Also, be more lenient with combat tactics like flanking. You won't have a way to measure flanking, but the rules expect melee characters like rogues to often get into a flanking position—often, two characters ganging up in melee is enough to count."],"source":"CRB"},{"type":"pf2-h3","page":494,"name":"Ending Encounters","entries":["A combat encounter typically ends when all the creatures on one side are killed or knocked unconscious. Once this happens, you can stop acting in initiative order.","The surviving side then has ample time to ensure that everyone taken out stays down. However, you might need to keep using combat rounds if any player characters are near death, clinging to a cliff, or in some other situation where every moment matters for their survival.","You can decide a fight is over if there's no challenge left, and the player characters are just cleaning up the last few weak enemies. However, avoid doing this if any of the players still have inventive and interesting things they want to try or spells they're concentrating on—ending an encounter early is a tool to avoid boredom, not to deny someone their fun. You can end a fight early in several ways: the foes can surrender, an adversary can die before its Hit Points actually run out, or you can simply say the battle's over and that the PCs easily dispatch their remaining foes. In this last case, you might ask, \"Is everyone okay if we call the fight?\" to make sure your players are on board.","One side might surrender when almost all its members are defeated or if spells or skills thoroughly demoralize them. Once there's a surrender, come out of initiative order and enter into a short negotiation.","These conversations are really about whether the winners will show mercy to the losers or just kill or otherwise get rid of them. The surrendering side usually doesn't have much leverage in these cases, so avoid long back-and-forth discussions.",{"type":"pf2-h3","page":494,"name":"Fleeing Enemies","entries":["Fleeing enemies can be a problem. Player characters often want to pursue foes that flee because they think an enemy might return as a threat later on. Avoid playing this out move by move, as it can easily bog down the game. If every adversary is fleeing, forgo initiative order and give each PC the option to pursue any one fleeing foe. Each PC can declare one action, spell, or other ability to use to try to keep up. Then, compare the PC's Speed to that of the target, assess how much the pursuer's chosen spell or ability would help, and factor in any abilities the quarry has that would aid escape. If you determine that the pursuer catches up, go back into combat with the original initiative order. If not, the quarry escapes for now.","If the PCs decide to flee, it's usually best to let them do so. Pick a particular location and allow them to escape once they all reach it. However, if they're encumbered or otherwise slowed down, or if enemies have higher Speeds and a strong motive to pursue, you might impose consequences upon PCs who flee."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":494,"name":"Social Encounters","entries":["Most conversations play best as free-form roleplaying, with maybe one or two checks for social skills involved.","Sometimes, though, a tense situation or crucial parlay requires a social encounter that uses initiative, much like a combat encounter. As with any other encounter, the stakes of a social encounter need to be high! A failed social encounter could mean a character is imprisoned or put to death, a major rival becomes a political powerhouse, or a key ally is disgraced and ostracized.","Using the structure of an encounter is {@condition helpful} because it makes the timing clearer than in free-form play, and each character feels like they're contributing. When running a social encounter, establish the stakes up front, so the players know the consequences of success or failure and the circumstances that will cause the encounter to end.","You have much more flexibility in how you run a social encounter than in a combat encounter. Extending the length of rounds beyond 6 seconds, allowing more improvisation, and focusing less on special attacks and spells all differentiate a social encounter from a combat one. In most cases, you don't need to worry about character's movements, nor do you need a map. Some examples of social encounters include:",{"type":"list","items":["Proving someone's innocence in front of a judge.","Convincing a neighboring monarch to help defend against an invasion.","Besting a rival bard in a battle of wits.","Exposing a villain's deception before a noble court."]},{"type":"pf2-h4","page":494,"name":"Initiative and Actions","entries":["Initiative in a social encounter typically has characters rolling {@skill Society} or a Charisma-based skill, such as {@skill Diplomacy} or {@skill Deception}. As with other encounters, a character's approach to the conflict determines which skill they'll roll. On a character's turn, they typically get to attempt one roll, usually by using a skill action. Let the player roleplay what their character says and does, then determine what they'll roll. Allow them to use any abilities or spells that might help them make their case, though keep in mind that when most people see the visual signs of a spell being cast, they think someone is using magic to try to influence or harm them, and they have a negative reaction.","Good social encounters include an opposition. This can be direct, such as a rival who argues against the characters' case, or passive, such as a mob that automatically becomes more unruly as each round passes. Give the opposition one or more positions in the initiative order so you can convey what it is doing. You can create game statistics for the opposition, especially if it's an individual, but in situations like that of the unruly mob, you might need nothing more than establish a set of increasingly difficult DCs."],"source":"CRB"},{"type":"pf2-h4","page":495,"name":"Measuring Success and Progress","entries":["You'll need to decide how to measure the characters' success in social encounters, because there's no AC to target or HP to whittle down. Chapter 4 includes guidance on setting DCs for social skill actions, often using a target's Will DC. If you need a DC for people who don't have stats, such as a crowd or an NPC for whom you haven't already generated statistics, use the guidelines on setting DCs, found on page 503. You can either pick a simple DC or use a level-based DC, estimating a level for the subject or how challenging it should be to sway them.","The attitude conditions—{@condition hostile}, {@condition unfriendly}, {@condition indifferent}, friendly, and helpful—provide a useful way to track the progress of a social encounter. Use these to represent the attitude of an authority, a crowd, a jury, or the like. A typical goal for a social encounter is to change the attitude of a person or group to helpful so they assist you, or calming a hostile group or person to defuse a situation. Try to give the players a clear idea of how much they've progressed as the encounter proceeds.","Another option is to track the number of successes or failures the characters accrue. For instance, you might need to trick four guards into leaving their posts, and count each successful attempt to Lie or Create a Diversion toward a total of four necessary successes. You can combine these two methods; if the PCs need a group of important nobles to vote their way, the goal of the encounter might be to ensure that a majority of the nobles have a better attitude toward the PCs than they have of a rival—all within a limited time frame."],"source":"CRB"},{"type":"pf2-h4","page":495,"name":"Consequences","entries":["When you set stakes at the start of a social encounter, give an idea of the consequences. Beyond whatever narrative benefits player characters might gain, a social encounter usually includes an XP award. Because these are encounters along the same lines as combat encounters, they grant a sizable amount of XP, typically that of a moderate accomplishment, or even a major accomplishment if the encounter was the culmination of long-term plans or a significant adversary got their comeuppance.","The outcome of a social encounter should direct the story of the game. Look for repercussions. Which NPCs might view the PCs more favorably now? Which might hold a grudge or formulate a new plan? A social encounter can seal the fate of an NPC and end their story, but this isn't true for player characters. Even if something looks truly dire for them, such as a death sentence, the social encounter isn't the end—there's still time for desperate heroics or a twist in the story."],"source":"CRB"}],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":496,"name":"Exploration","entries":["Exploration mode is intentionally less regimented than encounters. As a result, during exploration you'll be making judgment calls on just about everything that happens.","Fundamentally, exploration is all about rewarding the PCs for learning about their surroundings. To facilitate this, it's especially important to have and convey a clear mental picture of the group's surroundings. You'll be better able to keep track of where the players are and describe the sights, sounds, and other sensations of their adventuring locales. Encourage the players to have their characters truly explore, and reward their curiosity. The things they try to do in exploration mode show you what they're interested in and what they consider important.","As you play, you'll get a good feel for the aspects of exploration that intrigue certain players, and you can add more of those things to your adventures or emphasize these points in published adventures.","{@b Stakes:} Low to moderate. Exploration mode should be used when there's some amount of risk, but no immediate danger. The PCs might be in an environment where they're likely to face monsters or hazards, but they usually stay in exploration mode until they enter a fight or engage in some other direct interaction.","{@b Time Scale:} When the PCs are in exploration mode, time in the game world passes much faster than real-world time at the table, so it's rarely measured out to the second or the minute. You can speed up or slow down how quickly things are happening as needed. If it's important to know exactly how much time is passing, you can usually estimate time spent in exploration mode to 10-minute increments.","{@b Actions and Reactions:} Though exploration isn't broken into rounds, exploration activities assume the PCs are spending part of their time using actions, such as Seeking or Interacting. If they have specific actions they want to use, they should ask; you can decide whether the actions apply and whether to switch to encounter mode for greater detail. PCs can use any relevant reactions that come up during exploration mode.",{"type":"pf2-h3","page":496,"name":"Exploration Activities","entries":["In exploration mode, each player who wants to do something beyond just traveling chooses an exploration activity for their character. The most common activities are Avoid Notice, Detect Magic, Hustle, and Search, though there are many options available. While players usually hew close to these default activities, there's no need for them to memorize the exploration activities and use them exactly. Instead, allow each player to describe what their character is doing. Then, as the GM, you can determine which activity applies. This also means you determine how an activity works if the character's actions differ from those on the list.","The following sections discuss exploration activities that require adjudication from you beyond the guidelines for players detailed on pages 479–480 of Chapter 9.",{"type":"pf2-h4","page":496,"name":"Detect Magic","entries":["This activity doesn't enable characters to automatically find every single magical aura or object during travel. Hazards that require a minimum proficiency can't be found with {@spell detect magic}, nor can illusions of equal or higher level than the spell.","When characters find something magical using this activity, let them know and give them the option to stop and explore further or continue on. Stopping brings you into a more roleplay-heavy scene in which players can search through an area, assess different items, or otherwise try to figure out the source of the magic and what it does. Continuing on might cause the group to miss out on beneficial magic items or trigger a magic trap."],"source":"CRB"},{"type":"pf2-h4","page":496,"name":"Follow the Expert","entries":["A skilled character can help out less skilled allies who choose to {@action Follow the Expert}. This is a good way to help a character with a low {@skill Stealth} modifier sneak around, get a character with poor {@skill Athletics} up a steep cliff, and so on. Usually, a character who is {@action Following the Expert} can't perform other exploration activities or follow more than one person at a time."],"source":"CRB"},{"type":"pf2-h4","page":496,"name":"Investigate","entries":["As with {@action Searching} or {@action Detecting Magic}, the initial result of {@action Investigating} is usually enough to give the investigator a clue that leads into a more thorough examination, but it rarely gives all possible information. For instance, a character might note that the walls of a dungeon are covered with {@language Abyssal} writing, but they would need to stop to read the text or determine that it's written in blood."],"source":"CRB"},{"type":"pf2-h4","page":496,"name":"Search","entries":["With a successful Perception check while {@action Search||Searching}, a character notices the presence or absence of something unusual in the area, but it doesn't provide a comprehensive catalog of everything there. Instead, it gives a jumping-off point for closer inspection or an encounter. For instance, if an area has both a DC 30 secret door and a DC 25 trap, and a {@action Search||Searching} character got a 28 on their Perception check, you would tell the player that their character noticed a trap in the area, and you'd give a rough idea of the trap's location and nature. The party needs to examine the area more to learn specifics about the trap, and someone would need to Search again to get another chance to find the secret door.","If an area contains many objects or something that will take a while to search (such as a cabinet full of papers), {@action Search||Searching} would reveal the cabinet, but the PCs would have to examine it more thoroughly to check the papers. This usually requires the party to stop for a complete search.","You roll a secret Perception check for a {@action Search||Searching} character to detect any secrets they pass that's in a place that stands out (such as near a door or a turn in a corridor), but not one that's in a more inconspicuous place (like a random point in a long hallway) unless they are searching particularly slowly and meticulously."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-brown-box","page":498,"name":"EXPLORATION ACTIVITIES","entries":["The following exploration activities are fully detailed on pages 479–480 of Chapter 9. Many more appear within Chapter 4: Skills.",{"type":"list","items":["{@action Avoid Notice}","{@action Defend}","{@action Detect Magic}","{@action Follow the Expert}","{@action Hustle}","{@action Investigate}","{@action Repeat a Spell}","{@action Scout}","{@action Search}"]},{"type":"pf2-title","name":"Improvising New Activities"},"If a player wants to do something not covered by other rules, here are some guidelines. If the activity is similar to an action someone could use in an encounter, such as Avoid Notice, it usually consists of a single action repeated roughly 10 times per minute (such as using the Sneak action 10 times) or an alternation of actions that works out similarly (such as Search, which alternates Stride and Seek). An activity using a quicker pace, corresponding to roughly 20 actions per minute, might have limited use or cause fatigue, as would one requiring intense concentration.","You might find that a player wants to do something equivalent to spending 3 actions every 6 seconds, just like they would in combat. Characters can exert themselves to this extent in combat only because combat lasts such a short time—such exertion isn't sustainable over the longer time frame of exploration."],"source":"CRB"},{"type":"pf2-h3","page":497,"name":"Setting a Party Order","entries":["In exploration mode, it often matters which characters are in the front or back of the party formation. Let the players decide among themselves where in the group their characters are while exploring. This order can determine who gets attacked first when enemies or traps threaten from various directions. It's up to you to determine the specifics of who gets targeted based on the situation.","When you come out of exploration mode, the group usually remains in the same general formation. Decide the PCs' exact positions, with their input, if you're moving to a grid (as usually happens at the start of a combat encounter). If they come out of exploration mode on their own terms, they can move around as they see fit. For example, if they detect a trap and the rogue starts attempting to disarm it, the other characters can move to whatever locations they think are safe."],"source":"CRB"},{"type":"pf2-h3","page":497,"name":"Adverse Terrain and Weather","entries":["Exploration gets slower when the party faces dense jungles, deep snow, sandstorms, extreme heat, or similar difficult conditions. You decide how much these factors impact the characters' progress. The specific effects of certain types of terrain and weather are described starting on page 512.","{@quickref difficult terrain||3|terrain} such as thick undergrowth usually slows down progress. Unless it's important how far the group gets in a particular time frame, this can be covered with a quick description of chopping through the vines or trudging through a bog. If the characters are on a deadline, adjust their progress on {@table Travel Speed||Table 9–2: Travel Speed}, typically cutting it in half if almost all of the land is {@quickref difficult terrain||3|terrain} or to one-third for {@quickref greater difficult terrain||3|terrain}.","Hazardous terrain, such as the caldera of an active volcano, might physically harm the player characters. The group might have the option to travel directly through or go around by spending more time. You can transition into a more detailed scene while the characters move through hazardous terrain and attempt to mitigate the damage with spells or skill checks. If they endure hazardous terrain, consider giving the PCs a minor or moderate XP reward at the end of their exploration, with slightly more XP if they took smart precautions to avoid taking damage.","Dangerous crevasses, swampy bogs, quicksand, and similar dangers are environmental hazards, which are described beginning on page 512."],"source":"CRB"},{"type":"pf2-h3","page":498,"name":"Hazards","entries":["Exploration can get broken up by traps and other hazards (see Hazards on page 520). Simple hazards pose a threat to the PCs only once and can be dealt with in exploration mode. Complex hazards require jumping into encounter mode until the hazard is dealt with. Disabling a trap or overcoming a hazard usually takes place in encounter mode. PCs have a better chance to detect hazards while exploring if they're using the Search activity (and the Detect Magic activity, in the case of some magic traps)."],"source":"CRB"},{"type":"pf2-h3","page":498,"name":"Rolling Initiative","entries":["Transitioning from exploration to an encounter usually involves rolling for initiative. Call for initiative once a trap is triggered, as soon as two opposing groups come into contact, or when a creature on one side decides to take action against the other. For example:",{"type":"list","items":["A group of PCs are exploring a cavern. They enter a narrow passage patrolled by a group of kobold warriors. Now that the two groups are in the same area, it's time to roll initiative.","Amiri and a kobold champion agree to have a {@condition friendly} wrestling match. They square off on a patch of dirt, and you call for initiative using {@skill Athletics}.","Merisiel and Kyra are negotiating with the kobold king. Things aren't going well, so Merisiel decides to launch a surprise attack. As soon as she says this is her plan, you call for initiative.","Harsk and Ezren are trying to Balance across a narrow beam to reach an isolated kobold treasure trove. When they get halfway across, a red dragon who was hiding behind the mountain flies around to attack! As soon as the dragon makes its appearance, you call for an initiative roll."]},{"type":"pf2-h4","page":498,"name":"Initiative after Reactions","entries":["In some cases, a trap or a foe has a reaction that tells you to roll initiative. For instance, a complex trap that's triggered might make an attack with its reaction before the initiative order begins. In these cases, resolve all the results of the reaction before calling for initiative rolls."],"source":"CRB"},{"type":"pf2-h4","page":498,"name":"Choosing the Type of Roll","entries":["When choosing what type of roll to use for initiative, lean toward the most obvious choice. The most common roll is {@skill Perception}; this is what the kobolds would use in the first example, as would Kyra and the kobold king in the third example. The next most common skills to use are {@skill Stealth} (for sneaking up, like the dragon in the last example) and {@skill Deception} (for tricking opponents, like Merisiel in the third example). For social contests, it's common to use {@skill Deception}, {@skill Diplomacy}, {@skill Intimidation}, {@skill Performance}, or {@skill Society}.","If you're unsure what roll to call for, use {@skill Perception}. If a different type of roll could make sense for a character, you should usually offer the choice of that roll or {@skill Perception} and let the player decide. Don't do this if it's absolutely clear another kind of check matters more sense than {@skill Perception}, such as when the character is sneaking up on enemies and should definitely use {@skill Stealth}.","You can allow a player to make a case that they should use a different skill than {@skill Perception}, but only if they base it on something they've established beforehand. For example, if in the prelude to the attack, Merisiel's player had said, \"I'm going to dangle down off the chandelier to get the drop on them,\" you could let them use {@skill Acrobatics} for their initiative roll. If they just said, \"Hey, I want to attack these guys. Can I use {@skill Acrobatics}?\" without having established a reason beforehand, you probably shouldn't allow it."],"source":"CRB"},{"type":"pf2-h4","page":498,"name":"Character Placement","entries":["When calling for initiative for a combat encounter, you'll need to decide where the participants in the encounter go on the battle map. Use the party's order, described on page 497, as a base. You can move forward characters who are using {@skill Stealth} to get into position, putting them in a place they could reasonably have moved up to before having a chance to be detected. Consult with each player to make sure their position makes sense to both of you."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-brown-box","page":499,"name":"MONITORING SPELL DURATIONS","entries":["Spell durations are approximate values that codify the vagaries and eccentricities of magic into a convenient number. However, that doesn't mean you can set your watch by a spell with a 1-hour duration. This is one of the reasons the passage of time outside of encounters is in your hands and isn't as precise as encounter rounds.","If a question arises about whether a spell has expired, you make the call. You shouldn't be punitive, but you also shouldn't treat characters like they move with clockwork precision and perfect efficiency between encounters.","There are two times these durations matter most: when players try to fit multiple encounters within the duration of a spell, and when they want to use a spell before a fight and keep it in effect during the encounter.",{"type":"pf2-title","name":"Multiple Encounters"},"A 1-minute spell should last for multiple encounters only if the encounters happen in very close proximity (usually in two adjoining rooms) and if the PCs go directly from one fight to the next without leaving encounter mode. If they want to stop and heal, or if the party debates whether to go on, the process takes enough time that the spell runs out.","Be more generous with spells lasting 10 minutes or more. A 10-minute spell easily lasts for one encounter and could continue for another if the locations are close. A 1-hour spell usually lasts for several encounters.",{"type":"pf2-title","name":"Before a Fight"},"Casting advantageous spells before a fight (sometimes called \"pre-buffing\") gives the characters a big advantage, since they can spend more combat rounds on offensive actions instead of preparatory ones. If the players have the drop on their foes, you usually can let each character cast one spell or prepare in some similar way, then roll initiative.","Casting preparatory spells before combat becomes a problem when it feels rote and the players assume it will always work—that sort of planning can't hold up in every situation! In many cases, the act of casting spells gives away the party's presence. In cases where the PCs' preparations could give them away, you might roll for initiative before everyone can complete their preparations."],"source":"CRB"},{"type":"pf2-h3","page":499,"name":"Resting","entries":["Characters require 8 hours of sleep each day. Though resting typically happens at night, a group gains the same benefits for resting during the day. Either way, they can gain the benefits of resting only once every 24 hours. A character who rests for 8 hours recovers in the following ways:",{"type":"list","items":["The character regains Hit Points equal to their Constitution modifier (minimum 1) multiplied by their level. If they rest without any shelter or comfort, you might reduce this healing by half (to a minimum of 1 HP).","The character loses the {@condition fatigued} condition.","The character reduces the severity of the {@condition doomed} and {@condition drained} conditions by 1.","Most spellcasters need to rest before they regain their spells for the day."]},"A group in exploration mode can attempt to rest, but they aren't entirely safe from danger, and their rest might be interrupted. The 8 hours of rest do not need to be consecutive, however, and after an interruption, characters can go back to sleep.","Sleeping in armor results in poor rest and causes a character to wake up fatigued. If a character would have recovered from fatigue, sleeping in armor prevents it.","If a character goes more than 16 hours without going to sleep, they become fatigued.","Taking long-term rest for faster recovery is part of downtime and can't be done during exploration. See page 502 for these rules.",{"type":"pf2-h4","page":499,"name":"Resting","entries":["Adventuring parties usually put a few people on guard to watch out for danger while the others rest. Spending time on watch also interrupts sleep, so a night's schedule needs to account for everyone's time on guard duty. Table 10–3:","Watches and Rest on the next page indicates how long the group needs to set aside for rest, assuming everyone gets a rotating watch assignment of equal length.","If a surprise encounter would occur during rest, you can roll a die to randomly determine which character is on watch at the time. All characters roll initiative; sleeping characters typically roll Perception with a –4 status penalty for being unconscious. They don't automatically wake up when rolling initiative, but they might roll a Perception check to wake up at the start of their turn due to noise. If a savvy enemy waits for a particularly vulnerable character to take watch before attacking, the attack can happen on that character's watch automatically. However, you might have the ambusher attempt a {@skill Stealth} check against the Perception DCs of all characters to see if anyone noticed its approach.",{"type":"data","tag":"table","source":"CRB","name":"Watches and Rest"}],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":500,"name":"Daily Preperations","entries":["Just before setting out to explore, or after a night's rest, the PCs spend time to prepare for the adventuring day. This typically happens over the span of 30 minutes to an hour in the morning, but only after 8 full hours of rest. Daily preparations include the following.",{"type":"list","items":["Spellcasters who prepare spells choose which spells they'll have available that day.","Focus Points and other abilities that reset during daily preparations refresh. This includes abilities that can be used only a certain number of times per day.","Each character equips their gear. This includes donning their armor and strapping on their weapons.","Characters invest up to 10 worn magic items to gain their benefits for the day (page 531)."]}],"source":"CRB"},{"type":"pf2-h3","page":500,"name":"Starvation and Thirst","entries":["Typically characters eat and drink enough to survive comfortably. When they can't, they're fatigued until they do. After 1 day + a creature's Constitution modifier without water, it takes 1d4 damage each hour that can't be healed until it quenches its thirst. After the same amount of time without food, it takes 1 damage each day that can't be healed until it sates its hunger."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h2","page":500,"name":"Downtime","entries":["In downtime, you can sum up the important events of a whole day with just one roll. Use this mode when the characters return home or otherwise aren't adventuring.","Usually, downtime is a few minutes at the start of a session or a break between major chapters of an adventure. As with exploration, you might punctuate downtime with roleplaying or encounters when it's natural to do so.","This section describes ways to handle downtime and details several activities and considerations specific to downtime, such as cost of living, buying and selling goods, long-term rest, and retraining. Most other downtime activities are skill actions; a number of these common downtime activities and their associated skills are listed below. See the relevant skills in Chapter 4 for details.",{"type":"list","items":["{@action Craft} ({@skill Crafting})","{@action Earn Income} ({@skill Crafting}, {@skill Lore}, {@skill Performance})","{@action Treat Disease} ({@skill Medicine})","{@action Create Forgery} ({@skill Society})","{@action Subsist} ({@skill Society}, {@skill Survival})"]},"{@b Stakes:} None to low. Downtime is the counterpart to adventuring and covers low-risk activities.","{@b Time Scale:} Downtime can last days, weeks, months, or years in the game world in a few minutes of real time.","{@b Actions and Reactions:} If you need to use actions and reactions, switch to exploration or encounter mode.","A creature that can't act is unable to perform most downtime activities, but it can take long-term rest.",{"type":"pf2-h3","page":500,"name":"Playing out a Downtime Day","entries":["At the start of a given day of downtime, have all the players declare what their characters are trying to accomplish that day. You can then resolve one character's efforts at a time (or group some characters together, if they are cooperating on a single project). Some activities, such as Earning Income, require only a simple roll and some embellishment from you and the player. Other activities are more involved, incorporating encounters or exploration. You can call on the players to play out their downtime activities in any order, though it's often best to do the simplest ones first. Players who aren't part of a more involved activity might have time to take a break from the table while the more complex activities are played out.","Characters can undertake their daily preparations if they want, just as they would on a day of exploration. Ask players to establish a standard set of preparations, and you can assume the characters go through the same routine every day unless their players say otherwise.",{"type":"pf2-h4","page":500,"name":"Cooperation","entries":["Multiple characters can cooperate on the same downtime task. If it's a simple task that requires just one check, such as a party Subsisting as they await rescue on a desert island, one character rolls the necessary check while everyone else Aids that character. If it's a complex task, assume all of them are working on different parts of it at one time, so all their efforts count toward its completion. For example, a party might collaborate to build a theater, with one character drawing up architectural plans, one doing manual labor, and one talking to local politicians and guilds."],"source":"CRB"},{"type":"pf2-h4","page":500,"name":"Checks","entries":["Some downtime activities require rolls, typically skill checks. Because these rolls represent the culmination of a series of tasks over a long period, players can't use most abilities or spells that manipulate die rolls, such as activating a magic item to gain a bonus or casting a fortune spell to roll twice. Constant benefits still apply, though, so someone might invest a magic item that gives them a bonus without requiring activation. You might make specific exceptions to this rule. If something could apply constantly, or so often that it might as well be constant, it's more likely to be used for downtime checks."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":501,"name":"Longer Periods of Downtime","entries":["Running downtime during a long time off—like several weeks, months, or even years—can be more challenging.","However, it's also an opportunity for the characters to progress toward long-term plans rather than worrying about day-to-day activities. Because so much time is involved, characters don't roll a check for each day. Instead, they deal with a few special events, average out the rest of the downtime, and pay for their cost of living.",{"type":"pf2-h4","page":501,"name":"Events","entries":["After the characters state what they want to achieve in their downtime, select a few standout events for each of them—usually one event for a period of a week or a month, or four events for a year or longer. These events should be tailored to each character and their goals, and they can serve as hooks for adventures or plot development.","Though the following examples of downtime events all involve Earning Income, you can use them to spark ideas for other activities. A character using Perform to Earn Income could produce a commanding performance of a new play for visiting nobility. Someone using {@skill Crafting} might get a lucrative commission to craft a special item. A character with Lore might have to research a difficult problem that needs a quick response.","PCs who want to do things that don't correspond to a specific downtime activity should still experience downtime events; you just choose the relevant skill and DC. For example, if a character intends to build their own library to house their books on magic, you might decide setting the foundation and organizing the library once construction is finished are major events. The first could be a {@skill Crafting} check, and the second an {@skill Arcana} or Library Lore check."],"source":"CRB"},{"type":"pf2-h4","page":501,"name":"Average Progress","entries":["For long periods of downtime, you might not want to roll for every week, or even every month. Instead, set the level for one task using the lowest level the character can reliably find in the place where they spend their downtime (see Difficulty Classes on page 503 for more on setting task levels). If the character fails this check, you might allow them to try again after a week (or a month, if you're dealing with years of downtime). Don't allow them to roll again if they succeeded but want to try for a critical success, unless they do something in the story of the game that you think makes it reasonable to allow a new roll.","The events you include during a long stretch of downtime should typically feature higher-level tasks than the baseline. For instance, a character Earning Income with Sailing Lore for 4 months might work at a port doing 1st-level tasks most of the time, but have 1 week of 3rd-level tasks to account for busy periods. You'll normally have the player roll once for the time they spent at 1st-level tasks and once for the week of 3rd-level tasks."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-h3","page":502,"name":"Cost of Living","entries":["For short periods of downtime, characters are usually just passing through a settlement or spending a bit of time there. They can use the prices for inn stays and meals found on page 294. For long stretches of downtime, use the values on {@table Cost of Living||Table 6–16: Cost of Living} on the same page. Deduct these costs from a character's funds after they gain any money from their other downtime activities.","A character can live off the land instead, but each day they do, they typically use the Subsist activity (page 240) to the exclusion of any other downtime activity."],"source":"CRB"},{"type":"pf2-h3","page":502,"name":"Buying and Selling","entries":["After an adventure yields a windfall, the characters might have a number of items they want to sell. Likewise, when they're flush with currency, they might want to stock up on gear. It usually takes 1 day of downtime to sell off a few goods or shop around to buy a couple items. It can take longer to sell off a large number of goods, expensive items, or items that aren't in high demand.","This assumes the characters are at a settlement of decent size during their downtime. In some cases, they might spend time traveling for days to reach bigger cities.","As always, you have final say over what sort of shops and items are available.","An item can usually be purchased at its full Price and sold for half its Price. Supply and demand adjusts these numbers, but only occasionally."],"source":"CRB"},{"type":"pf2-h3","page":502,"name":"Long-Term Rest","entries":["Each full 24-hour period a character spends resting during downtime allows them to recover double what they would for an 8-hour rest (as listed on page 499). They must spend this time resting in a comfortable and secure location, typically in bed.","If they spend significantly longer in bed rest—usually from a few days to a week of downtime—they recover from all damage and most nonpermanent conditions. Characters affected by diseases, long-lasting poisons, or similar afflictions might need to continue attempting saves during downtime. Some curses, permanent injuries, and other situations that require magic or special care to remove don't end automatically during long-term rest."],"source":"CRB"},{"type":"pf2-h3","page":502,"name":"Retraining","entries":["The retraining rules on page 481 allow a player to change some character choices, but they rely on you to decide whether the retraining requires a teacher, how long it takes, if it has any associated costs, and if the ability can be retrained at all. It's reasonable for a character to retrain most choices, and you should allow them. Only choices that are truly intrinsic to the character, like a sorcerer's bloodline, should be off limits without extraordinary circumstances.","Try to make retraining into a story. Use NPCs the character already knows as teachers, have a character undertake intense research in a mysterious old library, or ground the retraining in the game's narrative by making it the consequence of something that happened to the character in a previous session.",{"type":"pf2-h4","page":502,"name":"Time","entries":["Retraining a feat or skill increase typically takes a week. Class features that require a choice can also be retrained but take longer: at least a month, and possibly more. Retraining might take even longer if it would be especially physically demanding or require travel, lengthy experimentation, or in-depth research, but usually you won't want to require more than a month for a feat or skill, or 4 months for a class feature.","A character might need to retrain several options at once. For instance, retraining a skill increase might mean they have skill feats they can no longer use, and so they'll need to retrain those as well. You can add all this retraining time together, then reduce the total a bit to represent the cohesive nature of the retraining."],"source":"CRB"},{"type":"pf2-h4","page":502,"name":"Instruction and Cost","entries":["The rules abstract the process of learning new things as you level up—you're learning on the job—but retraining suggests that the character works with a teacher or undergoes specific practice to retrain. If you want, you can entirely ignore this aspect of retraining, but it does give an opportunity to introduce (or reintroduce) NPCs and further the game's story. You can even have one player character mentor another, particularly when it comes to retraining skills.","Any costs to retraining should be pretty minor—about as much as a PC could gain by Earning Income over the same period of time. The costs are mostly there to make the training feel appropriate within the context of the story, not to consume significant amounts of the character's earnings. A teacher might volunteer to work without pay as a reward for something the character has already done, or simply ask for a favor in return."],"source":"CRB"},{"type":"pf2-h4","page":502,"name":"Disallowed Options","entries":["While some character options can't normally be retrained, you can invent ways for a character to retrain even these—special rituals, incredible quests, or the perfect tutor. For example, ability scores can't normally be retrained, as that can unbalance the game. But not all players necessarily want to exploit the system—maybe a player simply wants to swap an ability boost between two low stats. In situations like this, you could let them spend a few months working out or studying to reassign an ability boost."],"source":"CRB"}],"source":"CRB"}],"source":"CRB"}],"data":{"quickref":5},"source":"CRB"},{"type":"section","page":489,"name":"Running a Game Session","entries":["A campaign happens over a series of sessions. Each session is usually several hours long, with multiple encounters, some exploration, and possibly downtime. Your session can be compared to an episode of a TV show; it should include some twists, turns, and changes, and end leaving people excited about what comes next.",{"type":"pf2-h3","page":489,"name":"Planning a Session","entries":["One of the greatest challenges in gaming is scheduling a time for everyone to get together and play. Often, this responsibility falls on you as the GM, since you're the one who has to prepare your game between sessions. Many games have a set schedule, such as once per week, once every 2 weeks, or once per month. The less frequently your group meets, the better notes and recaps you'll need to keep everyone on the same page.","Plan a time for everybody will arrive, and also try to set a time when playing the game will begin. This can make it easier for everyone to finish chatting, catching up, and eating in a timely fashion so you can start playing the game. Having an end time in mind is also fairly important. A typical game session lasts about 4 hours, though some groups hold 2-hour sessions or play marathon games. Less than 2 hours usually isn't enough time to get much done in most Pathfinder campaigns. If your session will be longer than 2 hours, plan out some 15-minute breaks (in addition to bathroom and beverage breaks, which players can take as needed)."],"source":"CRB"},{"type":"pf2-h3","page":490,"name":"Starting a Session","entries":["Once everyone is ready, get everyone's attention and cover the following topics. These are in a rough order that you can change based on your group's style or a session's needs.",{"type":"list","items":["Recap what happened during the previous sessions.","Establish where the characters are at the beginning of this session. Have they been resting since their last challenge? Are they in a hallway, preparing to raid the next room of a dungeon? Tell players whether their characters had time to rest or recover since the last session.","Remind players that they each have 1 Hero Point at the start of the session ({@quickref here||4|rewards|1}).","Establish goals. The players should have an idea of what they want to do next. Reestablish any goals the group already had, then let the players weigh in on whether these goals still apply, and on whether there's anything else they hope to accomplish in this session.","Commence adventuring! Decide which mode of play you're going to start in, then lead off with a verbal prompt to get the action started. You might ask a question related to a particular character, have everyone immediately roll initiative as a monster attacks, or briefly describe the environment and sensations that surround the player characters, allowing them to react."]}],"source":"CRB"},{"type":"pf2-h3","page":490,"name":"Running a Session","entries":["During a session, you're in charge of keeping the game's action moving, managing the different modes of play, fielding questions, and making rules decisions. You'll also want to keep a rough eye on the time, so you can end when most convenient for the group.","You're the interface between the rules and the imagined world you and the other players share. They will ask you questions, and they'll act based on their own assumptions. It's up to you to establish what's true in the world, but you don't do this unilaterally. You're informed by the setting's backstory, your preparations, and the suggestions and assumptions the other players bring to the table. Keep in mind that until you announce something, your own plans are subject to change. For example, if you originally intended the owner of a tavern to be kindly and well-intentioned, but a player misreads her and invents an interesting conspiracy theory regarding her intentions that sounds fun, you might convert the tavern owner into an agent of evil after all.","You'll also determine when PCs and foes need to attempt checks, as well as the consequences of those rolls. This comes up most often outside of encounters, as encounters are more regimented about when checks happen and how they are resolved. In an encounter, a player can usually determine their own character's turn, with you chiming in only to say whether an attack hits or if something in the environment requires a character to attempt a check.",{"type":"pf2-h4","page":490,"name":"The Spotlight","entries":["As you run the game, keep track of who has the spotlight. It can be easy to keep attention on the most outgoing player or character, but you need to check in with all the players. If a player hasn't contributed in some time, stop and ask, \"What's your character doing at this point?\" If the player's not sure, add a detail or nonplayer character to the scene that the player might find interesting."],"source":"CRB"},{"type":"pf2-h4","page":490,"name":"Distractions and Interrupting","entries":["Maintaining the players' attention keeps a game moving and leads to memorable moments when everyone's in the same zone. Too many interruptions break the flow. This is fine in moderation. Distractions become a problem if they're too frequent, as they cause people to miss things and make misinformed decisions as the session becomes disconnected. Yet every game includes breaks—sometimes intentional, sometimes not—and digressions. Finding the right balance of diversions for your group is essential.","A game is a social gathering, so there's definitely a place for conversation that's not directly related to playing the game. These interruptions become a problem if they're too frequent, or if people are talking over others. If a player repeatedly interrupts you or other people or undercuts every crucial moment of the game with a joke, talk to them about limiting their comments to appropriate times. Often, all you need to do is hold up your hand or otherwise indicate that the player is talking out of turn to delay them until after you or another speaker finishes talking.","Phones and other mobile devices are another major source of distraction. Banning them entirely is often impractical—many players use apps to roll dice or manage their character sheets, or they need to answer texts from their partner, check in on a work project, or otherwise stay connected with people who rely on them. However, you can set ground rules against using a device for anything that's not time-sensitive or game-related, such as refreshing social media, checking the score of a hockey game, playing a mobile game, or answering a non-urgent text. You can relax these rules for players when their characters are \"offstage.\" If a player's character isn't in a scene, that might be a good time for the player to use a mobile device."],"source":"CRB"}],"source":"CRB"},{"type":"pf2-brown-box","page":491,"name":"OFF-SESSION GAMING","entries":["Session play with a full group isn't the only way to play Pathfinder. Finding opportunities to expand on the game outside of its regular schedule can keep your group engaged between sessions.","You can get together with a single player to run a mini-session for their character, covering a mission that's important to their story but doesn't concern the rest of the group. You and the players can work out what their characters do during solid stretches of downtime via e-mail or chat messages. You can also give players opportunities to collaborate on details of the story, like having a player design a heraldic symbol for the adventuring group or map out their home base. You might even decide to award a Hero Point at the next session to a player for events that happened outside a session.","Some events aren't suitable for handling outside of sessions. Any event that strongly affects a character whose player isn't present should be handled at the table when everyone can attend. It's also helpful to recap events that took place outside of the session for all characters so no one feels excluded or lost."],"source":"CRB"},{"type":"pf2-h3","page":491,"name":"Adjudicating the Rules","entries":["As the GM, you are responsible for solving any rules disputes. Remember that keeping your game moving is more important than being 100% correct. Looking up rules at the table can slow the game down, so in many cases it's better to make your best guess rather than scour the book for the exact rule. (It can be instructive to look those rules up during a break or after the session, though!)","To make calls on the fly, use the following guidelines, which are the same principles the game rules are based on. You might want to keep printouts of these guidelines and the DC guidelines (page 503) for quick reference.",{"type":"list","items":["If you don't know how long a quick task takes, go with 1 action, or 2 actions if a character shouldn't be able to perform it three times per round.","If you're not sure what action a task uses, look for the most similar basic action. If you don't find one, make up an undefined action (page XXX) adding any necessary traits (usually attack, concentrate, manipulate, or move).","When two sides are opposed, have one roll against the other's DC. Don't have both sides roll (initiative is the exception to this rule). The character who rolls is usually the one acting (except in the case of saving throws).","If an effect raises or lowers chances of success, grant a +1 circumstance bonus or a –1 circumstance penalty.","If you're not sure how difficult a significant challenge should be, use the DC for the party's level.","If you're making up an effect, creatures should be incapacitated or killed on only a critical success (or for a saving throw, on a critical failure).","If you don't know what check to use, pick the most appropriate skill. If no other skill applies to a check to Recall Knowledge, use an appropriate Lore skill (usually at an untrained proficiency rank).","Use the characters' daily preparations as the time to reset anything that lasts roughly a day.","When a character accomplishes something noteworthy that doesn't have rules for XP, award them XP for an accomplishment (10 to 30 XP, as described {@quickref here||4|rewards|1}).","When the PCs fail at a task, look for a way they might fail forward, meaning the story moves forward with a negative consequence rather than the failure halting progress entirely."]}],"source":"CRB"},{"type":"pf2-h3","page":492,"name":"Special Circumstances","entries":["The player characters in your group will at times attempt tasks that should be easier or harder than the rules or adventure would otherwise lead you to expect, such as a PC Gathering Information in their hometown. In these cases, you can just apply a circumstance bonus or penalty. Usually, this is +1 or –1 for a minor but significant circumstance, but you can adjust this bonus or penalty to +2 or –2 for a major circumstance. The maximum bonus or penalty, +4 or –4, should apply only if someone has an overwhelming advantage or is trying something extremely unlikely but not quite impossible.","You can also add traits to actions. Let's say that during a fight, Seelah dips her sword into a brazier of hot coals before swinging it at an enemy with a weakness to fire. You could add the fire trait to this attack. A PC getting an advantage in this way should usually have to use an action to do so, so Seelah would get the benefit for one attack, but to do it again she'd need to bury her sword in the coals once more."],"source":"CRB"},{"type":"pf2-brown-box","page":492,"name":"SHARING RESPONSIBILITY","entries":["Just because you're the GM and ostensibly in charge doesn't mean you have to do all the extra work to make the campaign run. Some of the tasks described here, like scheduling games, taking notes, and giving recaps, can be delegated to other players. You might also have someone track initiative or the Hit Points of the PCs' foes for you in encounters, or even run those foes if you have a large group and someone would rather do that than control a character of their own. It's also great when someone else can host a session, provide snacks for the group, or take on other responsibilities that aren't directly related to the game.","It's best to figure out a schedule of responsibilities when you're first setting up a game. Ask the players what they're willing to take on. If you start to feel overwhelmed partway through a campaign, you can revisit the topic and try out new options until you find a setup that's comfortable."],"source":"CRB"},{"type":"pf2-h3","page":492,"name":"Incorporating Additional Options","entries":["You might grant players access to additional rule or character options. If you feel confident that allowing a character to take a particular option will be a good addition to your game, then go for it! If you're uncertain or worried about a request, you don't have to allow it, and it's your call to make. However, try to meet players halfway or suggest alternatives. If you want to allow an option on a trial basis but are worried it might become a problem later, talk to the player beforehand and explain that you are tentatively allowing the option, but might change your mind later, after you see how the option can be used during play."],"source":"CRB"},{"type":"pf2-brown-box","page":492,"name":"PAIZO'S PUBLISHED ADVENTURES","entries":["You can purchase the following types of adventures at {@b {@link paizo.com|https://paizo.com}}, your local game store, or many book stores. If you want to acquire all the adventures in a given line, you can purchase a subscription at {@b {@link paizo.com|https://paizo.com}}.",{"type":"pf2-title","name":"Pathfinder Adventure Paths"},"Each monthly volume of a Pathfinder Adventure Path leads into the next as part of a greater story spanning multiple volumes. The first volume of each Adventure Path typically starts at 1st level, and each volume has a self-contained story that eventually leads to a big climax at the end of the final volume. Each volume also typically includes new monsters, rules, and details about the world.","Each Adventure Path has a different theme, and their settings range across the Inner Sea region and beyond.",{"type":"pf2-title","name":"Pathfinder Adventures"},"Pathfinder Adventures are standalone adventures that cover several levels of play. They're self-contained and typically have a unique structure or theme. You can play through a Pathfinder Adventure on its own or as part of your ongoing campaign—some make ideal side adventures for Adventure Paths that have similar themes.",{"type":"pf2-title","name":"Pathfinder Society Scenarios"},"Scenarios are the adventures used by the Pathfinder Society Roleplaying Guild; you can play them as part of the Pathfinder Society or on your own. Each takes about 4 to 5 hours to run, so you can tell a whole story in a short amount of time, but they're also part of a larger continuity and can be combined together to form the basis of a longer campaign."],"source":"CRB"}],"data":{"quickref":5},"source":"CRB"}]}]}} \ No newline at end of file diff --git a/data/items/baseitems.json b/data/items/baseitems.json index fecd911e21..f7106831a3 100644 --- a/data/items/baseitems.json +++ b/data/items/baseitems.json @@ -2080,6 +2080,7 @@ "name": "Explorer's Clothing", "equipment": true, "source": "CRB", + "genericItem": "Clothing (generic)", "page": 275, "type": "Equipment", "traits": [ @@ -2100,7 +2101,7 @@ "category": "Armor", "subCategory": "Unarmored", "entries": [ - "Adventurers who don't wear armor travel in durable clothing. Though it's not armor and uses your unarmored defense proficiency, it still has a Dex Cap and can grant an item bonus to AC if etched with potency runes (as described on page 581)." + "Adventurers who don't wear armor travel in durable clothing. Though it's not armor and uses your unarmored defense proficiency, it still has a Dex Cap and can grant an item bonus to AC if etched with {@item armor potency (generic)||potency runes}." ] }, { @@ -4452,7 +4453,6 @@ "name": "Shauth Lash", "source": "AV3", "page": 73, - "equipment": true, "type": "Equipment", "traits": [ "deadly d10", @@ -4480,7 +4480,6 @@ "name": "Rhoka Sword", "source": "AV3", "page": 73, - "equipment": true, "type": "Equipment", "traits": [ "deadly d8", @@ -4507,7 +4506,6 @@ "name": "Shauth Blade", "source": "AV3", "page": 73, - "equipment": true, "type": "Equipment", "traits": [ "agile", @@ -5590,7 +5588,6 @@ "name": "Aklys", "source": "Bst", "page": 85, - "equipment": true, "type": "Equipment", "traits": [ "uncommon", diff --git a/data/items/items-av3.json b/data/items/items-av3.json index b16479f7b7..0297c2abcd 100644 --- a/data/items/items-av3.json +++ b/data/items/items-av3.json @@ -425,7 +425,6 @@ "name": "Shootist Bandolier", "source": "AV3", "page": 73, - "equipment": true, "type": "Item", "price": { "coin": "gp", diff --git a/data/items/items-crb.json b/data/items/items-crb.json index a354612d77..8939897a63 100644 --- a/data/items/items-crb.json +++ b/data/items/items-crb.json @@ -4378,8 +4378,65 @@ "equipment": true, "type": "Item", "category": "Adventuring Gear", - "entries": [ - "Ordinary clothing is functional with basic tailoring, such as peasant garb, monk's robes, or work clothes. Explorer's clothing is sturdy enough that it can be reinforced to protect you, even though it isn't a suit of armor. It comes in many forms, though the most common sorts look like clerical vestments, monk's garments, or wizard's robes, as members of all three classes are likely to avoid wearing armor. For more information on explorer's clothing, see pages 275\u2013276. Fine clothing, suitable for a noble or royal, is made with expensive fabrics, precious metals, and intricate patterns. You can wear only one tool set of light Bulk with fine clothing, instead of the normal limit of 2 Bulk. You gain a +1 item bonus to checks to Make an Impression on upper-class folk while wearing high-fashion fine clothing. Winter clothing allows you to negate the damage from severe environmental cold and reduce the damage from extreme cold to that of severe cold." + "generic": "G", + "entries": [], + "variants": [ + { + "type": "ordinary", + "price": { + "coin": "sp", + "amount": 1 + }, + "entries": [ + "Ordinary clothing is functional with basic tailoring, such as peasant garb, monk's robes, or work clothes." + ] + }, + { + "type": "explorer's", + "exists": true, + "price": { + "coin": "sp", + "amount": 1 + }, + "bulk": "L", + "entries": [ + "Explorer's clothing is sturdy enough that it can be reinforced to protect you, even though it isn't a suit of armor. It comes in many forms, though the most common sorts look like {@class cleric||clerical} vestments, {@class monk}'s garments, or {@class wizard}'s robes, as members of all three classes are likely to avoid wearing armor." + ] + }, + { + "type": "fine", + "price": { + "coin": "gp", + "amount": 2 + }, + "bulk": "L", + "entries": [ + "Fine clothing, suitable for a noble or royal, is made with expensive fabrics, precious metals, and intricate patterns. You can {@quickref wear||1|wearing tools} only one tool set of light Bulk with fine clothing, instead of the normal limit of 2 Bulk." + ] + }, + { + "type": "high-fashion fine", + "price": { + "coin": "gp", + "amount": 55 + }, + "level": 3, + "bulk": "L", + "entries": [ + "You gain a +1 item bonus to checks to {@action Make an Impression} on upper-class folk while wearing high-fashion fine clothing." + ] + }, + { + "type": "winter", + "price": { + "coin": "sp", + "amount": 4 + }, + "bulk": "L", + "entries": [ + "Winter clothing allows you to negate the damage from severe environmental cold and reduce the damage from extreme cold to that of severe cold." + ] + } ] }, { diff --git a/data/renderdemo.json b/data/renderdemo.json index 3543ce7ba8..218af081b8 100644 --- a/data/renderdemo.json +++ b/data/renderdemo.json @@ -774,15 +774,10 @@ }, "page": 338 } - } - ] - }, - { - "type": "item", - "entries": [ - "{@b {@color {@u Warning:}|ff0000} \"type\": \"statblock\" should be used {@u very} sparingly. It can load the entire site's data and is therefore capable of making your device suffer, especially if you have an older/weaker device. You should not use it to load multiple different types of statblocks if it can be avoided.}", + }, + "You can input \"name\" and \"source\" instead of \"data\" to fetch the data from the tagged page instead of providing it in the entry.", { - "type": "statblock", + "type": "data", "tag": "action", "name": "Squeeze", "source": "CRB" diff --git a/data/spells/spells-crb.json b/data/spells/spells-crb.json index b582fa1527..cc8ec34c00 100644 --- a/data/spells/spells-crb.json +++ b/data/spells/spells-crb.json @@ -26510,7 +26510,7 @@ "entries": [ "Use this stat block for unseen servant.", { - "type": "statblock", + "type": "data", "tag": "creature", "name": "Unseen Servant", "source": "CRB" diff --git a/data/traits.json b/data/traits.json index 2bcb73b5d9..66d66ed8cc 100644 --- a/data/traits.json +++ b/data/traits.json @@ -4416,7 +4416,7 @@ "entries": [ "This weapon can channel energy damage. You gain the {@action Conduct Energy|LOAG} free action while wielding a resonant weapon.", { - "type": "statblock", + "type": "data", "tag": "action", "name": "Conduct Energy", "source": "LOAG" diff --git a/data/variantrules.json b/data/variantrules.json index 6d12a50fc4..2caf7c1fec 100644 --- a/data/variantrules.json +++ b/data/variantrules.json @@ -5033,13 +5033,13 @@ "entries": [ "Group activities require the entire party to work together in order to be effective; these activities each count as one of the day's hexploration activities for the whole group. For instance, if the group had 2 hexploration activities per day and decided to Travel and Reconnoiter, no one would have any additional hexploration activities that day. There are two group activities: Travel and Reconnoiter.", { - "type": "statblock", + "type": "data", "tag": "action", "name": "Travel", "source": "GMG" }, { - "type": "statblock", + "type": "data", "tag": "action", "name": "Reconnoiter", "source": "GMG" @@ -5054,13 +5054,13 @@ "entries": [ "Not all hexploration activities need to be accomplished as a group. In place of using a hexploration activity to {@action Travel} or {@action Reconnoiter}, each individual group member can instead perform one of these individual activities.", { - "type": "statblock", + "type": "data", "tag": "action", "name": "Fortify Camp", "source": "GMG" }, { - "type": "statblock", + "type": "data", "tag": "action", "name": "Map The Area", "source": "GMG" @@ -5662,7 +5662,7 @@ "entries": [ "You can use your magical prowess to temporarily access the power of a ley line. Tapping the Ley Line requires a skill check using the skill associated with its tradition ({@skill Arcana} for arcane, {@skill Nature} for primal, {@skill Occultism} for occult, and {@skill Religion} for divine). In cases where a ley line has multiple associated traditions, you can use any of the appropriate skills to Tap the Ley Line. The benefits of a ley line are always magical in nature and can be counteracted in a similar way to a magic item.", { - "type": "statblock", + "type": "data", "tag": "action", "name": "Tap Ley Line", "source": "SoM" @@ -7832,7 +7832,7 @@ "name": "Naming Skill Feat", "entries": [ { - "type": "statblock", + "type": "data", "tag": "feat", "name": "Reveal True Name", "source": "SoM" @@ -7844,19 +7844,19 @@ "name": "Naming Spells", "entries": [ { - "type": "statblock", + "type": "data", "tag": "spell", "name": "Catch Your Name", "source": "SoM" }, { - "type": "statblock", + "type": "data", "tag": "spell", "name": "Compel True Name", "source": "SoM" }, { - "type": "statblock", + "type": "data", "tag": "spell", "name": "Invoke True Name", "source": "SoM" @@ -7868,7 +7868,7 @@ "name": "Naming Items", "entries": [ { - "type": "statblock", + "type": "data", "tag": "item", "name": "True Name Amulet (Generic)", "source": "SoM" @@ -8167,19 +8167,19 @@ "Even with these extra opportunities, you can't advance your primary branch level above your character's level, or your secondary branch level above half your character's level (both with a minimum of 0). If the result of any of these activities would raise a branch level past those limits, put a star next to your branch's level. The next time your character gains a level, raise that branch's level to the new limit and erase the star. This way, if you have an opportunity to advance your branch level, you don't have to wait until your character level is high enough to pursue it.", "Each of these downtime activities takes a few months, as they occur over an academic semester. You might have encounters during or between these checks as the story requires.", { - "type": "statblock", + "type": "data", "tag": "action", "name": "Study", "source": "SoT1" }, { - "type": "statblock", + "type": "data", "tag": "action", "name": "Cram", "source": "SoT1" }, { - "type": "statblock", + "type": "data", "tag": "action", "name": "Practical Research", "source": "SoT1" diff --git a/js/bestiary.js b/js/bestiary.js index 942b93708f..c4bf361986 100644 --- a/js/bestiary.js +++ b/js/bestiary.js @@ -486,7 +486,7 @@ class BestiaryPage extends ListPage { // reset tabs const statTab = Renderer.utils.tabButton( - "Statblock", + "data", () => { $(`#float-token`).show(); }, diff --git a/js/companionsfamiliars.js b/js/companionsfamiliars.js index 043d3625c8..51121e9b72 100644 --- a/js/companionsfamiliars.js +++ b/js/companionsfamiliars.js @@ -95,7 +95,7 @@ class CompanionsFamiliarsPage extends ListPage { $pgContent.append(`
${it.name}
${it.fluff.map(f => `

${Renderer.get().render(f)}

`).join("")}
`); } const statsTab = Renderer.utils.tabButton( - "Statblock", + "data", () => {}, buildStatsTab, ); diff --git a/js/optionalfeatures.js b/js/optionalfeatures.js index e2b61b91bd..7f9aa241ef 100644 --- a/js/optionalfeatures.js +++ b/js/optionalfeatures.js @@ -93,7 +93,7 @@ class OptionalFeaturesPage extends ListPage { }).appendTo($wrpOptFeatType); }; const statsTab = Renderer.utils.tabButton( - "Statblock", + "data", () => {}, buildStatsTab, ); diff --git a/js/render.js b/js/render.js index 4199633a73..01fd19e985 100644 --- a/js/render.js +++ b/js/render.js @@ -377,11 +377,6 @@ function Renderer () { case "data": this._renderData(entry, textStack, meta, options); break; - case "statblock": - // eslint-disable-next-line no-console - console.warn(`Statblock entries should be removed!`); - this._renderStatblock(entry, textStack, meta, options); - break; // images case "image": @@ -1365,28 +1360,25 @@ function Renderer () { textStack[0] += Renderer.getEntryDice(entry, entry.name, this._isAddHandlers); }; - this._renderStatblock = async function (entry, textStack, meta, options) { - const cat_id = Parser._parse_bToA(Parser.CAT_ID_TO_PROP, entry.tag); - const page = UrlUtil.CAT_TO_PAGE[cat_id]; - const hash = entry.hash || UrlUtil.URL_TO_HASH_BUILDER[page](entry); - const renderFn = Renderer.hover._pageToRenderFn(page); - textStack[0] += `
${Renderer.get().render(`{@${entry.tag} ${entry.name}|${entry.source}}`)}
` - const toRender = await Renderer.hover.pCacheAndGet(page, entry.source, hash); - const $wrp = $(`[data-stat-hash="${hash}"]`); - if (toRender) $wrp.html(renderFn(toRender, { noPage: true })); - else throw new Error(`Could not find ${entries.tag}: ${hash}`); - }; - - // TODO: Merge with renderStatblock - this._renderData = function (entry, textStack, meta, options) { + // Ex. {"type": "data", "tag": "spell", "name": "Fireball", "source": "CRB"} + this._renderData = async function (entry, textStack, meta, options) { this._renderPrefix(entry, textStack, meta, options); this._renderDataHeader(textStack); const catId = Parser._parse_bToA(Parser.CAT_ID_TO_PROP, entry.tag); const page = entry.page || UrlUtil.CAT_TO_PAGE[catId]; const renderFn = Renderer.hover._pageToRenderFn(page); if (renderFn) { - const rendered = renderFn(entry.data, { isEmbedded: true, noPage: true }); - textStack[0] += typeof rendered === "object" ? rendered.html() : rendered; + if (entry.data) { + const rendered = renderFn(entry.data, { isEmbedded: true, noPage: true }); + textStack[0] += typeof rendered === "object" ? rendered.html() : rendered; + } else if (entry.name && entry.source) { + const hash = entry.hash || UrlUtil.URL_TO_HASH_BUILDER[page](entry); + textStack[0] += `
${Renderer.get().render(`{@${entry.tag} ${entry.name}|${entry.source}}`)}
` + const toRender = await Renderer.hover.pCacheAndGet(page, entry.source, hash); + const $wrp = $(`[data-stat-hash="${hash}"]`); + if (toRender) $wrp.html(renderFn(toRender, { noPage: true })); + else throw new Error(`Could not find ${entry.tag}: ${hash}`); + } } else textStack[0] += `
`; this._renderDataFooter(textStack); this._renderSuffix(entry, textStack, meta, options); @@ -3126,7 +3118,7 @@ Renderer.utils = { let dataPart = ""; if (opts.page) { const hash = UrlUtil.URL_TO_HASH_BUILDER[opts.page](it); - dataPart = `data-page="${opts.page}" data-source="${it.source.escapeQuotes()}" data-hash="${hash.escapeQuotes()}"`; + dataPart = `data-page="${opts.page}" data-source="${it.source.uq()}" data-hash="${hash.uq()}"`; } const type = opts.type != null ? opts.type : it.type || "" const DC = opts.level != null ? Number(opts.level) : Number(it.level) @@ -4714,6 +4706,7 @@ Renderer.item = { ${Renderer.item.getCraftRequirements(item)} ${Renderer.item.getDestruction(item)} ${Renderer.item.getSpecial(item)} + ${Renderer.item.getGenericItem(item)} ${Renderer.utils.getPageP(item)}`; }, @@ -4897,7 +4890,7 @@ Renderer.item = { AC Bonus ${Parser.numToBonus(armorData.ac)}; Dex Cap ${Parser.numToBonus(armorData.dexCap)}

- Strength ${armorData.str}; + Strength ${armorData.str ? `${armorData.str}` : "\u2014"}; Check Penalty ${armorData.checkPen ? `–${armorData.checkPen}` : "\u2014"}; Speed Penalty ${armorData.speedPen ? `–${armorData.speedPen} ft.` : "\u2014"}

`; @@ -4977,6 +4970,14 @@ Renderer.item = { } else return "" }, + getGenericItem: (item) => { + if (item.genericItem != null) { + return ` + ${Renderer.get().render(`{@note Main Item: ${`{@item ${item.genericItem}}`}}`)} + ` + } else return "" + }, + _builtLists: {}, _lockBuildList: null, diff --git a/js/utils.js b/js/utils.js index 421dca9c4b..31e56f3cb8 100644 --- a/js/utils.js +++ b/js/utils.js @@ -5,7 +5,7 @@ if (typeof module !== "undefined") require("./parser.js"); // in deployment, `IS_DEPLOYED = "";` should be set below. IS_DEPLOYED = undefined; -VERSION_NUMBER = /* PF2ETOOLS_VERSION__OPEN */"0.5.2"/* PF2ETOOLS_VERSION__CLOSE */; +VERSION_NUMBER = /* PF2ETOOLS_VERSION__OPEN */"0.5.3"/* PF2ETOOLS_VERSION__CLOSE */; DEPLOYED_STATIC_ROOT = ""; // ""; // FIXME re-enable this when we have a CDN again IS_VTT = false; @@ -62,6 +62,10 @@ String.prototype.lowercaseFirst = String.prototype.lowercaseFirst || function () return str.charAt(0).toLowerCase() + str.slice(1); }; +String.prototype.uq = String.prototype.uq || function () { + return this.unescapeQuotes(); +}; + String.prototype.toTitleCase = String.prototype.toTitleCase || function () { let str = this.replace(/([^\W_]+[^\s-/]*) */g, m0 => m0.charAt(0).toUpperCase() + m0.substr(1).toLowerCase()); @@ -3014,7 +3018,7 @@ DataUtil = { async expandVariants (item) { if (!item.variants) return [item]; - const expanded = await Promise.all(item.variants.map(v => DataUtil.item._expandVariant(item, v))); + const expanded = await Promise.all(item.variants.filter(x => { if (x.exists !== true) return x }).map(v => DataUtil.item._expandVariant(item, v))); return [item, ...expanded]; }, @@ -3040,6 +3044,7 @@ DataUtil = { } variant.type = generic.type || "Item"; variant.generic = "V"; + variant.genericItem = `${generic.name} (generic)${generic.source.toLowerCase() !== "crb" ? `|${generic.source}` : "||"}${generic.name}`; await DataUtil.generic._pApplyCopy(DataUtil.item, generic, variant, {}); delete variant.variants; return variant; diff --git a/node/build-sw.mjs b/node/build-sw.mjs index 6576514297..93cf2b162a 100644 --- a/node/build-sw.mjs +++ b/node/build-sw.mjs @@ -47,13 +47,17 @@ const workboxPrecacheBuildResult = await injectManifest({ "manifest.webmanifest", // we should make sure we have the manifest, although its not strictly needed... // we want to store fonts to make things styled nicely "fonts/glyphicons-halflings-regular.woff2", + "fonts/glyphicons-halflings-regular.ttf", "fonts/good-pro*", "fonts/Pathfinder2eActions.ttf", + "fonts/Gin-Regular.ttf", "fonts/SabonLTStd*", "fonts/AlbertusMT.ttf", - "img/*.webp", // matches all images "fonts/Basing.ttf", "fonts/Taroca.ttf", + "img/gmscreen/moon.webp", + "img/*.webp", + "fonts/fa-light*", // we need to cache the sw-injector or we won't be injected "sw-injector.js", ], @@ -77,7 +81,8 @@ const workboxRuntimeBuildResult = await injectManifest({ */ globPatterns: [ "data/adventure/*.json", // matches all adventure json - "img/**/*", // matches all images + "img/**/*.webp", // matches all images + "img/**/*.svg", // matches all images "*.png", // root images "*.svg", // root svg ], diff --git a/node/prepare-data-prod.js b/node/prepare-data-prod.js index a0628ec0ec..faf179bdfa 100644 --- a/node/prepare-data-prod.js +++ b/node/prepare-data-prod.js @@ -19,7 +19,7 @@ async function replaceReferences (folder) { const references = []; walker.walk(json, { object: (obj) => { - if (obj.type === "statblock") { + if (obj.type === "data" && !obj.data) { const cat_id = Parser._parse_bToA(Parser.CAT_ID_TO_PROP, obj.tag); const page = UrlUtil.CAT_TO_PAGE[cat_id]; const hash = obj.hash || UrlUtil.URL_TO_HASH_BUILDER[page](obj); @@ -31,7 +31,7 @@ async function replaceReferences (folder) { const referencedData = await Promise.all(references.map(r => Renderer.hover.pCacheAndGet(r.page, r.src, r.hash))); walker.walk(json, { object: (obj) => { - if (obj.type === "statblock") { + if (obj.type === "data" && !obj.data) { const cat_id = Parser._parse_bToA(Parser.CAT_ID_TO_PROP, obj.tag); const page = UrlUtil.CAT_TO_PAGE[cat_id]; const hash = obj.hash || UrlUtil.URL_TO_HASH_BUILDER[page](obj); diff --git a/node/rm.js b/node/rm.js new file mode 100644 index 0000000000..2a8e29c678 --- /dev/null +++ b/node/rm.js @@ -0,0 +1,7 @@ +const {rmDirRecursiveSync} = require("./util.js"); + +if (process.argv.length < 3) throw new Error(`An argument is required!`); + +const tgt = process.argv[2]; +console.log(`Removing: ${tgt}`); +rmDirRecursiveSync(tgt); \ No newline at end of file diff --git a/node/util.js b/node/util.js index b947ea76f0..efecb02a27 100644 --- a/node/util.js +++ b/node/util.js @@ -120,6 +120,17 @@ function listFiles (opts) { }, []); } +function rmDirRecursiveSync (dir) { + if (fs.existsSync(dir)) { + fs.readdirSync(dir).forEach(file => { + const curPath = `${dir}/${file}`; + if (fs.lstatSync(curPath).isDirectory()) rmDirRecursiveSync(curPath); + else fs.unlinkSync(curPath); + }); + fs.rmdirSync(dir); + } +} + class PatchLoadJson { static patchLoadJson () { PatchLoadJson._CACHED = PatchLoadJson._CACHED || DataUtil.loadJSON; @@ -166,4 +177,5 @@ module.exports = { patchLoadJson: PatchLoadJson.patchLoadJson, unpatchLoadJson: PatchLoadJson.unpatchLoadJson, ArgParser, + rmDirRecursiveSync, }; diff --git a/package.json b/package.json index e876dbfaf2..b651417e5c 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "pf2etools", "author": "Pf2eTools", - "version": "0.5.2", + "version": "0.5.3", "license": "MIT", "description": "A site dedicated to making playing games with your friends as easy as possible.", "scripts": { @@ -11,19 +11,23 @@ "clean-jsons": "node node/clean-jsons.js", "minify:js": "terser --keep-classnames --keep-fnames", "minify:json": "node node/minify-json.js", - "test:js": "eslint .", - "lint:js": "eslint . --fix", + "test:js": "eslint js node", + "lint:js": "eslint js node --fix", + "test": "npm run test:js && npm run test:styles && npm run test:data", "test:styles": "stylelint scss/*.scss scss/includes/*.scss", "test:data": "node test/test-all.js", - "test": "npm run test:js && npm run test:styles && npm run test:data", - "build:css": "sass --style=compressed scss/:css/ && node node/rm.js css/includes/", + "build": "npm run clean-jsons && npm run gen-all && npm run build:css && npm run build:sw:prod", + "build:css": "npm run build:css:main && npm run build:css:classes && npm run build:css:misc && npm run build:css:search", + "build:css:main": "node-sass --source-map=true --output-style=compressed scss/main.scss css/style.css && postcss ./css/style.css --use autoprefixer -r", + "build:css:classes": "node-sass --source-map=true --output-style=compressed scss/classes.scss css/classes.css && postcss ./css/classes.css --use autoprefixer -r", + "build:css:search": "node-sass --source-map=true --output-style=compressed scss/search.scss css/search.css && postcss ./css/search.css --use autoprefixer -r", + "build:css:misc": "node-sass --source-map=true --output-style=compressed scss/list-page--grouped.scss css/list-page--grouped.css && postcss ./css/list-page--grouped.css --use autoprefixer -r", "build:deploy:dev": "bash build/deploy-prep-dev.sh", "build:deploy:prod": "bash build/deploy-prep-prod.sh", "build:deploy:prod:cdn": "bash build/deploy-prep-prod--cdn.sh", "build:seo": "node node/generate-seo.js", "build:sw": "node node/build-sw.mjs", "build:sw:prod": "node node/build-sw.mjs prod", - "build": "npm run clean-jsons && npm run gen-all && npm run build:css && npm run build:sw:prod", "preversion": "npm test", "version": "node node/version-bump.js" }, diff --git a/scss/pf2.scss b/scss/pf2.scss index babdd3cae0..b7d204359b 100644 --- a/scss/pf2.scss +++ b/scss/pf2.scss @@ -199,6 +199,7 @@ text-align: justify; line-height: 1.33em; font-weight: 400; + text-indent: 0; &__ { &name { diff --git a/search/index.json b/search/index.json index 55dd8760dc..21f23702fd 100644 --- a/search/index.json +++ b/search/index.json @@ -1 +1 @@ -{"x":[{"c":20,"s":0,"id":0,"u":"anadi_lome","p":102,"h":1,"n":"Anadi"},{"c":20,"s":1,"id":1,"u":"android_loag","p":68,"h":1,"n":"Android"},{"c":20,"s":2,"id":2,"u":"automaton_g%26g","p":36,"h":1,"n":"Automaton"},{"c":20,"s":3,"id":3,"u":"azarketi_aaws","p":2,"h":1,"n":"Azarketi"},{"c":20,"s":4,"id":4,"u":"catfolk_apg","p":8,"h":1,"n":"Catfolk"},{"c":20,"s":0,"id":5,"u":"conrasu_lome","p":106,"h":1,"n":"Conrasu"},{"c":20,"s":5,"id":6,"u":"dwarf_crb","p":34,"h":1,"n":"Dwarf"},{"c":20,"s":5,"id":7,"u":"elf_crb","p":39,"h":1,"n":"Elf"},{"c":20,"s":1,"id":8,"u":"fetchling_loag","p":82,"h":1,"n":"Fetchling"},{"c":20,"s":1,"id":9,"u":"fleshwarp_loag","p":88,"h":1,"n":"Fleshwarp"},{"c":20,"s":0,"id":10,"u":"gnoll_lome","p":110,"h":1,"n":"Gnoll"},{"c":20,"s":5,"id":11,"u":"gnome_crb","p":42,"h":1,"n":"Gnome"},{"c":20,"s":5,"id":12,"u":"goblin_crb","p":46,"h":1,"n":"Goblin"},{"c":20,"s":0,"id":13,"u":"goloma_lome","p":114,"h":1,"n":"Goloma"},{"c":20,"s":0,"id":14,"u":"grippli_lome","p":118,"h":1,"n":"Grippli"},{"c":20,"s":5,"id":15,"u":"halfling_crb","p":50,"h":1,"n":"Halfling"},{"c":20,"s":6,"id":16,"u":"hobgoblin_locg","p":48,"h":1,"n":"Hobgoblin"},{"c":20,"s":5,"id":17,"u":"human_crb","p":54,"h":1,"n":"Human"},{"c":20,"s":1,"id":18,"u":"kitsune_loag","p":120,"h":1,"n":"Kitsune"},{"c":20,"s":4,"id":19,"u":"kobold_apg","p":12,"h":1,"n":"Kobold"},{"c":20,"s":6,"id":20,"u":"leshy_locg","p":52,"h":1,"n":"Leshy"},{"c":20,"s":6,"id":21,"u":"lizardfolk_locg","p":56,"h":1,"n":"Lizardfolk"},{"c":20,"s":4,"id":22,"u":"orc_apg","p":16,"h":1,"n":"Orc"},{"c":20,"s":7,"id":23,"u":"poppet_lotgb","p":60,"h":1,"n":"Poppet"},{"c":20,"s":4,"id":24,"u":"ratfolk_apg","p":20,"h":1,"n":"Ratfolk"},{"c":20,"s":0,"id":25,"u":"shisk_lome","p":122,"h":1,"n":"Shisk"},{"c":20,"s":8,"id":26,"u":"shoony_ec3","p":72,"h":1,"n":"Shoony"},{"c":20,"s":1,"id":27,"u":"sprite_loag","p":126,"h":1,"n":"Sprite"},{"c":20,"s":1,"id":28,"u":"strix_loag","p":132,"h":1,"n":"Strix"},{"c":20,"s":4,"id":29,"u":"tengu_apg","p":24,"h":1,"n":"Tengu"},{"c":21,"s":0,"id":31,"u":"anadi_lome,state:h-adaptive-lome=b1","p":103,"b":"Adaptive Anadi","n":"Adaptive Anadi (Anadi)"},{"c":21,"s":0,"id":32,"u":"anadi_lome,state:h-polychromatic-lome=b1","p":103,"b":"Polychromatic Anadi","n":"Polychromatic Anadi (Anadi)"},{"c":21,"s":0,"id":33,"u":"anadi_lome,state:h-snaring-lome=b1","p":103,"b":"Snaring Anadi","n":"Snaring Anadi (Anadi)"},{"c":21,"s":0,"id":34,"u":"anadi_lome,state:h-spindly-lome=b1","p":103,"b":"Spindly Anadi","n":"Spindly Anadi (Anadi)"},{"c":21,"s":0,"id":35,"u":"anadi_lome,state:h-venomous-lome=b1","p":103,"b":"Venomous Anadi","n":"Venomous Anadi (Anadi)"},{"c":21,"s":1,"id":37,"u":"android_loag,state:h-artisan-loag=b1","p":71,"b":"Artisan Android","n":"Artisan Android (Android)"},{"c":21,"s":1,"id":38,"u":"android_loag,state:h-impersonator-loag=b1","p":71,"b":"Impersonator Android","n":"Impersonator Android (Android)"},{"c":21,"s":1,"id":39,"u":"android_loag,state:h-laborer-loag=b1","p":71,"b":"Laborer Android","n":"Laborer Android (Android)"},{"c":21,"s":1,"id":40,"u":"android_loag,state:h-polyglot-loag=b1","p":71,"b":"Polyglot Android","n":"Polyglot Android (Android)"},{"c":21,"s":1,"id":41,"u":"android_loag,state:h-warrior-loag=b1","p":71,"b":"Warrior Android","n":"Warrior Android (Android)"},{"c":21,"s":2,"id":43,"u":"automaton_g%26g,state:h-hunter-gg=b1","p":39,"b":"Hunter Automaton","n":"Hunter Automaton (Automaton)"},{"c":21,"s":2,"id":44,"u":"automaton_g%26g,state:h-mage-gg=b1","p":39,"b":"Mage Automaton","n":"Mage Automaton (Automaton)"},{"c":21,"s":2,"id":45,"u":"automaton_g%26g,state:h-warrior-gg=b1","p":39,"b":"Warrior Automaton","n":"Warrior Automaton (Automaton)"},{"c":21,"s":2,"id":46,"u":"automaton_g%26g,state:h-sharpshooter-gg=b1","p":39,"b":"Sharpshooter Automaton","n":"Sharpshooter Automaton (Automaton)"},{"c":21,"s":3,"id":48,"u":"azarketi_aaws,state:h-ancient-scale-aaws=b1","p":3,"b":"Ancient Scale Azarketi","n":"Ancient Scale Azarketi (Azarketi)"},{"c":21,"s":3,"id":49,"u":"azarketi_aaws,state:h-benthic-aaws=b1","p":3,"b":"Benthic Azarketi","n":"Benthic Azarketi (Azarketi)"},{"c":21,"s":3,"id":50,"u":"azarketi_aaws,state:h-mistbreath-aaws=b1","p":3,"b":"Mistbreath Azarketi","n":"Mistbreath Azarketi (Azarketi)"},{"c":21,"s":3,"id":51,"u":"azarketi_aaws,state:h-river-aaws=b1","p":3,"b":"River Azarketi","n":"River Azarketi (Azarketi)"},{"c":21,"s":3,"id":52,"u":"azarketi_aaws,state:h-thalassic-aaws=b1","p":4,"b":"Thalassic Azarketi","n":"Thalassic Azarketi (Azarketi)"},{"c":21,"s":1,"id":53,"u":"azarketi_aaws,state:h-inured-loag=b1","p":13,"b":"Inured Azarketi","n":"Inured Azarketi (Azarketi)"},{"c":21,"s":1,"id":54,"u":"azarketi_aaws,state:h-murkeyed-loag=b1","p":13,"b":"Murkeyed Azarketi","n":"Murkeyed Azarketi (Azarketi)"},{"c":21,"s":1,"id":55,"u":"azarketi_aaws,state:h-spined-loag=b1","p":13,"b":"Spined Azarketi","n":"Spined Azarketi (Azarketi)"},{"c":21,"s":1,"id":56,"u":"azarketi_aaws,state:h-tactile-loag=b1","p":13,"b":"Tactile Azarketi","n":"Tactile Azarketi (Azarketi)"},{"c":21,"s":4,"id":58,"u":"catfolk_apg,state:h-clawed-apg=b1","p":9,"b":"Clawed Catfolk","n":"Clawed Catfolk (Catfolk)"},{"c":21,"s":4,"id":59,"u":"catfolk_apg,state:h-hunting-apg=b1","p":9,"b":"Hunting Catfolk","n":"Hunting Catfolk (Catfolk)"},{"c":21,"s":4,"id":60,"u":"catfolk_apg,state:h-jungle-apg=b1","p":10,"b":"Jungle Catfolk","n":"Jungle Catfolk (Catfolk)"},{"c":21,"s":4,"id":61,"u":"catfolk_apg,state:h-nine-lives-apg=b1","p":10,"b":"Nine Lives Catfolk","n":"Nine Lives Catfolk (Catfolk)"},{"c":21,"s":4,"id":62,"u":"catfolk_apg,state:h-winter-apg=b1","p":10,"b":"Winter Catfolk","n":"Winter Catfolk (Catfolk)"},{"c":21,"s":1,"id":63,"u":"catfolk_apg,state:h-flexible-loag=b1","p":17,"b":"Flexible Catfolk","n":"Flexible Catfolk (Catfolk)"},{"c":21,"s":1,"id":64,"u":"catfolk_apg,state:h-liminal-loag=b1","p":17,"b":"Liminal Catfolk","n":"Liminal Catfolk (Catfolk)"},{"c":21,"s":1,"id":65,"u":"catfolk_apg,state:h-sharpeared-loag=b1","p":17,"b":"Sharp-Eared Catfolk","n":"Sharp-Eared Catfolk (Catfolk)"},{"c":21,"s":0,"id":67,"u":"conrasu_lome,state:h-knowing-lome=b1","p":107,"b":"Rite of Knowing","n":"Rite of Knowing (Conrasu)"},{"c":21,"s":0,"id":68,"u":"conrasu_lome,state:h-light-lome=b1","p":107,"b":"Rite of Light","n":"Rite of Light (Conrasu)"},{"c":21,"s":0,"id":69,"u":"conrasu_lome,state:h-passage-lome=b1","p":107,"b":"Rite of Passage","n":"Rite of Passage (Conrasu)"},{"c":21,"s":0,"id":70,"u":"conrasu_lome,state:h-reinforcement-lome=b1","p":107,"b":"Rite of Reinforcement","n":"Rite of Reinforcement (Conrasu)"},{"c":21,"s":0,"id":71,"u":"conrasu_lome,state:h-invocation-lome=b1","p":108,"b":"Rite of Invocation","n":"Rite of Invocation (Conrasu)"},{"c":21,"s":5,"id":73,"u":"dwarf_crb,state:h-ancientblooded-crb=b1","p":35,"b":"Ancient-Blooded Dwarf","n":"Ancient-Blooded Dwarf (Dwarf)"},{"c":21,"s":5,"id":74,"u":"dwarf_crb,state:h-death-warden-crb=b1","p":35,"b":"Death Warden Dwarf","n":"Death Warden Dwarf (Dwarf)"},{"c":21,"s":5,"id":75,"u":"dwarf_crb,state:h-forge-crb=b1","p":35,"b":"Forge Dwarf","n":"Forge Dwarf (Dwarf)"},{"c":21,"s":5,"id":76,"u":"dwarf_crb,state:h-rock-crb=b1","p":36,"b":"Rock Dwarf","n":"Rock Dwarf (Dwarf)"},{"c":21,"s":5,"id":77,"u":"dwarf_crb,state:h-strongblooded-crb=b1","p":36,"b":"Strong-Blooded Dwarf","n":"Strong-Blooded Dwarf (Dwarf)"},{"c":21,"s":6,"id":78,"u":"dwarf_crb,state:h-anvil-locg=b1","p":19,"b":"Anvil Dwarf","n":"Anvil Dwarf (Dwarf)"},{"c":21,"s":6,"id":79,"u":"dwarf_crb,state:h-elemental-heart-locg=b1","p":19,"b":"Elemental Heart Dwarf","n":"Elemental Heart Dwarf (Dwarf)"},{"c":21,"s":6,"id":80,"u":"dwarf_crb,state:h-oathkeeper-locg=b1","p":19,"b":"Oathkeeper Dwarf","n":"Oathkeeper Dwarf (Dwarf)"},{"c":21,"s":5,"id":82,"u":"elf_crb,state:h-arctic-crb=b1","p":39,"b":"Arctic Elf","n":"Arctic Elf (Elf)"},{"c":21,"s":5,"id":83,"u":"elf_crb,state:h-cavern-crb=b1","p":39,"b":"Cavern Elf","n":"Cavern Elf (Elf)"},{"c":21,"s":5,"id":84,"u":"elf_crb,state:h-seer-crb=b1","p":40,"b":"Seer Elf","n":"Seer Elf (Elf)"},{"c":21,"s":5,"id":85,"u":"elf_crb,state:h-whisper-crb=b1","p":40,"b":"Whisper Elf","n":"Whisper Elf (Elf)"},{"c":21,"s":5,"id":86,"u":"elf_crb,state:h-woodland-crb=b1","p":40,"b":"Woodland Elf","n":"Woodland Elf (Elf)"},{"c":21,"s":6,"id":87,"u":"elf_crb,state:h-ancient-locg=b1","p":25,"b":"Ancient Elf","n":"Ancient Elf (Elf)"},{"c":21,"s":6,"id":88,"u":"elf_crb,state:h-desert-locg=b1","p":25,"b":"Desert Elf","n":"Desert Elf (Elf)"},{"c":21,"s":1,"id":90,"u":"fetchling_loag,state:h-bright-loag=b1","p":85,"b":"Bright Fetchling","n":"Bright Fetchling (Fetchling)"},{"c":21,"s":1,"id":91,"u":"fetchling_loag,state:h-deep-loag=b1","p":85,"b":"Deep Fetchling","n":"Deep Fetchling (Fetchling)"},{"c":21,"s":1,"id":92,"u":"fetchling_loag,state:h-liminal-loag=b1","p":85,"b":"Liminal Fetchling","n":"Liminal Fetchling (Fetchling)"},{"c":21,"s":1,"id":93,"u":"fetchling_loag,state:h-resolute-loag=b1","p":85,"b":"Resolute Fetchling","n":"Resolute Fetchling (Fetchling)"},{"c":21,"s":1,"id":94,"u":"fetchling_loag,state:h-wisp-loag=b1","p":85,"b":"Wisp Fetchling","n":"Wisp Fetchling (Fetchling)"},{"c":21,"s":1,"id":96,"u":"fleshwarp_loag,state:h-created-loag=b1","p":91,"b":"Created Fleshwarp","n":"Created Fleshwarp (Fleshwarp)"},{"c":21,"s":1,"id":97,"u":"fleshwarp_loag,state:h-mutated-loag=b1","p":91,"b":"Mutated Fleshwarp","n":"Mutated Fleshwarp (Fleshwarp)"},{"c":21,"s":1,"id":98,"u":"fleshwarp_loag,state:h-shapewrought-loag=b1","p":91,"b":"Shapewrought Fleshwarp","n":"Shapewrought Fleshwarp (Fleshwarp)"},{"c":21,"s":1,"id":99,"u":"fleshwarp_loag,state:h-technological-loag=b1","p":91,"b":"Technological Fleshwarp","n":"Technological Fleshwarp (Fleshwarp)"},{"c":21,"s":0,"id":101,"u":"gnoll_lome,state:h-ant-lome=b1","p":111,"b":"Ant Gnoll","n":"Ant Gnoll (Gnoll)"},{"c":21,"s":0,"id":102,"u":"gnoll_lome,state:h-great-lome=b1","p":111,"b":"Great Gnoll","n":"Great Gnoll (Gnoll)"},{"c":21,"s":0,"id":103,"u":"gnoll_lome,state:h-sweetbreath-lome=b1","p":111,"b":"Sweetbreath Gnoll","n":"Sweetbreath Gnoll (Gnoll)"},{"c":21,"s":0,"id":104,"u":"gnoll_lome,state:h-witch-lome=b1","p":112,"b":"Witch Gnoll","n":"Witch Gnoll (Gnoll)"},{"c":21,"s":5,"id":106,"u":"gnome_crb,state:h-chameleon-crb=b1","p":43,"b":"Chameleon Gnome","n":"Chameleon Gnome (Gnome)"},{"c":21,"s":5,"id":107,"u":"gnome_crb,state:h-feytouched-crb=b1","p":43,"b":"Fey-Touched Gnome","n":"Fey-Touched Gnome (Gnome)"},{"c":21,"s":5,"id":108,"u":"gnome_crb,state:h-sensate-crb=b1","p":44,"b":"Sensate Gnome","n":"Sensate Gnome (Gnome)"},{"c":21,"s":5,"id":109,"u":"gnome_crb,state:h-umbral-crb=b1","p":44,"b":"Umbral Gnome","n":"Umbral Gnome (Gnome)"},{"c":21,"s":5,"id":110,"u":"gnome_crb,state:h-wellspring-crb=b1","p":44,"b":"Wellspring Gnome","n":"Wellspring Gnome (Gnome)"},{"c":21,"s":6,"id":111,"u":"gnome_crb,state:h-vivacious-locg=b1","p":31,"b":"Vivacious Gnome","n":"Vivacious Gnome (Gnome)"},{"c":21,"s":5,"id":113,"u":"goblin_crb,state:h-charhide-crb=b1","p":47,"b":"Charhide Goblin","n":"Charhide Goblin (Goblin)"},{"c":21,"s":5,"id":114,"u":"goblin_crb,state:h-irongut-crb=b1","p":47,"b":"Irongut Goblin","n":"Irongut Goblin (Goblin)"},{"c":21,"s":5,"id":115,"u":"goblin_crb,state:h-razortooth-crb=b1","p":48,"b":"Razortooth Goblin","n":"Razortooth Goblin (Goblin)"},{"c":21,"s":5,"id":116,"u":"goblin_crb,state:h-snow-crb=b1","p":48,"b":"Snow Goblin","n":"Snow Goblin (Goblin)"},{"c":21,"s":5,"id":117,"u":"goblin_crb,state:h-unbreakable-crb=b1","p":48,"b":"Unbreakable Goblin","n":"Unbreakable Goblin (Goblin)"},{"c":21,"s":6,"id":118,"u":"goblin_crb,state:h-tailed-locg=b1","p":37,"b":"Tailed Goblin","n":"Tailed Goblin (Goblin)"},{"c":21,"s":6,"id":119,"u":"goblin_crb,state:h-treedweller-locg=b1","p":37,"b":"Treedweller Goblin","n":"Treedweller Goblin (Goblin)"},{"c":21,"s":0,"id":121,"u":"goloma_lome,state:h-farsight-lome=b1","p":115,"b":"Farsight Goloma","n":"Farsight Goloma (Goloma)"},{"c":21,"s":0,"id":122,"u":"goloma_lome,state:h-frightful-lome=b1","p":115,"b":"Frightful Goloma","n":"Frightful Goloma (Goloma)"},{"c":21,"s":0,"id":123,"u":"goloma_lome,state:h-insightful-lome=b1","p":115,"b":"Insightful Goloma","n":"Insightful Goloma (Goloma)"},{"c":21,"s":0,"id":124,"u":"goloma_lome,state:h-vicious-lome=b1","p":115,"b":"Vicious Goloma","n":"Vicious Goloma (Goloma)"},{"c":21,"s":0,"id":125,"u":"goloma_lome,state:h-vigilant-lome=b1","p":115,"b":"Vigilant Goloma","n":"Vigilant Goloma (Goloma)"},{"c":21,"s":0,"id":127,"u":"grippli_lome,state:h-poisonhide-lome=b1","p":119,"b":"Poisonhide Grippli","n":"Poisonhide Grippli (Grippli)"},{"c":21,"s":0,"id":128,"u":"grippli_lome,state:h-snaptongue-lome=b1","p":119,"b":"Snaptongue Grippli","n":"Snaptongue Grippli (Grippli)"},{"c":21,"s":0,"id":129,"u":"grippli_lome,state:h-stickytoe-lome=b1","p":119,"b":"Stickytoe Grippli","n":"Stickytoe Grippli (Grippli)"},{"c":21,"s":0,"id":130,"u":"grippli_lome,state:h-windweb-lome=b1","p":119,"b":"Windweb Grippli","n":"Windweb Grippli (Grippli)"},{"c":21,"s":5,"id":132,"u":"halfling_crb,state:h-gutsy-crb=b1","p":51,"b":"Gutsy Halfling","n":"Gutsy Halfling (Halfling)"},{"c":21,"s":5,"id":133,"u":"halfling_crb,state:h-hillock-crb=b1","p":51,"b":"Hillock Halfling","n":"Hillock Halfling (Halfling)"},{"c":21,"s":5,"id":134,"u":"halfling_crb,state:h-nomadic-crb=b1","p":52,"b":"Nomadic Halfling","n":"Nomadic Halfling (Halfling)"},{"c":21,"s":5,"id":135,"u":"halfling_crb,state:h-twilight-crb=b1","p":52,"b":"Twilight Halfling","n":"Twilight Halfling (Halfling)"},{"c":21,"s":5,"id":136,"u":"halfling_crb,state:h-wildwood-crb=b1","p":52,"b":"Wildwood Halfling","n":"Wildwood Halfling (Halfling)"},{"c":21,"s":6,"id":137,"u":"halfling_crb,state:h-observant-locg=b1","p":43,"b":"Observant Halfling","n":"Observant Halfling (Halfling)"},{"c":21,"s":6,"id":139,"u":"hobgoblin_locg,state:h-elfbane-locg=b1","p":49,"b":"Elfbane Hobgoblin","n":"Elfbane Hobgoblin (Hobgoblin)"},{"c":21,"s":6,"id":140,"u":"hobgoblin_locg,state:h-runtboss-locg=b1","p":49,"b":"Runtboss Hobgoblin","n":"Runtboss Hobgoblin (Hobgoblin)"},{"c":21,"s":6,"id":141,"u":"hobgoblin_locg,state:h-smokeworker-locg=b1","p":49,"b":"Smokeworker Hobgoblin","n":"Smokeworker Hobgoblin (Hobgoblin)"},{"c":21,"s":6,"id":142,"u":"hobgoblin_locg,state:h-warmarch-locg=b1","p":49,"b":"Warmarch Hobgoblin","n":"Warmarch Hobgoblin (Hobgoblin)"},{"c":21,"s":6,"id":143,"u":"hobgoblin_locg,state:h-warrenbred-locg=b1","p":49,"b":"Warrenbred Hobgoblin","n":"Warrenbred Hobgoblin (Hobgoblin)"},{"c":21,"s":5,"id":145,"u":"human_crb,state:h-halfelf-crb=b1","p":56,"b":"Half-Elf","n":"Half-Elf (Human)"},{"c":21,"s":5,"id":146,"u":"human_crb,state:h-halforc-crb=b1","p":56,"b":"Half-Orc","n":"Half-Orc (Human)"},{"c":21,"s":5,"id":147,"u":"human_crb,state:h-skilled-crb=b1","p":56,"b":"Skilled Heritage","n":"Skilled Heritage (Human)"},{"c":21,"s":5,"id":148,"u":"human_crb,state:h-versatile-crb=b1","p":56,"b":"Versatile Heritage","n":"Versatile Heritage (Human)"},{"c":21,"s":6,"id":149,"u":"human_crb,state:h-wintertouched-locg=b1","p":11,"b":"Wintertouched Heritage","n":"Wintertouched Heritage (Human)"},{"c":21,"s":1,"id":151,"u":"kitsune_loag,state:h-celestial-envoy-loag=b1","p":123,"b":"Celestial Envoy Kitsune","n":"Celestial Envoy Kitsune (Kitsune)"},{"c":21,"s":1,"id":152,"u":"kitsune_loag,state:h-dark-fields-loag=b1","p":123,"b":"Dark Fields Kitsune","n":"Dark Fields Kitsune (Kitsune)"},{"c":21,"s":1,"id":153,"u":"kitsune_loag,state:h-earthly-wilds-loag=b1","p":123,"b":"Earthly Wilds Kitsune","n":"Earthly Wilds Kitsune (Kitsune)"},{"c":21,"s":1,"id":154,"u":"kitsune_loag,state:h-empty-sky-loag=b1","p":123,"b":"Empty Sky Kitsune","n":"Empty Sky Kitsune (Kitsune)"},{"c":21,"s":1,"id":155,"u":"kitsune_loag,state:h-frozen-wind-loag=b1","p":123,"b":"Frozen Wind Kitsune","n":"Frozen Wind Kitsune (Kitsune)"},{"c":21,"s":4,"id":157,"u":"kobold_apg,state:h-cavern-apg=b1","p":13,"b":"Cavern Kobold","n":"Cavern Kobold (Kobold)"},{"c":21,"s":4,"id":158,"u":"kobold_apg,state:h-dragonscaled-apg=b1","p":13,"b":"Dragonscaled Kobold","n":"Dragonscaled Kobold (Kobold)"},{"c":21,"s":4,"id":159,"u":"kobold_apg,state:h-spellscale-apg=b1","p":14,"b":"Spellscale Kobold","n":"Spellscale Kobold (Kobold)"},{"c":21,"s":4,"id":160,"u":"kobold_apg,state:h-strongjaw-apg=b1","p":14,"b":"Strongjaw Kobold","n":"Strongjaw Kobold (Kobold)"},{"c":21,"s":4,"id":161,"u":"kobold_apg,state:h-venomtail-apg=b1","p":14,"b":"Venomtail Kobold","n":"Venomtail Kobold (Kobold)"},{"c":21,"s":1,"id":162,"u":"kobold_apg,state:h-caveclimber-loag=b1","p":37,"b":"Caveclimber Kobold","n":"Caveclimber Kobold (Kobold)"},{"c":21,"s":1,"id":163,"u":"kobold_apg,state:h-tunnelflood-loag=b1","p":37,"b":"Tunnelflood Kobold","n":"Tunnelflood Kobold (Kobold)"},{"c":21,"s":1,"id":165,"u":"leshy_locg,state:h-cactus-loag=b1","p":41,"b":"Cactus Leshy","n":"Cactus Leshy (Leshy)"},{"c":21,"s":1,"id":166,"u":"leshy_locg,state:h-fruit-loag=b1","p":42,"b":"Fruit Leshy","n":"Fruit Leshy (Leshy)"},{"c":21,"s":1,"id":167,"u":"leshy_locg,state:h-lotus-loag=b1","p":42,"b":"Lotus Leshy","n":"Lotus Leshy (Leshy)"},{"c":21,"s":1,"id":168,"u":"leshy_locg,state:h-root-loag=b1","p":42,"b":"Root Leshy","n":"Root Leshy (Leshy)"},{"c":21,"s":1,"id":169,"u":"leshy_locg,state:h-seaweed-loag=b1","p":42,"b":"Seaweed Leshy","n":"Seaweed Leshy (Leshy)"},{"c":21,"s":6,"id":170,"u":"leshy_locg,state:h-fungus-locg=b1","p":53,"b":"Fungus Leshy","n":"Fungus Leshy (Leshy)"},{"c":21,"s":6,"id":171,"u":"leshy_locg,state:h-gourd-locg=b1","p":53,"b":"Gourd Leshy","n":"Gourd Leshy (Leshy)"},{"c":21,"s":6,"id":172,"u":"leshy_locg,state:h-leaf-locg=b1","p":53,"b":"Leaf Leshy","n":"Leaf Leshy (Leshy)"},{"c":21,"s":6,"id":173,"u":"leshy_locg,state:h-vine-locg=b1","p":53,"b":"Vine Leshy","n":"Vine Leshy (Leshy)"},{"c":21,"s":6,"id":175,"u":"lizardfolk_locg,state:h-cliffscale-locg=b1","p":57,"b":"Cliffscale Lizardfolk","n":"Cliffscale Lizardfolk (Lizardfolk)"},{"c":21,"s":6,"id":176,"u":"lizardfolk_locg,state:h-frilled-locg=b1","p":57,"b":"Frilled Lizardfolk","n":"Frilled Lizardfolk (Lizardfolk)"},{"c":21,"s":6,"id":177,"u":"lizardfolk_locg,state:h-sandstrider-locg=b1","p":57,"b":"Sandstrider Lizardfolk","n":"Sandstrider Lizardfolk (Lizardfolk)"},{"c":21,"s":6,"id":178,"u":"lizardfolk_locg,state:h-unseen-locg=b1","p":57,"b":"Unseen Lizardfolk","n":"Unseen Lizardfolk (Lizardfolk)"},{"c":21,"s":6,"id":179,"u":"lizardfolk_locg,state:h-wetlander-locg=b1","p":57,"b":"Wetlander Lizardfolk","n":"Wetlander Lizardfolk (Lizardfolk)"},{"c":21,"s":1,"id":180,"u":"lizardfolk_locg,state:h-cloudleaper-loag=b1","p":45,"b":"Cloudleaper Lizardfolk","n":"Cloudleaper Lizardfolk (Lizardfolk)"},{"c":21,"s":1,"id":181,"u":"lizardfolk_locg,state:h-woodstalker-loag=b1","p":45,"b":"Woodstalker Lizardfolk","n":"Woodstalker Lizardfolk (Lizardfolk)"},{"c":21,"s":4,"id":183,"u":"orc_apg,state:h-badlands-apg=b1","p":18,"b":"Badlands Orc","n":"Badlands Orc (Orc)"},{"c":21,"s":4,"id":184,"u":"orc_apg,state:h-deep-apg=b1","p":18,"b":"Deep Orc","n":"Deep Orc (Orc)"},{"c":21,"s":4,"id":185,"u":"orc_apg,state:h-holdscarred-apg=b1","p":18,"b":"Hold-Scarred Orc","n":"Hold-Scarred Orc (Orc)"},{"c":21,"s":4,"id":186,"u":"orc_apg,state:h-rainfall-apg=b1","p":18,"b":"Rainfall Orc","n":"Rainfall Orc (Orc)"},{"c":21,"s":1,"id":187,"u":"orc_apg,state:h-battleready-loag=b1","p":49,"b":"Battle-Ready Orc","n":"Battle-Ready Orc (Orc)"},{"c":21,"s":1,"id":188,"u":"orc_apg,state:h-grave-loag=b1","p":50,"b":"Grave Orc","n":"Grave Orc (Orc)"},{"c":21,"s":1,"id":189,"u":"orc_apg,state:h-winter-loag=b1","p":50,"b":"Winter Orc","n":"Winter Orc (Orc)"},{"c":21,"s":7,"id":191,"u":"poppet_lotgb,state:h-ghost-lotgb=b1","p":62,"b":"Ghost Poppet","n":"Ghost Poppet (Poppet)"},{"c":21,"s":7,"id":192,"u":"poppet_lotgb,state:h-stuffed-lotgb=b1","p":62,"b":"Stuffed Poppet","n":"Stuffed Poppet (Poppet)"},{"c":21,"s":7,"id":193,"u":"poppet_lotgb,state:h-toy-lotgb=b1","p":63,"b":"Toy Poppet","n":"Toy Poppet (Poppet)"},{"c":21,"s":7,"id":194,"u":"poppet_lotgb,state:h-windup-lotgb=b1","p":63,"b":"Windup Poppet","n":"Windup Poppet (Poppet)"},{"c":21,"s":7,"id":195,"u":"poppet_lotgb,state:h-wishborn-lotgb=b1","p":63,"b":"Wishborn Poppet","n":"Wishborn Poppet (Poppet)"},{"c":21,"s":4,"id":197,"u":"ratfolk_apg,state:h-deep-apg=b1","p":21,"b":"Deep Rat","n":"Deep Rat (Ratfolk)"},{"c":21,"s":4,"id":198,"u":"ratfolk_apg,state:h-desert-apg=b1","p":21,"b":"Desert Rat","n":"Desert Rat (Ratfolk)"},{"c":21,"s":4,"id":199,"u":"ratfolk_apg,state:h-longsnout-apg=b1","p":21,"b":"Longsnout Rat","n":"Longsnout Rat (Ratfolk)"},{"c":21,"s":4,"id":200,"u":"ratfolk_apg,state:h-sewer-apg=b1","p":22,"b":"Sewer Rat","n":"Sewer Rat (Ratfolk)"},{"c":21,"s":4,"id":201,"u":"ratfolk_apg,state:h-shadow-apg=b1","p":22,"b":"Shadow Rat","n":"Shadow Rat (Ratfolk)"},{"c":21,"s":1,"id":202,"u":"ratfolk_apg,state:h-snow-loag=b1","p":22,"b":"Snow Rat","n":"Snow Rat (Ratfolk)"},{"c":21,"s":1,"id":203,"u":"ratfolk_apg,state:h-tunnel-loag=b1","p":22,"b":"Tunnel Rat","n":"Tunnel Rat (Ratfolk)"},{"c":21,"s":0,"id":205,"u":"shisk_lome,state:h-lorekeeper-lome=b1","p":123,"b":"Lorekeeper Shisk","n":"Lorekeeper Shisk (Shisk)"},{"c":21,"s":0,"id":206,"u":"shisk_lome,state:h-quillcoat-lome=b1","p":123,"b":"Quillcoat Shisk","n":"Quillcoat Shisk (Shisk)"},{"c":21,"s":0,"id":207,"u":"shisk_lome,state:h-spellkeeper-lome=b1","p":123,"b":"Spellkeeper Shisk","n":"Spellkeeper Shisk (Shisk)"},{"c":21,"s":0,"id":208,"u":"shisk_lome,state:h-stronggut-lome=b1","p":123,"b":"Stronggut Shisk","n":"Stronggut Shisk (Shisk)"},{"c":21,"s":0,"id":209,"u":"shisk_lome,state:h-stonestep-lome=b1","p":124,"b":"Stonestep Shisk","n":"Stonestep Shisk (Shisk)"},{"c":21,"s":8,"id":211,"u":"shoony_ec3,state:h-bloodhound-ec3=b1","p":71,"b":"Bloodhound Shoony","n":"Bloodhound Shoony (Shoony)"},{"c":21,"s":8,"id":212,"u":"shoony_ec3,state:h-fishseeker-ec3=b1","p":71,"b":"Fishseeker Shoony","n":"Fishseeker Shoony (Shoony)"},{"c":21,"s":8,"id":213,"u":"shoony_ec3,state:h-paddler-ec3=b1","p":71,"b":"Paddler Shoony","n":"Paddler Shoony (Shoony)"},{"c":21,"s":8,"id":214,"u":"shoony_ec3,state:h-thickcoat-ec3=b1","p":71,"b":"Thickcoat Shoony","n":"Thickcoat Shoony (Shoony)"},{"c":21,"s":1,"id":216,"u":"sprite_loag,state:h-draxie-loag=b1","p":129,"b":"Draxie","n":"Draxie (Sprite)"},{"c":21,"s":1,"id":217,"u":"sprite_loag,state:h-grig-loag=b1","p":129,"b":"Grig","n":"Grig (Sprite)"},{"c":21,"s":1,"id":218,"u":"sprite_loag,state:h-luminous-loag=b1","p":129,"b":"Luminous Sprite","n":"Luminous Sprite (Sprite)"},{"c":21,"s":1,"id":219,"u":"sprite_loag,state:h-melixie-loag=b1","p":129,"b":"Melixie","n":"Melixie (Sprite)"},{"c":21,"s":1,"id":220,"u":"sprite_loag,state:h-nyktera-loag=b1","p":129,"b":"Nyktera","n":"Nyktera (Sprite)"},{"c":21,"s":1,"id":221,"u":"sprite_loag,state:h-pixie-loag=b1","p":129,"b":"Pixie","n":"Pixie (Sprite)"},{"c":21,"s":1,"id":223,"u":"strix_loag,state:h-nightglider-loag=b1","p":135,"b":"Nightglider Strix","n":"Nightglider Strix (Strix)"},{"c":21,"s":1,"id":224,"u":"strix_loag,state:h-predator-loag=b1","p":135,"b":"Predator Strix","n":"Predator Strix (Strix)"},{"c":21,"s":1,"id":225,"u":"strix_loag,state:h-scavenger-loag=b1","p":135,"b":"Scavenger Strix","n":"Scavenger Strix (Strix)"},{"c":21,"s":1,"id":226,"u":"strix_loag,state:h-shoreline-loag=b1","p":135,"b":"Shoreline Strix","n":"Shoreline Strix (Strix)"},{"c":21,"s":1,"id":227,"u":"strix_loag,state:h-songbird-loag=b1","p":135,"b":"Songbird Strix","n":"Songbird Strix (Strix)"},{"c":21,"s":4,"id":229,"u":"tengu_apg,state:h-jinxed-apg=b1","p":25,"b":"Jinxed Tengu","n":"Jinxed Tengu (Tengu)"},{"c":21,"s":4,"id":230,"u":"tengu_apg,state:h-mountainkeeper-apg=b1","p":25,"b":"Mountainkeeper Tengu","n":"Mountainkeeper Tengu (Tengu)"},{"c":21,"s":4,"id":231,"u":"tengu_apg,state:h-skyborn-apg=b1","p":26,"b":"Skyborn Tengu","n":"Skyborn Tengu (Tengu)"},{"c":21,"s":4,"id":232,"u":"tengu_apg,state:h-stormtossed-apg=b1","p":26,"b":"Stormtossed Tengu","n":"Stormtossed Tengu (Tengu)"},{"c":21,"s":4,"id":233,"u":"tengu_apg,state:h-taloned-apg=b1","p":26,"b":"Taloned Tengu","n":"Taloned Tengu (Tengu)"},{"c":21,"s":1,"id":234,"u":"tengu_apg,state:h-dogtooth-loag=b1","p":57,"b":"Dogtooth Tengu","n":"Dogtooth Tengu (Tengu)"},{"c":21,"s":1,"id":235,"u":"tengu_apg,state:h-wavediver-loag=b1","p":57,"b":"Wavediver Tengu","n":"Wavediver Tengu (Tengu)"},{"c":22,"s":4,"id":236,"u":"blankhash,state:h-aasimar-apg=b1","p":34,"n":"Aasimar"},{"c":22,"s":1,"id":237,"u":"blankhash,state:h-aphorite-loag=b1","p":74,"n":"Aphorite"},{"c":22,"s":1,"id":238,"u":"blankhash,state:h-beastkin-loag=b1","p":78,"n":"Beastkin"},{"c":22,"s":4,"id":239,"u":"blankhash,state:h-changeling-apg=b1","p":30,"n":"Changeling"},{"c":22,"s":4,"id":240,"u":"blankhash,state:h-dhampir-apg=b1","p":32,"n":"Dhampir"},{"c":22,"s":4,"id":241,"u":"blankhash,state:h-duskwalker-apg=b1","p":37,"n":"Duskwalker"},{"c":22,"s":1,"id":242,"u":"blankhash,state:h-ganzi-loag=b1","p":94,"n":"Ganzi"},{"c":22,"s":1,"id":243,"u":"blankhash,state:h-ifrit-loag=b1","p":100,"n":"Ifrit"},{"c":22,"s":1,"id":244,"u":"blankhash,state:h-oread-loag=b1","p":104,"n":"Oread"},{"c":22,"s":1,"id":245,"u":"blankhash,state:h-suli-loag=b1","p":108,"n":"Suli"},{"c":22,"s":1,"id":246,"u":"blankhash,state:h-sylph-loag=b1","p":112,"n":"Sylph"},{"c":22,"s":4,"id":247,"u":"blankhash,state:h-tiefling-apg=b1","p":39,"n":"Tiefling"},{"c":22,"s":1,"id":248,"u":"blankhash,state:h-undine-loag=b1","p":116,"n":"Undine"},{"c":1,"s":9,"id":249,"u":"aasimar%20redeemer_bst","p":263,"h":1,"n":"Aasimar Redeemer"},{"c":1,"s":9,"id":250,"u":"adamantine%20golem_bst","p":189,"h":1,"n":"Adamantine Golem"},{"c":1,"s":9,"id":251,"u":"adult%20black%20dragon_bst","p":105,"h":1,"n":"Adult Black Dragon"},{"c":1,"s":9,"id":252,"u":"adult%20blue%20dragon_bst","p":108,"h":1,"n":"Adult Blue Dragon"},{"c":1,"s":9,"id":253,"u":"adult%20brass%20dragon_bst","p":118,"h":1,"n":"Adult Brass Dragon"},{"c":1,"s":9,"id":254,"u":"adult%20bronze%20dragon_bst","p":120,"h":1,"n":"Adult Bronze Dragon"},{"c":1,"s":9,"id":255,"u":"adult%20copper%20dragon_bst","p":122,"h":1,"n":"Adult Copper Dragon"},{"c":1,"s":9,"id":256,"u":"adult%20gold%20dragon_bst","p":124,"h":1,"n":"Adult Gold Dragon"},{"c":1,"s":9,"id":257,"u":"adult%20green%20dragon_bst","p":110,"h":1,"n":"Adult Green Dragon"},{"c":1,"s":9,"id":258,"u":"adult%20red%20dragon_bst","p":112,"h":1,"n":"Adult Red Dragon"},{"c":1,"s":9,"id":259,"u":"adult%20silver%20dragon_bst","p":126,"h":1,"n":"Adult Silver Dragon"},{"c":1,"s":9,"id":260,"u":"adult%20white%20dragon_bst","p":114,"h":1,"n":"Adult White Dragon"},{"c":1,"s":9,"id":261,"u":"air%20mephit_bst","p":150,"h":1,"n":"Air Mephit"},{"c":1,"s":9,"id":262,"u":"alchemical%20golem_bst","p":185,"h":1,"n":"Alchemical Golem"},{"c":1,"s":9,"id":263,"u":"alghollthu%20master_bst","p":14,"h":1,"n":"Alghollthu Master"},{"c":1,"s":9,"id":264,"u":"ancient%20black%20dragon_bst","p":106,"h":1,"n":"Ancient Black Dragon"},{"c":1,"s":9,"id":265,"u":"ancient%20blue%20dragon_bst","p":108,"h":1,"n":"Ancient Blue Dragon"},{"c":1,"s":9,"id":266,"u":"ancient%20brass%20dragon_bst","p":118,"h":1,"n":"Ancient Brass Dragon"},{"c":1,"s":9,"id":267,"u":"ancient%20bronze%20dragon_bst","p":120,"h":1,"n":"Ancient Bronze Dragon"},{"c":1,"s":9,"id":268,"u":"ancient%20copper%20dragon_bst","p":122,"h":1,"n":"Ancient Copper Dragon"},{"c":1,"s":9,"id":269,"u":"ancient%20gold%20dragon_bst","p":125,"h":1,"n":"Ancient Gold Dragon"},{"c":1,"s":9,"id":270,"u":"ancient%20green%20dragon_bst","p":110,"h":1,"n":"Ancient Green Dragon"},{"c":1,"s":9,"id":271,"u":"ancient%20red%20dragon_bst","p":112,"h":1,"n":"Ancient Red Dragon"},{"c":1,"s":9,"id":272,"u":"ancient%20silver%20dragon_bst","p":127,"h":1,"n":"Ancient Silver Dragon"},{"c":1,"s":9,"id":273,"u":"ancient%20white%20dragon_bst","p":115,"h":1,"n":"Ancient White Dragon"},{"c":1,"s":9,"id":274,"u":"animated%20armor_bst","p":20,"h":1,"n":"Animated Armor"},{"c":1,"s":9,"id":275,"u":"animated%20broom_bst","p":20,"h":1,"n":"Animated Broom"},{"c":1,"s":9,"id":276,"u":"animated%20statue_bst","p":21,"h":1,"n":"Animated Statue"},{"c":1,"s":9,"id":277,"u":"ankhrav_bst","p":22,"h":1,"n":"Ankhrav"},{"c":1,"s":9,"id":278,"u":"ankylosaurus_bst","p":97,"h":1,"n":"Ankylosaurus"},{"c":1,"s":9,"id":279,"u":"annis%20hag_bst","p":202,"h":1,"n":"Annis Hag"},{"c":1,"s":9,"id":280,"u":"arbiter_bst","p":8,"h":1,"n":"Arbiter"},{"c":1,"s":9,"id":281,"u":"arboreal%20regent_bst","p":25,"h":1,"n":"Arboreal Regent"},{"c":1,"s":9,"id":282,"u":"arboreal%20warden_bst","p":24,"h":1,"n":"Arboreal Warden"},{"c":1,"s":9,"id":283,"u":"astradaemon_bst","p":73,"h":1,"n":"Astradaemon"},{"c":1,"s":9,"id":284,"u":"astral%20deva_bst","p":19,"h":1,"n":"Astral Deva"},{"c":1,"s":9,"id":285,"u":"awakened%20tree_bst","p":25,"h":1,"n":"Awakened Tree"},{"c":1,"s":9,"id":286,"u":"axiomite_bst","p":9,"h":1,"n":"Axiomite"},{"c":1,"s":9,"id":287,"u":"azure%20worm_bst","p":57,"h":1,"n":"Azure Worm"},{"c":1,"s":9,"id":288,"u":"balisse_bst","p":18,"h":1,"n":"Balisse"},{"c":1,"s":9,"id":289,"u":"ball%20python_bst","p":302,"h":1,"n":"Ball Python"},{"c":1,"s":9,"id":290,"u":"balor_bst","p":83,"h":1,"n":"Balor"},{"c":1,"s":9,"id":291,"u":"banshee_bst","p":34,"h":1,"n":"Banshee"},{"c":1,"s":9,"id":292,"u":"baomal_bst","p":35,"h":1,"n":"Baomal"},{"c":1,"s":9,"id":293,"u":"barbazu_bst","p":88,"h":1,"n":"Barbazu"},{"c":1,"s":9,"id":294,"u":"barghest_bst","p":36,"h":1,"n":"Barghest"},{"c":1,"s":9,"id":295,"u":"basilisk_bst","p":38,"h":1,"n":"Basilisk"},{"c":1,"s":9,"id":296,"u":"black%20pudding_bst","p":255,"h":1,"n":"Black Pudding"},{"c":1,"s":9,"id":297,"u":"bloodseeker_bst","p":42,"h":1,"n":"Bloodseeker"},{"c":1,"s":9,"id":298,"u":"boar_bst","p":43,"h":1,"n":"Boar"},{"c":1,"s":9,"id":299,"u":"boggard%20scout_bst","p":44,"h":1,"n":"Boggard Scout"},{"c":1,"s":9,"id":300,"u":"boggard%20swampseer_bst","p":45,"h":1,"n":"Boggard Swampseer"},{"c":1,"s":9,"id":301,"u":"boggard%20warrior_bst","p":44,"h":1,"n":"Boggard Warrior"},{"c":1,"s":9,"id":302,"u":"brain%20collector_bst","p":46,"h":1,"n":"Brain Collector"},{"c":1,"s":9,"id":303,"u":"brine%20shark_bst","p":152,"h":1,"n":"Brine Shark"},{"c":1,"s":9,"id":304,"u":"brontosaurus_bst","p":100,"h":1,"n":"Brontosaurus"},{"c":1,"s":9,"id":305,"u":"bugbear%20thug_bst","p":47,"h":1,"n":"Bugbear Thug"},{"c":1,"s":9,"id":306,"u":"bugbear%20tormentor_bst","p":47,"h":1,"n":"Bugbear Tormentor"},{"c":1,"s":9,"id":307,"u":"bulette_bst","p":48,"h":1,"n":"Bulette"},{"c":1,"s":9,"id":308,"u":"bunyip_bst","p":49,"h":1,"n":"Bunyip"},{"c":1,"s":9,"id":309,"u":"cacodaemon_bst","p":70,"h":1,"n":"Cacodaemon"},{"c":1,"s":9,"id":310,"u":"caligni%20creeper_bst","p":50,"h":1,"n":"Caligni Creeper"},{"c":1,"s":9,"id":311,"u":"caligni%20dancer_bst","p":50,"h":1,"n":"Caligni Dancer"},{"c":1,"s":9,"id":312,"u":"caligni%20stalker_bst","p":51,"h":1,"n":"Caligni Stalker"},{"c":1,"s":9,"id":313,"u":"cassisian_bst","p":16,"h":1,"n":"Cassisian"},{"c":1,"s":9,"id":314,"u":"catfolk%20pouncer_bst","p":54,"h":1,"n":"Catfolk Pouncer"},{"c":1,"s":9,"id":315,"u":"cauthooj_bst","p":55,"h":1,"n":"Cauthooj"},{"c":1,"s":9,"id":316,"u":"cave%20bear_bst","p":40,"h":1,"n":"Cave Bear"},{"c":1,"s":9,"id":317,"u":"centaur_bst","p":60,"h":1,"n":"Centaur"},{"c":1,"s":9,"id":318,"u":"centipede%20swarm_bst","p":61,"h":1,"n":"Centipede Swarm"},{"c":1,"s":9,"id":319,"u":"ceustodaemon_bst","p":71,"h":1,"n":"Ceustodaemon"},{"c":1,"s":9,"id":320,"u":"changeling%20exile_bst","p":62,"h":1,"n":"Changeling Exile"},{"c":1,"s":9,"id":321,"u":"chimera_bst","p":63,"h":1,"n":"Chimera"},{"c":1,"s":9,"id":322,"u":"choral_bst","p":17,"h":1,"n":"Choral"},{"c":1,"s":9,"id":323,"u":"chuul_bst","p":64,"h":1,"n":"Chuul"},{"c":1,"s":9,"id":324,"u":"cinder%20rat_bst","p":148,"h":1,"n":"Cinder Rat"},{"c":1,"s":9,"id":325,"u":"clay%20golem_bst","p":186,"h":1,"n":"Clay Golem"},{"c":1,"s":9,"id":326,"u":"cloaker_bst","p":65,"h":1,"n":"Cloaker"},{"c":1,"s":9,"id":327,"u":"cloud%20giant_bst","p":173,"h":1,"n":"Cloud Giant"},{"c":1,"s":9,"id":328,"u":"cockatrice_bst","p":66,"h":1,"n":"Cockatrice"},{"c":1,"s":9,"id":329,"u":"crag%20linnorm_bst","p":224,"h":1,"n":"Crag Linnorm"},{"c":1,"s":9,"id":330,"u":"crimson%20worm_bst","p":59,"h":1,"n":"Crimson Worm"},{"c":1,"s":9,"id":331,"u":"crocodile_bst","p":67,"h":1,"n":"Crocodile"},{"c":1,"s":9,"id":332,"u":"cyclops_bst","p":68,"h":1,"n":"Cyclops"},{"c":1,"s":9,"id":333,"u":"daeodon_bst","p":43,"h":1,"n":"Daeodon"},{"c":1,"s":9,"id":334,"u":"dandasuka_bst","p":274,"h":1,"n":"Dandasuka"},{"c":1,"s":9,"id":335,"u":"dark%20naga_bst","p":242,"h":1,"n":"Dark Naga"},{"c":1,"s":9,"id":336,"u":"deadly%20mantis_bst","p":233,"h":1,"n":"Deadly Mantis"},{"c":1,"s":9,"id":337,"u":"deep%20gnome%20rockwarden_bst","p":75,"h":1,"n":"Deep Gnome Rockwarden"},{"c":1,"s":9,"id":338,"u":"deep%20gnome%20scout_bst","p":74,"h":1,"n":"Deep Gnome Scout"},{"c":1,"s":9,"id":339,"u":"deep%20gnome%20warrior_bst","p":75,"h":1,"n":"Deep Gnome Warrior"},{"c":1,"s":9,"id":340,"u":"deinonychus_bst","p":97,"h":1,"n":"Deinonychus"},{"c":1,"s":9,"id":341,"u":"deinosuchus_bst","p":67,"h":1,"n":"Deinosuchus"},{"c":1,"s":9,"id":342,"u":"demilich_bst","p":222,"h":1,"n":"Demilich"},{"c":1,"s":9,"id":343,"u":"dero%20magister_bst","p":85,"h":1,"n":"Dero Magister"},{"c":1,"s":9,"id":344,"u":"dero%20stalker_bst","p":84,"h":1,"n":"Dero Stalker"},{"c":1,"s":9,"id":345,"u":"dero%20strangler_bst","p":84,"h":1,"n":"Dero Strangler"},{"c":1,"s":9,"id":346,"u":"desert%20drake_bst","p":135,"h":1,"n":"Desert Drake"},{"c":1,"s":9,"id":347,"u":"dezullon_bst","p":94,"h":1,"n":"Dezullon"},{"c":1,"s":9,"id":348,"u":"dhampir%20wizard_bst","p":95,"h":1,"n":"Dhampir Wizard"},{"c":1,"s":9,"id":349,"u":"dire%20wolf_bst","p":334,"h":1,"n":"Dire Wolf"},{"c":1,"s":9,"id":350,"u":"djinni_bst","p":163,"h":1,"n":"Djinni"},{"c":1,"s":9,"id":351,"u":"doppelganger_bst","p":103,"h":1,"n":"Doppelganger"},{"c":1,"s":9,"id":352,"u":"dragon%20turtle_bst","p":128,"h":1,"n":"Dragon Turtle"},{"c":1,"s":9,"id":353,"u":"drakauthix_bst","p":129,"h":1,"n":"Drakauthix"},{"c":1,"s":9,"id":354,"u":"drider_bst","p":159,"h":1,"n":"Drider"},{"c":1,"s":9,"id":355,"u":"drow%20fighter_bst","p":136,"h":1,"n":"Drow Fighter"},{"c":1,"s":9,"id":356,"u":"drow%20priestess_bst","p":137,"h":1,"n":"Drow Priestess"},{"c":1,"s":9,"id":357,"u":"drow%20rogue_bst","p":137,"h":1,"n":"Drow Rogue"},{"c":1,"s":9,"id":358,"u":"dryad_bst","p":246,"h":1,"n":"Dryad"},{"c":1,"s":9,"id":359,"u":"dryad%20queen_bst","p":249,"h":1,"n":"Dryad Queen"},{"c":1,"s":9,"id":360,"u":"duergar%20bombardier_bst","p":139,"h":1,"n":"Duergar Bombardier"},{"c":1,"s":9,"id":361,"u":"duergar%20sharpshooter_bst","p":138,"h":1,"n":"Duergar Sharpshooter"},{"c":1,"s":9,"id":362,"u":"duergar%20taskmaster_bst","p":139,"h":1,"n":"Duergar Taskmaster"},{"c":1,"s":9,"id":363,"u":"dullahan_bst","p":140,"h":1,"n":"Dullahan"},{"c":1,"s":9,"id":364,"u":"duskwalker%20ghost%20hunter_bst","p":262,"h":1,"n":"Duskwalker Ghost Hunter"},{"c":1,"s":9,"id":365,"u":"eagle_bst","p":141,"h":1,"n":"Eagle"},{"c":1,"s":9,"id":366,"u":"earth%20mephit_bst","p":150,"h":1,"n":"Earth Mephit"},{"c":1,"s":9,"id":367,"u":"efreeti_bst","p":164,"h":1,"n":"Efreeti"},{"c":1,"s":9,"id":368,"u":"elananx_bst","p":143,"h":1,"n":"Elananx"},{"c":1,"s":9,"id":369,"u":"electric%20eel_bst","p":142,"h":1,"n":"Electric Eel"},{"c":1,"s":9,"id":370,"u":"elemental%20avalanche_bst","p":147,"h":1,"n":"Elemental Avalanche"},{"c":1,"s":9,"id":371,"u":"elemental%20hurricane_bst","p":145,"h":1,"n":"Elemental Hurricane"},{"c":1,"s":9,"id":372,"u":"elemental%20inferno_bst","p":149,"h":1,"n":"Elemental Inferno"},{"c":1,"s":9,"id":373,"u":"elemental%20tsunami_bst","p":153,"h":1,"n":"Elemental Tsunami"},{"c":1,"s":9,"id":374,"u":"elephant_bst","p":154,"h":1,"n":"Elephant"},{"c":1,"s":9,"id":375,"u":"erinys_bst","p":89,"h":1,"n":"Erinys"},{"c":1,"s":9,"id":376,"u":"ether%20spider_bst","p":155,"h":1,"n":"Ether Spider"},{"c":1,"s":9,"id":377,"u":"ettin_bst","p":156,"h":1,"n":"Ettin"},{"c":1,"s":9,"id":378,"u":"faceless%20stalker_bst","p":13,"h":1,"n":"Faceless Stalker"},{"c":1,"s":9,"id":379,"u":"faerie%20dragon_bst","p":157,"h":1,"n":"Faerie Dragon"},{"c":1,"s":9,"id":380,"u":"fire%20giant_bst","p":172,"h":1,"n":"Fire Giant"},{"c":1,"s":9,"id":381,"u":"fire%20mephit_bst","p":151,"h":1,"n":"Fire Mephit"},{"c":1,"s":9,"id":382,"u":"firewyrm_bst","p":149,"h":1,"n":"Firewyrm"},{"c":1,"s":9,"id":383,"u":"flame%20drake_bst","p":131,"h":1,"n":"Flame Drake"},{"c":1,"s":9,"id":384,"u":"flash%20beetle_bst","p":41,"h":1,"n":"Flash Beetle"},{"c":1,"s":9,"id":385,"u":"flesh%20golem_bst","p":185,"h":1,"n":"Flesh Golem"},{"c":1,"s":9,"id":386,"u":"frost%20drake_bst","p":134,"h":1,"n":"Frost Drake"},{"c":1,"s":9,"id":387,"u":"frost%20giant_bst","p":171,"h":1,"n":"Frost Giant"},{"c":1,"s":9,"id":388,"u":"fungus%20leshy_bst","p":219,"h":1,"n":"Fungus Leshy"},{"c":1,"s":9,"id":389,"u":"gancanagh_bst","p":31,"h":1,"n":"Gancanagh"},{"c":1,"s":9,"id":390,"u":"gargoyle_bst","p":161,"h":1,"n":"Gargoyle"},{"c":1,"s":9,"id":391,"u":"gelatinous%20cube_bst","p":254,"h":1,"n":"Gelatinous Cube"},{"c":1,"s":9,"id":392,"u":"gelugon_bst","p":91,"h":1,"n":"Gelugon"},{"c":1,"s":9,"id":393,"u":"ghaele_bst","p":33,"h":1,"n":"Ghaele"},{"c":1,"s":9,"id":394,"u":"ghast_bst","p":169,"h":1,"n":"Ghast"},{"c":1,"s":9,"id":395,"u":"ghost%20commoner_bst","p":167,"h":1,"n":"Ghost Commoner"},{"c":1,"s":9,"id":396,"u":"ghost%20mage_bst","p":167,"h":1,"n":"Ghost Mage"},{"c":1,"s":9,"id":397,"u":"ghoul_bst","p":169,"h":1,"n":"Ghoul"},{"c":1,"s":9,"id":398,"u":"giant%20anaconda_bst","p":303,"h":1,"n":"Giant Anaconda"},{"c":1,"s":9,"id":399,"u":"giant%20animated%20statue_bst","p":21,"h":1,"n":"Giant Animated Statue"},{"c":1,"s":9,"id":400,"u":"giant%20bat_bst","p":39,"h":1,"n":"Giant Bat"},{"c":1,"s":9,"id":401,"u":"giant%20centipede_bst","p":61,"h":1,"n":"Giant Centipede"},{"c":1,"s":9,"id":402,"u":"giant%20eagle_bst","p":141,"h":1,"n":"Giant Eagle"},{"c":1,"s":9,"id":403,"u":"giant%20flytrap_bst","p":160,"h":1,"n":"Giant Flytrap"},{"c":1,"s":9,"id":404,"u":"giant%20frilled%20lizard_bst","p":229,"h":1,"n":"Giant Frilled Lizard"},{"c":1,"s":9,"id":405,"u":"giant%20gecko_bst","p":228,"h":1,"n":"Giant Gecko"},{"c":1,"s":9,"id":406,"u":"giant%20mantis_bst","p":233,"h":1,"n":"Giant Mantis"},{"c":1,"s":9,"id":407,"u":"giant%20monitor%20lizard_bst","p":229,"h":1,"n":"Giant Monitor Lizard"},{"c":1,"s":9,"id":408,"u":"giant%20moray%20eel_bst","p":142,"h":1,"n":"Giant Moray Eel"},{"c":1,"s":9,"id":409,"u":"giant%20octopus_bst","p":250,"h":1,"n":"Giant Octopus"},{"c":1,"s":9,"id":410,"u":"giant%20rat_bst","p":276,"h":1,"n":"Giant Rat"},{"c":1,"s":9,"id":411,"u":"giant%20scorpion_bst","p":285,"h":1,"n":"Giant Scorpion"},{"c":1,"s":9,"id":412,"u":"giant%20stag%20beetle_bst","p":41,"h":1,"n":"Giant Stag Beetle"},{"c":1,"s":9,"id":413,"u":"giant%20tarantula_bst","p":307,"h":1,"n":"Giant Tarantula"},{"c":1,"s":9,"id":414,"u":"giant%20viper_bst","p":303,"h":1,"n":"Giant Viper"},{"c":1,"s":9,"id":415,"u":"giant%20wasp_bst","p":324,"h":1,"n":"Giant Wasp"},{"c":1,"s":9,"id":416,"u":"gibbering%20mouther_bst","p":176,"h":1,"n":"Gibbering Mouther"},{"c":1,"s":9,"id":417,"u":"gimmerling_bst","p":177,"h":1,"n":"Gimmerling"},{"c":1,"s":9,"id":418,"u":"glabrezu_bst","p":79,"h":1,"n":"Glabrezu"},{"c":1,"s":9,"id":419,"u":"gnoll%20cultist_bst","p":179,"h":1,"n":"Gnoll Cultist"},{"c":1,"s":9,"id":420,"u":"gnoll%20hunter_bst","p":178,"h":1,"n":"Gnoll Hunter"},{"c":1,"s":9,"id":421,"u":"gnoll%20sergeant_bst","p":179,"h":1,"n":"Gnoll Sergeant"},{"c":1,"s":9,"id":422,"u":"goblin%20commando_bst","p":180,"h":1,"n":"Goblin Commando"},{"c":1,"s":9,"id":423,"u":"goblin%20dog_bst","p":182,"h":1,"n":"Goblin Dog"},{"c":1,"s":9,"id":424,"u":"goblin%20pyro_bst","p":181,"h":1,"n":"Goblin Pyro"},{"c":1,"s":9,"id":425,"u":"goblin%20war%20chanter_bst","p":181,"h":1,"n":"Goblin War Chanter"},{"c":1,"s":9,"id":426,"u":"goblin%20warrior_bst","p":180,"h":1,"n":"Goblin Warrior"},{"c":1,"s":9,"id":427,"u":"gogiteth_bst","p":183,"h":1,"n":"Gogiteth"},{"c":1,"s":9,"id":428,"u":"goliath%20spider_bst","p":307,"h":1,"n":"Goliath Spider"},{"c":1,"s":9,"id":429,"u":"gorilla_bst","p":23,"h":1,"n":"Gorilla"},{"c":1,"s":9,"id":430,"u":"gourd%20leshy_bst","p":218,"h":1,"n":"Gourd Leshy"},{"c":1,"s":9,"id":431,"u":"great%20cyclops_bst","p":69,"h":1,"n":"Great Cyclops"},{"c":1,"s":9,"id":432,"u":"great%20white%20shark_bst","p":291,"h":1,"n":"Great White Shark"},{"c":1,"s":9,"id":433,"u":"greater%20barghest_bst","p":37,"h":1,"n":"Greater Barghest"},{"c":1,"s":9,"id":434,"u":"greater%20nightmare_bst","p":244,"h":1,"n":"Greater Nightmare"},{"c":1,"s":9,"id":435,"u":"greater%20shadow_bst","p":289,"h":1,"n":"Greater Shadow"},{"c":1,"s":9,"id":436,"u":"green%20hag_bst","p":201,"h":1,"n":"Green Hag"},{"c":1,"s":9,"id":437,"u":"griffon_bst","p":194,"h":1,"n":"Griffon"},{"c":1,"s":9,"id":438,"u":"grig_bst","p":308,"h":1,"n":"Grig"},{"c":1,"s":9,"id":439,"u":"grikkitog_bst","p":195,"h":1,"n":"Grikkitog"},{"c":1,"s":9,"id":440,"u":"grim%20reaper_bst","p":196,"h":1,"n":"Grim Reaper"},{"c":1,"s":9,"id":441,"u":"grizzly%20bear_bst","p":40,"h":1,"n":"Grizzly Bear"},{"c":1,"s":9,"id":442,"u":"grothlut_bst","p":158,"h":1,"n":"Grothlut"},{"c":1,"s":9,"id":443,"u":"guard%20dog_bst","p":102,"h":1,"n":"Guard Dog"},{"c":1,"s":9,"id":444,"u":"guardian%20naga_bst","p":243,"h":1,"n":"Guardian Naga"},{"c":1,"s":9,"id":445,"u":"gug_bst","p":198,"h":1,"n":"Gug"},{"c":1,"s":9,"id":446,"u":"guthallath_bst","p":199,"h":1,"n":"Guthallath"},{"c":1,"s":9,"id":447,"u":"harpy_bst","p":204,"h":1,"n":"Harpy"},{"c":1,"s":9,"id":448,"u":"hell%20hound_bst","p":205,"h":1,"n":"Hell Hound"},{"c":1,"s":9,"id":449,"u":"hill%20giant_bst","p":170,"h":1,"n":"Hill Giant"},{"c":1,"s":9,"id":450,"u":"hive%20mother_bst","p":22,"h":1,"n":"Hive Mother"},{"c":1,"s":9,"id":451,"u":"hobgoblin%20archer_bst","p":207,"h":1,"n":"Hobgoblin Archer"},{"c":1,"s":9,"id":452,"u":"hobgoblin%20general_bst","p":207,"h":1,"n":"Hobgoblin General"},{"c":1,"s":9,"id":453,"u":"hobgoblin%20soldier_bst","p":206,"h":1,"n":"Hobgoblin Soldier"},{"c":1,"s":9,"id":454,"u":"homunculus_bst","p":208,"h":1,"n":"Homunculus"},{"c":1,"s":9,"id":455,"u":"horned%20archon_bst","p":27,"h":1,"n":"Horned Archon"},{"c":1,"s":9,"id":456,"u":"hunting%20spider_bst","p":306,"h":1,"n":"Hunting Spider"},{"c":1,"s":9,"id":457,"u":"hyaenodon_bst","p":211,"h":1,"n":"Hyaenodon"},{"c":1,"s":9,"id":458,"u":"hydra_bst","p":210,"h":1,"n":"Hydra"},{"c":1,"s":9,"id":459,"u":"hyena_bst","p":211,"h":1,"n":"Hyena"},{"c":1,"s":9,"id":460,"u":"ice%20linnorm_bst","p":225,"h":1,"n":"Ice Linnorm"},{"c":1,"s":9,"id":461,"u":"imp_bst","p":87,"h":1,"n":"Imp"},{"c":1,"s":9,"id":462,"u":"invisible%20stalker_bst","p":144,"h":1,"n":"Invisible Stalker"},{"c":1,"s":9,"id":463,"u":"iron%20golem_bst","p":188,"h":1,"n":"Iron Golem"},{"c":1,"s":9,"id":464,"u":"janni_bst","p":162,"h":1,"n":"Janni"},{"c":1,"s":9,"id":465,"u":"jinkin_bst","p":193,"h":1,"n":"Jinkin"},{"c":1,"s":9,"id":466,"u":"jungle%20drake_bst","p":132,"h":1,"n":"Jungle Drake"},{"c":1,"s":9,"id":467,"u":"keketar_bst","p":269,"h":1,"n":"Keketar"},{"c":1,"s":9,"id":468,"u":"kobold%20dragon%20mage_bst","p":213,"h":1,"n":"Kobold Dragon Mage"},{"c":1,"s":9,"id":469,"u":"kobold%20scout_bst","p":213,"h":1,"n":"Kobold Scout"},{"c":1,"s":9,"id":470,"u":"kobold%20warrior_bst","p":212,"h":1,"n":"Kobold Warrior"},{"c":1,"s":9,"id":471,"u":"kolyarut_bst","p":10,"h":1,"n":"Kolyarut"},{"c":1,"s":9,"id":472,"u":"kraken_bst","p":214,"h":1,"n":"Kraken"},{"c":1,"s":9,"id":473,"u":"krooth_bst","p":215,"h":1,"n":"Krooth"},{"c":1,"s":9,"id":474,"u":"lamia_bst","p":216,"h":1,"n":"Lamia"},{"c":1,"s":9,"id":475,"u":"lamia%20matriarch_bst","p":217,"h":1,"n":"Lamia Matriarch"},{"c":1,"s":9,"id":476,"u":"lantern%20archon_bst","p":26,"h":1,"n":"Lantern Archon"},{"c":1,"s":9,"id":477,"u":"leaf%20leshy_bst","p":218,"h":1,"n":"Leaf Leshy"},{"c":1,"s":9,"id":478,"u":"legion%20archon_bst","p":28,"h":1,"n":"Legion Archon"},{"c":1,"s":9,"id":479,"u":"lemure_bst","p":86,"h":1,"n":"Lemure"},{"c":1,"s":9,"id":480,"u":"leopard_bst","p":52,"h":1,"n":"Leopard"},{"c":1,"s":9,"id":481,"u":"lesser%20death_bst","p":197,"h":1,"n":"Lesser Death"},{"c":1,"s":9,"id":482,"u":"leukodaemon_bst","p":72,"h":1,"n":"Leukodaemon"},{"c":1,"s":9,"id":483,"u":"lich_bst","p":221,"h":1,"n":"Lich"},{"c":1,"s":9,"id":484,"u":"lillend_bst","p":32,"h":1,"n":"Lillend"},{"c":1,"s":9,"id":485,"u":"lion_bst","p":52,"h":1,"n":"Lion"},{"c":1,"s":9,"id":486,"u":"living%20landslide_bst","p":146,"h":1,"n":"Living Landslide"},{"c":1,"s":9,"id":487,"u":"living%20waterfall_bst","p":152,"h":1,"n":"Living Waterfall"},{"c":1,"s":9,"id":488,"u":"living%20whirlwind_bst","p":144,"h":1,"n":"Living Whirlwind"},{"c":1,"s":9,"id":489,"u":"living%20wildfire_bst","p":148,"h":1,"n":"Living Wildfire"},{"c":1,"s":9,"id":490,"u":"lizardfolk%20defender_bst","p":230,"h":1,"n":"Lizardfolk Defender"},{"c":1,"s":9,"id":491,"u":"lizardfolk%20scout_bst","p":231,"h":1,"n":"Lizardfolk Scout"},{"c":1,"s":9,"id":492,"u":"lizardfolk%20stargazer_bst","p":231,"h":1,"n":"Lizardfolk Stargazer"},{"c":1,"s":9,"id":493,"u":"lyrakien_bst","p":30,"h":1,"n":"Lyrakien"},{"c":1,"s":9,"id":494,"u":"mammoth_bst","p":154,"h":1,"n":"Mammoth"},{"c":1,"s":9,"id":495,"u":"manticore_bst","p":232,"h":1,"n":"Manticore"},{"c":1,"s":9,"id":496,"u":"marid_bst","p":165,"h":1,"n":"Marid"},{"c":1,"s":9,"id":497,"u":"marilith_bst","p":81,"h":1,"n":"Marilith"},{"c":1,"s":9,"id":498,"u":"medusa_bst","p":234,"h":1,"n":"Medusa"},{"c":1,"s":9,"id":499,"u":"megalodon_bst","p":291,"h":1,"n":"Megalodon"},{"c":1,"s":9,"id":500,"u":"megaprimatus_bst","p":23,"h":1,"n":"Megaprimatus"},{"c":1,"s":9,"id":501,"u":"merfolk%20warrior_bst","p":235,"h":1,"n":"Merfolk Warrior"},{"c":1,"s":9,"id":502,"u":"merfolk%20wavecaller_bst","p":235,"h":1,"n":"Merfolk Wavecaller"},{"c":1,"s":9,"id":503,"u":"mimic_bst","p":236,"h":1,"n":"Mimic"},{"c":1,"s":9,"id":504,"u":"minotaur_bst","p":237,"h":1,"n":"Minotaur"},{"c":1,"s":9,"id":505,"u":"mitflit_bst","p":192,"h":1,"n":"Mitflit"},{"c":1,"s":9,"id":506,"u":"morrigna_bst","p":271,"h":1,"n":"Morrigna"},{"c":1,"s":9,"id":507,"u":"mu%20spore_bst","p":238,"h":1,"n":"Mu Spore"},{"c":1,"s":9,"id":508,"u":"mukradi_bst","p":239,"h":1,"n":"Mukradi"},{"c":1,"s":9,"id":509,"u":"mummy%20guardian_bst","p":240,"h":1,"n":"Mummy Guardian"},{"c":1,"s":9,"id":510,"u":"mummy%20pharaoh_bst","p":241,"h":1,"n":"Mummy Pharaoh"},{"c":1,"s":9,"id":511,"u":"naiad_bst","p":246,"h":1,"n":"Naiad"},{"c":1,"s":9,"id":512,"u":"naiad%20queen_bst","p":248,"h":1,"n":"Naiad Queen"},{"c":1,"s":9,"id":513,"u":"naunet_bst","p":267,"h":1,"n":"Naunet"},{"c":1,"s":9,"id":514,"u":"nessian%20warhound_bst","p":205,"h":1,"n":"Nessian Warhound"},{"c":1,"s":9,"id":515,"u":"night%20hag_bst","p":202,"h":1,"n":"Night Hag"},{"c":1,"s":9,"id":516,"u":"nightmare_bst","p":244,"h":1,"n":"Nightmare"},{"c":1,"s":9,"id":517,"u":"nilith_bst","p":245,"h":1,"n":"Nilith"},{"c":1,"s":9,"id":518,"u":"nosoi_bst","p":270,"h":1,"n":"Nosoi"},{"c":1,"s":9,"id":519,"u":"ochre%20jelly_bst","p":255,"h":1,"n":"Ochre Jelly"},{"c":1,"s":9,"id":520,"u":"ofalth_bst","p":251,"h":1,"n":"Ofalth"},{"c":1,"s":9,"id":521,"u":"ogre%20boss_bst","p":253,"h":1,"n":"Ogre Boss"},{"c":1,"s":9,"id":522,"u":"ogre%20glutton_bst","p":253,"h":1,"n":"Ogre Glutton"},{"c":1,"s":9,"id":523,"u":"ogre%20warrior_bst","p":252,"h":1,"n":"Ogre Warrior"},{"c":1,"s":9,"id":524,"u":"orc%20brute_bst","p":256,"h":1,"n":"Orc Brute"},{"c":1,"s":9,"id":525,"u":"orc%20warchief_bst","p":257,"h":1,"n":"Orc Warchief"},{"c":1,"s":9,"id":526,"u":"orc%20warrior_bst","p":257,"h":1,"n":"Orc Warrior"},{"c":1,"s":9,"id":527,"u":"otyugh_bst","p":258,"h":1,"n":"Otyugh"},{"c":1,"s":9,"id":528,"u":"owlbear_bst","p":259,"h":1,"n":"Owlbear"},{"c":1,"s":9,"id":529,"u":"pegasus_bst","p":260,"h":1,"n":"Pegasus"},{"c":1,"s":9,"id":530,"u":"phistophilus_bst","p":90,"h":1,"n":"Phistophilus"},{"c":1,"s":9,"id":531,"u":"phoenix_bst","p":261,"h":1,"n":"Phoenix"},{"c":1,"s":9,"id":532,"u":"pit%20fiend_bst","p":92,"h":1,"n":"Pit Fiend"},{"c":1,"s":9,"id":533,"u":"pixie_bst","p":309,"h":1,"n":"Pixie"},{"c":1,"s":9,"id":534,"u":"plague%20zombie_bst","p":340,"h":1,"n":"Plague Zombie"},{"c":1,"s":9,"id":535,"u":"pleroma_bst","p":10,"h":1,"n":"Pleroma"},{"c":1,"s":9,"id":536,"u":"poltergeist_bst","p":264,"h":1,"n":"Poltergeist"},{"c":1,"s":9,"id":537,"u":"poracha_bst","p":265,"h":1,"n":"Poracha"},{"c":1,"s":9,"id":538,"u":"pteranodon_bst","p":272,"h":1,"n":"Pteranodon"},{"c":1,"s":9,"id":539,"u":"pugwampi_bst","p":193,"h":1,"n":"Pugwampi"},{"c":1,"s":9,"id":540,"u":"purple%20worm_bst","p":56,"h":1,"n":"Purple Worm"},{"c":1,"s":9,"id":541,"u":"quasit_bst","p":76,"h":1,"n":"Quasit"},{"c":1,"s":9,"id":542,"u":"quatoid_bst","p":153,"h":1,"n":"Quatoid"},{"c":1,"s":9,"id":543,"u":"quelaunt_bst","p":273,"h":1,"n":"Quelaunt"},{"c":1,"s":9,"id":544,"u":"quetzalcoatlus_bst","p":272,"h":1,"n":"Quetzalcoatlus"},{"c":1,"s":9,"id":545,"u":"raja%20rakshasa_bst","p":275,"h":1,"n":"Raja Rakshasa"},{"c":1,"s":9,"id":546,"u":"rat%20swarm_bst","p":276,"h":1,"n":"Rat Swarm"},{"c":1,"s":9,"id":547,"u":"ratfolk%20grenadier_bst","p":277,"h":1,"n":"Ratfolk Grenadier"},{"c":1,"s":9,"id":548,"u":"redcap_bst","p":278,"h":1,"n":"Redcap"},{"c":1,"s":9,"id":549,"u":"reefclaw_bst","p":279,"h":1,"n":"Reefclaw"},{"c":1,"s":9,"id":550,"u":"remorhaz_bst","p":280,"h":1,"n":"Remorhaz"},{"c":1,"s":9,"id":551,"u":"riding%20dog_bst","p":102,"h":1,"n":"Riding Dog"},{"c":1,"s":9,"id":552,"u":"riding%20horse_bst","p":209,"h":1,"n":"Riding Horse"},{"c":1,"s":9,"id":553,"u":"riding%20pony_bst","p":209,"h":1,"n":"Riding Pony"},{"c":1,"s":9,"id":554,"u":"river%20drake_bst","p":131,"h":1,"n":"River Drake"},{"c":1,"s":9,"id":555,"u":"roc_bst","p":281,"h":1,"n":"Roc"},{"c":1,"s":9,"id":556,"u":"roper_bst","p":282,"h":1,"n":"Roper"},{"c":1,"s":9,"id":557,"u":"rune%20giant_bst","p":175,"h":1,"n":"Rune Giant"},{"c":1,"s":9,"id":558,"u":"rust%20monster_bst","p":283,"h":1,"n":"Rust Monster"},{"c":1,"s":9,"id":559,"u":"salamander_bst","p":148,"h":1,"n":"Salamander"},{"c":1,"s":9,"id":560,"u":"satyr_bst","p":284,"h":1,"n":"Satyr"},{"c":1,"s":9,"id":561,"u":"scorpion%20swarm_bst","p":285,"h":1,"n":"Scorpion Swarm"},{"c":1,"s":9,"id":562,"u":"sea%20devil%20baron_bst","p":287,"h":1,"n":"Sea Devil Baron"},{"c":1,"s":9,"id":563,"u":"sea%20devil%20brute_bst","p":287,"h":1,"n":"Sea Devil Brute"},{"c":1,"s":9,"id":564,"u":"sea%20devil%20scout_bst","p":286,"h":1,"n":"Sea Devil Scout"},{"c":1,"s":9,"id":565,"u":"sea%20hag_bst","p":200,"h":1,"n":"Sea Hag"},{"c":1,"s":9,"id":566,"u":"sea%20serpent_bst","p":288,"h":1,"n":"Sea Serpent"},{"c":1,"s":9,"id":567,"u":"sewer%20ooze_bst","p":254,"h":1,"n":"Sewer Ooze"},{"c":1,"s":9,"id":568,"u":"shadow_bst","p":289,"h":1,"n":"Shadow"},{"c":1,"s":9,"id":569,"u":"shaitan_bst","p":164,"h":1,"n":"Shaitan"},{"c":1,"s":9,"id":570,"u":"shambler_bst","p":290,"h":1,"n":"Shambler"},{"c":1,"s":9,"id":571,"u":"shemhazian_bst","p":80,"h":1,"n":"Shemhazian"},{"c":1,"s":9,"id":572,"u":"shield%20archon_bst","p":29,"h":1,"n":"Shield Archon"},{"c":1,"s":9,"id":573,"u":"shining%20child_bst","p":292,"h":1,"n":"Shining Child"},{"c":1,"s":9,"id":574,"u":"shoggoth_bst","p":293,"h":1,"n":"Shoggoth"},{"c":1,"s":9,"id":575,"u":"shuln_bst","p":294,"h":1,"n":"Shuln"},{"c":1,"s":9,"id":576,"u":"sinspawn_bst","p":297,"h":1,"n":"Sinspawn"},{"c":1,"s":9,"id":577,"u":"skeletal%20champion_bst","p":298,"h":1,"n":"Skeletal Champion"},{"c":1,"s":9,"id":578,"u":"skeletal%20giant_bst","p":299,"h":1,"n":"Skeletal Giant"},{"c":1,"s":9,"id":579,"u":"skeletal%20horse_bst","p":299,"h":1,"n":"Skeletal Horse"},{"c":1,"s":9,"id":580,"u":"skeletal%20hulk_bst","p":299,"h":1,"n":"Skeletal Hulk"},{"c":1,"s":9,"id":581,"u":"skeleton%20guard_bst","p":298,"h":1,"n":"Skeleton Guard"},{"c":1,"s":9,"id":582,"u":"skulltaker_bst","p":300,"h":1,"n":"Skulltaker"},{"c":1,"s":9,"id":583,"u":"skum_bst","p":12,"h":1,"n":"Skum"},{"c":1,"s":9,"id":584,"u":"slurk_bst","p":301,"h":1,"n":"Slurk"},{"c":1,"s":9,"id":585,"u":"smilodon_bst","p":53,"h":1,"n":"Smilodon"},{"c":1,"s":9,"id":586,"u":"snapping%20flytrap_bst","p":160,"h":1,"n":"Snapping Flytrap"},{"c":1,"s":9,"id":587,"u":"sod%20hound_bst","p":146,"h":1,"n":"Sod Hound"},{"c":1,"s":9,"id":588,"u":"soulbound%20doll_bst","p":304,"h":1,"n":"Soulbound Doll"},{"c":1,"s":9,"id":589,"u":"sphinx_bst","p":305,"h":1,"n":"Sphinx"},{"c":1,"s":9,"id":590,"u":"spider%20swarm_bst","p":306,"h":1,"n":"Spider Swarm"},{"c":1,"s":9,"id":591,"u":"sprite_bst","p":308,"h":1,"n":"Sprite"},{"c":1,"s":9,"id":592,"u":"stegosaurus_bst","p":98,"h":1,"n":"Stegosaurus"},{"c":1,"s":9,"id":593,"u":"stone%20giant_bst","p":170,"h":1,"n":"Stone Giant"},{"c":1,"s":9,"id":594,"u":"stone%20golem_bst","p":187,"h":1,"n":"Stone Golem"},{"c":1,"s":9,"id":595,"u":"stone%20mauler_bst","p":147,"h":1,"n":"Stone Mauler"},{"c":1,"s":9,"id":596,"u":"storm%20giant_bst","p":174,"h":1,"n":"Storm Giant"},{"c":1,"s":9,"id":597,"u":"storm%20lord_bst","p":145,"h":1,"n":"Storm Lord"},{"c":1,"s":9,"id":598,"u":"succubus_bst","p":77,"h":1,"n":"Succubus"},{"c":1,"s":9,"id":599,"u":"tarn%20linnorm_bst","p":226,"h":1,"n":"Tarn Linnorm"},{"c":1,"s":9,"id":600,"u":"tengu%20sneak_bst","p":310,"h":1,"n":"Tengu Sneak"},{"c":1,"s":9,"id":601,"u":"terotricus_bst","p":311,"h":1,"n":"Terotricus"},{"c":1,"s":9,"id":602,"u":"tidal%20master_bst","p":153,"h":1,"n":"Tidal Master"},{"c":1,"s":9,"id":603,"u":"tiefling%20adept_bst","p":262,"h":1,"n":"Tiefling Adept"},{"c":1,"s":9,"id":604,"u":"tiger_bst","p":53,"h":1,"n":"Tiger"},{"c":1,"s":9,"id":605,"u":"tor%20linnorm_bst","p":227,"h":1,"n":"Tor Linnorm"},{"c":1,"s":9,"id":606,"u":"treerazer_bst","p":312,"h":1,"n":"Treerazer"},{"c":1,"s":9,"id":607,"u":"triceratops_bst","p":99,"h":1,"n":"Triceratops"},{"c":1,"s":9,"id":608,"u":"troll_bst","p":314,"h":1,"n":"Troll"},{"c":1,"s":9,"id":609,"u":"troll%20king_bst","p":315,"h":1,"n":"Troll King"},{"c":1,"s":9,"id":610,"u":"tyrannosaurus_bst","p":101,"h":1,"n":"Tyrannosaurus"},{"c":1,"s":9,"id":611,"u":"unicorn_bst","p":316,"h":1,"n":"Unicorn"},{"c":1,"s":9,"id":612,"u":"uthul_bst","p":317,"h":1,"n":"Uthul"},{"c":1,"s":9,"id":613,"u":"vampire%20bat%20swarm_bst","p":39,"h":1,"n":"Vampire Bat Swarm"},{"c":1,"s":9,"id":614,"u":"vampire%20count_bst","p":320,"h":1,"n":"Vampire Count"},{"c":1,"s":9,"id":615,"u":"vampire%20mastermind_bst","p":321,"h":1,"n":"Vampire Mastermind"},{"c":1,"s":9,"id":616,"u":"vampire%20spawn%20rogue_bst","p":320,"h":1,"n":"Vampire Spawn Rogue"},{"c":1,"s":9,"id":617,"u":"veiled%20master_bst","p":15,"h":1,"n":"Veiled Master"},{"c":1,"s":9,"id":618,"u":"velociraptor_bst","p":96,"h":1,"n":"Velociraptor"},{"c":1,"s":9,"id":619,"u":"viper_bst","p":302,"h":1,"n":"Viper"},{"c":1,"s":9,"id":620,"u":"voidworm_bst","p":266,"h":1,"n":"Voidworm"},{"c":1,"s":9,"id":621,"u":"vrock_bst","p":78,"h":1,"n":"Vrock"},{"c":1,"s":9,"id":622,"u":"war%20horse_bst","p":209,"h":1,"n":"War Horse"},{"c":1,"s":9,"id":623,"u":"war%20pony_bst","p":209,"h":1,"n":"War Pony"},{"c":1,"s":9,"id":624,"u":"warg_bst","p":322,"h":1,"n":"Warg"},{"c":1,"s":9,"id":625,"u":"warsworn_bst","p":323,"h":1,"n":"Warsworn"},{"c":1,"s":9,"id":626,"u":"wasp%20swarm_bst","p":324,"h":1,"n":"Wasp Swarm"},{"c":1,"s":9,"id":627,"u":"water%20mephit_bst","p":151,"h":1,"n":"Water Mephit"},{"c":1,"s":9,"id":628,"u":"web%20lurker_bst","p":325,"h":1,"n":"Web Lurker"},{"c":1,"s":9,"id":629,"u":"wemmuth_bst","p":326,"h":1,"n":"Wemmuth"},{"c":1,"s":9,"id":630,"u":"wendigo_bst","p":327,"h":1,"n":"Wendigo"},{"c":1,"s":9,"id":631,"u":"werebear_bst","p":331,"h":1,"n":"Werebear"},{"c":1,"s":9,"id":632,"u":"wererat_bst","p":329,"h":1,"n":"Wererat"},{"c":1,"s":9,"id":633,"u":"werewolf_bst","p":330,"h":1,"n":"Werewolf"},{"c":1,"s":9,"id":634,"u":"wight_bst","p":332,"h":1,"n":"Wight"},{"c":1,"s":9,"id":635,"u":"will-o'-wisp_bst","p":333,"h":1,"n":"Will-o'-wisp"},{"c":1,"s":9,"id":636,"u":"winter%20wolf_bst","p":322,"h":1,"n":"Winter Wolf"},{"c":1,"s":9,"id":637,"u":"wolf_bst","p":334,"h":1,"n":"Wolf"},{"c":1,"s":9,"id":638,"u":"wraith_bst","p":335,"h":1,"n":"Wraith"},{"c":1,"s":9,"id":639,"u":"wyvern_bst","p":133,"h":1,"n":"Wyvern"},{"c":1,"s":9,"id":640,"u":"xorn_bst","p":146,"h":1,"n":"Xorn"},{"c":1,"s":9,"id":641,"u":"xulgath%20leader_bst","p":337,"h":1,"n":"Xulgath Leader"},{"c":1,"s":9,"id":642,"u":"xulgath%20skulker_bst","p":337,"h":1,"n":"Xulgath Skulker"},{"c":1,"s":9,"id":643,"u":"xulgath%20warrior_bst","p":336,"h":1,"n":"Xulgath Warrior"},{"c":1,"s":9,"id":644,"u":"yeti_bst","p":338,"h":1,"n":"Yeti"},{"c":1,"s":9,"id":645,"u":"young%20black%20dragon_bst","p":105,"h":1,"n":"Young Black Dragon"},{"c":1,"s":9,"id":646,"u":"young%20blue%20dragon_bst","p":107,"h":1,"n":"Young Blue Dragon"},{"c":1,"s":9,"id":647,"u":"young%20brass%20dragon_bst","p":117,"h":1,"n":"Young Brass Dragon"},{"c":1,"s":9,"id":648,"u":"young%20bronze%20dragon_bst","p":119,"h":1,"n":"Young Bronze Dragon"},{"c":1,"s":9,"id":649,"u":"young%20copper%20dragon_bst","p":121,"h":1,"n":"Young Copper Dragon"},{"c":1,"s":9,"id":650,"u":"young%20gold%20dragon_bst","p":124,"h":1,"n":"Young Gold Dragon"},{"c":1,"s":9,"id":651,"u":"young%20green%20dragon_bst","p":109,"h":1,"n":"Young Green Dragon"},{"c":1,"s":9,"id":652,"u":"young%20red%20dragon_bst","p":112,"h":1,"n":"Young Red Dragon"},{"c":1,"s":9,"id":653,"u":"young%20silver%20dragon_bst","p":126,"h":1,"n":"Young Silver Dragon"},{"c":1,"s":9,"id":654,"u":"young%20white%20dragon_bst","p":113,"h":1,"n":"Young White Dragon"},{"c":1,"s":9,"id":655,"u":"zaramuun_bst","p":339,"h":1,"n":"Zaramuun"},{"c":1,"s":9,"id":656,"u":"zephyr%20hawk_bst","p":144,"h":1,"n":"Zephyr Hawk"},{"c":1,"s":9,"id":657,"u":"zombie%20brute_bst","p":341,"h":1,"n":"Zombie Brute"},{"c":1,"s":9,"id":658,"u":"zombie%20hulk_bst","p":341,"h":1,"n":"Zombie Hulk"},{"c":1,"s":9,"id":659,"u":"zombie%20shambler_bst","p":340,"h":1,"n":"Zombie Shambler"},{"c":1,"s":10,"id":660,"u":"aapoph%20serpentfolk_bst2","p":238,"h":1,"n":"Aapoph Serpentfolk"},{"c":1,"s":10,"id":661,"u":"adult%20brine%20dragon_bst2","p":87,"h":1,"n":"Adult Brine Dragon"},{"c":1,"s":10,"id":662,"u":"adult%20cloud%20dragon_bst2","p":90,"h":1,"n":"Adult Cloud Dragon"},{"c":1,"s":10,"id":663,"u":"adult%20crystal%20dragon_bst2","p":92,"h":1,"n":"Adult Crystal Dragon"},{"c":1,"s":10,"id":664,"u":"adult%20magma%20dragon_bst2","p":94,"h":1,"n":"Adult Magma Dragon"},{"c":1,"s":10,"id":665,"u":"adult%20umbral%20dragon_bst2","p":96,"h":1,"n":"Adult Umbral Dragon"},{"c":1,"s":10,"id":666,"u":"ahuizotl_bst2","p":12,"h":1,"n":"Ahuizotl"},{"c":1,"s":10,"id":667,"u":"akata_bst2","p":13,"h":1,"n":"Akata"},{"c":1,"s":10,"id":668,"u":"akizendri_bst2","p":204,"h":1,"n":"Akizendri"},{"c":1,"s":10,"id":669,"u":"amoeba%20swarm_bst2","p":192,"h":1,"n":"Amoeba Swarm"},{"c":1,"s":10,"id":670,"u":"anancus_bst2","p":116,"h":1,"n":"Anancus"},{"c":1,"s":10,"id":671,"u":"ancient%20brine%20dragon_bst2","p":88,"h":1,"n":"Ancient Brine Dragon"},{"c":1,"s":10,"id":672,"u":"ancient%20cloud%20dragon_bst2","p":90,"h":1,"n":"Ancient Cloud Dragon"},{"c":1,"s":10,"id":673,"u":"ancient%20crystal%20dragon_bst2","p":92,"h":1,"n":"Ancient Crystal Dragon"},{"c":1,"s":10,"id":674,"u":"ancient%20magma%20dragon_bst2","p":95,"h":1,"n":"Ancient Magma Dragon"},{"c":1,"s":10,"id":675,"u":"ancient%20umbral%20dragon_bst2","p":97,"h":1,"n":"Ancient Umbral Dragon"},{"c":1,"s":10,"id":676,"u":"animate%20dream_bst2","p":18,"h":1,"n":"Animate Dream"},{"c":1,"s":10,"id":677,"u":"ankou_bst2","p":19,"h":1,"n":"Ankou"},{"c":1,"s":10,"id":678,"u":"aolaz_bst2","p":21,"h":1,"n":"Aolaz"},{"c":1,"s":10,"id":679,"u":"army%20ant%20swarm_bst2","p":20,"h":1,"n":"Army Ant Swarm"},{"c":1,"s":10,"id":680,"u":"assassin%20vine_bst2","p":26,"h":1,"n":"Assassin Vine"},{"c":1,"s":10,"id":681,"u":"athach_bst2","p":27,"h":1,"n":"Athach"},{"c":1,"s":10,"id":682,"u":"attic%20whisperer_bst2","p":28,"h":1,"n":"Attic Whisperer"},{"c":1,"s":10,"id":683,"u":"augnagar_bst2","p":216,"h":1,"n":"Augnagar"},{"c":1,"s":10,"id":684,"u":"augur_bst2","p":280,"h":1,"n":"Augur"},{"c":1,"s":10,"id":685,"u":"aurumvorax_bst2","p":29,"h":1,"n":"Aurumvorax"},{"c":1,"s":10,"id":686,"u":"azuretzi_bst2","p":206,"h":1,"n":"Azuretzi"},{"c":1,"s":10,"id":687,"u":"babau_bst2","p":64,"h":1,"n":"Babau"},{"c":1,"s":10,"id":688,"u":"badger_bst2","p":32,"h":1,"n":"Badger"},{"c":1,"s":10,"id":689,"u":"baobhan%20sith_bst2","p":33,"h":1,"n":"Baobhan Sith"},{"c":1,"s":10,"id":690,"u":"basidirond_bst2","p":34,"h":1,"n":"Basidirond"},{"c":1,"s":10,"id":691,"u":"bastion%20archon_bst2","p":25,"h":1,"n":"Bastion Archon"},{"c":1,"s":10,"id":692,"u":"bebilith_bst2","p":37,"h":1,"n":"Bebilith"},{"c":1,"s":10,"id":693,"u":"behemoth%20hippopotamus_bst2","p":144,"h":1,"n":"Behemoth Hippopotamus"},{"c":1,"s":10,"id":694,"u":"behir_bst2","p":38,"h":1,"n":"Behir"},{"c":1,"s":10,"id":695,"u":"belker_bst2","p":106,"h":1,"n":"Belker"},{"c":1,"s":10,"id":696,"u":"black%20bear_bst2","p":36,"h":1,"n":"Black Bear"},{"c":1,"s":10,"id":697,"u":"black%20scorpion_bst2","p":234,"h":1,"n":"Black Scorpion"},{"c":1,"s":10,"id":698,"u":"blindheim_bst2","p":39,"h":1,"n":"Blindheim"},{"c":1,"s":10,"id":699,"u":"blink%20dog_bst2","p":40,"h":1,"n":"Blink Dog"},{"c":1,"s":10,"id":700,"u":"blizzardborn_bst2","p":115,"h":1,"n":"Blizzardborn"},{"c":1,"s":10,"id":701,"u":"blodeuwedd_bst2","p":41,"h":1,"n":"Blodeuwedd"},{"c":1,"s":10,"id":702,"u":"blue-ringed%20octopus_bst2","p":187,"h":1,"n":"Blue-ringed Octopus"},{"c":1,"s":10,"id":703,"u":"bodak_bst2","p":42,"h":1,"n":"Bodak"},{"c":1,"s":10,"id":704,"u":"bog%20mummy_bst2","p":177,"h":1,"n":"Bog Mummy"},{"c":1,"s":10,"id":705,"u":"bog%20strider_bst2","p":43,"h":1,"n":"Bog Strider"},{"c":1,"s":10,"id":706,"u":"bone%20prophet_bst2","p":239,"h":1,"n":"Bone Prophet"},{"c":1,"s":10,"id":707,"u":"bottlenose%20dolphin_bst2","p":84,"h":1,"n":"Bottlenose Dolphin"},{"c":1,"s":10,"id":708,"u":"bralani_bst2","p":30,"h":1,"n":"Bralani"},{"c":1,"s":10,"id":709,"u":"brood%20leech%20swarm_bst2","p":156,"h":1,"n":"Brood Leech Swarm"},{"c":1,"s":10,"id":710,"u":"brownie_bst2","p":44,"h":1,"n":"Brownie"},{"c":1,"s":10,"id":711,"u":"bythos_bst2","p":11,"h":1,"n":"Bythos"},{"c":1,"s":10,"id":712,"u":"cairn%20linnorm_bst2","p":166,"h":1,"n":"Cairn Linnorm"},{"c":1,"s":10,"id":713,"u":"cairn%20wight_bst2","p":292,"h":1,"n":"Cairn Wight"},{"c":1,"s":10,"id":714,"u":"calathgar_bst2","p":45,"h":1,"n":"Calathgar"},{"c":1,"s":10,"id":715,"u":"caligni%20slayer_bst2","p":46,"h":1,"n":"Caligni Slayer"},{"c":1,"s":10,"id":716,"u":"carbuncle_bst2","p":47,"h":1,"n":"Carbuncle"},{"c":1,"s":10,"id":717,"u":"carnivorous%20blob_bst2","p":195,"h":1,"n":"Carnivorous Blob"},{"c":1,"s":10,"id":718,"u":"carrion%20golem_bst2","p":128,"h":1,"n":"Carrion Golem"},{"c":1,"s":10,"id":719,"u":"catoblepas_bst2","p":48,"h":1,"n":"Catoblepas"},{"c":1,"s":10,"id":720,"u":"catrina_bst2","p":209,"h":1,"n":"Catrina"},{"c":1,"s":10,"id":721,"u":"cave%20fisher_bst2","p":49,"h":1,"n":"Cave Fisher"},{"c":1,"s":10,"id":722,"u":"cave%20scorpion_bst2","p":234,"h":1,"n":"Cave Scorpion"},{"c":1,"s":10,"id":723,"u":"cavern%20troll_bst2","p":265,"h":1,"n":"Cavern Troll"},{"c":1,"s":10,"id":724,"u":"chernobue_bst2","p":214,"h":1,"n":"Chernobue"},{"c":1,"s":10,"id":725,"u":"choker_bst2","p":51,"h":1,"n":"Choker"},{"c":1,"s":10,"id":726,"u":"chupacabra_bst2","p":52,"h":1,"n":"Chupacabra"},{"c":1,"s":10,"id":727,"u":"cockroach%20swarm_bst2","p":53,"h":1,"n":"Cockroach Swarm"},{"c":1,"s":10,"id":728,"u":"coil%20spy_bst2","p":238,"h":1,"n":"Coil Spy"},{"c":1,"s":10,"id":729,"u":"compsognathus_bst2","p":80,"h":1,"n":"Compsognathus"},{"c":1,"s":10,"id":730,"u":"cornugon_bst2","p":77,"h":1,"n":"Cornugon"},{"c":1,"s":10,"id":731,"u":"crawling%20hand_bst2","p":56,"h":1,"n":"Crawling Hand"},{"c":1,"s":10,"id":732,"u":"culdewen_bst2","p":57,"h":1,"n":"Culdewen"},{"c":1,"s":10,"id":733,"u":"cythnigot_bst2","p":212,"h":1,"n":"Cythnigot"},{"c":1,"s":10,"id":734,"u":"d'ziriak_bst2","p":104,"h":1,"n":"D'ziriak"},{"c":1,"s":10,"id":735,"u":"denizen%20of%20leng_bst2","p":70,"h":1,"n":"Denizen Of Leng"},{"c":1,"s":10,"id":736,"u":"derghodaemon_bst2","p":60,"h":1,"n":"Derghodaemon"},{"c":1,"s":10,"id":737,"u":"destrachan_bst2","p":71,"h":1,"n":"Destrachan"},{"c":1,"s":10,"id":738,"u":"devourer_bst2","p":78,"h":1,"n":"Devourer"},{"c":1,"s":10,"id":739,"u":"dig-widget_bst2","p":79,"h":1,"n":"Dig-widget"},{"c":1,"s":10,"id":740,"u":"doprillu_bst2","p":85,"h":1,"n":"Doprillu"},{"c":1,"s":10,"id":741,"u":"dracolisk_bst2","p":35,"h":1,"n":"Dracolisk"},{"c":1,"s":10,"id":742,"u":"drainberry%20bush_bst2","p":99,"h":1,"n":"Drainberry Bush"},{"c":1,"s":10,"id":743,"u":"draugr_bst2","p":102,"h":1,"n":"Draugr"},{"c":1,"s":10,"id":744,"u":"dread%20wraith_bst2","p":298,"h":1,"n":"Dread Wraith"},{"c":1,"s":10,"id":745,"u":"dream%20spider_bst2","p":249,"h":1,"n":"Dream Spider"},{"c":1,"s":10,"id":746,"u":"duneshaker%20solifugid_bst2","p":246,"h":1,"n":"Duneshaker Solifugid"},{"c":1,"s":10,"id":747,"u":"dust%20mephit_bst2","p":112,"h":1,"n":"Dust Mephit"},{"c":1,"s":10,"id":748,"u":"dweomercat_bst2","p":103,"h":1,"n":"Dweomercat"},{"c":1,"s":10,"id":749,"u":"earthen%20destrier_bst2","p":108,"h":1,"n":"Earthen Destrier"},{"c":1,"s":10,"id":750,"u":"elasmosaurus_bst2","p":105,"h":1,"n":"Elasmosaurus"},{"c":1,"s":10,"id":751,"u":"ember%20fox_bst2","p":110,"h":1,"n":"Ember Fox"},{"c":1,"s":10,"id":752,"u":"emperor%20cobra_bst2","p":245,"h":1,"n":"Emperor Cobra"},{"c":1,"s":10,"id":753,"u":"eremite_bst2","p":285,"h":1,"n":"Eremite"},{"c":1,"s":10,"id":754,"u":"esobok_bst2","p":208,"h":1,"n":"Esobok"},{"c":1,"s":10,"id":755,"u":"evangelist_bst2","p":282,"h":1,"n":"Evangelist"},{"c":1,"s":10,"id":756,"u":"fen%20mosquito%20swarm_bst2","p":175,"h":1,"n":"Fen Mosquito Swarm"},{"c":1,"s":10,"id":757,"u":"fetchling%20scout_bst2","p":117,"h":1,"n":"Fetchling Scout"},{"c":1,"s":10,"id":758,"u":"filth%20fire_bst2","p":110,"h":1,"n":"Filth Fire"},{"c":1,"s":10,"id":759,"u":"fire%20jellyfish%20swarm_bst2","p":152,"h":1,"n":"Fire Jellyfish Swarm"},{"c":1,"s":10,"id":760,"u":"fire%20yai_bst2","p":190,"h":1,"n":"Fire Yai"},{"c":1,"s":10,"id":761,"u":"fjord%20linnorm_bst2","p":165,"h":1,"n":"Fjord Linnorm"},{"c":1,"s":10,"id":762,"u":"flytrap%20leshy_bst2","p":161,"h":1,"n":"Flytrap Leshy"},{"c":1,"s":10,"id":763,"u":"froghemoth_bst2","p":122,"h":1,"n":"Froghemoth"},{"c":1,"s":10,"id":764,"u":"frost%20troll_bst2","p":264,"h":1,"n":"Frost Troll"},{"c":1,"s":10,"id":765,"u":"frost%20worm_bst2","p":123,"h":1,"n":"Frost Worm"},{"c":1,"s":10,"id":766,"u":"ghonhatine_bst2","p":119,"h":1,"n":"Ghonhatine"},{"c":1,"s":10,"id":767,"u":"giant%20amoeba_bst2","p":192,"h":1,"n":"Giant Amoeba"},{"c":1,"s":10,"id":768,"u":"giant%20ant_bst2","p":20,"h":1,"n":"Giant Ant"},{"c":1,"s":10,"id":769,"u":"giant%20badger_bst2","p":32,"h":1,"n":"Giant Badger"},{"c":1,"s":10,"id":770,"u":"giant%20chameleon_bst2","p":168,"h":1,"n":"Giant Chameleon"},{"c":1,"s":10,"id":771,"u":"giant%20cockroach_bst2","p":53,"h":1,"n":"Giant Cockroach"},{"c":1,"s":10,"id":772,"u":"giant%20crab_bst2","p":55,"h":1,"n":"Giant Crab"},{"c":1,"s":10,"id":773,"u":"giant%20crawling%20hand_bst2","p":56,"h":1,"n":"Giant Crawling Hand"},{"c":1,"s":10,"id":774,"u":"giant%20dragonfly_bst2","p":98,"h":1,"n":"Giant Dragonfly"},{"c":1,"s":10,"id":775,"u":"giant%20dragonfly%20nymph_bst2","p":98,"h":1,"n":"Giant Dragonfly Nymph"},{"c":1,"s":10,"id":776,"u":"giant%20fly_bst2","p":120,"h":1,"n":"Giant Fly"},{"c":1,"s":10,"id":777,"u":"giant%20frog_bst2","p":121,"h":1,"n":"Giant Frog"},{"c":1,"s":10,"id":778,"u":"giant%20hippocampus_bst2","p":142,"h":1,"n":"Giant Hippocampus"},{"c":1,"s":10,"id":779,"u":"giant%20jellyfish_bst2","p":152,"h":1,"n":"Giant Jellyfish"},{"c":1,"s":10,"id":780,"u":"giant%20leech_bst2","p":156,"h":1,"n":"Giant Leech"},{"c":1,"s":10,"id":781,"u":"giant%20maggot_bst2","p":120,"h":1,"n":"Giant Maggot"},{"c":1,"s":10,"id":782,"u":"giant%20mosquito_bst2","p":175,"h":1,"n":"Giant Mosquito"},{"c":1,"s":10,"id":783,"u":"giant%20slug_bst2","p":244,"h":1,"n":"Giant Slug"},{"c":1,"s":10,"id":784,"u":"giant%20snapping%20turtle_bst2","p":269,"h":1,"n":"Giant Snapping Turtle"},{"c":1,"s":10,"id":785,"u":"giant%20solifugid_bst2","p":246,"h":1,"n":"Giant Solifugid"},{"c":1,"s":10,"id":786,"u":"giant%20squid_bst2","p":254,"h":1,"n":"Giant Squid"},{"c":1,"s":10,"id":787,"u":"giant%20tick_bst2","p":260,"h":1,"n":"Giant Tick"},{"c":1,"s":10,"id":788,"u":"giant%20toad_bst2","p":261,"h":1,"n":"Giant Toad"},{"c":1,"s":10,"id":789,"u":"giant%20whiptail%20centipede_bst2","p":50,"h":1,"n":"Giant Whiptail Centipede"},{"c":1,"s":10,"id":790,"u":"giant%20wolverine_bst2","p":295,"h":1,"n":"Giant Wolverine"},{"c":1,"s":10,"id":791,"u":"glass%20golem_bst2","p":131,"h":1,"n":"Glass Golem"},{"c":1,"s":10,"id":792,"u":"gorgon_bst2","p":132,"h":1,"n":"Gorgon"},{"c":1,"s":10,"id":793,"u":"gosreg_bst2","p":133,"h":1,"n":"Gosreg"},{"c":1,"s":10,"id":794,"u":"granite%20glyptodont_bst2","p":109,"h":1,"n":"Granite Glyptodont"},{"c":1,"s":10,"id":795,"u":"gray%20ooze_bst2","p":194,"h":1,"n":"Gray Ooze"},{"c":1,"s":10,"id":796,"u":"grendel_bst2","p":136,"h":1,"n":"Grendel"},{"c":1,"s":10,"id":797,"u":"grimstalker_bst2","p":137,"h":1,"n":"Grimstalker"},{"c":1,"s":10,"id":798,"u":"grindylow_bst2","p":138,"h":1,"n":"Grindylow"},{"c":1,"s":10,"id":799,"u":"grippli%20scout_bst2","p":139,"h":1,"n":"Grippli Scout"},{"c":1,"s":10,"id":800,"u":"grodair_bst2","p":140,"h":1,"n":"Grodair"},{"c":1,"s":10,"id":801,"u":"gylou_bst2","p":76,"h":1,"n":"Gylou"},{"c":1,"s":10,"id":802,"u":"hadrosaurid_bst2","p":82,"h":1,"n":"Hadrosaurid"},{"c":1,"s":10,"id":803,"u":"hamatula_bst2","p":74,"h":1,"n":"Hamatula"},{"c":1,"s":10,"id":804,"u":"hellcat_bst2","p":141,"h":1,"n":"Hellcat"},{"c":1,"s":10,"id":805,"u":"hezrou_bst2","p":67,"h":1,"n":"Hezrou"},{"c":1,"s":10,"id":806,"u":"hippocampus_bst2","p":142,"h":1,"n":"Hippocampus"},{"c":1,"s":10,"id":807,"u":"hippogriff_bst2","p":143,"h":1,"n":"Hippogriff"},{"c":1,"s":10,"id":808,"u":"hippopotamus_bst2","p":144,"h":1,"n":"Hippopotamus"},{"c":1,"s":10,"id":809,"u":"hodag_bst2","p":145,"h":1,"n":"Hodag"},{"c":1,"s":10,"id":810,"u":"hound%20archon_bst2","p":22,"h":1,"n":"Hound Archon"},{"c":1,"s":10,"id":811,"u":"hound%20of%20tindalos_bst2","p":146,"h":1,"n":"Hound Of Tindalos"},{"c":1,"s":10,"id":812,"u":"ice%20golem_bst2","p":129,"h":1,"n":"Ice Golem"},{"c":1,"s":10,"id":813,"u":"ice%20mephit_bst2","p":112,"h":1,"n":"Ice Mephit"},{"c":1,"s":10,"id":814,"u":"ice%20yai_bst2","p":189,"h":1,"n":"Ice Yai"},{"c":1,"s":10,"id":815,"u":"icewyrm_bst2","p":115,"h":1,"n":"Icewyrm"},{"c":1,"s":10,"id":816,"u":"icicle%20snake_bst2","p":114,"h":1,"n":"Icicle Snake"},{"c":1,"s":10,"id":817,"u":"ifrit%20pyrochemist_bst2","p":200,"h":1,"n":"Ifrit Pyrochemist"},{"c":1,"s":10,"id":818,"u":"iguanodon_bst2","p":82,"h":1,"n":"Iguanodon"},{"c":1,"s":10,"id":819,"u":"imentesh_bst2","p":207,"h":1,"n":"Imentesh"},{"c":1,"s":10,"id":820,"u":"intellect%20devourer_bst2","p":147,"h":1,"n":"Intellect Devourer"},{"c":1,"s":10,"id":821,"u":"interlocutor_bst2","p":284,"h":1,"n":"Interlocutor"},{"c":1,"s":10,"id":822,"u":"invidiak_bst2","p":65,"h":1,"n":"Invidiak"},{"c":1,"s":10,"id":823,"u":"irlgaunt_bst2","p":148,"h":1,"n":"Irlgaunt"},{"c":1,"s":10,"id":824,"u":"irnakurse_bst2","p":118,"h":1,"n":"Irnakurse"},{"c":1,"s":10,"id":825,"u":"isqulug_bst2","p":149,"h":1,"n":"Isqulug"},{"c":1,"s":10,"id":826,"u":"jabberwock_bst2","p":151,"h":1,"n":"Jabberwock"},{"c":1,"s":10,"id":827,"u":"jotund%20troll_bst2","p":267,"h":1,"n":"Jotund Troll"},{"c":1,"s":10,"id":828,"u":"jyoti_bst2","p":153,"h":1,"n":"Jyoti"},{"c":1,"s":10,"id":829,"u":"kelpie_bst2","p":154,"h":1,"n":"Kelpie"},{"c":1,"s":10,"id":830,"u":"korred_bst2","p":155,"h":1,"n":"Korred"},{"c":1,"s":10,"id":831,"u":"leng%20spider_bst2","p":157,"h":1,"n":"Leng Spider"},{"c":1,"s":10,"id":832,"u":"leprechaun_bst2","p":158,"h":1,"n":"Leprechaun"},{"c":1,"s":10,"id":833,"u":"lerritan_bst2","p":159,"h":1,"n":"Lerritan"},{"c":1,"s":10,"id":834,"u":"leucrotta_bst2","p":162,"h":1,"n":"Leucrotta"},{"c":1,"s":10,"id":835,"u":"leydroth_bst2","p":163,"h":1,"n":"Leydroth"},{"c":1,"s":10,"id":836,"u":"living%20boulder_bst2","p":108,"h":1,"n":"Living Boulder"},{"c":1,"s":10,"id":837,"u":"living%20thunderclap_bst2","p":106,"h":1,"n":"Living Thunderclap"},{"c":1,"s":10,"id":838,"u":"lunar%20naga_bst2","p":178,"h":1,"n":"Lunar Naga"},{"c":1,"s":10,"id":839,"u":"lurker%20in%20light_bst2","p":169,"h":1,"n":"Lurker In Light"},{"c":1,"s":10,"id":840,"u":"magma%20scorpion_bst2","p":111,"h":1,"n":"Magma Scorpion"},{"c":1,"s":10,"id":841,"u":"mandragora_bst2","p":170,"h":1,"n":"Mandragora"},{"c":1,"s":10,"id":842,"u":"manta%20ray_bst2","p":226,"h":1,"n":"Manta Ray"},{"c":1,"s":10,"id":843,"u":"marrmora_bst2","p":171,"h":1,"n":"Marrmora"},{"c":1,"s":10,"id":844,"u":"marsh%20giant_bst2","p":125,"h":1,"n":"Marsh Giant"},{"c":1,"s":10,"id":845,"u":"marut_bst2","p":10,"h":1,"n":"Marut"},{"c":1,"s":10,"id":846,"u":"mastodon_bst2","p":116,"h":1,"n":"Mastodon"},{"c":1,"s":10,"id":847,"u":"megalania_bst2","p":168,"h":1,"n":"Megalania"},{"c":1,"s":10,"id":848,"u":"meladaemon_bst2","p":59,"h":1,"n":"Meladaemon"},{"c":1,"s":10,"id":849,"u":"melody%20on%20the%20wind_bst2","p":107,"h":1,"n":"Melody On The Wind"},{"c":1,"s":10,"id":850,"u":"mist%20stalker_bst2","p":114,"h":1,"n":"Mist Stalker"},{"c":1,"s":10,"id":851,"u":"mohrg_bst2","p":172,"h":1,"n":"Mohrg"},{"c":1,"s":10,"id":852,"u":"monadic%20deva_bst2","p":15,"h":1,"n":"Monadic Deva"},{"c":1,"s":10,"id":853,"u":"moonflower_bst2","p":173,"h":1,"n":"Moonflower"},{"c":1,"s":10,"id":854,"u":"morlock_bst2","p":174,"h":1,"n":"Morlock"},{"c":1,"s":10,"id":855,"u":"movanic%20deva_bst2","p":14,"h":1,"n":"Movanic Deva"},{"c":1,"s":10,"id":856,"u":"mudwretch_bst2","p":176,"h":1,"n":"Mudwretch"},{"c":1,"s":10,"id":857,"u":"nabasu_bst2","p":66,"h":1,"n":"Nabasu"},{"c":1,"s":10,"id":858,"u":"nalfeshnee_bst2","p":68,"h":1,"n":"Nalfeshnee"},{"c":1,"s":10,"id":859,"u":"necrophidius_bst2","p":180,"h":1,"n":"Necrophidius"},{"c":1,"s":10,"id":860,"u":"neothelid_bst2","p":181,"h":1,"n":"Neothelid"},{"c":1,"s":10,"id":861,"u":"nereid_bst2","p":182,"h":1,"n":"Nereid"},{"c":1,"s":10,"id":862,"u":"nixie_bst2","p":183,"h":1,"n":"Nixie"},{"c":1,"s":10,"id":863,"u":"norn_bst2","p":184,"h":1,"n":"Norn"},{"c":1,"s":10,"id":864,"u":"nuckelavee_bst2","p":186,"h":1,"n":"Nuckelavee"},{"c":1,"s":10,"id":865,"u":"nuglub_bst2","p":135,"h":1,"n":"Nuglub"},{"c":1,"s":10,"id":866,"u":"nyogoth_bst2","p":214,"h":1,"n":"Nyogoth"},{"c":1,"s":10,"id":867,"u":"ogre%20spider_bst2","p":249,"h":1,"n":"Ogre Spider"},{"c":1,"s":10,"id":868,"u":"olethrodaemon_bst2","p":63,"h":1,"n":"Olethrodaemon"},{"c":1,"s":10,"id":869,"u":"onidoshi_bst2","p":188,"h":1,"n":"Onidoshi"},{"c":1,"s":10,"id":870,"u":"ooze%20mephit_bst2","p":113,"h":1,"n":"Ooze Mephit"},{"c":1,"s":10,"id":871,"u":"orca_bst2","p":84,"h":1,"n":"Orca"},{"c":1,"s":10,"id":872,"u":"oread%20guard_bst2","p":201,"h":1,"n":"Oread Guard"},{"c":1,"s":10,"id":873,"u":"ostiarius_bst2","p":281,"h":1,"n":"Ostiarius"},{"c":1,"s":10,"id":874,"u":"osyluth_bst2","p":74,"h":1,"n":"Osyluth"},{"c":1,"s":10,"id":875,"u":"pachycephalosaurus_bst2","p":81,"h":1,"n":"Pachycephalosaurus"},{"c":1,"s":10,"id":876,"u":"peluda_bst2","p":196,"h":1,"n":"Peluda"},{"c":1,"s":10,"id":877,"u":"peryton_bst2","p":197,"h":1,"n":"Peryton"},{"c":1,"s":10,"id":878,"u":"petitioner_bst2","p":198,"h":1,"n":"Petitioner"},{"c":1,"s":10,"id":879,"u":"piscodaemon_bst2","p":58,"h":1,"n":"Piscodaemon"},{"c":1,"s":10,"id":880,"u":"planetar_bst2","p":16,"h":1,"n":"Planetar"},{"c":1,"s":10,"id":881,"u":"polar%20bear_bst2","p":36,"h":1,"n":"Polar Bear"},{"c":1,"s":10,"id":882,"u":"purrodaemon_bst2","p":62,"h":1,"n":"Purrodaemon"},{"c":1,"s":10,"id":883,"u":"quetz%20couatl_bst2","p":54,"h":1,"n":"Quetz Couatl"},{"c":1,"s":10,"id":884,"u":"quickling_bst2","p":218,"h":1,"n":"Quickling"},{"c":1,"s":10,"id":885,"u":"quoppopak_bst2","p":219,"h":1,"n":"Quoppopak"},{"c":1,"s":10,"id":886,"u":"radiant%20warden_bst2","p":220,"h":1,"n":"Radiant Warden"},{"c":1,"s":10,"id":887,"u":"raven_bst2","p":221,"h":1,"n":"Raven"},{"c":1,"s":10,"id":888,"u":"raven%20swarm_bst2","p":221,"h":1,"n":"Raven Swarm"},{"c":1,"s":10,"id":889,"u":"ravener_bst2","p":224,"h":1,"n":"Ravener"},{"c":1,"s":10,"id":890,"u":"ravener%20husk_bst2","p":224,"h":1,"n":"Ravener Husk"},{"c":1,"s":10,"id":891,"u":"reef%20octopus_bst2","p":187,"h":1,"n":"Reef Octopus"},{"c":1,"s":10,"id":892,"u":"revenant_bst2","p":227,"h":1,"n":"Revenant"},{"c":1,"s":10,"id":893,"u":"rhinoceros_bst2","p":228,"h":1,"n":"Rhinoceros"},{"c":1,"s":10,"id":894,"u":"rusalka_bst2","p":229,"h":1,"n":"Rusalka"},{"c":1,"s":10,"id":895,"u":"sacristan_bst2","p":283,"h":1,"n":"Sacristan"},{"c":1,"s":10,"id":896,"u":"sand%20sentry_bst2","p":109,"h":1,"n":"Sand Sentry"},{"c":1,"s":10,"id":897,"u":"sandpoint%20devil_bst2","p":230,"h":1,"n":"Sandpoint Devil"},{"c":1,"s":10,"id":898,"u":"sard_bst2","p":231,"h":1,"n":"Sard"},{"c":1,"s":10,"id":899,"u":"sarglagon_bst2","p":73,"h":1,"n":"Sarglagon"},{"c":1,"s":10,"id":900,"u":"scarecrow_bst2","p":232,"h":1,"n":"Scarecrow"},{"c":1,"s":10,"id":901,"u":"sceaduinar_bst2","p":233,"h":1,"n":"Sceaduinar"},{"c":1,"s":10,"id":902,"u":"scythe%20tree_bst2","p":235,"h":1,"n":"Scythe Tree"},{"c":1,"s":10,"id":903,"u":"sea%20drake_bst2","p":101,"h":1,"n":"Sea Drake"},{"c":1,"s":10,"id":904,"u":"sea%20snake_bst2","p":245,"h":1,"n":"Sea Snake"},{"c":1,"s":10,"id":905,"u":"shadow%20drake_bst2","p":100,"h":1,"n":"Shadow Drake"},{"c":1,"s":10,"id":906,"u":"shadow%20giant_bst2","p":127,"h":1,"n":"Shadow Giant"},{"c":1,"s":10,"id":907,"u":"shoal%20linnorm_bst2","p":164,"h":1,"n":"Shoal Linnorm"},{"c":1,"s":10,"id":908,"u":"shocker%20lizard_bst2","p":240,"h":1,"n":"Shocker Lizard"},{"c":1,"s":10,"id":909,"u":"shoggti_bst2","p":213,"h":1,"n":"Shoggti"},{"c":1,"s":10,"id":910,"u":"skaveling_bst2","p":241,"h":1,"n":"Skaveling"},{"c":1,"s":10,"id":911,"u":"skrik%20nettle_bst2","p":242,"h":1,"n":"Skrik Nettle"},{"c":1,"s":10,"id":912,"u":"skulk_bst2","p":243,"h":1,"n":"Skulk"},{"c":1,"s":10,"id":913,"u":"slime%20mold_bst2","p":193,"h":1,"n":"Slime Mold"},{"c":1,"s":10,"id":914,"u":"snapping%20turtle_bst2","p":269,"h":1,"n":"Snapping Turtle"},{"c":1,"s":10,"id":915,"u":"solar_bst2","p":16,"h":1,"n":"Solar"},{"c":1,"s":10,"id":916,"u":"soul%20eater_bst2","p":247,"h":1,"n":"Soul Eater"},{"c":1,"s":10,"id":917,"u":"spark%20bat_bst2","p":106,"h":1,"n":"Spark Bat"},{"c":1,"s":10,"id":918,"u":"spear%20frog_bst2","p":121,"h":1,"n":"Spear Frog"},{"c":1,"s":10,"id":919,"u":"specter_bst2","p":248,"h":1,"n":"Specter"},{"c":1,"s":10,"id":920,"u":"spinosaurus_bst2","p":83,"h":1,"n":"Spinosaurus"},{"c":1,"s":10,"id":921,"u":"spiral%20centurion_bst2","p":250,"h":1,"n":"Spiral Centurion"},{"c":1,"s":10,"id":922,"u":"spirit%20naga_bst2","p":179,"h":1,"n":"Spirit Naga"},{"c":1,"s":10,"id":923,"u":"sportlebore%20swarm_bst2","p":251,"h":1,"n":"Sportlebore Swarm"},{"c":1,"s":10,"id":924,"u":"spriggan%20bully_bst2","p":252,"h":1,"n":"Spriggan Bully"},{"c":1,"s":10,"id":925,"u":"spriggan%20warlord_bst2","p":253,"h":1,"n":"Spriggan Warlord"},{"c":1,"s":10,"id":926,"u":"star%20archon_bst2","p":24,"h":1,"n":"Star Archon"},{"c":1,"s":10,"id":927,"u":"steam%20mephit_bst2","p":113,"h":1,"n":"Steam Mephit"},{"c":1,"s":10,"id":928,"u":"stingray_bst2","p":226,"h":1,"n":"Stingray"},{"c":1,"s":10,"id":929,"u":"striding%20fire_bst2","p":111,"h":1,"n":"Striding Fire"},{"c":1,"s":10,"id":930,"u":"stygira_bst2","p":255,"h":1,"n":"Stygira"},{"c":1,"s":10,"id":931,"u":"suli%20dune%20dancer_bst2","p":202,"h":1,"n":"Suli Dune Dancer"},{"c":1,"s":10,"id":932,"u":"sunflower%20leshy_bst2","p":160,"h":1,"n":"Sunflower Leshy"},{"c":1,"s":10,"id":933,"u":"sylph%20sneak_bst2","p":202,"h":1,"n":"Sylph Sneak"},{"c":1,"s":10,"id":934,"u":"taiga%20giant_bst2","p":126,"h":1,"n":"Taiga Giant"},{"c":1,"s":10,"id":935,"u":"taiga%20linnorm_bst2","p":167,"h":1,"n":"Taiga Linnorm"},{"c":1,"s":10,"id":936,"u":"tatzlwyrm_bst2","p":256,"h":1,"n":"Tatzlwyrm"},{"c":1,"s":10,"id":937,"u":"tendriculos_bst2","p":257,"h":1,"n":"Tendriculos"},{"c":1,"s":10,"id":938,"u":"thanadaemon_bst2","p":61,"h":1,"n":"Thanadaemon"},{"c":1,"s":10,"id":939,"u":"theletos_bst2","p":8,"h":1,"n":"Theletos"},{"c":1,"s":10,"id":940,"u":"thrasfyr_bst2","p":258,"h":1,"n":"Thrasfyr"},{"c":1,"s":10,"id":941,"u":"thulgant_bst2","p":217,"h":1,"n":"Thulgant"},{"c":1,"s":10,"id":942,"u":"thunderbird_bst2","p":259,"h":1,"n":"Thunderbird"},{"c":1,"s":10,"id":943,"u":"tick%20swarm_bst2","p":260,"h":1,"n":"Tick Swarm"},{"c":1,"s":10,"id":944,"u":"titan%20centipede_bst2","p":50,"h":1,"n":"Titan Centipede"},{"c":1,"s":10,"id":945,"u":"totenmaske_bst2","p":262,"h":1,"n":"Totenmaske"},{"c":1,"s":10,"id":946,"u":"triton_bst2","p":263,"h":1,"n":"Triton"},{"c":1,"s":10,"id":947,"u":"trollhound_bst2","p":268,"h":1,"n":"Trollhound"},{"c":1,"s":10,"id":948,"u":"trumpet%20archon_bst2","p":23,"h":1,"n":"Trumpet Archon"},{"c":1,"s":10,"id":949,"u":"twigjack_bst2","p":270,"h":1,"n":"Twigjack"},{"c":1,"s":10,"id":950,"u":"two-headed%20troll_bst2","p":266,"h":1,"n":"Two-headed Troll"},{"c":1,"s":10,"id":951,"u":"umonlee_bst2","p":271,"h":1,"n":"Umonlee"},{"c":1,"s":10,"id":952,"u":"undine%20hydromancer_bst2","p":203,"h":1,"n":"Undine Hydromancer"},{"c":1,"s":10,"id":953,"u":"urdefhan%20tormentor_bst2","p":273,"h":1,"n":"Urdefhan Tormentor"},{"c":1,"s":10,"id":954,"u":"urdefhan%20warrior_bst2","p":272,"h":1,"n":"Urdefhan Warrior"},{"c":1,"s":10,"id":955,"u":"vampire%20squid_bst2","p":254,"h":1,"n":"Vampire Squid"},{"c":1,"s":10,"id":956,"u":"vampiric%20mist_bst2","p":278,"h":1,"n":"Vampiric Mist"},{"c":1,"s":10,"id":957,"u":"vanth_bst2","p":210,"h":1,"n":"Vanth"},{"c":1,"s":10,"id":958,"u":"vaspercham_bst2","p":279,"h":1,"n":"Vaspercham"},{"c":1,"s":10,"id":959,"u":"veranallia_bst2","p":31,"h":1,"n":"Veranallia"},{"c":1,"s":10,"id":960,"u":"verdurous%20ooze_bst2","p":194,"h":1,"n":"Verdurous Ooze"},{"c":1,"s":10,"id":961,"u":"vexgit_bst2","p":134,"h":1,"n":"Vexgit"},{"c":1,"s":10,"id":962,"u":"violet%20fungus_bst2","p":286,"h":1,"n":"Violet Fungus"},{"c":1,"s":10,"id":963,"u":"viper%20vine_bst2","p":287,"h":1,"n":"Viper Vine"},{"c":1,"s":10,"id":964,"u":"void%20zombie_bst2","p":288,"h":1,"n":"Void Zombie"},{"c":1,"s":10,"id":965,"u":"vrolikai_bst2","p":69,"h":1,"n":"Vrolikai"},{"c":1,"s":10,"id":966,"u":"vrykolakas%20ancient_bst2","p":277,"h":1,"n":"Vrykolakas Ancient"},{"c":1,"s":10,"id":967,"u":"vrykolakas%20master_bst2","p":276,"h":1,"n":"Vrykolakas Master"},{"c":1,"s":10,"id":968,"u":"vrykolakas%20spawn_bst2","p":276,"h":1,"n":"Vrykolakas Spawn"},{"c":1,"s":10,"id":969,"u":"water%20orm_bst2","p":289,"h":1,"n":"Water Orm"},{"c":1,"s":10,"id":970,"u":"water%20yai_bst2","p":191,"h":1,"n":"Water Yai"},{"c":1,"s":10,"id":971,"u":"wereboar_bst2","p":290,"h":1,"n":"Wereboar"},{"c":1,"s":10,"id":972,"u":"weretiger_bst2","p":291,"h":1,"n":"Weretiger"},{"c":1,"s":10,"id":973,"u":"witchfire_bst2","p":293,"h":1,"n":"Witchfire"},{"c":1,"s":10,"id":974,"u":"witchwyrd_bst2","p":294,"h":1,"n":"Witchwyrd"},{"c":1,"s":10,"id":975,"u":"wolverine_bst2","p":295,"h":1,"n":"Wolverine"},{"c":1,"s":10,"id":976,"u":"wood%20giant_bst2","p":124,"h":1,"n":"Wood Giant"},{"c":1,"s":10,"id":977,"u":"wood%20golem_bst2","p":130,"h":1,"n":"Wood Golem"},{"c":1,"s":10,"id":978,"u":"woolly%20rhinoceros_bst2","p":228,"h":1,"n":"Woolly Rhinoceros"},{"c":1,"s":10,"id":979,"u":"worm%20that%20walks%20cultist_bst2","p":297,"h":1,"n":"Worm That Walks Cultist"},{"c":1,"s":10,"id":980,"u":"xill_bst2","p":299,"h":1,"n":"Xill"},{"c":1,"s":10,"id":981,"u":"yamaraj_bst2","p":211,"h":1,"n":"Yamaraj"},{"c":1,"s":10,"id":982,"u":"yellow%20musk%20brute_bst2","p":301,"h":1,"n":"Yellow Musk Brute"},{"c":1,"s":10,"id":983,"u":"yellow%20musk%20creeper_bst2","p":300,"h":1,"n":"Yellow Musk Creeper"},{"c":1,"s":10,"id":984,"u":"yellow%20musk%20thrall_bst2","p":301,"h":1,"n":"Yellow Musk Thrall"},{"c":1,"s":10,"id":985,"u":"yeth%20hound_bst2","p":302,"h":1,"n":"Yeth Hound"},{"c":1,"s":10,"id":986,"u":"young%20brine%20dragon_bst2","p":87,"h":1,"n":"Young Brine Dragon"},{"c":1,"s":10,"id":987,"u":"young%20cloud%20dragon_bst2","p":89,"h":1,"n":"Young Cloud Dragon"},{"c":1,"s":10,"id":988,"u":"young%20crystal%20dragon_bst2","p":91,"h":1,"n":"Young Crystal Dragon"},{"c":1,"s":10,"id":989,"u":"young%20magma%20dragon_bst2","p":94,"h":1,"n":"Young Magma Dragon"},{"c":1,"s":10,"id":990,"u":"young%20umbral%20dragon_bst2","p":96,"h":1,"n":"Young Umbral Dragon"},{"c":1,"s":10,"id":991,"u":"zebub_bst2","p":72,"h":1,"n":"Zebub"},{"c":1,"s":10,"id":992,"u":"zelekhut_bst2","p":9,"h":1,"n":"Zelekhut"},{"c":1,"s":10,"id":993,"u":"zomok_bst2","p":303,"h":1,"n":"Zomok"},{"c":1,"s":10,"id":994,"u":"zyss%20serpentfolk_bst2","p":237,"h":1,"n":"Zyss Serpentfolk"},{"c":1,"s":11,"id":995,"u":"abandoned%20zealot_bst3","p":8,"h":1,"n":"Abandoned Zealot"},{"c":1,"s":11,"id":996,"u":"abrikandilu_bst3","p":61,"h":1,"n":"Abrikandilu"},{"c":1,"s":11,"id":997,"u":"adachros_bst3","p":95,"h":1,"n":"Adachros"},{"c":1,"s":11,"id":998,"u":"adhukait_bst3","p":23,"h":1,"n":"Adhukait"},{"c":1,"s":11,"id":999,"u":"adlet_bst3","p":9,"h":1,"n":"Adlet"},{"c":1,"s":11,"id":1000,"u":"adult%20forest%20dragon_bst3","p":75,"h":1,"n":"Adult Forest Dragon"},{"c":1,"s":11,"id":1001,"u":"adult%20sea%20dragon_bst3","p":78,"h":1,"n":"Adult Sea Dragon"},{"c":1,"s":11,"id":1002,"u":"adult%20sky%20dragon_bst3","p":80,"h":1,"n":"Adult Sky Dragon"},{"c":1,"s":11,"id":1003,"u":"adult%20sovereign%20dragon_bst3","p":82,"h":1,"n":"Adult Sovereign Dragon"},{"c":1,"s":11,"id":1004,"u":"adult%20underworld%20dragon_bst3","p":84,"h":1,"n":"Adult Underworld Dragon"},{"c":1,"s":11,"id":1005,"u":"aghash_bst3","p":69,"h":1,"n":"Aghash"},{"c":1,"s":11,"id":1006,"u":"air%20wisp_bst3","p":90,"h":1,"n":"Air Wisp"},{"c":1,"s":11,"id":1007,"u":"amalgamite_bst3","p":14,"h":1,"n":"Amalgamite"},{"c":1,"s":11,"id":1008,"u":"amphisbaena_bst3","p":15,"h":1,"n":"Amphisbaena"},{"c":1,"s":11,"id":1009,"u":"ancient%20forest%20dragon_bst3","p":76,"h":1,"n":"Ancient Forest Dragon"},{"c":1,"s":11,"id":1010,"u":"ancient%20sea%20dragon_bst3","p":78,"h":1,"n":"Ancient Sea Dragon"},{"c":1,"s":11,"id":1011,"u":"ancient%20sky%20dragon_bst3","p":80,"h":1,"n":"Ancient Sky Dragon"},{"c":1,"s":11,"id":1012,"u":"ancient%20sovereign%20dragon_bst3","p":83,"h":1,"n":"Ancient Sovereign Dragon"},{"c":1,"s":11,"id":1013,"u":"ancient%20underworld%20dragon_bst3","p":85,"h":1,"n":"Ancient Underworld Dragon"},{"c":1,"s":11,"id":1014,"u":"android%20infiltrator_bst3","p":16,"h":1,"n":"Android Infiltrator"},{"c":1,"s":11,"id":1015,"u":"angazhani_bst3","p":17,"h":1,"n":"Angazhani"},{"c":1,"s":11,"id":1016,"u":"angheuvore%20flesh-gnawer_bst3","p":174,"h":1,"n":"Angheuvore Flesh-gnawer"},{"c":1,"s":11,"id":1017,"u":"animated%20colossus_bst3","p":19,"h":1,"n":"Animated Colossus"},{"c":1,"s":11,"id":1018,"u":"animated%20furnace_bst3","p":18,"h":1,"n":"Animated Furnace"},{"c":1,"s":11,"id":1019,"u":"animated%20silverware%20swarm_bst3","p":18,"h":1,"n":"Animated Silverware Swarm"},{"c":1,"s":11,"id":1020,"u":"animated%20trebuchet_bst3","p":19,"h":1,"n":"Animated Trebuchet"},{"c":1,"s":11,"id":1021,"u":"aphorite%20sharpshooter_bst3","p":204,"h":1,"n":"Aphorite Sharpshooter"},{"c":1,"s":11,"id":1022,"u":"arboreal%20archive_bst3","p":21,"h":1,"n":"Arboreal Archive"},{"c":1,"s":11,"id":1023,"u":"arboreal%20reaper_bst3","p":20,"h":1,"n":"Arboreal Reaper"},{"c":1,"s":11,"id":1024,"u":"arcane%20living%20rune_bst3","p":163,"h":1,"n":"Arcane Living Rune"},{"c":1,"s":11,"id":1025,"u":"azarketi%20explorer_bst3","p":26,"h":1,"n":"Azarketi Explorer"},{"c":1,"s":11,"id":1026,"u":"azer_bst3","p":27,"h":1,"n":"Azer"},{"c":1,"s":11,"id":1027,"u":"bauble%20beast_bst3","p":28,"h":1,"n":"Bauble Beast"},{"c":1,"s":11,"id":1028,"u":"baykok_bst3","p":29,"h":1,"n":"Baykok"},{"c":1,"s":11,"id":1029,"u":"betobeto-san_bst3","p":31,"h":1,"n":"Betobeto-san"},{"c":1,"s":11,"id":1030,"u":"bison_bst3","p":32,"h":1,"n":"Bison"},{"c":1,"s":11,"id":1031,"u":"blood%20hag_bst3","p":130,"h":1,"n":"Blood Hag"},{"c":1,"s":11,"id":1032,"u":"blood%20painter_bst3","p":33,"h":1,"n":"Blood Painter"},{"c":1,"s":11,"id":1033,"u":"bone%20ship_bst3","p":34,"h":1,"n":"Bone Ship"},{"c":1,"s":11,"id":1034,"u":"bore%20worm%20swarm_bst3","p":36,"h":1,"n":"Bore Worm Swarm"},{"c":1,"s":11,"id":1035,"u":"brainchild_bst3","p":38,"h":1,"n":"Brainchild"},{"c":1,"s":11,"id":1036,"u":"brimorak_bst3","p":62,"h":1,"n":"Brimorak"},{"c":1,"s":11,"id":1037,"u":"buso%20farmer_bst3","p":39,"h":1,"n":"Buso Farmer"},{"c":1,"s":11,"id":1038,"u":"cactus%20leshy_bst3","p":160,"h":1,"n":"Cactus Leshy"},{"c":1,"s":11,"id":1039,"u":"caligni%20caller_bst3","p":41,"h":1,"n":"Caligni Caller"},{"c":1,"s":11,"id":1040,"u":"caligni%20vanguard_bst3","p":40,"h":1,"n":"Caligni Vanguard"},{"c":1,"s":11,"id":1041,"u":"calikang_bst3","p":42,"h":1,"n":"Calikang"},{"c":1,"s":11,"id":1042,"u":"camel_bst3","p":43,"h":1,"n":"Camel"},{"c":1,"s":11,"id":1043,"u":"caulborn_bst3","p":94,"h":1,"n":"Caulborn"},{"c":1,"s":11,"id":1044,"u":"cave%20giant_bst3","p":108,"h":1,"n":"Cave Giant"},{"c":1,"s":11,"id":1045,"u":"cecaelia%20trapper_bst3","p":45,"h":1,"n":"Cecaelia Trapper"},{"c":1,"s":11,"id":1046,"u":"chouchin-obake_bst3","p":277,"h":1,"n":"Chouchin-obake"},{"c":1,"s":11,"id":1047,"u":"chyzaedu_bst3","p":46,"h":1,"n":"Chyzaedu"},{"c":1,"s":11,"id":1048,"u":"city%20guard%20squadron_bst3","p":47,"h":1,"n":"City Guard Squadron"},{"c":1,"s":11,"id":1049,"u":"clacking%20skull%20swarm_bst3","p":244,"h":1,"n":"Clacking Skull Swarm"},{"c":1,"s":11,"id":1050,"u":"clockwork%20dragon_bst3","p":51,"h":1,"n":"Clockwork Dragon"},{"c":1,"s":11,"id":1051,"u":"clockwork%20mage_bst3","p":50,"h":1,"n":"Clockwork Mage"},{"c":1,"s":11,"id":1052,"u":"clockwork%20soldier_bst3","p":49,"h":1,"n":"Clockwork Soldier"},{"c":1,"s":11,"id":1053,"u":"clockwork%20spy_bst3","p":48,"h":1,"n":"Clockwork Spy"},{"c":1,"s":11,"id":1054,"u":"cobbleswarm_bst3","p":52,"h":1,"n":"Cobbleswarm"},{"c":1,"s":11,"id":1055,"u":"common%20eurypterid_bst3","p":97,"h":1,"n":"Common Eurypterid"},{"c":1,"s":11,"id":1056,"u":"consonite%20choir_bst3","p":53,"h":1,"n":"Consonite Choir"},{"c":1,"s":11,"id":1057,"u":"coral%20capuchin_bst3","p":54,"h":1,"n":"Coral Capuchin"},{"c":1,"s":11,"id":1058,"u":"corrupted%20relic_bst3","p":55,"h":1,"n":"Corrupted Relic"},{"c":1,"s":11,"id":1059,"u":"crossroads%20guardian_bst3","p":59,"h":1,"n":"Crossroads Guardian"},{"c":1,"s":11,"id":1060,"u":"cunning%20fox_bst3","p":252,"h":1,"n":"Cunning Fox"},{"c":1,"s":11,"id":1061,"u":"danava%20titan_bst3","p":270,"h":1,"n":"Danava Titan"},{"c":1,"s":11,"id":1062,"u":"deimavigga_bst3","p":66,"h":1,"n":"Deimavigga"},{"c":1,"s":11,"id":1063,"u":"desert%20giant_bst3","p":109,"h":1,"n":"Desert Giant"},{"c":1,"s":11,"id":1064,"u":"divine%20warden%20of%20nethys_bst3","p":73,"h":1,"n":"Divine Warden Of Nethys"},{"c":1,"s":11,"id":1065,"u":"domovoi_bst3","p":136,"h":1,"n":"Domovoi"},{"c":1,"s":11,"id":1066,"u":"doru_bst3","p":68,"h":1,"n":"Doru"},{"c":1,"s":11,"id":1067,"u":"draconal_bst3","p":13,"h":1,"n":"Draconal"},{"c":1,"s":11,"id":1068,"u":"dramofir_bst3","p":86,"h":1,"n":"Dramofir"},{"c":1,"s":11,"id":1069,"u":"draxie_bst3","p":255,"h":1,"n":"Draxie"},{"c":1,"s":11,"id":1070,"u":"dretch_bst3","p":60,"h":1,"n":"Dretch"},{"c":1,"s":11,"id":1071,"u":"duende_bst3","p":87,"h":1,"n":"Duende"},{"c":1,"s":11,"id":1072,"u":"dvorovoi_bst3","p":137,"h":1,"n":"Dvorovoi"},{"c":1,"s":11,"id":1073,"u":"dybbuk_bst3","p":88,"h":1,"n":"Dybbuk"},{"c":1,"s":11,"id":1074,"u":"earth%20wisp_bst3","p":91,"h":1,"n":"Earth Wisp"},{"c":1,"s":11,"id":1075,"u":"einherji_bst3","p":89,"h":1,"n":"Einherji"},{"c":1,"s":11,"id":1076,"u":"elder%20sphinx_bst3","p":250,"h":1,"n":"Elder Sphinx"},{"c":1,"s":11,"id":1077,"u":"elder%20wyrmwraith_bst3","p":297,"h":1,"n":"Elder Wyrmwraith"},{"c":1,"s":11,"id":1078,"u":"elysian%20titan_bst3","p":268,"h":1,"n":"Elysian Titan"},{"c":1,"s":11,"id":1079,"u":"empress%20bore%20worm_bst3","p":37,"h":1,"n":"Empress Bore Worm"},{"c":1,"s":11,"id":1080,"u":"esipil_bst3","p":218,"h":1,"n":"Esipil"},{"c":1,"s":11,"id":1081,"u":"etioling%20blightmage_bst3","p":177,"h":1,"n":"Etioling Blightmage"},{"c":1,"s":11,"id":1082,"u":"eunemvro_bst3","p":96,"h":1,"n":"Eunemvro"},{"c":1,"s":11,"id":1083,"u":"fading%20fox_bst3","p":102,"h":1,"n":"Fading Fox"},{"c":1,"s":11,"id":1084,"u":"feathered%20bear_bst3","p":253,"h":1,"n":"Feathered Bear"},{"c":1,"s":11,"id":1085,"u":"feral%20skull%20swarm_bst3","p":244,"h":1,"n":"Feral Skull Swarm"},{"c":1,"s":11,"id":1086,"u":"festrog_bst3","p":98,"h":1,"n":"Festrog"},{"c":1,"s":11,"id":1087,"u":"fire%20wisp_bst3","p":91,"h":1,"n":"Fire Wisp"},{"c":1,"s":11,"id":1088,"u":"flaming%20skull_bst3","p":30,"h":1,"n":"Flaming Skull"},{"c":1,"s":11,"id":1089,"u":"flumph_bst3","p":100,"h":1,"n":"Flumph"},{"c":1,"s":11,"id":1090,"u":"fortune%20eater_bst3","p":101,"h":1,"n":"Fortune Eater"},{"c":1,"s":11,"id":1091,"u":"fossil%20golem_bst3","p":116,"h":1,"n":"Fossil Golem"},{"c":1,"s":11,"id":1092,"u":"fuath_bst3","p":121,"h":1,"n":"Fuath"},{"c":1,"s":11,"id":1093,"u":"galvo_bst3","p":103,"h":1,"n":"Galvo"},{"c":1,"s":11,"id":1094,"u":"ganzi%20martial%20artist_bst3","p":205,"h":1,"n":"Ganzi Martial Artist"},{"c":1,"s":11,"id":1095,"u":"garuda_bst3","p":104,"h":1,"n":"Garuda"},{"c":1,"s":11,"id":1096,"u":"gathlain%20wanderer_bst3","p":105,"h":1,"n":"Gathlain Wanderer"},{"c":1,"s":11,"id":1097,"u":"ghoran%20manipulator_bst3","p":106,"h":1,"n":"Ghoran Manipulator"},{"c":1,"s":11,"id":1098,"u":"giant%20flying%20squirrel_bst3","p":257,"h":1,"n":"Giant Flying Squirrel"},{"c":1,"s":11,"id":1099,"u":"giant%20hermit%20crab_bst3","p":58,"h":1,"n":"Giant Hermit Crab"},{"c":1,"s":11,"id":1100,"u":"giant%20opossum_bst3","p":192,"h":1,"n":"Giant Opossum"},{"c":1,"s":11,"id":1101,"u":"giant%20pangolin_bst3","p":199,"h":1,"n":"Giant Pangolin"},{"c":1,"s":11,"id":1102,"u":"giant%20porcupine_bst3","p":207,"h":1,"n":"Giant Porcupine"},{"c":1,"s":11,"id":1103,"u":"giant%20seahorse_bst3","p":227,"h":1,"n":"Giant Seahorse"},{"c":1,"s":11,"id":1104,"u":"giant%20skunk_bst3","p":246,"h":1,"n":"Giant Skunk"},{"c":1,"s":11,"id":1105,"u":"giant%20vulture_bst3","p":289,"h":1,"n":"Giant Vulture"},{"c":1,"s":11,"id":1106,"u":"girtablilu%20seer_bst3","p":113,"h":1,"n":"Girtablilu Seer"},{"c":1,"s":11,"id":1107,"u":"girtablilu%20sentry_bst3","p":112,"h":1,"n":"Girtablilu Sentry"},{"c":1,"s":11,"id":1108,"u":"gliminal_bst3","p":114,"h":1,"n":"Gliminal"},{"c":1,"s":11,"id":1109,"u":"globster_bst3","p":115,"h":1,"n":"Globster"},{"c":1,"s":11,"id":1110,"u":"green%20man_bst3","p":118,"h":1,"n":"Green Man"},{"c":1,"s":11,"id":1111,"u":"grimple_bst3","p":120,"h":1,"n":"Grimple"},{"c":1,"s":11,"id":1112,"u":"grioth%20cultist_bst3","p":123,"h":1,"n":"Grioth Cultist"},{"c":1,"s":11,"id":1113,"u":"grioth%20scout_bst3","p":122,"h":1,"n":"Grioth Scout"},{"c":1,"s":11,"id":1114,"u":"guecubu_bst3","p":126,"h":1,"n":"Guecubu"},{"c":1,"s":11,"id":1115,"u":"gurgist%20mauler_bst3","p":175,"h":1,"n":"Gurgist Mauler"},{"c":1,"s":11,"id":1116,"u":"hadrinnex_bst3","p":127,"h":1,"n":"Hadrinnex"},{"c":1,"s":11,"id":1117,"u":"haniver_bst3","p":120,"h":1,"n":"Haniver"},{"c":1,"s":11,"id":1118,"u":"harmona_bst3","p":132,"h":1,"n":"Harmona"},{"c":1,"s":11,"id":1119,"u":"harpy%20skeleton_bst3","p":236,"h":1,"n":"Harpy Skeleton"},{"c":1,"s":11,"id":1120,"u":"hatred%20siktempora_bst3","p":235,"h":1,"n":"Hatred Siktempora"},{"c":1,"s":11,"id":1121,"u":"hekatonkheires%20titan_bst3","p":271,"h":1,"n":"Hekatonkheires Titan"},{"c":1,"s":11,"id":1122,"u":"hellbound%20attorney_bst3","p":64,"h":1,"n":"Hellbound Attorney"},{"c":1,"s":11,"id":1123,"u":"hellknight%20cavalry%20brigade_bst3","p":44,"h":1,"n":"Hellknight Cavalry Brigade"},{"c":1,"s":11,"id":1124,"u":"hellwasp%20swarm_bst3","p":133,"h":1,"n":"Hellwasp Swarm"},{"c":1,"s":11,"id":1125,"u":"herexen_bst3","p":134,"h":1,"n":"Herexen"},{"c":1,"s":11,"id":1126,"u":"hermit%20crab%20swarm_bst3","p":58,"h":1,"n":"Hermit Crab Swarm"},{"c":1,"s":11,"id":1127,"u":"hesperid_bst3","p":189,"h":1,"n":"Hesperid"},{"c":1,"s":11,"id":1128,"u":"hesperid%20queen_bst3","p":191,"h":1,"n":"Hesperid Queen"},{"c":1,"s":11,"id":1129,"u":"hieracosphinx_bst3","p":250,"h":1,"n":"Hieracosphinx"},{"c":1,"s":11,"id":1130,"u":"house%20drake_bst3","p":135,"h":1,"n":"House Drake"},{"c":1,"s":11,"id":1131,"u":"huldra_bst3","p":138,"h":1,"n":"Huldra"},{"c":1,"s":11,"id":1132,"u":"hyakume_bst3","p":139,"h":1,"n":"Hyakume"},{"c":1,"s":11,"id":1133,"u":"incutilis_bst3","p":140,"h":1,"n":"Incutilis"},{"c":1,"s":11,"id":1134,"u":"ioton_bst3","p":92,"h":1,"n":"Ioton"},{"c":1,"s":11,"id":1135,"u":"ittan-momen_bst3","p":276,"h":1,"n":"Ittan-momen"},{"c":1,"s":11,"id":1136,"u":"japalisura_bst3","p":23,"h":1,"n":"Japalisura"},{"c":1,"s":11,"id":1137,"u":"jorogumo_bst3","p":141,"h":1,"n":"Jorogumo"},{"c":1,"s":11,"id":1138,"u":"kangaroo_bst3","p":146,"h":1,"n":"Kangaroo"},{"c":1,"s":11,"id":1139,"u":"kappa_bst3","p":147,"h":1,"n":"Kappa"},{"c":1,"s":11,"id":1140,"u":"kasa-obake_bst3","p":277,"h":1,"n":"Kasa-obake"},{"c":1,"s":11,"id":1141,"u":"khravgodon_bst3","p":192,"h":1,"n":"Khravgodon"},{"c":1,"s":11,"id":1142,"u":"kimenhul_bst3","p":222,"h":1,"n":"Kimenhul"},{"c":1,"s":11,"id":1143,"u":"kirin_bst3","p":148,"h":1,"n":"Kirin"},{"c":1,"s":11,"id":1144,"u":"kishi_bst3","p":149,"h":1,"n":"Kishi"},{"c":1,"s":11,"id":1145,"u":"kitsune%20trickster_bst3","p":150,"h":1,"n":"Kitsune Trickster"},{"c":1,"s":11,"id":1146,"u":"kodama_bst3","p":143,"h":1,"n":"Kodama"},{"c":1,"s":11,"id":1147,"u":"kokogiak_bst3","p":151,"h":1,"n":"Kokogiak"},{"c":1,"s":11,"id":1148,"u":"kongamato_bst3","p":152,"h":1,"n":"Kongamato"},{"c":1,"s":11,"id":1149,"u":"kovintus%20geomancer_bst3","p":153,"h":1,"n":"Kovintus Geomancer"},{"c":1,"s":11,"id":1150,"u":"krampus_bst3","p":154,"h":1,"n":"Krampus"},{"c":1,"s":11,"id":1151,"u":"kuchisake-onna_bst3","p":156,"h":1,"n":"Kuchisake-onna"},{"c":1,"s":11,"id":1152,"u":"kurobozu_bst3","p":157,"h":1,"n":"Kurobozu"},{"c":1,"s":11,"id":1153,"u":"kushtaka_bst3","p":158,"h":1,"n":"Kushtaka"},{"c":1,"s":11,"id":1154,"u":"lampad_bst3","p":188,"h":1,"n":"Lampad"},{"c":1,"s":11,"id":1155,"u":"lampad%20queen_bst3","p":189,"h":1,"n":"Lampad Queen"},{"c":1,"s":11,"id":1156,"u":"ledalusca_bst3","p":159,"h":1,"n":"Ledalusca"},{"c":1,"s":11,"id":1157,"u":"leng%20ghoul_bst3","p":107,"h":1,"n":"Leng Ghoul"},{"c":1,"s":11,"id":1158,"u":"levaloch_bst3","p":65,"h":1,"n":"Levaloch"},{"c":1,"s":11,"id":1159,"u":"lifeleecher%20brawler_bst3","p":176,"h":1,"n":"Lifeleecher Brawler"},{"c":1,"s":11,"id":1160,"u":"locathah%20hunter_bst3","p":164,"h":1,"n":"Locathah Hunter"},{"c":1,"s":11,"id":1161,"u":"love%20siktempora_bst3","p":234,"h":1,"n":"Love Siktempora"},{"c":1,"s":11,"id":1162,"u":"lovelorn_bst3","p":165,"h":1,"n":"Lovelorn"},{"c":1,"s":11,"id":1163,"u":"maftet%20guardian_bst3","p":166,"h":1,"n":"Maftet Guardian"},{"c":1,"s":11,"id":1164,"u":"maharaja_bst3","p":211,"h":1,"n":"Maharaja"},{"c":1,"s":11,"id":1165,"u":"manticore%20paaridar_bst3","p":198,"h":1,"n":"Manticore Paaridar"},{"c":1,"s":11,"id":1166,"u":"megalictis_bst3","p":291,"h":1,"n":"Megalictis"},{"c":1,"s":11,"id":1167,"u":"megatherium_bst3","p":248,"h":1,"n":"Megatherium"},{"c":1,"s":11,"id":1168,"u":"melixie_bst3","p":255,"h":1,"n":"Melixie"},{"c":1,"s":11,"id":1169,"u":"mezlan_bst3","p":167,"h":1,"n":"Mezlan"},{"c":1,"s":11,"id":1170,"u":"mi-go_bst3","p":168,"h":1,"n":"Mi-Go"},{"c":1,"s":11,"id":1171,"u":"millindemalion_bst3","p":169,"h":1,"n":"Millindemalion"},{"c":1,"s":11,"id":1172,"u":"misery%20siktempora_bst3","p":232,"h":1,"n":"Misery Siktempora"},{"c":1,"s":11,"id":1173,"u":"mithral%20golem_bst3","p":117,"h":1,"n":"Mithral Golem"},{"c":1,"s":11,"id":1174,"u":"mix%20couatl_bst3","p":56,"h":1,"n":"Mix Couatl"},{"c":1,"s":11,"id":1175,"u":"mobogo_bst3","p":170,"h":1,"n":"Mobogo"},{"c":1,"s":11,"id":1176,"u":"mokele-mbembe_bst3","p":171,"h":1,"n":"Mokele-mbembe"},{"c":1,"s":11,"id":1177,"u":"monkey_bst3","p":172,"h":1,"n":"Monkey"},{"c":1,"s":11,"id":1178,"u":"monkey%20swarm_bst3","p":172,"h":1,"n":"Monkey Swarm"},{"c":1,"s":11,"id":1179,"u":"moon%20hag_bst3","p":131,"h":1,"n":"Moon Hag"},{"c":1,"s":11,"id":1180,"u":"moose_bst3","p":173,"h":1,"n":"Moose"},{"c":1,"s":11,"id":1181,"u":"mothman_bst3","p":179,"h":1,"n":"Mothman"},{"c":1,"s":11,"id":1182,"u":"munagola_bst3","p":66,"h":1,"n":"Munagola"},{"c":1,"s":11,"id":1183,"u":"munavri%20spellblade_bst3","p":180,"h":1,"n":"Munavri Spellblade"},{"c":1,"s":11,"id":1184,"u":"myceloid_bst3","p":181,"h":1,"n":"Myceloid"},{"c":1,"s":11,"id":1185,"u":"nagaji%20soldier_bst3","p":182,"h":1,"n":"Nagaji Soldier"},{"c":1,"s":11,"id":1186,"u":"namorrodor_bst3","p":183,"h":1,"n":"Namorrodor"},{"c":1,"s":11,"id":1187,"u":"narwhal_bst3","p":184,"h":1,"n":"Narwhal"},{"c":1,"s":11,"id":1188,"u":"nemhaith_bst3","p":185,"h":1,"n":"Nemhaith"},{"c":1,"s":11,"id":1189,"u":"nightgaunt_bst3","p":186,"h":1,"n":"Nightgaunt"},{"c":1,"s":11,"id":1190,"u":"nightmarchers_bst3","p":187,"h":1,"n":"Nightmarchers"},{"c":1,"s":11,"id":1191,"u":"nikaramsa_bst3","p":25,"h":1,"n":"Nikaramsa"},{"c":1,"s":11,"id":1192,"u":"nosferatu%20malefactor_bst3","p":285,"h":1,"n":"Nosferatu Malefactor"},{"c":1,"s":11,"id":1193,"u":"nosferatu%20overlord_bst3","p":285,"h":1,"n":"Nosferatu Overlord"},{"c":1,"s":11,"id":1194,"u":"nosferatu%20thrall_bst3","p":284,"h":1,"n":"Nosferatu Thrall"},{"c":1,"s":11,"id":1195,"u":"nucol_bst3","p":220,"h":1,"n":"Nucol"},{"c":1,"s":11,"id":1196,"u":"nyktera_bst3","p":254,"h":1,"n":"Nyktera"},{"c":1,"s":11,"id":1197,"u":"oil%20living%20graffiti_bst3","p":162,"h":1,"n":"Oil Living Graffiti"},{"c":1,"s":11,"id":1198,"u":"omox_bst3","p":63,"h":1,"n":"Omox"},{"c":1,"s":11,"id":1199,"u":"ostovite_bst3","p":193,"h":1,"n":"Ostovite"},{"c":1,"s":11,"id":1200,"u":"ouroboros_bst3","p":194,"h":1,"n":"Ouroboros"},{"c":1,"s":11,"id":1201,"u":"ovinnik_bst3","p":137,"h":1,"n":"Ovinnik"},{"c":1,"s":11,"id":1202,"u":"owb_bst3","p":196,"h":1,"n":"Owb"},{"c":1,"s":11,"id":1203,"u":"owb%20prophet_bst3","p":197,"h":1,"n":"Owb Prophet"},{"c":1,"s":11,"id":1204,"u":"pairaka_bst3","p":70,"h":1,"n":"Pairaka"},{"c":1,"s":11,"id":1205,"u":"pakalchi_bst3","p":220,"h":1,"n":"Pakalchi"},{"c":1,"s":11,"id":1206,"u":"palace%20skelm_bst3","p":240,"h":1,"n":"Palace Skelm"},{"c":1,"s":11,"id":1207,"u":"penanggalan_bst3","p":200,"h":1,"n":"Penanggalan"},{"c":1,"s":11,"id":1208,"u":"peri_bst3","p":201,"h":1,"n":"Peri"},{"c":1,"s":11,"id":1209,"u":"phantom%20beast_bst3","p":203,"h":1,"n":"Phantom Beast"},{"c":1,"s":11,"id":1210,"u":"phantom%20knight_bst3","p":202,"h":1,"n":"Phantom Knight"},{"c":1,"s":11,"id":1211,"u":"piranha%20swarm_bst3","p":99,"h":1,"n":"Piranha Swarm"},{"c":1,"s":11,"id":1212,"u":"plague%20giant_bst3","p":111,"h":1,"n":"Plague Giant"},{"c":1,"s":11,"id":1213,"u":"platecarpus_bst3","p":178,"h":1,"n":"Platecarpus"},{"c":1,"s":11,"id":1214,"u":"popobawa_bst3","p":206,"h":1,"n":"Popobawa"},{"c":1,"s":11,"id":1215,"u":"procyal_bst3","p":12,"h":1,"n":"Procyal"},{"c":1,"s":11,"id":1216,"u":"pufferfish_bst3","p":99,"h":1,"n":"Pufferfish"},{"c":1,"s":11,"id":1217,"u":"pukwudgie_bst3","p":208,"h":1,"n":"Pukwudgie"},{"c":1,"s":11,"id":1218,"u":"quintessivore_bst3","p":209,"h":1,"n":"Quintessivore"},{"c":1,"s":11,"id":1219,"u":"raktavarna_bst3","p":210,"h":1,"n":"Raktavarna"},{"c":1,"s":11,"id":1220,"u":"rancorous%20priesthood_bst3","p":213,"h":1,"n":"Rancorous Priesthood"},{"c":1,"s":11,"id":1221,"u":"rat%20snake%20swarm_bst3","p":249,"h":1,"n":"Rat Snake Swarm"},{"c":1,"s":11,"id":1222,"u":"red%20fox_bst3","p":102,"h":1,"n":"Red Fox"},{"c":1,"s":11,"id":1223,"u":"rhu-chalik_bst3","p":214,"h":1,"n":"Rhu-chalik"},{"c":1,"s":11,"id":1224,"u":"ringhorn%20ram_bst3","p":212,"h":1,"n":"Ringhorn Ram"},{"c":1,"s":11,"id":1225,"u":"roiling%20incant_bst3","p":215,"h":1,"n":"Roiling Incant"},{"c":1,"s":11,"id":1226,"u":"rokurokubi_bst3","p":216,"h":1,"n":"Rokurokubi"},{"c":1,"s":11,"id":1227,"u":"rosethorn%20ram_bst3","p":212,"h":1,"n":"Rosethorn Ram"},{"c":1,"s":11,"id":1228,"u":"sabosan_bst3","p":217,"h":1,"n":"Sabosan"},{"c":1,"s":11,"id":1229,"u":"samsaran%20anchorite_bst3","p":224,"h":1,"n":"Samsaran Anchorite"},{"c":1,"s":11,"id":1230,"u":"sasquatch_bst3","p":225,"h":1,"n":"Sasquatch"},{"c":1,"s":11,"id":1231,"u":"scalescribe_bst3","p":226,"h":1,"n":"Scalescribe"},{"c":1,"s":11,"id":1232,"u":"seaweed%20leshy_bst3","p":161,"h":1,"n":"Seaweed Leshy"},{"c":1,"s":11,"id":1233,"u":"seething%20spirit_bst3","p":228,"h":1,"n":"Seething Spirit"},{"c":1,"s":11,"id":1234,"u":"sepid_bst3","p":71,"h":1,"n":"Sepid"},{"c":1,"s":11,"id":1235,"u":"severed%20head_bst3","p":30,"h":1,"n":"Severed Head"},{"c":1,"s":11,"id":1236,"u":"shabti%20redeemer_bst3","p":229,"h":1,"n":"Shabti Redeemer"},{"c":1,"s":11,"id":1237,"u":"shae_bst3","p":230,"h":1,"n":"Shae"},{"c":1,"s":11,"id":1238,"u":"shambler%20troop_bst3","p":302,"h":1,"n":"Shambler Troop"},{"c":1,"s":11,"id":1239,"u":"shantak_bst3","p":231,"h":1,"n":"Shantak"},{"c":1,"s":11,"id":1240,"u":"shaukeen_bst3","p":22,"h":1,"n":"Shaukeen"},{"c":1,"s":11,"id":1241,"u":"shikigami_bst3","p":142,"h":1,"n":"Shikigami"},{"c":1,"s":11,"id":1242,"u":"shrine%20skelm_bst3","p":239,"h":1,"n":"Shrine Skelm"},{"c":1,"s":11,"id":1243,"u":"shulsaga_bst3","p":93,"h":1,"n":"Shulsaga"},{"c":1,"s":11,"id":1244,"u":"silvanshee_bst3","p":10,"h":1,"n":"Silvanshee"},{"c":1,"s":11,"id":1245,"u":"skeleton%20infantry_bst3","p":237,"h":1,"n":"Skeleton Infantry"},{"c":1,"s":11,"id":1246,"u":"skinstitch_bst3","p":242,"h":1,"n":"Skinstitch"},{"c":1,"s":11,"id":1247,"u":"skull%20peeler_bst3","p":243,"h":1,"n":"Skull Peeler"},{"c":1,"s":11,"id":1248,"u":"skunk_bst3","p":246,"h":1,"n":"Skunk"},{"c":1,"s":11,"id":1249,"u":"slithering%20pit_bst3","p":247,"h":1,"n":"Slithering Pit"},{"c":1,"s":11,"id":1250,"u":"sorcerous%20skull%20swarm_bst3","p":245,"h":1,"n":"Sorcerous Skull Swarm"},{"c":1,"s":11,"id":1251,"u":"soul%20skelm_bst3","p":241,"h":1,"n":"Soul Skelm"},{"c":1,"s":11,"id":1252,"u":"spiny%20eurypterid_bst3","p":97,"h":1,"n":"Spiny Eurypterid"},{"c":1,"s":11,"id":1253,"u":"squirming%20swill_bst3","p":256,"h":1,"n":"Squirming Swill"},{"c":1,"s":11,"id":1254,"u":"squirrel%20swarm_bst3","p":257,"h":1,"n":"Squirrel Swarm"},{"c":1,"s":11,"id":1255,"u":"stheno%20harpist_bst3","p":258,"h":1,"n":"Stheno Harpist"},{"c":1,"s":11,"id":1256,"u":"stone%20lion_bst3","p":125,"h":1,"n":"Stone Lion"},{"c":1,"s":11,"id":1257,"u":"stone%20lion%20cub_bst3","p":124,"h":1,"n":"Stone Lion Cub"},{"c":1,"s":11,"id":1258,"u":"storm%20hag_bst3","p":128,"h":1,"n":"Storm Hag"},{"c":1,"s":11,"id":1259,"u":"street%20skelm_bst3","p":238,"h":1,"n":"Street Skelm"},{"c":1,"s":11,"id":1260,"u":"strix%20kinmate_bst3","p":259,"h":1,"n":"Strix Kinmate"},{"c":1,"s":11,"id":1261,"u":"sturzstromer_bst3","p":52,"h":1,"n":"Sturzstromer"},{"c":1,"s":11,"id":1262,"u":"sulfur%20zombie_bst3","p":303,"h":1,"n":"Sulfur Zombie"},{"c":1,"s":11,"id":1263,"u":"sumbreiva_bst3","p":260,"h":1,"n":"Sumbreiva"},{"c":1,"s":11,"id":1264,"u":"swordkeeper_bst3","p":261,"h":1,"n":"Swordkeeper"},{"c":1,"s":11,"id":1265,"u":"tattoo%20guardian_bst3","p":262,"h":1,"n":"Tattoo Guardian"},{"c":1,"s":11,"id":1266,"u":"terra-cotta%20garrison_bst3","p":263,"h":1,"n":"Terra-cotta Garrison"},{"c":1,"s":11,"id":1267,"u":"terra-cotta%20soldier_bst3","p":263,"h":1,"n":"Terra-cotta Soldier"},{"c":1,"s":11,"id":1268,"u":"terror%20bird_bst3","p":264,"h":1,"n":"Terror Bird"},{"c":1,"s":11,"id":1269,"u":"terror%20shrike_bst3","p":264,"h":1,"n":"Terror Shrike"},{"c":1,"s":11,"id":1270,"u":"thanatotic%20titan_bst3","p":269,"h":1,"n":"Thanatotic Titan"},{"c":1,"s":11,"id":1271,"u":"three-toed%20sloth_bst3","p":248,"h":1,"n":"Three-toed Sloth"},{"c":1,"s":11,"id":1272,"u":"tiddalik_bst3","p":265,"h":1,"n":"Tiddalik"},{"c":1,"s":11,"id":1273,"u":"tidehawk_bst3","p":266,"h":1,"n":"Tidehawk"},{"c":1,"s":11,"id":1274,"u":"tikbalang_bst3","p":267,"h":1,"n":"Tikbalang"},{"c":1,"s":11,"id":1275,"u":"tolokand_bst3","p":272,"h":1,"n":"Tolokand"},{"c":1,"s":11,"id":1276,"u":"tomb%20giant_bst3","p":110,"h":1,"n":"Tomb Giant"},{"c":1,"s":11,"id":1277,"u":"tooth%20fairy_bst3","p":273,"h":1,"n":"Tooth Fairy"},{"c":1,"s":11,"id":1278,"u":"tooth%20fairy%20swarm_bst3","p":273,"h":1,"n":"Tooth Fairy Swarm"},{"c":1,"s":11,"id":1279,"u":"toshigami_bst3","p":145,"h":1,"n":"Toshigami"},{"c":1,"s":11,"id":1280,"u":"trailgaunt_bst3","p":274,"h":1,"n":"Trailgaunt"},{"c":1,"s":11,"id":1281,"u":"trilobite_bst3","p":275,"h":1,"n":"Trilobite"},{"c":1,"s":11,"id":1282,"u":"trilobite%20swarm_bst3","p":275,"h":1,"n":"Trilobite Swarm"},{"c":1,"s":11,"id":1283,"u":"triumph%20siktempora_bst3","p":233,"h":1,"n":"Triumph Siktempora"},{"c":1,"s":11,"id":1284,"u":"tupilaq_bst3","p":278,"h":1,"n":"Tupilaq"},{"c":1,"s":11,"id":1285,"u":"tylosaurus_bst3","p":178,"h":1,"n":"Tylosaurus"},{"c":1,"s":11,"id":1286,"u":"tyrannosaurus%20skeleton_bst3","p":236,"h":1,"n":"Tyrannosaurus Skeleton"},{"c":1,"s":11,"id":1287,"u":"tzitzimitl_bst3","p":279,"h":1,"n":"Tzitzimitl"},{"c":1,"s":11,"id":1288,"u":"umasi_bst3","p":280,"h":1,"n":"Umasi"},{"c":1,"s":11,"id":1289,"u":"valkyrie_bst3","p":281,"h":1,"n":"Valkyrie"},{"c":1,"s":11,"id":1290,"u":"vanara%20disciple_bst3","p":286,"h":1,"n":"Vanara Disciple"},{"c":1,"s":11,"id":1291,"u":"vilderavn_bst3","p":287,"h":1,"n":"Vilderavn"},{"c":1,"s":11,"id":1292,"u":"vine%20leshy_bst3","p":160,"h":1,"n":"Vine Leshy"},{"c":1,"s":11,"id":1293,"u":"viper%20swarm_bst3","p":249,"h":1,"n":"Viper Swarm"},{"c":1,"s":11,"id":1294,"u":"vishkanya%20infiltrator_bst3","p":288,"h":1,"n":"Vishkanya Infiltrator"},{"c":1,"s":11,"id":1295,"u":"vulpinal_bst3","p":11,"h":1,"n":"Vulpinal"},{"c":1,"s":11,"id":1296,"u":"water%20wisp_bst3","p":91,"h":1,"n":"Water Wisp"},{"c":1,"s":11,"id":1297,"u":"wayang%20whisperblade_bst3","p":290,"h":1,"n":"Wayang Whisperblade"},{"c":1,"s":11,"id":1298,"u":"weasel_bst3","p":291,"h":1,"n":"Weasel"},{"c":1,"s":11,"id":1299,"u":"werebat_bst3","p":293,"h":1,"n":"Werebat"},{"c":1,"s":11,"id":1300,"u":"werecrocodile_bst3","p":293,"h":1,"n":"Werecrocodile"},{"c":1,"s":11,"id":1301,"u":"wihsaak_bst3","p":220,"h":1,"n":"Wihsaak"},{"c":1,"s":11,"id":1302,"u":"winter%20hag_bst3","p":129,"h":1,"n":"Winter Hag"},{"c":1,"s":11,"id":1303,"u":"wizard%20sponge_bst3","p":294,"h":1,"n":"Wizard Sponge"},{"c":1,"s":11,"id":1304,"u":"wolliped_bst3","p":295,"h":1,"n":"Wolliped"},{"c":1,"s":11,"id":1305,"u":"wyrmwraith_bst3","p":296,"h":1,"n":"Wyrmwraith"},{"c":1,"s":11,"id":1306,"u":"wyrwood%20sneak_bst3","p":298,"h":1,"n":"Wyrwood Sneak"},{"c":1,"s":11,"id":1307,"u":"ximtal_bst3","p":222,"h":1,"n":"Ximtal"},{"c":1,"s":11,"id":1308,"u":"xiuh%20couatl_bst3","p":57,"h":1,"n":"Xiuh Couatl"},{"c":1,"s":11,"id":1309,"u":"yithian_bst3","p":299,"h":1,"n":"Yithian"},{"c":1,"s":11,"id":1310,"u":"young%20forest%20dragon_bst3","p":74,"h":1,"n":"Young Forest Dragon"},{"c":1,"s":11,"id":1311,"u":"young%20sea%20dragon_bst3","p":77,"h":1,"n":"Young Sea Dragon"},{"c":1,"s":11,"id":1312,"u":"young%20sky%20dragon_bst3","p":79,"h":1,"n":"Young Sky Dragon"},{"c":1,"s":11,"id":1313,"u":"young%20sovereign%20dragon_bst3","p":81,"h":1,"n":"Young Sovereign Dragon"},{"c":1,"s":11,"id":1314,"u":"young%20underworld%20dragon_bst3","p":83,"h":1,"n":"Young Underworld Dragon"},{"c":1,"s":11,"id":1315,"u":"yzobu_bst3","p":300,"h":1,"n":"Yzobu"},{"c":1,"s":11,"id":1316,"u":"zetogeki_bst3","p":301,"h":1,"n":"Zetogeki"},{"c":1,"s":11,"id":1317,"u":"zombie%20dragon_bst3","p":303,"h":1,"n":"Zombie Dragon"},{"c":1,"s":11,"id":1318,"u":"zuishin_bst3","p":144,"h":1,"n":"Zuishin"},{"c":1,"s":5,"id":1319,"u":"unseen%20servant_crb","p":380,"h":1,"n":"Unseen Servant"},{"c":1,"s":12,"id":1320,"u":"acolyte%20of%20nethys_gmg","p":212,"h":1,"n":"Acolyte Of Nethys"},{"c":1,"s":12,"id":1321,"u":"acrobat_gmg","p":237,"h":1,"n":"Acrobat"},{"c":1,"s":12,"id":1322,"u":"adept_gmg","p":228,"h":1,"n":"Adept"},{"c":1,"s":12,"id":1323,"u":"advisor_gmg","p":208,"h":1,"n":"Advisor"},{"c":1,"s":12,"id":1324,"u":"antipaladin_gmg","p":247,"h":1,"n":"Antipaladin"},{"c":1,"s":12,"id":1325,"u":"apothecary_gmg","p":221,"h":1,"n":"Apothecary"},{"c":1,"s":12,"id":1326,"u":"apprentice_gmg","p":244,"h":1,"n":"Apprentice"},{"c":1,"s":12,"id":1327,"u":"archer%20sentry_gmg","p":234,"h":1,"n":"Archer Sentry"},{"c":1,"s":12,"id":1328,"u":"assassin_gmg","p":212,"h":1,"n":"Assassin"},{"c":1,"s":12,"id":1329,"u":"astronomer_gmg","p":241,"h":1,"n":"Astronomer"},{"c":1,"s":12,"id":1330,"u":"bandit_gmg","p":209,"h":1,"n":"Bandit"},{"c":1,"s":12,"id":1331,"u":"barkeep_gmg","p":238,"h":1,"n":"Barkeep"},{"c":1,"s":12,"id":1332,"u":"barrister_gmg","p":233,"h":1,"n":"Barrister"},{"c":1,"s":12,"id":1333,"u":"beast%20tamer_gmg","p":238,"h":1,"n":"Beast Tamer"},{"c":1,"s":12,"id":1334,"u":"beggar_gmg","p":214,"h":1,"n":"Beggar"},{"c":1,"s":12,"id":1335,"u":"bodyguard_gmg","p":226,"h":1,"n":"Bodyguard"},{"c":1,"s":12,"id":1336,"u":"bosun_gmg","p":243,"h":1,"n":"Bosun"},{"c":1,"s":12,"id":1337,"u":"bounty%20hunter_gmg","p":227,"h":1,"n":"Bounty Hunter"},{"c":1,"s":12,"id":1338,"u":"burglar_gmg","p":212,"h":1,"n":"Burglar"},{"c":1,"s":12,"id":1339,"u":"captain%20of%20the%20guard_gmg","p":236,"h":1,"n":"Captain Of The Guard"},{"c":1,"s":12,"id":1340,"u":"charlatan_gmg","p":210,"h":1,"n":"Charlatan"},{"c":1,"s":12,"id":1341,"u":"chronicler_gmg","p":216,"h":1,"n":"Chronicler"},{"c":1,"s":12,"id":1342,"u":"commoner_gmg","p":214,"h":1,"n":"Commoner"},{"c":1,"s":12,"id":1343,"u":"cult%20leader_gmg","p":231,"h":1,"n":"Cult Leader"},{"c":1,"s":12,"id":1344,"u":"cultist_gmg","p":229,"h":1,"n":"Cultist"},{"c":1,"s":12,"id":1345,"u":"dancer_gmg","p":237,"h":1,"n":"Dancer"},{"c":1,"s":12,"id":1346,"u":"demonologist_gmg","p":231,"h":1,"n":"Demonologist"},{"c":1,"s":12,"id":1347,"u":"despot_gmg","p":249,"h":1,"n":"Despot"},{"c":1,"s":12,"id":1348,"u":"dockhand_gmg","p":224,"h":1,"n":"Dockhand"},{"c":1,"s":12,"id":1349,"u":"drunkard_gmg","p":239,"h":1,"n":"Drunkard"},{"c":1,"s":12,"id":1350,"u":"executioner_gmg","p":236,"h":1,"n":"Executioner"},{"c":1,"s":12,"id":1351,"u":"false%20priest_gmg","p":229,"h":1,"n":"False Priest"},{"c":1,"s":12,"id":1352,"u":"farmer_gmg","p":224,"h":1,"n":"Farmer"},{"c":1,"s":12,"id":1353,"u":"fence_gmg","p":212,"h":1,"n":"Fence"},{"c":1,"s":12,"id":1354,"u":"gang%20leader_gmg","p":249,"h":1,"n":"Gang Leader"},{"c":1,"s":12,"id":1355,"u":"grave%20robber_gmg","p":209,"h":1,"n":"Grave Robber"},{"c":1,"s":12,"id":1356,"u":"gravedigger_gmg","p":224,"h":1,"n":"Gravedigger"},{"c":1,"s":12,"id":1357,"u":"guard_gmg","p":233,"h":1,"n":"Guard"},{"c":1,"s":12,"id":1358,"u":"guide_gmg","p":217,"h":1,"n":"Guide"},{"c":1,"s":12,"id":1359,"u":"guildmaster_gmg","p":245,"h":1,"n":"Guildmaster"},{"c":1,"s":12,"id":1360,"u":"harbormaster_gmg","p":225,"h":1,"n":"Harbormaster"},{"c":1,"s":12,"id":1361,"u":"harrow%20reader_gmg","p":228,"h":1,"n":"Harrow Reader"},{"c":1,"s":12,"id":1362,"u":"hunter_gmg","p":220,"h":1,"n":"Hunter"},{"c":1,"s":12,"id":1363,"u":"innkeeper_gmg","p":239,"h":1,"n":"Innkeeper"},{"c":1,"s":12,"id":1364,"u":"jailer_gmg","p":234,"h":1,"n":"Jailer"},{"c":1,"s":12,"id":1365,"u":"judge_gmg","p":224,"h":1,"n":"Judge"},{"c":1,"s":12,"id":1366,"u":"librarian_gmg","p":240,"h":1,"n":"Librarian"},{"c":1,"s":12,"id":1367,"u":"mage%20for%20hire_gmg","p":226,"h":1,"n":"Mage For Hire"},{"c":1,"s":12,"id":1368,"u":"mastermind_gmg","p":247,"h":1,"n":"Mastermind"},{"c":1,"s":12,"id":1369,"u":"merchant_gmg","p":244,"h":1,"n":"Merchant"},{"c":1,"s":12,"id":1370,"u":"miner_gmg","p":224,"h":1,"n":"Miner"},{"c":1,"s":12,"id":1371,"u":"monster%20hunter_gmg","p":227,"h":1,"n":"Monster Hunter"},{"c":1,"s":12,"id":1372,"u":"navigator_gmg","p":242,"h":1,"n":"Navigator"},{"c":1,"s":12,"id":1373,"u":"necromancer_gmg","p":231,"h":1,"n":"Necromancer"},{"c":1,"s":12,"id":1374,"u":"noble_gmg","p":207,"h":1,"n":"Noble"},{"c":1,"s":12,"id":1375,"u":"palace%20guard_gmg","p":207,"h":1,"n":"Palace Guard"},{"c":1,"s":12,"id":1376,"u":"physician_gmg","p":221,"h":1,"n":"Physician"},{"c":1,"s":12,"id":1377,"u":"pirate_gmg","p":242,"h":1,"n":"Pirate"},{"c":1,"s":12,"id":1378,"u":"plague%20doctor_gmg","p":222,"h":1,"n":"Plague Doctor"},{"c":1,"s":12,"id":1379,"u":"poacher_gmg","p":219,"h":1,"n":"Poacher"},{"c":1,"s":12,"id":1380,"u":"priest%20of%20pharasma_gmg","p":213,"h":1,"n":"Priest Of Pharasma"},{"c":1,"s":12,"id":1381,"u":"prisoner_gmg","p":215,"h":1,"n":"Prisoner"},{"c":1,"s":12,"id":1382,"u":"prophet_gmg","p":212,"h":1,"n":"Prophet"},{"c":1,"s":12,"id":1383,"u":"reckless%20scientist_gmg","p":249,"h":1,"n":"Reckless Scientist"},{"c":1,"s":12,"id":1384,"u":"ruffian_gmg","p":210,"h":1,"n":"Ruffian"},{"c":1,"s":12,"id":1385,"u":"saboteur_gmg","p":247,"h":1,"n":"Saboteur"},{"c":1,"s":12,"id":1386,"u":"sage_gmg","p":241,"h":1,"n":"Sage"},{"c":1,"s":12,"id":1387,"u":"servant_gmg","p":224,"h":1,"n":"Servant"},{"c":1,"s":12,"id":1388,"u":"server_gmg","p":238,"h":1,"n":"Server"},{"c":1,"s":12,"id":1389,"u":"ship%20captain_gmg","p":243,"h":1,"n":"Ship Captain"},{"c":1,"s":12,"id":1390,"u":"smith_gmg","p":245,"h":1,"n":"Smith"},{"c":1,"s":12,"id":1391,"u":"spy_gmg","p":208,"h":1,"n":"Spy"},{"c":1,"s":12,"id":1392,"u":"surgeon_gmg","p":222,"h":1,"n":"Surgeon"},{"c":1,"s":12,"id":1393,"u":"tax%20collector_gmg","p":224,"h":1,"n":"Tax Collector"},{"c":1,"s":12,"id":1394,"u":"teacher_gmg","p":240,"h":1,"n":"Teacher"},{"c":1,"s":12,"id":1395,"u":"tomb%20raider_gmg","p":217,"h":1,"n":"Tomb Raider"},{"c":1,"s":12,"id":1396,"u":"torchbearer_gmg","p":216,"h":1,"n":"Torchbearer"},{"c":1,"s":12,"id":1397,"u":"tracker_gmg","p":220,"h":1,"n":"Tracker"},{"c":1,"s":12,"id":1398,"u":"troubadour_gmg","p":238,"h":1,"n":"Troubadour"},{"c":1,"s":12,"id":1399,"u":"urchin_gmg","p":215,"h":1,"n":"Urchin"},{"c":1,"s":12,"id":1400,"u":"warden_gmg","p":225,"h":1,"n":"Warden"},{"c":1,"s":12,"id":1401,"u":"watch%20officer_gmg","p":236,"h":1,"n":"Watch Officer"},{"c":1,"s":12,"id":1402,"u":"zealot%20of%20asmodeus_gmg","p":213,"h":1,"n":"Zealot Of Asmodeus"},{"c":1,"s":13,"id":1403,"u":"alak%20stagram_aoa1","p":19,"h":1,"n":"Alak Stagram"},{"c":1,"s":13,"id":1404,"u":"anadi%20elder_aoa1","p":85,"h":1,"n":"Anadi Elder"},{"c":1,"s":13,"id":1405,"u":"anadi%20hunter_aoa1","p":84,"h":1,"n":"Anadi Hunter"},{"c":1,"s":13,"id":1406,"u":"anadi%20sage_aoa1","p":85,"h":1,"n":"Anadi Sage"},{"c":1,"s":13,"id":1407,"u":"bloody%20blade%20mercenary_aoa1","p":50,"h":1,"n":"Bloody Blade Mercenary"},{"c":1,"s":13,"id":1408,"u":"calmont_aoa1","p":27,"h":1,"n":"Calmont"},{"c":1,"s":13,"id":1409,"u":"dmiri%20yoltosha_aoa1","p":51,"h":1,"n":"Dmiri Yoltosha"},{"c":1,"s":13,"id":1410,"u":"doorwarden_aoa1","p":86,"h":1,"n":"Doorwarden"},{"c":1,"s":13,"id":1411,"u":"emperor%20bird_aoa1","p":87,"h":1,"n":"Emperor Bird"},{"c":1,"s":13,"id":1412,"u":"grauladon_aoa1","p":88,"h":1,"n":"Grauladon"},{"c":1,"s":13,"id":1413,"u":"graveshell_aoa1","p":89,"h":1,"n":"Graveshell"},{"c":1,"s":13,"id":1414,"u":"hellcrown_aoa1","p":90,"h":1,"n":"Hellcrown"},{"c":1,"s":13,"id":1415,"u":"malarunk_aoa1","p":58,"h":1,"n":"Malarunk"},{"c":1,"s":13,"id":1416,"u":"renali_aoa1","p":79,"h":1,"n":"Renali"},{"c":1,"s":13,"id":1417,"u":"skeletal%20hellknight_aoa1","p":40,"h":1,"n":"Skeletal Hellknight"},{"c":1,"s":13,"id":1418,"u":"skorp%20and%20venak_aoa1","p":37,"h":1,"n":"Skorp And Venak"},{"c":1,"s":13,"id":1419,"u":"tixitog_aoa1","p":91,"h":1,"n":"Tixitog"},{"c":1,"s":13,"id":1420,"u":"voz%20lirayne_aoa1","p":81,"h":1,"n":"Voz Lirayne"},{"c":1,"s":13,"id":1421,"u":"warbal%20bumblebrasher_aoa1","p":83,"h":1,"n":"Warbal Bumblebrasher"},{"c":1,"s":14,"id":1422,"u":"asanbosam_aoa2","p":80,"h":1,"n":"Asanbosam"},{"c":1,"s":14,"id":1423,"u":"belmazog_aoa2","p":77,"h":1,"n":"Belmazog"},{"c":1,"s":14,"id":1424,"u":"bida_aoa2","p":81,"h":1,"n":"Bida"},{"c":1,"s":14,"id":1425,"u":"biloko%20veteran_aoa2","p":83,"h":1,"n":"Biloko Veteran"},{"c":1,"s":14,"id":1426,"u":"biloko%20warrior_aoa2","p":82,"h":1,"n":"Biloko Warrior"},{"c":1,"s":14,"id":1427,"u":"charau-ka%20acolyte%20of%20angazhan_aoa2","p":85,"h":1,"n":"Charau-ka Acolyte Of Angazhan"},{"c":1,"s":14,"id":1428,"u":"charau-ka%20butcher_aoa2","p":85,"h":1,"n":"Charau-ka Butcher"},{"c":1,"s":14,"id":1429,"u":"charau-ka%20dragon%20priest_aoa2","p":59,"h":1,"n":"Charau-ka Dragon Priest"},{"c":1,"s":14,"id":1430,"u":"charau-ka%20warrior_aoa2","p":84,"h":1,"n":"Charau-ka Warrior"},{"c":1,"s":14,"id":1431,"u":"ekujae%20guardian_aoa2","p":11,"h":1,"n":"Ekujae Guardian"},{"c":1,"s":14,"id":1432,"u":"eloko_aoa2","p":83,"h":1,"n":"Eloko"},{"c":1,"s":14,"id":1433,"u":"gerhard%20pendergrast_aoa2","p":37,"h":1,"n":"Gerhard Pendergrast"},{"c":1,"s":14,"id":1434,"u":"grippli%20archer_aoa2","p":87,"h":1,"n":"Grippli Archer"},{"c":1,"s":14,"id":1435,"u":"grippli%20greenspeaker_aoa2","p":87,"h":1,"n":"Grippli Greenspeaker"},{"c":1,"s":14,"id":1436,"u":"grippli%20scout_aoa2","p":86,"h":1,"n":"Grippli Scout"},{"c":1,"s":14,"id":1437,"u":"hezle_aoa2","p":50,"h":1,"n":"Hezle"},{"c":1,"s":14,"id":1438,"u":"jahsi_aoa2","p":11,"h":1,"n":"Jahsi"},{"c":1,"s":14,"id":1439,"u":"kishi_aoa2","p":88,"h":1,"n":"Kishi"},{"c":1,"s":14,"id":1440,"u":"living%20sap_aoa2","p":89,"h":1,"n":"Living Sap"},{"c":1,"s":14,"id":1441,"u":"mokele-mbembe_aoa2","p":90,"h":1,"n":"Mokele-mbembe"},{"c":1,"s":14,"id":1442,"u":"nketiah_aoa2","p":79,"h":1,"n":"Nketiah"},{"c":1,"s":14,"id":1443,"u":"racharak_aoa2","p":34,"h":1,"n":"Racharak"},{"c":1,"s":14,"id":1444,"u":"sabosan_aoa2","p":91,"h":1,"n":"Sabosan"},{"c":1,"s":15,"id":1445,"u":"augur_aoa3","p":82,"h":1,"n":"Augur"},{"c":1,"s":15,"id":1446,"u":"barushak%20il-varashma_aoa3","p":44,"h":1,"n":"Barushak Il-varashma"},{"c":1,"s":15,"id":1447,"u":"blood%20boar_aoa3","p":76,"h":1,"n":"Blood Boar"},{"c":1,"s":15,"id":1448,"u":"evangelist_aoa3","p":83,"h":1,"n":"Evangelist"},{"c":1,"s":15,"id":1449,"u":"ghastly%20bear_aoa3","p":50,"h":1,"n":"Ghastly Bear"},{"c":1,"s":15,"id":1450,"u":"heuberk%20thropp_aoa3","p":7,"h":1,"n":"Heuberk Thropp"},{"c":1,"s":15,"id":1451,"u":"interlocutor_aoa3","p":84,"h":1,"n":"Interlocutor"},{"c":1,"s":15,"id":1452,"u":"kalavakus_aoa3","p":77,"h":1,"n":"Kalavakus"},{"c":1,"s":15,"id":1453,"u":"laslunn_aoa3","p":87,"h":1,"n":"Laslunn"},{"c":1,"s":15,"id":1454,"u":"mercenary%20sailor_aoa3","p":18,"h":1,"n":"Mercenary Sailor"},{"c":1,"s":15,"id":1455,"u":"mialari%20docur_aoa3","p":89,"h":1,"n":"Mialari Docur"},{"c":1,"s":15,"id":1456,"u":"nolly%20peltry_aoa3","p":91,"h":1,"n":"Nolly Peltry"},{"c":1,"s":15,"id":1457,"u":"one-eye%20amnin_aoa3","p":23,"h":1,"n":"One-eye Amnin"},{"c":1,"s":15,"id":1458,"u":"osyluth_aoa3","p":78,"h":1,"n":"Osyluth"},{"c":1,"s":15,"id":1459,"u":"precentor_aoa3","p":85,"h":1,"n":"Precentor"},{"c":1,"s":15,"id":1460,"u":"remnant%20of%20barzillai_aoa3","p":80,"h":1,"n":"Remnant Of Barzillai"},{"c":1,"s":15,"id":1461,"u":"rusalka_aoa3","p":81,"h":1,"n":"Rusalka"},{"c":1,"s":15,"id":1462,"u":"rusty%20mae_aoa3","p":14,"h":1,"n":"Rusty Mae"},{"c":1,"s":15,"id":1463,"u":"scarlet%20triad%20poisoner_aoa3","p":41,"h":1,"n":"Scarlet Triad Poisoner"},{"c":1,"s":15,"id":1464,"u":"scarlet%20triad%20sneak_aoa3","p":8,"h":1,"n":"Scarlet Triad Sneak"},{"c":1,"s":15,"id":1465,"u":"scarlet%20triad%20sniper_aoa3","p":56,"h":1,"n":"Scarlet Triad Sniper"},{"c":1,"s":15,"id":1466,"u":"scarlet%20triad%20thug_aoa3","p":16,"h":1,"n":"Scarlet Triad Thug"},{"c":1,"s":15,"id":1467,"u":"shadow%20giant_aoa3","p":79,"h":1,"n":"Shadow Giant"},{"c":1,"s":15,"id":1468,"u":"vaklish_aoa3","p":54,"h":1,"n":"Vaklish"},{"c":1,"s":16,"id":1469,"u":"accursed%20forge-spurned_aoa4","p":32,"h":1,"n":"Accursed Forge-spurned"},{"c":1,"s":16,"id":1470,"u":"adult%20magma%20dragon_aoa4","p":80,"h":1,"n":"Adult Magma Dragon"},{"c":1,"s":16,"id":1471,"u":"ancient%20magma%20dragon_aoa4","p":81,"h":1,"n":"Ancient Magma Dragon"},{"c":1,"s":16,"id":1472,"u":"carnivorous%20crystal_aoa4","p":76,"h":1,"n":"Carnivorous Crystal"},{"c":1,"s":16,"id":1473,"u":"corrupt%20guard_aoa4","p":27,"h":1,"n":"Corrupt Guard"},{"c":1,"s":16,"id":1474,"u":"dalos_aoa4","p":77,"h":1,"n":"Dalos"},{"c":1,"s":16,"id":1475,"u":"deculi_aoa4","p":78,"h":1,"n":"Deculi"},{"c":1,"s":16,"id":1476,"u":"devourer_aoa4","p":79,"h":1,"n":"Devourer"},{"c":1,"s":16,"id":1477,"u":"dragonscarred%20dead_aoa4","p":82,"h":1,"n":"Dragonscarred Dead"},{"c":1,"s":16,"id":1478,"u":"duergar%20slave%20lord_aoa4","p":50,"h":1,"n":"Duergar Slave Lord"},{"c":1,"s":16,"id":1479,"u":"falrok_aoa4","p":46,"h":1,"n":"Falrok"},{"c":1,"s":16,"id":1480,"u":"forge-spurned_aoa4","p":83,"h":1,"n":"Forge-spurned"},{"c":1,"s":16,"id":1481,"u":"gashadokuro_aoa4","p":84,"h":1,"n":"Gashadokuro"},{"c":1,"s":16,"id":1482,"u":"ilssrah%20embermead_aoa4","p":89,"h":1,"n":"Ilssrah Embermead"},{"c":1,"s":16,"id":1483,"u":"kelda%20halrig_aoa4","p":87,"h":1,"n":"Kelda Halrig"},{"c":1,"s":16,"id":1484,"u":"king%20harral_aoa4","p":42,"h":1,"n":"King Harral"},{"c":1,"s":16,"id":1485,"u":"kralgurn_aoa4","p":31,"h":1,"n":"Kralgurn"},{"c":1,"s":16,"id":1486,"u":"lazurite-infused%20stone%20golem_aoa4","p":45,"h":1,"n":"Lazurite-infused Stone Golem"},{"c":1,"s":16,"id":1487,"u":"saggorak%20poltergeist_aoa4","p":43,"h":1,"n":"Saggorak Poltergeist"},{"c":1,"s":16,"id":1488,"u":"soulbound%20ruin_aoa4","p":85,"h":1,"n":"Soulbound Ruin"},{"c":1,"s":16,"id":1489,"u":"talamira_aoa4","p":8,"h":1,"n":"Talamira"},{"c":1,"s":16,"id":1490,"u":"thea_aoa4","p":31,"h":1,"n":"Thea"},{"c":1,"s":16,"id":1491,"u":"veshumirix_aoa4","p":91,"h":1,"n":"Veshumirix"},{"c":1,"s":16,"id":1492,"u":"xevalorg_aoa4","p":14,"h":1,"n":"Xevalorg"},{"c":1,"s":16,"id":1493,"u":"young%20magma%20dragon_aoa4","p":80,"h":1,"n":"Young Magma Dragon"},{"c":1,"s":16,"id":1494,"u":"zuferian_aoa4","p":37,"h":1,"n":"Zuferian"},{"c":1,"s":17,"id":1495,"u":"aluum%20enforcer_aoa5","p":82,"h":1,"n":"Aluum Enforcer"},{"c":1,"s":17,"id":1496,"u":"calikang_aoa5","p":84,"h":1,"n":"Calikang"},{"c":1,"s":17,"id":1497,"u":"cornugon_aoa5","p":87,"h":1,"n":"Cornugon"},{"c":1,"s":17,"id":1498,"u":"crucidaemon_aoa5","p":85,"h":1,"n":"Crucidaemon"},{"c":1,"s":17,"id":1499,"u":"duneshaker%20solifugid_aoa5","p":89,"h":1,"n":"Duneshaker Solifugid"},{"c":1,"s":17,"id":1500,"u":"giant%20solifugid_aoa5","p":89,"h":1,"n":"Giant Solifugid"},{"c":1,"s":17,"id":1501,"u":"immortal%20ichor_aoa5","p":88,"h":1,"n":"Immortal Ichor"},{"c":1,"s":17,"id":1502,"u":"ishti_aoa5","p":47,"h":1,"n":"Ishti"},{"c":1,"s":17,"id":1503,"u":"nalfeshnee_aoa5","p":86,"h":1,"n":"Nalfeshnee"},{"c":1,"s":17,"id":1504,"u":"scarlet%20triad%20boss_aoa5","p":57,"h":1,"n":"Scarlet Triad Boss"},{"c":1,"s":17,"id":1505,"u":"scarlet%20triad%20enforcer_aoa5","p":41,"h":1,"n":"Scarlet Triad Enforcer"},{"c":1,"s":17,"id":1506,"u":"scarlet%20triad%20mage_aoa5","p":57,"h":1,"n":"Scarlet Triad Mage"},{"c":1,"s":17,"id":1507,"u":"shak_aoa5","p":34,"h":1,"n":"Shak"},{"c":1,"s":17,"id":1508,"u":"spiritbound%20aluum_aoa5","p":83,"h":1,"n":"Spiritbound Aluum"},{"c":1,"s":17,"id":1509,"u":"teyam%20ishtori_aoa5","p":61,"h":1,"n":"Teyam Ishtori"},{"c":1,"s":17,"id":1510,"u":"uri%20zandivar_aoa5","p":93,"h":1,"n":"Uri Zandivar"},{"c":1,"s":17,"id":1511,"u":"witchwyrd_aoa5","p":90,"h":1,"n":"Witchwyrd"},{"c":1,"s":17,"id":1512,"u":"xotanispawn_aoa5","p":91,"h":1,"n":"Xotanispawn"},{"c":1,"s":17,"id":1513,"u":"zephyr%20guard_aoa5","p":51,"h":1,"n":"Zephyr Guard"},{"c":1,"s":18,"id":1514,"u":"aiudara%20wraith_aoa6","p":78,"h":1,"n":"Aiudara Wraith"},{"c":1,"s":18,"id":1515,"u":"animated%20dragonstorm_aoa6","p":10,"h":1,"n":"Animated Dragonstorm"},{"c":1,"s":18,"id":1516,"u":"candlaron's%20echo_aoa6","p":56,"h":1,"n":"Candlaron's Echo"},{"c":1,"s":18,"id":1517,"u":"dragonshard%20guardian_aoa6","p":79,"h":1,"n":"Dragonshard Guardian"},{"c":1,"s":18,"id":1518,"u":"dragonstorm%20fire%20giant_aoa6","p":14,"h":1,"n":"Dragonstorm Fire Giant"},{"c":1,"s":18,"id":1519,"u":"elder%20wyrmwraith_aoa6","p":85,"h":1,"n":"Elder Wyrmwraith"},{"c":1,"s":18,"id":1520,"u":"emaliza%20zandivar_aoa6","p":87,"h":1,"n":"Emaliza Zandivar"},{"c":1,"s":18,"id":1521,"u":"hermean%20mutant_aoa6","p":40,"h":1,"n":"Hermean Mutant"},{"c":1,"s":18,"id":1522,"u":"ilgreth_aoa6","p":57,"h":1,"n":"Ilgreth"},{"c":1,"s":18,"id":1523,"u":"ingnovim%20tluss_aoa6","p":39,"h":1,"n":"Ingnovim Tluss"},{"c":1,"s":18,"id":1524,"u":"ingnovim's%20assistant_aoa6","p":40,"h":1,"n":"Ingnovim's Assistant"},{"c":1,"s":18,"id":1525,"u":"inizra%20arumelo_aoa6","p":89,"h":1,"n":"Inizra Arumelo"},{"c":1,"s":18,"id":1526,"u":"lesser%20manifestation%20of%20dahak_aoa6","p":16,"h":1,"n":"Lesser Manifestation Of Dahak"},{"c":1,"s":18,"id":1527,"u":"manifestation%20of%20dahak_aoa6","p":63,"h":1,"n":"Manifestation Of Dahak"},{"c":1,"s":18,"id":1528,"u":"mengkare_aoa6","p":90,"h":1,"n":"Mengkare"},{"c":1,"s":18,"id":1529,"u":"promise%20guard_aoa6","p":29,"h":1,"n":"Promise Guard"},{"c":1,"s":18,"id":1530,"u":"rinnarv%20bontimar_aoa6","p":24,"h":1,"n":"Rinnarv Bontimar"},{"c":1,"s":18,"id":1531,"u":"tarrasque_aoa6","p":80,"h":1,"n":"Tarrasque"},{"c":1,"s":18,"id":1532,"u":"tzitzimitl_aoa6","p":82,"h":1,"n":"Tzitzimitl"},{"c":1,"s":18,"id":1533,"u":"vazgorlu_aoa6","p":83,"h":1,"n":"Vazgorlu"},{"c":1,"s":18,"id":1534,"u":"wyrmwraith_aoa6","p":84,"h":1,"n":"Wyrmwraith"},{"c":1,"s":18,"id":1535,"u":"xotani_aoa6","p":81,"h":1,"n":"Xotani"},{"c":1,"s":19,"id":1536,"u":"almiraj_aoe1","p":16,"h":1,"n":"Almiraj"},{"c":1,"s":19,"id":1537,"u":"antaro%20boldblade_aoe1","p":8,"h":1,"n":"Antaro Boldblade"},{"c":1,"s":19,"id":1538,"u":"battle%20leader%20rekarek_aoe1","p":27,"h":1,"n":"Battle Leader Rekarek"},{"c":1,"s":19,"id":1539,"u":"binumir_aoe1","p":82,"h":1,"n":"Binumir"},{"c":1,"s":19,"id":1540,"u":"bolar%20of%20stonemoor_aoe1","p":8,"h":1,"n":"Bolar Of Stonemoor"},{"c":1,"s":19,"id":1541,"u":"cobbleswarm_aoe1","p":83,"h":1,"n":"Cobbleswarm"},{"c":1,"s":19,"id":1542,"u":"eunice_aoe1","p":12,"h":1,"n":"Eunice"},{"c":1,"s":19,"id":1543,"u":"gref_aoe1","p":34,"h":1,"n":"Gref"},{"c":1,"s":19,"id":1544,"u":"grick_aoe1","p":35,"h":1,"n":"Grick"},{"c":1,"s":19,"id":1545,"u":"grospek%20lavarsus_aoe1","p":87,"h":1,"n":"Grospek Lavarsus"},{"c":1,"s":19,"id":1546,"u":"hendrid%20pratchett_aoe1","p":89,"h":1,"n":"Hendrid Pratchett"},{"c":1,"s":19,"id":1547,"u":"kekker_aoe1","p":34,"h":1,"n":"Kekker"},{"c":1,"s":19,"id":1548,"u":"kemeneles_aoe1","p":53,"h":1,"n":"Kemeneles"},{"c":1,"s":19,"id":1549,"u":"lyrma%20swampwalker_aoe1","p":54,"h":1,"n":"Lyrma Swampwalker"},{"c":1,"s":19,"id":1550,"u":"miriel%20grayleaf_aoe1","p":7,"h":1,"n":"Miriel Grayleaf"},{"c":1,"s":19,"id":1551,"u":"pickled%20punk_aoe1","p":59,"h":1,"n":"Pickled Punk"},{"c":1,"s":19,"id":1552,"u":"ralso_aoe1","p":91,"h":1,"n":"Ralso"},{"c":1,"s":19,"id":1553,"u":"shredskin_aoe1","p":60,"h":1,"n":"Shredskin"},{"c":1,"s":19,"id":1554,"u":"siege%20shard_aoe1","p":84,"h":1,"n":"Siege Shard"},{"c":1,"s":19,"id":1555,"u":"skebs_aoe1","p":8,"h":1,"n":"Skebs"},{"c":1,"s":19,"id":1556,"u":"vargouille_aoe1","p":35,"h":1,"n":"Vargouille"},{"c":1,"s":19,"id":1557,"u":"zrukbat_aoe1","p":85,"h":1,"n":"Zrukbat"},{"c":1,"s":20,"id":1558,"u":"bone%20skipper%20swarm_aoe2","p":80,"h":1,"n":"Bone Skipper Swarm"},{"c":1,"s":20,"id":1559,"u":"copper%20hand%20illusionist_aoe2","p":23,"h":1,"n":"Copper Hand Illusionist"},{"c":1,"s":20,"id":1560,"u":"copper%20hand%20rogue_aoe2","p":16,"h":1,"n":"Copper Hand Rogue"},{"c":1,"s":20,"id":1561,"u":"dreadsong%20dancer_aoe2","p":81,"h":1,"n":"Dreadsong Dancer"},{"c":1,"s":20,"id":1562,"u":"excorion_aoe2","p":82,"h":1,"n":"Excorion"},{"c":1,"s":20,"id":1563,"u":"fayati%20alummur_aoe2","p":26,"h":1,"n":"Fayati Alummur"},{"c":1,"s":20,"id":1564,"u":"frefferth_aoe2","p":35,"h":1,"n":"Frefferth"},{"c":1,"s":20,"id":1565,"u":"giant%20bone%20skipper_aoe2","p":80,"h":1,"n":"Giant Bone Skipper"},{"c":1,"s":20,"id":1566,"u":"kolo%20harvan_aoe2","p":17,"h":1,"n":"Kolo Harvan"},{"c":1,"s":20,"id":1567,"u":"najra%20lizard_aoe2","p":83,"h":1,"n":"Najra Lizard"},{"c":1,"s":20,"id":1568,"u":"ofalth%20zombie_aoe2","p":47,"h":1,"n":"Ofalth Zombie"},{"c":1,"s":20,"id":1569,"u":"shristi%20melipdra_aoe2","p":91,"h":1,"n":"Shristi Melipdra"},{"c":1,"s":20,"id":1570,"u":"skinsaw%20murderer_aoe2","p":50,"h":1,"n":"Skinsaw Murderer"},{"c":1,"s":20,"id":1571,"u":"skinsaw%20seamer_aoe2","p":51,"h":1,"n":"Skinsaw Seamer"},{"c":1,"s":20,"id":1572,"u":"skinstitch_aoe2","p":84,"h":1,"n":"Skinstitch"},{"c":1,"s":20,"id":1573,"u":"tenome_aoe2","p":85,"h":1,"n":"Tenome"},{"c":1,"s":20,"id":1574,"u":"teraphant_aoe2","p":86,"h":1,"n":"Teraphant"},{"c":1,"s":20,"id":1575,"u":"vaultbreaker%20ooze_aoe2","p":87,"h":1,"n":"Vaultbreaker Ooze"},{"c":1,"s":20,"id":1576,"u":"wrent%20dicaspiron_aoe2","p":89,"h":1,"n":"Wrent Dicaspiron"},{"c":1,"s":21,"id":1577,"u":"avarek_aoe3","p":80,"h":1,"n":"Avarek"},{"c":1,"s":21,"id":1578,"u":"barnacle%20ghoul_aoe3","p":83,"h":1,"n":"Barnacle Ghoul"},{"c":1,"s":21,"id":1579,"u":"bloody%20berleth_aoe3","p":21,"h":1,"n":"Bloody Berleth"},{"c":1,"s":21,"id":1580,"u":"bregdi_aoe3","p":81,"h":1,"n":"Bregdi"},{"c":1,"s":21,"id":1581,"u":"casino%20bouncer_aoe3","p":24,"h":1,"n":"Casino Bouncer"},{"c":1,"s":21,"id":1582,"u":"diobel%20sweeper%20tough_aoe3","p":8,"h":1,"n":"Diobel Sweeper Tough"},{"c":1,"s":21,"id":1583,"u":"eberark_aoe3","p":82,"h":1,"n":"Eberark"},{"c":1,"s":21,"id":1584,"u":"franca%20laurentz_aoe3","p":87,"h":1,"n":"Franca Laurentz"},{"c":1,"s":21,"id":1585,"u":"gage%20carlyle_aoe3","p":89,"h":1,"n":"Gage Carlyle"},{"c":1,"s":21,"id":1586,"u":"iroran%20skeleton_aoe3","p":52,"h":1,"n":"Iroran Skeleton"},{"c":1,"s":21,"id":1587,"u":"maurrisa%20jonne_aoe3","p":91,"h":1,"n":"Maurrisa Jonne"},{"c":1,"s":21,"id":1588,"u":"ravenile%20rager_aoe3","p":84,"h":1,"n":"Ravenile Rager"},{"c":1,"s":21,"id":1589,"u":"scathka_aoe3","p":43,"h":1,"n":"Scathka"},{"c":1,"s":21,"id":1590,"u":"shikwashim%20mercenary_aoe3","p":52,"h":1,"n":"Shikwashim Mercenary"},{"c":1,"s":21,"id":1591,"u":"svartalfar%20killer_aoe3","p":85,"h":1,"n":"Svartalfar Killer"},{"c":1,"s":21,"id":1592,"u":"tonla%20and%20yvelle_aoe3","p":17,"h":1,"n":"Tonla And Yvelle"},{"c":1,"s":21,"id":1593,"u":"washboard%20dog%20tough_aoe3","p":8,"h":1,"n":"Washboard Dog Tough"},{"c":1,"s":22,"id":1594,"u":"amateur%20chemist_aoe4","p":12,"h":1,"n":"Amateur Chemist"},{"c":1,"s":22,"id":1595,"u":"blackfingers%20acolyte_aoe4","p":13,"h":1,"n":"Blackfingers Acolyte"},{"c":1,"s":22,"id":1596,"u":"clockwork%20assassin_aoe4","p":82,"h":1,"n":"Clockwork Assassin"},{"c":1,"s":22,"id":1597,"u":"gloaming%20will-o'-wisp_aoe4","p":59,"h":1,"n":"Gloaming Will-o'-wisp"},{"c":1,"s":22,"id":1598,"u":"grabble%20forden_aoe4","p":45,"h":1,"n":"Grabble Forden"},{"c":1,"s":22,"id":1599,"u":"japu%20thalenger_aoe4","p":14,"h":1,"n":"Japu Thalenger"},{"c":1,"s":22,"id":1600,"u":"jonis%20flakfatter_aoe4","p":87,"h":1,"n":"Jonis Flakfatter"},{"c":1,"s":22,"id":1601,"u":"jorogumo_aoe4","p":83,"h":1,"n":"Jorogumo"},{"c":1,"s":22,"id":1602,"u":"kalyn%20pounch_aoe4","p":14,"h":1,"n":"Kalyn Pounch"},{"c":1,"s":22,"id":1603,"u":"morgrat%20and%20fillick_aoe4","p":29,"h":1,"n":"Morgrat And Fillick"},{"c":1,"s":22,"id":1604,"u":"norgorberite%20poisoner_aoe4","p":6,"h":1,"n":"Norgorberite Poisoner"},{"c":1,"s":22,"id":1605,"u":"poison%20eater_aoe4","p":23,"h":1,"n":"Poison Eater"},{"c":1,"s":22,"id":1606,"u":"shatterling_aoe4","p":84,"h":1,"n":"Shatterling"},{"c":1,"s":22,"id":1607,"u":"sleepless%20sun%20veteran_aoe4","p":37,"h":1,"n":"Sleepless Sun Veteran"},{"c":1,"s":22,"id":1608,"u":"the%20rabbit%20prince_aoe4","p":89,"h":1,"n":"The Rabbit Prince"},{"c":1,"s":22,"id":1609,"u":"the%20stabbing%20beast_aoe4","p":85,"h":1,"n":"The Stabbing Beast"},{"c":1,"s":22,"id":1610,"u":"velberi%20jallist_aoe4","p":22,"h":1,"n":"Velberi Jallist"},{"c":1,"s":22,"id":1611,"u":"wynsal%20starborn_aoe4","p":91,"h":1,"n":"Wynsal Starborn"},{"c":1,"s":23,"id":1612,"u":"black%20whale%20guard_aoe5","p":35,"h":1,"n":"Black Whale Guard"},{"c":1,"s":23,"id":1613,"u":"bloody%20barber%20goon_aoe5","p":21,"h":1,"n":"Bloody Barber Goon"},{"c":1,"s":23,"id":1614,"u":"calennia_aoe5","p":32,"h":1,"n":"Calennia"},{"c":1,"s":23,"id":1615,"u":"child%20of%20venom_aoe5","p":16,"h":1,"n":"Child Of Venom"},{"c":1,"s":23,"id":1616,"u":"clockwork%20amalgam_aoe5","p":81,"h":1,"n":"Clockwork Amalgam"},{"c":1,"s":23,"id":1617,"u":"clockwork%20assassin_aoe5","p":50,"h":1,"n":"Clockwork Assassin"},{"c":1,"s":23,"id":1618,"u":"garrote%20master%20assassin_aoe5","p":14,"h":1,"n":"Garrote Master Assassin"},{"c":1,"s":23,"id":1619,"u":"graem%20and%20grinlowe_aoe5","p":40,"h":1,"n":"Graem And Grinlowe"},{"c":1,"s":23,"id":1620,"u":"grimwold_aoe5","p":7,"h":1,"n":"Grimwold"},{"c":1,"s":23,"id":1621,"u":"ixusoth_aoe5","p":50,"h":1,"n":"Ixusoth"},{"c":1,"s":23,"id":1622,"u":"kapral_aoe5","p":7,"h":1,"n":"Kapral"},{"c":1,"s":23,"id":1623,"u":"lord%20guirden_aoe5","p":37,"h":1,"n":"Lord Guirden"},{"c":1,"s":23,"id":1624,"u":"lusca_aoe5","p":83,"h":1,"n":"Lusca"},{"c":1,"s":23,"id":1625,"u":"minchgorm_aoe5","p":84,"h":1,"n":"Minchgorm"},{"c":1,"s":23,"id":1626,"u":"miogimo_aoe5","p":89,"h":1,"n":"Miogimo"},{"c":1,"s":23,"id":1627,"u":"mother%20venom_aoe5","p":19,"h":1,"n":"Mother Venom"},{"c":1,"s":23,"id":1628,"u":"myrna%20rath_aoe5","p":39,"h":1,"n":"Myrna Rath"},{"c":1,"s":23,"id":1629,"u":"myrucarx_aoe5","p":85,"h":1,"n":"Myrucarx"},{"c":1,"s":23,"id":1630,"u":"obrousian_aoe5","p":86,"h":1,"n":"Obrousian"},{"c":1,"s":23,"id":1631,"u":"reginald%20vancaskerkin_aoe5","p":91,"h":1,"n":"Reginald Vancaskerkin"},{"c":1,"s":23,"id":1632,"u":"starwatch%20commando_aoe5","p":26,"h":1,"n":"Starwatch Commando"},{"c":1,"s":23,"id":1633,"u":"tiderunner%20aquamancer_aoe5","p":41,"h":1,"n":"Tiderunner Aquamancer"},{"c":1,"s":23,"id":1634,"u":"twisted%20jack_aoe5","p":22,"h":1,"n":"Twisted Jack"},{"c":1,"s":23,"id":1635,"u":"water_aoe5","p":82,"h":1,"n":"Water"},{"c":1,"s":23,"id":1636,"u":"zeal-damned%20ghoul_aoe5","p":9,"h":1,"n":"Zeal-damned Ghoul"},{"c":1,"s":23,"id":1637,"u":"zealborn_aoe5","p":87,"h":1,"n":"Zealborn"},{"c":1,"s":24,"id":1638,"u":"agent%20of%20the%20gray%20queen_aoe6","p":21,"h":1,"n":"Agent Of The Gray Queen"},{"c":1,"s":24,"id":1639,"u":"agradaemon_aoe6","p":79,"h":1,"n":"Agradaemon"},{"c":1,"s":24,"id":1640,"u":"alchemical%20horror_aoe6","p":55,"h":1,"n":"Alchemical Horror"},{"c":1,"s":24,"id":1641,"u":"avsheros%20the%20betrayer_aoe6","p":42,"h":1,"n":"Avsheros The Betrayer"},{"c":1,"s":24,"id":1642,"u":"baatamidar_aoe6","p":76,"h":1,"n":"Baatamidar"},{"c":1,"s":24,"id":1643,"u":"blune%20bandersworth_aoe6","p":87,"h":1,"n":"Blune Bandersworth"},{"c":1,"s":24,"id":1644,"u":"blune's%20illusory%20toady_aoe6","p":13,"h":1,"n":"Blune's Illusory Toady"},{"c":1,"s":24,"id":1645,"u":"camarach_aoe6","p":77,"h":1,"n":"Camarach"},{"c":1,"s":24,"id":1646,"u":"chaos%20gulgamodh_aoe6","p":45,"h":1,"n":"Chaos Gulgamodh"},{"c":1,"s":24,"id":1647,"u":"daemonic%20infector_aoe6","p":56,"h":1,"n":"Daemonic Infector"},{"c":1,"s":24,"id":1648,"u":"daemonic%20rumormonger_aoe6","p":53,"h":1,"n":"Daemonic Rumormonger"},{"c":1,"s":24,"id":1649,"u":"daemonic%20skinner_aoe6","p":51,"h":1,"n":"Daemonic Skinner"},{"c":1,"s":24,"id":1650,"u":"excorion%20paragon_aoe6","p":50,"h":1,"n":"Excorion Paragon"},{"c":1,"s":24,"id":1651,"u":"ghaele%20of%20kharnas_aoe6","p":32,"h":1,"n":"Ghaele Of Kharnas"},{"c":1,"s":24,"id":1652,"u":"graveknight%20of%20kharnas_aoe6","p":36,"h":1,"n":"Graveknight Of Kharnas"},{"c":1,"s":24,"id":1653,"u":"hegessik_aoe6","p":80,"h":1,"n":"Hegessik"},{"c":1,"s":24,"id":1654,"u":"hestriviniaas_aoe6","p":15,"h":1,"n":"Hestriviniaas"},{"c":1,"s":24,"id":1655,"u":"hundun%20chaos%20mage_aoe6","p":17,"h":1,"n":"Hundun Chaos Mage"},{"c":1,"s":24,"id":1656,"u":"il'setsya%20wyrmtouched_aoe6","p":89,"h":1,"n":"Il'setsya Wyrmtouched"},{"c":1,"s":24,"id":1657,"u":"izfiitar_aoe6","p":81,"h":1,"n":"Izfiitar"},{"c":1,"s":24,"id":1658,"u":"living%20mural_aoe6","p":31,"h":1,"n":"Living Mural"},{"c":1,"s":24,"id":1659,"u":"nenchuuj_aoe6","p":85,"h":1,"n":"Nenchuuj"},{"c":1,"s":24,"id":1660,"u":"olansa%20terimor_aoe6","p":91,"h":1,"n":"Olansa Terimor"},{"c":1,"s":24,"id":1661,"u":"overdrive%20imentesh_aoe6","p":9,"h":1,"n":"Overdrive Imentesh"},{"c":1,"s":24,"id":1662,"u":"penqual_aoe6","p":84,"h":1,"n":"Penqual"},{"c":1,"s":24,"id":1663,"u":"rhevanna_aoe6","p":83,"h":1,"n":"Rhevanna"},{"c":1,"s":24,"id":1664,"u":"slithering%20rift_aoe6","p":27,"h":1,"n":"Slithering Rift"},{"c":1,"s":24,"id":1665,"u":"sordesdaemon_aoe6","p":78,"h":1,"n":"Sordesdaemon"},{"c":1,"s":24,"id":1666,"u":"ulressia%20the%20blessed_aoe6","p":39,"h":1,"n":"Ulressia The Blessed"},{"c":1,"s":24,"id":1667,"u":"veksciralenix_aoe6","p":7,"h":1,"n":"Veksciralenix"},{"c":1,"s":25,"id":1668,"u":"aller%20rosk_av1","p":43,"h":1,"n":"Aller Rosk"},{"c":1,"s":25,"id":1669,"u":"augrael_av1","p":35,"h":1,"n":"Augrael"},{"c":1,"s":25,"id":1670,"u":"bloodsiphon_av1","p":23,"h":1,"n":"Bloodsiphon"},{"c":1,"s":25,"id":1671,"u":"boss%20skrawng_av1","p":11,"h":1,"n":"Boss Skrawng"},{"c":1,"s":25,"id":1672,"u":"canker%20cultist_av1","p":41,"h":1,"n":"Canker Cultist"},{"c":1,"s":25,"id":1673,"u":"chandriu%20invisar_av1","p":50,"h":1,"n":"Chandriu Invisar"},{"c":1,"s":25,"id":1674,"u":"corpselight_av1","p":82,"h":1,"n":"Corpselight"},{"c":1,"s":25,"id":1675,"u":"flickerwisp_av1","p":83,"h":1,"n":"Flickerwisp"},{"c":1,"s":25,"id":1676,"u":"jarelle%20kaldrian_av1","p":40,"h":1,"n":"Jarelle Kaldrian"},{"c":1,"s":25,"id":1677,"u":"jaul%20mezmin_av1","p":59,"h":1,"n":"Jaul Mezmin"},{"c":1,"s":25,"id":1678,"u":"jaul's%20wolf_av1","p":60,"h":1,"n":"Jaul's Wolf"},{"c":1,"s":25,"id":1679,"u":"morlock%20cultist_av1","p":85,"h":1,"n":"Morlock Cultist"},{"c":1,"s":25,"id":1680,"u":"morlock%20engineer_av1","p":84,"h":1,"n":"Morlock Engineer"},{"c":1,"s":25,"id":1681,"u":"morlock%20scavenger_av1","p":84,"h":1,"n":"Morlock Scavenger"},{"c":1,"s":25,"id":1682,"u":"nhakazarin_av1","p":48,"h":1,"n":"Nhakazarin"},{"c":1,"s":25,"id":1683,"u":"otari%20ilvashti_av1","p":89,"h":1,"n":"Otari Ilvashti"},{"c":1,"s":25,"id":1684,"u":"scalathrax_av1","p":86,"h":1,"n":"Scalathrax"},{"c":1,"s":25,"id":1685,"u":"voidglutton_av1","p":87,"h":1,"n":"Voidglutton"},{"c":1,"s":25,"id":1686,"u":"volluk%20azrinae_av1","p":54,"h":1,"n":"Volluk Azrinae"},{"c":1,"s":25,"id":1687,"u":"wrin%20sivinxi_av1","p":90,"h":1,"n":"Wrin Sivinxi"},{"c":1,"s":26,"id":1688,"u":"carman%20rajani_av2","p":87,"h":1,"n":"Carman Rajani"},{"c":1,"s":26,"id":1689,"u":"chafkhem_av2","p":19,"h":1,"n":"Chafkhem"},{"c":1,"s":26,"id":1690,"u":"dreshkan_av2","p":78,"h":1,"n":"Dreshkan"},{"c":1,"s":26,"id":1691,"u":"gibtanius_av2","p":81,"h":1,"n":"Gibtanius"},{"c":1,"s":26,"id":1692,"u":"gibtas%20bounder_av2","p":80,"h":1,"n":"Gibtas Bounder"},{"c":1,"s":26,"id":1693,"u":"gibtas%20spawn%20swarm_av2","p":80,"h":1,"n":"Gibtas Spawn Swarm"},{"c":1,"s":26,"id":1694,"u":"gulzash_av2","p":35,"h":1,"n":"Gulzash"},{"c":1,"s":26,"id":1695,"u":"jafaki_av2","p":88,"h":1,"n":"Jafaki"},{"c":1,"s":26,"id":1696,"u":"kragala_av2","p":35,"h":1,"n":"Kragala"},{"c":1,"s":26,"id":1697,"u":"mulventok_av2","p":79,"h":1,"n":"Mulventok"},{"c":1,"s":26,"id":1698,"u":"murschen_av2","p":39,"h":1,"n":"Murschen"},{"c":1,"s":26,"id":1699,"u":"nox_av2","p":36,"h":1,"n":"Nox"},{"c":1,"s":26,"id":1700,"u":"ryta_av2","p":36,"h":1,"n":"Ryta"},{"c":1,"s":26,"id":1701,"u":"sacuishu_av2","p":57,"h":1,"n":"Sacuishu"},{"c":1,"s":26,"id":1702,"u":"seugathi%20reality%20warper_av2","p":83,"h":1,"n":"Seugathi Reality Warper"},{"c":1,"s":26,"id":1703,"u":"seugathi%20servant_av2","p":82,"h":1,"n":"Seugathi Servant"},{"c":1,"s":26,"id":1704,"u":"shanrigol%20behemoth_av2","p":85,"h":1,"n":"Shanrigol Behemoth"},{"c":1,"s":26,"id":1705,"u":"shanrigol%20heap_av2","p":84,"h":1,"n":"Shanrigol Heap"},{"c":1,"s":26,"id":1706,"u":"urevian_av2","p":90,"h":1,"n":"Urevian"},{"c":1,"s":26,"id":1707,"u":"vischari_av2","p":34,"h":1,"n":"Vischari"},{"c":1,"s":27,"id":1708,"u":"belcorra%20haruvex_av3","p":87,"h":1,"n":"Belcorra Haruvex"},{"c":1,"s":27,"id":1709,"u":"bhazrade%20and%20klathor_av3","p":33,"h":1,"n":"Bhazrade And Klathor"},{"c":1,"s":27,"id":1710,"u":"bright%20walker_av3","p":78,"h":1,"n":"Bright Walker"},{"c":1,"s":27,"id":1711,"u":"caligni%20defender_av3","p":35,"h":1,"n":"Caligni Defender"},{"c":1,"s":27,"id":1712,"u":"deepwater%20dhuthorex_av3","p":80,"h":1,"n":"Deepwater Dhuthorex"},{"c":1,"s":27,"id":1713,"u":"dragon's%20blood%20puffball_av3","p":79,"h":1,"n":"Dragon's Blood Puffball"},{"c":1,"s":27,"id":1714,"u":"dread%20dhuthorex_av3","p":80,"h":1,"n":"Dread Dhuthorex"},{"c":1,"s":27,"id":1715,"u":"dread%20wisp_av3","p":81,"h":1,"n":"Dread Wisp"},{"c":1,"s":27,"id":1716,"u":"drow%20hunter_av3","p":82,"h":1,"n":"Drow Hunter"},{"c":1,"s":27,"id":1717,"u":"drow%20shootist_av3","p":83,"h":1,"n":"Drow Shootist"},{"c":1,"s":27,"id":1718,"u":"drow%20warden_av3","p":82,"h":1,"n":"Drow Warden"},{"c":1,"s":27,"id":1719,"u":"dulac_av3","p":9,"h":1,"n":"Dulac"},{"c":1,"s":27,"id":1720,"u":"elder%20child%20of%20belcorra_av3","p":14,"h":1,"n":"Elder Child Of Belcorra"},{"c":1,"s":27,"id":1721,"u":"galudu_av3","p":36,"h":1,"n":"Galudu"},{"c":1,"s":27,"id":1722,"u":"khurfel_av3","p":89,"h":1,"n":"Khurfel"},{"c":1,"s":27,"id":1723,"u":"lady's%20whisper_av3","p":49,"h":1,"n":"Lady's Whisper"},{"c":1,"s":27,"id":1724,"u":"padli_av3","p":7,"h":1,"n":"Padli"},{"c":1,"s":27,"id":1725,"u":"quara%20orshendiel_av3","p":91,"h":1,"n":"Quara Orshendiel"},{"c":1,"s":27,"id":1726,"u":"reaper%20skull%20puffball_av3","p":79,"h":1,"n":"Reaper Skull Puffball"},{"c":1,"s":27,"id":1727,"u":"salaisa%20malthulas_av3","p":30,"h":1,"n":"Salaisa Malthulas"},{"c":1,"s":27,"id":1728,"u":"urdefhan%20blood%20mage_av3","p":85,"h":1,"n":"Urdefhan Blood Mage"},{"c":1,"s":27,"id":1729,"u":"urdefhan%20death%20scout_av3","p":84,"h":1,"n":"Urdefhan Death Scout"},{"c":1,"s":27,"id":1730,"u":"urdefhan%20lasher_av3","p":84,"h":1,"n":"Urdefhan Lasher"},{"c":1,"s":27,"id":1731,"u":"voidbracken%20chuul_av3","p":57,"h":1,"n":"Voidbracken Chuul"},{"c":1,"s":28,"id":1732,"u":"abberton%20ruffians_ec1","p":9,"h":1,"n":"Abberton Ruffians"},{"c":1,"s":28,"id":1733,"u":"abrikandilu_ec1","p":81,"h":1,"n":"Abrikandilu"},{"c":1,"s":28,"id":1734,"u":"blood%20wolf_ec1","p":43,"h":1,"n":"Blood Wolf"},{"c":1,"s":28,"id":1735,"u":"bone%20croupier_ec1","p":80,"h":1,"n":"Bone Croupier"},{"c":1,"s":28,"id":1736,"u":"cavnakash_ec1","p":89,"h":1,"n":"Cavnakash"},{"c":1,"s":28,"id":1737,"u":"corrosive%20lizard_ec1","p":45,"h":1,"n":"Corrosive Lizard"},{"c":1,"s":28,"id":1738,"u":"corrupted%20priest_ec1","p":39,"h":1,"n":"Corrupted Priest"},{"c":1,"s":28,"id":1739,"u":"corrupted%20retainer_ec1","p":35,"h":1,"n":"Corrupted Retainer"},{"c":1,"s":28,"id":1740,"u":"daring%20danika_ec1","p":28,"h":1,"n":"Daring Danika"},{"c":1,"s":28,"id":1741,"u":"flea%20swarm_ec1","p":83,"h":1,"n":"Flea Swarm"},{"c":1,"s":28,"id":1742,"u":"giant%20flea_ec1","p":83,"h":1,"n":"Giant Flea"},{"c":1,"s":28,"id":1743,"u":"jaleen%20and%20rhovo_ec1","p":9,"h":1,"n":"Jaleen And Rhovo"},{"c":1,"s":28,"id":1744,"u":"jellico%20bounce-bounce_ec1","p":28,"h":1,"n":"Jellico Bounce-bounce"},{"c":1,"s":28,"id":1745,"u":"juvenile%20boar_ec1","p":20,"h":1,"n":"Juvenile Boar"},{"c":1,"s":28,"id":1746,"u":"luminous%20ooze_ec1","p":85,"h":1,"n":"Luminous Ooze"},{"c":1,"s":28,"id":1747,"u":"mechanical%20carny_ec1","p":86,"h":1,"n":"Mechanical Carny"},{"c":1,"s":28,"id":1748,"u":"nemmia%20bramblecloak_ec1","p":91,"h":1,"n":"Nemmia Bramblecloak"},{"c":1,"s":28,"id":1749,"u":"oil%20living%20graffiti_ec1","p":84,"h":1,"n":"Oil Living Graffiti"},{"c":1,"s":28,"id":1750,"u":"pinacosaurus_ec1","p":50,"h":1,"n":"Pinacosaurus"},{"c":1,"s":28,"id":1751,"u":"pruana%20two-punch_ec1","p":22,"h":1,"n":"Pruana Two-punch"},{"c":1,"s":28,"id":1752,"u":"smiler_ec1","p":38,"h":1,"n":"Smiler"},{"c":1,"s":28,"id":1753,"u":"smoldering%20leopard_ec1","p":44,"h":1,"n":"Smoldering Leopard"},{"c":1,"s":28,"id":1754,"u":"vermlek_ec1","p":82,"h":1,"n":"Vermlek"},{"c":1,"s":28,"id":1755,"u":"viktor%20volkano_ec1","p":29,"h":1,"n":"Viktor Volkano"},{"c":1,"s":28,"id":1756,"u":"violet_ec1","p":22,"h":1,"n":"Violet"},{"c":1,"s":28,"id":1757,"u":"xulgath%20bilebearer_ec1","p":87,"h":1,"n":"Xulgath Bilebearer"},{"c":1,"s":29,"id":1758,"u":"aives%20the%20smoke%20dragon_ec2","p":16,"h":1,"n":"Aives The Smoke Dragon"},{"c":1,"s":29,"id":1759,"u":"andera%20paldreen_ec2","p":87,"h":1,"n":"Andera Paldreen"},{"c":1,"s":29,"id":1760,"u":"bogey_ec2","p":78,"h":1,"n":"Bogey"},{"c":1,"s":29,"id":1761,"u":"bogeyman_ec2","p":79,"h":1,"n":"Bogeyman"},{"c":1,"s":29,"id":1762,"u":"bugaboo_ec2","p":78,"h":1,"n":"Bugaboo"},{"c":1,"s":29,"id":1763,"u":"celestial%20menagerie%20bruiser_ec2","p":47,"h":1,"n":"Celestial Menagerie Bruiser"},{"c":1,"s":29,"id":1764,"u":"chimpanzee%20visitant_ec2","p":83,"h":1,"n":"Chimpanzee Visitant"},{"c":1,"s":29,"id":1765,"u":"darricus%20stallit_ec2","p":57,"h":1,"n":"Darricus Stallit"},{"c":1,"s":29,"id":1766,"u":"delamar%20gianvin_ec2","p":16,"h":1,"n":"Delamar Gianvin"},{"c":1,"s":29,"id":1767,"u":"evora%20yarket_ec2","p":52,"h":1,"n":"Evora Yarket"},{"c":1,"s":29,"id":1768,"u":"gluttondark%20babau_ec2","p":23,"h":1,"n":"Gluttondark Babau"},{"c":1,"s":29,"id":1769,"u":"iridescent%20elephant_ec2","p":80,"h":1,"n":"Iridescent Elephant"},{"c":1,"s":29,"id":1770,"u":"lion%20visitant_ec2","p":83,"h":1,"n":"Lion Visitant"},{"c":1,"s":29,"id":1771,"u":"mistress%20dusklight_ec2","p":89,"h":1,"n":"Mistress Dusklight"},{"c":1,"s":29,"id":1772,"u":"muse%20phantom_ec2","p":81,"h":1,"n":"Muse Phantom"},{"c":1,"s":29,"id":1773,"u":"ruanna%20nyamma_ec2","p":17,"h":1,"n":"Ruanna Nyamma"},{"c":1,"s":29,"id":1774,"u":"ulthadar_ec2","p":91,"h":1,"n":"Ulthadar"},{"c":1,"s":29,"id":1775,"u":"xulgath%20spinesnapper_ec2","p":84,"h":1,"n":"Xulgath Spinesnapper"},{"c":1,"s":29,"id":1776,"u":"yaashka_ec2","p":26,"h":1,"n":"Yaashka"},{"c":1,"s":29,"id":1777,"u":"zuipnyrn_ec2","p":85,"h":1,"n":"Zuipnyrn"},{"c":1,"s":29,"id":1778,"u":"zunkri_ec2","p":27,"h":1,"n":"Zunkri"},{"c":1,"s":8,"id":1779,"u":"bitter%20truth%20bandit_ec3","p":17,"h":1,"n":"Bitter Truth Bandit"},{"c":1,"s":8,"id":1780,"u":"bugul%20noz_ec3","p":76,"h":1,"n":"Bugul Noz"},{"c":1,"s":8,"id":1781,"u":"cat%20sith_ec3","p":77,"h":1,"n":"Cat Sith"},{"c":1,"s":8,"id":1782,"u":"counteflora_ec3","p":78,"h":1,"n":"Counteflora"},{"c":1,"s":8,"id":1783,"u":"cu%20sith_ec3","p":79,"h":1,"n":"Cu Sith"},{"c":1,"s":8,"id":1784,"u":"ginjana%20mindkeeper_ec3","p":87,"h":1,"n":"Ginjana Mindkeeper"},{"c":1,"s":8,"id":1785,"u":"headless%20xulgath_ec3","p":50,"h":1,"n":"Headless Xulgath"},{"c":1,"s":8,"id":1786,"u":"herecite%20of%20zevgavizeb_ec3","p":80,"h":1,"n":"Herecite Of Zevgavizeb"},{"c":1,"s":8,"id":1787,"u":"hooklimb%20xulgath_ec3","p":55,"h":1,"n":"Hooklimb Xulgath"},{"c":1,"s":8,"id":1788,"u":"pin%20tingwheely_ec3","p":20,"h":1,"n":"Pin Tingwheely"},{"c":1,"s":8,"id":1789,"u":"resin-seep%20xulgath_ec3","p":51,"h":1,"n":"Resin-seep Xulgath"},{"c":1,"s":8,"id":1790,"u":"shoony%20hierarch_ec3","p":83,"h":1,"n":"Shoony Hierarch"},{"c":1,"s":8,"id":1791,"u":"shoony%20militia%20member_ec3","p":83,"h":1,"n":"Shoony Militia Member"},{"c":1,"s":8,"id":1792,"u":"shoony%20tiller_ec3","p":82,"h":1,"n":"Shoony Tiller"},{"c":1,"s":8,"id":1793,"u":"skarja_ec3","p":88,"h":1,"n":"Skarja"},{"c":1,"s":8,"id":1794,"u":"swardlands%20delinquent_ec3","p":15,"h":1,"n":"Swardlands Delinquent"},{"c":1,"s":8,"id":1795,"u":"tanessa%20fleer_ec3","p":16,"h":1,"n":"Tanessa Fleer"},{"c":1,"s":8,"id":1796,"u":"thessekka_ec3","p":91,"h":1,"n":"Thessekka"},{"c":1,"s":8,"id":1797,"u":"xulgath%20bomber_ec3","p":28,"h":1,"n":"Xulgath Bomber"},{"c":1,"s":8,"id":1798,"u":"xulgath%20skirmisher_ec3","p":27,"h":1,"n":"Xulgath Skirmisher"},{"c":1,"s":8,"id":1799,"u":"xulgath%20stoneliege_ec3","p":84,"h":1,"n":"Xulgath Stoneliege"},{"c":1,"s":8,"id":1800,"u":"yaganty_ec3","p":85,"h":1,"n":"Yaganty"},{"c":1,"s":30,"id":1801,"u":"arskuva%20the%20gnasher_ec4","p":55,"h":1,"n":"Arskuva The Gnasher"},{"c":1,"s":30,"id":1802,"u":"aukashungi%20swarm_ec4","p":50,"h":1,"n":"Aukashungi Swarm"},{"c":1,"s":30,"id":1803,"u":"brughadatch_ec4","p":78,"h":1,"n":"Brughadatch"},{"c":1,"s":30,"id":1804,"u":"doblagub_ec4","p":79,"h":1,"n":"Doblagub"},{"c":1,"s":30,"id":1805,"u":"faceless%20butcher_ec4","p":80,"h":1,"n":"Faceless Butcher"},{"c":1,"s":30,"id":1806,"u":"gahlepod_ec4","p":78,"h":1,"n":"Gahlepod"},{"c":1,"s":30,"id":1807,"u":"giant%20aukashungi_ec4","p":77,"h":1,"n":"Giant Aukashungi"},{"c":1,"s":30,"id":1808,"u":"harrow%20doll_ec4","p":81,"h":1,"n":"Harrow Doll"},{"c":1,"s":30,"id":1809,"u":"helg%20eats-the-eaters_ec4","p":87,"h":1,"n":"Helg Eats-the-eaters"},{"c":1,"s":30,"id":1810,"u":"ledorick%20banyan_ec4","p":89,"h":1,"n":"Ledorick Banyan"},{"c":1,"s":30,"id":1811,"u":"lyrt%20cozurn_ec4","p":40,"h":1,"n":"Lyrt Cozurn"},{"c":1,"s":30,"id":1812,"u":"qurashith_ec4","p":82,"h":1,"n":"Qurashith"},{"c":1,"s":30,"id":1813,"u":"sodden%20sentinels_ec4","p":32,"h":1,"n":"Sodden Sentinels"},{"c":1,"s":30,"id":1814,"u":"starved%20staff_ec4","p":16,"h":1,"n":"Starved Staff"},{"c":1,"s":30,"id":1815,"u":"stirvyn%20banyan_ec4","p":39,"h":1,"n":"Stirvyn Banyan"},{"c":1,"s":30,"id":1816,"u":"tallow%20ooze_ec4","p":83,"h":1,"n":"Tallow Ooze"},{"c":1,"s":30,"id":1817,"u":"tashlock%20banyan_ec4","p":39,"h":1,"n":"Tashlock Banyan"},{"c":1,"s":30,"id":1818,"u":"the%20vanish%20man_ec4","p":47,"h":1,"n":"The Vanish Man"},{"c":1,"s":30,"id":1819,"u":"war%20sauropelta_ec4","p":46,"h":1,"n":"War Sauropelta"},{"c":1,"s":30,"id":1820,"u":"wight%20cultist_ec4","p":34,"h":1,"n":"Wight Cultist"},{"c":1,"s":30,"id":1821,"u":"xilvirek_ec4","p":84,"h":1,"n":"Xilvirek"},{"c":1,"s":30,"id":1822,"u":"xulgath%20gutrager_ec4","p":85,"h":1,"n":"Xulgath Gutrager"},{"c":1,"s":30,"id":1823,"u":"xulgath%20hardscale_ec4","p":53,"h":1,"n":"Xulgath Hardscale"},{"c":1,"s":30,"id":1824,"u":"xulgath%20herd-tender_ec4","p":10,"h":1,"n":"Xulgath Herd-tender"},{"c":1,"s":30,"id":1825,"u":"xulgath%20roughrider_ec4","p":23,"h":1,"n":"Xulgath Roughrider"},{"c":1,"s":30,"id":1826,"u":"zashathal%20head-taker_ec4","p":90,"h":1,"n":"Zashathal Head-taker"},{"c":1,"s":31,"id":1827,"u":"ammut_ec5","p":77,"h":1,"n":"Ammut"},{"c":1,"s":31,"id":1828,"u":"ararda_ec5","p":79,"h":1,"n":"Ararda"},{"c":1,"s":31,"id":1829,"u":"death%20drider_ec5","p":35,"h":1,"n":"Death Drider"},{"c":1,"s":31,"id":1830,"u":"dyzallin%20shraen_ec5","p":86,"h":1,"n":"Dyzallin Shraen"},{"c":1,"s":31,"id":1831,"u":"hollow%20hush_ec5","p":39,"h":1,"n":"Hollow Hush"},{"c":1,"s":31,"id":1832,"u":"iffdahsil_ec5","p":81,"h":1,"n":"Iffdahsil"},{"c":1,"s":31,"id":1833,"u":"kharostan_ec5","p":88,"h":1,"n":"Kharostan"},{"c":1,"s":31,"id":1834,"u":"muurfeli_ec5","p":78,"h":1,"n":"Muurfeli"},{"c":1,"s":31,"id":1835,"u":"obsidian%20golem_ec5","p":80,"h":1,"n":"Obsidian Golem"},{"c":1,"s":31,"id":1836,"u":"qormintur_ec5","p":91,"h":1,"n":"Qormintur"},{"c":1,"s":31,"id":1837,"u":"raptor%20guard%20wight_ec5","p":32,"h":1,"n":"Raptor Guard Wight"},{"c":1,"s":31,"id":1838,"u":"shraen%20graveknight_ec5","p":52,"h":1,"n":"Shraen Graveknight"},{"c":1,"s":31,"id":1839,"u":"urdefhan%20dominator_ec5","p":83,"h":1,"n":"Urdefhan Dominator"},{"c":1,"s":31,"id":1840,"u":"urdefhan%20high%20tormentor_ec5","p":82,"h":1,"n":"Urdefhan High Tormentor"},{"c":1,"s":31,"id":1841,"u":"urdefhan%20hunter_ec5","p":82,"h":1,"n":"Urdefhan Hunter"},{"c":1,"s":31,"id":1842,"u":"vitalia_ec5","p":84,"h":1,"n":"Vitalia"},{"c":1,"s":31,"id":1843,"u":"xulgath%20deepmouth_ec5","p":85,"h":1,"n":"Xulgath Deepmouth"},{"c":1,"s":31,"id":1844,"u":"zinogyvaz_ec5","p":35,"h":1,"n":"Zinogyvaz"},{"c":1,"s":32,"id":1845,"u":"barking%20stag_ec6","p":40,"h":1,"n":"Barking Stag"},{"c":1,"s":32,"id":1846,"u":"convergent%20giant%20eagle_ec6","p":12,"h":1,"n":"Convergent Giant Eagle"},{"c":1,"s":32,"id":1847,"u":"convergent%20kendley%20nathrael_ec6","p":87,"h":1,"n":"Convergent Kendley Nathrael"},{"c":1,"s":32,"id":1848,"u":"convergent%20soldier_ec6","p":14,"h":1,"n":"Convergent Soldier"},{"c":1,"s":32,"id":1849,"u":"elysian%20sheep_ec6","p":32,"h":1,"n":"Elysian Sheep"},{"c":1,"s":32,"id":1850,"u":"elysian%20titan_ec6","p":82,"h":1,"n":"Elysian Titan"},{"c":1,"s":32,"id":1851,"u":"kimilekki_ec6","p":17,"h":1,"n":"Kimilekki"},{"c":1,"s":32,"id":1852,"u":"kirosthrek_ec6","p":89,"h":1,"n":"Kirosthrek"},{"c":1,"s":32,"id":1853,"u":"sarvel%20ever-hunger_ec6","p":90,"h":1,"n":"Sarvel Ever-hunger"},{"c":1,"s":32,"id":1854,"u":"saurian%20warmonger_ec6","p":80,"h":1,"n":"Saurian Warmonger"},{"c":1,"s":32,"id":1855,"u":"saurian%20worldwatcher_ec6","p":81,"h":1,"n":"Saurian Worldwatcher"},{"c":1,"s":32,"id":1856,"u":"thanatotic%20titan_ec6","p":83,"h":1,"n":"Thanatotic Titan"},{"c":1,"s":32,"id":1857,"u":"vavakia_ec6","p":79,"h":1,"n":"Vavakia"},{"c":1,"s":32,"id":1858,"u":"viskithrel_ec6","p":84,"h":1,"n":"Viskithrel"},{"c":1,"s":32,"id":1859,"u":"xulgath%20thoughtmaw_ec6","p":85,"h":1,"n":"Xulgath Thoughtmaw"},{"c":1,"s":33,"id":1860,"u":"bee%20swarm_fop","p":11,"h":1,"n":"Bee Swarm"},{"c":1,"s":33,"id":1861,"u":"blood%20ooze_fop","p":63,"h":1,"n":"Blood Ooze"},{"c":1,"s":33,"id":1862,"u":"bloodlash%20bush_fop","p":62,"h":1,"n":"Bloodlash Bush"},{"c":1,"s":33,"id":1863,"u":"caustic%20wolf_fop","p":5,"h":1,"n":"Caustic Wolf"},{"c":1,"s":33,"id":1864,"u":"drunken%20farmer_fop","p":8,"h":1,"n":"Drunken Farmer"},{"c":1,"s":33,"id":1865,"u":"fiery%20leopard_fop","p":31,"h":1,"n":"Fiery Leopard"},{"c":1,"s":33,"id":1866,"u":"giant%20lightning%20serpent_fop","p":20,"h":1,"n":"Giant Lightning Serpent"},{"c":1,"s":33,"id":1867,"u":"graytusk_fop","p":40,"h":1,"n":"Graytusk"},{"c":1,"s":33,"id":1868,"u":"hallod_fop","p":21,"h":1,"n":"Hallod"},{"c":1,"s":33,"id":1869,"u":"icy%20rats_fop","p":31,"h":1,"n":"Icy Rats"},{"c":1,"s":33,"id":1870,"u":"lord%20nar_fop","p":38,"h":1,"n":"Lord Nar"},{"c":1,"s":33,"id":1871,"u":"mangy%20wolves_fop","p":5,"h":1,"n":"Mangy Wolves"},{"c":1,"s":33,"id":1872,"u":"mutant%20wolves_fop","p":27,"h":1,"n":"Mutant Wolves"},{"c":1,"s":33,"id":1873,"u":"stone%20horse_fop","p":30,"h":1,"n":"Stone Horse"},{"c":1,"s":33,"id":1874,"u":"the%20amalgam_fop","p":44,"h":1,"n":"The Amalgam"},{"c":1,"s":33,"id":1875,"u":"the%20behemoth_fop","p":47,"h":1,"n":"The Behemoth"},{"c":1,"s":33,"id":1876,"u":"the%20sculptor_fop","p":34,"h":1,"n":"The Sculptor"},{"c":1,"s":33,"id":1877,"u":"vilree_fop","p":47,"h":1,"n":"Vilree"},{"c":1,"s":33,"id":1878,"u":"vine%20lasher_fop","p":62,"h":1,"n":"Vine Lasher"},{"c":1,"s":34,"id":1879,"u":"agile%20warrior_frp1","p":23,"h":1,"n":"Agile Warrior"},{"c":1,"s":34,"id":1880,"u":"anugobu%20apprentice_frp1","p":80,"h":1,"n":"Anugobu Apprentice"},{"c":1,"s":34,"id":1881,"u":"anugobu%20wondercrafter_frp1","p":81,"h":1,"n":"Anugobu Wondercrafter"},{"c":1,"s":34,"id":1882,"u":"archery%20specialist_frp1","p":24,"h":1,"n":"Archery Specialist"},{"c":1,"s":34,"id":1883,"u":"berberoka_frp1","p":82,"h":1,"n":"Berberoka"},{"c":1,"s":34,"id":1884,"u":"blue%20viper_frp1","p":63,"h":1,"n":"Blue Viper"},{"c":1,"s":34,"id":1885,"u":"butterfly%20blade%20warrior_frp1","p":60,"h":1,"n":"Butterfly Blade Warrior"},{"c":1,"s":34,"id":1886,"u":"caustic%20monitor_frp1","p":86,"h":1,"n":"Caustic Monitor"},{"c":1,"s":34,"id":1887,"u":"dread%20roc_frp1","p":30,"h":1,"n":"Dread Roc"},{"c":1,"s":34,"id":1888,"u":"dromornis_frp1","p":83,"h":1,"n":"Dromornis"},{"c":1,"s":34,"id":1889,"u":"elder%20cauthooj_frp1","p":49,"h":1,"n":"Elder Cauthooj"},{"c":1,"s":34,"id":1890,"u":"ghost%20monk_frp1","p":15,"h":1,"n":"Ghost Monk"},{"c":1,"s":34,"id":1891,"u":"gomwai_frp1","p":48,"h":1,"n":"Gomwai"},{"c":1,"s":34,"id":1892,"u":"grave%20spinosaurus_frp1","p":32,"h":1,"n":"Grave Spinosaurus"},{"c":1,"s":34,"id":1893,"u":"hana's%20hundreds_frp1","p":51,"h":1,"n":"Hana's Hundreds"},{"c":1,"s":34,"id":1894,"u":"hantu%20belian_frp1","p":85,"h":1,"n":"Hantu Belian"},{"c":1,"s":34,"id":1895,"u":"hantu%20denai_frp1","p":84,"h":1,"n":"Hantu Denai"},{"c":1,"s":34,"id":1896,"u":"jaiban_frp1","p":41,"h":1,"n":"Jaiban"},{"c":1,"s":34,"id":1897,"u":"kannitri_frp1","p":19,"h":1,"n":"Kannitri"},{"c":1,"s":34,"id":1898,"u":"ki%20adept_frp1","p":24,"h":1,"n":"Ki Adept"},{"c":1,"s":34,"id":1899,"u":"koto%20zekora_frp1","p":55,"h":1,"n":"Koto Zekora"},{"c":1,"s":34,"id":1900,"u":"mage%20of%20many%20styles_frp1","p":25,"h":1,"n":"Mage Of Many Styles"},{"c":1,"s":34,"id":1901,"u":"mammoth%20turtle_frp1","p":31,"h":1,"n":"Mammoth Turtle"},{"c":1,"s":34,"id":1902,"u":"manananggal_frp1","p":87,"h":1,"n":"Manananggal"},{"c":1,"s":34,"id":1903,"u":"muckish%20creep_frp1","p":88,"h":1,"n":"Muckish Creep"},{"c":1,"s":34,"id":1904,"u":"nai%20yan%20fei_frp1","p":91,"h":1,"n":"Nai Yan Fei"},{"c":1,"s":34,"id":1905,"u":"old%20man%20statue_frp1","p":21,"h":1,"n":"Old Man Statue"},{"c":1,"s":34,"id":1906,"u":"planar%20terra-cotta%20soldier_frp1","p":52,"h":1,"n":"Planar Terra-cotta Soldier"},{"c":1,"s":34,"id":1907,"u":"planar%20terra-cotta%20squadron_frp1","p":53,"h":1,"n":"Planar Terra-cotta Squadron"},{"c":1,"s":34,"id":1908,"u":"ran-to_frp1","p":64,"h":1,"n":"Ran-to"},{"c":1,"s":34,"id":1909,"u":"shino%20hakusa_frp1","p":63,"h":1,"n":"Shino Hakusa"},{"c":1,"s":34,"id":1910,"u":"sigbin_frp1","p":89,"h":1,"n":"Sigbin"},{"c":1,"s":34,"id":1911,"u":"syu%20tak-nwa_frp1","p":63,"h":1,"n":"Syu Tak-nwa"},{"c":1,"s":34,"id":1912,"u":"takatorra_frp1","p":11,"h":1,"n":"Takatorra"},{"c":1,"s":34,"id":1913,"u":"tamikan_frp1","p":39,"h":1,"n":"Tamikan"},{"c":1,"s":34,"id":1914,"u":"tino_frp1","p":10,"h":1,"n":"Tino"},{"c":1,"s":34,"id":1915,"u":"tyrannosaurus%20imperator_frp1","p":31,"h":1,"n":"Tyrannosaurus Imperator"},{"c":1,"s":34,"id":1916,"u":"watchtower%20poltergeist_frp1","p":35,"h":1,"n":"Watchtower Poltergeist"},{"c":1,"s":34,"id":1917,"u":"watchtower%20shadow_frp1","p":36,"h":1,"n":"Watchtower Shadow"},{"c":1,"s":34,"id":1918,"u":"watchtower%20wraith_frp1","p":36,"h":1,"n":"Watchtower Wraith"},{"c":1,"s":34,"id":1919,"u":"weapon%20master_frp1","p":23,"h":1,"n":"Weapon Master"},{"c":1,"s":34,"id":1920,"u":"yabin%20the%20just_frp1","p":11,"h":1,"n":"Yabin The Just"},{"c":1,"s":34,"id":1921,"u":"yook_frp1","p":11,"h":1,"n":"Yook"},{"c":1,"s":35,"id":1922,"u":"akila%20stormheel_frp2","p":38,"h":1,"n":"Akila Stormheel"},{"c":1,"s":35,"id":1923,"u":"amihan_frp2","p":40,"h":1,"n":"Amihan"},{"c":1,"s":35,"id":1924,"u":"angoyang_frp2","p":78,"h":1,"n":"Angoyang"},{"c":1,"s":35,"id":1925,"u":"arm%20of%20balance_frp2","p":33,"h":1,"n":"Arm Of Balance"},{"c":1,"s":35,"id":1926,"u":"artus%20rodrivan_frp2","p":35,"h":1,"n":"Artus Rodrivan"},{"c":1,"s":35,"id":1927,"u":"blue%20viper_frp2","p":36,"h":1,"n":"Blue Viper"},{"c":1,"s":35,"id":1928,"u":"drake%20courser_frp2","p":13,"h":1,"n":"Drake Courser"},{"c":1,"s":35,"id":1929,"u":"grandfather%20mantis_frp2","p":35,"h":1,"n":"Grandfather Mantis"},{"c":1,"s":35,"id":1930,"u":"halspin%20the%20stung_frp2","p":41,"h":1,"n":"Halspin The Stung"},{"c":1,"s":35,"id":1931,"u":"huldrin%20skolsdottir_frp2","p":42,"h":1,"n":"Huldrin Skolsdottir"},{"c":1,"s":35,"id":1932,"u":"hummingbird_frp2","p":39,"h":1,"n":"Hummingbird"},{"c":1,"s":35,"id":1933,"u":"ji-yook_frp2","p":27,"h":1,"n":"Ji-yook"},{"c":1,"s":35,"id":1934,"u":"joon-seo_frp2","p":41,"h":1,"n":"Joon-seo"},{"c":1,"s":35,"id":1935,"u":"juspix%20rammel_frp2","p":42,"h":1,"n":"Juspix Rammel"},{"c":1,"s":35,"id":1936,"u":"kas%20xi%20rai_frp2","p":23,"h":1,"n":"Kas Xi Rai"},{"c":1,"s":35,"id":1937,"u":"kun_frp2","p":79,"h":1,"n":"Kun"},{"c":1,"s":35,"id":1938,"u":"lantondo_frp2","p":35,"h":1,"n":"Lantondo"},{"c":1,"s":35,"id":1939,"u":"maalya_frp2","p":40,"h":1,"n":"Maalya"},{"c":1,"s":35,"id":1940,"u":"mafika%20ayuwari_frp2","p":38,"h":1,"n":"Mafika Ayuwari"},{"c":1,"s":35,"id":1941,"u":"master%20xun_frp2","p":23,"h":1,"n":"Master Xun"},{"c":1,"s":35,"id":1942,"u":"melodic%20squall_frp2","p":57,"h":1,"n":"Melodic Squall"},{"c":1,"s":35,"id":1943,"u":"minister%20of%20tumult_frp2","p":87,"h":1,"n":"Minister Of Tumult"},{"c":1,"s":35,"id":1944,"u":"peng_frp2","p":82,"h":1,"n":"Peng"},{"c":1,"s":35,"id":1945,"u":"phuthi_frp2","p":39,"h":1,"n":"Phuthi"},{"c":1,"s":35,"id":1946,"u":"portal%20eater_frp2","p":56,"h":1,"n":"Portal Eater"},{"c":1,"s":35,"id":1947,"u":"provincial%20jiang-shi_frp2","p":86,"h":1,"n":"Provincial Jiang-shi"},{"c":1,"s":35,"id":1948,"u":"ran-to_frp2","p":37,"h":1,"n":"Ran-to"},{"c":1,"s":35,"id":1949,"u":"razu_frp2","p":91,"h":1,"n":"Razu"},{"c":1,"s":35,"id":1950,"u":"rivka_frp2","p":83,"h":1,"n":"Rivka"},{"c":1,"s":35,"id":1951,"u":"shadow%20yai_frp2","p":80,"h":1,"n":"Shadow Yai"},{"c":1,"s":35,"id":1952,"u":"shino%20hakusa_frp2","p":36,"h":1,"n":"Shino Hakusa"},{"c":1,"s":35,"id":1953,"u":"sixth%20pillar%20student_frp2","p":14,"h":1,"n":"Sixth Pillar Student"},{"c":1,"s":35,"id":1954,"u":"surjit%20hamelan_frp2","p":39,"h":1,"n":"Surjit Hamelan"},{"c":1,"s":35,"id":1955,"u":"syu%20tak-nwa_frp2","p":35,"h":1,"n":"Syu Tak-nwa"},{"c":1,"s":35,"id":1956,"u":"taiga%20yai_frp2","p":81,"h":1,"n":"Taiga Yai"},{"c":1,"s":35,"id":1957,"u":"takatorra_frp2","p":27,"h":1,"n":"Takatorra"},{"c":1,"s":35,"id":1958,"u":"tino%20tung_frp2","p":26,"h":1,"n":"Tino Tung"},{"c":1,"s":35,"id":1959,"u":"troff%20frostknuckles_frp2","p":43,"h":1,"n":"Troff Frostknuckles"},{"c":1,"s":35,"id":1960,"u":"umbasi_frp2","p":40,"h":1,"n":"Umbasi"},{"c":1,"s":35,"id":1961,"u":"urnak%20lostwind_frp2","p":41,"h":1,"n":"Urnak Lostwind"},{"c":1,"s":35,"id":1962,"u":"yabin%20the%20just_frp2","p":27,"h":1,"n":"Yabin The Just"},{"c":1,"s":35,"id":1963,"u":"yarrika%20mulandez_frp2","p":34,"h":1,"n":"Yarrika Mulandez"},{"c":1,"s":36,"id":1964,"u":"abbot%20tsujon_frp3","p":15,"h":1,"n":"Abbot Tsujon"},{"c":1,"s":36,"id":1965,"u":"blue%20viper_frp3","p":54,"h":1,"n":"Blue Viper"},{"c":1,"s":36,"id":1966,"u":"bul-gae_frp3","p":79,"h":1,"n":"Bul-gae"},{"c":1,"s":36,"id":1967,"u":"canopy%20elder_frp3","p":78,"h":1,"n":"Canopy Elder"},{"c":1,"s":36,"id":1968,"u":"cloudsplitter_frp3","p":19,"h":1,"n":"Cloudsplitter"},{"c":1,"s":36,"id":1969,"u":"dancing%20night%20parade_frp3","p":41,"h":1,"n":"Dancing Night Parade"},{"c":1,"s":36,"id":1970,"u":"desecrated%20guardian_frp3","p":80,"h":1,"n":"Desecrated Guardian"},{"c":1,"s":36,"id":1971,"u":"flying%20mountain%20kaminari_frp3","p":23,"h":1,"n":"Flying Mountain Kaminari"},{"c":1,"s":36,"id":1972,"u":"gumiho_frp3","p":81,"h":1,"n":"Gumiho"},{"c":1,"s":36,"id":1973,"u":"inmyeonjo_frp3","p":82,"h":1,"n":"Inmyeonjo"},{"c":1,"s":36,"id":1974,"u":"jin-hae_frp3","p":18,"h":1,"n":"Jin-hae"},{"c":1,"s":36,"id":1975,"u":"laruhao_frp3","p":41,"h":1,"n":"Laruhao"},{"c":1,"s":36,"id":1976,"u":"lophiithu_frp3","p":83,"h":1,"n":"Lophiithu"},{"c":1,"s":36,"id":1977,"u":"orochi_frp3","p":84,"h":1,"n":"Orochi"},{"c":1,"s":36,"id":1978,"u":"rai%20sho%20disciple_frp3","p":14,"h":1,"n":"Rai Sho Disciple"},{"c":1,"s":36,"id":1979,"u":"rai%20sho%20postulant_frp3","p":13,"h":1,"n":"Rai Sho Postulant"},{"c":1,"s":36,"id":1980,"u":"ran-to_frp3","p":54,"h":1,"n":"Ran-to"},{"c":1,"s":36,"id":1981,"u":"sanzuwu_frp3","p":85,"h":1,"n":"Sanzuwu"},{"c":1,"s":36,"id":1982,"u":"shino%20hakusa_frp3","p":53,"h":1,"n":"Shino Hakusa"},{"c":1,"s":36,"id":1983,"u":"spinel%20leviathan%20syndara_frp3","p":58,"h":1,"n":"Spinel Leviathan Syndara"},{"c":1,"s":36,"id":1984,"u":"spirit%20turtle_frp3","p":86,"h":1,"n":"Spirit Turtle"},{"c":1,"s":36,"id":1985,"u":"sthira_frp3","p":87,"h":1,"n":"Sthira"},{"c":1,"s":36,"id":1986,"u":"syndara%20the%20sculptor_frp3","p":88,"h":1,"n":"Syndara The Sculptor"},{"c":1,"s":36,"id":1987,"u":"syu%20tak-nwa_frp3","p":52,"h":1,"n":"Syu Tak-nwa"},{"c":1,"s":36,"id":1988,"u":"yoh%20souran_frp3","p":91,"h":1,"n":"Yoh Souran"},{"c":1,"s":0,"id":1989,"u":"aigamuxa_lome","p":293,"h":1,"n":"Aigamuxa"},{"c":1,"s":0,"id":1990,"u":"anadi%20elder_lome","p":292,"h":1,"n":"Anadi Elder"},{"c":1,"s":0,"id":1991,"u":"anadi%20hunter_lome","p":291,"h":1,"n":"Anadi Hunter"},{"c":1,"s":0,"id":1992,"u":"anadi%20sage_lome","p":292,"h":1,"n":"Anadi Sage"},{"c":1,"s":0,"id":1993,"u":"asanbosam_lome","p":294,"h":1,"n":"Asanbosam"},{"c":1,"s":0,"id":1994,"u":"biloko%20veteran_lome","p":296,"h":1,"n":"Biloko Veteran"},{"c":1,"s":0,"id":1995,"u":"biloko%20warrior_lome","p":296,"h":1,"n":"Biloko Warrior"},{"c":1,"s":0,"id":1996,"u":"charau-ka%20acolyte%20of%20angazhan_lome","p":298,"h":1,"n":"Charau-ka Acolyte Of Angazhan"},{"c":1,"s":0,"id":1997,"u":"charau-ka%20butcher_lome","p":298,"h":1,"n":"Charau-ka Butcher"},{"c":1,"s":0,"id":1998,"u":"charau-ka%20warrior_lome","p":229977,"h":1,"n":"Charau-ka Warrior"},{"c":1,"s":0,"id":1999,"u":"eloko_lome","p":296,"h":1,"n":"Eloko"},{"c":1,"s":0,"id":2000,"u":"grootslang_lome","p":298,"h":1,"n":"Grootslang"},{"c":1,"s":0,"id":2001,"u":"k'nonna_lome","p":300,"h":1,"n":"K'nonna"},{"c":1,"s":0,"id":2002,"u":"kaava%20stalker_lome","p":301,"h":1,"n":"Kaava Stalker"},{"c":1,"s":0,"id":2003,"u":"karina_lome","p":302,"h":1,"n":"Karina"},{"c":1,"s":0,"id":2004,"u":"maliadi_lome","p":302,"h":1,"n":"Maliadi"},{"c":1,"s":0,"id":2005,"u":"mamlambo_lome","p":304,"h":1,"n":"Mamlambo"},{"c":1,"s":0,"id":2006,"u":"pygmy%20kaava_lome","p":301,"h":1,"n":"Pygmy Kaava"},{"c":1,"s":0,"id":2007,"u":"rompo_lome","p":305,"h":1,"n":"Rompo"},{"c":1,"s":0,"id":2008,"u":"si%c3%a9%20goluo_lome","p":306,"h":1,"n":"Sié Goluo"},{"c":1,"s":0,"id":2009,"u":"solar%20ibis_lome","p":307,"h":1,"n":"Solar Ibis"},{"c":1,"s":0,"id":2010,"u":"zinba_lome","p":308,"h":1,"n":"Zinba"},{"c":1,"s":37,"id":2011,"u":"princess%20sunset_ltiba","p":5,"h":1,"n":"Princess Sunset"},{"c":1,"s":38,"id":2012,"u":"ahvothian_sli","p":62,"h":1,"n":"Ahvothian"},{"c":1,"s":38,"id":2013,"u":"angazhani%20cultist_sli","p":30,"h":1,"n":"Angazhani Cultist"},{"c":1,"s":38,"id":2014,"u":"aspis%20guard_sli","p":44,"h":1,"n":"Aspis Guard"},{"c":1,"s":38,"id":2015,"u":"aspis%20technician_sli","p":45,"h":1,"n":"Aspis Technician"},{"c":1,"s":38,"id":2016,"u":"croakchief%20globblit%20skink-eater_sli","p":22,"h":1,"n":"Croakchief Globblit Skink-eater"},{"c":1,"s":38,"id":2017,"u":"cursebreaker_sli","p":38,"h":1,"n":"Cursebreaker"},{"c":1,"s":38,"id":2018,"u":"fuming%20sludge_sli","p":63,"h":1,"n":"Fuming Sludge"},{"c":1,"s":38,"id":2019,"u":"nyamat%20mshwe_sli","p":33,"h":1,"n":"Nyamat Mshwe"},{"c":1,"s":38,"id":2020,"u":"paga%20nikohian_sli","p":51,"h":1,"n":"Paga Nikohian"},{"c":1,"s":39,"id":2021,"u":"anadi%20fateweaver_sot1","p":79,"h":1,"n":"Anadi Fateweaver"},{"c":1,"s":39,"id":2022,"u":"anadi%20lurker_sot1","p":78,"h":1,"n":"Anadi Lurker"},{"c":1,"s":39,"id":2023,"u":"anadi%20seeker_sot1","p":78,"h":1,"n":"Anadi Seeker"},{"c":1,"s":39,"id":2024,"u":"binji_sot1","p":53,"h":1,"n":"Binji"},{"c":1,"s":39,"id":2025,"u":"bramble%20champion%20construct_sot1","p":41,"h":1,"n":"Bramble Champion Construct"},{"c":1,"s":39,"id":2026,"u":"giant%20mining%20bee_sot1","p":80,"h":1,"n":"Giant Mining Bee"},{"c":1,"s":39,"id":2027,"u":"giant%20silverfish_sot1","p":84,"h":1,"n":"Giant Silverfish"},{"c":1,"s":39,"id":2028,"u":"giant%20tsetse%20fly_sot1","p":81,"h":1,"n":"Giant Tsetse Fly"},{"c":1,"s":39,"id":2029,"u":"giant%20worker%20bee_sot1","p":80,"h":1,"n":"Giant Worker Bee"},{"c":1,"s":39,"id":2030,"u":"gnagrif_sot1","p":83,"h":1,"n":"Gnagrif"},{"c":1,"s":39,"id":2031,"u":"kurshkin_sot1","p":87,"h":1,"n":"Kurshkin"},{"c":1,"s":39,"id":2032,"u":"scrit_sot1","p":82,"h":1,"n":"Scrit"},{"c":1,"s":39,"id":2033,"u":"shieldbearer%20construct_sot1","p":40,"h":1,"n":"Shieldbearer Construct"},{"c":1,"s":39,"id":2034,"u":"sicklehand%20construct_sot1","p":41,"h":1,"n":"Sicklehand Construct"},{"c":1,"s":39,"id":2035,"u":"silverfish%20swarm_sot1","p":84,"h":1,"n":"Silverfish Swarm"},{"c":1,"s":39,"id":2036,"u":"spellskein_sot1","p":85,"h":1,"n":"Spellskein"},{"c":1,"s":39,"id":2037,"u":"stone%20ghost_sot1","p":89,"h":1,"n":"Stone Ghost"},{"c":1,"s":39,"id":2038,"u":"takulu%20ot_sot1","p":91,"h":1,"n":"Takulu Ot"},{"c":1,"s":39,"id":2039,"u":"umbo_sot1","p":22,"h":1,"n":"Umbo"},{"c":1,"s":39,"id":2040,"u":"urbel_sot1","p":55,"h":1,"n":"Urbel"},{"c":1,"s":40,"id":2041,"u":"damibwa_sot2","p":80,"h":1,"n":"Damibwa"},{"c":1,"s":40,"id":2042,"u":"fire-pot%20ubanu_sot2","p":89,"h":1,"n":"Fire-pot Ubanu"},{"c":1,"s":40,"id":2043,"u":"froglegs_sot2","p":91,"h":1,"n":"Froglegs"},{"c":1,"s":40,"id":2044,"u":"gbahali_sot2","p":81,"h":1,"n":"Gbahali"},{"c":1,"s":40,"id":2045,"u":"great%20grodair_sot2","p":59,"h":1,"n":"Great Grodair"},{"c":1,"s":40,"id":2046,"u":"grippli%20jinxer_sot2","p":83,"h":1,"n":"Grippli Jinxer"},{"c":1,"s":40,"id":2047,"u":"grippli%20skirmisher_sot2","p":82,"h":1,"n":"Grippli Skirmisher"},{"c":1,"s":40,"id":2048,"u":"i'iko%20dragon_sot2","p":84,"h":1,"n":"I'iko Dragon"},{"c":1,"s":40,"id":2049,"u":"kiru_sot2","p":27,"h":1,"n":"Kiru"},{"c":1,"s":40,"id":2050,"u":"kolbo_sot2","p":49,"h":1,"n":"Kolbo"},{"c":1,"s":40,"id":2051,"u":"kreekoss_sot2","p":53,"h":1,"n":"Kreekoss"},{"c":1,"s":40,"id":2052,"u":"loakan_sot2","p":28,"h":1,"n":"Loakan"},{"c":1,"s":40,"id":2053,"u":"mashkudu%20the%20bully_sot2","p":27,"h":1,"n":"Mashkudu The Bully"},{"c":1,"s":40,"id":2054,"u":"mpeshi_sot2","p":85,"h":1,"n":"Mpeshi"},{"c":1,"s":40,"id":2055,"u":"mutated%20sewer%20ooze_sot2","p":37,"h":1,"n":"Mutated Sewer Ooze"},{"c":1,"s":40,"id":2056,"u":"old%20thrasher_sot2","p":40,"h":1,"n":"Old Thrasher"},{"c":1,"s":40,"id":2057,"u":"reth_sot2","p":29,"h":1,"n":"Reth"},{"c":1,"s":40,"id":2058,"u":"salathiss_sot2","p":93,"h":1,"n":"Salathiss"},{"c":1,"s":40,"id":2059,"u":"serpentfolk%20granitescale_sot2","p":86,"h":1,"n":"Serpentfolk Granitescale"},{"c":1,"s":40,"id":2060,"u":"serpentfolk%20venom%20caller_sot2","p":87,"h":1,"n":"Serpentfolk Venom Caller"},{"c":1,"s":41,"id":2061,"u":"basilisk_tio","p":26,"h":1,"n":"Basilisk"},{"c":1,"s":41,"id":2062,"u":"boar_tio","p":8,"h":1,"n":"Boar"},{"c":1,"s":41,"id":2063,"u":"brimstone%20rat_tio","p":37,"h":1,"n":"Brimstone Rat"},{"c":1,"s":41,"id":2064,"u":"bugbear%20marauder_tio","p":30,"h":1,"n":"Bugbear Marauder"},{"c":1,"s":41,"id":2065,"u":"crocodile_tio","p":11,"h":1,"n":"Crocodile"},{"c":1,"s":41,"id":2066,"u":"gargoyle%20guardian_tio","p":35,"h":1,"n":"Gargoyle Guardian"},{"c":1,"s":41,"id":2067,"u":"ghost%20commoner_tio","p":20,"h":1,"n":"Ghost Commoner"},{"c":1,"s":41,"id":2068,"u":"giant%20centipede_tio","p":12,"h":1,"n":"Giant Centipede"},{"c":1,"s":41,"id":2069,"u":"giant%20rat_tio","p":14,"h":1,"n":"Giant Rat"},{"c":1,"s":41,"id":2070,"u":"giant%20spider_tio","p":16,"h":1,"n":"Giant Spider"},{"c":1,"s":41,"id":2071,"u":"hargrit%20leadbuster_tio","p":36,"h":1,"n":"Hargrit Leadbuster"},{"c":1,"s":41,"id":2072,"u":"harpies_tio","p":48,"h":1,"n":"Harpies"},{"c":1,"s":41,"id":2073,"u":"hell%20hound_tio","p":24,"h":1,"n":"Hell Hound"},{"c":1,"s":41,"id":2074,"u":"karstin%20star-hand%2c%20shadow_tio","p":29,"h":1,"n":"Karstin Star-Hand, Shadow"},{"c":1,"s":41,"id":2075,"u":"kobold%20dragon%20mage_tio","p":26,"h":1,"n":"Kobold Dragon Mage"},{"c":1,"s":41,"id":2076,"u":"kobold%20scout_tio","p":26,"h":1,"n":"Kobold Scout"},{"c":1,"s":41,"id":2077,"u":"kobold%20scout_tio","p":45,"h":1,"n":"Kobold Scout"},{"c":1,"s":41,"id":2078,"u":"kobold%20trapmaster_tio","p":45,"h":1,"n":"Kobold Trapmaster"},{"c":1,"s":41,"id":2079,"u":"kotgar%20leadbuster_tio","p":33,"h":1,"n":"Kotgar Leadbuster"},{"c":1,"s":41,"id":2080,"u":"kurnugian%20jackal_tio","p":61,"h":1,"n":"Kurnugian Jackal"},{"c":1,"s":41,"id":2081,"u":"leopard_tio","p":33,"h":1,"n":"Leopard"},{"c":1,"s":41,"id":2082,"u":"mimic%20prankster_tio","p":49,"h":1,"n":"Mimic Prankster"},{"c":1,"s":41,"id":2083,"u":"morgrym%20leadbuster_tio","p":35,"h":1,"n":"Morgrym Leadbuster"},{"c":1,"s":41,"id":2084,"u":"ogre%20warrior_tio","p":46,"h":1,"n":"Ogre Warrior"},{"c":1,"s":41,"id":2085,"u":"omblin%20leadbuster_tio","p":37,"h":1,"n":"Omblin Leadbuster"},{"c":1,"s":41,"id":2086,"u":"orc%20commander_tio","p":41,"h":1,"n":"Orc Commander"},{"c":1,"s":41,"id":2087,"u":"orc%20scrapper_tio","p":40,"h":1,"n":"Orc Scrapper"},{"c":1,"s":41,"id":2088,"u":"owlbear_tio","p":47,"h":1,"n":"Owlbear"},{"c":1,"s":41,"id":2089,"u":"scalliwing_tio","p":62,"h":1,"n":"Scalliwing"},{"c":1,"s":41,"id":2090,"u":"sewer%20ooze_tio","p":13,"h":1,"n":"Sewer Ooze"},{"c":1,"s":41,"id":2091,"u":"skeleton%20guard_tio","p":28,"h":1,"n":"Skeleton Guard"},{"c":1,"s":41,"id":2092,"u":"stinkweed%20shambler_tio","p":63,"h":1,"n":"Stinkweed Shambler"},{"c":1,"s":41,"id":2093,"u":"troll%20enforcer_tio","p":50,"h":1,"n":"Troll Enforcer"},{"c":1,"s":41,"id":2094,"u":"viper_tio","p":32,"h":1,"n":"Viper"},{"c":1,"s":41,"id":2095,"u":"web%20lurker_tio","p":17,"h":1,"n":"Web Lurker"},{"c":1,"s":41,"id":2096,"u":"wight_tio","p":28,"h":1,"n":"Wight"},{"c":1,"s":41,"id":2097,"u":"wolf_tio","p":24,"h":1,"n":"Wolf"},{"c":1,"s":41,"id":2098,"u":"zombie%20shambler_tio","p":29,"h":1,"n":"Zombie Shambler"},{"c":7,"s":4,"id":2099,"u":"amnesiac_apg","p":50,"h":1,"n":"Amnesiac"},{"c":7,"s":4,"id":2100,"u":"bandit_apg","p":48,"h":1,"n":"Bandit"},{"c":7,"s":4,"id":2101,"u":"barber_apg","p":48,"h":1,"n":"Barber"},{"c":7,"s":4,"id":2102,"u":"blessed_apg","p":50,"h":1,"n":"Blessed"},{"c":7,"s":4,"id":2103,"u":"bookkeeper_apg","p":48,"h":1,"n":"Bookkeeper"},{"c":7,"s":4,"id":2104,"u":"cook_apg","p":48,"h":1,"n":"Cook"},{"c":7,"s":4,"id":2105,"u":"courier_apg","p":48,"h":1,"n":"Courier"},{"c":7,"s":4,"id":2106,"u":"cultist_apg","p":48,"h":1,"n":"Cultist"},{"c":7,"s":4,"id":2107,"u":"cursed_apg","p":50,"h":1,"n":"Cursed"},{"c":7,"s":4,"id":2108,"u":"feral%20child_apg","p":50,"h":1,"n":"Feral Child"},{"c":7,"s":4,"id":2109,"u":"feybound_apg","p":50,"h":1,"n":"Feybound"},{"c":7,"s":4,"id":2110,"u":"haunted_apg","p":51,"h":1,"n":"Haunted"},{"c":7,"s":4,"id":2111,"u":"insurgent_apg","p":48,"h":1,"n":"Insurgent"},{"c":7,"s":4,"id":2112,"u":"outrider_apg","p":48,"h":1,"n":"Outrider"},{"c":7,"s":4,"id":2113,"u":"pilgrim_apg","p":49,"h":1,"n":"Pilgrim"},{"c":7,"s":4,"id":2114,"u":"refugee_apg","p":49,"h":1,"n":"Refugee"},{"c":7,"s":4,"id":2115,"u":"returned_apg","p":51,"h":1,"n":"Returned"},{"c":7,"s":4,"id":2116,"u":"root%20worker_apg","p":49,"h":1,"n":"Root Worker"},{"c":7,"s":4,"id":2117,"u":"royalty_apg","p":51,"h":1,"n":"Royalty"},{"c":7,"s":4,"id":2118,"u":"scavenger_apg","p":49,"h":1,"n":"Scavenger"},{"c":7,"s":4,"id":2119,"u":"servant_apg","p":49,"h":1,"n":"Servant"},{"c":7,"s":4,"id":2120,"u":"squire_apg","p":49,"h":1,"n":"Squire"},{"c":7,"s":4,"id":2121,"u":"tax%20collector_apg","p":49,"h":1,"n":"Tax Collector"},{"c":7,"s":4,"id":2122,"u":"teacher_apg","p":49,"h":1,"n":"Teacher"},{"c":7,"s":4,"id":2123,"u":"ward_apg","p":49,"h":1,"n":"Ward"},{"c":7,"s":5,"id":2124,"u":"acolyte_crb","p":60,"h":1,"n":"Acolyte"},{"c":7,"s":5,"id":2125,"u":"acrobat_crb","p":60,"h":1,"n":"Acrobat"},{"c":7,"s":5,"id":2126,"u":"animal%20whisperer_crb","p":60,"h":1,"n":"Animal Whisperer"},{"c":7,"s":5,"id":2127,"u":"artisan_crb","p":60,"h":1,"n":"Artisan"},{"c":7,"s":5,"id":2128,"u":"artist_crb","p":60,"h":1,"n":"Artist"},{"c":7,"s":5,"id":2129,"u":"barkeep_crb","p":60,"h":1,"n":"Barkeep"},{"c":7,"s":5,"id":2130,"u":"barrister_crb","p":60,"h":1,"n":"Barrister"},{"c":7,"s":5,"id":2131,"u":"bounty%20hunter_crb","p":61,"h":1,"n":"Bounty Hunter"},{"c":7,"s":5,"id":2132,"u":"charlatan_crb","p":61,"h":1,"n":"Charlatan"},{"c":7,"s":5,"id":2133,"u":"criminal_crb","p":61,"h":1,"n":"Criminal"},{"c":7,"s":5,"id":2134,"u":"detective_crb","p":61,"h":1,"n":"Detective"},{"c":7,"s":5,"id":2135,"u":"emissary_crb","p":61,"h":1,"n":"Emissary"},{"c":7,"s":5,"id":2136,"u":"entertainer_crb","p":61,"h":1,"n":"Entertainer"},{"c":7,"s":5,"id":2137,"u":"farmhand_crb","p":62,"h":1,"n":"Farmhand"},{"c":7,"s":5,"id":2138,"u":"field%20medic_crb","p":62,"h":1,"n":"Field Medic"},{"c":7,"s":5,"id":2139,"u":"fortune%20teller_crb","p":62,"h":1,"n":"Fortune Teller"},{"c":7,"s":5,"id":2140,"u":"gambler_crb","p":62,"h":1,"n":"Gambler"},{"c":7,"s":5,"id":2141,"u":"gladiator_crb","p":62,"h":1,"n":"Gladiator"},{"c":7,"s":5,"id":2142,"u":"guard_crb","p":62,"h":1,"n":"Guard"},{"c":7,"s":5,"id":2143,"u":"herbalist_crb","p":62,"h":1,"n":"Herbalist"},{"c":7,"s":5,"id":2144,"u":"hermit_crb","p":62,"h":1,"n":"Hermit"},{"c":7,"s":5,"id":2145,"u":"hunter_crb","p":62,"h":1,"n":"Hunter"},{"c":7,"s":5,"id":2146,"u":"laborer_crb","p":62,"h":1,"n":"Laborer"},{"c":7,"s":5,"id":2147,"u":"martial%20disciple_crb","p":63,"h":1,"n":"Martial Disciple"},{"c":7,"s":5,"id":2148,"u":"merchant_crb","p":63,"h":1,"n":"Merchant"},{"c":7,"s":5,"id":2149,"u":"miner_crb","p":63,"h":1,"n":"Miner"},{"c":7,"s":5,"id":2150,"u":"noble_crb","p":63,"h":1,"n":"Noble"},{"c":7,"s":5,"id":2151,"u":"nomad_crb","p":63,"h":1,"n":"Nomad"},{"c":7,"s":5,"id":2152,"u":"prisoner_crb","p":63,"h":1,"n":"Prisoner"},{"c":7,"s":5,"id":2153,"u":"sailor_crb","p":63,"h":1,"n":"Sailor"},{"c":7,"s":5,"id":2154,"u":"scholar_crb","p":63,"h":1,"n":"Scholar"},{"c":7,"s":5,"id":2155,"u":"scout_crb","p":64,"h":1,"n":"Scout"},{"c":7,"s":5,"id":2156,"u":"street%20urchin_crb","p":64,"h":1,"n":"Street Urchin"},{"c":7,"s":5,"id":2157,"u":"tinker_crb","p":64,"h":1,"n":"Tinker"},{"c":7,"s":5,"id":2158,"u":"warrior_crb","p":64,"h":1,"n":"Warrior"},{"c":7,"s":42,"id":2159,"u":"dragon%20scholar_aoa0","p":4,"h":1,"n":"Dragon Scholar"},{"c":7,"s":42,"id":2160,"u":"emancipated_aoa0","p":4,"h":1,"n":"Emancipated"},{"c":7,"s":42,"id":2161,"u":"haunting%20vision_aoa0","p":4,"h":1,"n":"Haunting Vision"},{"c":7,"s":42,"id":2162,"u":"hellknight%20historian_aoa0","p":5,"h":1,"n":"Hellknight Historian"},{"c":7,"s":42,"id":2163,"u":"local%20scion_aoa0","p":5,"h":1,"n":"Local Scion"},{"c":7,"s":42,"id":2164,"u":"out-of-towner_aoa0","p":5,"h":1,"n":"Out-of-towner"},{"c":7,"s":42,"id":2165,"u":"reputation%20seeker_aoa0","p":5,"h":1,"n":"Reputation Seeker"},{"c":7,"s":42,"id":2166,"u":"returning%20descendant_aoa0","p":5,"h":1,"n":"Returning Descendant"},{"c":7,"s":42,"id":2167,"u":"truth%20seeker_aoa0","p":6,"h":1,"n":"Truth Seeker"},{"c":7,"s":16,"id":2168,"u":"droskari%20disciple_aoa4","p":63,"h":1,"n":"Droskari Disciple"},{"c":7,"s":18,"id":2169,"u":"aiudara%20seeker_aoa6","p":73,"h":1,"n":"Aiudara Seeker"},{"c":7,"s":18,"id":2170,"u":"hermean%20heritor_aoa6","p":73,"h":1,"n":"Hermean Heritor"},{"c":7,"s":18,"id":2171,"u":"legendary%20parents_aoa6","p":73,"h":1,"n":"Legendary Parents"},{"c":7,"s":18,"id":2172,"u":"touched%20by%20dahak_aoa6","p":73,"h":1,"n":"Touched By Dahak"},{"c":7,"s":43,"id":2173,"u":"ex-con%20token%20guard_aoe0","p":6,"h":1,"n":"Ex-con Token Guard"},{"c":7,"s":43,"id":2174,"u":"godless%20graycloak_aoe0","p":6,"h":1,"n":"Godless Graycloak"},{"c":7,"s":43,"id":2175,"u":"grizzled%20muckrucker_aoe0","p":7,"h":1,"n":"Grizzled Muckrucker"},{"c":7,"s":43,"id":2176,"u":"harbor%20guard%20moonlighter_aoe0","p":7,"h":1,"n":"Harbor Guard Moonlighter"},{"c":7,"s":43,"id":2177,"u":"learned%20guard%20prodigy_aoe0","p":7,"h":1,"n":"Learned Guard Prodigy"},{"c":7,"s":43,"id":2178,"u":"political%20scion_aoe0","p":8,"h":1,"n":"Political Scion"},{"c":7,"s":43,"id":2179,"u":"post%20guard%20of%20all%20trades_aoe0","p":8,"h":1,"n":"Post Guard Of All Trades"},{"c":7,"s":43,"id":2180,"u":"sally%20guard%20neophyte_aoe0","p":8,"h":1,"n":"Sally Guard Neophyte"},{"c":7,"s":43,"id":2181,"u":"sleepless%20suns%20star_aoe0","p":9,"h":1,"n":"Sleepless Suns Star"},{"c":7,"s":43,"id":2182,"u":"undercover%20lotus%20guard_aoe0","p":9,"h":1,"n":"Undercover Lotus Guard"},{"c":7,"s":22,"id":2183,"u":"harrow-led_aoe4","p":66,"h":1,"n":"Harrow-led"},{"c":7,"s":44,"id":2184,"u":"bibliophile_av0","p":4,"h":1,"n":"Bibliophile"},{"c":7,"s":44,"id":2185,"u":"eldritch%20anatomist_av0","p":4,"h":1,"n":"Eldritch Anatomist"},{"c":7,"s":44,"id":2186,"u":"fogfen%20tale-teller_av0","p":4,"h":1,"n":"Fogfen Tale-teller"},{"c":7,"s":44,"id":2187,"u":"market%20runner_av0","p":4,"h":1,"n":"Market Runner"},{"c":7,"s":44,"id":2188,"u":"ruin%20delver_av0","p":4,"h":1,"n":"Ruin Delver"},{"c":7,"s":44,"id":2189,"u":"starwatcher_av0","p":4,"h":1,"n":"Starwatcher"},{"c":7,"s":44,"id":2190,"u":"witchlight%20follower_av0","p":5,"h":1,"n":"Witchlight Follower"},{"c":7,"s":45,"id":2191,"u":"aerialist_ec0","p":4,"h":1,"n":"Aerialist"},{"c":7,"s":45,"id":2192,"u":"animal%20wrangler_ec0","p":4,"h":1,"n":"Animal Wrangler"},{"c":7,"s":45,"id":2193,"u":"barker_ec0","p":5,"h":1,"n":"Barker"},{"c":7,"s":45,"id":2194,"u":"blow-in_ec0","p":5,"h":1,"n":"Blow-in"},{"c":7,"s":45,"id":2195,"u":"butcher_ec0","p":5,"h":1,"n":"Butcher"},{"c":7,"s":45,"id":2196,"u":"circus%20born_ec0","p":5,"h":1,"n":"Circus Born"},{"c":7,"s":45,"id":2197,"u":"clown_ec0","p":6,"h":1,"n":"Clown"},{"c":7,"s":45,"id":2198,"u":"mystic%20seer_ec0","p":6,"h":1,"n":"Mystic Seer"},{"c":7,"s":45,"id":2199,"u":"rigger_ec0","p":6,"h":1,"n":"Rigger"},{"c":7,"s":8,"id":2200,"u":"dreamer%20of%20the%20verdant%20moon_ec3","p":67,"h":1,"n":"Dreamer Of The Verdant Moon"},{"c":7,"s":46,"id":2201,"u":"abadar's%20avenger_frp0","p":6,"h":1,"n":"Abadar's Avenger"},{"c":7,"s":46,"id":2202,"u":"attention%20addict_frp0","p":6,"h":1,"n":"Attention Addict"},{"c":7,"s":46,"id":2203,"u":"newcomer%20in%20need_frp0","p":7,"h":1,"n":"Newcomer In Need"},{"c":7,"s":46,"id":2204,"u":"ruby%20phoenix%20fanatic_frp0","p":7,"h":1,"n":"Ruby Phoenix Fanatic"},{"c":7,"s":46,"id":2205,"u":"second%20chance%20champion_frp0","p":7,"h":1,"n":"Second Chance Champion"},{"c":7,"s":46,"id":2206,"u":"undercover%20contender_frp0","p":7,"h":1,"n":"Undercover Contender"},{"c":7,"s":2,"id":2207,"u":"alkenstar%20outlaw_g%26g","p":124,"h":1,"n":"Alkenstar Outlaw"},{"c":7,"s":2,"id":2208,"u":"alkenstar%20sojourner_g%26g","p":124,"h":1,"n":"Alkenstar Sojourner"},{"c":7,"s":2,"id":2209,"u":"anti-tech%20activist_g%26g","p":44,"h":1,"n":"Anti-tech Activist"},{"c":7,"s":2,"id":2210,"u":"back-alley%20doctor_g%26g","p":122,"h":1,"n":"Back-alley Doctor"},{"c":7,"s":2,"id":2211,"u":"cannoneer_g%26g","p":122,"h":1,"n":"Cannoneer"},{"c":7,"s":2,"id":2212,"u":"circuit%20judge_g%26g","p":124,"h":1,"n":"Circuit Judge"},{"c":7,"s":2,"id":2213,"u":"clockfighter_g%26g","p":44,"h":1,"n":"Clockfighter"},{"c":7,"s":2,"id":2214,"u":"clockwork%20researcher_g%26g","p":44,"h":1,"n":"Clockwork Researcher"},{"c":7,"s":2,"id":2215,"u":"codebreaker_g%26g","p":44,"h":1,"n":"Codebreaker"},{"c":7,"s":2,"id":2216,"u":"deputy_g%26g","p":122,"h":1,"n":"Deputy"},{"c":7,"s":2,"id":2217,"u":"discarded%20duplicate_g%26g","p":46,"h":1,"n":"Discarded Duplicate"},{"c":7,"s":2,"id":2218,"u":"disciple%20of%20the%20gear_g%26g","p":45,"h":1,"n":"Disciple Of The Gear"},{"c":7,"s":2,"id":2219,"u":"driver_g%26g","p":45,"h":1,"n":"Driver"},{"c":7,"s":2,"id":2220,"u":"farmsteader_g%26g","p":123,"h":1,"n":"Farmsteader"},{"c":7,"s":2,"id":2221,"u":"fireworks%20performer_g%26g","p":122,"h":1,"n":"Fireworks Performer"},{"c":7,"s":2,"id":2222,"u":"goldhand%20arms%20dealer_g%26g","p":124,"h":1,"n":"Goldhand Arms Dealer"},{"c":7,"s":2,"id":2223,"u":"gunsmith_g%26g","p":122,"h":1,"n":"Gunsmith"},{"c":7,"s":2,"id":2224,"u":"hired%20killer_g%26g","p":122,"h":1,"n":"Hired Killer"},{"c":7,"s":2,"id":2225,"u":"hounded%20thief_g%26g","p":45,"h":1,"n":"Hounded Thief"},{"c":7,"s":2,"id":2226,"u":"junk%20collector_g%26g","p":123,"h":1,"n":"Junk Collector"},{"c":7,"s":2,"id":2227,"u":"junker_g%26g","p":45,"h":1,"n":"Junker"},{"c":7,"s":2,"id":2228,"u":"mechanic_g%26g","p":45,"h":1,"n":"Mechanic"},{"c":7,"s":2,"id":2229,"u":"mechanical%20symbiosis_g%26g","p":46,"h":1,"n":"Mechanical Symbiosis"},{"c":7,"s":2,"id":2230,"u":"medicinal%20clocksmith_g%26g","p":45,"h":1,"n":"Medicinal Clocksmith"},{"c":7,"s":2,"id":2231,"u":"otherworldly%20mission_g%26g","p":125,"h":1,"n":"Otherworldly Mission"},{"c":7,"s":2,"id":2232,"u":"press-ganged_g%26g","p":124,"h":1,"n":"Press-ganged"},{"c":7,"s":2,"id":2233,"u":"printer_g%26g","p":45,"h":1,"n":"Printer"},{"c":7,"s":2,"id":2234,"u":"revenant_g%26g","p":125,"h":1,"n":"Revenant"},{"c":7,"s":2,"id":2235,"u":"saboteur_g%26g","p":45,"h":1,"n":"Saboteur"},{"c":7,"s":2,"id":2236,"u":"saloon%20entertainer_g%26g","p":123,"h":1,"n":"Saloon Entertainer"},{"c":7,"s":2,"id":2237,"u":"saved%20by%20clockwork_g%26g","p":47,"h":1,"n":"Saved By Clockwork"},{"c":7,"s":2,"id":2238,"u":"sheriff_g%26g","p":124,"h":1,"n":"Sheriff"},{"c":7,"s":2,"id":2239,"u":"spotter_g%26g","p":123,"h":1,"n":"Spotter"},{"c":7,"s":2,"id":2240,"u":"tall%20tale_g%26g","p":125,"h":1,"n":"Tall Tale"},{"c":7,"s":2,"id":2241,"u":"tech-reliant_g%26g","p":47,"h":1,"n":"Tech-reliant"},{"c":7,"s":2,"id":2242,"u":"toymaker_g%26g","p":45,"h":1,"n":"Toymaker"},{"c":7,"s":2,"id":2243,"u":"undertaker_g%26g","p":123,"h":1,"n":"Undertaker"},{"c":7,"s":2,"id":2244,"u":"wandering%20preacher_g%26g","p":123,"h":1,"n":"Wandering Preacher"},{"c":7,"s":2,"id":2245,"u":"waste%20walker_g%26g","p":123,"h":1,"n":"Waste Walker"},{"c":7,"s":2,"id":2246,"u":"wished%20alive_g%26g","p":47,"h":1,"n":"Wished Alive"},{"c":7,"s":47,"id":2247,"u":"archaeologist_lopsg","p":8,"h":1,"n":"Archaeologist"},{"c":7,"s":47,"id":2248,"u":"pathfinder%20recruiter_lopsg","p":8,"h":1,"n":"Pathfinder Recruiter"},{"c":7,"s":47,"id":2249,"u":"spell%20seeker_lopsg","p":8,"h":1,"n":"Spell Seeker"},{"c":7,"s":47,"id":2250,"u":"trailblazer_lopsg","p":8,"h":1,"n":"Trailblazer"},{"c":7,"s":47,"id":2251,"u":"translator_lopsg","p":8,"h":1,"n":"Translator"},{"c":7,"s":48,"id":2252,"u":"alkenstar%20tinker_lowg","p":82,"h":1,"n":"Alkenstar Tinker"},{"c":7,"s":48,"id":2253,"u":"aspiring%20free%20captain_lowg","p":70,"h":1,"n":"Aspiring Free Captain"},{"c":7,"s":48,"id":2254,"u":"aspiring%20river%20monarch_lowg","p":34,"h":1,"n":"Aspiring River Monarch"},{"c":7,"s":48,"id":2255,"u":"atteran%20rancher_lowg","p":106,"h":1,"n":"Atteran Rancher"},{"c":7,"s":48,"id":2256,"u":"bekyar%20restorer_lowg","p":94,"h":1,"n":"Bekyar Restorer"},{"c":7,"s":48,"id":2257,"u":"belkzen%20slayer_lowg","p":46,"h":1,"n":"Belkzen Slayer"},{"c":7,"s":48,"id":2258,"u":"bellflower%20agent_lowg","p":106,"h":1,"n":"Bellflower Agent"},{"c":7,"s":48,"id":2259,"u":"black%20market%20smuggler_lowg","p":58,"h":1,"n":"Black Market Smuggler"},{"c":7,"s":48,"id":2260,"u":"bonuwat%20wavetouched_lowg","p":94,"h":1,"n":"Bonuwat Wavetouched"},{"c":7,"s":48,"id":2261,"u":"bright%20lion_lowg","p":94,"h":1,"n":"Bright Lion"},{"c":7,"s":48,"id":2262,"u":"chelish%20rebel_lowg","p":106,"h":1,"n":"Chelish Rebel"},{"c":7,"s":48,"id":2263,"u":"child%20of%20the%20puddles_lowg","p":22,"h":1,"n":"Child Of The Puddles"},{"c":7,"s":48,"id":2264,"u":"child%20of%20westcrown_lowg","p":106,"h":1,"n":"Child Of Westcrown"},{"c":7,"s":48,"id":2265,"u":"cursed%20family_lowg","p":46,"h":1,"n":"Cursed Family"},{"c":7,"s":48,"id":2266,"u":"desert%20tracker_lowg","p":58,"h":1,"n":"Desert Tracker"},{"c":7,"s":48,"id":2267,"u":"diobel%20pearl%20diver_lowg","p":22,"h":1,"n":"Diobel Pearl Diver"},{"c":7,"s":48,"id":2268,"u":"final%20blade%20survivor_lowg","p":130,"h":1,"n":"Final Blade Survivor"},{"c":7,"s":48,"id":2269,"u":"freed%20slave%20of%20absalom_lowg","p":22,"h":1,"n":"Freed Slave Of Absalom"},{"c":7,"s":48,"id":2270,"u":"geb%20crusader_lowg","p":82,"h":1,"n":"Geb Crusader"},{"c":7,"s":48,"id":2271,"u":"goblinblood%20orphan_lowg","p":106,"h":1,"n":"Goblinblood Orphan"},{"c":7,"s":48,"id":2272,"u":"grand%20council%20bureaucrat_lowg","p":22,"h":1,"n":"Grand Council Bureaucrat"},{"c":7,"s":48,"id":2273,"u":"hermean%20expatriate_lowg","p":70,"h":1,"n":"Hermean Expatriate"},{"c":7,"s":48,"id":2274,"u":"inlander_lowg","p":22,"h":1,"n":"Inlander"},{"c":7,"s":48,"id":2275,"u":"issian%20partisan_lowg","p":34,"h":1,"n":"Issian Partisan"},{"c":7,"s":48,"id":2276,"u":"kalistrade%20follower_lowg","p":130,"h":1,"n":"Kalistrade Follower"},{"c":7,"s":48,"id":2277,"u":"kyonin%20emissary_lowg","p":130,"h":1,"n":"Kyonin Emissary"},{"c":7,"s":48,"id":2278,"u":"lastwall%20survivor_lowg","p":46,"h":1,"n":"Lastwall Survivor"},{"c":7,"s":48,"id":2279,"u":"lumber%20consortium%20laborer_lowg","p":130,"h":1,"n":"Lumber Consortium Laborer"},{"c":7,"s":48,"id":2280,"u":"magaambya%20academic_lowg","p":94,"h":1,"n":"Magaambya Academic"},{"c":7,"s":48,"id":2281,"u":"mammoth%20speaker_lowg","p":118,"h":1,"n":"Mammoth Speaker"},{"c":7,"s":48,"id":2282,"u":"mana%20wastes%20refugee_lowg","p":82,"h":1,"n":"Mana Wastes Refugee"},{"c":7,"s":48,"id":2283,"u":"mantis%20scion_lowg","p":70,"h":1,"n":"Mantis Scion"},{"c":7,"s":48,"id":2284,"u":"menagerie%20dung%20sweeper_lowg","p":22,"h":1,"n":"Menagerie Dung Sweeper"},{"c":7,"s":48,"id":2285,"u":"merabite%20prodigy_lowg","p":58,"h":1,"n":"Merabite Prodigy"},{"c":7,"s":48,"id":2286,"u":"molthuni%20mercenary_lowg","p":46,"h":1,"n":"Molthuni Mercenary"},{"c":7,"s":48,"id":2287,"u":"nexian%20mystic_lowg","p":82,"h":1,"n":"Nexian Mystic"},{"c":7,"s":48,"id":2288,"u":"nirmathi%20guerrilla_lowg","p":46,"h":1,"n":"Nirmathi Guerrilla"},{"c":7,"s":48,"id":2289,"u":"oenopion%20ooze-tender_lowg","p":82,"h":1,"n":"Oenopion Ooze-tender"},{"c":7,"s":48,"id":2290,"u":"onyx%20trader_lowg","p":46,"h":1,"n":"Onyx Trader"},{"c":7,"s":48,"id":2291,"u":"osirionologist_lowg","p":58,"h":1,"n":"Osirionologist"},{"c":7,"s":48,"id":2292,"u":"pathfinder%20hopeful_lowg","p":22,"h":1,"n":"Pathfinder Hopeful"},{"c":7,"s":48,"id":2293,"u":"perfection%20seeker_lowg","p":82,"h":1,"n":"Perfection Seeker"},{"c":7,"s":48,"id":2294,"u":"press-ganged_lowg","p":70,"h":1,"n":"Press-ganged"},{"c":7,"s":48,"id":2295,"u":"purveyor%20of%20the%20bizarre_lowg","p":58,"h":1,"n":"Purveyor Of The Bizarre"},{"c":7,"s":48,"id":2296,"u":"quick_lowg","p":82,"h":1,"n":"Quick"},{"c":7,"s":48,"id":2297,"u":"razmiran%20faithful_lowg","p":34,"h":1,"n":"Razmiran Faithful"},{"c":7,"s":48,"id":2298,"u":"rivethun%20adherent_lowg","p":130,"h":1,"n":"Rivethun Adherent"},{"c":7,"s":48,"id":2299,"u":"rostland%20partisan_lowg","p":34,"h":1,"n":"Rostland Partisan"},{"c":7,"s":48,"id":2300,"u":"sarkorian%20reclaimer_lowg","p":34,"h":1,"n":"Sarkorian Reclaimer"},{"c":7,"s":48,"id":2301,"u":"sarkorian%20survivor_lowg","p":34,"h":1,"n":"Sarkorian Survivor"},{"c":7,"s":48,"id":2302,"u":"scholar%20of%20the%20ancients_lowg","p":70,"h":1,"n":"Scholar Of The Ancients"},{"c":7,"s":48,"id":2303,"u":"secular%20medic_lowg","p":58,"h":1,"n":"Secular Medic"},{"c":7,"s":48,"id":2304,"u":"senghor%20sailor_lowg","p":94,"h":1,"n":"Senghor Sailor"},{"c":7,"s":48,"id":2305,"u":"shadow%20haunted_lowg","p":106,"h":1,"n":"Shadow Haunted"},{"c":7,"s":48,"id":2306,"u":"shoanti%20name-bearer_lowg","p":118,"h":1,"n":"Shoanti Name-bearer"},{"c":7,"s":48,"id":2307,"u":"shory%20seeker_lowg","p":94,"h":1,"n":"Shory Seeker"},{"c":7,"s":48,"id":2308,"u":"sodden%20scavenger_lowg","p":94,"h":1,"n":"Sodden Scavenger"},{"c":7,"s":48,"id":2309,"u":"storm%20survivor_lowg","p":70,"h":1,"n":"Storm Survivor"},{"c":7,"s":48,"id":2310,"u":"taldan%20schemer_lowg","p":130,"h":1,"n":"Taldan Schemer"},{"c":7,"s":48,"id":2311,"u":"thassilonian%20traveler_lowg","p":118,"h":1,"n":"Thassilonian Traveler"},{"c":7,"s":48,"id":2312,"u":"thrune%20loyalist_lowg","p":106,"h":1,"n":"Thrune Loyalist"},{"c":7,"s":48,"id":2313,"u":"thuvian%20unifier_lowg","p":58,"h":1,"n":"Thuvian Unifier"},{"c":7,"s":48,"id":2314,"u":"trade%20consortium%20underling_lowg","p":22,"h":1,"n":"Trade Consortium Underling"},{"c":7,"s":48,"id":2315,"u":"ulfen%20raider_lowg","p":118,"h":1,"n":"Ulfen Raider"},{"c":7,"s":48,"id":2316,"u":"undersea%20enthusiast_lowg","p":70,"h":1,"n":"Undersea Enthusiast"},{"c":7,"s":48,"id":2317,"u":"ustalavic%20academic_lowg","p":46,"h":1,"n":"Ustalavic Academic"},{"c":7,"s":48,"id":2318,"u":"varisian%20wanderer_lowg","p":118,"h":1,"n":"Varisian Wanderer"},{"c":7,"s":48,"id":2319,"u":"vidrian%20reformer_lowg","p":94,"h":1,"n":"Vidrian Reformer"},{"c":7,"s":48,"id":2320,"u":"whispering%20way%20scion_lowg","p":46,"h":1,"n":"Whispering Way Scion"},{"c":7,"s":48,"id":2321,"u":"wildwood%20local_lowg","p":130,"h":1,"n":"Wildwood Local"},{"c":7,"s":48,"id":2322,"u":"winter's%20child_lowg","p":118,"h":1,"n":"Winter's Child"},{"c":7,"s":48,"id":2323,"u":"witch%20wary_lowg","p":118,"h":1,"n":"Witch Wary"},{"c":7,"s":48,"id":2324,"u":"wonder%20taster_lowg","p":34,"h":1,"n":"Wonder Taster"},{"c":7,"s":49,"id":2325,"u":"academy%20dropout_som","p":28,"h":1,"n":"Academy Dropout"},{"c":7,"s":49,"id":2326,"u":"anti-magical_som","p":30,"h":1,"n":"Anti-magical"},{"c":7,"s":49,"id":2327,"u":"astrologer_som","p":28,"h":1,"n":"Astrologer"},{"c":7,"s":49,"id":2328,"u":"chosen%20one_som","p":30,"h":1,"n":"Chosen One"},{"c":7,"s":49,"id":2329,"u":"eidolon%20contact_som","p":28,"h":1,"n":"Eidolon Contact"},{"c":7,"s":49,"id":2330,"u":"energy%20scarred_som","p":219,"h":1,"n":"Energy Scarred"},{"c":7,"s":49,"id":2331,"u":"false%20medium_som","p":28,"h":1,"n":"False Medium"},{"c":7,"s":49,"id":2332,"u":"genie-blessed_som","p":30,"h":1,"n":"Genie-blessed"},{"c":7,"s":49,"id":2333,"u":"magical%20experiment_som","p":30,"h":1,"n":"Magical Experiment"},{"c":7,"s":49,"id":2334,"u":"magical%20merchant_som","p":29,"h":1,"n":"Magical Merchant"},{"c":7,"s":49,"id":2335,"u":"magical%20misfit_som","p":29,"h":1,"n":"Magical Misfit"},{"c":7,"s":49,"id":2336,"u":"musical%20prodigy_som","p":29,"h":1,"n":"Musical Prodigy"},{"c":7,"s":49,"id":2337,"u":"mystic%20tutor_som","p":219,"h":1,"n":"Mystic Tutor"},{"c":7,"s":49,"id":2338,"u":"occult%20librarian_som","p":29,"h":1,"n":"Occult Librarian"},{"c":7,"s":49,"id":2339,"u":"plant%20whisperer_som","p":29,"h":1,"n":"Plant Whisperer"},{"c":7,"s":49,"id":2340,"u":"seer%20of%20the%20dead_som","p":31,"h":1,"n":"Seer Of The Dead"},{"c":7,"s":49,"id":2341,"u":"song%20of%20the%20deep_som","p":31,"h":1,"n":"Song Of The Deep"},{"c":7,"s":49,"id":2342,"u":"street%20preacher_som","p":29,"h":1,"n":"Street Preacher"},{"c":7,"s":49,"id":2343,"u":"student%20of%20magic_som","p":29,"h":1,"n":"Student Of Magic"},{"c":7,"s":49,"id":2344,"u":"surge%20investigator_som","p":219,"h":1,"n":"Surge Investigator"},{"c":7,"s":49,"id":2345,"u":"time%20traveler_som","p":31,"h":1,"n":"Time Traveler"},{"c":7,"s":50,"id":2346,"u":"sponsored%20by%20a%20stranger_sot0","p":6,"h":1,"n":"Sponsored By A Stranger"},{"c":7,"s":50,"id":2347,"u":"sponsored%20by%20a%20village_sot0","p":7,"h":1,"n":"Sponsored By A Village"},{"c":7,"s":50,"id":2348,"u":"sponsored%20by%20family_sot0","p":6,"h":1,"n":"Sponsored By Family"},{"c":7,"s":50,"id":2349,"u":"sponsored%20by%20teacher%20ot_sot0","p":6,"h":1,"n":"Sponsored By Teacher Ot"},{"c":7,"s":50,"id":2350,"u":"unsponsored_sot0","p":7,"h":1,"n":"Unsponsored"},{"c":0,"s":4,"id":2351,"u":"a%20home%20in%20every%20port_apg","p":202,"h":1,"n":"A Home In Every Port"},{"c":0,"s":4,"id":2352,"u":"aasimar's%20mercy_apg","p":36,"h":1,"n":"Aasimar's Mercy"},{"c":0,"s":4,"id":2353,"u":"accelerating%20touch_apg","p":119,"h":1,"n":"Accelerating Touch"},{"c":0,"s":4,"id":2354,"u":"acclimatization_apg","p":177,"h":1,"n":"Acclimatization"},{"c":0,"s":4,"id":2355,"u":"accompany_apg","p":113,"h":1,"n":"Accompany"},{"c":0,"s":4,"id":2356,"u":"accurate%20flurry_apg","p":133,"h":1,"n":"Accurate Flurry"},{"c":0,"s":4,"id":2357,"u":"accursed%20claws_apg","p":31,"h":1,"n":"Accursed Claws"},{"c":0,"s":4,"id":2358,"u":"acquired%20tolerance_apg","p":186,"h":1,"n":"Acquired Tolerance"},{"c":0,"s":4,"id":2359,"u":"acrobat%20dedication_apg","p":155,"h":1,"n":"Acrobat Dedication"},{"c":0,"s":4,"id":2360,"u":"acrobatic%20performer_apg","p":202,"h":1,"n":"Acrobatic Performer"},{"c":0,"s":4,"id":2361,"u":"additional%20companion_apg","p":160,"h":1,"n":"Additional Companion"},{"c":0,"s":4,"id":2362,"u":"additional%20recollection_apg","p":132,"h":1,"n":"Additional Recollection"},{"c":0,"s":4,"id":2363,"u":"additional%20shadow%20magic_apg","p":192,"h":1,"n":"Additional Shadow Magic"},{"c":0,"s":4,"id":2364,"u":"adrenaline%20rush_apg","p":108,"h":1,"n":"Adrenaline Rush"},{"c":0,"s":4,"id":2365,"u":"advanced%20bow%20training_apg","p":157,"h":1,"n":"Advanced Bow Training"},{"c":0,"s":4,"id":2366,"u":"advanced%20deduction_apg","p":151,"h":1,"n":"Advanced Deduction"},{"c":0,"s":4,"id":2367,"u":"advanced%20first%20aid_apg","p":202,"h":1,"n":"Advanced First Aid"},{"c":0,"s":4,"id":2368,"u":"advanced%20flair_apg","p":153,"h":1,"n":"Advanced Flair"},{"c":0,"s":4,"id":2369,"u":"advanced%20general%20training_apg","p":47,"h":1,"n":"Advanced General Training"},{"c":0,"s":4,"id":2370,"u":"advanced%20mysteries_apg","p":152,"h":1,"n":"Advanced Mysteries"},{"c":0,"s":4,"id":2371,"u":"advanced%20revelation_apg","p":79,"h":1,"n":"Advanced Revelation"},{"c":0,"s":4,"id":2372,"u":"advanced%20witchcraft_apg","p":154,"h":1,"n":"Advanced Witchcraft"},{"c":0,"s":4,"id":2373,"u":"aerobatics%20mastery_apg","p":202,"h":1,"n":"Aerobatics Mastery"},{"c":0,"s":4,"id":2374,"u":"after%20you_apg","p":88,"h":1,"n":"After You"},{"c":0,"s":4,"id":2375,"u":"aggravating%20scratch_apg","p":10,"h":1,"n":"Aggravating Scratch"},{"c":0,"s":4,"id":2376,"u":"agile%20maneuvers_apg","p":90,"h":1,"n":"Agile Maneuvers"},{"c":0,"s":4,"id":2377,"u":"alchemical%20discoveries_apg","p":61,"h":1,"n":"Alchemical Discoveries"},{"c":0,"s":4,"id":2378,"u":"align%20ki_apg","p":129,"h":1,"n":"Align Ki"},{"c":0,"s":4,"id":2379,"u":"all%20in%20my%20head_apg","p":115,"h":1,"n":"All In My Head"},{"c":0,"s":4,"id":2380,"u":"ally's%20shelter_apg","p":14,"h":1,"n":"Ally's Shelter"},{"c":0,"s":4,"id":2381,"u":"amplifying%20touch_apg","p":120,"h":1,"n":"Amplifying Touch"},{"c":0,"s":4,"id":2382,"u":"analyze%20idiolect_apg","p":178,"h":1,"n":"Analyze Idiolect"},{"c":0,"s":4,"id":2383,"u":"analyze%20weakness_apg","p":135,"h":1,"n":"Analyze Weakness"},{"c":0,"s":4,"id":2384,"u":"ancestral%20blood%20magic_apg","p":139,"h":1,"n":"Ancestral Blood Magic"},{"c":0,"s":4,"id":2385,"u":"ancestral%20linguistics_apg","p":43,"h":1,"n":"Ancestral Linguistics"},{"c":0,"s":4,"id":2386,"u":"ancestral%20mage_apg","p":140,"h":1,"n":"Ancestral Mage"},{"c":0,"s":4,"id":2387,"u":"ancestral%20suspicion_apg","p":43,"h":1,"n":"Ancestral Suspicion"},{"c":0,"s":4,"id":2388,"u":"ancestral%20weaponry_apg","p":128,"h":1,"n":"Ancestral Weaponry"},{"c":0,"s":4,"id":2389,"u":"angel%20of%20death_apg","p":158,"h":1,"n":"Angel Of Death"},{"c":0,"s":4,"id":2390,"u":"angelic%20magic_apg","p":36,"h":1,"n":"Angelic Magic"},{"c":0,"s":4,"id":2391,"u":"angelkin_apg","p":35,"h":1,"n":"Angelkin"},{"c":0,"s":4,"id":2392,"u":"animal%20feature_apg","p":132,"h":1,"n":"Animal Feature"},{"c":0,"s":4,"id":2393,"u":"annotate%20composition_apg","p":113,"h":1,"n":"Annotate Composition"},{"c":0,"s":4,"id":2394,"u":"anoint%20ally_apg","p":139,"h":1,"n":"Anoint Ally"},{"c":0,"s":4,"id":2395,"u":"antagonize_apg","p":88,"h":1,"n":"Antagonize"},{"c":0,"s":4,"id":2396,"u":"anticipate%20ambush_apg","p":135,"h":1,"n":"Anticipate Ambush"},{"c":0,"s":4,"id":2397,"u":"archaeologist%20dedication_apg","p":156,"h":1,"n":"Archaeologist Dedication"},{"c":0,"s":4,"id":2398,"u":"archaeologist's%20luck_apg","p":156,"h":1,"n":"Archaeologist's Luck"},{"c":0,"s":4,"id":2399,"u":"archer%20dedication_apg","p":157,"h":1,"n":"Archer Dedication"},{"c":0,"s":4,"id":2400,"u":"archer's%20aim_apg","p":157,"h":1,"n":"Archer's Aim"},{"c":0,"s":4,"id":2401,"u":"archon%20magic_apg","p":36,"h":1,"n":"Archon Magic"},{"c":0,"s":4,"id":2402,"u":"armor%20assist_apg","p":203,"h":1,"n":"Armor Assist"},{"c":0,"s":4,"id":2403,"u":"armor%20specialist_apg","p":191,"h":1,"n":"Armor Specialist"},{"c":0,"s":4,"id":2404,"u":"armored%20rebuff_apg","p":191,"h":1,"n":"Armored Rebuff"},{"c":0,"s":4,"id":2405,"u":"armored%20stealth_apg","p":203,"h":1,"n":"Armored Stealth"},{"c":0,"s":4,"id":2406,"u":"arrow%20of%20death_apg","p":173,"h":1,"n":"Arrow Of Death"},{"c":0,"s":4,"id":2407,"u":"assassin%20dedication_apg","p":158,"h":1,"n":"Assassin Dedication"},{"c":0,"s":4,"id":2408,"u":"assassinate_apg","p":158,"h":1,"n":"Assassinate"},{"c":0,"s":4,"id":2409,"u":"assured%20identification_apg","p":203,"h":1,"n":"Assured Identification"},{"c":0,"s":4,"id":2410,"u":"assured%20knowledge_apg","p":113,"h":1,"n":"Assured Knowledge"},{"c":0,"s":4,"id":2411,"u":"assured%20ritualist_apg","p":187,"h":1,"n":"Assured Ritualist"},{"c":0,"s":4,"id":2412,"u":"athletic%20might_apg","p":18,"h":1,"n":"Athletic Might"},{"c":0,"s":4,"id":2413,"u":"athletic%20strategist_apg","p":60,"h":1,"n":"Athletic Strategist"},{"c":0,"s":4,"id":2414,"u":"attack%20of%20opportunity%20(swashbuckler)_apg","p":91,"a":"Swashbuckler","h":1,"n":"Attack Of Opportunity"},{"c":0,"s":4,"id":2415,"u":"aura%20of%20despair_apg","p":119,"h":1,"n":"Aura Of Despair"},{"c":0,"s":4,"id":2416,"u":"aura%20of%20preservation_apg","p":121,"h":1,"n":"Aura Of Preservation"},{"c":0,"s":4,"id":2417,"u":"avalanche%20strike_apg","p":183,"h":1,"n":"Avalanche Strike"},{"c":0,"s":4,"id":2418,"u":"avenge%20ally_apg","p":43,"h":1,"n":"Avenge Ally"},{"c":0,"s":4,"id":2419,"u":"azata%20magic_apg","p":36,"h":1,"n":"Azata Magic"},{"c":0,"s":4,"id":2420,"u":"back%20to%20back_apg","p":181,"h":1,"n":"Back To Back"},{"c":0,"s":4,"id":2421,"u":"barreling%20charge%20(barbarian)_apg","p":108,"a":"Barbarian","h":1,"n":"Barreling Charge"},{"c":0,"s":4,"id":2422,"u":"barreling%20charge%20(fighter)_apg","p":126,"a":"Fighter","h":1,"n":"Barreling Charge"},{"c":0,"s":4,"id":2423,"u":"bashing%20charge_apg","p":108,"h":1,"n":"Bashing Charge"},{"c":0,"s":4,"id":2424,"u":"basic%20deduction_apg","p":151,"h":1,"n":"Basic Deduction"},{"c":0,"s":4,"id":2425,"u":"basic%20eldritch%20archer%20spellcasting_apg","p":172,"h":1,"n":"Basic Eldritch Archer Spellcasting"},{"c":0,"s":4,"id":2426,"u":"basic%20flair_apg","p":153,"h":1,"n":"Basic Flair"},{"c":0,"s":4,"id":2427,"u":"basic%20lesson_apg","p":101,"h":1,"n":"Basic Lesson"},{"c":0,"s":4,"id":2428,"u":"basic%20mysteries_apg","p":152,"h":1,"n":"Basic Mysteries"},{"c":0,"s":4,"id":2429,"u":"basic%20oracle%20spellcasting_apg","p":152,"h":1,"n":"Basic Oracle Spellcasting"},{"c":0,"s":4,"id":2430,"u":"basic%20scroll%20cache_apg","p":189,"h":1,"n":"Basic Scroll Cache"},{"c":0,"s":4,"id":2431,"u":"basic%20witch%20spellcasting_apg","p":154,"h":1,"n":"Basic Witch Spellcasting"},{"c":0,"s":4,"id":2432,"u":"basic%20witchcraft_apg","p":154,"h":1,"n":"Basic Witchcraft"},{"c":0,"s":4,"id":2433,"u":"bastion%20dedication_apg","p":159,"h":1,"n":"Bastion Dedication"},{"c":0,"s":4,"id":2434,"u":"battle%20planner_apg","p":203,"h":1,"n":"Battle Planner"},{"c":0,"s":4,"id":2435,"u":"beast%20trainer_apg","p":18,"h":1,"n":"Beast Trainer"},{"c":0,"s":4,"id":2436,"u":"beastmaster%20bond_apg","p":160,"h":1,"n":"Beastmaster Bond"},{"c":0,"s":4,"id":2437,"u":"beastmaster%20dedication_apg","p":160,"h":1,"n":"Beastmaster Dedication"},{"c":0,"s":4,"id":2438,"u":"beastmaster's%20call_apg","p":161,"h":1,"n":"Beastmaster's Call"},{"c":0,"s":4,"id":2439,"u":"beastmaster's%20trance_apg","p":160,"h":1,"n":"Beastmaster's Trance"},{"c":0,"s":4,"id":2440,"u":"bespell%20weapon_apg","p":79,"h":1,"n":"Bespell Weapon"},{"c":0,"s":4,"id":2441,"u":"between%20the%20scales_apg","p":15,"h":1,"n":"Between The Scales"},{"c":0,"s":4,"id":2442,"u":"big%20mouth_apg","p":23,"h":1,"n":"Big Mouth"},{"c":0,"s":4,"id":2443,"u":"biographical%20eye_apg","p":203,"h":1,"n":"Biographical Eye"},{"c":0,"s":4,"id":2444,"u":"black%20cat%20curse_apg","p":11,"h":1,"n":"Black Cat Curse"},{"c":0,"s":4,"id":2445,"u":"blaze%20of%20revelation_apg","p":81,"h":1,"n":"Blaze Of Revelation"},{"c":0,"s":4,"id":2446,"u":"bleeding%20finisher_apg","p":91,"h":1,"n":"Bleeding Finisher"},{"c":0,"s":4,"id":2447,"u":"blessed%20blood_apg","p":36,"h":1,"n":"Blessed Blood"},{"c":0,"s":4,"id":2448,"u":"blessed%20denial_apg","p":162,"h":1,"n":"Blessed Denial"},{"c":0,"s":4,"id":2449,"u":"blessed%20one%20dedication_apg","p":162,"h":1,"n":"Blessed One Dedication"},{"c":0,"s":4,"id":2450,"u":"blessed%20sacrifice_apg","p":162,"h":1,"n":"Blessed Sacrifice"},{"c":0,"s":4,"id":2451,"u":"blessed%20spell_apg","p":162,"h":1,"n":"Blessed Spell"},{"c":0,"s":4,"id":2452,"u":"blind-fight%20(investigator)_apg","p":63,"a":"Investigator","h":1,"n":"Blind-fight"},{"c":0,"s":4,"id":2453,"u":"blood%20component%20substitution_apg","p":140,"h":1,"n":"Blood Component Substitution"},{"c":0,"s":4,"id":2454,"u":"bloodletting%20fangs_apg","p":33,"h":1,"n":"Bloodletting Fangs"},{"c":0,"s":4,"id":2455,"u":"bloodline%20mutation_apg","p":141,"h":1,"n":"Bloodline Mutation"},{"c":0,"s":4,"id":2456,"u":"bloody%20blows_apg","p":18,"h":1,"n":"Bloody Blows"},{"c":0,"s":4,"id":2457,"u":"bloody%20debilitation_apg","p":136,"h":1,"n":"Bloody Debilitation"},{"c":0,"s":4,"id":2458,"u":"bon%20mot_apg","p":203,"h":1,"n":"Bon Mot"},{"c":0,"s":4,"id":2459,"u":"boneyard's%20call_apg","p":38,"h":1,"n":"Boneyard's Call"},{"c":0,"s":4,"id":2460,"u":"bounce%20back_apg","p":47,"h":1,"n":"Bounce Back"},{"c":0,"s":4,"id":2461,"u":"bounty%20hunter%20dedication_apg","p":163,"h":1,"n":"Bounty Hunter Dedication"},{"c":0,"s":4,"id":2462,"u":"breath%20of%20the%20dragon_apg","p":169,"h":1,"n":"Breath Of The Dragon"},{"c":0,"s":4,"id":2463,"u":"brine%20may_apg","p":31,"h":1,"n":"Brine May"},{"c":0,"s":4,"id":2464,"u":"buckler%20dance_apg","p":91,"h":1,"n":"Buckler Dance"},{"c":0,"s":4,"id":2465,"u":"buckler%20expertise_apg","p":88,"h":1,"n":"Buckler Expertise"},{"c":0,"s":4,"id":2466,"u":"bullseye_apg","p":136,"h":1,"n":"Bullseye"},{"c":0,"s":4,"id":2467,"u":"cackle_apg","p":100,"h":1,"n":"Cackle"},{"c":0,"s":4,"id":2468,"u":"cadence%20call_apg","p":180,"h":1,"n":"Cadence Call"},{"c":0,"s":4,"id":2469,"u":"call%20and%20response_apg","p":113,"h":1,"n":"Call And Response"},{"c":0,"s":4,"id":2470,"u":"call%20bonded%20item_apg","p":142,"h":1,"n":"Call Bonded Item"},{"c":0,"s":4,"id":2471,"u":"call%20your%20shot_apg","p":175,"h":1,"n":"Call Your Shot"},{"c":0,"s":4,"id":2472,"u":"called_apg","p":31,"h":1,"n":"Called"},{"c":0,"s":4,"id":2473,"u":"callow%20may_apg","p":31,"h":1,"n":"Callow May"},{"c":0,"s":4,"id":2474,"u":"cantrip%20expansion%20(oracle)_apg","p":79,"a":"Oracle","h":1,"n":"Cantrip Expansion"},{"c":0,"s":4,"id":2475,"u":"cantrip%20expansion%20(witch)_apg","p":101,"a":"Witch","h":1,"n":"Cantrip Expansion"},{"c":0,"s":4,"id":2476,"u":"caravan%20leader_apg","p":204,"h":1,"n":"Caravan Leader"},{"c":0,"s":4,"id":2477,"u":"cat's%20luck_apg","p":10,"h":1,"n":"Cat's Luck"},{"c":0,"s":4,"id":2478,"u":"caterwaul_apg","p":11,"h":1,"n":"Caterwaul"},{"c":0,"s":4,"id":2479,"u":"catfolk%20lore_apg","p":10,"h":1,"n":"Catfolk Lore"},{"c":0,"s":4,"id":2480,"u":"catfolk%20weapon%20expertise_apg","p":11,"h":1,"n":"Catfolk Weapon Expertise"},{"c":0,"s":4,"id":2481,"u":"catfolk%20weapon%20familiarity_apg","p":10,"h":1,"n":"Catfolk Weapon Familiarity"},{"c":0,"s":4,"id":2482,"u":"catfolk%20weapon%20rake_apg","p":10,"h":1,"n":"Catfolk Weapon Rake"},{"c":0,"s":4,"id":2483,"u":"cauldron_apg","p":100,"h":1,"n":"Cauldron"},{"c":0,"s":4,"id":2484,"u":"cautious%20curiosity_apg","p":44,"h":1,"n":"Cautious Curiosity"},{"c":0,"s":4,"id":2485,"u":"cavalier%20dedication_apg","p":164,"h":1,"n":"Cavalier Dedication"},{"c":0,"s":4,"id":2486,"u":"cavalier's%20banner_apg","p":164,"h":1,"n":"Cavalier's Banner"},{"c":0,"s":4,"id":2487,"u":"cavalier's%20charge_apg","p":164,"h":1,"n":"Cavalier's Charge"},{"c":0,"s":4,"id":2488,"u":"celebrity%20dedication_apg","p":166,"h":1,"n":"Celebrity Dedication"},{"c":0,"s":4,"id":2489,"u":"celestial%20eyes_apg","p":35,"h":1,"n":"Celestial Eyes"},{"c":0,"s":4,"id":2490,"u":"celestial%20lore_apg","p":35,"h":1,"n":"Celestial Lore"},{"c":0,"s":4,"id":2491,"u":"celestial%20resistance_apg","p":36,"h":1,"n":"Celestial Resistance"},{"c":0,"s":4,"id":2492,"u":"celestial%20strikes_apg","p":36,"h":1,"n":"Celestial Strikes"},{"c":0,"s":4,"id":2493,"u":"celestial%20wings_apg","p":36,"h":1,"n":"Celestial Wings"},{"c":0,"s":4,"id":2494,"u":"celestial%20word_apg","p":36,"h":1,"n":"Celestial Word"},{"c":0,"s":4,"id":2495,"u":"changeling%20lore_apg","p":31,"h":1,"n":"Changeling Lore"},{"c":0,"s":4,"id":2496,"u":"charmed%20life_apg","p":89,"h":1,"n":"Charmed Life"},{"c":0,"s":4,"id":2497,"u":"cheat%20death_apg","p":92,"h":1,"n":"Cheat Death"},{"c":0,"s":4,"id":2498,"u":"cheek%20pouches_apg","p":22,"h":1,"n":"Cheek Pouches"},{"c":0,"s":4,"id":2499,"u":"chemical%20contagion_apg","p":107,"h":1,"n":"Chemical Contagion"},{"c":0,"s":4,"id":2500,"u":"claws%20of%20the%20dragon_apg","p":168,"h":1,"n":"Claws Of The Dragon"},{"c":0,"s":4,"id":2501,"u":"clear%20the%20way_apg","p":183,"h":1,"n":"Clear The Way"},{"c":0,"s":4,"id":2502,"u":"clever%20gambit_apg","p":134,"h":1,"n":"Clever Gambit"},{"c":0,"s":4,"id":2503,"u":"climbing%20claws_apg","p":10,"h":1,"n":"Climbing Claws"},{"c":0,"s":4,"id":2504,"u":"cling_apg","p":45,"h":1,"n":"Cling"},{"c":0,"s":4,"id":2505,"u":"clinging%20shadows%20initiate_apg","p":129,"h":1,"n":"Clinging Shadows Initiate"},{"c":0,"s":4,"id":2506,"u":"clue%20them%20all%20in_apg","p":63,"h":1,"n":"Clue Them All In"},{"c":0,"s":4,"id":2507,"u":"cobra%20envenom_apg","p":129,"h":1,"n":"Cobra Envenom"},{"c":0,"s":4,"id":2508,"u":"cobra%20stance_apg","p":128,"h":1,"n":"Cobra Stance"},{"c":0,"s":4,"id":2509,"u":"combat%20assessment_apg","p":126,"h":1,"n":"Combat Assessment"},{"c":0,"s":4,"id":2510,"u":"combat%20reading_apg","p":112,"h":1,"n":"Combat Reading"},{"c":0,"s":4,"id":2511,"u":"combination%20finisher_apg","p":91,"h":1,"n":"Combination Finisher"},{"c":0,"s":4,"id":2512,"u":"command%20attention_apg","p":166,"h":1,"n":"Command Attention"},{"c":0,"s":4,"id":2513,"u":"conceal%20spell_apg","p":101,"h":1,"n":"Conceal Spell"},{"c":0,"s":4,"id":2514,"u":"concealing%20legerdemain_apg","p":204,"h":1,"n":"Concealing Legerdemain"},{"c":0,"s":4,"id":2515,"u":"conceited%20mindset_apg","p":118,"h":1,"n":"Conceited Mindset"},{"c":0,"s":4,"id":2516,"u":"connect%20the%20dots_apg","p":62,"h":1,"n":"Connect The Dots"},{"c":0,"s":4,"id":2517,"u":"consult%20the%20spirits_apg","p":204,"h":1,"n":"Consult The Spirits"},{"c":0,"s":4,"id":2518,"u":"consume%20spell_apg","p":141,"h":1,"n":"Consume Spell"},{"c":0,"s":4,"id":2519,"u":"contortionist_apg","p":155,"h":1,"n":"Contortionist"},{"c":0,"s":4,"id":2520,"u":"convincing%20illusion_apg","p":142,"h":1,"n":"Convincing Illusion"},{"c":0,"s":4,"id":2521,"u":"coordinated%20charge_apg","p":181,"h":1,"n":"Coordinated Charge"},{"c":0,"s":4,"id":2522,"u":"corrupted%20shield_apg","p":119,"h":1,"n":"Corrupted Shield"},{"c":0,"s":4,"id":2523,"u":"counterspell%20(witch)_apg","p":100,"a":"Witch","h":1,"n":"Counterspell"},{"c":0,"s":4,"id":2524,"u":"courageous%20advance_apg","p":112,"h":1,"n":"Courageous Advance"},{"c":0,"s":4,"id":2525,"u":"courageous%20assault_apg","p":114,"h":1,"n":"Courageous Assault"},{"c":0,"s":4,"id":2526,"u":"courageous%20onslaught_apg","p":115,"h":1,"n":"Courageous Onslaught"},{"c":0,"s":4,"id":2527,"u":"courageous%20opportunity_apg","p":113,"h":1,"n":"Courageous Opportunity"},{"c":0,"s":4,"id":2528,"u":"crafter's%20appraisal_apg","p":204,"h":1,"n":"Crafter's Appraisal"},{"c":0,"s":4,"id":2529,"u":"criminal%20connections_apg","p":204,"h":1,"n":"Criminal Connections"},{"c":0,"s":4,"id":2530,"u":"cringe_apg","p":14,"h":1,"n":"Cringe"},{"c":0,"s":4,"id":2531,"u":"crossbow%20terror_apg","p":157,"h":1,"n":"Crossbow Terror"},{"c":0,"s":4,"id":2532,"u":"crude%20communication_apg","p":178,"h":1,"n":"Crude Communication"},{"c":0,"s":4,"id":2533,"u":"cruelty_apg","p":119,"h":1,"n":"Cruelty"},{"c":0,"s":4,"id":2534,"u":"current%20spell_apg","p":124,"h":1,"n":"Current Spell"},{"c":0,"s":4,"id":2535,"u":"cut%20from%20the%20air_apg","p":127,"h":1,"n":"Cut From The Air"},{"c":0,"s":4,"id":2536,"u":"daemon%20magic_apg","p":40,"h":1,"n":"Daemon Magic"},{"c":0,"s":4,"id":2537,"u":"dance%20underfoot_apg","p":46,"h":1,"n":"Dance Underfoot"},{"c":0,"s":4,"id":2538,"u":"dandy%20dedication_apg","p":167,"h":1,"n":"Dandy Dedication"},{"c":0,"s":4,"id":2539,"u":"dazing%20blow_apg","p":126,"h":1,"n":"Dazing Blow"},{"c":0,"s":4,"id":2540,"u":"deadly%20grace_apg","p":93,"h":1,"n":"Deadly Grace"},{"c":0,"s":4,"id":2541,"u":"deadly%20strikes_apg","p":131,"h":1,"n":"Deadly Strikes"},{"c":0,"s":4,"id":2542,"u":"death's%20drums_apg","p":19,"h":1,"n":"Death's Drums"},{"c":0,"s":4,"id":2543,"u":"debilitating%20dichotomy_apg","p":80,"h":1,"n":"Debilitating Dichotomy"},{"c":0,"s":4,"id":2544,"u":"deceptive%20worship_apg","p":204,"h":1,"n":"Deceptive Worship"},{"c":0,"s":4,"id":2545,"u":"deeper%20dabbler_apg","p":195,"h":1,"n":"Deeper Dabbler"},{"c":0,"s":4,"id":2546,"u":"defend%20mount_apg","p":164,"h":1,"n":"Defend Mount"},{"c":0,"s":4,"id":2547,"u":"defensive%20coordination_apg","p":113,"h":1,"n":"Defensive Coordination"},{"c":0,"s":4,"id":2548,"u":"defy%20the%20darkness_apg","p":42,"h":1,"n":"Defy The Darkness"},{"c":0,"s":4,"id":2549,"u":"deimatic%20display_apg","p":124,"h":1,"n":"Deimatic Display"},{"c":0,"s":4,"id":2550,"u":"demolition%20charge_apg","p":106,"h":1,"n":"Demolition Charge"},{"c":0,"s":4,"id":2551,"u":"demon%20magic_apg","p":40,"h":1,"n":"Demon Magic"},{"c":0,"s":4,"id":2552,"u":"derring-do_apg","p":91,"h":1,"n":"Derring-do"},{"c":0,"s":4,"id":2553,"u":"desperate%20prayer_apg","p":118,"h":1,"n":"Desperate Prayer"},{"c":0,"s":4,"id":2554,"u":"destructive%20block_apg","p":159,"h":1,"n":"Destructive Block"},{"c":0,"s":4,"id":2555,"u":"detective's%20readiness_apg","p":61,"h":1,"n":"Detective's Readiness"},{"c":0,"s":4,"id":2556,"u":"determined%20dash_apg","p":110,"h":1,"n":"Determined Dash"},{"c":0,"s":4,"id":2557,"u":"devil%20magic_apg","p":41,"h":1,"n":"Devil Magic"},{"c":0,"s":4,"id":2558,"u":"didactic%20strike_apg","p":65,"h":1,"n":"Didactic Strike"},{"c":0,"s":4,"id":2559,"u":"directed%20audience_apg","p":112,"h":1,"n":"Directed Audience"},{"c":0,"s":4,"id":2560,"u":"disarming%20assault_apg","p":110,"h":1,"n":"Disarming Assault"},{"c":0,"s":4,"id":2561,"u":"disarming%20block_apg","p":159,"h":1,"n":"Disarming Block"},{"c":0,"s":4,"id":2562,"u":"disarming%20flair_apg","p":88,"h":1,"n":"Disarming Flair"},{"c":0,"s":4,"id":2563,"u":"disciple's%20breath_apg","p":169,"h":1,"n":"Disciple's Breath"},{"c":0,"s":4,"id":2564,"u":"discordant%20voice_apg","p":115,"h":1,"n":"Discordant Voice"},{"c":0,"s":4,"id":2565,"u":"discreet%20inquiry_apg","p":204,"h":1,"n":"Discreet Inquiry"},{"c":0,"s":4,"id":2566,"u":"disorienting%20opening_apg","p":126,"h":1,"n":"Disorienting Opening"},{"c":0,"s":4,"id":2567,"u":"distracting%20flattery_apg","p":167,"h":1,"n":"Distracting Flattery"},{"c":0,"s":4,"id":2568,"u":"distracting%20performance_apg","p":205,"h":1,"n":"Distracting Performance"},{"c":0,"s":4,"id":2569,"u":"disturbing%20knowledge_apg","p":205,"h":1,"n":"Disturbing Knowledge"},{"c":0,"s":4,"id":2570,"u":"diverse%20mystery_apg","p":81,"h":1,"n":"Diverse Mystery"},{"c":0,"s":4,"id":2571,"u":"diverting%20vortex_apg","p":139,"h":1,"n":"Diverting Vortex"},{"c":0,"s":4,"id":2572,"u":"divine%20access_apg","p":79,"h":1,"n":"Divine Access"},{"c":0,"s":4,"id":2573,"u":"divine%20aegis_apg","p":79,"h":1,"n":"Divine Aegis"},{"c":0,"s":4,"id":2574,"u":"divine%20countermeasures_apg","p":36,"h":1,"n":"Divine Countermeasures"},{"c":0,"s":4,"id":2575,"u":"divine%20effusion_apg","p":81,"h":1,"n":"Divine Effusion"},{"c":0,"s":4,"id":2576,"u":"diviner%20sense_apg","p":143,"h":1,"n":"Diviner Sense"},{"c":0,"s":4,"id":2577,"u":"doctor's%20visitation_apg","p":184,"h":1,"n":"Doctor's Visitation"},{"c":0,"s":4,"id":2578,"u":"dodge%20away_apg","p":155,"h":1,"n":"Dodge Away"},{"c":0,"s":4,"id":2579,"u":"dodging%20roll_apg","p":130,"h":1,"n":"Dodging Roll"},{"c":0,"s":4,"id":2580,"u":"domain%20acumen_apg","p":79,"h":1,"n":"Domain Acumen"},{"c":0,"s":4,"id":2581,"u":"domain%20fluency_apg","p":80,"h":1,"n":"Domain Fluency"},{"c":0,"s":4,"id":2582,"u":"doublespeak_apg","p":205,"h":1,"n":"Doublespeak"},{"c":0,"s":4,"id":2583,"u":"dracomancer_apg","p":15,"h":1,"n":"Dracomancer"},{"c":0,"s":4,"id":2584,"u":"draconic%20arrogance_apg","p":108,"h":1,"n":"Draconic Arrogance"},{"c":0,"s":4,"id":2585,"u":"draconic%20scent_apg","p":168,"h":1,"n":"Draconic Scent"},{"c":0,"s":4,"id":2586,"u":"dragging%20strike_apg","p":126,"h":1,"n":"Dragging Strike"},{"c":0,"s":4,"id":2587,"u":"dragon%20arcana_apg","p":168,"h":1,"n":"Dragon Arcana"},{"c":0,"s":4,"id":2588,"u":"dragon%20disciple%20dedication_apg","p":168,"h":1,"n":"Dragon Disciple Dedication"},{"c":0,"s":4,"id":2589,"u":"dragon's%20breath_apg","p":15,"h":1,"n":"Dragon's Breath"},{"c":0,"s":4,"id":2590,"u":"dragon's%20presence_apg","p":14,"h":1,"n":"Dragon's Presence"},{"c":0,"s":4,"id":2591,"u":"dread%20marshal%20stance_apg","p":180,"h":1,"n":"Dread Marshal Stance"},{"c":0,"s":4,"id":2592,"u":"dream%20may_apg","p":31,"h":1,"n":"Dream May"},{"c":0,"s":4,"id":2593,"u":"dual%20finisher_apg","p":91,"h":1,"n":"Dual Finisher"},{"c":0,"s":4,"id":2594,"u":"dual%20onslaught_apg","p":170,"h":1,"n":"Dual Onslaught"},{"c":0,"s":4,"id":2595,"u":"dual%20thrower_apg","p":170,"h":1,"n":"Dual Thrower"},{"c":0,"s":4,"id":2596,"u":"dual-weapon%20blitz_apg","p":170,"h":1,"n":"Dual-Weapon Blitz"},{"c":0,"s":4,"id":2597,"u":"dual-weapon%20reload_apg","p":170,"h":1,"n":"Dual-Weapon Reload"},{"c":0,"s":4,"id":2598,"u":"dual-weapon%20warrior%20dedication_apg","p":170,"h":1,"n":"Dual-Weapon Warrior Dedication"},{"c":0,"s":4,"id":2599,"u":"dueling%20dance_apg","p":92,"h":1,"n":"Dueling Dance"},{"c":0,"s":4,"id":2600,"u":"dueling%20parry_apg","p":88,"h":1,"n":"Dueling Parry"},{"c":0,"s":4,"id":2601,"u":"duelist%20dedication_apg","p":171,"h":1,"n":"Duelist Dedication"},{"c":0,"s":4,"id":2602,"u":"duelist's%20challenge_apg","p":171,"h":1,"n":"Duelist's Challenge"},{"c":0,"s":4,"id":2603,"u":"duskwalker%20lore_apg","p":38,"h":1,"n":"Duskwalker Lore"},{"c":0,"s":4,"id":2604,"u":"duskwalker%20magic_apg","p":38,"h":1,"n":"Duskwalker Magic"},{"c":0,"s":4,"id":2605,"u":"dwarven%20doughtiness_apg","p":42,"h":1,"n":"Dwarven Doughtiness"},{"c":0,"s":4,"id":2606,"u":"dwarven%20reinforcement_apg","p":42,"h":1,"n":"Dwarven Reinforcement"},{"c":0,"s":4,"id":2607,"u":"earned%20glory_apg","p":47,"h":1,"n":"Earned Glory"},{"c":0,"s":4,"id":2608,"u":"earworm_apg","p":114,"h":1,"n":"Earworm"},{"c":0,"s":4,"id":2609,"u":"eat%20fortune_apg","p":26,"h":1,"n":"Eat Fortune"},{"c":0,"s":4,"id":2610,"u":"ebb%20and%20flow_apg","p":123,"h":1,"n":"Ebb And Flow"},{"c":0,"s":4,"id":2611,"u":"echoes%20in%20stone_apg","p":42,"h":1,"n":"Echoes In Stone"},{"c":0,"s":4,"id":2612,"u":"echoing%20spell_apg","p":141,"h":1,"n":"Echoing Spell"},{"c":0,"s":4,"id":2613,"u":"eclectic%20sword%20training_apg","p":27,"h":1,"n":"Eclectic Sword Training"},{"c":0,"s":4,"id":2614,"u":"educate%20allies_apg","p":113,"h":1,"n":"Educate Allies"},{"c":0,"s":4,"id":2615,"u":"efficient%20rituals_apg","p":187,"h":1,"n":"Efficient Rituals"},{"c":0,"s":4,"id":2616,"u":"effortless%20concentration_apg","p":105,"h":1,"n":"Effortless Concentration"},{"c":0,"s":4,"id":2617,"u":"elaborate%20flourish_apg","p":139,"h":1,"n":"Elaborate Flourish"},{"c":0,"s":4,"id":2618,"u":"eldritch%20archer%20dedication_apg","p":172,"h":1,"n":"Eldritch Archer Dedication"},{"c":0,"s":4,"id":2619,"u":"eldritch%20debilitations_apg","p":136,"h":1,"n":"Eldritch Debilitations"},{"c":0,"s":4,"id":2620,"u":"eldritch%20nails_apg","p":102,"h":1,"n":"Eldritch Nails"},{"c":0,"s":4,"id":2621,"u":"elemental%20summons_apg","p":124,"h":1,"n":"Elemental Summons"},{"c":0,"s":4,"id":2622,"u":"elite%20dracomancer_apg","p":15,"h":1,"n":"Elite Dracomancer"},{"c":0,"s":4,"id":2623,"u":"elucidating%20mercy_apg","p":120,"h":1,"n":"Elucidating Mercy"},{"c":0,"s":4,"id":2624,"u":"elven%20aloofness_apg","p":43,"h":1,"n":"Elven Aloofness"},{"c":0,"s":4,"id":2625,"u":"embrace%20the%20pain_apg","p":111,"h":1,"n":"Embrace The Pain"},{"c":0,"s":4,"id":2626,"u":"empathetic%20plea_apg","p":44,"h":1,"n":"Empathetic Plea"},{"c":0,"s":4,"id":2627,"u":"empyreal%20blessing_apg","p":36,"h":1,"n":"Empyreal Blessing"},{"c":0,"s":4,"id":2628,"u":"enchanting%20arrow_apg","p":173,"h":1,"n":"Enchanting Arrow"},{"c":0,"s":4,"id":2629,"u":"endemic%20herbs_apg","p":176,"h":1,"n":"Endemic Herbs"},{"c":0,"s":4,"id":2630,"u":"energetic%20resonance_apg","p":139,"h":1,"n":"Energetic Resonance"},{"c":0,"s":4,"id":2631,"u":"energy%20ablation_apg","p":142,"h":1,"n":"Energy Ablation"},{"c":0,"s":4,"id":2632,"u":"energy%20fusion_apg","p":140,"h":1,"n":"Energy Fusion"},{"c":0,"s":4,"id":2633,"u":"energy%20ward_apg","p":140,"h":1,"n":"Energy Ward"},{"c":0,"s":4,"id":2634,"u":"enforce%20oath_apg","p":120,"h":1,"n":"Enforce Oath"},{"c":0,"s":4,"id":2635,"u":"enhanced%20familiar%20(witch)_apg","p":102,"a":"Witch","h":1,"n":"Enhanced Familiar"},{"c":0,"s":4,"id":2636,"u":"enigma's%20knowledge_apg","p":114,"h":1,"n":"Enigma's Knowledge"},{"c":0,"s":4,"id":2637,"u":"enlarge%20companion_apg","p":132,"h":1,"n":"Enlarge Companion"},{"c":0,"s":4,"id":2638,"u":"enthralling%20allure_apg","p":33,"h":1,"n":"Enthralling Allure"},{"c":0,"s":4,"id":2639,"u":"entreat%20with%20forebears_apg","p":139,"h":1,"n":"Entreat With Forebears"},{"c":0,"s":4,"id":2640,"u":"ephemeral%20tracking_apg","p":132,"h":1,"n":"Ephemeral Tracking"},{"c":0,"s":4,"id":2641,"u":"esoteric%20oath_apg","p":118,"h":1,"n":"Esoteric Oath"},{"c":0,"s":4,"id":2642,"u":"eternal%20wings_apg","p":36,"h":1,"n":"Eternal Wings"},{"c":0,"s":4,"id":2643,"u":"evasiveness_apg","p":153,"h":1,"n":"Evasiveness"},{"c":0,"s":4,"id":2644,"u":"everyone's%20a%20suspect_apg","p":65,"h":1,"n":"Everyone's A Suspect"},{"c":0,"s":4,"id":2645,"u":"exhort%20the%20faithful_apg","p":205,"h":1,"n":"Exhort The Faithful"},{"c":0,"s":4,"id":2646,"u":"expand%20aura_apg","p":121,"h":1,"n":"Expand Aura"},{"c":0,"s":4,"id":2647,"u":"expanded%20luck_apg","p":10,"h":1,"n":"Expanded Luck"},{"c":0,"s":4,"id":2648,"u":"expert%20backstabber_apg","p":158,"h":1,"n":"Expert Backstabber"},{"c":0,"s":4,"id":2649,"u":"expert%20disassembly_apg","p":190,"h":1,"n":"Expert Disassembly"},{"c":0,"s":4,"id":2650,"u":"expert%20eldritch%20archer%20spellcasting_apg","p":173,"h":1,"n":"Expert Eldritch Archer Spellcasting"},{"c":0,"s":4,"id":2651,"u":"expert%20herbalism_apg","p":176,"h":1,"n":"Expert Herbalism"},{"c":0,"s":4,"id":2652,"u":"expert%20oracle%20spellcasting_apg","p":152,"h":1,"n":"Expert Oracle Spellcasting"},{"c":0,"s":4,"id":2653,"u":"expert%20poisoner_apg","p":186,"h":1,"n":"Expert Poisoner"},{"c":0,"s":4,"id":2654,"u":"expert%20scroll%20cache_apg","p":189,"h":1,"n":"Expert Scroll Cache"},{"c":0,"s":4,"id":2655,"u":"expert%20witch%20spellcasting_apg","p":154,"h":1,"n":"Expert Witch Spellcasting"},{"c":0,"s":4,"id":2656,"u":"express%20rider_apg","p":206,"h":1,"n":"Express Rider"},{"c":0,"s":4,"id":2657,"u":"extra%20squishy_apg","p":45,"h":1,"n":"Extra Squishy"},{"c":0,"s":4,"id":2658,"u":"eye%20for%20numbers_apg","p":206,"h":1,"n":"Eye For Numbers"},{"c":0,"s":4,"id":2659,"u":"eye%20for%20treasure_apg","p":42,"h":1,"n":"Eye For Treasure"},{"c":0,"s":4,"id":2660,"u":"eyes%20of%20night_apg","p":33,"h":1,"n":"Eyes Of Night"},{"c":0,"s":4,"id":2661,"u":"fabricated%20connections_apg","p":167,"h":1,"n":"Fabricated Connections"},{"c":0,"s":4,"id":2662,"u":"familiar%20conduit_apg","p":174,"h":1,"n":"Familiar Conduit"},{"c":0,"s":4,"id":2663,"u":"familiar%20mascot_apg","p":174,"h":1,"n":"Familiar Mascot"},{"c":0,"s":4,"id":2664,"u":"familiar%20master%20dedication_apg","p":174,"h":1,"n":"Familiar Master Dedication"},{"c":0,"s":4,"id":2665,"u":"familiar's%20eyes_apg","p":104,"h":1,"n":"Familiar's Eyes"},{"c":0,"s":4,"id":2666,"u":"familiar's%20language_apg","p":102,"h":1,"n":"Familiar's Language"},{"c":0,"s":4,"id":2667,"u":"fancy%20moves_apg","p":175,"h":1,"n":"Fancy Moves"},{"c":0,"s":4,"id":2668,"u":"fangs_apg","p":33,"h":1,"n":"Fangs"},{"c":0,"s":4,"id":2669,"u":"far%20throw_apg","p":135,"h":1,"n":"Far Throw"},{"c":0,"s":4,"id":2670,"u":"felicitous%20riposte_apg","p":93,"h":1,"n":"Felicitous Riposte"},{"c":0,"s":4,"id":2671,"u":"ferocious%20beasts_apg","p":19,"h":1,"n":"Ferocious Beasts"},{"c":0,"s":4,"id":2672,"u":"fiend's%20door_apg","p":41,"h":1,"n":"Fiend's Door"},{"c":0,"s":4,"id":2673,"u":"fiendish%20eyes_apg","p":39,"h":1,"n":"Fiendish Eyes"},{"c":0,"s":4,"id":2674,"u":"fiendish%20form_apg","p":121,"h":1,"n":"Fiendish Form"},{"c":0,"s":4,"id":2675,"u":"fiendish%20lore_apg","p":39,"h":1,"n":"Fiendish Lore"},{"c":0,"s":4,"id":2676,"u":"fiendish%20mount_apg","p":121,"h":1,"n":"Fiendish Mount"},{"c":0,"s":4,"id":2677,"u":"fiendish%20resistance_apg","p":40,"h":1,"n":"Fiendish Resistance"},{"c":0,"s":4,"id":2678,"u":"fiendish%20strikes_apg","p":41,"h":1,"n":"Fiendish Strikes"},{"c":0,"s":4,"id":2679,"u":"fiendish%20wings_apg","p":41,"h":1,"n":"Fiendish Wings"},{"c":0,"s":4,"id":2680,"u":"fiendish%20word_apg","p":41,"h":1,"n":"Fiendish Word"},{"c":0,"s":4,"id":2681,"u":"finishing%20follow-through_apg","p":89,"h":1,"n":"Finishing Follow-through"},{"c":0,"s":4,"id":2682,"u":"finishing%20precision_apg","p":153,"h":1,"n":"Finishing Precision"},{"c":0,"s":4,"id":2683,"u":"first%20revelation_apg","p":152,"h":1,"n":"First Revelation"},{"c":0,"s":4,"id":2684,"u":"flamboyant%20athlete_apg","p":89,"h":1,"n":"Flamboyant Athlete"},{"c":0,"s":4,"id":2685,"u":"flamboyant%20leap_apg","p":92,"h":1,"n":"Flamboyant Leap"},{"c":0,"s":4,"id":2686,"u":"fleeting%20shadow_apg","p":188,"h":1,"n":"Fleeting Shadow"},{"c":0,"s":4,"id":2687,"u":"flensing%20slice_apg","p":170,"h":1,"n":"Flensing Slice"},{"c":0,"s":4,"id":2688,"u":"flexible%20ritualist_apg","p":187,"h":1,"n":"Flexible Ritualist"},{"c":0,"s":4,"id":2689,"u":"flexible%20studies_apg","p":60,"h":1,"n":"Flexible Studies"},{"c":0,"s":4,"id":2690,"u":"flinging%20blow_apg","p":130,"h":1,"n":"Flinging Blow"},{"c":0,"s":4,"id":2691,"u":"flying%20blade_apg","p":88,"h":1,"n":"Flying Blade"},{"c":0,"s":4,"id":2692,"u":"focused%20fascination_apg","p":88,"h":1,"n":"Focused Fascination"},{"c":0,"s":4,"id":2693,"u":"focused%20shot_apg","p":130,"h":1,"n":"Focused Shot"},{"c":0,"s":4,"id":2694,"u":"folksy%20patter_apg","p":46,"h":1,"n":"Folksy Patter"},{"c":0,"s":4,"id":2695,"u":"follow-up%20assault_apg","p":110,"h":1,"n":"Follow-up Assault"},{"c":0,"s":4,"id":2696,"u":"follow-up%20strike_apg","p":182,"h":1,"n":"Follow-up Strike"},{"c":0,"s":4,"id":2697,"u":"forcible%20energy_apg","p":143,"h":1,"n":"Forcible Energy"},{"c":0,"s":4,"id":2698,"u":"forensic%20acumen_apg","p":206,"h":1,"n":"Forensic Acumen"},{"c":0,"s":4,"id":2699,"u":"foresee%20danger_apg","p":64,"h":1,"n":"Foresee Danger"},{"c":0,"s":4,"id":2700,"u":"forestall%20curse_apg","p":80,"h":1,"n":"Forestall Curse"},{"c":0,"s":4,"id":2701,"u":"form%20lock_apg","p":130,"h":1,"n":"Form Lock"},{"c":0,"s":4,"id":2702,"u":"form%20of%20the%20bat_apg","p":33,"h":1,"n":"Form Of The Bat"},{"c":0,"s":4,"id":2703,"u":"form%20of%20the%20fiend_apg","p":40,"h":1,"n":"Form Of The Fiend"},{"c":0,"s":4,"id":2704,"u":"form%20retention_apg","p":142,"h":1,"n":"Form Retention"},{"c":0,"s":4,"id":2705,"u":"fresh%20ingredients_apg","p":176,"h":1,"n":"Fresh Ingredients"},{"c":0,"s":4,"id":2706,"u":"friendly%20toss_apg","p":110,"h":1,"n":"Friendly Toss"},{"c":0,"s":4,"id":2707,"u":"frightening%20appearance_apg","p":197,"h":1,"n":"Frightening Appearance"},{"c":0,"s":4,"id":2708,"u":"furious%20vengeance_apg","p":111,"h":1,"n":"Furious Vengeance"},{"c":0,"s":4,"id":2709,"u":"ghost%20hunter_apg","p":38,"h":1,"n":"Ghost Hunter"},{"c":0,"s":4,"id":2710,"u":"giant%20snare_apg","p":194,"h":1,"n":"Giant Snare"},{"c":0,"s":4,"id":2711,"u":"gladiator%20dedication_apg","p":175,"h":1,"n":"Gladiator Dedication"},{"c":0,"s":4,"id":2712,"u":"glean%20contents_apg","p":206,"h":1,"n":"Glean Contents"},{"c":0,"s":4,"id":2713,"u":"glean%20lore_apg","p":78,"h":1,"n":"Glean Lore"},{"c":0,"s":4,"id":2714,"u":"goading%20feint_apg","p":88,"h":1,"n":"Goading Feint"},{"c":0,"s":4,"id":2715,"u":"gorilla%20pound_apg","p":129,"h":1,"n":"Gorilla Pound"},{"c":0,"s":4,"id":2716,"u":"gorilla%20stance_apg","p":128,"h":1,"n":"Gorilla Stance"},{"c":0,"s":4,"id":2717,"u":"gossip%20lore_apg","p":167,"h":1,"n":"Gossip Lore"},{"c":0,"s":4,"id":2718,"u":"graceful%20leaper_apg","p":155,"h":1,"n":"Graceful Leaper"},{"c":0,"s":4,"id":2719,"u":"gravesight_apg","p":38,"h":1,"n":"Gravesight"},{"c":0,"s":4,"id":2720,"u":"gravity%20weapon_apg","p":132,"h":1,"n":"Gravity Weapon"},{"c":0,"s":4,"id":2721,"u":"great%20tengu%20form_apg","p":27,"h":1,"n":"Great Tengu Form"},{"c":0,"s":4,"id":2722,"u":"greater%20cruelty_apg","p":120,"h":1,"n":"Greater Cruelty"},{"c":0,"s":4,"id":2723,"u":"greater%20interpose_apg","p":121,"h":1,"n":"Greater Interpose"},{"c":0,"s":4,"id":2724,"u":"greater%20lesson_apg","p":102,"h":1,"n":"Greater Lesson"},{"c":0,"s":4,"id":2725,"u":"greater%20magical%20edification_apg","p":179,"h":1,"n":"Greater Magical Edification"},{"c":0,"s":4,"id":2726,"u":"greater%20magical%20scholastics_apg","p":156,"h":1,"n":"Greater Magical Scholastics"},{"c":0,"s":4,"id":2727,"u":"greater%20physical%20evolution_apg","p":141,"h":1,"n":"Greater Physical Evolution"},{"c":0,"s":4,"id":2728,"u":"greater%20revelation_apg","p":80,"h":1,"n":"Greater Revelation"},{"c":0,"s":4,"id":2729,"u":"greater%20spiritual%20evolution_apg","p":141,"h":1,"n":"Greater Spiritual Evolution"},{"c":0,"s":4,"id":2730,"u":"grievous%20blow_apg","p":182,"h":1,"n":"Grievous Blow"},{"c":0,"s":4,"id":2731,"u":"grimspawn_apg","p":40,"h":1,"n":"Grimspawn"},{"c":0,"s":4,"id":2732,"u":"group%20aid_apg","p":47,"h":1,"n":"Group Aid"},{"c":0,"s":4,"id":2733,"u":"grovel_apg","p":14,"h":1,"n":"Grovel"},{"c":0,"s":4,"id":2734,"u":"gruesome%20strike_apg","p":120,"h":1,"n":"Gruesome Strike"},{"c":0,"s":4,"id":2735,"u":"guardian's%20deflection_apg","p":89,"h":1,"n":"Guardian's Deflection"},{"c":0,"s":4,"id":2736,"u":"hag%20claws_apg","p":31,"h":1,"n":"Hag Claws"},{"c":0,"s":4,"id":2737,"u":"hag%20magic_apg","p":31,"h":1,"n":"Hag Magic"},{"c":0,"s":4,"id":2738,"u":"hag's%20sight_apg","p":31,"h":1,"n":"Hag's Sight"},{"c":0,"s":4,"id":2739,"u":"halo_apg","p":35,"h":1,"n":"Halo"},{"c":0,"s":4,"id":2740,"u":"hammer%20quake_apg","p":183,"h":1,"n":"Hammer Quake"},{"c":0,"s":4,"id":2741,"u":"hardy%20traveler_apg","p":47,"h":1,"n":"Hardy Traveler"},{"c":0,"s":4,"id":2742,"u":"head%20stomp_apg","p":135,"h":1,"n":"Head Stomp"},{"c":0,"s":4,"id":2743,"u":"heal%20animal_apg","p":160,"h":1,"n":"Heal Animal"},{"c":0,"s":4,"id":2744,"u":"heal%20companion_apg","p":132,"h":1,"n":"Heal Companion"},{"c":0,"s":4,"id":2745,"u":"healing%20bomb_apg","p":107,"h":1,"n":"Healing Bomb"},{"c":0,"s":4,"id":2746,"u":"hellspawn_apg","p":40,"h":1,"n":"Hellspawn"},{"c":0,"s":4,"id":2747,"u":"herbalist%20dedication_apg","p":176,"h":1,"n":"Herbalist Dedication"},{"c":0,"s":4,"id":2748,"u":"heroic%20presence_apg","p":47,"h":1,"n":"Heroic Presence"},{"c":0,"s":4,"id":2749,"u":"hex%20focus_apg","p":104,"h":1,"n":"Hex Focus"},{"c":0,"s":4,"id":2750,"u":"hex%20master_apg","p":105,"h":1,"n":"Hex Master"},{"c":0,"s":4,"id":2751,"u":"hex%20wellspring_apg","p":105,"h":1,"n":"Hex Wellspring"},{"c":0,"s":4,"id":2752,"u":"hidden%20magic_apg","p":196,"h":1,"n":"Hidden Magic"},{"c":0,"s":4,"id":2753,"u":"high-quality%20scrounger_apg","p":190,"h":1,"n":"High-quality Scrounger"},{"c":0,"s":4,"id":2754,"u":"hireling%20manager_apg","p":206,"h":1,"n":"Hireling Manager"},{"c":0,"s":4,"id":2755,"u":"hold%20mark_apg","p":18,"h":1,"n":"Hold Mark"},{"c":0,"s":4,"id":2756,"u":"holistic%20care_apg","p":184,"h":1,"n":"Holistic Care"},{"c":0,"s":4,"id":2757,"u":"homeward%20bound_apg","p":44,"h":1,"n":"Homeward Bound"},{"c":0,"s":4,"id":2758,"u":"horizon%20walker%20dedication_apg","p":177,"h":1,"n":"Horizon Walker Dedication"},{"c":0,"s":4,"id":2759,"u":"hunter's%20luck_apg","p":132,"h":1,"n":"Hunter's Luck"},{"c":0,"s":4,"id":2760,"u":"hunter's%20vision_apg","p":132,"h":1,"n":"Hunter's Vision"},{"c":0,"s":4,"id":2761,"u":"hurling%20charge_apg","p":198,"h":1,"n":"Hurling Charge"},{"c":0,"s":4,"id":2762,"u":"hymn%20of%20healing_apg","p":112,"h":1,"n":"Hymn Of Healing"},{"c":0,"s":4,"id":2763,"u":"impaling%20finisher_apg","p":90,"h":1,"n":"Impaling Finisher"},{"c":0,"s":4,"id":2764,"u":"impaling%20thrust_apg","p":111,"h":1,"n":"Impaling Thrust"},{"c":0,"s":4,"id":2765,"u":"implausible%20purchase%20(investigator)_apg","p":65,"a":"Investigator","h":1,"n":"Implausible Purchase"},{"c":0,"s":4,"id":2766,"u":"implausible%20purchase%20(rogue)_apg","p":137,"a":"Rogue","h":1,"n":"Implausible Purchase"},{"c":0,"s":4,"id":2767,"u":"impossible%20riposte_apg","p":93,"h":1,"n":"Impossible Riposte"},{"c":0,"s":4,"id":2768,"u":"impossible%20snares_apg","p":133,"h":1,"n":"Impossible Snares"},{"c":0,"s":4,"id":2769,"u":"impressive%20landing_apg","p":110,"h":1,"n":"Impressive Landing"},{"c":0,"s":4,"id":2770,"u":"impressive%20mount_apg","p":164,"h":1,"n":"Impressive Mount"},{"c":0,"s":4,"id":2771,"u":"improved%20familiar%20(witch)_apg","p":102,"a":"Witch","h":1,"n":"Improved Familiar"},{"c":0,"s":4,"id":2772,"u":"improved%20familiar_apg","p":174,"h":1,"n":"Improved Familiar"},{"c":0,"s":4,"id":2773,"u":"improvise%20tool_apg","p":206,"h":1,"n":"Improvise Tool"},{"c":0,"s":4,"id":2774,"u":"improvised%20critical_apg","p":199,"h":1,"n":"Improvised Critical"},{"c":0,"s":4,"id":2775,"u":"improvised%20pummel_apg","p":199,"h":1,"n":"Improvised Pummel"},{"c":0,"s":4,"id":2776,"u":"improvised%20repair_apg","p":206,"h":1,"n":"Improvised Repair"},{"c":0,"s":4,"id":2777,"u":"incredible%20beastmaster%20companion_apg","p":160,"h":1,"n":"Incredible Beastmaster Companion"},{"c":0,"s":4,"id":2778,"u":"incredible%20familiar%20(witch)_apg","p":103,"a":"Witch","h":1,"n":"Incredible Familiar"},{"c":0,"s":4,"id":2779,"u":"incredible%20familiar%20(familiar%20master)_apg","p":174,"a":"Familiar Master","h":1,"n":"Incredible Familiar"},{"c":0,"s":4,"id":2780,"u":"incredible%20luck_apg","p":93,"h":1,"n":"Incredible Luck"},{"c":0,"s":4,"id":2781,"u":"incredible%20mount_apg","p":165,"h":1,"n":"Incredible Mount"},{"c":0,"s":4,"id":2782,"u":"incredible%20scout_apg","p":206,"h":1,"n":"Incredible Scout"},{"c":0,"s":4,"id":2783,"u":"inexhaustible%20countermoves_apg","p":93,"h":1,"n":"Inexhaustible Countermoves"},{"c":0,"s":4,"id":2784,"u":"influence%20nature_apg","p":207,"h":1,"n":"Influence Nature"},{"c":0,"s":4,"id":2785,"u":"inner%20strength_apg","p":109,"h":1,"n":"Inner Strength"},{"c":0,"s":4,"id":2786,"u":"inoculation_apg","p":207,"h":1,"n":"Inoculation"},{"c":0,"s":4,"id":2787,"u":"inspired%20stratagem_apg","p":136,"h":1,"n":"Inspired Stratagem"},{"c":0,"s":4,"id":2788,"u":"inspiring%20marshal%20stance_apg","p":180,"h":1,"n":"Inspiring Marshal Stance"},{"c":0,"s":4,"id":2789,"u":"instinctive%20obfuscation_apg","p":44,"h":1,"n":"Instinctive Obfuscation"},{"c":0,"s":4,"id":2790,"u":"instinctive%20strike_apg","p":110,"h":1,"n":"Instinctive Strike"},{"c":0,"s":4,"id":2791,"u":"instrument%20of%20slaughter_apg","p":121,"h":1,"n":"Instrument Of Slaughter"},{"c":0,"s":4,"id":2792,"u":"investigator%20dedication_apg","p":151,"h":1,"n":"Investigator Dedication"},{"c":0,"s":4,"id":2793,"u":"investigator's%20stratagem_apg","p":151,"h":1,"n":"Investigator's Stratagem"},{"c":0,"s":4,"id":2794,"u":"invigorating%20mercy_apg","p":119,"h":1,"n":"Invigorating Mercy"},{"c":0,"s":4,"id":2795,"u":"iron%20fists_apg","p":18,"h":1,"n":"Iron Fists"},{"c":0,"s":4,"id":2796,"u":"iron%20repercussions_apg","p":118,"h":1,"n":"Iron Repercussions"},{"c":0,"s":4,"id":2797,"u":"just%20one%20more%20thing_apg","p":63,"h":1,"n":"Just One More Thing"},{"c":0,"s":4,"id":2798,"u":"just%20the%20facts_apg","p":65,"h":1,"n":"Just The Facts"},{"c":0,"s":4,"id":2799,"u":"keen%20follower_apg","p":207,"h":1,"n":"Keen Follower"},{"c":0,"s":4,"id":2800,"u":"keen%20recollection_apg","p":151,"h":1,"n":"Keen Recollection"},{"c":0,"s":4,"id":2801,"u":"keep%20pace_apg","p":163,"h":1,"n":"Keep Pace"},{"c":0,"s":4,"id":2802,"u":"ki%20center_apg","p":131,"h":1,"n":"Ki Center"},{"c":0,"s":4,"id":2803,"u":"ki%20form_apg","p":131,"h":1,"n":"Ki Form"},{"c":0,"s":4,"id":2804,"u":"kneecap_apg","p":45,"h":1,"n":"Kneecap"},{"c":0,"s":4,"id":2805,"u":"know%20your%20own_apg","p":43,"h":1,"n":"Know Your Own"},{"c":0,"s":4,"id":2806,"u":"known%20weaknesses_apg","p":60,"h":1,"n":"Known Weaknesses"},{"c":0,"s":4,"id":2807,"u":"kobold%20breath_apg","p":14,"h":1,"n":"Kobold Breath"},{"c":0,"s":4,"id":2808,"u":"kobold%20lore_apg","p":14,"h":1,"n":"Kobold Lore"},{"c":0,"s":4,"id":2809,"u":"lab%20rat_apg","p":23,"h":1,"n":"Lab Rat"},{"c":0,"s":4,"id":2810,"u":"lawbringer_apg","p":35,"h":1,"n":"Lawbringer"},{"c":0,"s":4,"id":2811,"u":"lead%20climber_apg","p":207,"h":1,"n":"Lead Climber"},{"c":0,"s":4,"id":2812,"u":"lead%20investigator_apg","p":65,"h":1,"n":"Lead Investigator"},{"c":0,"s":4,"id":2813,"u":"lead%20the%20pack_apg","p":161,"h":1,"n":"Lead The Pack"},{"c":0,"s":4,"id":2814,"u":"leading%20dance_apg","p":90,"h":1,"n":"Leading Dance"},{"c":0,"s":4,"id":2815,"u":"legendary%20guide_apg","p":207,"h":1,"n":"Legendary Guide"},{"c":0,"s":4,"id":2816,"u":"legendary%20rider_apg","p":165,"h":1,"n":"Legendary Rider"},{"c":0,"s":4,"id":2817,"u":"leshy%20familiar%20secrets_apg","p":124,"h":1,"n":"Leshy Familiar Secrets"},{"c":0,"s":4,"id":2818,"u":"lethal%20finisher_apg","p":93,"h":1,"n":"Lethal Finisher"},{"c":0,"s":4,"id":2819,"u":"life%20leap_apg","p":44,"h":1,"n":"Life Leap"},{"c":0,"s":4,"id":2820,"u":"lifesense_apg","p":38,"h":1,"n":"Lifesense"},{"c":0,"s":4,"id":2821,"u":"light%20from%20darkness_apg","p":41,"h":1,"n":"Light From Darkness"},{"c":0,"s":4,"id":2822,"u":"light%20paws_apg","p":10,"h":1,"n":"Light Paws"},{"c":0,"s":4,"id":2823,"u":"lightslayer%20oath_apg","p":118,"h":1,"n":"Lightslayer Oath"},{"c":0,"s":4,"id":2824,"u":"linguist%20dedication_apg","p":178,"h":1,"n":"Linguist Dedication"},{"c":0,"s":4,"id":2825,"u":"litany%20of%20depravity_apg","p":121,"h":1,"n":"Litany Of Depravity"},{"c":0,"s":4,"id":2826,"u":"litany%20of%20self-interest_apg","p":120,"h":1,"n":"Litany Of Self-interest"},{"c":0,"s":4,"id":2827,"u":"living%20hair_apg","p":102,"h":1,"n":"Living Hair"},{"c":0,"s":4,"id":2828,"u":"loaner%20spell_apg","p":136,"h":1,"n":"Loaner Spell"},{"c":0,"s":4,"id":2829,"u":"long-nosed%20form_apg","p":26,"h":1,"n":"Long-nosed Form"},{"c":0,"s":4,"id":2830,"u":"loremaster%20dedication_apg","p":179,"h":1,"n":"Loremaster Dedication"},{"c":0,"s":4,"id":2831,"u":"loud%20singer_apg","p":45,"h":1,"n":"Loud Singer"},{"c":0,"s":4,"id":2832,"u":"mage%20hunter_apg","p":109,"h":1,"n":"Mage Hunter"},{"c":0,"s":4,"id":2833,"u":"magic%20arrow_apg","p":173,"h":1,"n":"Magic Arrow"},{"c":0,"s":4,"id":2834,"u":"magic%20hands_apg","p":122,"h":1,"n":"Magic Hands"},{"c":0,"s":4,"id":2835,"u":"magic%20hide_apg","p":132,"h":1,"n":"Magic Hide"},{"c":0,"s":4,"id":2836,"u":"magic%20rider_apg","p":43,"h":1,"n":"Magic Rider"},{"c":0,"s":4,"id":2837,"u":"magic%20sense_apg","p":80,"h":1,"n":"Magic Sense"},{"c":0,"s":4,"id":2838,"u":"magical%20adaptation_apg","p":177,"h":1,"n":"Magical Adaptation"},{"c":0,"s":4,"id":2839,"u":"magical%20edification_apg","p":179,"h":1,"n":"Magical Edification"},{"c":0,"s":4,"id":2840,"u":"magical%20scholastics_apg","p":156,"h":1,"n":"Magical Scholastics"},{"c":0,"s":4,"id":2841,"u":"major%20lesson_apg","p":103,"h":1,"n":"Major Lesson"},{"c":0,"s":4,"id":2842,"u":"makeshift%20strike_apg","p":199,"h":1,"n":"Makeshift Strike"},{"c":0,"s":4,"id":2843,"u":"malicious%20bane_apg","p":40,"h":1,"n":"Malicious Bane"},{"c":0,"s":4,"id":2844,"u":"many%20guises_apg","p":197,"h":1,"n":"Many Guises"},{"c":0,"s":4,"id":2845,"u":"marshal%20dedication_apg","p":180,"h":1,"n":"Marshal Dedication"},{"c":0,"s":4,"id":2846,"u":"martial%20artist%20dedication_apg","p":182,"h":1,"n":"Martial Artist Dedication"},{"c":0,"s":4,"id":2847,"u":"martial%20experience_apg","p":43,"h":1,"n":"Martial Experience"},{"c":0,"s":4,"id":2848,"u":"martial%20performance_apg","p":112,"h":1,"n":"Martial Performance"},{"c":0,"s":4,"id":2849,"u":"martyr_apg","p":122,"h":1,"n":"Martyr"},{"c":0,"s":4,"id":2850,"u":"master%20eldritch%20archer%20spellcasting_apg","p":173,"h":1,"n":"Master Eldritch Archer Spellcasting"},{"c":0,"s":4,"id":2851,"u":"master%20oracle%20spellcasting_apg","p":152,"h":1,"n":"Master Oracle Spellcasting"},{"c":0,"s":4,"id":2852,"u":"master%20scroll%20cache_apg","p":189,"h":1,"n":"Master Scroll Cache"},{"c":0,"s":4,"id":2853,"u":"master%20spotter_apg","p":151,"h":1,"n":"Master Spotter"},{"c":0,"s":4,"id":2854,"u":"master%20witch%20spellcasting_apg","p":154,"h":1,"n":"Master Witch Spellcasting"},{"c":0,"s":4,"id":2855,"u":"mature%20beastmaster%20companion_apg","p":160,"h":1,"n":"Mature Beastmaster Companion"},{"c":0,"s":4,"id":2856,"u":"mauler%20dedication_apg","p":183,"h":1,"n":"Mauler Dedication"},{"c":0,"s":4,"id":2857,"u":"medic%20dedication_apg","p":184,"h":1,"n":"Medic Dedication"},{"c":0,"s":4,"id":2858,"u":"medusa's%20wrath_apg","p":130,"h":1,"n":"Medusa's Wrath"},{"c":0,"s":4,"id":2859,"u":"mesmerizing%20gaze_apg","p":166,"h":1,"n":"Mesmerizing Gaze"},{"c":0,"s":4,"id":2860,"u":"methodical%20debilitations_apg","p":136,"h":1,"n":"Methodical Debilitations"},{"c":0,"s":4,"id":2861,"u":"mighty%20bulwark_apg","p":191,"h":1,"n":"Mighty Bulwark"},{"c":0,"s":4,"id":2862,"u":"mighty%20dragon%20shape_apg","p":169,"h":1,"n":"Mighty Dragon Shape"},{"c":0,"s":4,"id":2863,"u":"minion%20guise_apg","p":196,"h":1,"n":"Minion Guise"},{"c":0,"s":4,"id":2864,"u":"miraculous%20possibility_apg","p":123,"h":1,"n":"Miraculous Possibility"},{"c":0,"s":4,"id":2865,"u":"mist%20child_apg","p":31,"h":1,"n":"Mist Child"},{"c":0,"s":4,"id":2866,"u":"mobile%20finisher_apg","p":92,"h":1,"n":"Mobile Finisher"},{"c":0,"s":4,"id":2867,"u":"monastic%20archer%20stance_apg","p":128,"h":1,"n":"Monastic Archer Stance"},{"c":0,"s":4,"id":2868,"u":"mounted%20shield_apg","p":164,"h":1,"n":"Mounted Shield"},{"c":0,"s":4,"id":2869,"u":"mug_apg","p":135,"h":1,"n":"Mug"},{"c":0,"s":4,"id":2870,"u":"multilingual%20cipher_apg","p":178,"h":1,"n":"Multilingual Cipher"},{"c":0,"s":4,"id":2871,"u":"murksight_apg","p":103,"h":1,"n":"Murksight"},{"c":0,"s":4,"id":2872,"u":"musetouched_apg","p":35,"h":1,"n":"Musetouched"},{"c":0,"s":4,"id":2873,"u":"mutable%20familiar_apg","p":174,"h":1,"n":"Mutable Familiar"},{"c":0,"s":4,"id":2874,"u":"mysterious%20breadth_apg","p":152,"h":1,"n":"Mysterious Breadth"},{"c":0,"s":4,"id":2875,"u":"mysterious%20repertoire_apg","p":81,"h":1,"n":"Mysterious Repertoire"},{"c":0,"s":4,"id":2876,"u":"mystery%20conduit_apg","p":81,"h":1,"n":"Mystery Conduit"},{"c":0,"s":4,"id":2877,"u":"necromantic%20physiology_apg","p":33,"h":1,"n":"Necromantic Physiology"},{"c":0,"s":4,"id":2878,"u":"never%20tire_apg","p":166,"h":1,"n":"Never Tire"},{"c":0,"s":4,"id":2879,"u":"night%20magic_apg","p":33,"h":1,"n":"Night Magic"},{"c":0,"s":4,"id":2880,"u":"nimble%20dodge_apg","p":88,"h":1,"n":"Nimble Dodge"},{"c":0,"s":4,"id":2881,"u":"nimble%20hooves_apg","p":40,"h":1,"n":"Nimble Hooves"},{"c":0,"s":4,"id":2882,"u":"nimble%20roll_apg","p":91,"h":1,"n":"Nimble Roll"},{"c":0,"s":4,"id":2883,"u":"nimble%20shield%20hand_apg","p":159,"h":1,"n":"Nimble Shield Hand"},{"c":0,"s":4,"id":2884,"u":"no%20cause%20for%20alarm_apg","p":208,"h":1,"n":"No Cause For Alarm"},{"c":0,"s":4,"id":2885,"u":"nocturnal%20sense_apg","p":110,"h":1,"n":"Nocturnal Sense"},{"c":0,"s":4,"id":2886,"u":"nonlethal%20spell_apg","p":142,"h":1,"n":"Nonlethal Spell"},{"c":0,"s":4,"id":2887,"u":"occult%20resistance_apg","p":31,"h":1,"n":"Occult Resistance"},{"c":0,"s":4,"id":2888,"u":"ode%20to%20ouroboros_apg","p":114,"h":1,"n":"Ode To Ouroboros"},{"c":0,"s":4,"id":2889,"u":"one%20for%20all_apg","p":88,"h":1,"n":"One For All"},{"c":0,"s":4,"id":2890,"u":"one-inch%20punch_apg","p":129,"h":1,"n":"One-inch Punch"},{"c":0,"s":4,"id":2891,"u":"one-millimeter%20punch_apg","p":131,"h":1,"n":"One-millimeter Punch"},{"c":0,"s":4,"id":2892,"u":"one-toed%20hop_apg","p":27,"h":1,"n":"One-toed Hop"},{"c":0,"s":4,"id":2893,"u":"ongoing%20investigation_apg","p":62,"h":1,"n":"Ongoing Investigation"},{"c":0,"s":4,"id":2894,"u":"ongoing%20selfishness_apg","p":118,"h":1,"n":"Ongoing Selfishness"},{"c":0,"s":4,"id":2895,"u":"ongoing%20strategy_apg","p":63,"h":1,"n":"Ongoing Strategy"},{"c":0,"s":4,"id":2896,"u":"opportunistic%20grapple_apg","p":163,"h":1,"n":"Opportunistic Grapple"},{"c":0,"s":4,"id":2897,"u":"oracle%20dedication_apg","p":152,"h":1,"n":"Oracle Dedication"},{"c":0,"s":4,"id":2898,"u":"oracular%20providence_apg","p":81,"h":1,"n":"Oracular Providence"},{"c":0,"s":4,"id":2899,"u":"oracular%20warning_apg","p":80,"h":1,"n":"Oracular Warning"},{"c":0,"s":4,"id":2900,"u":"orc%20lore_apg","p":18,"h":1,"n":"Orc Lore"},{"c":0,"s":4,"id":2901,"u":"orthographic%20mastery_apg","p":179,"h":1,"n":"Orthographic Mastery"},{"c":0,"s":4,"id":2902,"u":"otherworldly%20acumen_apg","p":43,"h":1,"n":"Otherworldly Acumen"},{"c":0,"s":4,"id":2903,"u":"overcrowd_apg","p":23,"h":1,"n":"Overcrowd"},{"c":0,"s":4,"id":2904,"u":"overextending%20feint_apg","p":134,"h":1,"n":"Overextending Feint"},{"c":0,"s":4,"id":2905,"u":"overpowering%20charge%20(barbarian)_apg","p":110,"a":"Barbarian","h":1,"n":"Overpowering Charge"},{"c":0,"s":4,"id":2906,"u":"overpowering%20charge%20(fighter)_apg","p":127,"a":"Fighter","h":1,"n":"Overpowering Charge"},{"c":0,"s":4,"id":2907,"u":"oversized%20throw_apg","p":109,"h":1,"n":"Oversized Throw"},{"c":0,"s":4,"id":2908,"u":"overwhelming%20blow_apg","p":127,"h":1,"n":"Overwhelming Blow"},{"c":0,"s":4,"id":2909,"u":"overwhelming%20breath_apg","p":130,"h":1,"n":"Overwhelming Breath"},{"c":0,"s":4,"id":2910,"u":"pack%20rat_apg","p":22,"h":1,"n":"Pack Rat"},{"c":0,"s":4,"id":2911,"u":"pale%20horse_apg","p":121,"h":1,"n":"Pale Horse"},{"c":0,"s":4,"id":2912,"u":"panache%20paragon_apg","p":93,"h":1,"n":"Panache Paragon"},{"c":0,"s":4,"id":2913,"u":"paradoxical%20mystery_apg","p":81,"h":1,"n":"Paradoxical Mystery"},{"c":0,"s":4,"id":2914,"u":"parry%20and%20riposte_apg","p":93,"h":1,"n":"Parry And Riposte"},{"c":0,"s":4,"id":2915,"u":"parting%20shot_apg","p":126,"h":1,"n":"Parting Shot"},{"c":0,"s":4,"id":2916,"u":"party%20crasher_apg","p":167,"h":1,"n":"Party Crasher"},{"c":0,"s":4,"id":2917,"u":"path%20of%20iron_apg","p":182,"h":1,"n":"Path Of Iron"},{"c":0,"s":4,"id":2918,"u":"patron's%20breadth_apg","p":154,"h":1,"n":"Patron's Breadth"},{"c":0,"s":4,"id":2919,"u":"patron's%20truth_apg","p":105,"h":1,"n":"Patron's Truth"},{"c":0,"s":4,"id":2920,"u":"peafowl%20stance_apg","p":128,"h":1,"n":"Peafowl Stance"},{"c":0,"s":4,"id":2921,"u":"peafowl%20strut_apg","p":129,"h":1,"n":"Peafowl Strut"},{"c":0,"s":4,"id":2922,"u":"penetrating%20projectile_apg","p":111,"h":1,"n":"Penetrating Projectile"},{"c":0,"s":4,"id":2923,"u":"perfect%20finisher_apg","p":93,"h":1,"n":"Perfect Finisher"},{"c":0,"s":4,"id":2924,"u":"performative%20weapons%20training_apg","p":175,"h":1,"n":"Performative Weapons Training"},{"c":0,"s":4,"id":2925,"u":"perpetual%20breadth_apg","p":107,"h":1,"n":"Perpetual Breadth"},{"c":0,"s":4,"id":2926,"u":"perpetual%20scout_apg","p":177,"h":1,"n":"Perpetual Scout"},{"c":0,"s":4,"id":2927,"u":"phase%20arrow_apg","p":173,"h":1,"n":"Phase Arrow"},{"c":0,"s":4,"id":2928,"u":"phonetic%20training_apg","p":178,"h":1,"n":"Phonetic Training"},{"c":0,"s":4,"id":2929,"u":"pick%20up%20the%20pace_apg","p":208,"h":1,"n":"Pick Up The Pace"},{"c":0,"s":4,"id":2930,"u":"pied%20piping_apg","p":115,"h":1,"n":"Pied Piping"},{"c":0,"s":4,"id":2931,"u":"pilgrim's%20token_apg","p":208,"h":1,"n":"Pilgrim's Token"},{"c":0,"s":4,"id":2932,"u":"pinch%20time_apg","p":47,"h":1,"n":"Pinch Time"},{"c":0,"s":4,"id":2933,"u":"pinning%20fire_apg","p":129,"h":1,"n":"Pinning Fire"},{"c":0,"s":4,"id":2934,"u":"pinpoint%20poisoner_apg","p":107,"h":1,"n":"Pinpoint Poisoner"},{"c":0,"s":4,"id":2935,"u":"pirate%20dedication_apg","p":185,"h":1,"n":"Pirate Dedication"},{"c":0,"s":4,"id":2936,"u":"pirate%20weapon%20training_apg","p":185,"h":1,"n":"Pirate Weapon Training"},{"c":0,"s":4,"id":2937,"u":"pitborn_apg","p":40,"h":1,"n":"Pitborn"},{"c":0,"s":4,"id":2938,"u":"plant%20evidence_apg","p":134,"h":1,"n":"Plant Evidence"},{"c":0,"s":4,"id":2939,"u":"play%20to%20the%20crowd_apg","p":175,"h":1,"n":"Play To The Crowd"},{"c":0,"s":4,"id":2940,"u":"plentiful%20snares_apg","p":194,"h":1,"n":"Plentiful Snares"},{"c":0,"s":4,"id":2941,"u":"plot%20the%20future_apg","p":64,"h":1,"n":"Plot The Future"},{"c":0,"s":4,"id":2942,"u":"poison%20coat_apg","p":186,"h":1,"n":"Poison Coat"},{"c":0,"s":4,"id":2943,"u":"poisoner%20dedication_apg","p":186,"h":1,"n":"Poisoner Dedication"},{"c":0,"s":4,"id":2944,"u":"poisoner's%20twist_apg","p":186,"h":1,"n":"Poisoner's Twist"},{"c":0,"s":4,"id":2945,"u":"portentous%20spell_apg","p":81,"h":1,"n":"Portentous Spell"},{"c":0,"s":4,"id":2946,"u":"posse_apg","p":163,"h":1,"n":"Posse"},{"c":0,"s":4,"id":2947,"u":"poultice%20preparation_apg","p":176,"h":1,"n":"Poultice Preparation"},{"c":0,"s":4,"id":2948,"u":"prairie%20rider_apg","p":46,"h":1,"n":"Prairie Rider"},{"c":0,"s":4,"id":2949,"u":"precious%20arrow_apg","p":173,"h":1,"n":"Precious Arrow"},{"c":0,"s":4,"id":2950,"u":"precise%20finisher_apg","p":91,"h":1,"n":"Precise Finisher"},{"c":0,"s":4,"id":2951,"u":"predictable!_apg","p":135,"h":1,"n":"Predictable!"},{"c":0,"s":4,"id":2952,"u":"predictive%20purchase%20(investigator)_apg","p":63,"a":"Investigator","h":1,"n":"Predictive Purchase"},{"c":0,"s":4,"id":2953,"u":"predictive%20purchase%20(rogue)_apg","p":136,"a":"Rogue","h":1,"n":"Predictive Purchase"},{"c":0,"s":4,"id":2954,"u":"premonition%20of%20avoidance_apg","p":122,"h":1,"n":"Premonition Of Avoidance"},{"c":0,"s":4,"id":2955,"u":"premonition%20of%20clarity_apg","p":123,"h":1,"n":"Premonition Of Clarity"},{"c":0,"s":4,"id":2956,"u":"preparation_apg","p":136,"h":1,"n":"Preparation"},{"c":0,"s":4,"id":2957,"u":"prescient%20consumable_apg","p":208,"h":1,"n":"Prescient Consumable"},{"c":0,"s":4,"id":2958,"u":"prescient%20planner_apg","p":208,"h":1,"n":"Prescient Planner"},{"c":0,"s":4,"id":2959,"u":"prevailing%20position_apg","p":130,"h":1,"n":"Prevailing Position"},{"c":0,"s":4,"id":2960,"u":"primal%20aegis_apg","p":125,"h":1,"n":"Primal Aegis"},{"c":0,"s":4,"id":2961,"u":"pristine%20weapon_apg","p":124,"h":1,"n":"Pristine Weapon"},{"c":0,"s":4,"id":2962,"u":"project%20persona_apg","p":44,"h":1,"n":"Project Persona"},{"c":0,"s":4,"id":2963,"u":"quick%20change_apg","p":197,"h":1,"n":"Quick Change"},{"c":0,"s":4,"id":2964,"u":"quick%20contacts_apg","p":208,"h":1,"n":"Quick Contacts"},{"c":0,"s":4,"id":2965,"u":"quick%20fix_apg","p":195,"h":1,"n":"Quick Fix"},{"c":0,"s":4,"id":2966,"u":"quick%20mount_apg","p":164,"h":1,"n":"Quick Mount"},{"c":0,"s":4,"id":2967,"u":"quick%20shot_apg","p":157,"h":1,"n":"Quick Shot"},{"c":0,"s":4,"id":2968,"u":"quick%20stow_apg","p":23,"h":1,"n":"Quick Stow"},{"c":0,"s":4,"id":2969,"u":"quick%20study_apg","p":179,"h":1,"n":"Quick Study"},{"c":0,"s":4,"id":2970,"u":"quickened%20casting%20(oracle)_apg","p":80,"a":"Oracle","h":1,"n":"Quickened Casting"},{"c":0,"s":4,"id":2971,"u":"quickened%20casting%20(witch)_apg","p":103,"a":"Witch","h":1,"n":"Quickened Casting"},{"c":0,"s":4,"id":2972,"u":"radiant%20infusion_apg","p":122,"h":1,"n":"Radiant Infusion"},{"c":0,"s":4,"id":2973,"u":"rallying%20charge_apg","p":180,"h":1,"n":"Rallying Charge"},{"c":0,"s":4,"id":2974,"u":"rampaging%20ferocity_apg","p":19,"h":1,"n":"Rampaging Ferocity"},{"c":0,"s":4,"id":2975,"u":"ranger's%20bramble_apg","p":132,"h":1,"n":"Ranger's Bramble"},{"c":0,"s":4,"id":2976,"u":"rapid%20affixture_apg","p":208,"h":1,"n":"Rapid Affixture"},{"c":0,"s":4,"id":2977,"u":"rapid%20response_apg","p":122,"h":1,"n":"Rapid Response"},{"c":0,"s":4,"id":2978,"u":"rat%20familiar_apg","p":22,"h":1,"n":"Rat Familiar"},{"c":0,"s":4,"id":2979,"u":"rat%20form_apg","p":23,"h":1,"n":"Rat Form"},{"c":0,"s":4,"id":2980,"u":"rat%20magic_apg","p":23,"h":1,"n":"Rat Magic"},{"c":0,"s":4,"id":2981,"u":"ratfolk%20lore_apg","p":22,"h":1,"n":"Ratfolk Lore"},{"c":0,"s":4,"id":2982,"u":"ratspeak_apg","p":22,"h":1,"n":"Ratspeak"},{"c":0,"s":4,"id":2983,"u":"razzle-dazzle_apg","p":44,"h":1,"n":"Razzle-dazzle"},{"c":0,"s":4,"id":2984,"u":"reach%20spell%20(oracle)_apg","p":79,"a":"Oracle","h":1,"n":"Reach Spell"},{"c":0,"s":4,"id":2985,"u":"reach%20spell%20(witch)_apg","p":101,"a":"Witch","h":1,"n":"Reach Spell"},{"c":0,"s":4,"id":2986,"u":"reactive%20transformation_apg","p":125,"h":1,"n":"Reactive Transformation"},{"c":0,"s":4,"id":2987,"u":"read%20disaster_apg","p":80,"h":1,"n":"Read Disaster"},{"c":0,"s":4,"id":2988,"u":"read%20shibboleths_apg","p":178,"h":1,"n":"Read Shibboleths"},{"c":0,"s":4,"id":2989,"u":"reason%20rapidly_apg","p":64,"h":1,"n":"Reason Rapidly"},{"c":0,"s":4,"id":2990,"u":"rebounding%20toss_apg","p":126,"h":1,"n":"Rebounding Toss"},{"c":0,"s":4,"id":2991,"u":"reckless%20abandon%20(goblin)_apg","p":45,"a":"Goblin","h":1,"n":"Reckless Abandon"},{"c":0,"s":4,"id":2992,"u":"reconstruct%20the%20scene%20(investigator)_apg","p":65,"a":"Investigator","h":1,"n":"Reconstruct The Scene"},{"c":0,"s":4,"id":2993,"u":"reconstruct%20the%20scene%20(rogue)_apg","p":137,"a":"Rogue","h":1,"n":"Reconstruct The Scene"},{"c":0,"s":4,"id":2994,"u":"red%20herring_apg","p":61,"h":1,"n":"Red Herring"},{"c":0,"s":4,"id":2995,"u":"reflect%20spell%20(witch)_apg","p":104,"a":"Witch","h":1,"n":"Reflect Spell"},{"c":0,"s":4,"id":2996,"u":"reflexive%20riposte_apg","p":92,"h":1,"n":"Reflexive Riposte"},{"c":0,"s":4,"id":2997,"u":"rejuvenating%20touch_apg","p":121,"h":1,"n":"Rejuvenating Touch"},{"c":0,"s":4,"id":2998,"u":"relentless%20wings_apg","p":41,"h":1,"n":"Relentless Wings"},{"c":0,"s":4,"id":2999,"u":"reliable%20luck_apg","p":11,"h":1,"n":"Reliable Luck"},{"c":0,"s":4,"id":3000,"u":"remediate_apg","p":123,"h":1,"n":"Remediate"},{"c":0,"s":4,"id":3001,"u":"remote%20trigger_apg","p":194,"h":1,"n":"Remote Trigger"},{"c":0,"s":4,"id":3002,"u":"resilient%20touch_apg","p":120,"h":1,"n":"Resilient Touch"},{"c":0,"s":4,"id":3003,"u":"resist%20ruin_apg","p":38,"h":1,"n":"Resist Ruin"},{"c":0,"s":4,"id":3004,"u":"resounding%20blow_apg","p":110,"h":1,"n":"Resounding Blow"},{"c":0,"s":4,"id":3005,"u":"resounding%20bravery_apg","p":127,"h":1,"n":"Resounding Bravery"},{"c":0,"s":4,"id":3006,"u":"resounding%20finale_apg","p":115,"h":1,"n":"Resounding Finale"},{"c":0,"s":4,"id":3007,"u":"resourceful%20ritualist_apg","p":187,"h":1,"n":"Resourceful Ritualist"},{"c":0,"s":4,"id":3008,"u":"resuscitate_apg","p":184,"h":1,"n":"Resuscitate"},{"c":0,"s":4,"id":3009,"u":"return%20fire_apg","p":129,"h":1,"n":"Return Fire"},{"c":0,"s":4,"id":3010,"u":"returning%20throw_apg","p":42,"h":1,"n":"Returning Throw"},{"c":0,"s":4,"id":3011,"u":"reverberate_apg","p":114,"h":1,"n":"Reverberate"},{"c":0,"s":4,"id":3012,"u":"reverse%20engineering_apg","p":190,"h":1,"n":"Reverse Engineering"},{"c":0,"s":4,"id":3013,"u":"ricochet%20feint_apg","p":136,"h":1,"n":"Ricochet Feint"},{"c":0,"s":4,"id":3014,"u":"ricochet%20stance%20(fighter)_apg","p":126,"a":"Fighter","h":1,"n":"Ricochet Stance"},{"c":0,"s":4,"id":3015,"u":"ricochet%20stance%20(rogue)_apg","p":136,"a":"Rogue","h":1,"n":"Ricochet Stance"},{"c":0,"s":4,"id":3016,"u":"risky%20surgery_apg","p":208,"h":1,"n":"Risky Surgery"},{"c":0,"s":4,"id":3017,"u":"rites%20of%20convocation_apg","p":102,"h":1,"n":"Rites Of Convocation"},{"c":0,"s":4,"id":3018,"u":"rites%20of%20transfiguration_apg","p":105,"h":1,"n":"Rites Of Transfiguration"},{"c":0,"s":4,"id":3019,"u":"ritual%20researcher_apg","p":112,"h":1,"n":"Ritual Researcher"},{"c":0,"s":4,"id":3020,"u":"ritualist%20dedication_apg","p":187,"h":1,"n":"Ritualist Dedication"},{"c":0,"s":4,"id":3021,"u":"root%20magic_apg","p":208,"h":1,"n":"Root Magic"},{"c":0,"s":4,"id":3022,"u":"rope%20runner_apg","p":185,"h":1,"n":"Rope Runner"},{"c":0,"s":4,"id":3023,"u":"sacred%20defender_apg","p":121,"h":1,"n":"Sacred Defender"},{"c":0,"s":4,"id":3024,"u":"sacrifice%20armor_apg","p":120,"h":1,"n":"Sacrifice Armor"},{"c":0,"s":4,"id":3025,"u":"safe%20house_apg","p":196,"h":1,"n":"Safe House"},{"c":0,"s":4,"id":3026,"u":"safeguarded%20spell_apg","p":139,"h":1,"n":"Safeguarded Spell"},{"c":0,"s":4,"id":3027,"u":"sample%20investigator%20lie%20detector_apg","p":62,"h":1,"n":"Sample Investigator Lie Detector"},{"c":0,"s":4,"id":3028,"u":"scales%20of%20the%20dragon_apg","p":169,"h":1,"n":"Scales Of The Dragon"},{"c":0,"s":4,"id":3029,"u":"scalpel's%20point_apg","p":62,"h":1,"n":"Scalpel's Point"},{"c":0,"s":4,"id":3030,"u":"scamper_apg","p":14,"h":1,"n":"Scamper"},{"c":0,"s":4,"id":3031,"u":"scavenger's%20search_apg","p":26,"h":1,"n":"Scavenger's Search"},{"c":0,"s":4,"id":3032,"u":"scholastic%20identification_apg","p":156,"h":1,"n":"Scholastic Identification"},{"c":0,"s":4,"id":3033,"u":"schooled%20in%20secrets_apg","p":208,"h":1,"n":"Schooled In Secrets"},{"c":0,"s":4,"id":3034,"u":"scintillating%20spell_apg","p":141,"h":1,"n":"Scintillating Spell"},{"c":0,"s":4,"id":3035,"u":"scouring%20rage_apg","p":110,"h":1,"n":"Scouring Rage"},{"c":0,"s":4,"id":3036,"u":"scout%20dedication_apg","p":188,"h":1,"n":"Scout Dedication"},{"c":0,"s":4,"id":3037,"u":"scout's%20charge_apg","p":188,"h":1,"n":"Scout's Charge"},{"c":0,"s":4,"id":3038,"u":"scout's%20pounce_apg","p":188,"h":1,"n":"Scout's Pounce"},{"c":0,"s":4,"id":3039,"u":"scout's%20speed_apg","p":188,"h":1,"n":"Scout's Speed"},{"c":0,"s":4,"id":3040,"u":"scroll%20trickster%20dedication_apg","p":189,"h":1,"n":"Scroll Trickster Dedication"},{"c":0,"s":4,"id":3041,"u":"scrounger%20dedication_apg","p":190,"h":1,"n":"Scrounger Dedication"},{"c":0,"s":4,"id":3042,"u":"seasoned_apg","p":209,"h":1,"n":"Seasoned"},{"c":0,"s":4,"id":3043,"u":"second%20chance%20spell_apg","p":143,"h":1,"n":"Second Chance Spell"},{"c":0,"s":4,"id":3044,"u":"second%20shield_apg","p":198,"h":1,"n":"Second Shield"},{"c":0,"s":4,"id":3045,"u":"seeker%20arrow_apg","p":173,"h":1,"n":"Seeker Arrow"},{"c":0,"s":4,"id":3046,"u":"selfless%20parry_apg","p":171,"h":1,"n":"Selfless Parry"},{"c":0,"s":4,"id":3047,"u":"sense%20allies_apg","p":47,"h":1,"n":"Sense Allies"},{"c":0,"s":4,"id":3048,"u":"sense%20good_apg","p":120,"h":1,"n":"Sense Good"},{"c":0,"s":4,"id":3049,"u":"sense%20the%20unseen_apg","p":64,"h":1,"n":"Sense The Unseen"},{"c":0,"s":4,"id":3050,"u":"sentinel%20dedication_apg","p":191,"h":1,"n":"Sentinel Dedication"},{"c":0,"s":4,"id":3051,"u":"settlement%20scholastics_apg","p":156,"h":1,"n":"Settlement Scholastics"},{"c":0,"s":4,"id":3052,"u":"shadow%20illusion_apg","p":192,"h":1,"n":"Shadow Illusion"},{"c":0,"s":4,"id":3053,"u":"shadow%20magic_apg","p":192,"h":1,"n":"Shadow Magic"},{"c":0,"s":4,"id":3054,"u":"shadow%20mark_apg","p":209,"h":1,"n":"Shadow Mark"},{"c":0,"s":4,"id":3055,"u":"shadow%20master_apg","p":192,"h":1,"n":"Shadow Master"},{"c":0,"s":4,"id":3056,"u":"shadow%20power_apg","p":192,"h":1,"n":"Shadow Power"},{"c":0,"s":4,"id":3057,"u":"shadow%20self_apg","p":46,"h":1,"n":"Shadow Self"},{"c":0,"s":4,"id":3058,"u":"shadow%20sneak%20attack_apg","p":192,"h":1,"n":"Shadow Sneak Attack"},{"c":0,"s":4,"id":3059,"u":"shadow's%20web_apg","p":130,"h":1,"n":"Shadow's Web"},{"c":0,"s":4,"id":3060,"u":"shadowdancer%20dedication_apg","p":192,"h":1,"n":"Shadowdancer Dedication"},{"c":0,"s":4,"id":3061,"u":"shape%20of%20the%20dragon_apg","p":169,"h":1,"n":"Shape Of The Dragon"},{"c":0,"s":4,"id":3062,"u":"shared%20assault_apg","p":114,"h":1,"n":"Shared Assault"},{"c":0,"s":4,"id":3063,"u":"shared%20avoidance_apg","p":122,"h":1,"n":"Shared Avoidance"},{"c":0,"s":4,"id":3064,"u":"shared%20clarity_apg","p":123,"h":1,"n":"Shared Clarity"},{"c":0,"s":4,"id":3065,"u":"shared%20luck_apg","p":11,"h":1,"n":"Shared Luck"},{"c":0,"s":4,"id":3066,"u":"shared%20stratagem_apg","p":61,"h":1,"n":"Shared Stratagem"},{"c":0,"s":4,"id":3067,"u":"shattering%20blows_apg","p":111,"h":1,"n":"Shattering Blows"},{"c":0,"s":4,"id":3068,"u":"shattering%20strike_apg","p":199,"h":1,"n":"Shattering Strike"},{"c":0,"s":4,"id":3069,"u":"sheltering%20slab_apg","p":42,"h":1,"n":"Sheltering Slab"},{"c":0,"s":4,"id":3070,"u":"shield%20of%20faith_apg","p":122,"h":1,"n":"Shield Of Faith"},{"c":0,"s":4,"id":3071,"u":"shield%20salvation_apg","p":159,"h":1,"n":"Shield Salvation"},{"c":0,"s":4,"id":3072,"u":"shooting%20stars%20stance_apg","p":128,"h":1,"n":"Shooting Stars Stance"},{"c":0,"s":4,"id":3073,"u":"shove%20down_apg","p":135,"h":1,"n":"Shove Down"},{"c":0,"s":4,"id":3074,"u":"shoving%20sweep_apg","p":183,"h":1,"n":"Shoving Sweep"},{"c":0,"s":4,"id":3075,"u":"signature%20spell%20expansion_apg","p":140,"h":1,"n":"Signature Spell Expansion"},{"c":0,"s":4,"id":3076,"u":"silencing%20strike_apg","p":110,"h":1,"n":"Silencing Strike"},{"c":0,"s":4,"id":3077,"u":"siphon%20power_apg","p":105,"h":1,"n":"Siphon Power"},{"c":0,"s":4,"id":3078,"u":"skill%20mastery_apg","p":151,"h":1,"n":"Skill Mastery"},{"c":0,"s":4,"id":3079,"u":"skillful%20tail_apg","p":40,"h":1,"n":"Skillful Tail"},{"c":0,"s":4,"id":3080,"u":"skim%20scroll_apg","p":189,"h":1,"n":"Skim Scroll"},{"c":0,"s":4,"id":3081,"u":"skitter_apg","p":209,"h":1,"n":"Skitter"},{"c":0,"s":4,"id":3082,"u":"slag%20may_apg","p":31,"h":1,"n":"Slag May"},{"c":0,"s":4,"id":3083,"u":"smash%20from%20the%20air_apg","p":127,"h":1,"n":"Smash From The Air"},{"c":0,"s":4,"id":3084,"u":"smite%20good_apg","p":119,"h":1,"n":"Smite Good"},{"c":0,"s":4,"id":3085,"u":"snap%20out%20of%20it!_apg","p":180,"h":1,"n":"Snap Out Of It!"},{"c":0,"s":4,"id":3086,"u":"snare%20genius_apg","p":15,"h":1,"n":"Snare Genius"},{"c":0,"s":4,"id":3087,"u":"snare%20hopping_apg","p":132,"h":1,"n":"Snare Hopping"},{"c":0,"s":4,"id":3088,"u":"snare%20setter_apg","p":14,"h":1,"n":"Snare Setter"},{"c":0,"s":4,"id":3089,"u":"snarecrafter%20dedication_apg","p":194,"h":1,"n":"Snarecrafter Dedication"},{"c":0,"s":4,"id":3090,"u":"soaring%20flight_apg","p":27,"h":1,"n":"Soaring Flight"},{"c":0,"s":4,"id":3091,"u":"social%20purview_apg","p":196,"h":1,"n":"Social Purview"},{"c":0,"s":4,"id":3092,"u":"solid%20lead_apg","p":61,"h":1,"n":"Solid Lead"},{"c":0,"s":4,"id":3093,"u":"song%20of%20marching_apg","p":113,"h":1,"n":"Song Of Marching"},{"c":0,"s":4,"id":3094,"u":"song%20of%20strength_apg","p":112,"h":1,"n":"Song Of Strength"},{"c":0,"s":4,"id":3095,"u":"soothing%20mist_apg","p":132,"h":1,"n":"Soothing Mist"},{"c":0,"s":4,"id":3096,"u":"soulsight%20(bard)_apg","p":113,"a":"Bard","h":1,"n":"Soulsight"},{"c":0,"s":4,"id":3097,"u":"soulsight%20(sorcerer)_apg","p":139,"a":"Sorcerer","h":1,"n":"Soulsight"},{"c":0,"s":4,"id":3098,"u":"sow%20spell_apg","p":125,"h":1,"n":"Sow Spell"},{"c":0,"s":4,"id":3099,"u":"specialized%20beastmaster%20companion_apg","p":161,"h":1,"n":"Specialized Beastmaster Companion"},{"c":0,"s":4,"id":3100,"u":"specialized%20mount_apg","p":165,"h":1,"n":"Specialized Mount"},{"c":0,"s":4,"id":3101,"u":"speedy%20rituals_apg","p":187,"h":1,"n":"Speedy Rituals"},{"c":0,"s":4,"id":3102,"u":"spell%20devourer_apg","p":19,"h":1,"n":"Spell Devourer"},{"c":0,"s":4,"id":3103,"u":"spell%20mastery_apg","p":143,"h":1,"n":"Spell Mastery"},{"c":0,"s":4,"id":3104,"u":"spell%20relay_apg","p":139,"h":1,"n":"Spell Relay"},{"c":0,"s":4,"id":3105,"u":"spell%20shroud_apg","p":141,"h":1,"n":"Spell Shroud"},{"c":0,"s":4,"id":3106,"u":"spellbook%20prodigy_apg","p":142,"h":1,"n":"Spellbook Prodigy"},{"c":0,"s":4,"id":3107,"u":"spirit%20soother_apg","p":38,"h":1,"n":"Spirit Soother"},{"c":0,"s":4,"id":3108,"u":"spirit%20strikes_apg","p":38,"h":1,"n":"Spirit Strikes"},{"c":0,"s":4,"id":3109,"u":"spiritual%20guides_apg","p":109,"h":1,"n":"Spiritual Guides"},{"c":0,"s":4,"id":3110,"u":"spiritual%20sense_apg","p":79,"h":1,"n":"Spiritual Sense"},{"c":0,"s":4,"id":3111,"u":"split%20hex_apg","p":105,"h":1,"n":"Split Hex"},{"c":0,"s":4,"id":3112,"u":"split%20shot_apg","p":139,"h":1,"n":"Split Shot"},{"c":0,"s":4,"id":3113,"u":"split%20slot_apg","p":142,"h":1,"n":"Split Slot"},{"c":0,"s":4,"id":3114,"u":"spot%20translate_apg","p":178,"h":1,"n":"Spot Translate"},{"c":0,"s":4,"id":3115,"u":"springing%20leaper_apg","p":10,"h":1,"n":"Springing Leaper"},{"c":0,"s":4,"id":3116,"u":"squawk!_apg","p":26,"h":1,"n":"Squawk!"},{"c":0,"s":4,"id":3117,"u":"stage%20fighting_apg","p":175,"h":1,"n":"Stage Fighting"},{"c":0,"s":4,"id":3118,"u":"startling%20appearance_apg","p":197,"h":1,"n":"Startling Appearance"},{"c":0,"s":4,"id":3119,"u":"stay%20down!_apg","p":137,"h":1,"n":"Stay Down!"},{"c":0,"s":4,"id":3120,"u":"steady%20spellcasting%20(oracle)_apg","p":80,"a":"Oracle","h":1,"n":"Steady Spellcasting"},{"c":0,"s":4,"id":3121,"u":"steady%20spellcasting%20(witch)_apg","p":102,"a":"Witch","h":1,"n":"Steady Spellcasting"},{"c":0,"s":4,"id":3122,"u":"steal%20spell_apg","p":137,"h":1,"n":"Steal Spell"},{"c":0,"s":4,"id":3123,"u":"steel%20skin_apg","p":191,"h":1,"n":"Steel Skin"},{"c":0,"s":4,"id":3124,"u":"steel%20yourself!_apg","p":180,"h":1,"n":"Steel Yourself!"},{"c":0,"s":4,"id":3125,"u":"step%20lively_apg","p":46,"h":1,"n":"Step Lively"},{"c":0,"s":4,"id":3126,"u":"sticky%20poison_apg","p":107,"h":1,"n":"Sticky Poison"},{"c":0,"s":4,"id":3127,"u":"stone%20bones_apg","p":42,"h":1,"n":"Stone Bones"},{"c":0,"s":4,"id":3128,"u":"stonegate_apg","p":42,"h":1,"n":"Stonegate"},{"c":0,"s":4,"id":3129,"u":"storm's%20lash_apg","p":26,"h":1,"n":"Storm's Lash"},{"c":0,"s":4,"id":3130,"u":"strategic%20assessment_apg","p":62,"h":1,"n":"Strategic Assessment"},{"c":0,"s":4,"id":3131,"u":"strategic%20bypass_apg","p":65,"h":1,"n":"Strategic Bypass"},{"c":0,"s":4,"id":3132,"u":"straveika_apg","p":33,"h":1,"n":"Straveika"},{"c":0,"s":4,"id":3133,"u":"strong%20arm_apg","p":134,"h":1,"n":"Strong Arm"},{"c":0,"s":4,"id":3134,"u":"stubborn%20persistence_apg","p":47,"h":1,"n":"Stubborn Persistence"},{"c":0,"s":4,"id":3135,"u":"student%20of%20the%20dueling%20arts_apg","p":171,"h":1,"n":"Student Of The Dueling Arts"},{"c":0,"s":4,"id":3136,"u":"stumbling%20feint_apg","p":129,"h":1,"n":"Stumbling Feint"},{"c":0,"s":4,"id":3137,"u":"stumbling%20stance_apg","p":128,"h":1,"n":"Stumbling Stance"},{"c":0,"s":4,"id":3138,"u":"stunning%20appearance_apg","p":197,"h":1,"n":"Stunning Appearance"},{"c":0,"s":4,"id":3139,"u":"stunning%20finisher_apg","p":91,"h":1,"n":"Stunning Finisher"},{"c":0,"s":4,"id":3140,"u":"subjective%20truth_apg","p":197,"h":1,"n":"Subjective Truth"},{"c":0,"s":4,"id":3141,"u":"subtle%20delivery_apg","p":106,"h":1,"n":"Subtle Delivery"},{"c":0,"s":4,"id":3142,"u":"summon%20celestial%20kin_apg","p":36,"h":1,"n":"Summon Celestial Kin"},{"c":0,"s":4,"id":3143,"u":"summon%20fiendish%20kin_apg","p":41,"h":1,"n":"Summon Fiendish Kin"},{"c":0,"s":4,"id":3144,"u":"sunder%20enchantment_apg","p":111,"h":1,"n":"Sunder Enchantment"},{"c":0,"s":4,"id":3145,"u":"sunder%20spell_apg","p":111,"h":1,"n":"Sunder Spell"},{"c":0,"s":4,"id":3146,"u":"supernatural%20senses_apg","p":109,"h":1,"n":"Supernatural Senses"},{"c":0,"s":4,"id":3147,"u":"supertaster_apg","p":209,"h":1,"n":"Supertaster"},{"c":0,"s":4,"id":3148,"u":"sure%20foot_apg","p":177,"h":1,"n":"Sure Foot"},{"c":0,"s":4,"id":3149,"u":"surging%20focus_apg","p":122,"h":1,"n":"Surging Focus"},{"c":0,"s":4,"id":3150,"u":"surging%20might_apg","p":80,"h":1,"n":"Surging Might"},{"c":0,"s":4,"id":3151,"u":"surprise%20attack_apg","p":158,"h":1,"n":"Surprise Attack"},{"c":0,"s":4,"id":3152,"u":"surprise%20snare_apg","p":194,"h":1,"n":"Surprise Snare"},{"c":0,"s":4,"id":3153,"u":"surprise%20strike_apg","p":199,"h":1,"n":"Surprise Strike"},{"c":0,"s":4,"id":3154,"u":"suspect%20of%20opportunity_apg","p":63,"h":1,"n":"Suspect Of Opportunity"},{"c":0,"s":4,"id":3155,"u":"svetocher_apg","p":33,"h":1,"n":"Svetocher"},{"c":0,"s":4,"id":3156,"u":"swaggering%20initiative_apg","p":90,"h":1,"n":"Swaggering Initiative"},{"c":0,"s":4,"id":3157,"u":"swashbuckler%20dedication_apg","p":153,"h":1,"n":"Swashbuckler Dedication"},{"c":0,"s":4,"id":3158,"u":"swashbuckler's%20riposte_apg","p":153,"h":1,"n":"Swashbuckler's Riposte"},{"c":0,"s":4,"id":3159,"u":"swashbuckler's%20speed_apg","p":153,"h":1,"n":"Swashbuckler's Speed"},{"c":0,"s":4,"id":3160,"u":"swift%20elusion_apg","p":137,"h":1,"n":"Swift Elusion"},{"c":0,"s":4,"id":3161,"u":"symphony%20of%20blood_apg","p":33,"h":1,"n":"Symphony Of Blood"},{"c":0,"s":4,"id":3162,"u":"symphony%20of%20the%20unfettered%20heart_apg","p":114,"h":1,"n":"Symphony Of The Unfettered Heart"},{"c":0,"s":4,"id":3163,"u":"tactical%20cadence_apg","p":181,"h":1,"n":"Tactical Cadence"},{"c":0,"s":4,"id":3164,"u":"tactical%20entry_apg","p":136,"h":1,"n":"Tactical Entry"},{"c":0,"s":4,"id":3165,"u":"takedown%20expert_apg","p":60,"h":1,"n":"Takedown Expert"},{"c":0,"s":4,"id":3166,"u":"talisman%20dabbler%20dedication_apg","p":195,"h":1,"n":"Talisman Dabbler Dedication"},{"c":0,"s":4,"id":3167,"u":"talismanic%20sage_apg","p":195,"h":1,"n":"Talismanic Sage"},{"c":0,"s":4,"id":3168,"u":"tangle%20of%20battle_apg","p":111,"h":1,"n":"Tangle Of Battle"},{"c":0,"s":4,"id":3169,"u":"target%20of%20opportunity_apg","p":181,"h":1,"n":"Target Of Opportunity"},{"c":0,"s":4,"id":3170,"u":"targeting%20finisher_apg","p":92,"h":1,"n":"Targeting Finisher"},{"c":0,"s":4,"id":3171,"u":"telluric%20power_apg","p":42,"h":1,"n":"Telluric Power"},{"c":0,"s":4,"id":3172,"u":"temporary%20potions_apg","p":104,"h":1,"n":"Temporary Potions"},{"c":0,"s":4,"id":3173,"u":"tenacious%20toxins_apg","p":107,"h":1,"n":"Tenacious Toxins"},{"c":0,"s":4,"id":3174,"u":"tengu%20lore_apg","p":26,"h":1,"n":"Tengu Lore"},{"c":0,"s":4,"id":3175,"u":"tengu%20weapon%20expertise_apg","p":27,"h":1,"n":"Tengu Weapon Expertise"},{"c":0,"s":4,"id":3176,"u":"tengu%20weapon%20familiarity_apg","p":26,"h":1,"n":"Tengu Weapon Familiarity"},{"c":0,"s":4,"id":3177,"u":"tengu%20weapon%20study_apg","p":27,"h":1,"n":"Tengu Weapon Study"},{"c":0,"s":4,"id":3178,"u":"terraforming%20spell_apg","p":141,"h":1,"n":"Terraforming Spell"},{"c":0,"s":4,"id":3179,"u":"terrain%20scout_apg","p":188,"h":1,"n":"Terrain Scout"},{"c":0,"s":4,"id":3180,"u":"terrain%20transposition_apg","p":133,"h":1,"n":"Terrain Transposition"},{"c":0,"s":4,"id":3181,"u":"terrifying%20resistance_apg","p":209,"h":1,"n":"Terrifying Resistance"},{"c":0,"s":4,"id":3182,"u":"that's%20odd_apg","p":60,"h":1,"n":"That's Odd"},{"c":0,"s":4,"id":3183,"u":"the%20harder%20they%20fall_apg","p":135,"h":1,"n":"The Harder They Fall"},{"c":0,"s":4,"id":3184,"u":"thorough%20research_apg","p":63,"h":1,"n":"Thorough Research"},{"c":0,"s":4,"id":3185,"u":"thorough%20search_apg","p":209,"h":1,"n":"Thorough Search"},{"c":0,"s":4,"id":3186,"u":"through%20spell_apg","p":122,"h":1,"n":"Through Spell"},{"c":0,"s":4,"id":3187,"u":"tinkering%20fingers_apg","p":22,"h":1,"n":"Tinkering Fingers"},{"c":0,"s":4,"id":3188,"u":"to%20battle!_apg","p":181,"h":1,"n":"To Battle!"},{"c":0,"s":4,"id":3189,"u":"tools%20of%20the%20trade_apg","p":163,"h":1,"n":"Tools Of The Trade"},{"c":0,"s":4,"id":3190,"u":"topple%20foe_apg","p":181,"h":1,"n":"Topple Foe"},{"c":0,"s":4,"id":3191,"u":"toppling%20dance_apg","p":46,"h":1,"n":"Toppling Dance"},{"c":0,"s":4,"id":3192,"u":"trampling%20charge_apg","p":165,"h":1,"n":"Trampling Charge"},{"c":0,"s":4,"id":3193,"u":"trap%20finder_apg","p":60,"h":1,"n":"Trap Finder"},{"c":0,"s":4,"id":3194,"u":"treat%20condition_apg","p":184,"h":1,"n":"Treat Condition"},{"c":0,"s":4,"id":3195,"u":"tree%20climber_apg","p":43,"h":1,"n":"Tree Climber"},{"c":0,"s":4,"id":3196,"u":"triangle%20shot_apg","p":131,"h":1,"n":"Triangle Shot"},{"c":0,"s":4,"id":3197,"u":"trickster's%20ace_apg","p":65,"h":1,"n":"Trickster's Ace"},{"c":0,"s":4,"id":3198,"u":"triumphant%20inspiration_apg","p":114,"h":1,"n":"Triumphant Inspiration"},{"c":0,"s":4,"id":3199,"u":"true%20perception_apg","p":209,"h":1,"n":"True Perception"},{"c":0,"s":4,"id":3200,"u":"tumble%20behind%20(swashbuckler)_apg","p":89,"a":"Swashbuckler","h":1,"n":"Tumble Behind"},{"c":0,"s":4,"id":3201,"u":"tumble%20behind%20(rogue)_apg","p":134,"a":"Rogue","h":1,"n":"Tumble Behind"},{"c":0,"s":4,"id":3202,"u":"tumbling%20opportunist_apg","p":155,"h":1,"n":"Tumbling Opportunist"},{"c":0,"s":4,"id":3203,"u":"tumbling%20strike_apg","p":155,"h":1,"n":"Tumbling Strike"},{"c":0,"s":4,"id":3204,"u":"tusks_apg","p":18,"h":1,"n":"Tusks"},{"c":0,"s":4,"id":3205,"u":"twin%20distraction_apg","p":135,"h":1,"n":"Twin Distraction"},{"c":0,"s":4,"id":3206,"u":"twin%20parry%20(swashbuckler)_apg","p":90,"a":"Swashbuckler","h":1,"n":"Twin Parry"},{"c":0,"s":4,"id":3207,"u":"twinned%20defense%20(swashbuckler)_apg","p":93,"a":"Swashbuckler","h":1,"n":"Twinned Defense"},{"c":0,"s":4,"id":3208,"u":"twitchy_apg","p":45,"h":1,"n":"Twitchy"},{"c":0,"s":4,"id":3209,"u":"ultimate%20flexibility_apg","p":127,"h":1,"n":"Ultimate Flexibility"},{"c":0,"s":4,"id":3210,"u":"ultimate%20polymath_apg","p":115,"h":1,"n":"Ultimate Polymath"},{"c":0,"s":4,"id":3211,"u":"unbalancing%20finisher_apg","p":89,"h":1,"n":"Unbalancing Finisher"},{"c":0,"s":4,"id":3212,"u":"unbalancing%20sweep_apg","p":111,"h":1,"n":"Unbalancing Sweep"},{"c":0,"s":4,"id":3213,"u":"undead%20slayer_apg","p":33,"h":1,"n":"Undead Slayer"},{"c":0,"s":4,"id":3214,"u":"underground%20network_apg","p":209,"h":1,"n":"Underground Network"},{"c":0,"s":4,"id":3215,"u":"underhanded%20assault_apg","p":134,"h":1,"n":"Underhanded Assault"},{"c":0,"s":4,"id":3216,"u":"underworld%20investigator_apg","p":60,"h":1,"n":"Underworld Investigator"},{"c":0,"s":4,"id":3217,"u":"undying%20ferocity_apg","p":19,"h":1,"n":"Undying Ferocity"},{"c":0,"s":4,"id":3218,"u":"unhampered%20passage_apg","p":46,"h":1,"n":"Unhampered Passage"},{"c":0,"s":4,"id":3219,"u":"unseat_apg","p":165,"h":1,"n":"Unseat"},{"c":0,"s":4,"id":3220,"u":"unstable%20concoction_apg","p":107,"h":1,"n":"Unstable Concoction"},{"c":0,"s":4,"id":3221,"u":"unstoppable%20juggernaut_apg","p":111,"h":1,"n":"Unstoppable Juggernaut"},{"c":0,"s":4,"id":3222,"u":"vampire%20lore_apg","p":33,"h":1,"n":"Vampire Lore"},{"c":0,"s":4,"id":3223,"u":"vandal_apg","p":45,"h":1,"n":"Vandal"},{"c":0,"s":4,"id":3224,"u":"verdant%20weapon_apg","p":124,"h":1,"n":"Verdant Weapon"},{"c":0,"s":4,"id":3225,"u":"vexing%20tumble_apg","p":91,"h":1,"n":"Vexing Tumble"},{"c":0,"s":4,"id":3226,"u":"vicious%20incisors_apg","p":22,"h":1,"n":"Vicious Incisors"},{"c":0,"s":4,"id":3227,"u":"vicious%20vengeance_apg","p":118,"h":1,"n":"Vicious Vengeance"},{"c":0,"s":4,"id":3228,"u":"vigilante%20dedication_apg","p":196,"h":1,"n":"Vigilante Dedication"},{"c":0,"s":4,"id":3229,"u":"vigorous%20inspiration_apg","p":115,"h":1,"n":"Vigorous Inspiration"},{"c":0,"s":4,"id":3230,"u":"viking%20dedication_apg","p":198,"h":1,"n":"Viking Dedication"},{"c":0,"s":4,"id":3231,"u":"viking%20weapon%20familiarity_apg","p":198,"h":1,"n":"Viking Weapon Familiarity"},{"c":0,"s":4,"id":3232,"u":"viking%20weapon%20specialist_apg","p":198,"h":1,"n":"Viking Weapon Specialist"},{"c":0,"s":4,"id":3233,"u":"vile%20desecration_apg","p":122,"h":1,"n":"Vile Desecration"},{"c":0,"s":4,"id":3234,"u":"vision%20of%20weakness_apg","p":79,"h":1,"n":"Vision Of Weakness"},{"c":0,"s":4,"id":3235,"u":"vivacious%20bravado_apg","p":91,"h":1,"n":"Vivacious Bravado"},{"c":0,"s":4,"id":3236,"u":"voice%20of%20the%20night_apg","p":33,"h":1,"n":"Voice Of The Night"},{"c":0,"s":4,"id":3237,"u":"walk%20the%20plank_apg","p":185,"h":1,"n":"Walk The Plank"},{"c":0,"s":4,"id":3238,"u":"wandering%20oasis_apg","p":125,"h":1,"n":"Wandering Oasis"},{"c":0,"s":4,"id":3239,"u":"ward%20against%20corruption_apg","p":38,"h":1,"n":"Ward Against Corruption"},{"c":0,"s":4,"id":3240,"u":"warden's%20focus_apg","p":133,"h":1,"n":"Warden's Focus"},{"c":0,"s":4,"id":3241,"u":"warden's%20wellspring_apg","p":133,"h":1,"n":"Warden's Wellspring"},{"c":0,"s":4,"id":3242,"u":"warren%20digger_apg","p":23,"h":1,"n":"Warren Digger"},{"c":0,"s":4,"id":3243,"u":"warren%20navigator_apg","p":22,"h":1,"n":"Warren Navigator"},{"c":0,"s":4,"id":3244,"u":"wary%20skulker_apg","p":11,"h":1,"n":"Wary Skulker"},{"c":0,"s":4,"id":3245,"u":"watch%20your%20back_apg","p":135,"h":1,"n":"Watch Your Back"},{"c":0,"s":4,"id":3246,"u":"water%20sprint_apg","p":209,"h":1,"n":"Water Sprint"},{"c":0,"s":4,"id":3247,"u":"weapon%20improviser%20dedication_apg","p":199,"h":1,"n":"Weapon Improviser Dedication"},{"c":0,"s":4,"id":3248,"u":"well-groomed_apg","p":11,"h":1,"n":"Well-groomed"},{"c":0,"s":4,"id":3249,"u":"well-met%20traveler_apg","p":10,"h":1,"n":"Well-met Traveler"},{"c":0,"s":4,"id":3250,"u":"well-versed_apg","p":112,"h":1,"n":"Well-versed"},{"c":0,"s":4,"id":3251,"u":"whirling%20blade%20stance_apg","p":130,"h":1,"n":"Whirling Blade Stance"},{"c":0,"s":4,"id":3252,"u":"whodunnit%3f_apg","p":63,"h":1,"n":"Whodunnit?"},{"c":0,"s":4,"id":3253,"u":"widen%20spell%20(oracle)_apg","p":79,"a":"Oracle","h":1,"n":"Widen Spell"},{"c":0,"s":4,"id":3254,"u":"widen%20spell%20(witch)_apg","p":101,"a":"Witch","h":1,"n":"Widen Spell"},{"c":0,"s":4,"id":3255,"u":"wild%20strider_apg","p":177,"h":1,"n":"Wild Strider"},{"c":0,"s":4,"id":3256,"u":"wings%20of%20the%20dragon_apg","p":169,"h":1,"n":"Wings Of The Dragon"},{"c":0,"s":4,"id":3257,"u":"witch%20dedication_apg","p":154,"h":1,"n":"Witch Dedication"},{"c":0,"s":4,"id":3258,"u":"witch's%20bottle_apg","p":103,"h":1,"n":"Witch's Bottle"},{"c":0,"s":4,"id":3259,"u":"witch's%20charge_apg","p":102,"h":1,"n":"Witch's Charge"},{"c":0,"s":4,"id":3260,"u":"witch's%20communion_apg","p":104,"h":1,"n":"Witch's Communion"},{"c":0,"s":4,"id":3261,"u":"witch's%20hut_apg","p":105,"h":1,"n":"Witch's Hut"},{"c":0,"s":4,"id":3262,"u":"wortwitch_apg","p":101,"h":1,"n":"Wortwitch"},{"c":0,"s":4,"id":3263,"u":"you're%20next%20(swashbuckler)_apg","p":88,"a":"Swashbuckler","h":1,"n":"You're Next"},{"c":0,"s":5,"id":3264,"u":"abundant%20step_crb","p":160,"h":1,"n":"Abundant Step"},{"c":0,"s":5,"id":3265,"u":"acute%20scent_crb","p":88,"h":1,"n":"Acute Scent"},{"c":0,"s":5,"id":3266,"u":"acute%20vision_crb","p":88,"h":1,"n":"Acute Vision"},{"c":0,"s":5,"id":3267,"u":"adapted%20cantrip_crb","p":57,"h":1,"n":"Adapted Cantrip"},{"c":0,"s":5,"id":3268,"u":"adaptive%20adept_crb","p":57,"h":1,"n":"Adaptive Adept"},{"c":0,"s":5,"id":3269,"u":"additional%20lore_crb","p":258,"h":1,"n":"Additional Lore"},{"c":0,"s":5,"id":3270,"u":"adopted%20ancestry_crb","p":258,"h":1,"n":"Adopted Ancestry"},{"c":0,"s":5,"id":3271,"u":"advanced%20arcana_crb","p":231,"h":1,"n":"Advanced Arcana"},{"c":0,"s":5,"id":3272,"u":"advanced%20blood%20potency_crb","p":230,"h":1,"n":"Advanced Blood Potency"},{"c":0,"s":5,"id":3273,"u":"advanced%20bloodline_crb","p":200,"h":1,"n":"Advanced Bloodline"},{"c":0,"s":5,"id":3274,"u":"advanced%20concoction_crb","p":220,"h":1,"n":"Advanced Concoction"},{"c":0,"s":5,"id":3275,"u":"advanced%20deity's%20domain_crb","p":112,"h":1,"n":"Advanced Deity's Domain"},{"c":0,"s":5,"id":3276,"u":"advanced%20devotion_crb","p":223,"h":1,"n":"Advanced Devotion"},{"c":0,"s":5,"id":3277,"u":"advanced%20dogma_crb","p":224,"h":1,"n":"Advanced Dogma"},{"c":0,"s":5,"id":3278,"u":"advanced%20domain_crb","p":123,"h":1,"n":"Advanced Domain"},{"c":0,"s":5,"id":3279,"u":"advanced%20fury_crb","p":221,"h":1,"n":"Advanced Fury"},{"c":0,"s":5,"id":3280,"u":"advanced%20hunter's%20trick_crb","p":228,"h":1,"n":"Advanced Hunter's Trick"},{"c":0,"s":5,"id":3281,"u":"advanced%20kata_crb","p":227,"h":1,"n":"Advanced Kata"},{"c":0,"s":5,"id":3282,"u":"advanced%20maneuver_crb","p":226,"h":1,"n":"Advanced Maneuver"},{"c":0,"s":5,"id":3283,"u":"advanced%20muse's%20whispers_crb","p":222,"h":1,"n":"Advanced Muse's Whispers"},{"c":0,"s":5,"id":3284,"u":"advanced%20school%20spell_crb","p":211,"h":1,"n":"Advanced School Spell"},{"c":0,"s":5,"id":3285,"u":"advanced%20trickery_crb","p":229,"h":1,"n":"Advanced Trickery"},{"c":0,"s":5,"id":3286,"u":"advanced%20weapon%20training_crb","p":147,"h":1,"n":"Advanced Weapon Training"},{"c":0,"s":5,"id":3287,"u":"advanced%20wilding_crb","p":225,"h":1,"n":"Advanced Wilding"},{"c":0,"s":5,"id":3288,"u":"advantageous%20assault_crb","p":147,"h":1,"n":"Advantageous Assault"},{"c":0,"s":5,"id":3289,"u":"affliction%20mercy_crb","p":113,"h":1,"n":"Affliction Mercy"},{"c":0,"s":5,"id":3290,"u":"ageless%20patience_crb","p":40,"h":1,"n":"Ageless Patience"},{"c":0,"s":5,"id":3291,"u":"aggressive%20block_crb","p":145,"h":1,"n":"Aggressive Block"},{"c":0,"s":5,"id":3292,"u":"agile%20grace_crb","p":150,"h":1,"n":"Agile Grace"},{"c":0,"s":5,"id":3293,"u":"alchemical%20crafting_crb","p":258,"h":1,"n":"Alchemical Crafting"},{"c":0,"s":5,"id":3294,"u":"alchemical%20familiar_crb","p":76,"h":1,"n":"Alchemical Familiar"},{"c":0,"s":5,"id":3295,"u":"alchemical%20savant_crb","p":76,"h":1,"n":"Alchemical Savant"},{"c":0,"s":5,"id":3296,"u":"alchemist%20dedication_crb","p":220,"h":1,"n":"Alchemist Dedication"},{"c":0,"s":5,"id":3297,"u":"align%20armament_crb","p":124,"h":1,"n":"Align Armament"},{"c":0,"s":5,"id":3298,"u":"allegro_crb","p":103,"h":1,"n":"Allegro"},{"c":0,"s":5,"id":3299,"u":"ancestral%20longevity_crb","p":40,"h":1,"n":"Ancestral Longevity"},{"c":0,"s":5,"id":3300,"u":"ancestral%20paragon_crb","p":258,"h":1,"n":"Ancestral Paragon"},{"c":0,"s":5,"id":3301,"u":"anchoring%20aura_crb","p":114,"h":1,"n":"Anchoring Aura"},{"c":0,"s":5,"id":3302,"u":"animal%20accomplice_crb","p":44,"h":1,"n":"Animal Accomplice"},{"c":0,"s":5,"id":3303,"u":"animal%20companion%20(druid)_crb","p":133,"a":"Druid","h":1,"n":"Animal Companion"},{"c":0,"s":5,"id":3304,"u":"animal%20companion%20(ranger)_crb","p":170,"a":"Ranger","h":1,"n":"Animal Companion"},{"c":0,"s":5,"id":3305,"u":"animal%20elocutionist_crb","p":45,"h":1,"n":"Animal Elocutionist"},{"c":0,"s":5,"id":3306,"u":"animal%20rage_crb","p":91,"h":1,"n":"Animal Rage"},{"c":0,"s":5,"id":3307,"u":"animal%20skin_crb","p":90,"h":1,"n":"Animal Skin"},{"c":0,"s":5,"id":3308,"u":"arcane%20breadth_crb","p":231,"h":1,"n":"Arcane Breadth"},{"c":0,"s":5,"id":3309,"u":"arcane%20evolution_crb","p":199,"h":1,"n":"Arcane Evolution"},{"c":0,"s":5,"id":3310,"u":"arcane%20school%20spell_crb","p":231,"h":1,"n":"Arcane School Spell"},{"c":0,"s":5,"id":3311,"u":"arcane%20sense_crb","p":258,"h":1,"n":"Arcane Sense"},{"c":0,"s":5,"id":3312,"u":"archwizard's%20might_crb","p":213,"h":1,"n":"Archwizard's Might"},{"c":0,"s":5,"id":3313,"u":"armor%20proficiency_crb","p":258,"h":1,"n":"Armor Proficiency"},{"c":0,"s":5,"id":3314,"u":"arrow%20snatching_crb","p":162,"h":1,"n":"Arrow Snatching"},{"c":0,"s":5,"id":3315,"u":"assisting%20shot_crb","p":145,"h":1,"n":"Assisting Shot"},{"c":0,"s":5,"id":3316,"u":"assurance_crb","p":258,"h":1,"n":"Assurance"},{"c":0,"s":5,"id":3317,"u":"attack%20of%20opportunity%20(barbarian)_crb","p":90,"a":"Barbarian","h":1,"n":"Attack Of Opportunity"},{"c":0,"s":5,"id":3318,"u":"attack%20of%20opportunity%20(champion)_crb","p":111,"a":"Champion","h":1,"n":"Attack Of Opportunity"},{"c":0,"s":5,"id":3319,"u":"aura%20of%20courage_crb","p":111,"h":1,"n":"Aura Of Courage"},{"c":0,"s":5,"id":3320,"u":"aura%20of%20faith_crb","p":113,"h":1,"n":"Aura Of Faith"},{"c":0,"s":5,"id":3321,"u":"aura%20of%20life_crb","p":114,"h":1,"n":"Aura Of Life"},{"c":0,"s":5,"id":3322,"u":"aura%20of%20righteousness_crb","p":114,"h":1,"n":"Aura Of Righteousness"},{"c":0,"s":5,"id":3323,"u":"aura%20of%20vengeance_crb","p":114,"h":1,"n":"Aura Of Vengeance"},{"c":0,"s":5,"id":3324,"u":"auspicious%20mount_crb","p":115,"h":1,"n":"Auspicious Mount"},{"c":0,"s":5,"id":3325,"u":"automatic%20knowledge_crb","p":258,"h":1,"n":"Automatic Knowledge"},{"c":0,"s":5,"id":3326,"u":"avatar's%20audience_crb","p":127,"h":1,"n":"Avatar's Audience"},{"c":0,"s":5,"id":3327,"u":"awesome%20blow_crb","p":93,"h":1,"n":"Awesome Blow"},{"c":0,"s":5,"id":3328,"u":"barbarian%20dedication_crb","p":221,"h":1,"n":"Barbarian Dedication"},{"c":0,"s":5,"id":3329,"u":"barbarian%20resiliency_crb","p":221,"h":1,"n":"Barbarian Resiliency"},{"c":0,"s":5,"id":3330,"u":"bard%20dedication_crb","p":222,"h":1,"n":"Bard Dedication"},{"c":0,"s":5,"id":3331,"u":"bardic%20lore_crb","p":99,"h":1,"n":"Bardic Lore"},{"c":0,"s":5,"id":3332,"u":"bargain%20hunter_crb","p":258,"h":1,"n":"Bargain Hunter"},{"c":0,"s":5,"id":3333,"u":"basic%20arcana_crb","p":231,"h":1,"n":"Basic Arcana"},{"c":0,"s":5,"id":3334,"u":"basic%20bard%20spellcasting_crb","p":222,"h":1,"n":"Basic Bard Spellcasting"},{"c":0,"s":5,"id":3335,"u":"basic%20blood%20potency_crb","p":230,"h":1,"n":"Basic Blood Potency"},{"c":0,"s":5,"id":3336,"u":"basic%20bloodline%20spell_crb","p":230,"h":1,"n":"Basic Bloodline Spell"},{"c":0,"s":5,"id":3337,"u":"basic%20cleric%20spellcasting_crb","p":224,"h":1,"n":"Basic Cleric Spellcasting"},{"c":0,"s":5,"id":3338,"u":"basic%20concoction_crb","p":220,"h":1,"n":"Basic Concoction"},{"c":0,"s":5,"id":3339,"u":"basic%20devotion_crb","p":223,"h":1,"n":"Basic Devotion"},{"c":0,"s":5,"id":3340,"u":"basic%20dogma_crb","p":224,"h":1,"n":"Basic Dogma"},{"c":0,"s":5,"id":3341,"u":"basic%20druid%20spellcasting_crb","p":225,"h":1,"n":"Basic Druid Spellcasting"},{"c":0,"s":5,"id":3342,"u":"basic%20fury_crb","p":221,"h":1,"n":"Basic Fury"},{"c":0,"s":5,"id":3343,"u":"basic%20hunter's%20trick_crb","p":228,"h":1,"n":"Basic Hunter's Trick"},{"c":0,"s":5,"id":3344,"u":"basic%20kata_crb","p":227,"h":1,"n":"Basic Kata"},{"c":0,"s":5,"id":3345,"u":"basic%20maneuver_crb","p":226,"h":1,"n":"Basic Maneuver"},{"c":0,"s":5,"id":3346,"u":"basic%20muse's%20whispers_crb","p":222,"h":1,"n":"Basic Muse's Whispers"},{"c":0,"s":5,"id":3347,"u":"basic%20sorcerer%20spellcasting_crb","p":230,"h":1,"n":"Basic Sorcerer Spellcasting"},{"c":0,"s":5,"id":3348,"u":"basic%20trickery_crb","p":229,"h":1,"n":"Basic Trickery"},{"c":0,"s":5,"id":3349,"u":"basic%20wilding_crb","p":225,"h":1,"n":"Basic Wilding"},{"c":0,"s":5,"id":3350,"u":"basic%20wizard%20spellcasting_crb","p":231,"h":1,"n":"Basic Wizard Spellcasting"},{"c":0,"s":5,"id":3351,"u":"battle%20assessment_crb","p":184,"h":1,"n":"Battle Assessment"},{"c":0,"s":5,"id":3352,"u":"battle%20cry_crb","p":258,"h":1,"n":"Battle Cry"},{"c":0,"s":5,"id":3353,"u":"battle%20medicine_crb","p":258,"h":1,"n":"Battle Medicine"},{"c":0,"s":5,"id":3354,"u":"bespell%20weapon%20(sorcerer)_crb","p":199,"a":"Sorcerer","h":1,"n":"Bespell Weapon"},{"c":0,"s":5,"id":3355,"u":"bespell%20weapon%20(wizard)_crb","p":210,"a":"Wizard","h":1,"n":"Bespell Weapon"},{"c":0,"s":5,"id":3356,"u":"bizarre%20magic_crb","p":258,"h":1,"n":"Bizarre Magic"},{"c":0,"s":5,"id":3357,"u":"blade%20of%20justice_crb","p":113,"h":1,"n":"Blade Of Justice"},{"c":0,"s":5,"id":3358,"u":"blank%20slate_crb","p":188,"h":1,"n":"Blank Slate"},{"c":0,"s":5,"id":3359,"u":"blind-fight%20(fighter)_crb","p":149,"a":"Fighter","h":1,"n":"Blind-fight"},{"c":0,"s":5,"id":3360,"u":"blind-fight%20(ranger)_crb","p":173,"a":"Ranger","h":1,"n":"Blind-fight"},{"c":0,"s":5,"id":3361,"u":"blind-fight%20(rogue)_crb","p":186,"a":"Rogue","h":1,"n":"Blind-fight"},{"c":0,"s":5,"id":3362,"u":"bloodline%20breadth_crb","p":230,"h":1,"n":"Bloodline Breadth"},{"c":0,"s":5,"id":3363,"u":"bloodline%20conduit_crb","p":201,"h":1,"n":"Bloodline Conduit"},{"c":0,"s":5,"id":3364,"u":"bloodline%20focus_crb","p":201,"h":1,"n":"Bloodline Focus"},{"c":0,"s":5,"id":3365,"u":"bloodline%20perfection_crb","p":201,"h":1,"n":"Bloodline Perfection"},{"c":0,"s":5,"id":3366,"u":"bloodline%20resistance_crb","p":200,"h":1,"n":"Bloodline Resistance"},{"c":0,"s":5,"id":3367,"u":"bloodline%20wellspring_crb","p":201,"h":1,"n":"Bloodline Wellspring"},{"c":0,"s":5,"id":3368,"u":"bond%20conservation_crb","p":211,"h":1,"n":"Bond Conservation"},{"c":0,"s":5,"id":3369,"u":"bonded%20animal_crb","p":259,"h":1,"n":"Bonded Animal"},{"c":0,"s":5,"id":3370,"u":"bonded%20focus_crb","p":212,"h":1,"n":"Bonded Focus"},{"c":0,"s":5,"id":3371,"u":"boulder%20roll_crb","p":36,"h":1,"n":"Boulder Roll"},{"c":0,"s":5,"id":3372,"u":"boundless%20reprisals_crb","p":153,"h":1,"n":"Boundless Reprisals"},{"c":0,"s":5,"id":3373,"u":"brawling%20focus_crb","p":160,"h":1,"n":"Brawling Focus"},{"c":0,"s":5,"id":3374,"u":"breath%20control_crb","p":259,"h":1,"n":"Breath Control"},{"c":0,"s":5,"id":3375,"u":"brutal%20beating_crb","p":183,"h":1,"n":"Brutal Beating"},{"c":0,"s":5,"id":3376,"u":"brutal%20bully_crb","p":90,"h":1,"n":"Brutal Bully"},{"c":0,"s":5,"id":3377,"u":"brutal%20critical_crb","p":93,"h":1,"n":"Brutal Critical"},{"c":0,"s":5,"id":3378,"u":"brutal%20finish_crb","p":151,"h":1,"n":"Brutal Finish"},{"c":0,"s":5,"id":3379,"u":"brutish%20shove_crb","p":145,"h":1,"n":"Brutish Shove"},{"c":0,"s":5,"id":3380,"u":"burn%20it!_crb","p":48,"h":1,"n":"Burn It!"},{"c":0,"s":5,"id":3381,"u":"burrow%20elocutionist_crb","p":44,"h":1,"n":"Burrow Elocutionist"},{"c":0,"s":5,"id":3382,"u":"calculated%20splash_crb","p":77,"h":1,"n":"Calculated Splash"},{"c":0,"s":5,"id":3383,"u":"call%20of%20the%20wild_crb","p":134,"h":1,"n":"Call Of The Wild"},{"c":0,"s":5,"id":3384,"u":"camouflage_crb","p":174,"h":1,"n":"Camouflage"},{"c":0,"s":5,"id":3385,"u":"canny%20acumen_crb","p":259,"h":1,"n":"Canny Acumen"},{"c":0,"s":5,"id":3386,"u":"cantrip%20expansion%20(bard)_crb","p":100,"a":"Bard","h":1,"n":"Cantrip Expansion"},{"c":0,"s":5,"id":3387,"u":"cantrip%20expansion%20(cleric)_crb","p":122,"a":"Cleric","h":1,"n":"Cantrip Expansion"},{"c":0,"s":5,"id":3388,"u":"cantrip%20expansion%20(sorcerer)_crb","p":198,"a":"Sorcerer","h":1,"n":"Cantrip Expansion"},{"c":0,"s":5,"id":3389,"u":"cantrip%20expansion%20(wizard)_crb","p":210,"a":"Wizard","h":1,"n":"Cantrip Expansion"},{"c":0,"s":5,"id":3390,"u":"cast%20down_crb","p":123,"h":1,"n":"Cast Down"},{"c":0,"s":5,"id":3391,"u":"castigating%20weapon_crb","p":125,"h":1,"n":"Castigating Weapon"},{"c":0,"s":5,"id":3392,"u":"cat%20fall_crb","p":259,"h":1,"n":"Cat Fall"},{"c":0,"s":5,"id":3393,"u":"cave%20climber_crb","p":49,"h":1,"n":"Cave Climber"},{"c":0,"s":5,"id":3394,"u":"ceaseless%20shadows_crb","p":53,"h":1,"n":"Ceaseless Shadows"},{"c":0,"s":5,"id":3395,"u":"celestial%20form_crb","p":115,"h":1,"n":"Celestial Form"},{"c":0,"s":5,"id":3396,"u":"celestial%20mount_crb","p":115,"h":1,"n":"Celestial Mount"},{"c":0,"s":5,"id":3397,"u":"certain%20strike_crb","p":150,"h":1,"n":"Certain Strike"},{"c":0,"s":5,"id":3398,"u":"champion%20dedication_crb","p":223,"h":1,"n":"Champion Dedication"},{"c":0,"s":5,"id":3399,"u":"champion%20resiliency_crb","p":223,"h":1,"n":"Champion Resiliency"},{"c":0,"s":5,"id":3400,"u":"champion's%20reaction_crb","p":223,"h":1,"n":"Champion's Reaction"},{"c":0,"s":5,"id":3401,"u":"champion's%20sacrifice_crb","p":114,"h":1,"n":"Champion's Sacrifice"},{"c":0,"s":5,"id":3402,"u":"channel%20smite_crb","p":122,"h":1,"n":"Channel Smite"},{"c":0,"s":5,"id":3403,"u":"channeled%20succor_crb","p":124,"h":1,"n":"Channeled Succor"},{"c":0,"s":5,"id":3404,"u":"charming%20liar_crb","p":259,"h":1,"n":"Charming Liar"},{"c":0,"s":5,"id":3405,"u":"city%20scavenger_crb","p":48,"h":1,"n":"City Scavenger"},{"c":0,"s":5,"id":3406,"u":"cleave_crb","p":90,"h":1,"n":"Cleave"},{"c":0,"s":5,"id":3407,"u":"cleric%20dedication_crb","p":224,"h":1,"n":"Cleric Dedication"},{"c":0,"s":5,"id":3408,"u":"clever%20counterspell_crb","p":212,"h":1,"n":"Clever Counterspell"},{"c":0,"s":5,"id":3409,"u":"clever%20improviser_crb","p":57,"h":1,"n":"Clever Improviser"},{"c":0,"s":5,"id":3410,"u":"cloud%20jump_crb","p":260,"h":1,"n":"Cloud Jump"},{"c":0,"s":5,"id":3411,"u":"cloud%20step_crb","p":188,"h":1,"n":"Cloud Step"},{"c":0,"s":5,"id":3412,"u":"cognitive%20loophole_crb","p":188,"h":1,"n":"Cognitive Loophole"},{"c":0,"s":5,"id":3413,"u":"collateral%20thrash_crb","p":93,"h":1,"n":"Collateral Thrash"},{"c":0,"s":5,"id":3414,"u":"combat%20climber_crb","p":260,"h":1,"n":"Combat Climber"},{"c":0,"s":5,"id":3415,"u":"combat%20grab_crb","p":146,"h":1,"n":"Combat Grab"},{"c":0,"s":5,"id":3416,"u":"combat%20reflexes_crb","p":150,"h":1,"n":"Combat Reflexes"},{"c":0,"s":5,"id":3417,"u":"combine%20elixirs_crb","p":78,"h":1,"n":"Combine Elixirs"},{"c":0,"s":5,"id":3418,"u":"come%20and%20get%20me_crb","p":91,"h":1,"n":"Come And Get Me"},{"c":0,"s":5,"id":3419,"u":"command%20undead_crb","p":123,"h":1,"n":"Command Undead"},{"c":0,"s":5,"id":3420,"u":"communal%20healing_crb","p":122,"h":1,"n":"Communal Healing"},{"c":0,"s":5,"id":3421,"u":"companion's%20cry_crb","p":172,"h":1,"n":"Companion's Cry"},{"c":0,"s":5,"id":3422,"u":"conceal%20spell_crb","p":210,"h":1,"n":"Conceal Spell"},{"c":0,"s":5,"id":3423,"u":"confabulator_crb","p":260,"h":1,"n":"Confabulator"},{"c":0,"s":5,"id":3424,"u":"connections_crb","p":260,"h":1,"n":"Connections"},{"c":0,"s":5,"id":3425,"u":"contagious%20rage_crb","p":93,"h":1,"n":"Contagious Rage"},{"c":0,"s":5,"id":3426,"u":"continual%20recovery_crb","p":260,"h":1,"n":"Continual Recovery"},{"c":0,"s":5,"id":3427,"u":"cooperative%20nature_crb","p":57,"h":1,"n":"Cooperative Nature"},{"c":0,"s":5,"id":3428,"u":"cooperative%20soul_crb","p":57,"h":1,"n":"Cooperative Soul"},{"c":0,"s":5,"id":3429,"u":"counter%20perform_crb","p":222,"h":1,"n":"Counter Perform"},{"c":0,"s":5,"id":3430,"u":"counterspell%20(sorcerer)_crb","p":198,"a":"Sorcerer","h":1,"n":"Counterspell"},{"c":0,"s":5,"id":3431,"u":"counterspell%20(wizard)_crb","p":209,"a":"Wizard","h":1,"n":"Counterspell"},{"c":0,"s":5,"id":3432,"u":"courtly%20graces_crb","p":260,"h":1,"n":"Courtly Graces"},{"c":0,"s":5,"id":3433,"u":"craft%20anything_crb","p":260,"h":1,"n":"Craft Anything"},{"c":0,"s":5,"id":3434,"u":"craft%20philosopher's%20stone_crb","p":81,"h":1,"n":"Craft Philosopher's Stone"},{"c":0,"s":5,"id":3435,"u":"crane%20flutter_crb","p":161,"h":1,"n":"Crane Flutter"},{"c":0,"s":5,"id":3436,"u":"crane%20stance_crb","p":158,"h":1,"n":"Crane Stance"},{"c":0,"s":5,"id":3437,"u":"cremate%20undead_crb","p":124,"h":1,"n":"Cremate Undead"},{"c":0,"s":5,"id":3438,"u":"critical%20debilitation_crb","p":187,"h":1,"n":"Critical Debilitation"},{"c":0,"s":5,"id":3439,"u":"crossblooded%20evolution_crb","p":200,"h":1,"n":"Crossblooded Evolution"},{"c":0,"s":5,"id":3440,"u":"crossbow%20ace_crb","p":171,"h":1,"n":"Crossbow Ace"},{"c":0,"s":5,"id":3441,"u":"crushing%20grab_crb","p":160,"h":1,"n":"Crushing Grab"},{"c":0,"s":5,"id":3442,"u":"cultural%20adaptability_crb","p":53,"h":1,"n":"Cultural Adaptability"},{"c":0,"s":5,"id":3443,"u":"dancing%20leaf_crb","p":160,"h":1,"n":"Dancing Leaf"},{"c":0,"s":5,"id":3444,"u":"dangerous%20sorcery_crb","p":198,"h":1,"n":"Dangerous Sorcery"},{"c":0,"s":5,"id":3445,"u":"deadly%20aim_crb","p":174,"h":1,"n":"Deadly Aim"},{"c":0,"s":5,"id":3446,"u":"deadly%20simplicity_crb","p":121,"h":1,"n":"Deadly Simplicity"},{"c":0,"s":5,"id":3447,"u":"debilitating%20bomb_crb","p":78,"h":1,"n":"Debilitating Bomb"},{"c":0,"s":5,"id":3448,"u":"debilitating%20shot_crb","p":150,"h":1,"n":"Debilitating Shot"},{"c":0,"s":5,"id":3449,"u":"deep%20lore_crb","p":103,"h":1,"n":"Deep Lore"},{"c":0,"s":5,"id":3450,"u":"defensive%20recovery_crb","p":125,"h":1,"n":"Defensive Recovery"},{"c":0,"s":5,"id":3451,"u":"defensive%20roll_crb","p":187,"h":1,"n":"Defensive Roll"},{"c":0,"s":5,"id":3452,"u":"deflect%20arrow_crb","p":160,"h":1,"n":"Deflect Arrow"},{"c":0,"s":5,"id":3453,"u":"deity's%20domain_crb","p":109,"h":1,"n":"Deity's Domain"},{"c":0,"s":5,"id":3454,"u":"deity's%20protection_crb","p":125,"h":1,"n":"Deity's Protection"},{"c":0,"s":5,"id":3455,"u":"delay%20trap_crb","p":186,"h":1,"n":"Delay Trap"},{"c":0,"s":5,"id":3456,"u":"desperate%20finisher_crb","p":152,"h":1,"n":"Desperate Finisher"},{"c":0,"s":5,"id":3457,"u":"determination_crb","p":152,"h":1,"n":"Determination"},{"c":0,"s":5,"id":3458,"u":"devoted%20focus_crb","p":113,"h":1,"n":"Devoted Focus"},{"c":0,"s":5,"id":3459,"u":"diamond%20fists_crb","p":165,"h":1,"n":"Diamond Fists"},{"c":0,"s":5,"id":3460,"u":"diamond%20soul_crb","p":163,"h":1,"n":"Diamond Soul"},{"c":0,"s":5,"id":3461,"u":"diehard_crb","p":260,"h":1,"n":"Diehard"},{"c":0,"s":5,"id":3462,"u":"directed%20channel_crb","p":123,"h":1,"n":"Directed Channel"},{"c":0,"s":5,"id":3463,"u":"directional%20bombs_crb","p":78,"h":1,"n":"Directional Bombs"},{"c":0,"s":5,"id":3464,"u":"dirge%20of%20doom_crb","p":101,"h":1,"n":"Dirge Of Doom"},{"c":0,"s":5,"id":3465,"u":"disarming%20stance_crb","p":147,"h":1,"n":"Disarming Stance"},{"c":0,"s":5,"id":3466,"u":"disarming%20twist_crb","p":150,"h":1,"n":"Disarming Twist"},{"c":0,"s":5,"id":3467,"u":"dispelling%20slice_crb","p":189,"h":1,"n":"Dispelling Slice"},{"c":0,"s":5,"id":3468,"u":"disrupt%20ki_crb","p":163,"h":1,"n":"Disrupt Ki"},{"c":0,"s":5,"id":3469,"u":"disrupt%20prey_crb","p":172,"h":1,"n":"Disrupt Prey"},{"c":0,"s":5,"id":3470,"u":"disruptive%20stance_crb","p":150,"h":1,"n":"Disruptive Stance"},{"c":0,"s":5,"id":3471,"u":"distracting%20feint_crb","p":183,"h":1,"n":"Distracting Feint"},{"c":0,"s":5,"id":3472,"u":"distracting%20shadows_crb","p":52,"h":1,"n":"Distracting Shadows"},{"c":0,"s":5,"id":3473,"u":"distracting%20shot_crb","p":175,"h":1,"n":"Distracting Shot"},{"c":0,"s":5,"id":3474,"u":"diverse%20armor%20expert_crb","p":223,"h":1,"n":"Diverse Armor Expert"},{"c":0,"s":5,"id":3475,"u":"diverse%20weapon%20expert_crb","p":226,"h":1,"n":"Diverse Weapon Expert"},{"c":0,"s":5,"id":3476,"u":"divine%20ally_crb","p":223,"h":1,"n":"Divine Ally"},{"c":0,"s":5,"id":3477,"u":"divine%20breadth_crb","p":224,"h":1,"n":"Divine Breadth"},{"c":0,"s":5,"id":3478,"u":"divine%20evolution_crb","p":199,"h":1,"n":"Divine Evolution"},{"c":0,"s":5,"id":3479,"u":"divine%20grace_crb","p":110,"h":1,"n":"Divine Grace"},{"c":0,"s":5,"id":3480,"u":"divine%20guidance_crb","p":260,"h":1,"n":"Divine Guidance"},{"c":0,"s":5,"id":3481,"u":"divine%20health_crb","p":111,"h":1,"n":"Divine Health"},{"c":0,"s":5,"id":3482,"u":"divine%20reflexes_crb","p":115,"h":1,"n":"Divine Reflexes"},{"c":0,"s":5,"id":3483,"u":"divine%20wall_crb","p":114,"h":1,"n":"Divine Wall"},{"c":0,"s":5,"id":3484,"u":"divine%20weapon_crb","p":123,"h":1,"n":"Divine Weapon"},{"c":0,"s":5,"id":3485,"u":"domain%20focus_crb","p":125,"h":1,"n":"Domain Focus"},{"c":0,"s":5,"id":3486,"u":"domain%20initiate_crb","p":121,"h":1,"n":"Domain Initiate"},{"c":0,"s":5,"id":3487,"u":"domain%20wellspring_crb","p":126,"h":1,"n":"Domain Wellspring"},{"c":0,"s":5,"id":3488,"u":"double%20prey_crb","p":175,"h":1,"n":"Double Prey"},{"c":0,"s":5,"id":3489,"u":"double%20shot_crb","p":146,"h":1,"n":"Double Shot"},{"c":0,"s":5,"id":3490,"u":"double%20slice_crb","p":144,"h":1,"n":"Double Slice"},{"c":0,"s":5,"id":3491,"u":"dragon%20roar_crb","p":161,"h":1,"n":"Dragon Roar"},{"c":0,"s":5,"id":3492,"u":"dragon%20shape_crb","p":138,"h":1,"n":"Dragon Shape"},{"c":0,"s":5,"id":3493,"u":"dragon%20stance_crb","p":158,"h":1,"n":"Dragon Stance"},{"c":0,"s":5,"id":3494,"u":"dragon%20transformation_crb","p":93,"h":1,"n":"Dragon Transformation"},{"c":0,"s":5,"id":3495,"u":"dragon's%20rage%20breath_crb","p":90,"h":1,"n":"Dragon's Rage Breath"},{"c":0,"s":5,"id":3496,"u":"dragon's%20rage%20wings_crb","p":92,"h":1,"n":"Dragon's Rage Wings"},{"c":0,"s":5,"id":3497,"u":"dragonslayer%20oath_crb","p":110,"h":1,"n":"Dragonslayer Oath"},{"c":0,"s":5,"id":3498,"u":"dread%20striker_crb","p":184,"h":1,"n":"Dread Striker"},{"c":0,"s":5,"id":3499,"u":"druid%20dedication_crb","p":225,"h":1,"n":"Druid Dedication"},{"c":0,"s":5,"id":3500,"u":"dual-handed%20assault_crb","p":146,"h":1,"n":"Dual-handed Assault"},{"c":0,"s":5,"id":3501,"u":"dubious%20knowledge_crb","p":260,"h":1,"n":"Dubious Knowledge"},{"c":0,"s":5,"id":3502,"u":"dueling%20dance_crb","p":151,"h":1,"n":"Dueling Dance"},{"c":0,"s":5,"id":3503,"u":"dueling%20parry_crb","p":146,"h":1,"n":"Dueling Parry"},{"c":0,"s":5,"id":3504,"u":"dueling%20riposte_crb","p":149,"h":1,"n":"Dueling Riposte"},{"c":0,"s":5,"id":3505,"u":"dwarven%20lore_crb","p":36,"h":1,"n":"Dwarven Lore"},{"c":0,"s":5,"id":3506,"u":"dwarven%20weapon%20cunning_crb","p":37,"h":1,"n":"Dwarven Weapon Cunning"},{"c":0,"s":5,"id":3507,"u":"dwarven%20weapon%20expertise_crb","p":37,"h":1,"n":"Dwarven Weapon Expertise"},{"c":0,"s":5,"id":3508,"u":"dwarven%20weapon%20familiarity_crb","p":36,"h":1,"n":"Dwarven Weapon Familiarity"},{"c":0,"s":5,"id":3509,"u":"echoing%20channel_crb","p":127,"h":1,"n":"Echoing Channel"},{"c":0,"s":5,"id":3510,"u":"eclectic%20polymath_crb","p":102,"h":1,"n":"Eclectic Polymath"},{"c":0,"s":5,"id":3511,"u":"eclectic%20skill_crb","p":101,"h":1,"n":"Eclectic Skill"},{"c":0,"s":5,"id":3512,"u":"efficient%20alchemy_crb","p":77,"h":1,"n":"Efficient Alchemy"},{"c":0,"s":5,"id":3513,"u":"effortless%20concentration%20(bard)_crb","p":103,"a":"Bard","h":1,"n":"Effortless Concentration"},{"c":0,"s":5,"id":3514,"u":"effortless%20concentration%20(druid)_crb","p":139,"a":"Druid","h":1,"n":"Effortless Concentration"},{"c":0,"s":5,"id":3515,"u":"effortless%20concentration%20(sorcerer)_crb","p":201,"a":"Sorcerer","h":1,"n":"Effortless Concentration"},{"c":0,"s":5,"id":3516,"u":"effortless%20concentration%20(wizard)_crb","p":213,"a":"Wizard","h":1,"n":"Effortless Concentration"},{"c":0,"s":5,"id":3517,"u":"elastic%20mutagen_crb","p":79,"h":1,"n":"Elastic Mutagen"},{"c":0,"s":5,"id":3518,"u":"elemental%20fist_crb","p":160,"h":1,"n":"Elemental Fist"},{"c":0,"s":5,"id":3519,"u":"elemental%20shape_crb","p":137,"h":1,"n":"Elemental Shape"},{"c":0,"s":5,"id":3520,"u":"elf%20atavism_crb","p":58,"h":1,"n":"Elf Atavism"},{"c":0,"s":5,"id":3521,"u":"elf%20step_crb","p":41,"h":1,"n":"Elf Step"},{"c":0,"s":5,"id":3522,"u":"elven%20lore_crb","p":40,"h":1,"n":"Elven Lore"},{"c":0,"s":5,"id":3523,"u":"elven%20weapon%20elegance_crb","p":41,"h":1,"n":"Elven Weapon Elegance"},{"c":0,"s":5,"id":3524,"u":"elven%20weapon%20expertise_crb","p":41,"h":1,"n":"Elven Weapon Expertise"},{"c":0,"s":5,"id":3525,"u":"elven%20weapon%20familiarity_crb","p":40,"h":1,"n":"Elven Weapon Familiarity"},{"c":0,"s":5,"id":3526,"u":"emblazon%20antimagic_crb","p":125,"h":1,"n":"Emblazon Antimagic"},{"c":0,"s":5,"id":3527,"u":"emblazon%20armament_crb","p":122,"h":1,"n":"Emblazon Armament"},{"c":0,"s":5,"id":3528,"u":"emblazon%20energy_crb","p":124,"h":1,"n":"Emblazon Energy"},{"c":0,"s":5,"id":3529,"u":"empty%20body_crb","p":165,"h":1,"n":"Empty Body"},{"c":0,"s":5,"id":3530,"u":"enduring%20alchemy_crb","p":78,"h":1,"n":"Enduring Alchemy"},{"c":0,"s":5,"id":3531,"u":"enduring%20quickness_crb","p":165,"h":1,"n":"Enduring Quickness"},{"c":0,"s":5,"id":3532,"u":"energized%20font_crb","p":45,"h":1,"n":"Energized Font"},{"c":0,"s":5,"id":3533,"u":"enhanced%20familiar%20(druid)_crb","p":134,"a":"Druid","h":1,"n":"Enhanced Familiar"},{"c":0,"s":5,"id":3534,"u":"enhanced%20familiar%20(sorcerer)_crb","p":198,"a":"Sorcerer","h":1,"n":"Enhanced Familiar"},{"c":0,"s":5,"id":3535,"u":"enhanced%20familiar%20(wizard)_crb","p":210,"a":"Wizard","h":1,"n":"Enhanced Familiar"},{"c":0,"s":5,"id":3536,"u":"enlightened%20presence_crb","p":165,"h":1,"n":"Enlightened Presence"},{"c":0,"s":5,"id":3537,"u":"eschew%20materials_crb","p":209,"h":1,"n":"Eschew Materials"},{"c":0,"s":5,"id":3538,"u":"esoteric%20polymath_crb","p":100,"h":1,"n":"Esoteric Polymath"},{"c":0,"s":5,"id":3539,"u":"eternal%20bane_crb","p":126,"h":1,"n":"Eternal Bane"},{"c":0,"s":5,"id":3540,"u":"eternal%20blessing_crb","p":126,"h":1,"n":"Eternal Blessing"},{"c":0,"s":5,"id":3541,"u":"eternal%20composition_crb","p":103,"h":1,"n":"Eternal Composition"},{"c":0,"s":5,"id":3542,"u":"eternal%20elixir_crb","p":80,"h":1,"n":"Eternal Elixir"},{"c":0,"s":5,"id":3543,"u":"evasiveness_crb","p":229,"h":1,"n":"Evasiveness"},{"c":0,"s":5,"id":3544,"u":"exacting%20strike_crb","p":144,"h":1,"n":"Exacting Strike"},{"c":0,"s":5,"id":3545,"u":"expanded%20splash_crb","p":79,"h":1,"n":"Expanded Splash"},{"c":0,"s":5,"id":3546,"u":"expeditious%20search_crb","p":260,"h":1,"n":"Expeditious Search"},{"c":0,"s":5,"id":3547,"u":"experienced%20professional_crb","p":261,"h":1,"n":"Experienced Professional"},{"c":0,"s":5,"id":3548,"u":"experienced%20smuggler_crb","p":261,"h":1,"n":"Experienced Smuggler"},{"c":0,"s":5,"id":3549,"u":"experienced%20tracker_crb","p":261,"h":1,"n":"Experienced Tracker"},{"c":0,"s":5,"id":3550,"u":"expert%20alchemy_crb","p":220,"h":1,"n":"Expert Alchemy"},{"c":0,"s":5,"id":3551,"u":"expert%20bard%20spellcasting_crb","p":222,"h":1,"n":"Expert Bard Spellcasting"},{"c":0,"s":5,"id":3552,"u":"expert%20cleric%20spellcasting_crb","p":224,"h":1,"n":"Expert Cleric Spellcasting"},{"c":0,"s":5,"id":3553,"u":"expert%20druid%20spellcasting_crb","p":225,"h":1,"n":"Expert Druid Spellcasting"},{"c":0,"s":5,"id":3554,"u":"expert%20longevity_crb","p":41,"h":1,"n":"Expert Longevity"},{"c":0,"s":5,"id":3555,"u":"expert%20sorcerer%20spellcasting_crb","p":230,"h":1,"n":"Expert Sorcerer Spellcasting"},{"c":0,"s":5,"id":3556,"u":"expert%20wizard%20spellcasting_crb","p":231,"h":1,"n":"Expert Wizard Spellcasting"},{"c":0,"s":5,"id":3557,"u":"exploitive%20bomb_crb","p":80,"h":1,"n":"Exploitive Bomb"},{"c":0,"s":5,"id":3558,"u":"extend%20armament%20alignment_crb","p":125,"h":1,"n":"Extend Armament Alignment"},{"c":0,"s":5,"id":3559,"u":"extend%20elixir_crb","p":79,"h":1,"n":"Extend Elixir"},{"c":0,"s":5,"id":3560,"u":"familiar%20(sorcerer)_crb","p":198,"a":"Sorcerer","h":1,"n":"Familiar"},{"c":0,"s":5,"id":3561,"u":"familiar%20(wizard)_crb","p":209,"a":"Wizard","h":1,"n":"Familiar"},{"c":0,"s":5,"id":3562,"u":"fantastic%20leap_crb","p":187,"h":1,"n":"Fantastic Leap"},{"c":0,"s":5,"id":3563,"u":"far%20lobber_crb","p":76,"h":1,"n":"Far Lobber"},{"c":0,"s":5,"id":3564,"u":"far%20shot_crb","p":172,"h":1,"n":"Far Shot"},{"c":0,"s":5,"id":3565,"u":"fascinating%20performance_crb","p":261,"h":1,"n":"Fascinating Performance"},{"c":0,"s":5,"id":3566,"u":"fast%20channel_crb","p":125,"h":1,"n":"Fast Channel"},{"c":0,"s":5,"id":3567,"u":"fast%20movement_crb","p":89,"h":1,"n":"Fast Movement"},{"c":0,"s":5,"id":3568,"u":"fast%20recovery_crb","p":261,"h":1,"n":"Fast Recovery"},{"c":0,"s":5,"id":3569,"u":"fatal%20aria_crb","p":103,"h":1,"n":"Fatal Aria"},{"c":0,"s":5,"id":3570,"u":"favored%20enemy_crb","p":172,"h":1,"n":"Favored Enemy"},{"c":0,"s":5,"id":3571,"u":"favored%20terrain_crb","p":171,"h":1,"n":"Favored Terrain"},{"c":0,"s":5,"id":3572,"u":"fearsome%20brute_crb","p":151,"h":1,"n":"Fearsome Brute"},{"c":0,"s":5,"id":3573,"u":"feather%20step_crb","p":261,"h":1,"n":"Feather Step"},{"c":0,"s":5,"id":3574,"u":"felling%20shot_crb","p":187,"h":1,"n":"Felling Shot"},{"c":0,"s":5,"id":3575,"u":"felling%20strike_crb","p":149,"h":1,"n":"Felling Strike"},{"c":0,"s":5,"id":3576,"u":"feral%20mutagen_crb","p":79,"h":1,"n":"Feral Mutagen"},{"c":0,"s":5,"id":3577,"u":"ferocious%20shape_crb","p":136,"h":1,"n":"Ferocious Shape"},{"c":0,"s":5,"id":3578,"u":"fey%20caller_crb","p":136,"h":1,"n":"Fey Caller"},{"c":0,"s":5,"id":3579,"u":"fey%20fellowship_crb","p":44,"h":1,"n":"Fey Fellowship"},{"c":0,"s":5,"id":3580,"u":"fiendsbane%20oath_crb","p":110,"h":1,"n":"Fiendsbane Oath"},{"c":0,"s":5,"id":3581,"u":"fighter%20dedication_crb","p":226,"h":1,"n":"Fighter Dedication"},{"c":0,"s":5,"id":3582,"u":"fighter%20resiliency_crb","p":226,"h":1,"n":"Fighter Resiliency"},{"c":0,"s":5,"id":3583,"u":"first%20world%20adept_crb","p":45,"h":1,"n":"First World Adept"},{"c":0,"s":5,"id":3584,"u":"first%20world%20magic_crb","p":44,"h":1,"n":"First World Magic"},{"c":0,"s":5,"id":3585,"u":"fleet_crb","p":261,"h":1,"n":"Fleet"},{"c":0,"s":5,"id":3586,"u":"flinging%20shove_crb","p":151,"h":1,"n":"Flinging Shove"},{"c":0,"s":5,"id":3587,"u":"flurry%20of%20maneuvers_crb","p":160,"h":1,"n":"Flurry Of Maneuvers"},{"c":0,"s":5,"id":3588,"u":"flying%20kick_crb","p":160,"h":1,"n":"Flying Kick"},{"c":0,"s":5,"id":3589,"u":"foil%20senses_crb","p":261,"h":1,"n":"Foil Senses"},{"c":0,"s":5,"id":3590,"u":"forager_crb","p":261,"h":1,"n":"Forager"},{"c":0,"s":5,"id":3591,"u":"forlorn_crb","p":40,"h":1,"n":"Forlorn"},{"c":0,"s":5,"id":3592,"u":"form%20control_crb","p":135,"h":1,"n":"Form Control"},{"c":0,"s":5,"id":3593,"u":"furious%20bully_crb","p":91,"h":1,"n":"Furious Bully"},{"c":0,"s":5,"id":3594,"u":"furious%20finish_crb","p":89,"h":1,"n":"Furious Finish"},{"c":0,"s":5,"id":3595,"u":"furious%20focus_crb","p":148,"h":1,"n":"Furious Focus"},{"c":0,"s":5,"id":3596,"u":"furious%20grab_crb","p":92,"h":1,"n":"Furious Grab"},{"c":0,"s":5,"id":3597,"u":"furious%20sprint_crb","p":91,"h":1,"n":"Furious Sprint"},{"c":0,"s":5,"id":3598,"u":"fuse%20stance_crb","p":165,"h":1,"n":"Fuse Stance"},{"c":0,"s":5,"id":3599,"u":"gang%20up_crb","p":186,"h":1,"n":"Gang Up"},{"c":0,"s":5,"id":3600,"u":"general%20training_crb","p":57,"h":1,"n":"General Training"},{"c":0,"s":5,"id":3601,"u":"genius%20mutagen_crb","p":81,"h":1,"n":"Genius Mutagen"},{"c":0,"s":5,"id":3602,"u":"giant's%20lunge_crb","p":93,"h":1,"n":"Giant's Lunge"},{"c":0,"s":5,"id":3603,"u":"giant's%20stature_crb","p":91,"h":1,"n":"Giant's Stature"},{"c":0,"s":5,"id":3604,"u":"glad-hand_crb","p":261,"h":1,"n":"Glad-hand"},{"c":0,"s":5,"id":3605,"u":"glib%20mutagen_crb","p":80,"h":1,"n":"Glib Mutagen"},{"c":0,"s":5,"id":3606,"u":"gnome%20obsession_crb","p":44,"h":1,"n":"Gnome Obsession"},{"c":0,"s":5,"id":3607,"u":"gnome%20weapon%20expertise_crb","p":45,"h":1,"n":"Gnome Weapon Expertise"},{"c":0,"s":5,"id":3608,"u":"gnome%20weapon%20familiarity_crb","p":44,"h":1,"n":"Gnome Weapon Familiarity"},{"c":0,"s":5,"id":3609,"u":"gnome%20weapon%20innovator_crb","p":45,"h":1,"n":"Gnome Weapon Innovator"},{"c":0,"s":5,"id":3610,"u":"goblin%20lore_crb","p":48,"h":1,"n":"Goblin Lore"},{"c":0,"s":5,"id":3611,"u":"goblin%20scuttle_crb","p":48,"h":1,"n":"Goblin Scuttle"},{"c":0,"s":5,"id":3612,"u":"goblin%20song_crb","p":48,"h":1,"n":"Goblin Song"},{"c":0,"s":5,"id":3613,"u":"goblin%20weapon%20expertise_crb","p":49,"h":1,"n":"Goblin Weapon Expertise"},{"c":0,"s":5,"id":3614,"u":"goblin%20weapon%20familiarity_crb","p":48,"h":1,"n":"Goblin Weapon Familiarity"},{"c":0,"s":5,"id":3615,"u":"goblin%20weapon%20frenzy_crb","p":49,"h":1,"n":"Goblin Weapon Frenzy"},{"c":0,"s":5,"id":3616,"u":"graceful%20poise_crb","p":153,"h":1,"n":"Graceful Poise"},{"c":0,"s":5,"id":3617,"u":"great%20cleave_crb","p":91,"h":1,"n":"Great Cleave"},{"c":0,"s":5,"id":3618,"u":"greater%20bloodline_crb","p":200,"h":1,"n":"Greater Bloodline"},{"c":0,"s":5,"id":3619,"u":"greater%20crossblooded%20evolution_crb","p":201,"h":1,"n":"Greater Crossblooded Evolution"},{"c":0,"s":5,"id":3620,"u":"greater%20debilitating%20bomb_crb","p":79,"h":1,"n":"Greater Debilitating Bomb"},{"c":0,"s":5,"id":3621,"u":"greater%20distracting%20shot_crb","p":176,"h":1,"n":"Greater Distracting Shot"},{"c":0,"s":5,"id":3622,"u":"greater%20mental%20evolution_crb","p":201,"h":1,"n":"Greater Mental Evolution"},{"c":0,"s":5,"id":3623,"u":"greater%20merciful%20elixir_crb","p":80,"h":1,"n":"Greater Merciful Elixir"},{"c":0,"s":5,"id":3624,"u":"greater%20mercy_crb","p":112,"h":1,"n":"Greater Mercy"},{"c":0,"s":5,"id":3625,"u":"greater%20vital%20evolution_crb","p":201,"h":1,"n":"Greater Vital Evolution"},{"c":0,"s":5,"id":3626,"u":"green%20empathy_crb","p":136,"h":1,"n":"Green Empathy"},{"c":0,"s":5,"id":3627,"u":"green%20tongue_crb","p":138,"h":1,"n":"Green Tongue"},{"c":0,"s":5,"id":3628,"u":"group%20coercion_crb","p":262,"h":1,"n":"Group Coercion"},{"c":0,"s":5,"id":3629,"u":"group%20impression_crb","p":262,"h":1,"n":"Group Impression"},{"c":0,"s":5,"id":3630,"u":"guarded%20movement_crb","p":160,"h":1,"n":"Guarded Movement"},{"c":0,"s":5,"id":3631,"u":"guardian's%20deflection_crb","p":148,"h":1,"n":"Guardian's Deflection"},{"c":0,"s":5,"id":3632,"u":"guiding%20finish_crb","p":152,"h":1,"n":"Guiding Finish"},{"c":0,"s":5,"id":3633,"u":"guiding%20luck_crb","p":53,"h":1,"n":"Guiding Luck"},{"c":0,"s":5,"id":3634,"u":"guiding%20riposte_crb","p":153,"h":1,"n":"Guiding Riposte"},{"c":0,"s":5,"id":3635,"u":"halfling%20lore_crb","p":52,"h":1,"n":"Halfling Lore"},{"c":0,"s":5,"id":3636,"u":"halfling%20luck_crb","p":52,"h":1,"n":"Halfling Luck"},{"c":0,"s":5,"id":3637,"u":"halfling%20weapon%20expertise_crb","p":53,"h":1,"n":"Halfling Weapon Expertise"},{"c":0,"s":5,"id":3638,"u":"halfling%20weapon%20familiarity_crb","p":52,"h":1,"n":"Halfling Weapon Familiarity"},{"c":0,"s":5,"id":3639,"u":"halfling%20weapon%20trickster_crb","p":53,"h":1,"n":"Halfling Weapon Trickster"},{"c":0,"s":5,"id":3640,"u":"hand%20of%20the%20apprentice_crb","p":209,"h":1,"n":"Hand Of The Apprentice"},{"c":0,"s":5,"id":3641,"u":"harming%20hands_crb","p":121,"h":1,"n":"Harming Hands"},{"c":0,"s":5,"id":3642,"u":"harmonize_crb","p":101,"h":1,"n":"Harmonize"},{"c":0,"s":5,"id":3643,"u":"haughty%20obstinacy_crb","p":57,"h":1,"n":"Haughty Obstinacy"},{"c":0,"s":5,"id":3644,"u":"hazard%20finder_crb","p":174,"h":1,"n":"Hazard Finder"},{"c":0,"s":5,"id":3645,"u":"heal%20mount_crb","p":113,"h":1,"n":"Heal Mount"},{"c":0,"s":5,"id":3646,"u":"healing%20hands_crb","p":121,"h":1,"n":"Healing Hands"},{"c":0,"s":5,"id":3647,"u":"healing%20touch_crb","p":223,"h":1,"n":"Healing Touch"},{"c":0,"s":5,"id":3648,"u":"healing%20transformation_crb","p":137,"h":1,"n":"Healing Transformation"},{"c":0,"s":5,"id":3649,"u":"hefty%20hauler_crb","p":262,"h":1,"n":"Hefty Hauler"},{"c":0,"s":5,"id":3650,"u":"heroic%20recovery_crb","p":125,"h":1,"n":"Heroic Recovery"},{"c":0,"s":5,"id":3651,"u":"hidden%20paragon_crb","p":189,"h":1,"n":"Hidden Paragon"},{"c":0,"s":5,"id":3652,"u":"hierophant's%20power_crb","p":139,"h":1,"n":"Hierophant's Power"},{"c":0,"s":5,"id":3653,"u":"hobnobber_crb","p":262,"h":1,"n":"Hobnobber"},{"c":0,"s":5,"id":3654,"u":"holy%20castigation_crb","p":121,"h":1,"n":"Holy Castigation"},{"c":0,"s":5,"id":3655,"u":"house%20of%20imaginary%20walls_crb","p":102,"h":1,"n":"House Of Imaginary Walls"},{"c":0,"s":5,"id":3656,"u":"hunted%20shot_crb","p":171,"h":1,"n":"Hunted Shot"},{"c":0,"s":5,"id":3657,"u":"hunter's%20aim_crb","p":172,"h":1,"n":"Hunter's Aim"},{"c":0,"s":5,"id":3658,"u":"illusion%20sense_crb","p":44,"h":1,"n":"Illusion Sense"},{"c":0,"s":5,"id":3659,"u":"impaling%20briars_crb","p":139,"h":1,"n":"Impaling Briars"},{"c":0,"s":5,"id":3660,"u":"impeccable%20crafting_crb","p":262,"h":1,"n":"Impeccable Crafting"},{"c":0,"s":5,"id":3661,"u":"implausible%20infiltration_crb","p":189,"h":1,"n":"Implausible Infiltration"},{"c":0,"s":5,"id":3662,"u":"imposing%20destrier_crb","p":113,"h":1,"n":"Imposing Destrier"},{"c":0,"s":5,"id":3663,"u":"impossible%20flurry_crb","p":177,"h":1,"n":"Impossible Flurry"},{"c":0,"s":5,"id":3664,"u":"impossible%20polymath_crb","p":103,"h":1,"n":"Impossible Polymath"},{"c":0,"s":5,"id":3665,"u":"impossible%20striker_crb","p":189,"h":1,"n":"Impossible Striker"},{"c":0,"s":5,"id":3666,"u":"impossible%20technique_crb","p":165,"h":1,"n":"Impossible Technique"},{"c":0,"s":5,"id":3667,"u":"impossible%20volley%20(fighter)_crb","p":153,"a":"Fighter","h":1,"n":"Impossible Volley"},{"c":0,"s":5,"id":3668,"u":"impossible%20volley%20(ranger)_crb","p":177,"a":"Ranger","h":1,"n":"Impossible Volley"},{"c":0,"s":5,"id":3669,"u":"impressive%20performance_crb","p":262,"h":1,"n":"Impressive Performance"},{"c":0,"s":5,"id":3670,"u":"improbable%20elixirs_crb","p":81,"h":1,"n":"Improbable Elixirs"},{"c":0,"s":5,"id":3671,"u":"improved%20command%20undead_crb","p":125,"h":1,"n":"Improved Command Undead"},{"c":0,"s":5,"id":3672,"u":"improved%20communal%20healing_crb","p":123,"h":1,"n":"Improved Communal Healing"},{"c":0,"s":5,"id":3673,"u":"improved%20dueling%20riposte_crb","p":151,"h":1,"n":"Improved Dueling Riposte"},{"c":0,"s":5,"id":3674,"u":"improved%20knockback_crb","p":163,"h":1,"n":"Improved Knockback"},{"c":0,"s":5,"id":3675,"u":"improved%20knockdown_crb","p":151,"h":1,"n":"Improved Knockdown"},{"c":0,"s":5,"id":3676,"u":"improved%20poison%20weapon_crb","p":187,"h":1,"n":"Improved Poison Weapon"},{"c":0,"s":5,"id":3677,"u":"improved%20reflexive%20shield_crb","p":153,"h":1,"n":"Improved Reflexive Shield"},{"c":0,"s":5,"id":3678,"u":"improved%20swift%20banishment_crb","p":127,"h":1,"n":"Improved Swift Banishment"},{"c":0,"s":5,"id":3679,"u":"improved%20twin%20riposte%20(fighter)_crb","p":153,"a":"Fighter","h":1,"n":"Improved Twin Riposte"},{"c":0,"s":5,"id":3680,"u":"improved%20twin%20riposte%20(ranger)_crb","p":176,"a":"Ranger","h":1,"n":"Improved Twin Riposte"},{"c":0,"s":5,"id":3681,"u":"incredible%20aim_crb","p":149,"h":1,"n":"Incredible Aim"},{"c":0,"s":5,"id":3682,"u":"incredible%20companion%20(druid)_crb","p":137,"a":"Druid","h":1,"n":"Incredible Companion"},{"c":0,"s":5,"id":3683,"u":"incredible%20companion%20(ranger)_crb","p":175,"a":"Ranger","h":1,"n":"Incredible Companion"},{"c":0,"s":5,"id":3684,"u":"incredible%20ferocity_crb","p":59,"h":1,"n":"Incredible Ferocity"},{"c":0,"s":5,"id":3685,"u":"incredible%20improvisation_crb","p":57,"h":1,"n":"Incredible Improvisation"},{"c":0,"s":5,"id":3686,"u":"incredible%20initiative_crb","p":262,"h":1,"n":"Incredible Initiative"},{"c":0,"s":5,"id":3687,"u":"incredible%20investiture_crb","p":262,"h":1,"n":"Incredible Investiture"},{"c":0,"s":5,"id":3688,"u":"incredible%20ricochet_crb","p":151,"h":1,"n":"Incredible Ricochet"},{"c":0,"s":5,"id":3689,"u":"infinite%20possibilities_crb","p":213,"h":1,"n":"Infinite Possibilities"},{"c":0,"s":5,"id":3690,"u":"insect%20shape_crb","p":136,"h":1,"n":"Insect Shape"},{"c":0,"s":5,"id":3691,"u":"inspirational%20focus_crb","p":103,"h":1,"n":"Inspirational Focus"},{"c":0,"s":5,"id":3692,"u":"inspirational%20performance_crb","p":222,"h":1,"n":"Inspirational Performance"},{"c":0,"s":5,"id":3693,"u":"inspire%20competence_crb","p":100,"h":1,"n":"Inspire Competence"},{"c":0,"s":5,"id":3694,"u":"inspire%20defense_crb","p":100,"h":1,"n":"Inspire Defense"},{"c":0,"s":5,"id":3695,"u":"inspire%20heroics_crb","p":102,"h":1,"n":"Inspire Heroics"},{"c":0,"s":5,"id":3696,"u":"inspire%20imitation_crb","p":58,"h":1,"n":"Inspire Imitation"},{"c":0,"s":5,"id":3697,"u":"instant%20opening_crb","p":188,"h":1,"n":"Instant Opening"},{"c":0,"s":5,"id":3698,"u":"instinct%20ability_crb","p":221,"h":1,"n":"Instinct Ability"},{"c":0,"s":5,"id":3699,"u":"instrument%20of%20zeal_crb","p":115,"h":1,"n":"Instrument Of Zeal"},{"c":0,"s":5,"id":3700,"u":"interweave%20dispel_crb","p":201,"h":1,"n":"Interweave Dispel"},{"c":0,"s":5,"id":3701,"u":"intimidating%20glare_crb","p":262,"h":1,"n":"Intimidating Glare"},{"c":0,"s":5,"id":3702,"u":"intimidating%20prowess_crb","p":262,"h":1,"n":"Intimidating Prowess"},{"c":0,"s":5,"id":3703,"u":"intimidating%20strike_crb","p":146,"h":1,"n":"Intimidating Strike"},{"c":0,"s":5,"id":3704,"u":"inventor_crb","p":262,"h":1,"n":"Inventor"},{"c":0,"s":5,"id":3705,"u":"invincible%20mutagen_crb","p":79,"h":1,"n":"Invincible Mutagen"},{"c":0,"s":5,"id":3706,"u":"invoke%20disaster_crb","p":139,"h":1,"n":"Invoke Disaster"},{"c":0,"s":5,"id":3707,"u":"ironblood%20stance_crb","p":163,"h":1,"n":"Ironblood Stance"},{"c":0,"s":5,"id":3708,"u":"ironblood%20surge_crb","p":164,"h":1,"n":"Ironblood Surge"},{"c":0,"s":5,"id":3709,"u":"irrepressible_crb","p":53,"h":1,"n":"Irrepressible"},{"c":0,"s":5,"id":3710,"u":"juggernaut's%20fortitude_crb","p":221,"h":1,"n":"Juggernaut's Fortitude"},{"c":0,"s":5,"id":3711,"u":"junk%20tinker_crb","p":48,"h":1,"n":"Junk Tinker"},{"c":0,"s":5,"id":3712,"u":"ki%20blast_crb","p":161,"h":1,"n":"Ki Blast"},{"c":0,"s":5,"id":3713,"u":"ki%20rush_crb","p":158,"h":1,"n":"Ki Rush"},{"c":0,"s":5,"id":3714,"u":"ki%20strike_crb","p":158,"h":1,"n":"Ki Strike"},{"c":0,"s":5,"id":3715,"u":"kip%20up_crb","p":262,"h":1,"n":"Kip Up"},{"c":0,"s":5,"id":3716,"u":"knockback_crb","p":91,"h":1,"n":"Knockback"},{"c":0,"s":5,"id":3717,"u":"knockback%20strike_crb","p":163,"h":1,"n":"Knockback Strike"},{"c":0,"s":5,"id":3718,"u":"knockdown_crb","p":146,"h":1,"n":"Knockdown"},{"c":0,"s":5,"id":3719,"u":"know-it-all_crb","p":102,"h":1,"n":"Know-it-all"},{"c":0,"s":5,"id":3720,"u":"lasting%20coercion_crb","p":262,"h":1,"n":"Lasting Coercion"},{"c":0,"s":5,"id":3721,"u":"lasting%20doubt_crb","p":114,"h":1,"n":"Lasting Doubt"},{"c":0,"s":5,"id":3722,"u":"leave%20an%20opening_crb","p":188,"h":1,"n":"Leave An Opening"},{"c":0,"s":5,"id":3723,"u":"legendary%20codebreaker_crb","p":262,"h":1,"n":"Legendary Codebreaker"},{"c":0,"s":5,"id":3724,"u":"legendary%20linguist_crb","p":263,"h":1,"n":"Legendary Linguist"},{"c":0,"s":5,"id":3725,"u":"legendary%20medic_crb","p":263,"h":1,"n":"Legendary Medic"},{"c":0,"s":5,"id":3726,"u":"legendary%20monster%20hunter_crb","p":176,"h":1,"n":"Legendary Monster Hunter"},{"c":0,"s":5,"id":3727,"u":"legendary%20negotiation_crb","p":263,"h":1,"n":"Legendary Negotiation"},{"c":0,"s":5,"id":3728,"u":"legendary%20performer_crb","p":263,"h":1,"n":"Legendary Performer"},{"c":0,"s":5,"id":3729,"u":"legendary%20professional_crb","p":263,"h":1,"n":"Legendary Professional"},{"c":0,"s":5,"id":3730,"u":"legendary%20shot_crb","p":177,"h":1,"n":"Legendary Shot"},{"c":0,"s":5,"id":3731,"u":"legendary%20sneak_crb","p":263,"h":1,"n":"Legendary Sneak"},{"c":0,"s":5,"id":3732,"u":"legendary%20survivalist_crb","p":263,"h":1,"n":"Legendary Survivalist"},{"c":0,"s":5,"id":3733,"u":"legendary%20thief_crb","p":263,"h":1,"n":"Legendary Thief"},{"c":0,"s":5,"id":3734,"u":"lengthy%20diversion_crb","p":263,"h":1,"n":"Lengthy Diversion"},{"c":0,"s":5,"id":3735,"u":"leshy%20familiar_crb","p":133,"h":1,"n":"Leshy Familiar"},{"c":0,"s":5,"id":3736,"u":"leyline%20conduit_crb","p":139,"h":1,"n":"Leyline Conduit"},{"c":0,"s":5,"id":3737,"u":"liberating%20stride_crb","p":114,"h":1,"n":"Liberating Stride"},{"c":0,"s":5,"id":3738,"u":"lie%20to%20me_crb","p":263,"h":1,"n":"Lie To Me"},{"c":0,"s":5,"id":3739,"u":"light%20step_crb","p":186,"h":1,"n":"Light Step"},{"c":0,"s":5,"id":3740,"u":"lightning%20snares_crb","p":175,"h":1,"n":"Lightning Snares"},{"c":0,"s":5,"id":3741,"u":"lingering%20composition_crb","p":99,"h":1,"n":"Lingering Composition"},{"c":0,"s":5,"id":3742,"u":"linked%20focus_crb","p":210,"h":1,"n":"Linked Focus"},{"c":0,"s":5,"id":3743,"u":"litany%20against%20sloth_crb","p":113,"h":1,"n":"Litany Against Sloth"},{"c":0,"s":5,"id":3744,"u":"litany%20against%20wrath_crb","p":112,"h":1,"n":"Litany Against Wrath"},{"c":0,"s":5,"id":3745,"u":"litany%20of%20righteousness_crb","p":115,"h":1,"n":"Litany Of Righteousness"},{"c":0,"s":5,"id":3746,"u":"loremaster's%20etude_crb","p":100,"h":1,"n":"Loremaster's Etude"},{"c":0,"s":5,"id":3747,"u":"loyal%20warhorse_crb","p":112,"h":1,"n":"Loyal Warhorse"},{"c":0,"s":5,"id":3748,"u":"lunge_crb","p":146,"h":1,"n":"Lunge"},{"c":0,"s":5,"id":3749,"u":"lunging%20stance_crb","p":151,"h":1,"n":"Lunging Stance"},{"c":0,"s":5,"id":3750,"u":"magic%20sense%20(sorcerer)_crb","p":201,"a":"Sorcerer","h":1,"n":"Magic Sense"},{"c":0,"s":5,"id":3751,"u":"magic%20sense%20(wizard)_crb","p":212,"a":"Wizard","h":1,"n":"Magic Sense"},{"c":0,"s":5,"id":3752,"u":"magical%20crafting_crb","p":263,"h":1,"n":"Magical Crafting"},{"c":0,"s":5,"id":3753,"u":"magical%20shorthand_crb","p":264,"h":1,"n":"Magical Shorthand"},{"c":0,"s":5,"id":3754,"u":"magical%20trickster_crb","p":185,"h":1,"n":"Magical Trickster"},{"c":0,"s":5,"id":3755,"u":"maker%20of%20miracles_crb","p":127,"h":1,"n":"Maker Of Miracles"},{"c":0,"s":5,"id":3756,"u":"manifold%20edge_crb","p":177,"h":1,"n":"Manifold Edge"},{"c":0,"s":5,"id":3757,"u":"master%20alchemy_crb","p":220,"h":1,"n":"Master Alchemy"},{"c":0,"s":5,"id":3758,"u":"master%20bard%20spellcasting_crb","p":222,"h":1,"n":"Master Bard Spellcasting"},{"c":0,"s":5,"id":3759,"u":"master%20cleric%20spellcasting_crb","p":224,"h":1,"n":"Master Cleric Spellcasting"},{"c":0,"s":5,"id":3760,"u":"master%20druid%20spellcasting_crb","p":225,"h":1,"n":"Master Druid Spellcasting"},{"c":0,"s":5,"id":3761,"u":"master%20monster%20hunter_crb","p":175,"h":1,"n":"Master Monster Hunter"},{"c":0,"s":5,"id":3762,"u":"master%20of%20many%20styles_crb","p":165,"h":1,"n":"Master Of Many Styles"},{"c":0,"s":5,"id":3763,"u":"master%20sorcerer%20spellcasting_crb","p":230,"h":1,"n":"Master Sorcerer Spellcasting"},{"c":0,"s":5,"id":3764,"u":"master%20spotter_crb","p":228,"h":1,"n":"Master Spotter"},{"c":0,"s":5,"id":3765,"u":"master%20wizard%20spellcasting_crb","p":231,"h":1,"n":"Master Wizard Spellcasting"},{"c":0,"s":5,"id":3766,"u":"masterful%20companion_crb","p":177,"h":1,"n":"Masterful Companion"},{"c":0,"s":5,"id":3767,"u":"mature%20animal%20companion%20(druid)_crb","p":135,"a":"Druid","h":1,"n":"Mature Animal Companion"},{"c":0,"s":5,"id":3768,"u":"mature%20animal%20companion%20(ranger)_crb","p":173,"a":"Ranger","h":1,"n":"Mature Animal Companion"},{"c":0,"s":5,"id":3769,"u":"meditative%20focus_crb","p":164,"h":1,"n":"Meditative Focus"},{"c":0,"s":5,"id":3770,"u":"meditative%20wellspring_crb","p":165,"h":1,"n":"Meditative Wellspring"},{"c":0,"s":5,"id":3771,"u":"mega%20bomb_crb","p":81,"h":1,"n":"Mega Bomb"},{"c":0,"s":5,"id":3772,"u":"melodious%20spell_crb","p":101,"h":1,"n":"Melodious Spell"},{"c":0,"s":5,"id":3773,"u":"merciful%20elixir_crb","p":79,"h":1,"n":"Merciful Elixir"},{"c":0,"s":5,"id":3774,"u":"mercy_crb","p":111,"h":1,"n":"Mercy"},{"c":0,"s":5,"id":3775,"u":"metamagic%20channel_crb","p":127,"h":1,"n":"Metamagic Channel"},{"c":0,"s":5,"id":3776,"u":"metamagic%20mastery%20(sorcerer)_crb","p":201,"a":"Sorcerer","h":1,"n":"Metamagic Mastery"},{"c":0,"s":5,"id":3777,"u":"metamagic%20mastery%20(wizard)_crb","p":213,"a":"Wizard","h":1,"n":"Metamagic Mastery"},{"c":0,"s":5,"id":3778,"u":"mindblank%20mutagen_crb","p":81,"h":1,"n":"Mindblank Mutagen"},{"c":0,"s":5,"id":3779,"u":"minor%20magic_crb","p":184,"h":1,"n":"Minor Magic"},{"c":0,"s":5,"id":3780,"u":"miracle%20worker_crb","p":81,"h":1,"n":"Miracle Worker"},{"c":0,"s":5,"id":3781,"u":"mirror%20shield_crb","p":151,"h":1,"n":"Mirror Shield"},{"c":0,"s":5,"id":3782,"u":"mixed%20maneuver_crb","p":163,"h":1,"n":"Mixed Maneuver"},{"c":0,"s":5,"id":3783,"u":"mobile%20shot%20stance_crb","p":149,"h":1,"n":"Mobile Shot Stance"},{"c":0,"s":5,"id":3784,"u":"mobility_crb","p":184,"h":1,"n":"Mobility"},{"c":0,"s":5,"id":3785,"u":"moment%20of%20clarity_crb","p":88,"h":1,"n":"Moment Of Clarity"},{"c":0,"s":5,"id":3786,"u":"monastic%20weaponry_crb","p":158,"h":1,"n":"Monastic Weaponry"},{"c":0,"s":5,"id":3787,"u":"monk%20dedication_crb","p":227,"h":1,"n":"Monk Dedication"},{"c":0,"s":5,"id":3788,"u":"monk%20moves_crb","p":227,"h":1,"n":"Monk Moves"},{"c":0,"s":5,"id":3789,"u":"monk%20resiliency_crb","p":227,"h":1,"n":"Monk Resiliency"},{"c":0,"s":5,"id":3790,"u":"monk's%20flurry_crb","p":227,"h":1,"n":"Monk's Flurry"},{"c":0,"s":5,"id":3791,"u":"monster%20hunter_crb","p":171,"h":1,"n":"Monster Hunter"},{"c":0,"s":5,"id":3792,"u":"monster%20warden_crb","p":172,"h":1,"n":"Monster Warden"},{"c":0,"s":5,"id":3793,"u":"monstrosity%20shape_crb","p":139,"h":1,"n":"Monstrosity Shape"},{"c":0,"s":5,"id":3794,"u":"monstrous%20peacemaker_crb","p":59,"h":1,"n":"Monstrous Peacemaker"},{"c":0,"s":5,"id":3795,"u":"mountain%20quake_crb","p":164,"h":1,"n":"Mountain Quake"},{"c":0,"s":5,"id":3796,"u":"mountain%20stance_crb","p":159,"h":1,"n":"Mountain Stance"},{"c":0,"s":5,"id":3797,"u":"mountain%20stronghold_crb","p":161,"h":1,"n":"Mountain Stronghold"},{"c":0,"s":5,"id":3798,"u":"mountain's%20stoutness_crb","p":37,"h":1,"n":"Mountain's Stoutness"},{"c":0,"s":5,"id":3799,"u":"multifarious%20muse_crb","p":100,"h":1,"n":"Multifarious Muse"},{"c":0,"s":5,"id":3800,"u":"multilingual_crb","p":264,"h":1,"n":"Multilingual"},{"c":0,"s":5,"id":3801,"u":"multishot%20stance_crb","p":153,"h":1,"n":"Multishot Stance"},{"c":0,"s":5,"id":3802,"u":"multitalented_crb","p":58,"h":1,"n":"Multitalented"},{"c":0,"s":5,"id":3803,"u":"natural%20ambition_crb","p":57,"h":1,"n":"Natural Ambition"},{"c":0,"s":5,"id":3804,"u":"natural%20medicine_crb","p":264,"h":1,"n":"Natural Medicine"},{"c":0,"s":5,"id":3805,"u":"natural%20skill_crb","p":57,"h":1,"n":"Natural Skill"},{"c":0,"s":5,"id":3806,"u":"necrotic%20infusion_crb","p":123,"h":1,"n":"Necrotic Infusion"},{"c":0,"s":5,"id":3807,"u":"nimble%20crawl_crb","p":264,"h":1,"n":"Nimble Crawl"},{"c":0,"s":5,"id":3808,"u":"nimble%20dodge_crb","p":183,"h":1,"n":"Nimble Dodge"},{"c":0,"s":5,"id":3809,"u":"nimble%20elf_crb","p":40,"h":1,"n":"Nimble Elf"},{"c":0,"s":5,"id":3810,"u":"nimble%20roll_crb","p":187,"h":1,"n":"Nimble Roll"},{"c":0,"s":5,"id":3811,"u":"no%20escape_crb","p":89,"h":1,"n":"No Escape"},{"c":0,"s":5,"id":3812,"u":"occult%20breadth_crb","p":222,"h":1,"n":"Occult Breadth"},{"c":0,"s":5,"id":3813,"u":"occult%20evolution_crb","p":199,"h":1,"n":"Occult Evolution"},{"c":0,"s":5,"id":3814,"u":"oddity%20identification_crb","p":264,"h":1,"n":"Oddity Identification"},{"c":0,"s":5,"id":3815,"u":"opportune%20backstab_crb","p":187,"h":1,"n":"Opportune Backstab"},{"c":0,"s":5,"id":3816,"u":"opportunist_crb","p":226,"h":1,"n":"Opportunist"},{"c":0,"s":5,"id":3817,"u":"orc%20ferocity_crb","p":59,"h":1,"n":"Orc Ferocity"},{"c":0,"s":5,"id":3818,"u":"orc%20sight_crb","p":59,"h":1,"n":"Orc Sight"},{"c":0,"s":5,"id":3819,"u":"orc%20superstition_crb","p":59,"h":1,"n":"Orc Superstition"},{"c":0,"s":5,"id":3820,"u":"orc%20weapon%20carnage_crb","p":59,"h":1,"n":"Orc Weapon Carnage"},{"c":0,"s":5,"id":3821,"u":"orc%20weapon%20expertise_crb","p":59,"h":1,"n":"Orc Weapon Expertise"},{"c":0,"s":5,"id":3822,"u":"orc%20weapon%20familiarity_crb","p":59,"h":1,"n":"Orc Weapon Familiarity"},{"c":0,"s":5,"id":3823,"u":"order%20explorer_crb","p":134,"h":1,"n":"Order Explorer"},{"c":0,"s":5,"id":3824,"u":"order%20magic_crb","p":135,"h":1,"n":"Order Magic"},{"c":0,"s":5,"id":3825,"u":"order%20spell_crb","p":225,"h":1,"n":"Order Spell"},{"c":0,"s":5,"id":3826,"u":"otherworldly%20magic_crb","p":40,"h":1,"n":"Otherworldly Magic"},{"c":0,"s":5,"id":3827,"u":"overwhelming%20energy%20(druid)_crb","p":137,"a":"Druid","h":1,"n":"Overwhelming Energy"},{"c":0,"s":5,"id":3828,"u":"overwhelming%20energy%20(sorcerer)_crb","p":200,"a":"Sorcerer","h":1,"n":"Overwhelming Energy"},{"c":0,"s":5,"id":3829,"u":"overwhelming%20energy%20(wizard)_crb","p":211,"a":"Wizard","h":1,"n":"Overwhelming Energy"},{"c":0,"s":5,"id":3830,"u":"paragon's%20guard_crb","p":151,"h":1,"n":"Paragon's Guard"},{"c":0,"s":5,"id":3831,"u":"penetrating%20shot_crb","p":175,"h":1,"n":"Penetrating Shot"},{"c":0,"s":5,"id":3832,"u":"perfect%20clarity_crb","p":93,"h":1,"n":"Perfect Clarity"},{"c":0,"s":5,"id":3833,"u":"perfect%20debilitation_crb","p":81,"h":1,"n":"Perfect Debilitation"},{"c":0,"s":5,"id":3834,"u":"perfect%20distraction_crb","p":189,"h":1,"n":"Perfect Distraction"},{"c":0,"s":5,"id":3835,"u":"perfect%20encore_crb","p":103,"h":1,"n":"Perfect Encore"},{"c":0,"s":5,"id":3836,"u":"perfect%20form%20control_crb","p":139,"h":1,"n":"Perfect Form Control"},{"c":0,"s":5,"id":3837,"u":"perfect%20mutagen_crb","p":81,"h":1,"n":"Perfect Mutagen"},{"c":0,"s":5,"id":3838,"u":"perfect%20shot_crb","p":177,"h":1,"n":"Perfect Shot"},{"c":0,"s":5,"id":3839,"u":"perfection's%20path_crb","p":227,"h":1,"n":"Perfection's Path"},{"c":0,"s":5,"id":3840,"u":"persistent%20mutagen_crb","p":81,"h":1,"n":"Persistent Mutagen"},{"c":0,"s":5,"id":3841,"u":"pervasive%20superstition_crb","p":59,"h":1,"n":"Pervasive Superstition"},{"c":0,"s":5,"id":3842,"u":"pickpocket_crb","p":264,"h":1,"n":"Pickpocket"},{"c":0,"s":5,"id":3843,"u":"planar%20survival_crb","p":264,"h":1,"n":"Planar Survival"},{"c":0,"s":5,"id":3844,"u":"plant%20shape_crb","p":138,"h":1,"n":"Plant Shape"},{"c":0,"s":5,"id":3845,"u":"point-blank%20shot_crb","p":144,"h":1,"n":"Point-blank Shot"},{"c":0,"s":5,"id":3846,"u":"poison%20resistance%20(alchemist)_crb","p":77,"a":"Alchemist","h":1,"n":"Poison Resistance"},{"c":0,"s":5,"id":3847,"u":"poison%20resistance%20(druid)_crb","p":135,"a":"Druid","h":1,"n":"Poison Resistance"},{"c":0,"s":5,"id":3848,"u":"poison%20weapon_crb","p":185,"h":1,"n":"Poison Weapon"},{"c":0,"s":5,"id":3849,"u":"positioning%20assault_crb","p":149,"h":1,"n":"Positioning Assault"},{"c":0,"s":5,"id":3850,"u":"potent%20poisoner_crb","p":79,"h":1,"n":"Potent Poisoner"},{"c":0,"s":5,"id":3851,"u":"power%20attack_crb","p":144,"h":1,"n":"Power Attack"},{"c":0,"s":5,"id":3852,"u":"powerful%20alchemy_crb","p":79,"h":1,"n":"Powerful Alchemy"},{"c":0,"s":5,"id":3853,"u":"powerful%20leap_crb","p":264,"h":1,"n":"Powerful Leap"},{"c":0,"s":5,"id":3854,"u":"powerful%20shove_crb","p":146,"h":1,"n":"Powerful Shove"},{"c":0,"s":5,"id":3855,"u":"powerful%20snares_crb","p":174,"h":1,"n":"Powerful Snares"},{"c":0,"s":5,"id":3856,"u":"powerful%20sneak_crb","p":189,"h":1,"n":"Powerful Sneak"},{"c":0,"s":5,"id":3857,"u":"precise%20debilitations_crb","p":187,"h":1,"n":"Precise Debilitations"},{"c":0,"s":5,"id":3858,"u":"predator's%20pounce_crb","p":92,"h":1,"n":"Predator's Pounce"},{"c":0,"s":5,"id":3859,"u":"primal%20breadth_crb","p":225,"h":1,"n":"Primal Breadth"},{"c":0,"s":5,"id":3860,"u":"primal%20evolution_crb","p":199,"h":1,"n":"Primal Evolution"},{"c":0,"s":5,"id":3861,"u":"primal%20focus_crb","p":138,"h":1,"n":"Primal Focus"},{"c":0,"s":5,"id":3862,"u":"primal%20summons_crb","p":138,"h":1,"n":"Primal Summons"},{"c":0,"s":5,"id":3863,"u":"primal%20wellspring_crb","p":139,"h":1,"n":"Primal Wellspring"},{"c":0,"s":5,"id":3864,"u":"quaking%20stomp_crb","p":93,"h":1,"n":"Quaking Stomp"},{"c":0,"s":5,"id":3865,"u":"quick%20alchemy_crb","p":220,"h":1,"n":"Quick Alchemy"},{"c":0,"s":5,"id":3866,"u":"quick%20block_crb","p":113,"h":1,"n":"Quick Block"},{"c":0,"s":5,"id":3867,"u":"quick%20bomber_crb","p":76,"h":1,"n":"Quick Bomber"},{"c":0,"s":5,"id":3868,"u":"quick%20climb_crb","p":264,"h":1,"n":"Quick Climb"},{"c":0,"s":5,"id":3869,"u":"quick%20coercion_crb","p":264,"h":1,"n":"Quick Coercion"},{"c":0,"s":5,"id":3870,"u":"quick%20disguise_crb","p":264,"h":1,"n":"Quick Disguise"},{"c":0,"s":5,"id":3871,"u":"quick%20draw%20(ranger)_crb","p":172,"a":"Ranger","h":1,"n":"Quick Draw"},{"c":0,"s":5,"id":3872,"u":"quick%20draw%20(rogue)_crb","p":184,"a":"Rogue","h":1,"n":"Quick Draw"},{"c":0,"s":5,"id":3873,"u":"quick%20identification_crb","p":264,"h":1,"n":"Quick Identification"},{"c":0,"s":5,"id":3874,"u":"quick%20jump_crb","p":264,"h":1,"n":"Quick Jump"},{"c":0,"s":5,"id":3875,"u":"quick%20recognition_crb","p":265,"h":1,"n":"Quick Recognition"},{"c":0,"s":5,"id":3876,"u":"quick%20repair_crb","p":265,"h":1,"n":"Quick Repair"},{"c":0,"s":5,"id":3877,"u":"quick%20reversal_crb","p":146,"h":1,"n":"Quick Reversal"},{"c":0,"s":5,"id":3878,"u":"quick%20shield%20block_crb","p":149,"h":1,"n":"Quick Shield Block"},{"c":0,"s":5,"id":3879,"u":"quick%20snares_crb","p":173,"h":1,"n":"Quick Snares"},{"c":0,"s":5,"id":3880,"u":"quick%20squeeze_crb","p":265,"h":1,"n":"Quick Squeeze"},{"c":0,"s":5,"id":3881,"u":"quick%20swim_crb","p":265,"h":1,"n":"Quick Swim"},{"c":0,"s":5,"id":3882,"u":"quick%20unlock_crb","p":265,"h":1,"n":"Quick Unlock"},{"c":0,"s":5,"id":3883,"u":"quickened%20casting%20(bard)_crb","p":102,"a":"Bard","h":1,"n":"Quickened Casting"},{"c":0,"s":5,"id":3884,"u":"quickened%20casting%20(sorcerer)_crb","p":201,"a":"Sorcerer","h":1,"n":"Quickened Casting"},{"c":0,"s":5,"id":3885,"u":"quickened%20casting%20(wizard)_crb","p":211,"a":"Wizard","h":1,"n":"Quickened Casting"},{"c":0,"s":5,"id":3886,"u":"quiet%20allies_crb","p":265,"h":1,"n":"Quiet Allies"},{"c":0,"s":5,"id":3887,"u":"quivering%20palm_crb","p":165,"h":1,"n":"Quivering Palm"},{"c":0,"s":5,"id":3888,"u":"radiant%20blade%20master_crb","p":115,"h":1,"n":"Radiant Blade Master"},{"c":0,"s":5,"id":3889,"u":"radiant%20blade%20spirit_crb","p":113,"h":1,"n":"Radiant Blade Spirit"},{"c":0,"s":5,"id":3890,"u":"raging%20athlete_crb","p":89,"h":1,"n":"Raging Athlete"},{"c":0,"s":5,"id":3891,"u":"raging%20intimidation_crb","p":88,"h":1,"n":"Raging Intimidation"},{"c":0,"s":5,"id":3892,"u":"raging%20thrower_crb","p":88,"h":1,"n":"Raging Thrower"},{"c":0,"s":5,"id":3893,"u":"ranged%20reprisal_crb","p":109,"h":1,"n":"Ranged Reprisal"},{"c":0,"s":5,"id":3894,"u":"ranger%20dedication_crb","p":228,"h":1,"n":"Ranger Dedication"},{"c":0,"s":5,"id":3895,"u":"ranger%20resiliency_crb","p":228,"h":1,"n":"Ranger Resiliency"},{"c":0,"s":5,"id":3896,"u":"rapid%20mantel_crb","p":265,"h":1,"n":"Rapid Mantel"},{"c":0,"s":5,"id":3897,"u":"reach%20spell%20(bard)_crb","p":99,"a":"Bard","h":1,"n":"Reach Spell"},{"c":0,"s":5,"id":3898,"u":"reach%20spell%20(cleric)_crb","p":122,"a":"Cleric","h":1,"n":"Reach Spell"},{"c":0,"s":5,"id":3899,"u":"reach%20spell%20(druid)_crb","p":134,"a":"Druid","h":1,"n":"Reach Spell"},{"c":0,"s":5,"id":3900,"u":"reach%20spell%20(sorcerer)_crb","p":198,"a":"Sorcerer","h":1,"n":"Reach Spell"},{"c":0,"s":5,"id":3901,"u":"reach%20spell%20(wizard)_crb","p":210,"a":"Wizard","h":1,"n":"Reach Spell"},{"c":0,"s":5,"id":3902,"u":"reactive%20distraction_crb","p":189,"h":1,"n":"Reactive Distraction"},{"c":0,"s":5,"id":3903,"u":"reactive%20interference_crb","p":187,"h":1,"n":"Reactive Interference"},{"c":0,"s":5,"id":3904,"u":"reactive%20pursuit_crb","p":185,"h":1,"n":"Reactive Pursuit"},{"c":0,"s":5,"id":3905,"u":"reactive%20shield_crb","p":145,"h":1,"n":"Reactive Shield"},{"c":0,"s":5,"id":3906,"u":"read%20lips_crb","p":265,"h":1,"n":"Read Lips"},{"c":0,"s":5,"id":3907,"u":"reckless%20abandon%20(barbarian)_crb","p":93,"a":"Barbarian","h":1,"n":"Reckless Abandon"},{"c":0,"s":5,"id":3908,"u":"recognize%20spell_crb","p":265,"h":1,"n":"Recognize Spell"},{"c":0,"s":5,"id":3909,"u":"reflect%20spell%20(sorcerer)_crb","p":201,"a":"Sorcerer","h":1,"n":"Reflect Spell"},{"c":0,"s":5,"id":3910,"u":"reflect%20spell%20(wizard)_crb","p":213,"a":"Wizard","h":1,"n":"Reflect Spell"},{"c":0,"s":5,"id":3911,"u":"reflexive%20shield_crb","p":148,"h":1,"n":"Reflexive Shield"},{"c":0,"s":5,"id":3912,"u":"renewed%20vigor_crb","p":91,"h":1,"n":"Renewed Vigor"},{"c":0,"s":5,"id":3913,"u":"replenishment%20of%20war_crb","p":125,"h":1,"n":"Replenishment Of War"},{"c":0,"s":5,"id":3914,"u":"reprepare%20spell_crb","p":213,"h":1,"n":"Reprepare Spell"},{"c":0,"s":5,"id":3915,"u":"resurrectionist_crb","p":126,"h":1,"n":"Resurrectionist"},{"c":0,"s":5,"id":3916,"u":"revealing%20stab_crb","p":148,"h":1,"n":"Revealing Stab"},{"c":0,"s":5,"id":3917,"u":"revivifying%20mutagen_crb","p":77,"h":1,"n":"Revivifying Mutagen"},{"c":0,"s":5,"id":3918,"u":"ride_crb","p":266,"h":1,"n":"Ride"},{"c":0,"s":5,"id":3919,"u":"robust%20recovery_crb","p":266,"h":1,"n":"Robust Recovery"},{"c":0,"s":5,"id":3920,"u":"rock%20runner_crb","p":36,"h":1,"n":"Rock Runner"},{"c":0,"s":5,"id":3921,"u":"rogue%20dedication_crb","p":229,"h":1,"n":"Rogue Dedication"},{"c":0,"s":5,"id":3922,"u":"rough%20rider_crb","p":48,"h":1,"n":"Rough Rider"},{"c":0,"s":5,"id":3923,"u":"running%20reload_crb","p":172,"h":1,"n":"Running Reload"},{"c":0,"s":5,"id":3924,"u":"sabotage_crb","p":185,"h":1,"n":"Sabotage"},{"c":0,"s":5,"id":3925,"u":"sap%20life_crb","p":122,"h":1,"n":"Sap Life"},{"c":0,"s":5,"id":3926,"u":"savage%20critical_crb","p":153,"h":1,"n":"Savage Critical"},{"c":0,"s":5,"id":3927,"u":"scare%20to%20death_crb","p":266,"h":1,"n":"Scare To Death"},{"c":0,"s":5,"id":3928,"u":"scout's%20warning%20(ranger)_crb","p":172,"a":"Ranger","h":1,"n":"Scout's Warning"},{"c":0,"s":5,"id":3929,"u":"scout's%20warning%20(rogue)_crb","p":186,"a":"Rogue","h":1,"n":"Scout's Warning"},{"c":0,"s":5,"id":3930,"u":"scroll%20savant_crb","p":212,"h":1,"n":"Scroll Savant"},{"c":0,"s":5,"id":3931,"u":"second%20ally_crb","p":113,"h":1,"n":"Second Ally"},{"c":0,"s":5,"id":3932,"u":"second%20sting_crb","p":175,"h":1,"n":"Second Sting"},{"c":0,"s":5,"id":3933,"u":"second%20wind_crb","p":89,"h":1,"n":"Second Wind"},{"c":0,"s":5,"id":3934,"u":"selective%20energy_crb","p":123,"h":1,"n":"Selective Energy"},{"c":0,"s":5,"id":3935,"u":"sense%20evil_crb","p":113,"h":1,"n":"Sense Evil"},{"c":0,"s":5,"id":3936,"u":"sense%20the%20unseen%20(ranger)_crb","p":175,"a":"Ranger","h":1,"n":"Sense The Unseen"},{"c":0,"s":5,"id":3937,"u":"sense%20the%20unseen%20(rogue)_crb","p":188,"a":"Rogue","h":1,"n":"Sense The Unseen"},{"c":0,"s":5,"id":3938,"u":"shadow%20hunter_crb","p":177,"h":1,"n":"Shadow Hunter"},{"c":0,"s":5,"id":3939,"u":"shake%20it%20off_crb","p":89,"h":1,"n":"Shake It Off"},{"c":0,"s":5,"id":3940,"u":"shameless%20request_crb","p":266,"h":1,"n":"Shameless Request"},{"c":0,"s":5,"id":3941,"u":"share%20rage_crb","p":91,"h":1,"n":"Share Rage"},{"c":0,"s":5,"id":3942,"u":"shared%20prey_crb","p":175,"h":1,"n":"Shared Prey"},{"c":0,"s":5,"id":3943,"u":"shared%20replenishment_crb","p":125,"h":1,"n":"Shared Replenishment"},{"c":0,"s":5,"id":3944,"u":"shatter%20defenses_crb","p":149,"h":1,"n":"Shatter Defenses"},{"c":0,"s":5,"id":3945,"u":"shattering%20strike_crb","p":165,"h":1,"n":"Shattering Strike"},{"c":0,"s":5,"id":3946,"u":"shield%20block_crb","p":266,"h":1,"n":"Shield Block"},{"c":0,"s":5,"id":3947,"u":"shield%20of%20grace_crb","p":115,"h":1,"n":"Shield Of Grace"},{"c":0,"s":5,"id":3948,"u":"shield%20of%20reckoning_crb","p":113,"h":1,"n":"Shield Of Reckoning"},{"c":0,"s":5,"id":3949,"u":"shield%20paragon_crb","p":115,"h":1,"n":"Shield Paragon"},{"c":0,"s":5,"id":3950,"u":"shield%20warden%20(champion)_crb","p":112,"a":"Champion","h":1,"n":"Shield Warden"},{"c":0,"s":5,"id":3951,"u":"shield%20warden%20(fighter)_crb","p":149,"a":"Fighter","h":1,"n":"Shield Warden"},{"c":0,"s":5,"id":3952,"u":"shielded%20stride_crb","p":146,"h":1,"n":"Shielded Stride"},{"c":0,"s":5,"id":3953,"u":"shining%20oath_crb","p":110,"h":1,"n":"Shining Oath"},{"c":0,"s":5,"id":3954,"u":"side%20by%20side%20(druid)_crb","p":138,"a":"Druid","h":1,"n":"Side By Side"},{"c":0,"s":5,"id":3955,"u":"side%20by%20side%20(ranger)_crb","p":175,"a":"Ranger","h":1,"n":"Side By Side"},{"c":0,"s":5,"id":3956,"u":"sidestep_crb","p":187,"h":1,"n":"Sidestep"},{"c":0,"s":5,"id":3957,"u":"sign%20language_crb","p":266,"h":1,"n":"Sign Language"},{"c":0,"s":5,"id":3958,"u":"silent%20spell_crb","p":210,"h":1,"n":"Silent Spell"},{"c":0,"s":5,"id":3959,"u":"skill%20mastery_crb","p":229,"h":1,"n":"Skill Mastery"},{"c":0,"s":5,"id":3960,"u":"skill%20training_crb","p":266,"h":1,"n":"Skill Training"},{"c":0,"s":5,"id":3961,"u":"skirmish%20strike%20(ranger)_crb","p":173,"a":"Ranger","h":1,"n":"Skirmish Strike"},{"c":0,"s":5,"id":3962,"u":"skirmish%20strike%20(rogue)_crb","p":186,"a":"Rogue","h":1,"n":"Skirmish Strike"},{"c":0,"s":5,"id":3963,"u":"skittering%20scuttle_crb","p":49,"h":1,"n":"Skittering Scuttle"},{"c":0,"s":5,"id":3964,"u":"sleeper%20hold_crb","p":163,"h":1,"n":"Sleeper Hold"},{"c":0,"s":5,"id":3965,"u":"slippery%20secrets_crb","p":266,"h":1,"n":"Slippery Secrets"},{"c":0,"s":5,"id":3966,"u":"sly%20striker_crb","p":187,"h":1,"n":"Sly Striker"},{"c":0,"s":5,"id":3967,"u":"smite%20evil_crb","p":112,"h":1,"n":"Smite Evil"},{"c":0,"s":5,"id":3968,"u":"smoke%20bomb_crb","p":77,"h":1,"n":"Smoke Bomb"},{"c":0,"s":5,"id":3969,"u":"snagging%20strike_crb","p":145,"h":1,"n":"Snagging Strike"},{"c":0,"s":5,"id":3970,"u":"snap%20shot_crb","p":173,"h":1,"n":"Snap Shot"},{"c":0,"s":5,"id":3971,"u":"snare%20crafting_crb","p":266,"h":1,"n":"Snare Crafting"},{"c":0,"s":5,"id":3972,"u":"snare%20specialist_crb","p":172,"h":1,"n":"Snare Specialist"},{"c":0,"s":5,"id":3973,"u":"sneak%20attacker_crb","p":229,"h":1,"n":"Sneak Attacker"},{"c":0,"s":5,"id":3974,"u":"sneak%20savant_crb","p":187,"h":1,"n":"Sneak Savant"},{"c":0,"s":5,"id":3975,"u":"soaring%20shape_crb","p":137,"h":1,"n":"Soaring Shape"},{"c":0,"s":5,"id":3976,"u":"soothing%20ballad_crb","p":103,"h":1,"n":"Soothing Ballad"},{"c":0,"s":5,"id":3977,"u":"sorcerer%20dedication_crb","p":230,"h":1,"n":"Sorcerer Dedication"},{"c":0,"s":5,"id":3978,"u":"specialized%20companion%20(druid)_crb","p":139,"a":"Druid","h":1,"n":"Specialized Companion"},{"c":0,"s":5,"id":3979,"u":"specialized%20companion%20(ranger)_crb","p":176,"a":"Ranger","h":1,"n":"Specialized Companion"},{"c":0,"s":5,"id":3980,"u":"specialty%20crafting_crb","p":266,"h":1,"n":"Specialty Crafting"},{"c":0,"s":5,"id":3981,"u":"spell%20combination_crb","p":213,"h":1,"n":"Spell Combination"},{"c":0,"s":5,"id":3982,"u":"spell%20penetration_crb","p":210,"h":1,"n":"Spell Penetration"},{"c":0,"s":5,"id":3983,"u":"spell%20tinker_crb","p":213,"h":1,"n":"Spell Tinker"},{"c":0,"s":5,"id":3984,"u":"spirit's%20wrath_crb","p":92,"h":1,"n":"Spirit's Wrath"},{"c":0,"s":5,"id":3985,"u":"spirits'%20interference_crb","p":91,"h":1,"n":"Spirits' Interference"},{"c":0,"s":5,"id":3986,"u":"spring%20attack_crb","p":152,"h":1,"n":"Spring Attack"},{"c":0,"s":5,"id":3987,"u":"spring%20from%20the%20shadows_crb","p":187,"h":1,"n":"Spring From The Shadows"},{"c":0,"s":5,"id":3988,"u":"stance%20savant%20(fighter)_crb","p":153,"a":"Fighter","h":1,"n":"Stance Savant"},{"c":0,"s":5,"id":3989,"u":"stance%20savant%20(monk)_crb","p":164,"a":"Monk","h":1,"n":"Stance Savant"},{"c":0,"s":5,"id":3990,"u":"stand%20still_crb","p":160,"h":1,"n":"Stand Still"},{"c":0,"s":5,"id":3991,"u":"steady%20balance_crb","p":267,"h":1,"n":"Steady Balance"},{"c":0,"s":5,"id":3992,"u":"steady%20spellcasting%20(bard)_crb","p":101,"a":"Bard","h":1,"n":"Steady Spellcasting"},{"c":0,"s":5,"id":3993,"u":"steady%20spellcasting%20(cleric)_crb","p":123,"a":"Cleric","h":1,"n":"Steady Spellcasting"},{"c":0,"s":5,"id":3994,"u":"steady%20spellcasting%20(druid)_crb","p":136,"a":"Druid","h":1,"n":"Steady Spellcasting"},{"c":0,"s":5,"id":3995,"u":"steady%20spellcasting%20(sorcerer)_crb","p":200,"a":"Sorcerer","h":1,"n":"Steady Spellcasting"},{"c":0,"s":5,"id":3996,"u":"steady%20spellcasting%20(wizard)_crb","p":211,"a":"Wizard","h":1,"n":"Steady Spellcasting"},{"c":0,"s":5,"id":3997,"u":"stealthy%20companion_crb","p":176,"h":1,"n":"Stealthy Companion"},{"c":0,"s":5,"id":3998,"u":"sticky%20bomb_crb","p":79,"h":1,"n":"Sticky Bomb"},{"c":0,"s":5,"id":3999,"u":"stonecunning_crb","p":36,"h":1,"n":"Stonecunning"},{"c":0,"s":5,"id":4000,"u":"stonewalker_crb","p":37,"h":1,"n":"Stonewalker"},{"c":0,"s":5,"id":4001,"u":"storm%20born_crb","p":134,"h":1,"n":"Storm Born"},{"c":0,"s":5,"id":4002,"u":"storm%20retribution_crb","p":136,"h":1,"n":"Storm Retribution"},{"c":0,"s":5,"id":4003,"u":"streetwise_crb","p":267,"h":1,"n":"Streetwise"},{"c":0,"s":5,"id":4004,"u":"student%20of%20the%20canon_crb","p":267,"h":1,"n":"Student Of The Canon"},{"c":0,"s":5,"id":4005,"u":"studious%20capacity_crb","p":103,"h":1,"n":"Studious Capacity"},{"c":0,"s":5,"id":4006,"u":"stunning%20fist_crb","p":160,"h":1,"n":"Stunning Fist"},{"c":0,"s":5,"id":4007,"u":"subtle%20theft_crb","p":267,"h":1,"n":"Subtle Theft"},{"c":0,"s":5,"id":4008,"u":"sudden%20charge%20(barbarian)_crb","p":88,"a":"Barbarian","h":1,"n":"Sudden Charge"},{"c":0,"s":5,"id":4009,"u":"sudden%20charge%20(fighter)_crb","p":145,"a":"Fighter","h":1,"n":"Sudden Charge"},{"c":0,"s":5,"id":4010,"u":"sudden%20leap%20(barbarian)_crb","p":91,"a":"Barbarian","h":1,"n":"Sudden Leap"},{"c":0,"s":5,"id":4011,"u":"sudden%20leap%20(fighter)_crb","p":149,"a":"Fighter","h":1,"n":"Sudden Leap"},{"c":0,"s":5,"id":4012,"u":"superior%20bond_crb","p":213,"h":1,"n":"Superior Bond"},{"c":0,"s":5,"id":4013,"u":"supernatural%20charm_crb","p":58,"h":1,"n":"Supernatural Charm"},{"c":0,"s":5,"id":4014,"u":"sure%20feet_crb","p":52,"h":1,"n":"Sure Feet"},{"c":0,"s":5,"id":4015,"u":"survey%20wildlife_crb","p":267,"h":1,"n":"Survey Wildlife"},{"c":0,"s":5,"id":4016,"u":"swift%20banishment_crb","p":126,"h":1,"n":"Swift Banishment"},{"c":0,"s":5,"id":4017,"u":"swift%20river_crb","p":165,"h":1,"n":"Swift River"},{"c":0,"s":5,"id":4018,"u":"swift%20sneak_crb","p":267,"h":1,"n":"Swift Sneak"},{"c":0,"s":5,"id":4019,"u":"swift%20tracker_crb","p":173,"h":1,"n":"Swift Tracker"},{"c":0,"s":5,"id":4020,"u":"swipe%20(barbarian)_crb","p":89,"a":"Barbarian","h":1,"n":"Swipe"},{"c":0,"s":5,"id":4021,"u":"swipe%20(fighter)_crb","p":147,"a":"Fighter","h":1,"n":"Swipe"},{"c":0,"s":5,"id":4022,"u":"symphony%20of%20the%20muse_crb","p":103,"h":1,"n":"Symphony Of The Muse"},{"c":0,"s":5,"id":4023,"u":"tactical%20debilitations_crb","p":187,"h":1,"n":"Tactical Debilitations"},{"c":0,"s":5,"id":4024,"u":"tangled%20forest%20rake_crb","p":164,"h":1,"n":"Tangled Forest Rake"},{"c":0,"s":5,"id":4025,"u":"tangled%20forest%20stance_crb","p":163,"h":1,"n":"Tangled Forest Stance"},{"c":0,"s":5,"id":4026,"u":"targeting%20shot_crb","p":176,"h":1,"n":"Targeting Shot"},{"c":0,"s":5,"id":4027,"u":"terrain%20expertise_crb","p":267,"h":1,"n":"Terrain Expertise"},{"c":0,"s":5,"id":4028,"u":"terrain%20master_crb","p":174,"h":1,"n":"Terrain Master"},{"c":0,"s":5,"id":4029,"u":"terrain%20stalker_crb","p":267,"h":1,"n":"Terrain Stalker"},{"c":0,"s":5,"id":4030,"u":"terrified%20retreat_crb","p":268,"h":1,"n":"Terrified Retreat"},{"c":0,"s":5,"id":4031,"u":"terrifying%20howl_crb","p":91,"h":1,"n":"Terrifying Howl"},{"c":0,"s":5,"id":4032,"u":"thousand%20faces_crb","p":135,"h":1,"n":"Thousand Faces"},{"c":0,"s":5,"id":4033,"u":"thrash_crb","p":91,"h":1,"n":"Thrash"},{"c":0,"s":5,"id":4034,"u":"tiger%20slash_crb","p":161,"h":1,"n":"Tiger Slash"},{"c":0,"s":5,"id":4035,"u":"tiger%20stance_crb","p":159,"h":1,"n":"Tiger Stance"},{"c":0,"s":5,"id":4036,"u":"timeless%20body_crb","p":164,"h":1,"n":"Timeless Body"},{"c":0,"s":5,"id":4037,"u":"timeless%20nature_crb","p":139,"h":1,"n":"Timeless Nature"},{"c":0,"s":5,"id":4038,"u":"titan%20slinger_crb","p":52,"h":1,"n":"Titan Slinger"},{"c":0,"s":5,"id":4039,"u":"titan%20wrestler_crb","p":268,"h":1,"n":"Titan Wrestler"},{"c":0,"s":5,"id":4040,"u":"titan's%20stature_crb","p":92,"h":1,"n":"Titan's Stature"},{"c":0,"s":5,"id":4041,"u":"to%20the%20ends%20of%20the%20earth_crb","p":177,"h":1,"n":"To The Ends Of The Earth"},{"c":0,"s":5,"id":4042,"u":"tongue%20of%20sun%20and%20moon_crb","p":165,"h":1,"n":"Tongue Of Sun And Moon"},{"c":0,"s":5,"id":4043,"u":"toughness_crb","p":268,"h":1,"n":"Toughness"},{"c":0,"s":5,"id":4044,"u":"train%20animal_crb","p":268,"h":1,"n":"Train Animal"},{"c":0,"s":5,"id":4045,"u":"trap%20finder_crb","p":183,"h":1,"n":"Trap Finder"},{"c":0,"s":5,"id":4046,"u":"trick%20magic%20item_crb","p":268,"h":1,"n":"Trick Magic Item"},{"c":0,"s":5,"id":4047,"u":"trickster's%20ace_crb","p":189,"h":1,"n":"Trickster's Ace"},{"c":0,"s":5,"id":4048,"u":"triple%20shot_crb","p":149,"h":1,"n":"Triple Shot"},{"c":0,"s":5,"id":4049,"u":"triple%20threat_crb","p":177,"h":1,"n":"Triple Threat"},{"c":0,"s":5,"id":4050,"u":"triple%20time_crb","p":101,"h":1,"n":"Triple Time"},{"c":0,"s":5,"id":4051,"u":"true%20debilitating%20bomb_crb","p":80,"h":1,"n":"True Debilitating Bomb"},{"c":0,"s":5,"id":4052,"u":"true%20hypercognition_crb","p":103,"h":1,"n":"True Hypercognition"},{"c":0,"s":5,"id":4053,"u":"true%20shapeshifter_crb","p":139,"h":1,"n":"True Shapeshifter"},{"c":0,"s":5,"id":4054,"u":"turn%20undead_crb","p":122,"h":1,"n":"Turn Undead"},{"c":0,"s":5,"id":4055,"u":"twin%20feint_crb","p":183,"h":1,"n":"Twin Feint"},{"c":0,"s":5,"id":4056,"u":"twin%20parry%20(fighter)_crb","p":147,"a":"Fighter","h":1,"n":"Twin Parry"},{"c":0,"s":5,"id":4057,"u":"twin%20parry%20(ranger)_crb","p":172,"a":"Ranger","h":1,"n":"Twin Parry"},{"c":0,"s":5,"id":4058,"u":"twin%20riposte%20(fighter)_crb","p":151,"a":"Fighter","h":1,"n":"Twin Riposte"},{"c":0,"s":5,"id":4059,"u":"twin%20riposte%20(ranger)_crb","p":175,"a":"Ranger","h":1,"n":"Twin Riposte"},{"c":0,"s":5,"id":4060,"u":"twin%20takedown_crb","p":171,"h":1,"n":"Twin Takedown"},{"c":0,"s":5,"id":4061,"u":"twinned%20defense%20(fighter)_crb","p":153,"a":"Fighter","h":1,"n":"Twinned Defense"},{"c":0,"s":5,"id":4062,"u":"twist%20the%20knife_crb","p":186,"h":1,"n":"Twist The Knife"},{"c":0,"s":5,"id":4063,"u":"two-weapon%20flurry_crb","p":153,"h":1,"n":"Two-Weapon Flurry"},{"c":0,"s":5,"id":4064,"u":"ubiquitous%20snares_crb","p":177,"h":1,"n":"Ubiquitous Snares"},{"c":0,"s":5,"id":4065,"u":"ultimate%20mercy_crb","p":115,"h":1,"n":"Ultimate Mercy"},{"c":0,"s":5,"id":4066,"u":"ultimate%20skirmisher_crb","p":177,"h":1,"n":"Ultimate Skirmisher"},{"c":0,"s":5,"id":4067,"u":"unbalancing%20blow_crb","p":184,"h":1,"n":"Unbalancing Blow"},{"c":0,"s":5,"id":4068,"u":"unburdened%20iron_crb","p":36,"h":1,"n":"Unburdened Iron"},{"c":0,"s":5,"id":4069,"u":"uncanny%20bombs_crb","p":79,"h":1,"n":"Uncanny Bombs"},{"c":0,"s":5,"id":4070,"u":"uncanny%20dodge_crb","p":229,"h":1,"n":"Uncanny Dodge"},{"c":0,"s":5,"id":4071,"u":"unconventional%20expertise_crb","p":58,"h":1,"n":"Unconventional Expertise"},{"c":0,"s":5,"id":4072,"u":"unconventional%20weaponry_crb","p":57,"h":1,"n":"Unconventional Weaponry"},{"c":0,"s":5,"id":4073,"u":"underwater%20marauder_crb","p":268,"h":1,"n":"Underwater Marauder"},{"c":0,"s":5,"id":4074,"u":"unfettered%20halfling_crb","p":52,"h":1,"n":"Unfettered Halfling"},{"c":0,"s":5,"id":4075,"u":"unified%20theory_crb","p":268,"h":1,"n":"Unified Theory"},{"c":0,"s":5,"id":4076,"u":"unimpeded%20step_crb","p":109,"h":1,"n":"Unimpeded Step"},{"c":0,"s":5,"id":4077,"u":"universal%20longevity_crb","p":41,"h":1,"n":"Universal Longevity"},{"c":0,"s":5,"id":4078,"u":"universal%20versatility_crb","p":211,"h":1,"n":"Universal Versatility"},{"c":0,"s":5,"id":4079,"u":"unmistakable%20lore_crb","p":268,"h":1,"n":"Unmistakable Lore"},{"c":0,"s":5,"id":4080,"u":"untrained%20improvisation_crb","p":268,"h":1,"n":"Untrained Improvisation"},{"c":0,"s":5,"id":4081,"u":"unusual%20composition_crb","p":102,"h":1,"n":"Unusual Composition"},{"c":0,"s":5,"id":4082,"u":"unwavering%20mien_crb","p":40,"h":1,"n":"Unwavering Mien"},{"c":0,"s":5,"id":4083,"u":"vengeful%20hatred_crb","p":36,"h":1,"n":"Vengeful Hatred"},{"c":0,"s":5,"id":4084,"u":"vengeful%20oath_crb","p":111,"h":1,"n":"Vengeful Oath"},{"c":0,"s":5,"id":4085,"u":"vengeful%20strike_crb","p":93,"h":1,"n":"Vengeful Strike"},{"c":0,"s":5,"id":4086,"u":"verdant%20metamorphosis_crb","p":139,"h":1,"n":"Verdant Metamorphosis"},{"c":0,"s":5,"id":4087,"u":"versatile%20font_crb","p":122,"h":1,"n":"Versatile Font"},{"c":0,"s":5,"id":4088,"u":"versatile%20performance_crb","p":100,"h":1,"n":"Versatile Performance"},{"c":0,"s":5,"id":4089,"u":"versatile%20signature_crb","p":101,"h":1,"n":"Versatile Signature"},{"c":0,"s":5,"id":4090,"u":"very%20sneaky_crb","p":49,"h":1,"n":"Very Sneaky"},{"c":0,"s":5,"id":4091,"u":"very%2c%20very%20sneaky_crb","p":49,"h":1,"n":"Very, Very Sneaky"},{"c":0,"s":5,"id":4092,"u":"vicious%20debilitations_crb","p":187,"h":1,"n":"Vicious Debilitations"},{"c":0,"s":5,"id":4093,"u":"vicious%20evisceration_crb","p":93,"h":1,"n":"Vicious Evisceration"},{"c":0,"s":5,"id":4094,"u":"victorious%20vigor_crb","p":59,"h":1,"n":"Victorious Vigor"},{"c":0,"s":5,"id":4095,"u":"virtuosic%20performer_crb","p":268,"h":1,"n":"Virtuosic Performer"},{"c":0,"s":5,"id":4096,"u":"vivacious%20conduit_crb","p":45,"h":1,"n":"Vivacious Conduit"},{"c":0,"s":5,"id":4097,"u":"wall%20jump_crb","p":269,"h":1,"n":"Wall Jump"},{"c":0,"s":5,"id":4098,"u":"wall%20run_crb","p":163,"h":1,"n":"Wall Run"},{"c":0,"s":5,"id":4099,"u":"ward%20medic_crb","p":269,"h":1,"n":"Ward Medic"},{"c":0,"s":5,"id":4100,"u":"warden's%20boon_crb","p":174,"h":1,"n":"Warden's Boon"},{"c":0,"s":5,"id":4101,"u":"warden's%20guidance_crb","p":176,"h":1,"n":"Warden's Guidance"},{"c":0,"s":5,"id":4102,"u":"warden's%20step_crb","p":175,"h":1,"n":"Warden's Step"},{"c":0,"s":5,"id":4103,"u":"wary%20disarmament_crb","p":269,"h":1,"n":"Wary Disarmament"},{"c":0,"s":5,"id":4104,"u":"watchful%20halfling_crb","p":52,"h":1,"n":"Watchful Halfling"},{"c":0,"s":5,"id":4105,"u":"water%20step_crb","p":162,"h":1,"n":"Water Step"},{"c":0,"s":5,"id":4106,"u":"weapon%20proficiency_crb","p":269,"h":1,"n":"Weapon Proficiency"},{"c":0,"s":5,"id":4107,"u":"weapon%20supremacy_crb","p":153,"h":1,"n":"Weapon Supremacy"},{"c":0,"s":5,"id":4108,"u":"weight%20of%20guilt_crb","p":110,"h":1,"n":"Weight Of Guilt"},{"c":0,"s":5,"id":4109,"u":"whirling%20throw_crb","p":162,"h":1,"n":"Whirling Throw"},{"c":0,"s":5,"id":4110,"u":"whirlwind%20strike%20(barbarian)_crb","p":93,"a":"Barbarian","h":1,"n":"Whirlwind Strike"},{"c":0,"s":5,"id":4111,"u":"whirlwind%20strike%20(fighter)_crb","p":153,"a":"Fighter","h":1,"n":"Whirlwind Strike"},{"c":0,"s":5,"id":4112,"u":"wholeness%20of%20body_crb","p":160,"h":1,"n":"Wholeness Of Body"},{"c":0,"s":5,"id":4113,"u":"widen%20spell%20(druid)_crb","p":134,"a":"Druid","h":1,"n":"Widen Spell"},{"c":0,"s":5,"id":4114,"u":"widen%20spell%20(sorcerer)_crb","p":198,"a":"Sorcerer","h":1,"n":"Widen Spell"},{"c":0,"s":5,"id":4115,"u":"widen%20spell%20(wizard)_crb","p":210,"a":"Wizard","h":1,"n":"Widen Spell"},{"c":0,"s":5,"id":4116,"u":"wild%20empathy_crb","p":172,"h":1,"n":"Wild Empathy"},{"c":0,"s":5,"id":4117,"u":"wild%20shape_crb","p":134,"h":1,"n":"Wild Shape"},{"c":0,"s":5,"id":4118,"u":"wild%20winds%20gust_crb","p":165,"h":1,"n":"Wild Winds Gust"},{"c":0,"s":5,"id":4119,"u":"wild%20winds%20initiate_crb","p":163,"h":1,"n":"Wild Winds Initiate"},{"c":0,"s":5,"id":4120,"u":"wind%20caller_crb","p":137,"h":1,"n":"Wind Caller"},{"c":0,"s":5,"id":4121,"u":"wind%20jump_crb","p":163,"h":1,"n":"Wind Jump"},{"c":0,"s":5,"id":4122,"u":"winding%20flow_crb","p":163,"h":1,"n":"Winding Flow"},{"c":0,"s":5,"id":4123,"u":"wizard%20dedication_crb","p":231,"h":1,"n":"Wizard Dedication"},{"c":0,"s":5,"id":4124,"u":"wolf%20drag_crb","p":162,"h":1,"n":"Wolf Drag"},{"c":0,"s":5,"id":4125,"u":"wolf%20stance_crb","p":159,"h":1,"n":"Wolf Stance"},{"c":0,"s":5,"id":4126,"u":"woodland%20stride_crb","p":135,"h":1,"n":"Woodland Stride"},{"c":0,"s":5,"id":4127,"u":"wounded%20rage_crb","p":90,"h":1,"n":"Wounded Rage"},{"c":0,"s":5,"id":4128,"u":"wyrmbane%20aura_crb","p":115,"h":1,"n":"Wyrmbane Aura"},{"c":0,"s":5,"id":4129,"u":"you're%20next%20(rogue)_crb","p":183,"a":"Rogue","h":1,"n":"You're Next"},{"c":0,"s":12,"id":4130,"u":"encouraging%20words_gmg","p":201,"h":1,"n":"Encouraging Words"},{"c":0,"s":12,"id":4131,"u":"steel%20your%20resolve_gmg","p":201,"h":1,"n":"Steel Your Resolve"},{"c":0,"s":15,"id":4132,"u":"bellflower%20dedication_aoa3","p":75,"h":1,"n":"Bellflower Dedication"},{"c":0,"s":15,"id":4133,"u":"cut%20the%20bonds_aoa3","p":75,"h":1,"n":"Cut The Bonds"},{"c":0,"s":15,"id":4134,"u":"different%20worlds_aoa3","p":73,"h":1,"n":"Different Worlds"},{"c":0,"s":15,"id":4135,"u":"garden%20path_aoa3","p":75,"h":1,"n":"Garden Path"},{"c":0,"s":15,"id":4136,"u":"practiced%20guidance_aoa3","p":75,"h":1,"n":"Practiced Guidance"},{"c":0,"s":15,"id":4137,"u":"reveal%20machinations_aoa3","p":73,"h":1,"n":"Reveal Machinations"},{"c":0,"s":15,"id":4138,"u":"scarecrow_aoa3","p":75,"h":1,"n":"Scarecrow"},{"c":0,"s":15,"id":4139,"u":"secret%20speech_aoa3","p":73,"h":1,"n":"Secret Speech"},{"c":0,"s":15,"id":4140,"u":"silver's%20refrain_aoa3","p":73,"h":1,"n":"Silver's Refrain"},{"c":0,"s":15,"id":4141,"u":"tiller's%20aid_aoa3","p":75,"h":1,"n":"Tiller's Aid"},{"c":0,"s":15,"id":4142,"u":"tiller's%20drive_aoa3","p":75,"h":1,"n":"Tiller's Drive"},{"c":0,"s":15,"id":4143,"u":"tweak%20appearances_aoa3","p":73,"h":1,"n":"Tweak Appearances"},{"c":0,"s":16,"id":4144,"u":"armor%20rune%20shifter_aoa4","p":75,"h":1,"n":"Armor Rune Shifter"},{"c":0,"s":16,"id":4145,"u":"crystal%20keeper%20dedication_aoa4","p":74,"h":1,"n":"Crystal Keeper Dedication"},{"c":0,"s":16,"id":4146,"u":"crystal%20ward%20spells_aoa4","p":74,"h":1,"n":"Crystal Ward Spells"},{"c":0,"s":16,"id":4147,"u":"false%20faith_aoa4","p":63,"h":1,"n":"False Faith"},{"c":0,"s":16,"id":4148,"u":"simple%20crystal%20magic_aoa4","p":74,"h":1,"n":"Simple Crystal Magic"},{"c":0,"s":16,"id":4149,"u":"weapon-rune%20shifter_aoa4","p":75,"h":1,"n":"Weapon-rune Shifter"},{"c":0,"s":17,"id":4150,"u":"deadly%20poison%20weapon_aoa5","p":78,"h":1,"n":"Deadly Poison Weapon"},{"c":0,"s":17,"id":4151,"u":"decry%20thief_aoa5","p":81,"h":1,"n":"Decry Thief"},{"c":0,"s":17,"id":4152,"u":"know%20the%20beat_aoa5","p":81,"h":1,"n":"Know The Beat"},{"c":0,"s":17,"id":4153,"u":"pesh%20skin_aoa5","p":78,"h":1,"n":"Pesh Skin"},{"c":0,"s":17,"id":4154,"u":"relentless%20disarm_aoa5","p":81,"h":1,"n":"Relentless Disarm"},{"c":0,"s":17,"id":4155,"u":"shaped%20contaminant_aoa5","p":78,"h":1,"n":"Shaped Contaminant"},{"c":0,"s":17,"id":4156,"u":"unfazed%20assessment_aoa5","p":81,"h":1,"n":"Unfazed Assessment"},{"c":0,"s":17,"id":4157,"u":"zephyr%20guard%20dedication_aoa5","p":81,"h":1,"n":"Zephyr Guard Dedication"},{"c":0,"s":18,"id":4158,"u":"apex%20companion_aoa6","p":76,"h":1,"n":"Apex Companion"},{"c":0,"s":18,"id":4159,"u":"aura%20of%20unbreakable%20virtue_aoa6","p":76,"h":1,"n":"Aura Of Unbreakable Virtue"},{"c":0,"s":18,"id":4160,"u":"bloodline%20metamorphosis_aoa6","p":76,"h":1,"n":"Bloodline Metamorphosis"},{"c":0,"s":18,"id":4161,"u":"efficient%20alchemy_aoa6","p":76,"h":1,"n":"Efficient Alchemy"},{"c":0,"s":18,"id":4162,"u":"emblazon%20divinity_aoa6","p":76,"h":1,"n":"Emblazon Divinity"},{"c":0,"s":18,"id":4163,"u":"enduring%20debilitation_aoa6","p":76,"h":1,"n":"Enduring Debilitation"},{"c":0,"s":18,"id":4164,"u":"golden%20body_aoa6","p":76,"h":1,"n":"Golden Body"},{"c":0,"s":18,"id":4165,"u":"invulnerable%20juggernaut_aoa6","p":76,"h":1,"n":"Invulnerable Juggernaut"},{"c":0,"s":18,"id":4166,"u":"song%20of%20the%20fallen_aoa6","p":76,"h":1,"n":"Song Of The Fallen"},{"c":0,"s":18,"id":4167,"u":"spell%20mastery_aoa6","p":76,"h":1,"n":"Spell Mastery"},{"c":0,"s":18,"id":4168,"u":"superior%20sight_aoa6","p":77,"h":1,"n":"Superior Sight"},{"c":0,"s":18,"id":4169,"u":"ultimate%20flexibility_aoa6","p":77,"h":1,"n":"Ultimate Flexibility"},{"c":0,"s":19,"id":4170,"u":"arcane%20sensitivity_aoe1","p":79,"h":1,"n":"Arcane Sensitivity"},{"c":0,"s":19,"id":4171,"u":"bolera's%20interrogation_aoe1","p":79,"h":1,"n":"Bolera's Interrogation"},{"c":0,"s":19,"id":4172,"u":"edgewatch%20detective%20dedication_aoe1","p":79,"h":1,"n":"Edgewatch Detective Dedication"},{"c":0,"s":19,"id":4173,"u":"sense%20alignment_aoe1","p":79,"h":1,"n":"Sense Alignment"},{"c":0,"s":20,"id":4174,"u":"cross%20the%20final%20horizon_aoe2","p":79,"h":1,"n":"Cross The Final Horizon"},{"c":0,"s":20,"id":4175,"u":"heaven's%20thunder_aoe2","p":78,"h":1,"n":"Heaven's Thunder"},{"c":0,"s":20,"id":4176,"u":"jalmeri%20heavenseeker%20dedication_aoe2","p":78,"h":1,"n":"Jalmeri Heavenseeker Dedication"},{"c":0,"s":20,"id":4177,"u":"sky%20and%20heaven%20stance_aoe2","p":78,"h":1,"n":"Sky And Heaven Stance"},{"c":0,"s":20,"id":4178,"u":"skyseeker_aoe2","p":79,"h":1,"n":"Skyseeker"},{"c":0,"s":20,"id":4179,"u":"speaking%20sky_aoe2","p":79,"h":1,"n":"Speaking Sky"},{"c":0,"s":20,"id":4180,"u":"steal%20the%20sky_aoe2","p":79,"h":1,"n":"Steal The Sky"},{"c":0,"s":21,"id":4181,"u":"ambushing%20knockdown_aoe3","p":75,"h":1,"n":"Ambushing Knockdown"},{"c":0,"s":21,"id":4182,"u":"cartwheel%20dodge_aoe3","p":78,"h":1,"n":"Cartwheel Dodge"},{"c":0,"s":21,"id":4183,"u":"coordinated%20distraction_aoe3","p":75,"h":1,"n":"Coordinated Distraction"},{"c":0,"s":21,"id":4184,"u":"deny%20support_aoe3","p":75,"h":1,"n":"Deny Support"},{"c":0,"s":21,"id":4185,"u":"flourishing%20finish_aoe3","p":78,"h":1,"n":"Flourishing Finish"},{"c":0,"s":21,"id":4186,"u":"murderer's%20circle_aoe3","p":78,"h":1,"n":"Murderer's Circle"},{"c":0,"s":21,"id":4187,"u":"performance%20weapon%20expert_aoe3","p":78,"h":1,"n":"Performance Weapon Expert"},{"c":0,"s":21,"id":4188,"u":"pin%20to%20the%20spot_aoe3","p":78,"h":1,"n":"Pin To The Spot"},{"c":0,"s":21,"id":4189,"u":"provocator%20dedication_aoe3","p":78,"h":1,"n":"Provocator Dedication"},{"c":0,"s":21,"id":4190,"u":"slice%20and%20swipe_aoe3","p":75,"h":1,"n":"Slice And Swipe"},{"c":0,"s":21,"id":4191,"u":"subtle%20shank_aoe3","p":75,"h":1,"n":"Subtle Shank"},{"c":0,"s":25,"id":4192,"u":"ghost%20hunter%20dedication_av1","p":81,"h":1,"n":"Ghost Hunter Dedication"},{"c":0,"s":25,"id":4193,"u":"ghost%20strike_av1","p":81,"h":1,"n":"Ghost Strike"},{"c":0,"s":25,"id":4194,"u":"grave's%20voice_av1","p":81,"h":1,"n":"Grave's Voice"},{"c":0,"s":25,"id":4195,"u":"investigate%20haunting_av1","p":81,"h":1,"n":"Investigate Haunting"},{"c":0,"s":25,"id":4196,"u":"peer%20beyond_av1","p":81,"h":1,"n":"Peer Beyond"},{"c":0,"s":25,"id":4197,"u":"spirit%20spells_av1","p":81,"h":1,"n":"Spirit Spells"},{"c":0,"s":26,"id":4198,"u":"able%20ritualist_av2","p":76,"h":1,"n":"Able Ritualist"},{"c":0,"s":26,"id":4199,"u":"advanced%20seeker%20of%20truths_av2","p":77,"h":1,"n":"Advanced Seeker Of Truths"},{"c":0,"s":26,"id":4200,"u":"eldritch%20researcher%20dedication_av2","p":76,"h":1,"n":"Eldritch Researcher Dedication"},{"c":0,"s":26,"id":4201,"u":"entities%20from%20afar_av2","p":77,"h":1,"n":"Entities From Afar"},{"c":0,"s":26,"id":4202,"u":"incredible%20recollection_av2","p":77,"h":1,"n":"Incredible Recollection"},{"c":0,"s":26,"id":4203,"u":"know%20it%20all_av2","p":76,"h":1,"n":"Know It All"},{"c":0,"s":26,"id":4204,"u":"lorefinder_av2","p":76,"h":1,"n":"Lorefinder"},{"c":0,"s":26,"id":4205,"u":"scholarly%20defense_av2","p":76,"h":1,"n":"Scholarly Defense"},{"c":0,"s":26,"id":4206,"u":"seeker%20of%20truths_av2","p":76,"h":1,"n":"Seeker Of Truths"},{"c":0,"s":26,"id":4207,"u":"strange%20script_av2","p":76,"h":1,"n":"Strange Script"},{"c":0,"s":26,"id":4208,"u":"words%20of%20unraveling_av2","p":77,"h":1,"n":"Words Of Unraveling"},{"c":0,"s":27,"id":4209,"u":"drow%20shootist%20dedication_av3","p":77,"h":1,"n":"Drow Shootist Dedication"},{"c":0,"s":27,"id":4210,"u":"lethargy%20poisoner_av3","p":77,"h":1,"n":"Lethargy Poisoner"},{"c":0,"s":27,"id":4211,"u":"reloading%20trick_av3","p":77,"h":1,"n":"Reloading Trick"},{"c":0,"s":27,"id":4212,"u":"repeating%20hand%20crossbow%20training_av3","p":77,"h":1,"n":"Repeating Hand Crossbow Training"},{"c":0,"s":28,"id":4213,"u":"bullying%20staff_ec1","p":75,"h":1,"n":"Bullying Staff"},{"c":0,"s":28,"id":4214,"u":"focused%20juggler_ec1","p":74,"h":1,"n":"Focused Juggler"},{"c":0,"s":28,"id":4215,"u":"juggle_ec1","p":76,"h":1,"n":"Juggle"},{"c":0,"s":28,"id":4216,"u":"juggler%20dedication_ec1","p":74,"h":1,"n":"Juggler Dedication"},{"c":0,"s":28,"id":4217,"u":"levering%20strike_ec1","p":75,"h":1,"n":"Levering Strike"},{"c":0,"s":28,"id":4218,"u":"lobbed%20attack_ec1","p":74,"h":1,"n":"Lobbed Attack"},{"c":0,"s":28,"id":4219,"u":"opportune%20throw_ec1","p":74,"h":1,"n":"Opportune Throw"},{"c":0,"s":28,"id":4220,"u":"pivot%20strike_ec1","p":75,"h":1,"n":"Pivot Strike"},{"c":0,"s":28,"id":4221,"u":"quick%20juggler_ec1","p":74,"h":1,"n":"Quick Juggler"},{"c":0,"s":28,"id":4222,"u":"reflexive%20catch_ec1","p":74,"h":1,"n":"Reflexive Catch"},{"c":0,"s":28,"id":4223,"u":"staff%20acrobat%20dedication_ec1","p":75,"h":1,"n":"Staff Acrobat Dedication"},{"c":0,"s":28,"id":4224,"u":"staff%20sweep_ec1","p":75,"h":1,"n":"Staff Sweep"},{"c":0,"s":28,"id":4225,"u":"whirlwind%20stance_ec1","p":75,"h":1,"n":"Whirlwind Stance"},{"c":0,"s":29,"id":4226,"u":"animal%20trainer%20dedication_ec2","p":75,"h":1,"n":"Animal Trainer Dedication"},{"c":0,"s":29,"id":4227,"u":"beast%20speaker_ec2","p":75,"h":1,"n":"Beast Speaker"},{"c":0,"s":29,"id":4228,"u":"insistent%20command_ec2","p":75,"h":1,"n":"Insistent Command"},{"c":0,"s":29,"id":4229,"u":"mature%20trained%20companion_ec2","p":75,"h":1,"n":"Mature Trained Companion"},{"c":0,"s":29,"id":4230,"u":"specialized%20companion_ec2","p":75,"h":1,"n":"Specialized Companion"},{"c":0,"s":29,"id":4231,"u":"splendid%20companion_ec2","p":75,"h":1,"n":"Splendid Companion"},{"c":0,"s":8,"id":4232,"u":"accursed%20clay%20fist_ec3","p":74,"h":1,"n":"Accursed Clay Fist"},{"c":0,"s":8,"id":4233,"u":"axe%20climber_ec3","p":75,"h":1,"n":"Axe Climber"},{"c":0,"s":8,"id":4234,"u":"axe%20thrower_ec3","p":75,"h":1,"n":"Axe Thrower"},{"c":0,"s":8,"id":4235,"u":"dig%20quickly_ec3","p":72,"h":1,"n":"Dig Quickly"},{"c":0,"s":8,"id":4236,"u":"esteemed%20visitor_ec3","p":72,"h":1,"n":"Esteemed Visitor"},{"c":0,"s":8,"id":4237,"u":"golem%20grafter%20dedication_ec3","p":74,"h":1,"n":"Golem Grafter Dedication"},{"c":0,"s":8,"id":4238,"u":"handy%20with%20your%20paws_ec3","p":72,"h":1,"n":"Handy With Your Paws"},{"c":0,"s":8,"id":4239,"u":"improvisational%20defender_ec3","p":72,"h":1,"n":"Improvisational Defender"},{"c":0,"s":8,"id":4240,"u":"improvisational%20warrior_ec3","p":73,"h":1,"n":"Improvisational Warrior"},{"c":0,"s":8,"id":4241,"u":"iron%20lung_ec3","p":74,"h":1,"n":"Iron Lung"},{"c":0,"s":8,"id":4242,"u":"legs%20of%20stone_ec3","p":74,"h":1,"n":"Legs Of Stone"},{"c":0,"s":8,"id":4243,"u":"log%20roll_ec3","p":75,"h":1,"n":"Log Roll"},{"c":0,"s":8,"id":4244,"u":"loyal%20empath_ec3","p":73,"h":1,"n":"Loyal Empath"},{"c":0,"s":8,"id":4245,"u":"practiced%20paddler_ec3","p":73,"h":1,"n":"Practiced Paddler"},{"c":0,"s":8,"id":4246,"u":"quicken%20heartbeat_ec3","p":74,"h":1,"n":"Quicken Heartbeat"},{"c":0,"s":8,"id":4247,"u":"ravening's%20desperation_ec3","p":67,"h":1,"n":"Ravening's Desperation"},{"c":0,"s":8,"id":4248,"u":"scamper%20underfoot_ec3","p":72,"h":1,"n":"Scamper Underfoot"},{"c":0,"s":8,"id":4249,"u":"shoony%20lore_ec3","p":72,"h":1,"n":"Shoony Lore"},{"c":0,"s":8,"id":4250,"u":"sodbuster_ec3","p":73,"h":1,"n":"Sodbuster"},{"c":0,"s":8,"id":4251,"u":"steadfast%20ally_ec3","p":73,"h":1,"n":"Steadfast Ally"},{"c":0,"s":8,"id":4252,"u":"tough%20tumbler_ec3","p":73,"h":1,"n":"Tough Tumbler"},{"c":0,"s":8,"id":4253,"u":"turpin%20rowe%20lumberjack%20dedication_ec3","p":75,"h":1,"n":"Turpin Rowe Lumberjack Dedication"},{"c":0,"s":8,"id":4254,"u":"unrivaled%20builder_ec3","p":73,"h":1,"n":"Unrivaled Builder"},{"c":0,"s":8,"id":4255,"u":"widen%20the%20gap_ec3","p":75,"h":1,"n":"Widen The Gap"},{"c":0,"s":32,"id":4256,"u":"annihilating%20swing_ec6","p":72,"h":1,"n":"Annihilating Swing"},{"c":0,"s":32,"id":4257,"u":"astonishing%20explosion_ec6","p":72,"h":1,"n":"Astonishing Explosion"},{"c":0,"s":32,"id":4258,"u":"banishing%20blow_ec6","p":72,"h":1,"n":"Banishing Blow"},{"c":0,"s":32,"id":4259,"u":"denier%20of%20destruction_ec6","p":72,"h":1,"n":"Denier Of Destruction"},{"c":0,"s":32,"id":4260,"u":"endurance%20of%20the%20rooted%20tree_ec6","p":72,"h":1,"n":"Endurance Of The Rooted Tree"},{"c":0,"s":32,"id":4261,"u":"mimic%20protections_ec6","p":72,"h":1,"n":"Mimic Protections"},{"c":0,"s":32,"id":4262,"u":"reclaim%20spell_ec6","p":72,"h":1,"n":"Reclaim Spell"},{"c":0,"s":32,"id":4263,"u":"reflecting%20riposte_ec6","p":72,"h":1,"n":"Reflecting Riposte"},{"c":0,"s":32,"id":4264,"u":"ringmaster's%20introduction_ec6","p":73,"h":1,"n":"Ringmaster's Introduction"},{"c":0,"s":32,"id":4265,"u":"steal%20essence_ec6","p":73,"h":1,"n":"Steal Essence"},{"c":0,"s":32,"id":4266,"u":"tenacious%20blood%20magic_ec6","p":73,"h":1,"n":"Tenacious Blood Magic"},{"c":0,"s":32,"id":4267,"u":"verdant%20presence_ec6","p":73,"h":1,"n":"Verdant Presence"},{"c":0,"s":33,"id":4268,"u":"relentless%20stalker_fop","p":57,"h":1,"n":"Relentless Stalker"},{"c":0,"s":33,"id":4269,"u":"wilderness%20spotter_fop","p":57,"h":1,"n":"Wilderness Spotter"},{"c":0,"s":34,"id":4270,"u":"butterfly%20blade%20dedication_frp1","p":78,"h":1,"n":"Butterfly Blade Dedication"},{"c":0,"s":34,"id":4271,"u":"butterfly's%20kiss_frp1","p":78,"h":1,"n":"Butterfly's Kiss"},{"c":0,"s":34,"id":4272,"u":"butterfly's%20sting_frp1","p":78,"h":1,"n":"Butterfly's Sting"},{"c":0,"s":34,"id":4273,"u":"cross%20the%20threshold_frp1","p":79,"h":1,"n":"Cross The Threshold"},{"c":0,"s":34,"id":4274,"u":"deadly%20butterfly_frp1","p":78,"h":1,"n":"Deadly Butterfly"},{"c":0,"s":34,"id":4275,"u":"disrupting%20strikes_frp1","p":79,"h":1,"n":"Disrupting Strikes"},{"c":0,"s":34,"id":4276,"u":"entwined%20energy%20ki_frp1","p":74,"h":1,"n":"Entwined Energy Ki"},{"c":0,"s":34,"id":4277,"u":"ghost%20eater%20dedication_frp1","p":79,"h":1,"n":"Ghost Eater Dedication"},{"c":0,"s":34,"id":4278,"u":"innocent%20butterfly_frp1","p":78,"h":1,"n":"Innocent Butterfly"},{"c":0,"s":34,"id":4279,"u":"mastermind's%20eye_frp1","p":78,"h":1,"n":"Mastermind's Eye"},{"c":0,"s":34,"id":4280,"u":"reach%20beyond_frp1","p":79,"h":1,"n":"Reach Beyond"},{"c":0,"s":34,"id":4281,"u":"syu%20tak-nwa's%20deadly%20hair_frp1","p":74,"h":1,"n":"Syu Tak-nwa's Deadly Hair"},{"c":0,"s":34,"id":4282,"u":"syu%20tak-nwa's%20hexed%20locks_frp1","p":74,"h":1,"n":"Syu Tak-nwa's Hexed Locks"},{"c":0,"s":34,"id":4283,"u":"syu%20tak-nwa's%20skillful%20tresses_frp1","p":74,"h":1,"n":"Syu Tak-nwa's Skillful Tresses"},{"c":0,"s":34,"id":4284,"u":"wronged%20monk's%20wrath_frp1","p":74,"h":1,"n":"Wronged Monk's Wrath"},{"c":0,"s":35,"id":4285,"u":"beneath%20notice_frp2","p":76,"h":1,"n":"Beneath Notice"},{"c":0,"s":35,"id":4286,"u":"effortless%20reach_frp2","p":75,"h":1,"n":"Effortless Reach"},{"c":0,"s":35,"id":4287,"u":"electric%20counter_frp2","p":75,"h":1,"n":"Electric Counter"},{"c":0,"s":35,"id":4288,"u":"golden%20league%20xun%20dedication_frp2","p":76,"h":1,"n":"Golden League Xun Dedication"},{"c":0,"s":35,"id":4289,"u":"jellyfish%20stance_frp2","p":75,"h":1,"n":"Jellyfish Stance"},{"c":0,"s":35,"id":4290,"u":"maneuvering%20spell_frp2","p":77,"h":1,"n":"Maneuvering Spell"},{"c":0,"s":35,"id":4291,"u":"menacing%20prowess_frp2","p":76,"h":1,"n":"Menacing Prowess"},{"c":0,"s":35,"id":4292,"u":"rope%20mastery_frp2","p":76,"h":1,"n":"Rope Mastery"},{"c":0,"s":35,"id":4293,"u":"sense%20ki_frp2","p":75,"h":1,"n":"Sense Ki"},{"c":0,"s":35,"id":4294,"u":"shift%20spell_frp2","p":75,"h":1,"n":"Shift Spell"},{"c":0,"s":35,"id":4295,"u":"silent%20sting_frp2","p":76,"h":1,"n":"Silent Sting"},{"c":0,"s":35,"id":4296,"u":"six%20pillars%20stance_frp2","p":77,"h":1,"n":"Six Pillars Stance"},{"c":0,"s":35,"id":4297,"u":"sixth%20pillar%20dedication_frp2","p":77,"h":1,"n":"Sixth Pillar Dedication"},{"c":0,"s":35,"id":4298,"u":"sixth%20pillar%20mastery_frp2","p":77,"h":1,"n":"Sixth Pillar Mastery"},{"c":0,"s":35,"id":4299,"u":"touch%20focus_frp2","p":77,"h":1,"n":"Touch Focus"},{"c":0,"s":36,"id":4300,"u":"all%20the%20time%20in%20the%20world_frp3","p":75,"h":1,"n":"All The Time In The World"},{"c":0,"s":36,"id":4301,"u":"dance%20of%20intercession_frp3","p":75,"h":1,"n":"Dance Of Intercession"},{"c":0,"s":36,"id":4302,"u":"demon's%20hair_frp3","p":75,"h":1,"n":"Demon's Hair"},{"c":0,"s":36,"id":4303,"u":"everdistant%20defense_frp3","p":75,"h":1,"n":"Everdistant Defense"},{"c":0,"s":36,"id":4304,"u":"extradimensional%20stash_frp3","p":75,"h":1,"n":"Extradimensional Stash"},{"c":0,"s":36,"id":4305,"u":"head%20of%20the%20night%20parade_frp3","p":75,"h":1,"n":"Head Of The Night Parade"},{"c":0,"s":36,"id":4306,"u":"heart%20of%20the%20kaiju_frp3","p":76,"h":1,"n":"Heart Of The Kaiju"},{"c":0,"s":36,"id":4307,"u":"plum%20deluge_frp3","p":76,"h":1,"n":"Plum Deluge"},{"c":0,"s":36,"id":4308,"u":"ruby%20resurrection_frp3","p":76,"h":1,"n":"Ruby Resurrection"},{"c":0,"s":36,"id":4309,"u":"scapegoat%20parallel%20self_frp3","p":76,"h":1,"n":"Scapegoat Parallel Self"},{"c":0,"s":36,"id":4310,"u":"sever%20space_frp3","p":77,"h":1,"n":"Sever Space"},{"c":0,"s":36,"id":4311,"u":"time%20dilation%20cascade_frp3","p":77,"h":1,"n":"Time Dilation Cascade"},{"c":0,"s":36,"id":4312,"u":"vitality-manipulating%20stance_frp3","p":77,"h":1,"n":"Vitality-manipulating Stance"},{"c":0,"s":36,"id":4313,"u":"vivacious%20afterimage_frp3","p":77,"h":1,"n":"Vivacious Afterimage"},{"c":0,"s":36,"id":4314,"u":"whirlwind%20toss_frp3","p":77,"h":1,"n":"Whirlwind Toss"},{"c":0,"s":36,"id":4315,"u":"worldsphere%20gravity_frp3","p":77,"h":1,"n":"Worldsphere Gravity"},{"c":0,"s":2,"id":4316,"u":"adaptive%20vision_g%26g","p":200,"h":1,"n":"Adaptive Vision"},{"c":0,"s":2,"id":4317,"u":"advanced%20breakthrough_g%26g","p":49,"h":1,"n":"Advanced Breakthrough"},{"c":0,"s":2,"id":4318,"u":"advanced%20construct%20companion_g%26g","p":26,"h":1,"n":"Advanced Construct Companion"},{"c":0,"s":2,"id":4319,"u":"advanced%20shooter_g%26g","p":113,"h":1,"n":"Advanced Shooter"},{"c":0,"s":2,"id":4320,"u":"advanced%20shooting_g%26g","p":127,"h":1,"n":"Advanced Shooting"},{"c":0,"s":2,"id":4321,"u":"alchemical%20shot_g%26g","p":112,"h":1,"n":"Alchemical Shot"},{"c":0,"s":2,"id":4322,"u":"arcane%20camouflage_g%26g","p":41,"h":1,"n":"Arcane Camouflage"},{"c":0,"s":2,"id":4323,"u":"arcane%20communication_g%26g","p":40,"h":1,"n":"Arcane Communication"},{"c":0,"s":2,"id":4324,"u":"arcane%20eye_g%26g","p":40,"h":1,"n":"Arcane Eye"},{"c":0,"s":2,"id":4325,"u":"arcane%20locomotion_g%26g","p":42,"h":1,"n":"Arcane Locomotion"},{"c":0,"s":2,"id":4326,"u":"arcane%20propulsion_g%26g","p":41,"h":1,"n":"Arcane Propulsion"},{"c":0,"s":2,"id":4327,"u":"arcane%20safeguards_g%26g","p":41,"h":1,"n":"Arcane Safeguards"},{"c":0,"s":2,"id":4328,"u":"arcane%20slam_g%26g","p":41,"h":1,"n":"Arcane Slam"},{"c":0,"s":2,"id":4329,"u":"artillerist%20dedication_g%26g","p":128,"h":1,"n":"Artillerist Dedication"},{"c":0,"s":2,"id":4330,"u":"astral%20blink_g%26g","p":42,"h":1,"n":"Astral Blink"},{"c":0,"s":2,"id":4331,"u":"automaton%20armament_g%26g","p":39,"h":1,"n":"Automaton Armament"},{"c":0,"s":2,"id":4332,"u":"automaton%20lore_g%26g","p":40,"h":1,"n":"Automaton Lore"},{"c":0,"s":2,"id":4333,"u":"axial%20recall_g%26g","p":43,"h":1,"n":"Axial Recall"},{"c":0,"s":2,"id":4334,"u":"banshee%20cry%20display_g%26g","p":135,"h":1,"n":"Banshee Cry Display"},{"c":0,"s":2,"id":4335,"u":"basic%20beast%20gunner%20spellcasting_g%26g","p":131,"h":1,"n":"Basic Beast Gunner Spellcasting"},{"c":0,"s":2,"id":4336,"u":"basic%20breakthrough_g%26g","p":49,"h":1,"n":"Basic Breakthrough"},{"c":0,"s":2,"id":4337,"u":"basic%20modification_g%26g","p":49,"h":1,"n":"Basic Modification"},{"c":0,"s":2,"id":4338,"u":"basic%20shooting_g%26g","p":127,"h":1,"n":"Basic Shooting"},{"c":0,"s":2,"id":4339,"u":"beast%20dynamo%20howl_g%26g","p":53,"h":1,"n":"Beast Dynamo Howl"},{"c":0,"s":2,"id":4340,"u":"beast%20gunner%20dedication_g%26g","p":130,"h":1,"n":"Beast Gunner Dedication"},{"c":0,"s":2,"id":4341,"u":"black%20powder%20blaze_g%26g","p":132,"h":1,"n":"Black Powder Blaze"},{"c":0,"s":2,"id":4342,"u":"black%20powder%20boost_g%26g","p":112,"h":1,"n":"Black Powder Boost"},{"c":0,"s":2,"id":4343,"u":"black%20powder%20embodiment_g%26g","p":141,"h":1,"n":"Black Powder Embodiment"},{"c":0,"s":2,"id":4344,"u":"blast%20lock_g%26g","p":111,"h":1,"n":"Blast Lock"},{"c":0,"s":2,"id":4345,"u":"blast%20resistance_g%26g","p":200,"h":1,"n":"Blast Resistance"},{"c":0,"s":2,"id":4346,"u":"blast%20tackle_g%26g","p":117,"h":1,"n":"Blast Tackle"},{"c":0,"s":2,"id":4347,"u":"blood%20in%20the%20air_g%26g","p":116,"h":1,"n":"Blood In The Air"},{"c":0,"s":2,"id":4348,"u":"boost%20modulation_g%26g","p":29,"h":1,"n":"Boost Modulation"},{"c":0,"s":2,"id":4349,"u":"brilliant%20crafter_g%26g","p":49,"h":1,"n":"Brilliant Crafter"},{"c":0,"s":2,"id":4350,"u":"built-in%20tools_g%26g","p":24,"h":1,"n":"Built-in Tools"},{"c":0,"s":2,"id":4351,"u":"bullet%20dancer%20burn_g%26g","p":132,"h":1,"n":"Bullet Dancer Burn"},{"c":0,"s":2,"id":4352,"u":"bullet%20dancer%20dedication_g%26g","p":132,"h":1,"n":"Bullet Dancer Dedication"},{"c":0,"s":2,"id":4353,"u":"bullet%20dancer%20reload_g%26g","p":132,"h":1,"n":"Bullet Dancer Reload"},{"c":0,"s":2,"id":4354,"u":"bullet%20split_g%26g","p":114,"h":1,"n":"Bullet Split"},{"c":0,"s":2,"id":4355,"u":"call%20gun_g%26g","p":141,"h":1,"n":"Call Gun"},{"c":0,"s":2,"id":4356,"u":"called%20shot_g%26g","p":115,"h":1,"n":"Called Shot"},{"c":0,"s":2,"id":4357,"u":"cannon%20corner%20shot_g%26g","p":129,"h":1,"n":"Cannon Corner Shot"},{"c":0,"s":2,"id":4358,"u":"cauterize_g%26g","p":113,"h":1,"n":"Cauterize"},{"c":0,"s":2,"id":4359,"u":"chain%20reaction_g%26g","p":143,"h":1,"n":"Chain Reaction"},{"c":0,"s":2,"id":4360,"u":"clan%20pistol_g%26g","p":200,"h":1,"n":"Clan Pistol"},{"c":0,"s":2,"id":4361,"u":"clockwork%20celerity_g%26g","p":27,"h":1,"n":"Clockwork Celerity"},{"c":0,"s":2,"id":4362,"u":"collapse%20armor_g%26g","p":25,"h":1,"n":"Collapse Armor"},{"c":0,"s":2,"id":4363,"u":"collapse%20construct_g%26g","p":25,"h":1,"n":"Collapse Construct"},{"c":0,"s":2,"id":4364,"u":"collapse%20wall_g%26g","p":133,"h":1,"n":"Collapse Wall"},{"c":0,"s":2,"id":4365,"u":"come%20at%20me!_g%26g","p":117,"h":1,"n":"Come At Me!"},{"c":0,"s":2,"id":4366,"u":"concentrated%20assault_g%26g","p":139,"h":1,"n":"Concentrated Assault"},{"c":0,"s":2,"id":4367,"u":"construct%20shell_g%26g","p":27,"h":1,"n":"Construct Shell"},{"c":0,"s":2,"id":4368,"u":"contingency%20gadgets_g%26g","p":29,"h":1,"n":"Contingency Gadgets"},{"c":0,"s":2,"id":4369,"u":"control%20tower_g%26g","p":51,"h":1,"n":"Control Tower"},{"c":0,"s":2,"id":4370,"u":"controlled%20blast_g%26g","p":133,"h":1,"n":"Controlled Blast"},{"c":0,"s":2,"id":4371,"u":"controlled%20bullet_g%26g","p":131,"h":1,"n":"Controlled Bullet"},{"c":0,"s":2,"id":4372,"u":"converge_g%26g","p":51,"h":1,"n":"Converge"},{"c":0,"s":2,"id":4373,"u":"core%20attunement_g%26g","p":42,"h":1,"n":"Core Attunement"},{"c":0,"s":2,"id":4374,"u":"core%20cannon_g%26g","p":43,"h":1,"n":"Core Cannon"},{"c":0,"s":2,"id":4375,"u":"core%20rejuvenation_g%26g","p":43,"h":1,"n":"Core Rejuvenation"},{"c":0,"s":2,"id":4376,"u":"coughing%20dragon%20display_g%26g","p":135,"h":1,"n":"Coughing Dragon Display"},{"c":0,"s":2,"id":4377,"u":"cover%20fire_g%26g","p":111,"h":1,"n":"Cover Fire"},{"c":0,"s":2,"id":4378,"u":"crafter's%20instinct_g%26g","p":201,"h":1,"n":"Crafter's Instinct"},{"c":0,"s":2,"id":4379,"u":"crossbow%20crack%20shot_g%26g","p":111,"h":1,"n":"Crossbow Crack Shot"},{"c":0,"s":2,"id":4380,"u":"dance%20of%20thunder_g%26g","p":117,"h":1,"n":"Dance Of Thunder"},{"c":0,"s":2,"id":4381,"u":"dazzling%20bullet_g%26g","p":137,"h":1,"n":"Dazzling Bullet"},{"c":0,"s":2,"id":4382,"u":"deadeye_g%26g","p":117,"h":1,"n":"Deadeye"},{"c":0,"s":2,"id":4383,"u":"deep%20freeze_g%26g","p":29,"h":1,"n":"Deep Freeze"},{"c":0,"s":2,"id":4384,"u":"defensive%20armaments_g%26g","p":111,"h":1,"n":"Defensive Armaments"},{"c":0,"s":2,"id":4385,"u":"deflecting%20shot_g%26g","p":115,"h":1,"n":"Deflecting Shot"},{"c":0,"s":2,"id":4386,"u":"demolitionist_g%26g","p":201,"h":1,"n":"Demolitionist"},{"c":0,"s":2,"id":4387,"u":"demolitionist%20dedication_g%26g","p":133,"h":1,"n":"Demolitionist Dedication"},{"c":0,"s":2,"id":4388,"u":"devastating%20weaponry_g%26g","p":31,"h":1,"n":"Devastating Weaponry"},{"c":0,"s":2,"id":4389,"u":"disruptive%20blur_g%26g","p":118,"h":1,"n":"Disruptive Blur"},{"c":0,"s":2,"id":4390,"u":"distracting%20explosion_g%26g","p":28,"h":1,"n":"Distracting Explosion"},{"c":0,"s":2,"id":4391,"u":"diving%20armor_g%26g","p":26,"h":1,"n":"Diving Armor"},{"c":0,"s":2,"id":4392,"u":"dongun%20education_g%26g","p":200,"h":1,"n":"Dongun Education"},{"c":0,"s":2,"id":4393,"u":"drain%20vitality_g%26g","p":131,"h":1,"n":"Drain Vitality"},{"c":0,"s":2,"id":4394,"u":"drifter's%20juke_g%26g","p":113,"h":1,"n":"Drifter's Juke"},{"c":0,"s":2,"id":4395,"u":"drive-by%20attack_g%26g","p":55,"h":1,"n":"Drive-by Attack"},{"c":0,"s":2,"id":4396,"u":"dual-form%20weapon_g%26g","p":26,"h":1,"n":"Dual-form Weapon"},{"c":0,"s":2,"id":4397,"u":"dual-weapon%20reload_g%26g","p":111,"h":1,"n":"Dual-weapon Reload"},{"c":0,"s":2,"id":4398,"u":"duo's%20aim_g%26g","p":139,"h":1,"n":"Duo's Aim"},{"c":0,"s":2,"id":4399,"u":"eagle%20eye_g%26g","p":127,"h":1,"n":"Eagle Eye"},{"c":0,"s":2,"id":4400,"u":"eagle%20eyes_g%26g","p":139,"h":1,"n":"Eagle Eyes"},{"c":0,"s":2,"id":4401,"u":"efficient%20controls_g%26g","p":57,"h":1,"n":"Efficient Controls"},{"c":0,"s":2,"id":4402,"u":"electrify%20armor_g%26g","p":29,"h":1,"n":"Electrify Armor"},{"c":0,"s":2,"id":4403,"u":"energy%20beam_g%26g","p":40,"h":1,"n":"Energy Beam"},{"c":0,"s":2,"id":4404,"u":"engine%20bay_g%26g","p":56,"h":1,"n":"Engine Bay"},{"c":0,"s":2,"id":4405,"u":"engine%20of%20destruction_g%26g","p":31,"h":1,"n":"Engine Of Destruction"},{"c":0,"s":2,"id":4406,"u":"enlarged%20chassis_g%26g","p":43,"h":1,"n":"Enlarged Chassis"},{"c":0,"s":2,"id":4407,"u":"expert%20beast%20gunner%20spellcasting_g%26g","p":131,"h":1,"n":"Expert Beast Gunner Spellcasting"},{"c":0,"s":2,"id":4408,"u":"expert%20fireworks%20crafter_g%26g","p":135,"h":1,"n":"Expert Fireworks Crafter"},{"c":0,"s":2,"id":4409,"u":"exploit%20opening_g%26g","p":138,"h":1,"n":"Exploit Opening"},{"c":0,"s":2,"id":4410,"u":"explosion_g%26g","p":49,"h":1,"n":"Explosion"},{"c":0,"s":2,"id":4411,"u":"explosive%20entry_g%26g","p":133,"h":1,"n":"Explosive Entry"},{"c":0,"s":2,"id":4412,"u":"explosive%20expert_g%26g","p":201,"h":1,"n":"Explosive Expert"},{"c":0,"s":2,"id":4413,"u":"explosive%20leap_g%26g","p":24,"h":1,"n":"Explosive Leap"},{"c":0,"s":2,"id":4414,"u":"explosive%20maneuver_g%26g","p":30,"h":1,"n":"Explosive Maneuver"},{"c":0,"s":2,"id":4415,"u":"explosive%20savant_g%26g","p":200,"h":1,"n":"Explosive Savant"},{"c":0,"s":2,"id":4416,"u":"express%20driver_g%26g","p":55,"h":1,"n":"Express Driver"},{"c":0,"s":2,"id":4417,"u":"fake%20out_g%26g","p":112,"h":1,"n":"Fake Out"},{"c":0,"s":2,"id":4418,"u":"fatal%20bullet_g%26g","p":118,"h":1,"n":"Fatal Bullet"},{"c":0,"s":2,"id":4419,"u":"field%20artillery_g%26g","p":129,"h":1,"n":"Field Artillery"},{"c":0,"s":2,"id":4420,"u":"final%20shot_g%26g","p":119,"h":1,"n":"Final Shot"},{"c":0,"s":2,"id":4421,"u":"finessed%20features_g%26g","p":54,"h":1,"n":"Finessed Features"},{"c":0,"s":2,"id":4422,"u":"fire%20savvy_g%26g","p":200,"h":1,"n":"Fire Savvy"},{"c":0,"s":2,"id":4423,"u":"firearm%20expert_g%26g","p":127,"h":1,"n":"Firearm Expert"},{"c":0,"s":2,"id":4424,"u":"firework%20technician%20dedication_g%26g","p":134,"h":1,"n":"Firework Technician Dedication"},{"c":0,"s":2,"id":4425,"u":"flesh%20wound_g%26g","p":117,"h":1,"n":"Flesh Wound"},{"c":0,"s":2,"id":4426,"u":"forewarn_g%26g","p":51,"h":1,"n":"Forewarn"},{"c":0,"s":2,"id":4427,"u":"forge-blessed%20shot_g%26g","p":201,"h":1,"n":"Forge-blessed Shot"},{"c":0,"s":2,"id":4428,"u":"full%20automation_g%26g","p":32,"h":1,"n":"Full Automation"},{"c":0,"s":2,"id":4429,"u":"fulminating%20shot_g%26g","p":141,"h":1,"n":"Fulminating Shot"},{"c":0,"s":2,"id":4430,"u":"gadget%20specialist_g%26g","p":26,"h":1,"n":"Gadget Specialist"},{"c":0,"s":2,"id":4431,"u":"gear%20gnash_g%26g","p":54,"h":1,"n":"Gear Gnash"},{"c":0,"s":2,"id":4432,"u":"gigaton%20strike_g%26g","p":27,"h":1,"n":"Gigaton Strike"},{"c":0,"s":2,"id":4433,"u":"gigavolt_g%26g","p":30,"h":1,"n":"Gigavolt"},{"c":0,"s":2,"id":4434,"u":"goblin%20jubilee%20display_g%26g","p":135,"h":1,"n":"Goblin Jubilee Display"},{"c":0,"s":2,"id":4435,"u":"golem%20dynamo_g%26g","p":53,"h":1,"n":"Golem Dynamo"},{"c":0,"s":2,"id":4436,"u":"greater%20augmentation_g%26g","p":43,"h":1,"n":"Greater Augmentation"},{"c":0,"s":2,"id":4437,"u":"grit%20and%20tenacity_g%26g","p":115,"h":1,"n":"Grit And Tenacity"},{"c":0,"s":2,"id":4438,"u":"gunpowder%20gauntlet_g%26g","p":136,"h":1,"n":"Gunpowder Gauntlet"},{"c":0,"s":2,"id":4439,"u":"gunslinger%20dedication_g%26g","p":127,"h":1,"n":"Gunslinger Dedication"},{"c":0,"s":2,"id":4440,"u":"hair%20trigger_g%26g","p":118,"h":1,"n":"Hair Trigger"},{"c":0,"s":2,"id":4441,"u":"haphazard%20repair_g%26g","p":25,"h":1,"n":"Haphazard Repair"},{"c":0,"s":2,"id":4442,"u":"headshot_g%26g","p":118,"h":1,"n":"Headshot"},{"c":0,"s":2,"id":4443,"u":"helpful%20tinkering_g%26g","p":29,"h":1,"n":"Helpful Tinkering"},{"c":0,"s":2,"id":4444,"u":"hit%20the%20dirt!_g%26g","p":111,"h":1,"n":"Hit The Dirt!"},{"c":0,"s":2,"id":4445,"u":"hot%20foot_g%26g","p":137,"h":1,"n":"Hot Foot"},{"c":0,"s":2,"id":4446,"u":"i%20meant%20to%20do%20that_g%26g","p":143,"h":1,"n":"I Meant To Do That"},{"c":0,"s":2,"id":4447,"u":"impervious%20vehicle_g%26g","p":57,"h":1,"n":"Impervious Vehicle"},{"c":0,"s":2,"id":4448,"u":"incredible%20construct%20companion_g%26g","p":28,"h":1,"n":"Incredible Construct Companion"},{"c":0,"s":2,"id":4449,"u":"instant%20backup_g%26g","p":112,"h":1,"n":"Instant Backup"},{"c":0,"s":2,"id":4450,"u":"instant%20return_g%26g","p":119,"h":1,"n":"Instant Return"},{"c":0,"s":2,"id":4451,"u":"integrated%20armament_g%26g","p":41,"h":1,"n":"Integrated Armament"},{"c":0,"s":2,"id":4452,"u":"inventor%20dedication_g%26g","p":49,"h":1,"n":"Inventor Dedication"},{"c":0,"s":2,"id":4453,"u":"jumping%20jenny%20display_g%26g","p":135,"h":1,"n":"Jumping Jenny Display"},{"c":0,"s":2,"id":4454,"u":"just%20the%20thing!_g%26g","p":31,"h":1,"n":"Just The Thing!"},{"c":0,"s":2,"id":4455,"u":"leap%20and%20fire_g%26g","p":115,"h":1,"n":"Leap And Fire"},{"c":0,"s":2,"id":4456,"u":"lesser%20augmentation_g%26g","p":42,"h":1,"n":"Lesser Augmentation"},{"c":0,"s":2,"id":4457,"u":"live%20ammunition_g%26g","p":129,"h":1,"n":"Live Ammunition"},{"c":0,"s":2,"id":4458,"u":"lock%20on_g%26g","p":29,"h":1,"n":"Lock On"},{"c":0,"s":2,"id":4459,"u":"lucky%20escape_g%26g","p":142,"h":1,"n":"Lucky Escape"},{"c":0,"s":2,"id":4460,"u":"magical%20resistance_g%26g","p":41,"h":1,"n":"Magical Resistance"},{"c":0,"s":2,"id":4461,"u":"manifold%20modifications_g%26g","p":28,"h":1,"n":"Manifold Modifications"},{"c":0,"s":2,"id":4462,"u":"master%20beast%20gunner%20spellcasting_g%26g","p":131,"h":1,"n":"Master Beast Gunner Spellcasting"},{"c":0,"s":2,"id":4463,"u":"master%20siege%20engineer_g%26g","p":129,"h":1,"n":"Master Siege Engineer"},{"c":0,"s":2,"id":4464,"u":"master%20spotter_g%26g","p":51,"h":1,"n":"Master Spotter"},{"c":0,"s":2,"id":4465,"u":"megaton%20strike_g%26g","p":27,"h":1,"n":"Megaton Strike"},{"c":0,"s":2,"id":4466,"u":"megavolt_g%26g","p":27,"h":1,"n":"Megavolt"},{"c":0,"s":2,"id":4467,"u":"miraculous%20flight_g%26g","p":57,"h":1,"n":"Miraculous Flight"},{"c":0,"s":2,"id":4468,"u":"modular%20dynamo_g%26g","p":53,"h":1,"n":"Modular Dynamo"},{"c":0,"s":2,"id":4469,"u":"munitions%20crafter_g%26g","p":111,"h":1,"n":"Munitions Crafter"},{"c":0,"s":2,"id":4470,"u":"munitions%20machinist_g%26g","p":113,"h":1,"n":"Munitions Machinist"},{"c":0,"s":2,"id":4471,"u":"named%20artillery_g%26g","p":128,"h":1,"n":"Named Artillery"},{"c":0,"s":2,"id":4472,"u":"negate%20damage_g%26g","p":31,"h":1,"n":"Negate Damage"},{"c":0,"s":2,"id":4473,"u":"no%20hard%20feelings_g%26g","p":142,"h":1,"n":"No Hard Feelings"},{"c":0,"s":2,"id":4474,"u":"no!%20no!%20i%20created%20you!_g%26g","p":25,"h":1,"n":"No! No! I Created You!"},{"c":0,"s":2,"id":4475,"u":"overdrive%20ally_g%26g","p":28,"h":1,"n":"Overdrive Ally"},{"c":0,"s":2,"id":4476,"u":"overwatch%20dedication_g%26g","p":50,"h":1,"n":"Overwatch Dedication"},{"c":0,"s":2,"id":4477,"u":"paired%20shots_g%26g","p":112,"h":1,"n":"Paired Shots"},{"c":0,"s":2,"id":4478,"u":"paragon%20companion_g%26g","p":30,"h":1,"n":"Paragon Companion"},{"c":0,"s":2,"id":4479,"u":"patch%20job_g%26g","p":56,"h":1,"n":"Patch Job"},{"c":0,"s":2,"id":4480,"u":"penetrating%20fire_g%26g","p":115,"h":1,"n":"Penetrating Fire"},{"c":0,"s":2,"id":4481,"u":"perfect%20readiness_g%26g","p":119,"h":1,"n":"Perfect Readiness"},{"c":0,"s":2,"id":4482,"u":"persistent%20boost_g%26g","p":31,"h":1,"n":"Persistent Boost"},{"c":0,"s":2,"id":4483,"u":"phalanx%20breaker_g%26g","p":113,"h":1,"n":"Phalanx Breaker"},{"c":0,"s":2,"id":4484,"u":"phase%20bullet_g%26g","p":141,"h":1,"n":"Phase Bullet"},{"c":0,"s":2,"id":4485,"u":"phenom's%20verve_g%26g","p":137,"h":1,"n":"Phenom's Verve"},{"c":0,"s":2,"id":4486,"u":"piercing%20critical_g%26g","p":119,"h":1,"n":"Piercing Critical"},{"c":0,"s":2,"id":4487,"u":"pistol%20phenom%20dedication_g%26g","p":136,"h":1,"n":"Pistol Phenom Dedication"},{"c":0,"s":2,"id":4488,"u":"pistol%20twirl_g%26g","p":112,"h":1,"n":"Pistol Twirl"},{"c":0,"s":2,"id":4489,"u":"pistolero's%20challenge_g%26g","p":114,"h":1,"n":"Pistolero's Challenge"},{"c":0,"s":2,"id":4490,"u":"piston%20punch_g%26g","p":53,"h":1,"n":"Piston Punch"},{"c":0,"s":2,"id":4491,"u":"power%20slide_g%26g","p":55,"h":1,"n":"Power Slide"},{"c":0,"s":2,"id":4492,"u":"practiced%20reloads_g%26g","p":127,"h":1,"n":"Practiced Reloads"},{"c":0,"s":2,"id":4493,"u":"precious%20munitions_g%26g","p":115,"h":1,"n":"Precious Munitions"},{"c":0,"s":2,"id":4494,"u":"propeller%20attachment_g%26g","p":54,"h":1,"n":"Propeller Attachment"},{"c":0,"s":2,"id":4495,"u":"prototype%20companion_g%26g","p":25,"h":1,"n":"Prototype Companion"},{"c":0,"s":2,"id":4496,"u":"push%20it_g%26g","p":55,"h":1,"n":"Push It"},{"c":0,"s":2,"id":4497,"u":"quick%20draw_g%26g","p":112,"h":1,"n":"Quick Draw"},{"c":0,"s":2,"id":4498,"u":"rain%20of%20bolts_g%26g","p":42,"h":1,"n":"Rain Of Bolts"},{"c":0,"s":2,"id":4499,"u":"ranged%20disarm_g%26g","p":132,"h":1,"n":"Ranged Disarm"},{"c":0,"s":2,"id":4500,"u":"reach%20for%20the%20sky_g%26g","p":137,"h":1,"n":"Reach For The Sky"},{"c":0,"s":2,"id":4501,"u":"reach%20for%20the%20stars_g%26g","p":119,"h":1,"n":"Reach For The Stars"},{"c":0,"s":2,"id":4502,"u":"rebounding%20assault_g%26g","p":115,"h":1,"n":"Rebounding Assault"},{"c":0,"s":2,"id":4503,"u":"recycled%20cogwheels_g%26g","p":54,"h":1,"n":"Recycled Cogwheels"},{"c":0,"s":2,"id":4504,"u":"redirecting%20shot_g%26g","p":116,"h":1,"n":"Redirecting Shot"},{"c":0,"s":2,"id":4505,"u":"reinforced%20chassis_g%26g","p":40,"h":1,"n":"Reinforced Chassis"},{"c":0,"s":2,"id":4506,"u":"repurposed%20parts_g%26g","p":54,"h":1,"n":"Repurposed Parts"},{"c":0,"s":2,"id":4507,"u":"reverse%20engineer_g%26g","p":25,"h":1,"n":"Reverse Engineer"},{"c":0,"s":2,"id":4508,"u":"ricochet%20legend_g%26g","p":119,"h":1,"n":"Ricochet Legend"},{"c":0,"s":2,"id":4509,"u":"ricochet%20master_g%26g","p":119,"h":1,"n":"Ricochet Master"},{"c":0,"s":2,"id":4510,"u":"ricochet%20shot_g%26g","p":117,"h":1,"n":"Ricochet Shot"},{"c":0,"s":2,"id":4511,"u":"risky%20reload_g%26g","p":112,"h":1,"n":"Risky Reload"},{"c":0,"s":2,"id":4512,"u":"roadkill_g%26g","p":55,"h":1,"n":"Roadkill"},{"c":0,"s":2,"id":4513,"u":"running%20reload_g%26g","p":112,"h":1,"n":"Running Reload"},{"c":0,"s":2,"id":4514,"u":"safety%20measures_g%26g","p":133,"h":1,"n":"Safety Measures"},{"c":0,"s":2,"id":4515,"u":"scatter%20blast_g%26g","p":114,"h":1,"n":"Scatter Blast"},{"c":0,"s":2,"id":4516,"u":"scrutinizing%20gaze_g%26g","p":201,"h":1,"n":"Scrutinizing Gaze"},{"c":0,"s":2,"id":4517,"u":"searing%20restoration_g%26g","p":26,"h":1,"n":"Searing Restoration"},{"c":0,"s":2,"id":4518,"u":"shared%20overdrive_g%26g","p":30,"h":1,"n":"Shared Overdrive"},{"c":0,"s":2,"id":4519,"u":"shattering%20shot_g%26g","p":117,"h":1,"n":"Shattering Shot"},{"c":0,"s":2,"id":4520,"u":"shooter's%20camouflage_g%26g","p":117,"h":1,"n":"Shooter's Camouflage"},{"c":0,"s":2,"id":4521,"u":"shorthanded_g%26g","p":129,"h":1,"n":"Shorthanded"},{"c":0,"s":2,"id":4522,"u":"showstopper_g%26g","p":118,"h":1,"n":"Showstopper"},{"c":0,"s":2,"id":4523,"u":"slinger's%20readiness_g%26g","p":127,"h":1,"n":"Slinger's Readiness"},{"c":0,"s":2,"id":4524,"u":"slinger's%20reflexes_g%26g","p":119,"h":1,"n":"Slinger's Reflexes"},{"c":0,"s":2,"id":4525,"u":"smoke%20curtain_g%26g","p":115,"h":1,"n":"Smoke Curtain"},{"c":0,"s":2,"id":4526,"u":"smoke%20sight_g%26g","p":201,"h":1,"n":"Smoke Sight"},{"c":0,"s":2,"id":4527,"u":"sniper's%20aim_g%26g","p":114,"h":1,"n":"Sniper's Aim"},{"c":0,"s":2,"id":4528,"u":"sniping%20duo%20dedication_g%26g","p":138,"h":1,"n":"Sniping Duo Dedication"},{"c":0,"s":2,"id":4529,"u":"soaring%20armor_g%26g","p":30,"h":1,"n":"Soaring Armor"},{"c":0,"s":2,"id":4530,"u":"soaring%20dynamo_g%26g","p":53,"h":1,"n":"Soaring Dynamo"},{"c":0,"s":2,"id":4531,"u":"spark%20fist_g%26g","p":200,"h":1,"n":"Spark Fist"},{"c":0,"s":2,"id":4532,"u":"spellshot%20dedication_g%26g","p":140,"h":1,"n":"Spellshot Dedication"},{"c":0,"s":2,"id":4533,"u":"spyglass%20modification_g%26g","p":50,"h":1,"n":"Spyglass Modification"},{"c":0,"s":2,"id":4534,"u":"stab%20and%20blast_g%26g","p":115,"h":1,"n":"Stab And Blast"},{"c":0,"s":2,"id":4535,"u":"stasian%20smash_g%26g","p":53,"h":1,"n":"Stasian Smash"},{"c":0,"s":2,"id":4536,"u":"sterling%20dynamo%20dedication_g%26g","p":52,"h":1,"n":"Sterling Dynamo Dedication"},{"c":0,"s":2,"id":4537,"u":"superior%20propulsion_g%26g","p":57,"h":1,"n":"Superior Propulsion"},{"c":0,"s":2,"id":4538,"u":"swift%20intervention_g%26g","p":50,"h":1,"n":"Swift Intervention"},{"c":0,"s":2,"id":4539,"u":"sword%20and%20pistol_g%26g","p":111,"h":1,"n":"Sword And Pistol"},{"c":0,"s":2,"id":4540,"u":"tag%20team_g%26g","p":139,"h":1,"n":"Tag Team"},{"c":0,"s":2,"id":4541,"u":"take%20the%20wheel_g%26g","p":55,"h":1,"n":"Take The Wheel"},{"c":0,"s":2,"id":4542,"u":"tamper_g%26g","p":25,"h":1,"n":"Tamper"},{"c":0,"s":2,"id":4543,"u":"targeted%20redirection_g%26g","p":138,"h":1,"n":"Targeted Redirection"},{"c":0,"s":2,"id":4544,"u":"that%20was%20a%20close%20one%2c%20huh%3f_g%26g","p":142,"h":1,"n":"That Was A Close One, Huh?"},{"c":0,"s":2,"id":4545,"u":"topple%20giants_g%26g","p":51,"h":1,"n":"Topple Giants"},{"c":0,"s":2,"id":4546,"u":"trapsmith%20dedication_g%26g","p":54,"h":1,"n":"Trapsmith Dedication"},{"c":0,"s":2,"id":4547,"u":"triangulate_g%26g","p":138,"h":1,"n":"Triangulate"},{"c":0,"s":2,"id":4548,"u":"trick%20driver%20dedication_g%26g","p":55,"h":1,"n":"Trick Driver Dedication"},{"c":0,"s":2,"id":4549,"u":"trick%20shot_g%26g","p":116,"h":1,"n":"Trick Shot"},{"c":0,"s":2,"id":4550,"u":"twin%20shot%20knockdown_g%26g","p":116,"h":1,"n":"Twin Shot Knockdown"},{"c":0,"s":2,"id":4551,"u":"two-weapon%20fusillade_g%26g","p":118,"h":1,"n":"Two-weapon Fusillade"},{"c":0,"s":2,"id":4552,"u":"ubiquitous%20gadgets_g%26g","p":28,"h":1,"n":"Ubiquitous Gadgets"},{"c":0,"s":2,"id":4553,"u":"ubiquitous%20overdrive_g%26g","p":32,"h":1,"n":"Ubiquitous Overdrive"},{"c":0,"s":2,"id":4554,"u":"unbelievable%20escape_g%26g","p":143,"h":1,"n":"Unbelievable Escape"},{"c":0,"s":2,"id":4555,"u":"unbelievable%20luck_g%26g","p":143,"h":1,"n":"Unbelievable Luck"},{"c":0,"s":2,"id":4556,"u":"unerring%20shot_g%26g","p":119,"h":1,"n":"Unerring Shot"},{"c":0,"s":2,"id":4557,"u":"unexpected%20sharpshooter%20dedication_g%26g","p":142,"h":1,"n":"Unexpected Sharpshooter Dedication"},{"c":0,"s":2,"id":4558,"u":"unshakable%20grit_g%26g","p":117,"h":1,"n":"Unshakable Grit"},{"c":0,"s":2,"id":4559,"u":"unstable%20redundancies_g%26g","p":31,"h":1,"n":"Unstable Redundancies"},{"c":0,"s":2,"id":4560,"u":"vantage%20shot_g%26g","p":139,"h":1,"n":"Vantage Shot"},{"c":0,"s":2,"id":4561,"u":"variable%20core_g%26g","p":25,"h":1,"n":"Variable Core"},{"c":0,"s":2,"id":4562,"u":"vehicle%20mechanic%20dedication_g%26g","p":56,"h":1,"n":"Vehicle Mechanic Dedication"},{"c":0,"s":2,"id":4563,"u":"visual%20fidelity_g%26g","p":27,"h":1,"n":"Visual Fidelity"},{"c":0,"s":2,"id":4564,"u":"warning%20shot_g%26g","p":112,"h":1,"n":"Warning Shot"},{"c":0,"s":2,"id":4565,"u":"whirling%20knockdown_g%26g","p":137,"h":1,"n":"Whirling Knockdown"},{"c":0,"s":2,"id":4566,"u":"wide%20overwatch_g%26g","p":51,"h":1,"n":"Wide Overwatch"},{"c":0,"s":2,"id":4567,"u":"you%20failed%20to%20account%20for...%20this!_g%26g","p":31,"h":1,"n":"You Failed To Account For... This!"},{"c":0,"s":1,"id":4568,"u":"aberration%20kinship_loag","p":93,"h":1,"n":"Aberration Kinship"},{"c":0,"s":1,"id":4569,"u":"adhyabhau_loag","p":26,"h":1,"n":"Adhyabhau"},{"c":0,"s":1,"id":4570,"u":"advanced%20targeting%20system_loag","p":73,"h":1,"n":"Advanced Targeting System"},{"c":0,"s":1,"id":4571,"u":"agathion%20magic_loag","p":11,"h":1,"n":"Agathion Magic"},{"c":0,"s":1,"id":4572,"u":"ageless%20spirit_loag","p":43,"h":1,"n":"Ageless Spirit"},{"c":0,"s":1,"id":4573,"u":"airy%20step_loag","p":116,"h":1,"n":"Airy Step"},{"c":0,"s":1,"id":4574,"u":"alter%20resistance_loag","p":98,"h":1,"n":"Alter Resistance"},{"c":0,"s":1,"id":4575,"u":"amorphous%20aspect_loag","p":97,"h":1,"n":"Amorphous Aspect"},{"c":0,"s":1,"id":4576,"u":"analyze%20information_loag","p":78,"h":1,"n":"Analyze Information"},{"c":0,"s":1,"id":4577,"u":"anarchic%20arcana_loag","p":98,"h":1,"n":"Anarchic Arcana"},{"c":0,"s":1,"id":4578,"u":"ancestor's%20transformation_loag","p":138,"h":1,"n":"Ancestor's Transformation"},{"c":0,"s":1,"id":4579,"u":"ancestral%20insight_loag","p":14,"h":1,"n":"Ancestral Insight"},{"c":0,"s":1,"id":4580,"u":"anchoring%20roots_loag","p":43,"h":1,"n":"Anchoring Roots"},{"c":0,"s":1,"id":4581,"u":"ancillary%20motes_loag","p":78,"h":1,"n":"Ancillary Motes"},{"c":0,"s":1,"id":4582,"u":"android%20lore_loag","p":72,"h":1,"n":"Android Lore"},{"c":0,"s":1,"id":4583,"u":"animal%20magic_loag","p":81,"h":1,"n":"Animal Magic"},{"c":0,"s":1,"id":4584,"u":"animal%20senses_loag","p":81,"h":1,"n":"Animal Senses"},{"c":0,"s":1,"id":4585,"u":"animal%20shape_loag","p":82,"h":1,"n":"Animal Shape"},{"c":0,"s":1,"id":4586,"u":"animal%20speaker_loag","p":131,"h":1,"n":"Animal Speaker"},{"c":0,"s":1,"id":4587,"u":"animal%20swiftness_loag","p":82,"h":1,"n":"Animal Swiftness"},{"c":0,"s":1,"id":4588,"u":"animalistic%20resistance_loag","p":81,"h":1,"n":"Animalistic Resistance"},{"c":0,"s":1,"id":4589,"u":"aquatic%20adaptation_loag","p":16,"h":1,"n":"Aquatic Adaptation"},{"c":0,"s":1,"id":4590,"u":"aquatic%20camouflage_loag","p":16,"h":1,"n":"Aquatic Camouflage"},{"c":0,"s":1,"id":4591,"u":"aquatic%20conversationalist_loag","p":15,"h":1,"n":"Aquatic Conversationalist"},{"c":0,"s":1,"id":4592,"u":"aquatic%20eyes_loag","p":119,"h":1,"n":"Aquatic Eyes"},{"c":0,"s":1,"id":4593,"u":"arise%2c%20ye%20worthy!_loag","p":98,"h":1,"n":"Arise, Ye Worthy!"},{"c":0,"s":1,"id":4594,"u":"augment%20senses_loag","p":94,"h":1,"n":"Augment Senses"},{"c":0,"s":1,"id":4595,"u":"axiomatic%20lore_loag","p":77,"h":1,"n":"Axiomatic Lore"},{"c":0,"s":1,"id":4596,"u":"azarketi%20purification_loag","p":15,"h":1,"n":"Azarketi Purification"},{"c":0,"s":1,"id":4597,"u":"beastbrood_loag","p":62,"h":1,"n":"Beastbrood"},{"c":0,"s":1,"id":4598,"u":"blazing%20aura_loag","p":104,"h":1,"n":"Blazing Aura"},{"c":0,"s":1,"id":4599,"u":"bone%20caller_loag","p":48,"h":1,"n":"Bone Caller"},{"c":0,"s":1,"id":4600,"u":"bone%20investiture_loag","p":48,"h":1,"n":"Bone Investiture"},{"c":0,"s":1,"id":4601,"u":"bone%20magic_loag","p":46,"h":1,"n":"Bone Magic"},{"c":0,"s":1,"id":4602,"u":"briar%20battler_loag","p":39,"h":1,"n":"Briar Battler"},{"c":0,"s":1,"id":4603,"u":"brightsoul_loag","p":103,"h":1,"n":"Brightsoul"},{"c":0,"s":1,"id":4604,"u":"brinesoul_loag","p":119,"h":1,"n":"Brinesoul"},{"c":0,"s":1,"id":4605,"u":"calaca's%20showstopper_loag","p":32,"h":1,"n":"Calaca's Showstopper"},{"c":0,"s":1,"id":4606,"u":"call%20of%20elysium_loag","p":11,"h":1,"n":"Call Of Elysium"},{"c":0,"s":1,"id":4607,"u":"call%20of%20the%20green%20man_loag","p":44,"h":1,"n":"Call Of The Green Man"},{"c":0,"s":1,"id":4608,"u":"can't%20fall%20here_loag","p":36,"h":1,"n":"Can't Fall Here"},{"c":0,"s":1,"id":4609,"u":"cantorian%20reinforcement_loag","p":35,"h":1,"n":"Cantorian Reinforcement"},{"c":0,"s":1,"id":4610,"u":"cantorian%20rejuvenation_loag","p":35,"h":1,"n":"Cantorian Rejuvenation"},{"c":0,"s":1,"id":4611,"u":"cantorian%20restoration_loag","p":36,"h":1,"n":"Cantorian Restoration"},{"c":0,"s":1,"id":4612,"u":"captivating%20curiosity_loag","p":94,"h":1,"n":"Captivating Curiosity"},{"c":0,"s":1,"id":4613,"u":"cat%20nap_loag","p":19,"h":1,"n":"Cat Nap"},{"c":0,"s":1,"id":4614,"u":"catchy%20tune_loag","p":131,"h":1,"n":"Catchy Tune"},{"c":0,"s":1,"id":4615,"u":"catfolk%20dance_loag","p":19,"h":1,"n":"Catfolk Dance"},{"c":0,"s":1,"id":4616,"u":"catrina's%20presence_loag","p":31,"h":1,"n":"Catrina's Presence"},{"c":0,"s":1,"id":4617,"u":"cel%20rau_loag","p":27,"h":1,"n":"Cel Rau"},{"c":0,"s":1,"id":4618,"u":"chance%20death_loag","p":30,"h":1,"n":"Chance Death"},{"c":0,"s":1,"id":4619,"u":"channel%20the%20godmind_loag","p":78,"h":1,"n":"Channel The Godmind"},{"c":0,"s":1,"id":4620,"u":"charred%20remains_loag","p":104,"h":1,"n":"Charred Remains"},{"c":0,"s":1,"id":4621,"u":"cindersoul_loag","p":103,"h":1,"n":"Cindersoul"},{"c":0,"s":1,"id":4622,"u":"cleansing%20subroutine_loag","p":72,"h":1,"n":"Cleansing Subroutine"},{"c":0,"s":1,"id":4623,"u":"clever%20shadow_loag","p":87,"h":1,"n":"Clever Shadow"},{"c":0,"s":1,"id":4624,"u":"cloak%20of%20poison_loag","p":44,"h":1,"n":"Cloak Of Poison"},{"c":0,"s":1,"id":4625,"u":"close%20quarters_loag","p":39,"h":1,"n":"Close Quarters"},{"c":0,"s":1,"id":4626,"u":"cloud%20gazer_loag","p":115,"h":1,"n":"Cloud Gazer"},{"c":0,"s":1,"id":4627,"u":"coating%20of%20slime_loag","p":94,"h":1,"n":"Coating Of Slime"},{"c":0,"s":1,"id":4628,"u":"consistent%20surge_loag","p":74,"h":1,"n":"Consistent Surge"},{"c":0,"s":1,"id":4629,"u":"consult%20the%20stars_loag","p":47,"h":1,"n":"Consult The Stars"},{"c":0,"s":1,"id":4630,"u":"continuous%20assault_loag","p":112,"h":1,"n":"Continuous Assault"},{"c":0,"s":1,"id":4631,"u":"corgi%20mount_loag","p":130,"h":1,"n":"Corgi Mount"},{"c":0,"s":1,"id":4632,"u":"cornered%20fury_loag","p":55,"h":1,"n":"Cornered Fury"},{"c":0,"s":1,"id":4633,"u":"creative%20prodigy_loag","p":97,"h":1,"n":"Creative Prodigy"},{"c":0,"s":1,"id":4634,"u":"critter%20shape_loag","p":81,"h":1,"n":"Critter Shape"},{"c":0,"s":1,"id":4635,"u":"crone's%20cruelty_loag","p":24,"h":1,"n":"Crone's Cruelty"},{"c":0,"s":1,"id":4636,"u":"crystalline%20cloud_loag","p":78,"h":1,"n":"Crystalline Cloud"},{"c":0,"s":1,"id":4637,"u":"crystalline%20dust_loag","p":77,"h":1,"n":"Crystalline Dust"},{"c":0,"s":1,"id":4638,"u":"cunning%20hair_loag","p":23,"h":1,"n":"Cunning Hair"},{"c":0,"s":1,"id":4639,"u":"dangle_loag","p":48,"h":1,"n":"Dangle"},{"c":0,"s":1,"id":4640,"u":"daywalker_loag","p":28,"h":1,"n":"Daywalker"},{"c":0,"s":1,"id":4641,"u":"deep%20vision_loag","p":93,"h":1,"n":"Deep Vision"},{"c":0,"s":1,"id":4642,"u":"defy%20death_loag","p":51,"h":1,"n":"Defy Death"},{"c":0,"s":1,"id":4643,"u":"deliberate%20death_loag","p":30,"h":1,"n":"Deliberate Death"},{"c":0,"s":1,"id":4644,"u":"devil%20in%20plain%20sight_loag","p":63,"h":1,"n":"Devil In Plain Sight"},{"c":0,"s":1,"id":4645,"u":"devilish%20wiles_loag","p":63,"h":1,"n":"Devilish Wiles"},{"c":0,"s":1,"id":4646,"u":"dire%20form_loag","p":82,"h":1,"n":"Dire Form"},{"c":0,"s":1,"id":4647,"u":"djinni%20magic_loag","p":116,"h":1,"n":"Djinni Magic"},{"c":0,"s":1,"id":4648,"u":"dogfang%20bite_loag","p":59,"h":1,"n":"Dogfang Bite"},{"c":0,"s":1,"id":4649,"u":"draconic%20sycophant_loag","p":38,"h":1,"n":"Draconic Sycophant"},{"c":0,"s":1,"id":4650,"u":"dragon%20grip_loag","p":52,"h":1,"n":"Dragon Grip"},{"c":0,"s":1,"id":4651,"u":"dragonblood%20paragon_loag","p":40,"h":1,"n":"Dragonblood Paragon"},{"c":0,"s":1,"id":4652,"u":"dualborn_loag","p":111,"h":1,"n":"Dualborn"},{"c":0,"s":1,"id":4653,"u":"dustsoul_loag","p":107,"h":1,"n":"Dustsoul"},{"c":0,"s":1,"id":4654,"u":"earthsense_loag","p":108,"h":1,"n":"Earthsense"},{"c":0,"s":1,"id":4655,"u":"eclectic%20sword%20mastery_loag","p":60,"h":1,"n":"Eclectic Sword Mastery"},{"c":0,"s":1,"id":4656,"u":"eerie%20compression_loag","p":94,"h":1,"n":"Eerie Compression"},{"c":0,"s":1,"id":4657,"u":"efreeti%20magic_loag","p":104,"h":1,"n":"Efreeti Magic"},{"c":0,"s":1,"id":4658,"u":"elemental%20assault_loag","p":111,"h":1,"n":"Elemental Assault"},{"c":0,"s":1,"id":4659,"u":"elemental%20bulwark_loag","p":112,"h":1,"n":"Elemental Bulwark"},{"c":0,"s":1,"id":4660,"u":"elemental%20embellish_loag","p":111,"h":1,"n":"Elemental Embellish"},{"c":0,"s":1,"id":4661,"u":"elemental%20eyes_loag","p":100,"h":1,"n":"Elemental Eyes"},{"c":0,"s":1,"id":4662,"u":"elemental%20lore_loag","p":100,"h":1,"n":"Elemental Lore"},{"c":0,"s":1,"id":4663,"u":"elemental%20trade_loag","p":107,"h":1,"n":"Elemental Trade"},{"c":0,"s":1,"id":4664,"u":"elude%20trouble_loag","p":20,"h":1,"n":"Elude Trouble"},{"c":0,"s":1,"id":4665,"u":"ember's%20eyes_loag","p":103,"h":1,"n":"Ember's Eyes"},{"c":0,"s":1,"id":4666,"u":"emberkin_loag","p":10,"h":1,"n":"Emberkin"},{"c":0,"s":1,"id":4667,"u":"emotionless_loag","p":73,"h":1,"n":"Emotionless"},{"c":0,"s":1,"id":4668,"u":"energize%20wings_loag","p":132,"h":1,"n":"Energize Wings"},{"c":0,"s":1,"id":4669,"u":"enforced%20order_loag","p":12,"h":1,"n":"Enforced Order"},{"c":0,"s":1,"id":4670,"u":"eternal%20wings_loag","p":116,"h":1,"n":"Eternal Wings"},{"c":0,"s":1,"id":4671,"u":"evade%20doom_loag","p":20,"h":1,"n":"Evade Doom"},{"c":0,"s":1,"id":4672,"u":"evanescent%20wings_loag","p":131,"h":1,"n":"Evanescent Wings"},{"c":0,"s":1,"id":4673,"u":"extinguish%20light_loag","p":87,"h":1,"n":"Extinguish Light"},{"c":0,"s":1,"id":4674,"u":"favor%20of%20heaven_loag","p":60,"h":1,"n":"Favor Of Heaven"},{"c":0,"s":1,"id":4675,"u":"favorable%20winds_loag","p":24,"h":1,"n":"Favorable Winds"},{"c":0,"s":1,"id":4676,"u":"feathered%20cloak_loag","p":137,"h":1,"n":"Feathered Cloak"},{"c":0,"s":1,"id":4677,"u":"feed%20on%20pain_loag","p":27,"h":1,"n":"Feed On Pain"},{"c":0,"s":1,"id":4678,"u":"fell%20rider_loag","p":36,"h":1,"n":"Fell Rider"},{"c":0,"s":1,"id":4679,"u":"ferocious%20gust_loag","p":138,"h":1,"n":"Ferocious Gust"},{"c":0,"s":1,"id":4680,"u":"fetchling%20lore_loag","p":86,"h":1,"n":"Fetchling Lore"},{"c":0,"s":1,"id":4681,"u":"fey%20cantrips_loag","p":131,"h":1,"n":"Fey Cantrips"},{"c":0,"s":1,"id":4682,"u":"fey%20disguise_loag","p":132,"h":1,"n":"Fey Disguise"},{"c":0,"s":1,"id":4683,"u":"fey%20magic_loag","p":132,"h":1,"n":"Fey Magic"},{"c":0,"s":1,"id":4684,"u":"fey%20skin_loag","p":132,"h":1,"n":"Fey Skin"},{"c":0,"s":1,"id":4685,"u":"final%20form_loag","p":66,"h":1,"n":"Final Form"},{"c":0,"s":1,"id":4686,"u":"finest%20trick_loag","p":66,"h":1,"n":"Finest Trick"},{"c":0,"s":1,"id":4687,"u":"finned%20ridges_loag","p":93,"h":1,"n":"Finned Ridges"},{"c":0,"s":1,"id":4688,"u":"firesight_loag","p":103,"h":1,"n":"Firesight"},{"c":0,"s":1,"id":4689,"u":"flame%20jump_loag","p":12,"h":1,"n":"Flame Jump"},{"c":0,"s":1,"id":4690,"u":"fledgling%20flight_loag","p":137,"h":1,"n":"Fledgling Flight"},{"c":0,"s":1,"id":4691,"u":"flexible%20tail_loag","p":47,"h":1,"n":"Flexible Tail"},{"c":0,"s":1,"id":4692,"u":"flourish%20and%20ruin_loag","p":44,"h":1,"n":"Flourish And Ruin"},{"c":0,"s":1,"id":4693,"u":"fluid%20contortionist_loag","p":120,"h":1,"n":"Fluid Contortionist"},{"c":0,"s":1,"id":4694,"u":"focused%20cat%20nap_loag","p":19,"h":1,"n":"Focused Cat Nap"},{"c":0,"s":1,"id":4695,"u":"fortify%20shield_loag","p":107,"h":1,"n":"Fortify Shield"},{"c":0,"s":1,"id":4696,"u":"fox%20trick_loag","p":126,"h":1,"n":"Fox Trick"},{"c":0,"s":1,"id":4697,"u":"foxfire_loag","p":125,"h":1,"n":"Foxfire"},{"c":0,"s":1,"id":4698,"u":"fully%20flighted_loag","p":138,"h":1,"n":"Fully Flighted"},{"c":0,"s":1,"id":4699,"u":"fumesoul_loag","p":115,"h":1,"n":"Fumesoul"},{"c":0,"s":1,"id":4700,"u":"ganzi%20gaze_loag","p":97,"h":1,"n":"Ganzi Gaze"},{"c":0,"s":1,"id":4701,"u":"gaping%20flesh_loag","p":93,"h":1,"n":"Gaping Flesh"},{"c":0,"s":1,"id":4702,"u":"garuda%20magic_loag","p":11,"h":1,"n":"Garuda Magic"},{"c":0,"s":1,"id":4703,"u":"garuda's%20squall_loag","p":11,"h":1,"n":"Garuda's Squall"},{"c":0,"s":1,"id":4704,"u":"gemsoul_loag","p":107,"h":1,"n":"Gemsoul"},{"c":0,"s":1,"id":4705,"u":"genie%20weapon%20expertise_loag","p":100,"h":1,"n":"Genie Weapon Expertise"},{"c":0,"s":1,"id":4706,"u":"genie%20weapon%20familiarity_loag","p":100,"h":1,"n":"Genie Weapon Familiarity"},{"c":0,"s":1,"id":4707,"u":"genie%20weapon%20flourish_loag","p":100,"h":1,"n":"Genie Weapon Flourish"},{"c":0,"s":1,"id":4708,"u":"gift%20of%20the%20moon_loag","p":82,"h":1,"n":"Gift Of The Moon"},{"c":0,"s":1,"id":4709,"u":"glory%20and%20valor!_loag","p":98,"h":1,"n":"Glory And Valor!"},{"c":0,"s":1,"id":4710,"u":"gnaw_loag","p":55,"h":1,"n":"Gnaw"},{"c":0,"s":1,"id":4711,"u":"graceful%20guidance_loag","p":19,"h":1,"n":"Graceful Guidance"},{"c":0,"s":1,"id":4712,"u":"greater%20animal%20senses_loag","p":81,"h":1,"n":"Greater Animal Senses"},{"c":0,"s":1,"id":4713,"u":"gripping%20limbs_loag","p":94,"h":1,"n":"Gripping Limbs"},{"c":0,"s":1,"id":4714,"u":"guided%20by%20the%20stars_loag","p":47,"h":1,"n":"Guided By The Stars"},{"c":0,"s":1,"id":4715,"u":"harbinger's%20caw_loag","p":60,"h":1,"n":"Harbinger's Caw"},{"c":0,"s":1,"id":4716,"u":"hard%20to%20fool_loag","p":87,"h":1,"n":"Hard To Fool"},{"c":0,"s":1,"id":4717,"u":"hatchling%20flight_loag","p":40,"h":1,"n":"Hatchling Flight"},{"c":0,"s":1,"id":4718,"u":"healer's%20halo_loag","p":11,"h":1,"n":"Healer's Halo"},{"c":0,"s":1,"id":4719,"u":"heat%20wave_loag","p":104,"h":1,"n":"Heat Wave"},{"c":0,"s":1,"id":4720,"u":"hefting%20shadow_loag","p":88,"h":1,"n":"Hefting Shadow"},{"c":0,"s":1,"id":4721,"u":"hero's%20wings_loag","p":132,"h":1,"n":"Hero's Wings"},{"c":0,"s":1,"id":4722,"u":"hopping%20stride_loag","p":27,"h":1,"n":"Hopping Stride"},{"c":0,"s":1,"id":4723,"u":"hurricane%20swing_loag","p":60,"h":1,"n":"Hurricane Swing"},{"c":0,"s":1,"id":4724,"u":"hybrid%20form_loag","p":125,"h":1,"n":"Hybrid Form"},{"c":0,"s":1,"id":4725,"u":"hydraulic%20deflection_loag","p":15,"h":1,"n":"Hydraulic Deflection"},{"c":0,"s":1,"id":4726,"u":"hydraulic%20maneuvers_loag","p":16,"h":1,"n":"Hydraulic Maneuvers"},{"c":0,"s":1,"id":4727,"u":"idyllkin_loag","p":10,"h":1,"n":"Idyllkin"},{"c":0,"s":1,"id":4728,"u":"impose%20order_loag","p":78,"h":1,"n":"Impose Order"},{"c":0,"s":1,"id":4729,"u":"improved%20elemental%20bulwark_loag","p":112,"h":1,"n":"Improved Elemental Bulwark"},{"c":0,"s":1,"id":4730,"u":"inner%20breath_loag","p":116,"h":1,"n":"Inner Breath"},{"c":0,"s":1,"id":4731,"u":"inner%20fire_loag","p":103,"h":1,"n":"Inner Fire"},{"c":0,"s":1,"id":4732,"u":"inoculation%20subroutine_loag","p":73,"h":1,"n":"Inoculation Subroutine"},{"c":0,"s":1,"id":4733,"u":"inspirit%20hazard_loag","p":20,"h":1,"n":"Inspirit Hazard"},{"c":0,"s":1,"id":4734,"u":"intercorporate_loag","p":77,"h":1,"n":"Intercorporate"},{"c":0,"s":1,"id":4735,"u":"internal%20cohesion_loag","p":77,"h":1,"n":"Internal Cohesion"},{"c":0,"s":1,"id":4736,"u":"internal%20compartment_loag","p":73,"h":1,"n":"Internal Compartment"},{"c":0,"s":1,"id":4737,"u":"internal%20respirator_loag","p":74,"h":1,"n":"Internal Respirator"},{"c":0,"s":1,"id":4738,"u":"intuitive%20crafting_loag","p":77,"h":1,"n":"Intuitive Crafting"},{"c":0,"s":1,"id":4739,"u":"invisible%20trickster_loag","p":132,"h":1,"n":"Invisible Trickster"},{"c":0,"s":1,"id":4740,"u":"invoke%20the%20elements_loag","p":24,"h":1,"n":"Invoke The Elements"},{"c":0,"s":1,"id":4741,"u":"irrepressible_loag","p":97,"h":1,"n":"Irrepressible"},{"c":0,"s":1,"id":4742,"u":"iruxi%20glide_loag","p":47,"h":1,"n":"Iruxi Glide"},{"c":0,"s":1,"id":4743,"u":"iruxi%20spirit%20strike_loag","p":48,"h":1,"n":"Iruxi Spirit Strike"},{"c":0,"s":1,"id":4744,"u":"janni%20hospitality_loag","p":112,"h":1,"n":"Janni Hospitality"},{"c":0,"s":1,"id":4745,"u":"janni%20magic_loag","p":112,"h":1,"n":"Janni Magic"},{"c":0,"s":1,"id":4746,"u":"jinx%20glutton_loag","p":60,"h":1,"n":"Jinx Glutton"},{"c":0,"s":1,"id":4747,"u":"juvenile%20flight_loag","p":138,"h":1,"n":"Juvenile Flight"},{"c":0,"s":1,"id":4748,"u":"killing%20stone_loag","p":126,"h":1,"n":"Killing Stone"},{"c":0,"s":1,"id":4749,"u":"kitsune%20lore_loag","p":125,"h":1,"n":"Kitsune Lore"},{"c":0,"s":1,"id":4750,"u":"kitsune%20spell%20expertise_loag","p":126,"h":1,"n":"Kitsune Spell Expertise"},{"c":0,"s":1,"id":4751,"u":"kitsune%20spell%20familiarity_loag","p":125,"h":1,"n":"Kitsune Spell Familiarity"},{"c":0,"s":1,"id":4752,"u":"kitsune%20spell%20mysteries_loag","p":126,"h":1,"n":"Kitsune Spell Mysteries"},{"c":0,"s":1,"id":4753,"u":"kobold%20weapon%20expertise_loag","p":40,"h":1,"n":"Kobold Weapon Expertise"},{"c":0,"s":1,"id":4754,"u":"kobold%20weapon%20familiarity_loag","p":39,"h":1,"n":"Kobold Weapon Familiarity"},{"c":0,"s":1,"id":4755,"u":"kobold%20weapon%20innovator_loag","p":39,"h":1,"n":"Kobold Weapon Innovator"},{"c":0,"s":1,"id":4756,"u":"larcenous%20tail_loag","p":98,"h":1,"n":"Larcenous Tail"},{"c":0,"s":1,"id":4757,"u":"lavasoul_loag","p":103,"h":1,"n":"Lavasoul"},{"c":0,"s":1,"id":4758,"u":"lemma%20of%20vision_loag","p":77,"h":1,"n":"Lemma Of Vision"},{"c":0,"s":1,"id":4759,"u":"lifeblood's%20call_loag","p":52,"h":1,"n":"Lifeblood's Call"},{"c":0,"s":1,"id":4760,"u":"lightless%20litheness_loag","p":87,"h":1,"n":"Lightless Litheness"},{"c":0,"s":1,"id":4761,"u":"lightning%20tongue_loag","p":47,"h":1,"n":"Lightning Tongue"},{"c":0,"s":1,"id":4762,"u":"living%20weapon_loag","p":93,"h":1,"n":"Living Weapon"},{"c":0,"s":1,"id":4763,"u":"lucky%20break_loag","p":19,"h":1,"n":"Lucky Break"},{"c":0,"s":1,"id":4764,"u":"magpie%20snatch_loag","p":59,"h":1,"n":"Magpie Snatch"},{"c":0,"s":1,"id":4765,"u":"maiden's%20mending_loag","p":23,"h":1,"n":"Maiden's Mending"},{"c":0,"s":1,"id":4766,"u":"marid%20magic_loag","p":120,"h":1,"n":"Marid Magic"},{"c":0,"s":1,"id":4767,"u":"marine%20ally_loag","p":15,"h":1,"n":"Marine Ally"},{"c":0,"s":1,"id":4768,"u":"mariner's%20fire_loag","p":58,"h":1,"n":"Mariner's Fire"},{"c":0,"s":1,"id":4769,"u":"mask%20of%20fear_loag","p":52,"h":1,"n":"Mask Of Fear"},{"c":0,"s":1,"id":4770,"u":"mask%20of%20pain_loag","p":52,"h":1,"n":"Mask Of Pain"},{"c":0,"s":1,"id":4771,"u":"mask%20of%20power_loag","p":51,"h":1,"n":"Mask Of Power"},{"c":0,"s":1,"id":4772,"u":"mask%20of%20rejection_loag","p":52,"h":1,"n":"Mask Of Rejection"},{"c":0,"s":1,"id":4773,"u":"metal-veined%20strikes_loag","p":108,"h":1,"n":"Metal-veined Strikes"},{"c":0,"s":1,"id":4774,"u":"miresoul_loag","p":107,"h":1,"n":"Miresoul"},{"c":0,"s":1,"id":4775,"u":"mischievous%20tail_loag","p":98,"h":1,"n":"Mischievous Tail"},{"c":0,"s":1,"id":4776,"u":"mist%20strider_loag","p":16,"h":1,"n":"Mist Strider"},{"c":0,"s":1,"id":4777,"u":"mistsoul_loag","p":119,"h":1,"n":"Mistsoul"},{"c":0,"s":1,"id":4778,"u":"moon%20may_loag","p":23,"h":1,"n":"Moon May"},{"c":0,"s":1,"id":4779,"u":"morrigna's%20spider%20affinity_loag","p":32,"h":1,"n":"Morrigna's Spider Affinity"},{"c":0,"s":1,"id":4780,"u":"mother's%20mindfulness_loag","p":24,"h":1,"n":"Mother's Mindfulness"},{"c":0,"s":1,"id":4781,"u":"mutate%20weapon_loag","p":93,"h":1,"n":"Mutate Weapon"},{"c":0,"s":1,"id":4782,"u":"myriad%20forms_loag","p":126,"h":1,"n":"Myriad Forms"},{"c":0,"s":1,"id":4783,"u":"nanite%20shroud_loag","p":74,"h":1,"n":"Nanite Shroud"},{"c":0,"s":1,"id":4784,"u":"nanite%20surge_loag","p":73,"h":1,"n":"Nanite Surge"},{"c":0,"s":1,"id":4785,"u":"nestling%20fall_loag","p":137,"h":1,"n":"Nestling Fall"},{"c":0,"s":1,"id":4786,"u":"nightvision%20adaptation_loag","p":73,"h":1,"n":"Nightvision Adaptation"},{"c":0,"s":1,"id":4787,"u":"no%20evidence_loag","p":20,"h":1,"n":"No Evidence"},{"c":0,"s":1,"id":4788,"u":"nocturnal%20charm_loag","p":27,"h":1,"n":"Nocturnal Charm"},{"c":0,"s":1,"id":4789,"u":"nosoi's%20mask_loag","p":31,"h":1,"n":"Nosoi's Mask"},{"c":0,"s":1,"id":4790,"u":"offensive%20analysis_loag","p":77,"h":1,"n":"Offensive Analysis"},{"c":0,"s":1,"id":4791,"u":"offensive%20subroutine_loag","p":74,"h":1,"n":"Offensive Subroutine"},{"c":0,"s":1,"id":4792,"u":"old%20soul_loag","p":27,"h":1,"n":"Old Soul"},{"c":0,"s":1,"id":4793,"u":"olethros's%20decree_loag","p":32,"h":1,"n":"Olethros's Decree"},{"c":0,"s":1,"id":4794,"u":"one%20with%20earth_loag","p":108,"h":1,"n":"One With Earth"},{"c":0,"s":1,"id":4795,"u":"orc%20warmask_loag","p":51,"h":1,"n":"Orc Warmask"},{"c":0,"s":1,"id":4796,"u":"pack%20tactics_loag","p":82,"h":1,"n":"Pack Tactics"},{"c":0,"s":1,"id":4797,"u":"pelagic%20aptitude_loag","p":15,"h":1,"n":"Pelagic Aptitude"},{"c":0,"s":1,"id":4798,"u":"peri%20magic_loag","p":11,"h":1,"n":"Peri Magic"},{"c":0,"s":1,"id":4799,"u":"pierce%20the%20light_loag","p":88,"h":1,"n":"Pierce The Light"},{"c":0,"s":1,"id":4800,"u":"plague%20sniffer_loag","p":56,"h":1,"n":"Plague Sniffer"},{"c":0,"s":1,"id":4801,"u":"plumekith_loag","p":11,"h":1,"n":"Plumekith"},{"c":0,"s":1,"id":4802,"u":"powerful%20guts_loag","p":93,"h":1,"n":"Powerful Guts"},{"c":0,"s":1,"id":4803,"u":"predator's%20growl_loag","p":20,"h":1,"n":"Predator's Growl"},{"c":0,"s":1,"id":4804,"u":"preemptive%20reconfiguration_loag","p":78,"h":1,"n":"Preemptive Reconfiguration"},{"c":0,"s":1,"id":4805,"u":"pride%20hunter_loag","p":19,"h":1,"n":"Pride Hunter"},{"c":0,"s":1,"id":4806,"u":"protective%20subroutine_loag","p":74,"h":1,"n":"Protective Subroutine"},{"c":0,"s":1,"id":4807,"u":"proximity%20alert_loag","p":73,"h":1,"n":"Proximity Alert"},{"c":0,"s":1,"id":4808,"u":"purge%20sins_loag","p":12,"h":1,"n":"Purge Sins"},{"c":0,"s":1,"id":4809,"u":"qlippoth%20magic_loag","p":63,"h":1,"n":"Qlippoth Magic"},{"c":0,"s":1,"id":4810,"u":"quick%20change_loag","p":81,"h":1,"n":"Quick Change"},{"c":0,"s":1,"id":4811,"u":"radiant%20burst_loag","p":104,"h":1,"n":"Radiant Burst"},{"c":0,"s":1,"id":4812,"u":"radiant%20circuitry_loag","p":73,"h":1,"n":"Radiant Circuitry"},{"c":0,"s":1,"id":4813,"u":"radiate%20glory_loag","p":12,"h":1,"n":"Radiate Glory"},{"c":0,"s":1,"id":4814,"u":"rakshasa%20magic_loag","p":63,"h":1,"n":"Rakshasa Magic"},{"c":0,"s":1,"id":4815,"u":"rallying%20cry_loag","p":36,"h":1,"n":"Rallying Cry"},{"c":0,"s":1,"id":4816,"u":"rampaging%20form_loag","p":126,"h":1,"n":"Rampaging Form"},{"c":0,"s":1,"id":4817,"u":"ratfolk%20growth_loag","p":56,"h":1,"n":"Ratfolk Growth"},{"c":0,"s":1,"id":4818,"u":"ratfolk%20roll_loag","p":56,"h":1,"n":"Ratfolk Roll"},{"c":0,"s":1,"id":4819,"u":"read%20the%20stars_loag","p":48,"h":1,"n":"Read The Stars"},{"c":0,"s":1,"id":4820,"u":"recognize%20ambush_loag","p":35,"h":1,"n":"Recognize Ambush"},{"c":0,"s":1,"id":4821,"u":"regrowth_loag","p":44,"h":1,"n":"Regrowth"},{"c":0,"s":1,"id":4822,"u":"rehydration_loag","p":16,"h":1,"n":"Rehydration"},{"c":0,"s":1,"id":4823,"u":"repair%20module_loag","p":74,"h":1,"n":"Repair Module"},{"c":0,"s":1,"id":4824,"u":"reptile%20rider_loag","p":47,"h":1,"n":"Reptile Rider"},{"c":0,"s":1,"id":4825,"u":"retractable%20claws_loag","p":125,"h":1,"n":"Retractable Claws"},{"c":0,"s":1,"id":4826,"u":"revivification%20protocol_loag","p":74,"h":1,"n":"Revivification Protocol"},{"c":0,"s":1,"id":4827,"u":"riftmarked_loag","p":63,"h":1,"n":"Riftmarked"},{"c":0,"s":1,"id":4828,"u":"rimesoul_loag","p":119,"h":1,"n":"Rimesoul"},{"c":0,"s":1,"id":4829,"u":"rokoan%20arts_loag","p":138,"h":1,"n":"Rokoan Arts"},{"c":0,"s":1,"id":4830,"u":"ru-shi_loag","p":27,"h":1,"n":"Ru-shi"},{"c":0,"s":1,"id":4831,"u":"runtsage_loag","p":35,"h":1,"n":"Runtsage"},{"c":0,"s":1,"id":4832,"u":"saber%20teeth_loag","p":19,"h":1,"n":"Saber Teeth"},{"c":0,"s":1,"id":4833,"u":"scar-thick%20skin_loag","p":52,"h":1,"n":"Scar-thick Skin"},{"c":0,"s":1,"id":4834,"u":"scholar's%20inheritance_loag","p":111,"h":1,"n":"Scholar's Inheritance"},{"c":0,"s":1,"id":4835,"u":"scion%20transformation_loag","p":48,"h":1,"n":"Scion Transformation"},{"c":0,"s":1,"id":4836,"u":"scorching%20disarm_loag","p":104,"h":1,"n":"Scorching Disarm"},{"c":0,"s":1,"id":4837,"u":"sculpt%20shadows_loag","p":88,"h":1,"n":"Sculpt Shadows"},{"c":0,"s":1,"id":4838,"u":"sense%20for%20trouble_loag","p":20,"h":1,"n":"Sense For Trouble"},{"c":0,"s":1,"id":4839,"u":"shackleborn_loag","p":63,"h":1,"n":"Shackleborn"},{"c":0,"s":1,"id":4840,"u":"shadow%20blending_loag","p":87,"h":1,"n":"Shadow Blending"},{"c":0,"s":1,"id":4841,"u":"shadow%20sight_loag","p":88,"h":1,"n":"Shadow Sight"},{"c":0,"s":1,"id":4842,"u":"shadow's%20assault_loag","p":88,"h":1,"n":"Shadow's Assault"},{"c":0,"s":1,"id":4843,"u":"shadowy%20disguise_loag","p":88,"h":1,"n":"Shadowy Disguise"},{"c":0,"s":1,"id":4844,"u":"shaitan%20magic_loag","p":108,"h":1,"n":"Shaitan Magic"},{"c":0,"s":1,"id":4845,"u":"shaitan%20skin_loag","p":108,"h":1,"n":"Shaitan Skin"},{"c":0,"s":1,"id":4846,"u":"shapechanger's%20intuition_loag","p":125,"h":1,"n":"Shapechanger's Intuition"},{"c":0,"s":1,"id":4847,"u":"shifting%20faces_loag","p":126,"h":1,"n":"Shifting Faces"},{"c":0,"s":1,"id":4848,"u":"shinstabber_loag","p":56,"h":1,"n":"Shinstabber"},{"c":0,"s":1,"id":4849,"u":"shoki's%20argument_loag","p":31,"h":1,"n":"Shoki's Argument"},{"c":0,"s":1,"id":4850,"u":"shrouded%20magic_loag","p":87,"h":1,"n":"Shrouded Magic"},{"c":0,"s":1,"id":4851,"u":"shrouded%20mien_loag","p":87,"h":1,"n":"Shrouded Mien"},{"c":0,"s":1,"id":4852,"u":"silent%20step_loag","p":20,"h":1,"n":"Silent Step"},{"c":0,"s":1,"id":4853,"u":"sinister%20appearance_loag","p":103,"h":1,"n":"Sinister Appearance"},{"c":0,"s":1,"id":4854,"u":"skillful%20tail%20(ganzi)_loag","p":97,"a":"Ganzi","h":1,"n":"Skillful Tail"},{"c":0,"s":1,"id":4855,"u":"skillful%20tail%20(sylph%2cundine%2csuli%2coread%2cifrit)_loag","p":100,"a":["Sylph","Undine","Suli","Oread","Ifrit"],"h":1,"n":"Skillful Tail"},{"c":0,"s":1,"id":4856,"u":"skirt%20the%20light_loag","p":88,"h":1,"n":"Skirt The Light"},{"c":0,"s":1,"id":4857,"u":"skittering%20sneak_loag","p":56,"h":1,"n":"Skittering Sneak"},{"c":0,"s":1,"id":4858,"u":"skull%20creeper_loag","p":55,"h":1,"n":"Skull Creeper"},{"c":0,"s":1,"id":4859,"u":"slink_loag","p":87,"h":1,"n":"Slink"},{"c":0,"s":1,"id":4860,"u":"slip%20into%20shadow_loag","p":28,"h":1,"n":"Slip Into Shadow"},{"c":0,"s":1,"id":4861,"u":"slip%20the%20grasp_loag","p":94,"h":1,"n":"Slip The Grasp"},{"c":0,"s":1,"id":4862,"u":"slip%20with%20the%20breeze_loag","p":116,"h":1,"n":"Slip With The Breeze"},{"c":0,"s":1,"id":4863,"u":"slither_loag","p":39,"h":1,"n":"Slither"},{"c":0,"s":1,"id":4864,"u":"smashing%20tail_loag","p":97,"h":1,"n":"Smashing Tail"},{"c":0,"s":1,"id":4865,"u":"smokesoul_loag","p":115,"h":1,"n":"Smokesoul"},{"c":0,"s":1,"id":4866,"u":"snare%20commando_loag","p":40,"h":1,"n":"Snare Commando"},{"c":0,"s":1,"id":4867,"u":"sneaky_loag","p":35,"h":1,"n":"Sneaky"},{"c":0,"s":1,"id":4868,"u":"snow%20may_loag","p":23,"h":1,"n":"Snow May"},{"c":0,"s":1,"id":4869,"u":"soaring%20form_loag","p":60,"h":1,"n":"Soaring Form"},{"c":0,"s":1,"id":4870,"u":"speak%20with%20bats_loag","p":131,"h":1,"n":"Speak With Bats"},{"c":0,"s":1,"id":4871,"u":"spew%20tentacles_loag","p":94,"h":1,"n":"Spew Tentacles"},{"c":0,"s":1,"id":4872,"u":"spiteful%20rake_loag","p":24,"h":1,"n":"Spiteful Rake"},{"c":0,"s":1,"id":4873,"u":"spore%20cloud_loag","p":44,"h":1,"n":"Spore Cloud"},{"c":0,"s":1,"id":4874,"u":"sprite's%20spark_loag","p":131,"h":1,"n":"Sprite's Spark"},{"c":0,"s":1,"id":4875,"u":"squad%20tactics_loag","p":36,"h":1,"n":"Squad Tactics"},{"c":0,"s":1,"id":4876,"u":"star%20orb_loag","p":125,"h":1,"n":"Star Orb"},{"c":0,"s":1,"id":4877,"u":"startling%20appearance_loag","p":93,"h":1,"n":"Startling Appearance"},{"c":0,"s":1,"id":4878,"u":"steady%20on%20stone_loag","p":107,"h":1,"n":"Steady On Stone"},{"c":0,"s":1,"id":4879,"u":"steam%20spell_loag","p":120,"h":1,"n":"Steam Spell"},{"c":0,"s":1,"id":4880,"u":"stone%20face_loag","p":35,"h":1,"n":"Stone Face"},{"c":0,"s":1,"id":4881,"u":"stone%20form_loag","p":108,"h":1,"n":"Stone Form"},{"c":0,"s":1,"id":4882,"u":"storm%20form_loag","p":116,"h":1,"n":"Storm Form"},{"c":0,"s":1,"id":4883,"u":"stormsoul_loag","p":115,"h":1,"n":"Stormsoul"},{"c":0,"s":1,"id":4884,"u":"stormy%20heart_loag","p":24,"h":1,"n":"Stormy Heart"},{"c":0,"s":1,"id":4885,"u":"story%20crooner_loag","p":137,"h":1,"n":"Story Crooner"},{"c":0,"s":1,"id":4886,"u":"striking%20retribution_loag","p":15,"h":1,"n":"Striking Retribution"},{"c":0,"s":1,"id":4887,"u":"strix%20defender_loag","p":137,"h":1,"n":"Strix Defender"},{"c":0,"s":1,"id":4888,"u":"strix%20lore_loag","p":137,"h":1,"n":"Strix Lore"},{"c":0,"s":1,"id":4889,"u":"strix%20vengeance_loag","p":138,"h":1,"n":"Strix Vengeance"},{"c":0,"s":1,"id":4890,"u":"strong%20swimmer_loag","p":120,"h":1,"n":"Strong Swimmer"},{"c":0,"s":1,"id":4891,"u":"suli%20amir_loag","p":112,"h":1,"n":"Suli Amir"},{"c":0,"s":1,"id":4892,"u":"suli-jann_loag","p":111,"h":1,"n":"Suli-jann"},{"c":0,"s":1,"id":4893,"u":"summon%20air%20elemental_loag","p":116,"h":1,"n":"Summon Air Elemental"},{"c":0,"s":1,"id":4894,"u":"summon%20earth%20elemental_loag","p":108,"h":1,"n":"Summon Earth Elemental"},{"c":0,"s":1,"id":4895,"u":"summon%20fire%20elemental_loag","p":104,"h":1,"n":"Summon Fire Elemental"},{"c":0,"s":1,"id":4896,"u":"summon%20water%20elemental_loag","p":120,"h":1,"n":"Summon Water Elemental"},{"c":0,"s":1,"id":4897,"u":"swift_loag","p":115,"h":1,"n":"Swift"},{"c":0,"s":1,"id":4898,"u":"taste%20blood_loag","p":28,"h":1,"n":"Taste Blood"},{"c":0,"s":1,"id":4899,"u":"ten%20lives_loag","p":20,"h":1,"n":"Ten Lives"},{"c":0,"s":1,"id":4900,"u":"tengu%20feather%20fan_loag","p":59,"h":1,"n":"Tengu Feather Fan"},{"c":0,"s":1,"id":4901,"u":"tetraelemental%20assault_loag","p":112,"h":1,"n":"Tetraelemental Assault"},{"c":0,"s":1,"id":4902,"u":"thorned%20seedpod_loag","p":44,"h":1,"n":"Thorned Seedpod"},{"c":0,"s":1,"id":4903,"u":"thrown%20voice_loag","p":138,"h":1,"n":"Thrown Voice"},{"c":0,"s":1,"id":4904,"u":"thunder%20god's%20fan_loag","p":60,"h":1,"n":"Thunder God's Fan"},{"c":0,"s":1,"id":4905,"u":"tidal%20shield_loag","p":120,"h":1,"n":"Tidal Shield"},{"c":0,"s":1,"id":4906,"u":"tide-hardened_loag","p":119,"h":1,"n":"Tide-hardened"},{"c":0,"s":1,"id":4907,"u":"tongue%20disarm_loag","p":47,"h":1,"n":"Tongue Disarm"},{"c":0,"s":1,"id":4908,"u":"tranquil%20sanctuary_loag","p":11,"h":1,"n":"Tranquil Sanctuary"},{"c":0,"s":1,"id":4909,"u":"translucent%20skin_loag","p":120,"h":1,"n":"Translucent Skin"},{"c":0,"s":1,"id":4910,"u":"treacherous%20earth_loag","p":108,"h":1,"n":"Treacherous Earth"},{"c":0,"s":1,"id":4911,"u":"trickster%20tengu_loag","p":60,"h":1,"n":"Trickster Tengu"},{"c":0,"s":1,"id":4912,"u":"truespeech_loag","p":12,"h":1,"n":"Truespeech"},{"c":0,"s":1,"id":4913,"u":"twist%20healing_loag","p":28,"h":1,"n":"Twist Healing"},{"c":0,"s":1,"id":4914,"u":"uncanny%20agility_loag","p":59,"h":1,"n":"Uncanny Agility"},{"c":0,"s":1,"id":4915,"u":"uncanny%20awareness_loag","p":94,"h":1,"n":"Uncanny Awareness"},{"c":0,"s":1,"id":4916,"u":"uncanny%20cheeks_loag","p":56,"h":1,"n":"Uncanny Cheeks"},{"c":0,"s":1,"id":4917,"u":"undead%20companion_loag","p":28,"h":1,"n":"Undead Companion"},{"c":0,"s":1,"id":4918,"u":"underwater%20volcano_loag","p":16,"h":1,"n":"Underwater Volcano"},{"c":0,"s":1,"id":4919,"u":"vanth's%20weapon%20execution_loag","p":31,"h":1,"n":"Vanth's Weapon Execution"},{"c":0,"s":1,"id":4920,"u":"vanth's%20weapon%20expertise_loag","p":32,"h":1,"n":"Vanth's Weapon Expertise"},{"c":0,"s":1,"id":4921,"u":"vanth's%20weapon%20familiarity_loag","p":31,"h":1,"n":"Vanth's Weapon Familiarity"},{"c":0,"s":1,"id":4922,"u":"veil%20may_loag","p":23,"h":1,"n":"Veil May"},{"c":0,"s":1,"id":4923,"u":"velstrac%20magic_loag","p":66,"h":1,"n":"Velstrac Magic"},{"c":0,"s":1,"id":4924,"u":"vestigial%20wings_loag","p":97,"h":1,"n":"Vestigial Wings"},{"c":0,"s":1,"id":4925,"u":"vicious%20snares_loag","p":40,"h":1,"n":"Vicious Snares"},{"c":0,"s":1,"id":4926,"u":"virga%20may_loag","p":23,"h":1,"n":"Virga May"},{"c":0,"s":1,"id":4927,"u":"war%20conditioning_loag","p":36,"h":1,"n":"War Conditioning"},{"c":0,"s":1,"id":4928,"u":"warren%20friend_loag","p":55,"h":1,"n":"Warren Friend"},{"c":0,"s":1,"id":4929,"u":"water%20conjuration_loag","p":15,"h":1,"n":"Water Conjuration"},{"c":0,"s":1,"id":4930,"u":"water%20dancer_loag","p":15,"h":1,"n":"Water Dancer"},{"c":0,"s":1,"id":4931,"u":"water%20strider_loag","p":16,"h":1,"n":"Water Strider"},{"c":0,"s":1,"id":4932,"u":"waxed%20feathers_loag","p":59,"h":1,"n":"Waxed Feathers"},{"c":0,"s":1,"id":4933,"u":"we%20march%20on_loag","p":36,"h":1,"n":"We March On"},{"c":0,"s":1,"id":4934,"u":"willing%20death_loag","p":31,"h":1,"n":"Willing Death"},{"c":0,"s":1,"id":4935,"u":"wind%20god's%20fan_loag","p":59,"h":1,"n":"Wind God's Fan"},{"c":0,"s":1,"id":4936,"u":"wind%20tempered_loag","p":115,"h":1,"n":"Wind Tempered"},{"c":0,"s":1,"id":4937,"u":"wing%20step_loag","p":138,"h":1,"n":"Wing Step"},{"c":0,"s":1,"id":4938,"u":"winglets_loag","p":39,"h":1,"n":"Winglets"},{"c":0,"s":1,"id":4939,"u":"wings%20of%20air_loag","p":116,"h":1,"n":"Wings Of Air"},{"c":0,"s":1,"id":4940,"u":"winter%20cat%20senses_loag","p":19,"h":1,"n":"Winter Cat Senses"},{"c":0,"s":1,"id":4941,"u":"wyrmling%20flight_loag","p":40,"h":1,"n":"Wyrmling Flight"},{"c":0,"s":1,"id":4942,"u":"yamaraj's%20grandeur_loag","p":32,"h":1,"n":"Yamaraj's Grandeur"},{"c":0,"s":6,"id":4943,"u":"absorb%20spell_locg","p":114,"h":1,"n":"Absorb Spell"},{"c":0,"s":6,"id":4944,"u":"adaptive%20mask%20familiar_locg","p":101,"h":1,"n":"Adaptive Mask Familiar"},{"c":0,"s":6,"id":4945,"u":"adroit%20manipulation_locg","p":44,"h":1,"n":"Adroit Manipulation"},{"c":0,"s":6,"id":4946,"u":"advanced%20order%20training_locg","p":81,"h":1,"n":"Advanced Order Training"},{"c":0,"s":6,"id":4947,"u":"aegis%20of%20arnisant_locg","p":94,"h":1,"n":"Aegis Of Arnisant"},{"c":0,"s":6,"id":4948,"u":"agonizing%20rebuke_locg","p":50,"h":1,"n":"Agonizing Rebuke"},{"c":0,"s":6,"id":4949,"u":"alchemical%20scholar_locg","p":50,"h":1,"n":"Alchemical Scholar"},{"c":0,"s":6,"id":4950,"u":"ankle%20bite_locg","p":38,"h":1,"n":"Ankle Bite"},{"c":0,"s":6,"id":4951,"u":"arcane%20tattoos_locg","p":11,"h":1,"n":"Arcane Tattoos"},{"c":0,"s":6,"id":4952,"u":"avenge%20in%20glory_locg","p":20,"h":1,"n":"Avenge In Glory"},{"c":0,"s":6,"id":4953,"u":"backup%20disguise_locg","p":71,"h":1,"n":"Backup Disguise"},{"c":0,"s":6,"id":4954,"u":"bark%20and%20tendril_locg","p":55,"h":1,"n":"Bark And Tendril"},{"c":0,"s":6,"id":4955,"u":"battleforger_locg","p":21,"h":1,"n":"Battleforger"},{"c":0,"s":6,"id":4956,"u":"blade%20of%20law_locg","p":84,"h":1,"n":"Blade Of Law"},{"c":0,"s":6,"id":4957,"u":"blade%20of%20the%20crimson%20oath_locg","p":95,"h":1,"n":"Blade Of The Crimson Oath"},{"c":0,"s":6,"id":4958,"u":"boaster's%20challenge_locg","p":74,"h":1,"n":"Boaster's Challenge"},{"c":0,"s":6,"id":4959,"u":"bouncy%20goblin_locg","p":37,"h":1,"n":"Bouncy Goblin"},{"c":0,"s":6,"id":4960,"u":"bravo's%20determination_locg","p":75,"h":1,"n":"Bravo's Determination"},{"c":0,"s":6,"id":4961,"u":"brightness%20seeker_locg","p":27,"h":1,"n":"Brightness Seeker"},{"c":0,"s":6,"id":4962,"u":"cascade%20bearers%20flexibility_locg","p":101,"h":1,"n":"Cascade Bearers Flexibility"},{"c":0,"s":6,"id":4963,"u":"cascade%20bearers%20spellcasting_locg","p":103,"h":1,"n":"Cascade Bearers Spellcasting"},{"c":0,"s":6,"id":4964,"u":"charged%20creation_locg","p":104,"h":1,"n":"Charged Creation"},{"c":0,"s":6,"id":4965,"u":"chosen%20of%20lamashtu_locg","p":38,"h":1,"n":"Chosen Of Lamashtu"},{"c":0,"s":6,"id":4966,"u":"clan%20protector_locg","p":20,"h":1,"n":"Clan Protector"},{"c":0,"s":6,"id":4967,"u":"clan's%20edge_locg","p":20,"h":1,"n":"Clan's Edge"},{"c":0,"s":6,"id":4968,"u":"cobble%20dancer_locg","p":45,"h":1,"n":"Cobble Dancer"},{"c":0,"s":6,"id":4969,"u":"courteous%20comeback_locg","p":11,"h":1,"n":"Courteous Comeback"},{"c":0,"s":6,"id":4970,"u":"cunning%20climber_locg","p":45,"h":1,"n":"Cunning Climber"},{"c":0,"s":6,"id":4971,"u":"daredevil's%20gambit_locg","p":75,"h":1,"n":"Daredevil's Gambit"},{"c":0,"s":6,"id":4972,"u":"daring%20act_locg","p":74,"h":1,"n":"Daring Act"},{"c":0,"s":6,"id":4973,"u":"daring%20flourish_locg","p":75,"h":1,"n":"Daring Flourish"},{"c":0,"s":6,"id":4974,"u":"darkseer_locg","p":13,"h":1,"n":"Darkseer"},{"c":0,"s":6,"id":4975,"u":"death's%20door_locg","p":115,"h":1,"n":"Death's Door"},{"c":0,"s":6,"id":4976,"u":"defiance%20unto%20death_locg","p":26,"h":1,"n":"Defiance Unto Death"},{"c":0,"s":6,"id":4977,"u":"demanding%20challenge_locg","p":75,"h":1,"n":"Demanding Challenge"},{"c":0,"s":6,"id":4978,"u":"devil's%20advocate_locg","p":11,"h":1,"n":"Devil's Advocate"},{"c":0,"s":6,"id":4979,"u":"dragon%20prince_locg","p":14,"h":1,"n":"Dragon Prince"},{"c":0,"s":6,"id":4980,"u":"dragon%20spit_locg","p":12,"h":1,"n":"Dragon Spit"},{"c":0,"s":6,"id":4981,"u":"dualistic%20synergy_locg","p":104,"h":1,"n":"Dualistic Synergy"},{"c":0,"s":6,"id":4982,"u":"easily%20dismissed_locg","p":44,"h":1,"n":"Easily Dismissed"},{"c":0,"s":6,"id":4983,"u":"eclectic%20obsession_locg","p":33,"h":1,"n":"Eclectic Obsession"},{"c":0,"s":6,"id":4984,"u":"educated%20assessment_locg","p":112,"h":1,"n":"Educated Assessment"},{"c":0,"s":6,"id":4985,"u":"elemental%20wrath_locg","p":26,"h":1,"n":"Elemental Wrath"},{"c":0,"s":6,"id":4986,"u":"elven%20instincts_locg","p":27,"h":1,"n":"Elven Instincts"},{"c":0,"s":6,"id":4987,"u":"elven%20verve_locg","p":26,"h":1,"n":"Elven Verve"},{"c":0,"s":6,"id":4988,"u":"emerald%20boughs%20accustomation_locg","p":102,"h":1,"n":"Emerald Boughs Accustomation"},{"c":0,"s":6,"id":4989,"u":"emerald%20boughs%20hideaway_locg","p":103,"h":1,"n":"Emerald Boughs Hideaway"},{"c":0,"s":6,"id":4990,"u":"endure%20death's%20touch_locg","p":94,"h":1,"n":"Endure Death's Touch"},{"c":0,"s":6,"id":4991,"u":"energy%20blessed_locg","p":21,"h":1,"n":"Energy Blessed"},{"c":0,"s":6,"id":4992,"u":"entourage_locg","p":72,"h":1,"n":"Entourage"},{"c":0,"s":6,"id":4993,"u":"envenom%20fangs_locg","p":59,"h":1,"n":"Envenom Fangs"},{"c":0,"s":6,"id":4994,"u":"everstand%20stance_locg","p":90,"h":1,"n":"Everstand Stance"},{"c":0,"s":6,"id":4995,"u":"everstand%20strike_locg","p":90,"h":1,"n":"Everstand Strike"},{"c":0,"s":6,"id":4996,"u":"everyone%20duck!_locg","p":112,"h":1,"n":"Everyone Duck!"},{"c":0,"s":6,"id":4997,"u":"expert%20drill%20sergeant_locg","p":51,"h":1,"n":"Expert Drill Sergeant"},{"c":0,"s":6,"id":4998,"u":"fade%20away_locg","p":45,"h":1,"n":"Fade Away"},{"c":0,"s":6,"id":4999,"u":"fang%20sharpener_locg","p":37,"h":1,"n":"Fang Sharpener"},{"c":0,"s":6,"id":5000,"u":"firebrand%20braggart%20dedication_locg","p":74,"h":1,"n":"Firebrand Braggart Dedication"},{"c":0,"s":6,"id":5001,"u":"flexible%20halcyon%20spellcasting_locg","p":105,"h":1,"n":"Flexible Halcyon Spellcasting"},{"c":0,"s":6,"id":5002,"u":"font%20of%20knowledge_locg","p":113,"h":1,"n":"Font Of Knowledge"},{"c":0,"s":6,"id":5003,"u":"forced%20entry_locg","p":112,"h":1,"n":"Forced Entry"},{"c":0,"s":6,"id":5004,"u":"forest%20stealth_locg","p":27,"h":1,"n":"Forest Stealth"},{"c":0,"s":6,"id":5005,"u":"forge-day's%20rest_locg","p":20,"h":1,"n":"Forge-day's Rest"},{"c":0,"s":6,"id":5006,"u":"formation%20master_locg","p":51,"h":1,"n":"Formation Master"},{"c":0,"s":6,"id":5007,"u":"formation%20training_locg","p":51,"h":1,"n":"Formation Training"},{"c":0,"s":6,"id":5008,"u":"fortuitous%20shift_locg","p":33,"h":1,"n":"Fortuitous Shift"},{"c":0,"s":6,"id":5009,"u":"freeze%20it!_locg","p":39,"h":1,"n":"Freeze It!"},{"c":0,"s":6,"id":5010,"u":"fulminating%20synergy_locg","p":105,"h":1,"n":"Fulminating Synergy"},{"c":0,"s":6,"id":5011,"u":"gaze%20of%20veracity_locg","p":85,"h":1,"n":"Gaze Of Veracity"},{"c":0,"s":6,"id":5012,"u":"gecko's%20grip_locg","p":59,"h":1,"n":"Gecko's Grip"},{"c":0,"s":6,"id":5013,"u":"gloomseer_locg","p":12,"h":1,"n":"Gloomseer"},{"c":0,"s":6,"id":5014,"u":"gnome%20polyglot_locg","p":31,"h":1,"n":"Gnome Polyglot"},{"c":0,"s":6,"id":5015,"u":"grasping%20reach_locg","p":54,"h":1,"n":"Grasping Reach"},{"c":0,"s":6,"id":5016,"u":"great%20boaster_locg","p":75,"h":1,"n":"Great Boaster"},{"c":0,"s":6,"id":5017,"u":"grim%20insight_locg","p":32,"h":1,"n":"Grim Insight"},{"c":0,"s":6,"id":5018,"u":"halcyon%20speaker%20dedication_locg","p":104,"h":1,"n":"Halcyon Speaker Dedication"},{"c":0,"s":6,"id":5019,"u":"halcyon%20spellcasting%20adept_locg","p":105,"h":1,"n":"Halcyon Spellcasting Adept"},{"c":0,"s":6,"id":5020,"u":"halcyon%20spellcasting%20initiate_locg","p":104,"h":1,"n":"Halcyon Spellcasting Initiate"},{"c":0,"s":6,"id":5021,"u":"halcyon%20spellcasting%20sage_locg","p":105,"h":1,"n":"Halcyon Spellcasting Sage"},{"c":0,"s":6,"id":5022,"u":"halfling%20ingenuity_locg","p":44,"h":1,"n":"Halfling Ingenuity"},{"c":0,"s":6,"id":5023,"u":"hard%20tail_locg","p":38,"h":1,"n":"Hard Tail"},{"c":0,"s":6,"id":5024,"u":"harmlessly%20cute_locg","p":54,"h":1,"n":"Harmlessly Cute"},{"c":0,"s":6,"id":5025,"u":"harrying%20strike_locg","p":115,"h":1,"n":"Harrying Strike"},{"c":0,"s":6,"id":5026,"u":"heir%20of%20the%20saoc_locg","p":14,"h":1,"n":"Heir Of The Saoc"},{"c":0,"s":6,"id":5027,"u":"hell's%20armaments_locg","p":84,"h":1,"n":"Hell's Armaments"},{"c":0,"s":6,"id":5028,"u":"hellknight%20dedication_locg","p":84,"h":1,"n":"Hellknight Dedication"},{"c":0,"s":6,"id":5029,"u":"hellknight%20order%20cross-training_locg","p":81,"h":1,"n":"Hellknight Order Cross-training"},{"c":0,"s":6,"id":5030,"u":"hellknight%20signifer%20dedication_locg","p":85,"h":1,"n":"Hellknight Signifer Dedication"},{"c":0,"s":6,"id":5031,"u":"helpful%20halfling_locg","p":45,"h":1,"n":"Helpful Halfling"},{"c":0,"s":6,"id":5032,"u":"heroes'%20call_locg","p":21,"h":1,"n":"Heroes' Call"},{"c":0,"s":6,"id":5033,"u":"hobgoblin%20lore_locg","p":50,"h":1,"n":"Hobgoblin Lore"},{"c":0,"s":6,"id":5034,"u":"hobgoblin%20weapon%20discipline_locg","p":51,"h":1,"n":"Hobgoblin Weapon Discipline"},{"c":0,"s":6,"id":5035,"u":"hobgoblin%20weapon%20expertise_locg","p":51,"h":1,"n":"Hobgoblin Weapon Expertise"},{"c":0,"s":6,"id":5036,"u":"hobgoblin%20weapon%20familiarity_locg","p":50,"h":1,"n":"Hobgoblin Weapon Familiarity"},{"c":0,"s":6,"id":5037,"u":"hungry%20goblin_locg","p":39,"h":1,"n":"Hungry Goblin"},{"c":0,"s":6,"id":5038,"u":"impassable%20wall%20stance_locg","p":90,"h":1,"n":"Impassable Wall Stance"},{"c":0,"s":6,"id":5039,"u":"incredible%20luck_locg","p":45,"h":1,"n":"Incredible Luck"},{"c":0,"s":6,"id":5040,"u":"innocuous_locg","p":44,"h":1,"n":"Innocuous"},{"c":0,"s":6,"id":5041,"u":"intuitive%20cooperation_locg","p":44,"h":1,"n":"Intuitive Cooperation"},{"c":0,"s":6,"id":5042,"u":"intuitive%20illusions_locg","p":33,"h":1,"n":"Intuitive Illusions"},{"c":0,"s":6,"id":5043,"u":"inventive%20offensive_locg","p":32,"h":1,"n":"Inventive Offensive"},{"c":0,"s":6,"id":5044,"u":"invoke%20the%20crimson%20oath_locg","p":95,"h":1,"n":"Invoke The Crimson Oath"},{"c":0,"s":6,"id":5045,"u":"irriseni%20ice-witch_locg","p":14,"h":1,"n":"Irriseni Ice-witch"},{"c":0,"s":6,"id":5046,"u":"iruxi%20unarmed%20cunning_locg","p":59,"h":1,"n":"Iruxi Unarmed Cunning"},{"c":0,"s":6,"id":5047,"u":"keep%20up%20appearances_locg","p":12,"h":1,"n":"Keep Up Appearances"},{"c":0,"s":6,"id":5048,"u":"kneel%20for%20no%20god_locg","p":21,"h":1,"n":"Kneel For No God"},{"c":0,"s":6,"id":5049,"u":"knight%20in%20shining%20armor_locg","p":94,"h":1,"n":"Knight In Shining Armor"},{"c":0,"s":6,"id":5050,"u":"knight%20reclaimant%20dedication_locg","p":95,"h":1,"n":"Knight Reclaimant Dedication"},{"c":0,"s":6,"id":5051,"u":"knight%20vigilant_locg","p":94,"h":1,"n":"Knight Vigilant"},{"c":0,"s":6,"id":5052,"u":"know%20oneself_locg","p":12,"h":1,"n":"Know Oneself"},{"c":0,"s":6,"id":5053,"u":"leech-clipper_locg","p":50,"h":1,"n":"Leech-clipper"},{"c":0,"s":6,"id":5054,"u":"leshy%20glide_locg","p":55,"h":1,"n":"Leshy Glide"},{"c":0,"s":6,"id":5055,"u":"leshy%20lore_locg","p":54,"h":1,"n":"Leshy Lore"},{"c":0,"s":6,"id":5056,"u":"leshy%20superstition_locg","p":54,"h":1,"n":"Leshy Superstition"},{"c":0,"s":6,"id":5057,"u":"life-giving%20magic_locg","p":32,"h":1,"n":"Life-giving Magic"},{"c":0,"s":6,"id":5058,"u":"light%20of%20revelation_locg","p":90,"h":1,"n":"Light Of Revelation"},{"c":0,"s":6,"id":5059,"u":"lizardfolk%20lore_locg","p":58,"h":1,"n":"Lizardfolk Lore"},{"c":0,"s":6,"id":5060,"u":"lore%20seeker_locg","p":113,"h":1,"n":"Lore Seeker"},{"c":0,"s":6,"id":5061,"u":"lucky%20keepsake_locg","p":55,"h":1,"n":"Lucky Keepsake"},{"c":0,"s":6,"id":5062,"u":"magaambyan%20attendant%20dedication_locg","p":101,"h":1,"n":"Magaambyan Attendant Dedication"},{"c":0,"s":6,"id":5063,"u":"marsh%20runner_locg","p":58,"h":1,"n":"Marsh Runner"},{"c":0,"s":6,"id":5064,"u":"mask%20familiar_locg","p":101,"h":1,"n":"Mask Familiar"},{"c":0,"s":6,"id":5065,"u":"masked%20casting_locg","p":85,"h":1,"n":"Masked Casting"},{"c":0,"s":6,"id":5066,"u":"natural%20illusionist_locg","p":33,"h":1,"n":"Natural Illusionist"},{"c":0,"s":6,"id":5067,"u":"natural%20performer_locg","p":32,"h":1,"n":"Natural Performer"},{"c":0,"s":6,"id":5068,"u":"order%20training_locg","p":81,"h":1,"n":"Order Training"},{"c":0,"s":6,"id":5069,"u":"ornate%20tattoo_locg","p":13,"h":1,"n":"Ornate Tattoo"},{"c":0,"s":6,"id":5070,"u":"overlooked%20mastermind_locg","p":15,"h":1,"n":"Overlooked Mastermind"},{"c":0,"s":6,"id":5071,"u":"parthenogenic%20hatchling_locg","p":58,"h":1,"n":"Parthenogenic Hatchling"},{"c":0,"s":6,"id":5072,"u":"persistent%20creation_locg","p":104,"h":1,"n":"Persistent Creation"},{"c":0,"s":6,"id":5073,"u":"pride%20in%20arms_locg","p":51,"h":1,"n":"Pride In Arms"},{"c":0,"s":6,"id":5074,"u":"primal%20rampage_locg","h":1,"n":"Primal Rampage"},{"c":0,"s":6,"id":5075,"u":"protective%20sheath_locg","p":21,"h":1,"n":"Protective Sheath"},{"c":0,"s":6,"id":5076,"u":"quah%20bond_locg","p":12,"h":1,"n":"Quah Bond"},{"c":0,"s":6,"id":5077,"u":"rain-scribe%20mobility_locg","p":103,"h":1,"n":"Rain-scribe Mobility"},{"c":0,"s":6,"id":5078,"u":"rain-scribe%20sustenance_locg","p":102,"h":1,"n":"Rain-scribe Sustenance"},{"c":0,"s":6,"id":5079,"u":"razor%20claws_locg","p":58,"h":1,"n":"Razor Claws"},{"c":0,"s":6,"id":5080,"u":"reaper%20of%20repose_locg","p":95,"h":1,"n":"Reaper Of Repose"},{"c":0,"s":6,"id":5081,"u":"recognize%20threat_locg","p":112,"h":1,"n":"Recognize Threat"},{"c":0,"s":6,"id":5082,"u":"remorseless%20lash_locg","p":50,"h":1,"n":"Remorseless Lash"},{"c":0,"s":6,"id":5083,"u":"reptile%20speaker_locg","p":58,"h":1,"n":"Reptile Speaker"},{"c":0,"s":6,"id":5084,"u":"ritual%20reversion_locg","p":55,"h":1,"n":"Ritual Reversion"},{"c":0,"s":6,"id":5085,"u":"roll%20with%20it_locg","p":39,"h":1,"n":"Roll With It"},{"c":0,"s":6,"id":5086,"u":"round%20ears_locg","p":15,"h":1,"n":"Round Ears"},{"c":0,"s":6,"id":5087,"u":"saoc%20astrology_locg","p":12,"h":1,"n":"Saoc Astrology"},{"c":0,"s":6,"id":5088,"u":"scalding%20spit_locg","p":39,"h":1,"n":"Scalding Spit"},{"c":0,"s":6,"id":5089,"u":"scrollmaster%20dedication_locg","p":113,"h":1,"n":"Scrollmaster Dedication"},{"c":0,"s":6,"id":5090,"u":"seedpod_locg","p":54,"h":1,"n":"Seedpod"},{"c":0,"s":6,"id":5091,"u":"sense%20chaos_locg","p":84,"h":1,"n":"Sense Chaos"},{"c":0,"s":6,"id":5092,"u":"sense%20thoughts_locg","p":27,"h":1,"n":"Sense Thoughts"},{"c":0,"s":6,"id":5093,"u":"shadow%20of%20the%20wilds_locg","p":54,"h":1,"n":"Shadow Of The Wilds"},{"c":0,"s":6,"id":5094,"u":"shadow%20pact_locg","p":14,"h":1,"n":"Shadow Pact"},{"c":0,"s":6,"id":5095,"u":"share%20thoughts_locg","p":26,"h":1,"n":"Share Thoughts"},{"c":0,"s":6,"id":5096,"u":"shared%20luck_locg","p":45,"h":1,"n":"Shared Luck"},{"c":0,"s":6,"id":5097,"u":"shared%20synergy_locg","p":104,"h":1,"n":"Shared Synergy"},{"c":0,"s":6,"id":5098,"u":"sharp%20fangs_locg","p":58,"h":1,"n":"Sharp Fangs"},{"c":0,"s":6,"id":5099,"u":"shed%20tail_locg","p":59,"h":1,"n":"Shed Tail"},{"c":0,"s":6,"id":5100,"u":"shory%20aerialist_locg","p":15,"h":1,"n":"Shory Aerialist"},{"c":0,"s":6,"id":5101,"u":"shory%20aeromancer_locg","p":14,"h":1,"n":"Shory Aeromancer"},{"c":0,"s":6,"id":5102,"u":"shoulder%20catastrophe_locg","p":115,"h":1,"n":"Shoulder Catastrophe"},{"c":0,"s":6,"id":5103,"u":"signifer%20armor%20expertise_locg","p":85,"h":1,"n":"Signifer Armor Expertise"},{"c":0,"s":6,"id":5104,"u":"signifer's%20sight_locg","p":85,"h":1,"n":"Signifer's Sight"},{"c":0,"s":6,"id":5105,"u":"sociable_locg","p":15,"h":1,"n":"Sociable"},{"c":0,"s":6,"id":5106,"u":"solar%20rejuvenation_locg","p":55,"h":1,"n":"Solar Rejuvenation"},{"c":0,"s":6,"id":5107,"u":"sow%20rumor_locg","p":71,"h":1,"n":"Sow Rumor"},{"c":0,"s":6,"id":5108,"u":"speak%20with%20kindred_locg","p":55,"h":1,"n":"Speak With Kindred"},{"c":0,"s":6,"id":5109,"u":"spellmaster%20dedication_locg","p":114,"h":1,"n":"Spellmaster Dedication"},{"c":0,"s":6,"id":5110,"u":"spellmaster's%20resilience_locg","p":114,"h":1,"n":"Spellmaster's Resilience"},{"c":0,"s":6,"id":5111,"u":"sun%20blade_locg","p":90,"h":1,"n":"Sun Blade"},{"c":0,"s":6,"id":5112,"u":"surface%20culture_locg","p":20,"h":1,"n":"Surface Culture"},{"c":0,"s":6,"id":5113,"u":"surreptitious%20spellcaster_locg","p":114,"h":1,"n":"Surreptitious Spellcaster"},{"c":0,"s":6,"id":5114,"u":"survivor%20of%20desolation_locg","p":95,"h":1,"n":"Survivor Of Desolation"},{"c":0,"s":6,"id":5115,"u":"swift%20swimmer_locg","p":59,"h":1,"n":"Swift Swimmer"},{"c":0,"s":6,"id":5116,"u":"swordmaster%20dedication_locg","p":115,"h":1,"n":"Swordmaster Dedication"},{"c":0,"s":6,"id":5117,"u":"synergistic%20spell_locg","p":105,"h":1,"n":"Synergistic Spell"},{"c":0,"s":6,"id":5118,"u":"tail%20spin_locg","p":38,"h":1,"n":"Tail Spin"},{"c":0,"s":6,"id":5119,"u":"tail%20whip_locg","p":58,"h":1,"n":"Tail Whip"},{"c":0,"s":6,"id":5120,"u":"tempest-sun%20redirection_locg","p":102,"h":1,"n":"Tempest-sun Redirection"},{"c":0,"s":6,"id":5121,"u":"tempest-sun%20shielding_locg","p":103,"h":1,"n":"Tempest-sun Shielding"},{"c":0,"s":6,"id":5122,"u":"terrain%20advantage_locg","p":59,"h":1,"n":"Terrain Advantage"},{"c":0,"s":6,"id":5123,"u":"theoretical%20acumen_locg","p":32,"h":1,"n":"Theoretical Acumen"},{"c":0,"s":6,"id":5124,"u":"tomb-watcher's%20glare_locg","p":21,"h":1,"n":"Tomb-watcher's Glare"},{"c":0,"s":6,"id":5125,"u":"torch%20goblin_locg","p":38,"h":1,"n":"Torch Goblin"},{"c":0,"s":6,"id":5126,"u":"tree%20climber_locg","p":38,"h":1,"n":"Tree Climber"},{"c":0,"s":6,"id":5127,"u":"tupilaq%20carver_locg","p":13,"h":1,"n":"Tupilaq Carver"},{"c":0,"s":6,"id":5128,"u":"tusks_locg","p":15,"h":1,"n":"Tusks"},{"c":0,"s":6,"id":5129,"u":"unassuming%20dedication_locg","p":44,"h":1,"n":"Unassuming Dedication"},{"c":0,"s":6,"id":5130,"u":"unbreakable-er%20goblin_locg","p":39,"h":1,"n":"Unbreakable-er Goblin"},{"c":0,"s":6,"id":5131,"u":"undaunted_locg","p":54,"h":1,"n":"Undaunted"},{"c":0,"s":6,"id":5132,"u":"unexpected%20shift_locg","p":32,"h":1,"n":"Unexpected Shift"},{"c":0,"s":6,"id":5133,"u":"unravel%20mysteries_locg","p":113,"h":1,"n":"Unravel Mysteries"},{"c":0,"s":6,"id":5134,"u":"unshakable%20idealism_locg","p":94,"h":1,"n":"Unshakable Idealism"},{"c":0,"s":6,"id":5135,"u":"uzunjati%20recollection_locg","p":103,"h":1,"n":"Uzunjati Recollection"},{"c":0,"s":6,"id":5136,"u":"uzunjati%20storytelling_locg","p":102,"h":1,"n":"Uzunjati Storytelling"},{"c":0,"s":6,"id":5137,"u":"vibrant%20display_locg","p":33,"h":1,"n":"Vibrant Display"},{"c":0,"s":6,"id":5138,"u":"vigorous%20health_locg","p":50,"h":1,"n":"Vigorous Health"},{"c":0,"s":6,"id":5139,"u":"viking%20shieldbearer_locg","p":13,"h":1,"n":"Viking Shieldbearer"},{"c":0,"s":6,"id":5140,"u":"virtue-forged%20tattoos_locg","p":14,"h":1,"n":"Virtue-forged Tattoos"},{"c":0,"s":6,"id":5141,"u":"wandering%20heart_locg","p":27,"h":1,"n":"Wandering Heart"},{"c":0,"s":6,"id":5142,"u":"ward%20casting_locg","p":114,"h":1,"n":"Ward Casting"},{"c":0,"s":6,"id":5143,"u":"wavetouched%20paragon_locg","p":13,"h":1,"n":"Wavetouched Paragon"},{"c":0,"s":6,"id":5144,"u":"wildborn%20adept_locg","p":27,"h":1,"n":"Wildborn Adept"},{"c":0,"s":6,"id":5145,"u":"wildborn%20magic_locg","p":26,"h":1,"n":"Wildborn Magic"},{"c":0,"s":6,"id":5146,"u":"witch%20warden_locg","p":13,"h":1,"n":"Witch Warden"},{"c":0,"s":6,"id":5147,"u":"woodcraft_locg","p":26,"h":1,"n":"Woodcraft"},{"c":0,"s":51,"id":5148,"u":"battle%20prayer_logm","p":104,"h":1,"n":"Battle Prayer"},{"c":0,"s":51,"id":5149,"u":"bless%20tonic_logm","p":104,"h":1,"n":"Bless Tonic"},{"c":0,"s":51,"id":5150,"u":"bless%20toxin_logm","p":104,"h":1,"n":"Bless Toxin"},{"c":0,"s":51,"id":5151,"u":"blessed%20blood_logm","p":104,"h":1,"n":"Blessed Blood"},{"c":0,"s":51,"id":5152,"u":"charlatan_logm","p":104,"h":1,"n":"Charlatan"},{"c":0,"s":51,"id":5153,"u":"environmental%20grace_logm","p":105,"h":1,"n":"Environmental Grace"},{"c":0,"s":51,"id":5154,"u":"evangelize_logm","p":105,"h":1,"n":"Evangelize"},{"c":0,"s":51,"id":5155,"u":"expanded%20domain%20initiate_logm","p":8,"h":1,"n":"Expanded Domain Initiate"},{"c":0,"s":51,"id":5156,"u":"mortal%20healing_logm","p":105,"h":1,"n":"Mortal Healing"},{"c":0,"s":51,"id":5157,"u":"numb%20to%20death_logm","p":105,"h":1,"n":"Numb To Death"},{"c":0,"s":51,"id":5158,"u":"sacred%20defense_logm","p":105,"h":1,"n":"Sacred Defense"},{"c":0,"s":51,"id":5159,"u":"sacred%20ki_logm","p":105,"h":1,"n":"Sacred Ki"},{"c":0,"s":51,"id":5160,"u":"sanctify%20water_logm","p":105,"h":1,"n":"Sanctify Water"},{"c":0,"s":51,"id":5161,"u":"splinter%20faith_logm","p":8,"h":1,"n":"Splinter Faith"},{"c":0,"s":51,"id":5162,"u":"syncretism_logm","p":105,"h":1,"n":"Syncretism"},{"c":0,"s":52,"id":5163,"u":"achaekek's%20grip_lol","p":58,"h":1,"n":"Achaekek's Grip"},{"c":0,"s":52,"id":5164,"u":"artokus's%20fire_lol","p":20,"h":1,"n":"Artokus's Fire"},{"c":0,"s":52,"id":5165,"u":"azaersi's%20roads_lol","p":28,"h":1,"n":"Azaersi's Roads"},{"c":0,"s":52,"id":5166,"u":"bright%20lion%20dedication_lol","p":101,"h":1,"n":"Bright Lion Dedication"},{"c":0,"s":52,"id":5167,"u":"elude%20the%20divine_lol","p":101,"h":1,"n":"Elude The Divine"},{"c":0,"s":52,"id":5168,"u":"fading_lol","p":58,"h":1,"n":"Fading"},{"c":0,"s":52,"id":5169,"u":"flamboyant%20cruelty_lol","p":28,"h":1,"n":"Flamboyant Cruelty"},{"c":0,"s":52,"id":5170,"u":"janatimo's%20lessons_lol","p":61,"h":1,"n":"Janatimo's Lessons"},{"c":0,"s":52,"id":5171,"u":"medical%20researcher_lol","p":72,"h":1,"n":"Medical Researcher"},{"c":0,"s":52,"id":5172,"u":"paragon%20battle%20medicine_lol","p":72,"h":1,"n":"Paragon Battle Medicine"},{"c":0,"s":52,"id":5173,"u":"prayer%20attack_lol","p":58,"h":1,"n":"Prayer Attack"},{"c":0,"s":52,"id":5174,"u":"rescuer's%20press_lol","p":68,"h":1,"n":"Rescuer's Press"},{"c":0,"s":52,"id":5175,"u":"shall%20not%20falter%2c%20shall%20not%20rout_lol","p":69,"h":1,"n":"Shall Not Falter, Shall Not Rout"},{"c":0,"s":52,"id":5176,"u":"sun's%20fury_lol","p":101,"h":1,"n":"Sun's Fury"},{"c":0,"s":52,"id":5177,"u":"vernai%20training_lol","p":58,"h":1,"n":"Vernai Training"},{"c":0,"s":52,"id":5178,"u":"vigil's%20walls%20rise%20anew!_lol","p":69,"h":1,"n":"Vigil's Walls Rise Anew!"},{"c":0,"s":52,"id":5179,"u":"warding%20light_lol","p":101,"h":1,"n":"Warding Light"},{"c":0,"s":52,"id":5180,"u":"wish%20alchemy_lol","p":20,"h":1,"n":"Wish Alchemy"},{"c":0,"s":0,"id":5181,"u":"absorb%20toxin_lome","p":122,"h":1,"n":"Absorb Toxin"},{"c":0,"s":0,"id":5182,"u":"ambush%20awareness_lome","p":118,"h":1,"n":"Ambush Awareness"},{"c":0,"s":0,"id":5183,"u":"anadi%20lore_lome","p":106,"h":1,"n":"Anadi Lore"},{"c":0,"s":0,"id":5184,"u":"ancestor's%20rage_lome","p":114,"h":1,"n":"Ancestor's Rage"},{"c":0,"s":0,"id":5185,"u":"arcane%20sight_lome","p":118,"h":1,"n":"Arcane Sight"},{"c":0,"s":0,"id":5186,"u":"bone%20rider_lome","p":205,"h":1,"n":"Bone Rider"},{"c":0,"s":0,"id":5187,"u":"breath%20like%20honey_lome","p":114,"h":1,"n":"Breath Like Honey"},{"c":0,"s":0,"id":5188,"u":"bristle_lome","p":125,"h":1,"n":"Bristle"},{"c":0,"s":0,"id":5189,"u":"catch%20the%20details_lome","p":117,"h":1,"n":"Catch The Details"},{"c":0,"s":0,"id":5190,"u":"ceremony%20of%20aeon's%20guidance_lome","p":110,"h":1,"n":"Ceremony Of Aeon's Guidance"},{"c":0,"s":0,"id":5191,"u":"ceremony%20of%20aeon's%20shield_lome","p":110,"h":1,"n":"Ceremony Of Aeon's Shield"},{"c":0,"s":0,"id":5192,"u":"ceremony%20of%20fortification_lome","p":110,"h":1,"n":"Ceremony Of Fortification"},{"c":0,"s":0,"id":5193,"u":"ceremony%20of%20growth_lome","p":110,"h":1,"n":"Ceremony Of Growth"},{"c":0,"s":0,"id":5194,"u":"ceremony%20of%20knowledge_lome","p":109,"h":1,"n":"Ceremony Of Knowledge"},{"c":0,"s":0,"id":5195,"u":"ceremony%20of%20protection_lome","p":109,"h":1,"n":"Ceremony Of Protection"},{"c":0,"s":0,"id":5196,"u":"ceremony%20of%20sun's%20gift_lome","p":110,"h":1,"n":"Ceremony Of Sun's Gift"},{"c":0,"s":0,"id":5197,"u":"ceremony%20of%20sunlight_lome","p":109,"h":1,"n":"Ceremony Of Sunlight"},{"c":0,"s":0,"id":5198,"u":"ceremony%20of%20the%20evened%20hand_lome","p":109,"h":1,"n":"Ceremony Of The Evened Hand"},{"c":0,"s":0,"id":5199,"u":"ceremony%20of%20the%20strengthened%20hand_lome","p":110,"h":1,"n":"Ceremony Of The Strengthened Hand"},{"c":0,"s":0,"id":5200,"u":"conrasu%20lore_lome","p":109,"h":1,"n":"Conrasu Lore"},{"c":0,"s":0,"id":5201,"u":"conrasu%20weapon%20expertise_lome","p":110,"h":1,"n":"Conrasu Weapon Expertise"},{"c":0,"s":0,"id":5202,"u":"conrasu%20weapon%20familiarity_lome","p":109,"h":1,"n":"Conrasu Weapon Familiarity"},{"c":0,"s":0,"id":5203,"u":"conrasu%20weapon%20understanding_lome","p":110,"h":1,"n":"Conrasu Weapon Understanding"},{"c":0,"s":0,"id":5204,"u":"constant%20gaze_lome","p":118,"h":1,"n":"Constant Gaze"},{"c":0,"s":0,"id":5205,"u":"crunch_lome","p":113,"h":1,"n":"Crunch"},{"c":0,"s":0,"id":5206,"u":"defensive%20instincts_lome","p":118,"h":1,"n":"Defensive Instincts"},{"c":0,"s":0,"id":5207,"u":"delver_lome","p":126,"h":1,"n":"Delver"},{"c":0,"s":0,"id":5208,"u":"demonbane%20warrior_lome","p":60,"h":1,"n":"Demonbane Warrior"},{"c":0,"s":0,"id":5209,"u":"demonblood%20frenzy_lome","p":94,"h":1,"n":"Demonblood Frenzy"},{"c":0,"s":0,"id":5210,"u":"dig%20up%20secrets_lome","p":126,"h":1,"n":"Dig Up Secrets"},{"c":0,"s":0,"id":5211,"u":"disorienting%20venom_lome","p":106,"h":1,"n":"Disorienting Venom"},{"c":0,"s":0,"id":5212,"u":"distant%20cackle_lome","p":113,"h":1,"n":"Distant Cackle"},{"c":0,"s":0,"id":5213,"u":"eidetic%20ear_lome","p":125,"h":1,"n":"Eidetic Ear"},{"c":0,"s":0,"id":5214,"u":"envenomed%20edge_lome","p":122,"h":1,"n":"Envenomed Edge"},{"c":0,"s":0,"id":5215,"u":"fountain%20of%20secrets_lome","p":126,"h":1,"n":"Fountain Of Secrets"},{"c":0,"s":0,"id":5216,"u":"friendform_lome","p":106,"h":1,"n":"Friendform"},{"c":0,"s":0,"id":5217,"u":"gnoll%20lore_lome","p":113,"h":1,"n":"Gnoll Lore"},{"c":0,"s":0,"id":5218,"u":"gnoll%20weapon%20expertise_lome","p":114,"h":1,"n":"Gnoll Weapon Expertise"},{"c":0,"s":0,"id":5219,"u":"gnoll%20weapon%20familiarity_lome","p":113,"h":1,"n":"Gnoll Weapon Familiarity"},{"c":0,"s":0,"id":5220,"u":"gnoll%20weapon%20practicality_lome","p":114,"h":1,"n":"Gnoll Weapon Practicality"},{"c":0,"s":0,"id":5221,"u":"goloma%20courage_lome","p":117,"h":1,"n":"Goloma Courage"},{"c":0,"s":0,"id":5222,"u":"goloma%20lore_lome","p":117,"h":1,"n":"Goloma Lore"},{"c":0,"s":0,"id":5223,"u":"grandmother's%20wisdom_lome","p":114,"h":1,"n":"Grandmother's Wisdom"},{"c":0,"s":0,"id":5224,"u":"grippli%20glide_lome","p":121,"h":1,"n":"Grippli Glide"},{"c":0,"s":0,"id":5225,"u":"grippli%20lore_lome","p":120,"h":1,"n":"Grippli Lore"},{"c":0,"s":0,"id":5226,"u":"grippli%20weapon%20expertise_lome","p":122,"h":1,"n":"Grippli Weapon Expertise"},{"c":0,"s":0,"id":5227,"u":"grippli%20weapon%20familiarity_lome","p":120,"h":1,"n":"Grippli Weapon Familiarity"},{"c":0,"s":0,"id":5228,"u":"grippli%20weapon%20innovator_lome","p":121,"h":1,"n":"Grippli Weapon Innovator"},{"c":0,"s":0,"id":5229,"u":"hunter's%20defense_lome","p":121,"h":1,"n":"Hunter's Defense"},{"c":0,"s":0,"id":5230,"u":"hunter's%20fangs_lome","p":106,"h":1,"n":"Hunter's Fangs"},{"c":0,"s":0,"id":5231,"u":"hybrid%20shape_lome","p":106,"h":1,"n":"Hybrid Shape"},{"c":0,"s":0,"id":5232,"u":"hyena%20familiar_lome","p":113,"h":1,"n":"Hyena Familiar"},{"c":0,"s":0,"id":5233,"u":"inured%20to%20the%20heat_lome","p":125,"h":1,"n":"Inured To The Heat"},{"c":0,"s":0,"id":5234,"u":"jungle%20strider_lome","p":121,"h":1,"n":"Jungle Strider"},{"c":0,"s":0,"id":5235,"u":"laughing%20gnoll_lome","p":114,"h":1,"n":"Laughing Gnoll"},{"c":0,"s":0,"id":5236,"u":"long%20tongue_lome","p":121,"h":1,"n":"Long Tongue"},{"c":0,"s":0,"id":5237,"u":"nocturnal%20grippli_lome","p":121,"h":1,"n":"Nocturnal Grippli"},{"c":0,"s":0,"id":5238,"u":"none%20shall%20know_lome","p":126,"h":1,"n":"None Shall Know"},{"c":0,"s":0,"id":5239,"u":"pack%20hunter_lome","p":113,"h":1,"n":"Pack Hunter"},{"c":0,"s":0,"id":5240,"u":"pack%20stalker_lome","p":114,"h":1,"n":"Pack Stalker"},{"c":0,"s":0,"id":5241,"u":"pierce%20the%20darkness_lome","p":117,"h":1,"n":"Pierce The Darkness"},{"c":0,"s":0,"id":5242,"u":"piercing%20quills_lome","p":126,"h":1,"n":"Piercing Quills"},{"c":0,"s":0,"id":5243,"u":"protective%20claws_lome","p":118,"h":1,"n":"Protective Claws"},{"c":0,"s":0,"id":5244,"u":"quill%20spray_lome","p":126,"h":1,"n":"Quill Spray"},{"c":0,"s":0,"id":5245,"u":"reassuring%20presence_lome","p":106,"h":1,"n":"Reassuring Presence"},{"c":0,"s":0,"id":5246,"u":"renewing%20quills_lome","p":126,"h":1,"n":"Renewing Quills"},{"c":0,"s":0,"id":5247,"u":"ricocheting%20leap_lome","p":122,"h":1,"n":"Ricocheting Leap"},{"c":0,"s":0,"id":5248,"u":"right-hand%20blood_lome","p":114,"h":1,"n":"Right-hand Blood"},{"c":0,"s":0,"id":5249,"u":"secret%20eyes_lome","p":126,"h":1,"n":"Secret Eyes"},{"c":0,"s":0,"id":5250,"u":"see%20the%20unseen_lome","p":118,"h":1,"n":"See The Unseen"},{"c":0,"s":0,"id":5251,"u":"sensitive%20nose_lome","p":113,"h":1,"n":"Sensitive Nose"},{"c":0,"s":0,"id":5252,"u":"shisk%20lore_lome","p":125,"h":1,"n":"Shisk Lore"},{"c":0,"s":0,"id":5253,"u":"skittertalk_lome","p":106,"h":1,"n":"Skittertalk"},{"c":0,"s":0,"id":5254,"u":"spelunker_lome","p":125,"h":1,"n":"Spelunker"},{"c":0,"s":0,"id":5255,"u":"spine%20stabber_lome","p":125,"h":1,"n":"Spine Stabber"},{"c":0,"s":0,"id":5256,"u":"strand%20strider_lome","p":106,"h":1,"n":"Strand Strider"},{"c":0,"s":0,"id":5257,"u":"studious%20adept_lome","p":106,"h":1,"n":"Studious Adept"},{"c":0,"s":0,"id":5258,"u":"studious%20magic_lome","p":106,"h":1,"n":"Studious Magic"},{"c":0,"s":0,"id":5259,"u":"tenacious%20net_lome","p":122,"h":1,"n":"Tenacious Net"},{"c":0,"s":0,"id":5260,"u":"tongue%20tether_lome","p":122,"h":1,"n":"Tongue Tether"},{"c":0,"s":0,"id":5261,"u":"true%20gaze_lome","p":118,"h":1,"n":"True Gaze"},{"c":0,"s":0,"id":5262,"u":"watchful%20gaze_lome","p":117,"h":1,"n":"Watchful Gaze"},{"c":0,"s":0,"id":5263,"u":"web%20hunter_lome","p":106,"h":1,"n":"Web Hunter"},{"c":0,"s":0,"id":5264,"u":"web%20walker_lome","p":106,"h":1,"n":"Web Walker"},{"c":0,"s":0,"id":5265,"u":"web%20weaver_lome","p":106,"h":1,"n":"Web Weaver"},{"c":0,"s":0,"id":5266,"u":"webslinger_lome","p":106,"h":1,"n":"Webslinger"},{"c":0,"s":47,"id":5267,"u":"archaeologist's%20warning_lopsg","p":41,"h":1,"n":"Archaeologist's Warning"},{"c":0,"s":47,"id":5268,"u":"armored%20exercise_lopsg","p":53,"h":1,"n":"Armored Exercise"},{"c":0,"s":47,"id":5269,"u":"armored%20rest_lopsg","p":52,"h":1,"n":"Armored Rest"},{"c":0,"s":47,"id":5270,"u":"bestiary%20scholar_lopsg","p":45,"h":1,"n":"Bestiary Scholar"},{"c":0,"s":47,"id":5271,"u":"blazing%20talon%20surge_lopsg","p":119,"h":1,"n":"Blazing Talon Surge"},{"c":0,"s":47,"id":5272,"u":"cautious%20delver_lopsg","p":45,"h":1,"n":"Cautious Delver"},{"c":0,"s":47,"id":5273,"u":"communal%20sustain_lopsg","p":49,"h":1,"n":"Communal Sustain"},{"c":0,"s":47,"id":5274,"u":"craft%20facsimile_lopsg","p":41,"h":1,"n":"Craft Facsimile"},{"c":0,"s":47,"id":5275,"u":"dead%20reckoning_lopsg","p":41,"h":1,"n":"Dead Reckoning"},{"c":0,"s":47,"id":5276,"u":"determined%20lore%20seeker_lopsg","p":46,"h":1,"n":"Determined Lore Seeker"},{"c":0,"s":47,"id":5277,"u":"discerning%20strike_lopsg","p":120,"h":1,"n":"Discerning Strike"},{"c":0,"s":47,"id":5278,"u":"diverse%20recognition_lopsg","p":41,"h":1,"n":"Diverse Recognition"},{"c":0,"s":47,"id":5279,"u":"eidetic%20memorization_lopsg","p":41,"h":1,"n":"Eidetic Memorization"},{"c":0,"s":47,"id":5280,"u":"emergency%20medical%20assistance_lopsg","p":52,"h":1,"n":"Emergency Medical Assistance"},{"c":0,"s":47,"id":5281,"u":"environmental%20explorer_lopsg","p":41,"h":1,"n":"Environmental Explorer"},{"c":0,"s":47,"id":5282,"u":"explosive%20death%20drop_lopsg","p":119,"h":1,"n":"Explosive Death Drop"},{"c":0,"s":47,"id":5283,"u":"familiar%20form_lopsg","p":49,"h":1,"n":"Familiar Form"},{"c":0,"s":47,"id":5284,"u":"fane's%20escape_lopsg","p":119,"h":1,"n":"Fane's Escape"},{"c":0,"s":47,"id":5285,"u":"fane's%20fourberie_lopsg","p":119,"h":1,"n":"Fane's Fourberie"},{"c":0,"s":47,"id":5286,"u":"farabellus%20flip_lopsg","p":120,"h":1,"n":"Farabellus Flip"},{"c":0,"s":47,"id":5287,"u":"focus%20ally_lopsg","p":53,"h":1,"n":"Focus Ally"},{"c":0,"s":47,"id":5288,"u":"foolproof%20instructions_lopsg","p":45,"h":1,"n":"Foolproof Instructions"},{"c":0,"s":47,"id":5289,"u":"forceful%20shot_lopsg","p":53,"h":1,"n":"Forceful Shot"},{"c":0,"s":47,"id":5290,"u":"glyph%20expert_lopsg","p":49,"h":1,"n":"Glyph Expert"},{"c":0,"s":47,"id":5291,"u":"improvised%20crafting_lopsg","p":52,"h":1,"n":"Improvised Crafting"},{"c":0,"s":47,"id":5292,"u":"innate%20magic%20intuition_lopsg","p":45,"h":1,"n":"Innate Magic Intuition"},{"c":0,"s":47,"id":5293,"u":"kreighton's%20cognitive%20crossover_lopsg","p":120,"h":1,"n":"Kreighton's Cognitive Crossover"},{"c":0,"s":47,"id":5294,"u":"magic%20finder_lopsg","p":45,"h":1,"n":"Magic Finder"},{"c":0,"s":47,"id":5295,"u":"martial%20exercise_lopsg","p":52,"h":1,"n":"Martial Exercise"},{"c":0,"s":47,"id":5296,"u":"master's%20counterspell_lopsg","p":49,"h":1,"n":"Master's Counterspell"},{"c":0,"s":47,"id":5297,"u":"masterful%20obfuscation_lopsg","p":45,"h":1,"n":"Masterful Obfuscation"},{"c":0,"s":47,"id":5298,"u":"mobile%20magical%20combat_lopsg","p":49,"h":1,"n":"Mobile Magical Combat"},{"c":0,"s":47,"id":5299,"u":"observant%20explorer_lopsg","p":41,"h":1,"n":"Observant Explorer"},{"c":0,"s":47,"id":5300,"u":"physical%20training_lopsg","p":52,"h":1,"n":"Physical Training"},{"c":0,"s":47,"id":5301,"u":"practiced%20defender_lopsg","p":52,"h":1,"n":"Practiced Defender"},{"c":0,"s":47,"id":5302,"u":"protect%20ally_lopsg","p":52,"h":1,"n":"Protect Ally"},{"c":0,"s":47,"id":5303,"u":"quick%20stow_lopsg","p":52,"h":1,"n":"Quick Stow"},{"c":0,"s":47,"id":5304,"u":"rain%20of%20embers%20stance_lopsg","p":119,"h":1,"n":"Rain Of Embers Stance"},{"c":0,"s":47,"id":5305,"u":"recollect%20studies_lopsg","p":52,"h":1,"n":"Recollect Studies"},{"c":0,"s":47,"id":5306,"u":"recover%20spell_lopsg","p":49,"h":1,"n":"Recover Spell"},{"c":0,"s":47,"id":5307,"u":"reflexive%20grip_lopsg","p":52,"h":1,"n":"Reflexive Grip"},{"c":0,"s":47,"id":5308,"u":"remember%20your%20training_lopsg","p":41,"h":1,"n":"Remember Your Training"},{"c":0,"s":47,"id":5309,"u":"retain%20absorbed%20spell_lopsg","p":49,"h":1,"n":"Retain Absorbed Spell"},{"c":0,"s":47,"id":5310,"u":"rugged%20survivalist_lopsg","p":52,"h":1,"n":"Rugged Survivalist"},{"c":0,"s":47,"id":5311,"u":"snap%20out%20of%20it!_lopsg","p":41,"h":1,"n":"Snap Out Of It!"},{"c":0,"s":47,"id":5312,"u":"spellmaster's%20tenacity_lopsg","p":49,"h":1,"n":"Spellmaster's Tenacity"},{"c":0,"s":47,"id":5313,"u":"spellmaster's%20ward_lopsg","p":49,"h":1,"n":"Spellmaster's Ward"},{"c":0,"s":47,"id":5314,"u":"spiritual%20explorer_lopsg","p":41,"h":1,"n":"Spiritual Explorer"},{"c":0,"s":47,"id":5315,"u":"stave%20off%20catastrophe_lopsg","p":53,"h":1,"n":"Stave Off Catastrophe"},{"c":0,"s":47,"id":5316,"u":"stella's%20stab%20and%20snag_lopsg","p":119,"h":1,"n":"Stella's Stab And Snag"},{"c":0,"s":47,"id":5317,"u":"swap%20investment_lopsg","p":41,"h":1,"n":"Swap Investment"},{"c":0,"s":47,"id":5318,"u":"tense%20negotiator_lopsg","p":53,"h":1,"n":"Tense Negotiator"},{"c":0,"s":47,"id":5319,"u":"transcribe%20moment_lopsg","p":45,"h":1,"n":"Transcribe Moment"},{"c":0,"s":47,"id":5320,"u":"ward%20mind_lopsg","p":46,"h":1,"n":"Ward Mind"},{"c":0,"s":47,"id":5321,"u":"watch%20and%20learn_lopsg","p":41,"h":1,"n":"Watch And Learn"},{"c":0,"s":47,"id":5322,"u":"wayfinder%20resonance%20infiltrator_lopsg","p":41,"h":1,"n":"Wayfinder Resonance Infiltrator"},{"c":0,"s":47,"id":5323,"u":"westyr's%20wayfinder%20repository_lopsg","p":120,"h":1,"n":"Westyr's Wayfinder Repository"},{"c":0,"s":7,"id":5324,"u":"aerial%20piledriver_lotgb","p":127,"h":1,"n":"Aerial Piledriver"},{"c":0,"s":7,"id":5325,"u":"agile%20hand_lotgb","p":122,"h":1,"n":"Agile Hand"},{"c":0,"s":7,"id":5326,"u":"animate%20net_lotgb","p":123,"h":1,"n":"Animate Net"},{"c":0,"s":7,"id":5327,"u":"barrier%20shield_lotgb","p":122,"h":1,"n":"Barrier Shield"},{"c":0,"s":7,"id":5328,"u":"basic%20captivator%20spellcasting_lotgb","p":120,"h":1,"n":"Basic Captivator Spellcasting"},{"c":0,"s":7,"id":5329,"u":"beacon%20mark_lotgb","p":124,"h":1,"n":"Beacon Mark"},{"c":0,"s":7,"id":5330,"u":"captivating%20intensity_lotgb","p":121,"h":1,"n":"Captivating Intensity"},{"c":0,"s":7,"id":5331,"u":"captivator%20dedication_lotgb","p":120,"h":1,"n":"Captivator Dedication"},{"c":0,"s":7,"id":5332,"u":"choking%20smoke_lotgb","p":125,"h":1,"n":"Choking Smoke"},{"c":0,"s":7,"id":5333,"u":"clinch%20strike_lotgb","p":127,"h":1,"n":"Clinch Strike"},{"c":0,"s":7,"id":5334,"u":"confounding%20image_lotgb","p":123,"h":1,"n":"Confounding Image"},{"c":0,"s":7,"id":5335,"u":"countercharm_lotgb","p":121,"h":1,"n":"Countercharm"},{"c":0,"s":7,"id":5336,"u":"cunning%20tinker_lotgb","p":64,"h":1,"n":"Cunning Tinker"},{"c":0,"s":7,"id":5337,"u":"directed%20poison_lotgb","p":125,"h":1,"n":"Directed Poison"},{"c":0,"s":7,"id":5338,"u":"disengaging%20twist_lotgb","p":126,"h":1,"n":"Disengaging Twist"},{"c":0,"s":7,"id":5339,"u":"disk%20rider_lotgb","p":123,"h":1,"n":"Disk Rider"},{"c":0,"s":7,"id":5340,"u":"drenching%20mist_lotgb","p":123,"h":1,"n":"Drenching Mist"},{"c":0,"s":7,"id":5341,"u":"effortless%20captivation_lotgb","p":121,"h":1,"n":"Effortless Captivation"},{"c":0,"s":7,"id":5342,"u":"elbow%20breaker_lotgb","p":126,"h":1,"n":"Elbow Breaker"},{"c":0,"s":7,"id":5343,"u":"expert%20captivator%20spellcasting_lotgb","p":121,"h":1,"n":"Expert Captivator Spellcasting"},{"c":0,"s":7,"id":5344,"u":"forceful%20push_lotgb","p":122,"h":1,"n":"Forceful Push"},{"c":0,"s":7,"id":5345,"u":"form%20lock_lotgb","p":127,"h":1,"n":"Form Lock"},{"c":0,"s":7,"id":5346,"u":"harmless%20doll_lotgb","p":63,"h":1,"n":"Harmless Doll"},{"c":0,"s":7,"id":5347,"u":"heightened%20captivation_lotgb","p":121,"h":1,"n":"Heightened Captivation"},{"c":0,"s":7,"id":5348,"u":"helpful%20poppet_lotgb","p":63,"h":1,"n":"Helpful Poppet"},{"c":0,"s":7,"id":5349,"u":"histrionic%20injury_lotgb","p":64,"h":1,"n":"Histrionic Injury"},{"c":0,"s":7,"id":5350,"u":"impossible%20gossip_lotgb","p":65,"h":1,"n":"Impossible Gossip"},{"c":0,"s":7,"id":5351,"u":"inescapable%20grasp_lotgb","p":127,"h":1,"n":"Inescapable Grasp"},{"c":0,"s":7,"id":5352,"u":"larcenous%20hand_lotgb","p":124,"h":1,"n":"Larcenous Hand"},{"c":0,"s":7,"id":5353,"u":"lingering%20flames_lotgb","p":124,"h":1,"n":"Lingering Flames"},{"c":0,"s":7,"id":5354,"u":"look%20again_lotgb","p":121,"h":1,"n":"Look Again"},{"c":0,"s":7,"id":5355,"u":"master%20captivator%20spellcasting_lotgb","p":121,"h":1,"n":"Master Captivator Spellcasting"},{"c":0,"s":7,"id":5356,"u":"nothing%20but%20fluff_lotgb","p":64,"h":1,"n":"Nothing But Fluff"},{"c":0,"s":7,"id":5357,"u":"obscured%20terrain_lotgb","p":124,"h":1,"n":"Obscured Terrain"},{"c":0,"s":7,"id":5358,"u":"quadruped_lotgb","p":63,"h":1,"n":"Quadruped"},{"c":0,"s":7,"id":5359,"u":"reactive%20charm_lotgb","p":121,"h":1,"n":"Reactive Charm"},{"c":0,"s":7,"id":5360,"u":"reanimating%20spark_lotgb","p":65,"h":1,"n":"Reanimating Spark"},{"c":0,"s":7,"id":5361,"u":"restitch_lotgb","p":65,"h":1,"n":"Restitch"},{"c":0,"s":7,"id":5362,"u":"running%20tackle_lotgb","p":127,"h":1,"n":"Running Tackle"},{"c":0,"s":7,"id":5363,"u":"scaling%20poppet_lotgb","p":65,"h":1,"n":"Scaling Poppet"},{"c":0,"s":7,"id":5364,"u":"scattered%20fire_lotgb","p":124,"h":1,"n":"Scattered Fire"},{"c":0,"s":7,"id":5365,"u":"sealed%20poppet_lotgb","p":64,"h":1,"n":"Sealed Poppet"},{"c":0,"s":7,"id":5366,"u":"shining%20arms_lotgb","p":122,"h":1,"n":"Shining Arms"},{"c":0,"s":7,"id":5367,"u":"shiny%20button%20eyes_lotgb","p":64,"h":1,"n":"Shiny Button Eyes"},{"c":0,"s":7,"id":5368,"u":"siphoning%20touch_lotgb","p":124,"h":1,"n":"Siphoning Touch"},{"c":0,"s":7,"id":5369,"u":"smoldering%20explosion_lotgb","p":124,"h":1,"n":"Smoldering Explosion"},{"c":0,"s":7,"id":5370,"u":"soaring%20poppet_lotgb","p":65,"h":1,"n":"Soaring Poppet"},{"c":0,"s":7,"id":5371,"u":"spark%20of%20independence_lotgb","p":64,"h":1,"n":"Spark Of Independence"},{"c":0,"s":7,"id":5372,"u":"spell%20trickster%20dedication_lotgb","p":122,"h":1,"n":"Spell Trickster Dedication"},{"c":0,"s":7,"id":5373,"u":"spinebreaker_lotgb","p":127,"h":1,"n":"Spinebreaker"},{"c":0,"s":7,"id":5374,"u":"squirm%20free_lotgb","p":65,"h":1,"n":"Squirm Free"},{"c":0,"s":7,"id":5375,"u":"steal%20vitality_lotgb","p":125,"h":1,"n":"Steal Vitality"},{"c":0,"s":7,"id":5376,"u":"strangle_lotgb","p":127,"h":1,"n":"Strangle"},{"c":0,"s":7,"id":5377,"u":"submission%20hold_lotgb","p":127,"h":1,"n":"Submission Hold"},{"c":0,"s":7,"id":5378,"u":"summon%20ensemble_lotgb","p":123,"h":1,"n":"Summon Ensemble"},{"c":0,"s":7,"id":5379,"u":"suplex_lotgb","p":127,"h":1,"n":"Suplex"},{"c":0,"s":7,"id":5380,"u":"surrounding%20flames_lotgb","p":125,"h":1,"n":"Surrounding Flames"},{"c":0,"s":7,"id":5381,"u":"swimming%20poppet_lotgb","p":65,"h":1,"n":"Swimming Poppet"},{"c":0,"s":7,"id":5382,"u":"toppling%20tentacles_lotgb","p":125,"h":1,"n":"Toppling Tentacles"},{"c":0,"s":7,"id":5383,"u":"tracing%20sigil_lotgb","p":123,"h":1,"n":"Tracing Sigil"},{"c":0,"s":7,"id":5384,"u":"uneasy%20rest_lotgb","p":124,"h":1,"n":"Uneasy Rest"},{"c":0,"s":7,"id":5385,"u":"volatile%20grease_lotgb","p":124,"h":1,"n":"Volatile Grease"},{"c":0,"s":7,"id":5386,"u":"wash%20out_lotgb","p":64,"h":1,"n":"Wash Out"},{"c":0,"s":7,"id":5387,"u":"wheedle%20and%20jig_lotgb","p":65,"h":1,"n":"Wheedle And Jig"},{"c":0,"s":7,"id":5388,"u":"wild%20lights_lotgb","p":123,"h":1,"n":"Wild Lights"},{"c":0,"s":7,"id":5389,"u":"wrestler%20dedication_lotgb","p":126,"h":1,"n":"Wrestler Dedication"},{"c":0,"s":48,"id":5390,"u":"advanced%20red%20mantis%20magic_lowg","p":71,"h":1,"n":"Advanced Red Mantis Magic"},{"c":0,"s":48,"id":5391,"u":"aldori%20duelist%20dedication_lowg","p":35,"h":1,"n":"Aldori Duelist Dedication"},{"c":0,"s":48,"id":5392,"u":"aldori%20parry_lowg","p":35,"h":1,"n":"Aldori Parry"},{"c":0,"s":48,"id":5393,"u":"aldori%20riposte_lowg","p":35,"h":1,"n":"Aldori Riposte"},{"c":0,"s":48,"id":5394,"u":"ardent%20armiger_lowg","p":107,"h":1,"n":"Ardent Armiger"},{"c":0,"s":48,"id":5395,"u":"armiger's%20mobility_lowg","p":107,"h":1,"n":"Armiger's Mobility"},{"c":0,"s":48,"id":5396,"u":"attunement%20to%20stone_lowg","p":59,"h":1,"n":"Attunement To Stone"},{"c":0,"s":48,"id":5397,"u":"basic%20red%20mantis%20magic_lowg","p":71,"h":1,"n":"Basic Red Mantis Magic"},{"c":0,"s":48,"id":5398,"u":"careful%20explorer_lowg","p":23,"h":1,"n":"Careful Explorer"},{"c":0,"s":48,"id":5399,"u":"crimson%20shroud_lowg","p":71,"h":1,"n":"Crimson Shroud"},{"c":0,"s":48,"id":5400,"u":"crowd%20mastery_lowg","p":131,"h":1,"n":"Crowd Mastery"},{"c":0,"s":48,"id":5401,"u":"deft%20cooperation_lowg","p":23,"h":1,"n":"Deft Cooperation"},{"c":0,"s":48,"id":5402,"u":"diabolic%20certitude_lowg","p":107,"h":1,"n":"Diabolic Certitude"},{"c":0,"s":48,"id":5403,"u":"duelist's%20edge_lowg","p":35,"h":1,"n":"Duelist's Edge"},{"c":0,"s":48,"id":5404,"u":"expeditious%20advance_lowg","p":131,"h":1,"n":"Expeditious Advance"},{"c":0,"s":48,"id":5405,"u":"eye%20of%20ozem_lowg","p":47,"h":1,"n":"Eye Of Ozem"},{"c":0,"s":48,"id":5406,"u":"eye%20of%20the%20arclords_lowg","p":81,"h":1,"n":"Eye Of The Arclords"},{"c":0,"s":48,"id":5407,"u":"flicker_lowg","p":131,"h":1,"n":"Flicker"},{"c":0,"s":48,"id":5408,"u":"fortified%20flesh_lowg","p":59,"h":1,"n":"Fortified Flesh"},{"c":0,"s":48,"id":5409,"u":"godless%20healing_lowg","p":57,"h":1,"n":"Godless Healing"},{"c":0,"s":48,"id":5410,"u":"grave%20sense_lowg","p":47,"h":1,"n":"Grave Sense"},{"c":0,"s":48,"id":5411,"u":"greater%20spell%20runes_lowg","p":119,"h":1,"n":"Greater Spell Runes"},{"c":0,"s":48,"id":5412,"u":"hellknight%20armiger%20dedication_lowg","p":107,"h":1,"n":"Hellknight Armiger Dedication"},{"c":0,"s":48,"id":5413,"u":"judgment%20of%20the%20monolith_lowg","p":59,"h":1,"n":"Judgment Of The Monolith"},{"c":0,"s":48,"id":5414,"u":"ka%20stone%20ritual_lowg","p":59,"h":1,"n":"Ka Stone Ritual"},{"c":0,"s":48,"id":5415,"u":"lastwall%20sentry%20dedication_lowg","p":47,"h":1,"n":"Lastwall Sentry Dedication"},{"c":0,"s":48,"id":5416,"u":"lastwall%20warden_lowg","p":47,"h":1,"n":"Lastwall Warden"},{"c":0,"s":48,"id":5417,"u":"lion%20blade%20dedication_lowg","p":131,"h":1,"n":"Lion Blade Dedication"},{"c":0,"s":48,"id":5418,"u":"living%20monolith%20dedication_lowg","p":59,"h":1,"n":"Living Monolith Dedication"},{"c":0,"s":48,"id":5419,"u":"living%20rune_lowg","p":119,"h":1,"n":"Living Rune"},{"c":0,"s":48,"id":5420,"u":"lost%20in%20the%20crowd_lowg","p":131,"h":1,"n":"Lost In The Crowd"},{"c":0,"s":48,"id":5421,"u":"magic%20warrior%20aspect_lowg","p":95,"h":1,"n":"Magic Warrior Aspect"},{"c":0,"s":48,"id":5422,"u":"magic%20warrior%20dedication_lowg","p":95,"h":1,"n":"Magic Warrior Dedication"},{"c":0,"s":48,"id":5423,"u":"magic%20warrior%20transformation_lowg","p":95,"h":1,"n":"Magic Warrior Transformation"},{"c":0,"s":48,"id":5424,"u":"mantis%20form_lowg","p":71,"h":1,"n":"Mantis Form"},{"c":0,"s":48,"id":5425,"u":"mortification_lowg","p":107,"h":1,"n":"Mortification"},{"c":0,"s":48,"id":5426,"u":"nameless%20anonymity_lowg","p":95,"h":1,"n":"Nameless Anonymity"},{"c":0,"s":48,"id":5427,"u":"necromantic%20resistance_lowg","p":47,"h":1,"n":"Necromantic Resistance"},{"c":0,"s":48,"id":5428,"u":"necromantic%20tenacity_lowg","p":47,"h":1,"n":"Necromantic Tenacity"},{"c":0,"s":48,"id":5429,"u":"pathfinder%20agent%20dedication_lowg","p":23,"h":1,"n":"Pathfinder Agent Dedication"},{"c":0,"s":48,"id":5430,"u":"perfect%20ki%20adept_lowg","p":83,"h":1,"n":"Perfect Ki Adept"},{"c":0,"s":48,"id":5431,"u":"perfect%20strike_lowg","p":83,"h":1,"n":"Perfect Strike"},{"c":0,"s":48,"id":5432,"u":"red%20mantis%20assassin%20dedication_lowg","p":71,"h":1,"n":"Red Mantis Assassin Dedication"},{"c":0,"s":48,"id":5433,"u":"runescarred%20dedication_lowg","p":119,"h":1,"n":"Runescarred Dedication"},{"c":0,"s":48,"id":5434,"u":"saving%20slash_lowg","p":35,"h":1,"n":"Saving Slash"},{"c":0,"s":48,"id":5435,"u":"spell%20runes_lowg","p":119,"h":1,"n":"Spell Runes"},{"c":0,"s":48,"id":5436,"u":"spy's%20countermeasures_lowg","p":131,"h":1,"n":"Spy's Countermeasures"},{"c":0,"s":48,"id":5437,"u":"stone%20blood_lowg","p":59,"h":1,"n":"Stone Blood"},{"c":0,"s":48,"id":5438,"u":"stone%20communion_lowg","p":59,"h":1,"n":"Stone Communion"},{"c":0,"s":48,"id":5439,"u":"student%20of%20perfection%20dedication_lowg","p":83,"h":1,"n":"Student of Perfection Dedication"},{"c":0,"s":48,"id":5440,"u":"thorough%20reports_lowg","p":23,"h":1,"n":"Thorough Reports"},{"c":0,"s":48,"id":5441,"u":"unnerving%20prowess_lowg","p":35,"h":1,"n":"Unnerving Prowess"},{"c":0,"s":48,"id":5442,"u":"warding%20rune_lowg","p":119,"h":1,"n":"Warding Rune"},{"c":0,"s":48,"id":5443,"u":"wayfinder%20resonance%20tinkerer_lowg","p":23,"h":1,"n":"Wayfinder Resonance Tinkerer"},{"c":0,"s":37,"id":5444,"u":"cringe_ltiba","p":10,"h":1,"n":"Cringe"},{"c":0,"s":37,"id":5445,"u":"kobold%20lore_ltiba","p":10,"h":1,"n":"Kobold Lore"},{"c":0,"s":37,"id":5446,"u":"scamper_ltiba","p":10,"h":1,"n":"Scamper"},{"c":0,"s":38,"id":5447,"u":"disturbing%20defense_sli","p":59,"h":1,"n":"Disturbing Defense"},{"c":0,"s":38,"id":5448,"u":"hideous%20ululation_sli","p":59,"h":1,"n":"Hideous Ululation"},{"c":0,"s":38,"id":5449,"u":"ooze%20empathy_sli","p":59,"h":1,"n":"Ooze Empathy"},{"c":0,"s":38,"id":5450,"u":"oozemorph%20dedication_sli","p":59,"h":1,"n":"Oozemorph Dedication"},{"c":0,"s":38,"id":5451,"u":"peculiar%20anatomy_sli","p":60,"h":1,"n":"Peculiar Anatomy"},{"c":0,"s":38,"id":5452,"u":"rubbery%20skin_sli","p":59,"h":1,"n":"Rubbery Skin"},{"c":0,"s":38,"id":5453,"u":"uncanny%20suction_sli","p":60,"h":1,"n":"Uncanny Suction"},{"c":0,"s":38,"id":5454,"u":"vacate%20vision_sli","p":59,"h":1,"n":"Vacate Vision"},{"c":0,"s":49,"id":5455,"u":"advanced%20elemental%20spell_som","p":199,"h":1,"n":"Advanced Elemental Spell"},{"c":0,"s":49,"id":5456,"u":"advanced%20martial%20magic_som","p":75,"h":1,"n":"Advanced Martial Magic"},{"c":0,"s":49,"id":5457,"u":"advanced%20synergy_som","p":77,"h":1,"n":"Advanced Synergy"},{"c":0,"s":49,"id":5458,"u":"advanced%20weaponry_som","p":67,"h":1,"n":"Advanced Weaponry"},{"c":0,"s":49,"id":5459,"u":"aeon%20resonance_som","p":240,"h":1,"n":"Aeon Resonance"},{"c":0,"s":49,"id":5460,"u":"airborne%20form_som","p":72,"h":1,"n":"Airborne Form"},{"c":0,"s":49,"id":5461,"u":"alacritous%20action_som","p":68,"h":1,"n":"Alacritous Action"},{"c":0,"s":49,"id":5462,"u":"amphibious%20form_som","p":68,"h":1,"n":"Amphibious Form"},{"c":0,"s":49,"id":5463,"u":"arcane%20fists_som","p":42,"h":1,"n":"Arcane Fists"},{"c":0,"s":49,"id":5464,"u":"arcane%20shroud_som","p":48,"h":1,"n":"Arcane Shroud"},{"c":0,"s":49,"id":5465,"u":"attack%20of%20opportunity_som","p":45,"h":1,"n":"Attack Of Opportunity"},{"c":0,"s":49,"id":5466,"u":"attuned%20stride_som","p":213,"h":1,"n":"Attuned Stride"},{"c":0,"s":49,"id":5467,"u":"attunement%20shift_som","p":212,"h":1,"n":"Attunement Shift"},{"c":0,"s":49,"id":5468,"u":"basic%20cathartic%20spellcasting_som","p":195,"h":1,"n":"Basic Cathartic Spellcasting"},{"c":0,"s":49,"id":5469,"u":"basic%20magus%20spellcasting_som","p":75,"h":1,"n":"Basic Magus Spellcasting"},{"c":0,"s":49,"id":5470,"u":"basic%20martial%20magic_som","p":75,"h":1,"n":"Basic Martial Magic"},{"c":0,"s":49,"id":5471,"u":"basic%20spellcasting_som","p":219,"h":1,"n":"Basic Spellcasting"},{"c":0,"s":49,"id":5472,"u":"basic%20summoner%20spellcasting_som","p":77,"h":1,"n":"Basic Summoner Spellcasting"},{"c":0,"s":49,"id":5473,"u":"basic%20synergy_som","p":76,"h":1,"n":"Basic Synergy"},{"c":0,"s":49,"id":5474,"u":"blazing%20streak_som","p":202,"h":1,"n":"Blazing Streak"},{"c":0,"s":49,"id":5475,"u":"blood%20frenzy_som","p":69,"h":1,"n":"Blood Frenzy"},{"c":0,"s":49,"id":5476,"u":"bloodletting%20claws_som","p":68,"h":1,"n":"Bloodletting Claws"},{"c":0,"s":49,"id":5477,"u":"boost%20summons_som","p":70,"h":1,"n":"Boost Summons"},{"c":0,"s":49,"id":5478,"u":"burning%20spell_som","p":207,"h":1,"n":"Burning Spell"},{"c":0,"s":49,"id":5479,"u":"burrowing%20form_som","p":71,"h":1,"n":"Burrowing Form"},{"c":0,"s":49,"id":5480,"u":"cantrip%20casting_som","p":219,"h":1,"n":"Cantrip Casting"},{"c":0,"s":49,"id":5481,"u":"cantrip%20expansion_som","p":42,"h":1,"n":"Cantrip Expansion"},{"c":0,"s":49,"id":5482,"u":"capture%20magic_som","p":45,"h":1,"n":"Capture Magic"},{"c":0,"s":49,"id":5483,"u":"cascade%20countermeasure_som","p":45,"h":1,"n":"Cascade Countermeasure"},{"c":0,"s":49,"id":5484,"u":"cascading%20ray_som","p":47,"h":1,"n":"Cascading Ray"},{"c":0,"s":49,"id":5485,"u":"cathartic%20focus%20spell_som","p":195,"h":1,"n":"Cathartic Focus Spell"},{"c":0,"s":49,"id":5486,"u":"cathartic%20mage%20dedication_som","p":194,"h":1,"n":"Cathartic Mage Dedication"},{"c":0,"s":49,"id":5487,"u":"conflux%20focus_som","p":48,"h":1,"n":"Conflux Focus"},{"c":0,"s":49,"id":5488,"u":"conflux%20wellspring_som","p":49,"h":1,"n":"Conflux Wellspring"},{"c":0,"s":49,"id":5489,"u":"constricting%20hold_som","p":70,"h":1,"n":"Constricting Hold"},{"c":0,"s":49,"id":5490,"u":"dazzling%20block_som","p":47,"h":1,"n":"Dazzling Block"},{"c":0,"s":49,"id":5491,"u":"defend%20summoner_som","p":69,"h":1,"n":"Defend Summoner"},{"c":0,"s":49,"id":5492,"u":"devastating%20spellstrike_som","p":44,"h":1,"n":"Devastating Spellstrike"},{"c":0,"s":49,"id":5493,"u":"dimensional%20disappearance_som","p":47,"h":1,"n":"Dimensional Disappearance"},{"c":0,"s":49,"id":5494,"u":"disciple%20of%20shade_som","p":226,"h":1,"n":"Disciple Of Shade"},{"c":0,"s":49,"id":5495,"u":"dispelling%20spellstrike_som","p":49,"h":1,"n":"Dispelling Spellstrike"},{"c":0,"s":49,"id":5496,"u":"distracting%20spellstrike_som","p":44,"h":1,"n":"Distracting Spellstrike"},{"c":0,"s":49,"id":5497,"u":"dousing%20spell_som","p":206,"h":1,"n":"Dousing Spell"},{"c":0,"s":49,"id":5498,"u":"draw%20from%20the%20land_som","p":213,"h":1,"n":"Draw From The Land"},{"c":0,"s":49,"id":5499,"u":"dual%20energy%20heart_som","p":69,"h":1,"n":"Dual Energy Heart"},{"c":0,"s":49,"id":5500,"u":"dual%20studies_som","p":67,"h":1,"n":"Dual Studies"},{"c":0,"s":49,"id":5501,"u":"effortless%20concentration_som","p":72,"h":1,"n":"Effortless Concentration"},{"c":0,"s":49,"id":5502,"u":"eidolon's%20opportunity_som","p":69,"h":1,"n":"Eidolon's Opportunity"},{"c":0,"s":49,"id":5503,"u":"eidolon's%20wrath_som","p":69,"h":1,"n":"Eidolon's Wrath"},{"c":0,"s":49,"id":5504,"u":"elemental%20familiar_som","p":206,"h":1,"n":"Elemental Familiar"},{"c":0,"s":49,"id":5505,"u":"elementalist%20dedication_som","p":206,"h":1,"n":"Elementalist Dedication"},{"c":0,"s":49,"id":5506,"u":"embed%20aeon%20stone_som","p":240,"h":1,"n":"Embed Aeon Stone"},{"c":0,"s":49,"id":5507,"u":"emergency%20targe_som","p":44,"h":1,"n":"Emergency Targe"},{"c":0,"s":49,"id":5508,"u":"energy%20heart_som","p":67,"h":1,"n":"Energy Heart"},{"c":0,"s":49,"id":5509,"u":"energy%20resistance_som","p":71,"h":1,"n":"Energy Resistance"},{"c":0,"s":49,"id":5510,"u":"enhanced%20familiar_som","p":42,"h":1,"n":"Enhanced Familiar"},{"c":0,"s":49,"id":5511,"u":"eternal%20boost_som","p":73,"h":1,"n":"Eternal Boost"},{"c":0,"s":49,"id":5512,"u":"ever-vigilant%20senses_som","p":73,"h":1,"n":"Ever-vigilant Senses"},{"c":0,"s":49,"id":5513,"u":"expanded%20senses_som","p":67,"h":1,"n":"Expanded Senses"},{"c":0,"s":49,"id":5514,"u":"expansive%20spellstrike_som","p":43,"h":1,"n":"Expansive Spellstrike"},{"c":0,"s":49,"id":5515,"u":"expert%20cathartic%20spellcasting_som","p":195,"h":1,"n":"Expert Cathartic Spellcasting"},{"c":0,"s":49,"id":5516,"u":"expert%20combat%20eidolon_som","p":77,"h":1,"n":"Expert Combat Eidolon"},{"c":0,"s":49,"id":5517,"u":"expert%20magus%20spellcasting_som","p":75,"h":1,"n":"Expert Magus Spellcasting"},{"c":0,"s":49,"id":5518,"u":"expert%20spellcasting_som","p":219,"h":1,"n":"Expert Spellcasting"},{"c":0,"s":49,"id":5519,"u":"expert%20summoner%20spellcasting_som","p":77,"h":1,"n":"Expert Summoner Spellcasting"},{"c":0,"s":49,"id":5520,"u":"extend%20boost_som","p":67,"h":1,"n":"Extend Boost"},{"c":0,"s":49,"id":5521,"u":"familiar%20(magus)_som","p":42,"a":"Magus","h":1,"n":"Familiar"},{"c":0,"s":49,"id":5522,"u":"fiery%20retort_som","p":199,"h":1,"n":"Fiery Retort"},{"c":0,"s":49,"id":5523,"u":"fire%20lung_som","p":198,"h":1,"n":"Fire Lung"},{"c":0,"s":49,"id":5524,"u":"fire%20resistance_som","p":199,"h":1,"n":"Fire Resistance"},{"c":0,"s":49,"id":5525,"u":"flexible%20spellcaster%20dedication_som","p":209,"h":1,"n":"Flexible Spellcaster Dedication"},{"c":0,"s":49,"id":5526,"u":"flexible%20transmogrification_som","p":71,"h":1,"n":"Flexible Transmogrification"},{"c":0,"s":49,"id":5527,"u":"force%20fang_som","p":43,"h":1,"n":"Force Fang"},{"c":0,"s":49,"id":5528,"u":"fused%20polearm_som","p":241,"h":1,"n":"Fused Polearm"},{"c":0,"s":49,"id":5529,"u":"fused%20staff_som","p":46,"h":1,"n":"Fused Staff"},{"c":0,"s":49,"id":5530,"u":"geomancer%20dedication_som","p":212,"h":1,"n":"Geomancer Dedication"},{"c":0,"s":49,"id":5531,"u":"glider%20form_som","p":67,"h":1,"n":"Glider Form"},{"c":0,"s":49,"id":5532,"u":"grasping%20limbs_som","p":71,"h":1,"n":"Grasping Limbs"},{"c":0,"s":49,"id":5533,"u":"harden%20flesh_som","p":200,"h":1,"n":"Harden Flesh"},{"c":0,"s":49,"id":5534,"u":"hasted%20assault_som","p":49,"h":1,"n":"Hasted Assault"},{"c":0,"s":49,"id":5535,"u":"hulking%20size_som","p":71,"h":1,"n":"Hulking Size"},{"c":0,"s":49,"id":5536,"u":"hybrid%20study%20spell_som","p":75,"h":1,"n":"Hybrid Study Spell"},{"c":0,"s":49,"id":5537,"u":"infectious%20emotions_som","p":195,"h":1,"n":"Infectious Emotions"},{"c":0,"s":49,"id":5538,"u":"initial%20eidolon%20ability_som","p":77,"h":1,"n":"Initial Eidolon Ability"},{"c":0,"s":49,"id":5539,"u":"inner%20fire_som","p":202,"h":1,"n":"Inner Fire"},{"c":0,"s":49,"id":5540,"u":"interfering%20surge_som","p":249,"h":1,"n":"Interfering Surge"},{"c":0,"s":49,"id":5541,"u":"knowledge%20is%20power_som","p":45,"h":1,"n":"Knowledge Is Power"},{"c":0,"s":49,"id":5542,"u":"legendary%20summoner_som","p":73,"h":1,"n":"Legendary Summoner"},{"c":0,"s":49,"id":5543,"u":"lifelink%20surge_som","p":69,"h":1,"n":"Lifelink Surge"},{"c":0,"s":49,"id":5544,"u":"link%20focus_som","p":71,"h":1,"n":"Link Focus"},{"c":0,"s":49,"id":5545,"u":"link%20wellspring_som","p":73,"h":1,"n":"Link Wellspring"},{"c":0,"s":49,"id":5546,"u":"lunging%20spellstrike_som","p":47,"h":1,"n":"Lunging Spellstrike"},{"c":0,"s":49,"id":5547,"u":"magic%20sense_som","p":48,"h":1,"n":"Magic Sense"},{"c":0,"s":49,"id":5548,"u":"magical%20adept_som","p":71,"h":1,"n":"Magical Adept"},{"c":0,"s":49,"id":5549,"u":"magical%20master_som","p":73,"h":1,"n":"Magical Master"},{"c":0,"s":49,"id":5550,"u":"magical%20understudy_som","p":68,"h":1,"n":"Magical Understudy"},{"c":0,"s":49,"id":5551,"u":"magus%20dedication_som","p":75,"h":1,"n":"Magus Dedication"},{"c":0,"s":49,"id":5552,"u":"magus's%20analysis_som","p":42,"h":1,"n":"Magus's Analysis"},{"c":0,"s":49,"id":5553,"u":"master%20cathartic%20spellcasting_som","p":195,"h":1,"n":"Master Cathartic Spellcasting"},{"c":0,"s":49,"id":5554,"u":"master%20magus%20spellcasting_som","p":75,"h":1,"n":"Master Magus Spellcasting"},{"c":0,"s":49,"id":5555,"u":"master%20spellcasting_som","p":219,"h":1,"n":"Master Spellcasting"},{"c":0,"s":49,"id":5556,"u":"master%20summoner_som","p":69,"h":1,"n":"Master Summoner"},{"c":0,"s":49,"id":5557,"u":"master%20summoner%20spellcasting_som","p":77,"h":1,"n":"Master Summoner Spellcasting"},{"c":0,"s":49,"id":5558,"u":"meld%20into%20eidolon_som","p":67,"h":1,"n":"Meld Into Eidolon"},{"c":0,"s":49,"id":5559,"u":"merciless%20rend_som","p":71,"h":1,"n":"Merciless Rend"},{"c":0,"s":49,"id":5560,"u":"metabolize%20element_som","p":207,"h":1,"n":"Metabolize Element"},{"c":0,"s":49,"id":5561,"u":"meteoric%20spellstrike_som","p":47,"h":1,"n":"Meteoric Spellstrike"},{"c":0,"s":49,"id":5562,"u":"miniaturize_som","p":71,"h":1,"n":"Miniaturize"},{"c":0,"s":49,"id":5563,"u":"natural%20swimmer_som","p":199,"h":1,"n":"Natural Swimmer"},{"c":0,"s":49,"id":5564,"u":"ostentatious%20arrival_som","p":69,"h":1,"n":"Ostentatious Arrival"},{"c":0,"s":49,"id":5565,"u":"overwhelming%20spellstrike_som","p":48,"h":1,"n":"Overwhelming Spellstrike"},{"c":0,"s":49,"id":5566,"u":"phase%20out_som","p":70,"h":1,"n":"Phase Out"},{"c":0,"s":49,"id":5567,"u":"polearm%20tricks_som","p":240,"h":1,"n":"Polearm Tricks"},{"c":0,"s":49,"id":5568,"u":"preternatural%20parry_som","p":49,"h":1,"n":"Preternatural Parry"},{"c":0,"s":49,"id":5569,"u":"protective%20bond_som","p":71,"h":1,"n":"Protective Bond"},{"c":0,"s":49,"id":5570,"u":"purifying%20spell_som","p":200,"h":1,"n":"Purifying Spell"},{"c":0,"s":49,"id":5571,"u":"pushing%20attack_som","p":71,"h":1,"n":"Pushing Attack"},{"c":0,"s":49,"id":5572,"u":"quickened%20attunement_som","p":213,"h":1,"n":"Quickened Attunement"},{"c":0,"s":49,"id":5573,"u":"raise%20a%20tome_som","p":42,"h":1,"n":"Raise A Tome"},{"c":0,"s":49,"id":5574,"u":"ranged%20combatant_som","p":68,"h":1,"n":"Ranged Combatant"},{"c":0,"s":49,"id":5575,"u":"rapid%20manifestation_som","p":236,"h":1,"n":"Rapid Manifestation"},{"c":0,"s":49,"id":5576,"u":"rapid%20recharge_som","p":47,"h":1,"n":"Rapid Recharge"},{"c":0,"s":49,"id":5577,"u":"reactive%20dismissal_som","p":69,"h":1,"n":"Reactive Dismissal"},{"c":0,"s":49,"id":5578,"u":"read%20the%20land_som","p":213,"h":1,"n":"Read The Land"},{"c":0,"s":49,"id":5579,"u":"redirect%20elements_som","p":207,"h":1,"n":"Redirect Elements"},{"c":0,"s":49,"id":5580,"u":"reflective%20ripple%20stance_som","p":202,"h":1,"n":"Reflective Ripple Stance"},{"c":0,"s":49,"id":5581,"u":"reinforce%20eidolon_som","p":68,"h":1,"n":"Reinforce Eidolon"},{"c":0,"s":49,"id":5582,"u":"resilient%20shell_som","p":72,"h":1,"n":"Resilient Shell"},{"c":0,"s":49,"id":5583,"u":"resounding%20cascade_som","p":49,"h":1,"n":"Resounding Cascade"},{"c":0,"s":49,"id":5584,"u":"reveal%20true%20name_som","p":246,"h":1,"n":"Reveal True Name"},{"c":0,"s":49,"id":5585,"u":"rippling%20spin_som","p":202,"h":1,"n":"Rippling Spin"},{"c":0,"s":49,"id":5586,"u":"rockslide%20spell_som","p":207,"h":1,"n":"Rockslide Spell"},{"c":0,"s":49,"id":5587,"u":"rough%20terrain%20stance_som","p":212,"h":1,"n":"Rough Terrain Stance"},{"c":0,"s":49,"id":5588,"u":"runelord%20dedication_som","p":240,"h":1,"n":"Runelord Dedication"},{"c":0,"s":49,"id":5589,"u":"runic%20impression_som","p":46,"h":1,"n":"Runic Impression"},{"c":0,"s":49,"id":5590,"u":"school%20counterspell_som","p":241,"h":1,"n":"School Counterspell"},{"c":0,"s":49,"id":5591,"u":"school%20spell%20redirection_som","p":241,"h":1,"n":"School Spell Redirection"},{"c":0,"s":49,"id":5592,"u":"secrets%20of%20shadow_som","p":226,"h":1,"n":"Secrets Of Shadow"},{"c":0,"s":49,"id":5593,"u":"shadow%20reservoir_som","p":226,"h":1,"n":"Shadow Reservoir"},{"c":0,"s":49,"id":5594,"u":"shadow%20spell_som","p":226,"h":1,"n":"Shadow Spell"},{"c":0,"s":49,"id":5595,"u":"shadow%20spells_som","p":226,"h":1,"n":"Shadow Spells"},{"c":0,"s":49,"id":5596,"u":"shadowcaster%20dedication_som","p":226,"h":1,"n":"Shadowcaster Dedication"},{"c":0,"s":49,"id":5597,"u":"share%20eidolon%20magic_som","p":72,"h":1,"n":"Share Eidolon Magic"},{"c":0,"s":49,"id":5598,"u":"shared%20attunement_som","p":212,"h":1,"n":"Shared Attunement"},{"c":0,"s":49,"id":5599,"u":"sheltering%20cave_som","p":199,"h":1,"n":"Sheltering Cave"},{"c":0,"s":49,"id":5600,"u":"shielded%20tome_som","p":45,"h":1,"n":"Shielded Tome"},{"c":0,"s":49,"id":5601,"u":"shifting%20terrain_som","p":213,"h":1,"n":"Shifting Terrain"},{"c":0,"s":49,"id":5602,"u":"shore%20step_som","p":198,"h":1,"n":"Shore Step"},{"c":0,"s":49,"id":5603,"u":"shrink%20down_som","p":69,"h":1,"n":"Shrink Down"},{"c":0,"s":49,"id":5604,"u":"signature%20synergy_som","p":77,"h":1,"n":"Signature Synergy"},{"c":0,"s":49,"id":5605,"u":"sin%20reservoir_som","p":240,"h":1,"n":"Sin Reservoir"},{"c":0,"s":49,"id":5606,"u":"skilled%20partner_som","p":69,"h":1,"n":"Skilled Partner"},{"c":0,"s":49,"id":5607,"u":"soul%20arsenal_som","p":236,"h":1,"n":"Soul Arsenal"},{"c":0,"s":49,"id":5608,"u":"soul%20flare_som","p":236,"h":1,"n":"Soul Flare"},{"c":0,"s":49,"id":5609,"u":"soulforger%20dedication_som","p":236,"h":1,"n":"Soulforger Dedication"},{"c":0,"s":49,"id":5610,"u":"spell%20parry_som","p":43,"h":1,"n":"Spell Parry"},{"c":0,"s":49,"id":5611,"u":"spell%20swipe_som","p":46,"h":1,"n":"Spell Swipe"},{"c":0,"s":49,"id":5612,"u":"spell-repelling%20form_som","p":72,"h":1,"n":"Spell-repelling Form"},{"c":0,"s":49,"id":5613,"u":"spellstriker_som","p":75,"h":1,"n":"Spellstriker"},{"c":0,"s":49,"id":5614,"u":"spirit%20sheath_som","p":44,"h":1,"n":"Spirit Sheath"},{"c":0,"s":49,"id":5615,"u":"standby%20spell_som","p":47,"h":1,"n":"Standby Spell"},{"c":0,"s":49,"id":5616,"u":"starlit%20eyes_som","p":44,"h":1,"n":"Starlit Eyes"},{"c":0,"s":49,"id":5617,"u":"steady%20spellcasting_som","p":45,"h":1,"n":"Steady Spellcasting"},{"c":0,"s":49,"id":5618,"u":"steadying%20stone_som","p":198,"h":1,"n":"Steadying Stone"},{"c":0,"s":49,"id":5619,"u":"steed%20form_som","p":68,"h":1,"n":"Steed Form"},{"c":0,"s":49,"id":5620,"u":"stoked%20flame%20stance_som","p":202,"h":1,"n":"Stoked Flame Stance"},{"c":0,"s":49,"id":5621,"u":"striker's%20scroll_som","p":45,"h":1,"n":"Striker's Scroll"},{"c":0,"s":49,"id":5622,"u":"student%20of%20the%20staff_som","p":45,"h":1,"n":"Student Of The Staff"},{"c":0,"s":49,"id":5623,"u":"summoner%20dedication_som","p":76,"h":1,"n":"Summoner Dedication"},{"c":0,"s":49,"id":5624,"u":"summoner's%20call_som","p":72,"h":1,"n":"Summoner's Call"},{"c":0,"s":49,"id":5625,"u":"supreme%20spellstrike_som","p":49,"h":1,"n":"Supreme Spellstrike"},{"c":0,"s":49,"id":5626,"u":"sustaining%20steel_som","p":47,"h":1,"n":"Sustaining Steel"},{"c":0,"s":49,"id":5627,"u":"tandem%20movement_som","p":69,"h":1,"n":"Tandem Movement"},{"c":0,"s":49,"id":5628,"u":"tandem%20strike_som","p":70,"h":1,"n":"Tandem Strike"},{"c":0,"s":49,"id":5629,"u":"tattoo%20artist_som","p":164,"h":1,"n":"Tattoo Artist"},{"c":0,"s":49,"id":5630,"u":"terrain%20shield_som","p":213,"h":1,"n":"Terrain Shield"},{"c":0,"s":49,"id":5631,"u":"towering%20size_som","p":72,"h":1,"n":"Towering Size"},{"c":0,"s":49,"id":5632,"u":"trample_som","p":73,"h":1,"n":"Trample"},{"c":0,"s":49,"id":5633,"u":"transpose_som","p":71,"h":1,"n":"Transpose"},{"c":0,"s":49,"id":5634,"u":"true%20transmogrification_som","p":73,"h":1,"n":"True Transmogrification"},{"c":0,"s":49,"id":5635,"u":"twin%20eidolon_som","p":73,"h":1,"n":"Twin Eidolon"},{"c":0,"s":49,"id":5636,"u":"unending%20emptiness_som","p":227,"h":1,"n":"Unending Emptiness"},{"c":0,"s":49,"id":5637,"u":"unfetter%20eidolon_som","p":68,"h":1,"n":"Unfetter Eidolon"},{"c":0,"s":49,"id":5638,"u":"urgent%20upwelling_som","p":249,"h":1,"n":"Urgent Upwelling"},{"c":0,"s":49,"id":5639,"u":"versatile%20spellstrike_som","p":49,"h":1,"n":"Versatile Spellstrike"},{"c":0,"s":49,"id":5640,"u":"vibration%20sense_som","p":69,"h":1,"n":"Vibration Sense"},{"c":0,"s":49,"id":5641,"u":"wave%20spiral_som","p":202,"h":1,"n":"Wave Spiral"},{"c":0,"s":49,"id":5642,"u":"weighty%20impact_som","p":71,"h":1,"n":"Weighty Impact"},{"c":0,"s":49,"id":5643,"u":"wellspring%20control_som","p":249,"h":1,"n":"Wellspring Control"},{"c":0,"s":49,"id":5644,"u":"wellspring%20mage%20dedication_som","p":249,"h":1,"n":"Wellspring Mage Dedication"},{"c":0,"s":49,"id":5645,"u":"whirlwind%20spell_som","p":49,"h":1,"n":"Whirlwind Spell"},{"c":0,"s":49,"id":5646,"u":"wind-tossed%20spell_som","p":207,"h":1,"n":"Wind-tossed Spell"},{"c":0,"s":49,"id":5647,"u":"work%20yourself%20up_som","p":195,"h":1,"n":"Work Yourself Up"},{"c":0,"s":40,"id":5648,"u":"communal%20tale_sot2","p":78,"h":1,"n":"Communal Tale"},{"c":0,"s":40,"id":5649,"u":"deny%20the%20songs%20of%20war_sot2","p":79,"h":1,"n":"Deny The Songs Of War"},{"c":0,"s":40,"id":5650,"u":"fleet%20tempo_sot2","p":79,"h":1,"n":"Fleet Tempo"},{"c":0,"s":40,"id":5651,"u":"folklorist%20dedication_sot2","p":78,"h":1,"n":"Folklorist Dedication"},{"c":0,"s":40,"id":5652,"u":"folktales%20lore_sot2","p":78,"h":1,"n":"Folktales Lore"},{"c":0,"s":40,"id":5653,"u":"nantambu%20chime-ringer%20dedication_sot2","p":79,"h":1,"n":"Nantambu Chime-Ringer Dedication"},{"c":0,"s":40,"id":5654,"u":"narrative%20conduit_sot2","p":78,"h":1,"n":"Narrative Conduit"},{"c":0,"s":40,"id":5655,"u":"rule%20of%20three_sot2","p":78,"h":1,"n":"Rule Of Three"},{"c":0,"s":40,"id":5656,"u":"sing%20to%20the%20steel_sot2","p":79,"h":1,"n":"Sing To The Steel"},{"c":0,"s":40,"id":5657,"u":"song%20of%20grace%20and%20speed_sot2","p":79,"h":1,"n":"Song Of Grace And Speed"},{"c":2,"s":4,"id":5658,"u":"antler%20arrow_apg","p":256,"h":1,"n":"Antler Arrow"},{"c":2,"s":4,"id":5659,"u":"balisse%20feather_apg","p":256,"h":1,"n":"Balisse Feather"},{"c":2,"s":4,"id":5660,"u":"basilisk%20eye_apg","p":256,"h":1,"n":"Basilisk Eye"},{"c":2,"s":4,"id":5661,"u":"blight%20bomb%20(generic)_apg","p":252,"h":1,"n":"Blight Bomb"},{"c":2,"s":4,"id":5662,"u":"bloodhound%20mask%20(generic)_apg","p":254,"h":1,"n":"Bloodhound Mask"},{"c":2,"s":4,"id":5663,"u":"brass%20ear_apg","p":248,"h":1,"n":"Brass Ear"},{"c":2,"s":4,"id":5664,"u":"candle%20of%20invocation_apg","p":256,"h":1,"n":"Candle Of Invocation"},{"c":2,"s":4,"id":5665,"u":"candle%20of%20revealing_apg","p":257,"h":1,"n":"Candle Of Revealing"},{"c":2,"s":4,"id":5666,"u":"cerulean%20scourge_apg","p":254,"h":1,"n":"Cerulean Scourge"},{"c":2,"s":4,"id":5667,"u":"concealed%20sheath_apg","p":248,"h":1,"n":"Concealed Sheath"},{"c":2,"s":4,"id":5668,"u":"corrosive%20ammunition_apg","p":257,"h":1,"n":"Corrosive Ammunition"},{"c":2,"s":4,"id":5669,"u":"crystal%20shards%20(generic)_apg","p":252,"h":1,"n":"Crystal Shards"},{"c":2,"s":4,"id":5670,"u":"detective's%20kit_apg","p":248,"h":1,"n":"Detective's Kit"},{"c":2,"s":4,"id":5671,"u":"drakeheart%20mutagen%20(generic)_apg","p":253,"h":1,"n":"Drakeheart Mutagen"},{"c":2,"s":4,"id":5672,"u":"dread%20ampoule%20(generic)_apg","p":253,"h":1,"n":"Dread Ampoule"},{"c":2,"s":4,"id":5673,"u":"dueling%20cape_apg","p":248,"h":1,"n":"Dueling Cape"},{"c":2,"s":4,"id":5674,"u":"dust%20of%20corpse%20animation%20(generic)_apg","p":257,"h":1,"n":"Dust Of Corpse Animation"},{"c":2,"s":4,"id":5675,"u":"earthglide%20cloak_apg","p":260,"h":1,"n":"Earthglide Cloak"},{"c":2,"s":4,"id":5676,"u":"earthsight%20box_apg","p":260,"h":1,"n":"Earthsight Box"},{"c":2,"s":4,"id":5677,"u":"engulfing%20snare_apg","p":256,"h":1,"n":"Engulfing Snare"},{"c":2,"s":4,"id":5678,"u":"envisioning%20mask_apg","p":260,"h":1,"n":"Envisioning Mask"},{"c":2,"s":4,"id":5679,"u":"exploding%20shield_apg","p":260,"h":1,"n":"Exploding Shield"},{"c":2,"s":4,"id":5680,"u":"fearsome%20(generic)_apg","p":260,"h":1,"n":"Fearsome"},{"c":2,"s":4,"id":5681,"u":"fire-jump%20ring_apg","p":260,"h":1,"n":"Fire-jump Ring"},{"c":2,"s":4,"id":5682,"u":"flare%20snare_apg","p":256,"h":1,"n":"Flare Snare"},{"c":2,"s":4,"id":5683,"u":"focus%20cathartic%20(generic)_apg","p":253,"h":1,"n":"Focus Cathartic"},{"c":2,"s":4,"id":5684,"u":"forensic%20dye_apg","p":254,"h":1,"n":"Forensic Dye"},{"c":2,"s":4,"id":5685,"u":"four-ways%20dogslicer_apg","p":261,"h":1,"n":"Four-ways Dogslicer"},{"c":2,"s":4,"id":5686,"u":"freezing%20ammunition_apg","p":257,"h":1,"n":"Freezing Ammunition"},{"c":2,"s":4,"id":5687,"u":"gecko%20potion_apg","p":257,"h":1,"n":"Gecko Potion"},{"c":2,"s":4,"id":5688,"u":"ghost%20charge%20(generic)_apg","p":253,"h":1,"n":"Ghost Charge"},{"c":2,"s":4,"id":5689,"u":"ghost%20ink_apg","p":255,"h":1,"n":"Ghost Ink"},{"c":2,"s":4,"id":5690,"u":"glamorous%20buckler_apg","p":261,"h":1,"n":"Glamorous Buckler"},{"c":2,"s":4,"id":5691,"u":"hellfire%20boots_apg","p":261,"h":1,"n":"Hellfire Boots"},{"c":2,"s":4,"id":5692,"u":"incense%20of%20distilled%20death_apg","p":257,"h":1,"n":"Incense Of Distilled Death"},{"c":2,"s":4,"id":5693,"u":"infiltrator's%20accessory_apg","p":261,"h":1,"n":"Infiltrator's Accessory"},{"c":2,"s":4,"id":5694,"u":"leadenleg_apg","p":254,"h":1,"n":"Leadenleg"},{"c":2,"s":4,"id":5695,"u":"lover's%20gloves_apg","p":261,"h":1,"n":"Lover's Gloves"},{"c":2,"s":4,"id":5696,"u":"mask%20of%20the%20banshee%20(generic)_apg","p":261,"h":1,"n":"Mask Of The Banshee"},{"c":2,"s":4,"id":5697,"u":"medusa's%20scream%20(generic)_apg","p":261,"h":1,"n":"Medusa's Scream"},{"c":2,"s":4,"id":5698,"u":"nauseating%20snare_apg","p":256,"h":1,"n":"Nauseating Snare"},{"c":2,"s":4,"id":5699,"u":"net_apg","p":248,"h":1,"n":"Net"},{"c":2,"s":4,"id":5700,"u":"oil%20of%20object%20animation%20(generic)_apg","p":258,"h":1,"n":"Oil Of Object Animation"},{"c":2,"s":4,"id":5701,"u":"oil%20of%20revelation_apg","p":258,"h":1,"n":"Oil Of Revelation"},{"c":2,"s":4,"id":5702,"u":"oil%20of%20unlife%20(generic)_apg","p":258,"h":1,"n":"Oil Of Unlife"},{"c":2,"s":4,"id":5703,"u":"olfactory%20obfuscator%20(generic)_apg","p":254,"h":1,"n":"Olfactory Obfuscator"},{"c":2,"s":4,"id":5704,"u":"origin%20unguent_apg","p":255,"h":1,"n":"Origin Unguent"},{"c":2,"s":4,"id":5705,"u":"parrying%20scabbard_apg","p":248,"h":1,"n":"Parrying Scabbard"},{"c":2,"s":4,"id":5706,"u":"periscope_apg","p":248,"h":1,"n":"Periscope"},{"c":2,"s":4,"id":5707,"u":"potion%20of%20disguise%20(generic)_apg","p":258,"h":1,"n":"Potion Of Disguise"},{"c":2,"s":4,"id":5708,"u":"potion%20of%20expeditious%20retreat_apg","p":258,"h":1,"n":"Potion Of Expeditious Retreat"},{"c":2,"s":4,"id":5709,"u":"potion%20of%20retaliation%20(generic)_apg","p":259,"h":1,"n":"Potion Of Retaliation"},{"c":2,"s":4,"id":5710,"u":"potion%20of%20shared%20memories_apg","p":259,"h":1,"n":"Potion Of Shared Memories"},{"c":2,"s":4,"id":5711,"u":"predictable%20silver%20piece_apg","p":262,"h":1,"n":"Predictable Silver Piece"},{"c":2,"s":4,"id":5712,"u":"ration%20tonic%20(generic)_apg","p":259,"h":1,"n":"Ration Tonic"},{"c":2,"s":4,"id":5713,"u":"ready%20(generic)_apg","p":262,"h":1,"n":"Ready"},{"c":2,"s":4,"id":5714,"u":"rod%20of%20cancellation_apg","p":262,"h":1,"n":"Rod Of Cancellation"},{"c":2,"s":4,"id":5715,"u":"rope%20of%20climbing%20(generic)_apg","p":262,"h":1,"n":"Rope Of Climbing"},{"c":2,"s":4,"id":5716,"u":"shielding%20salve_apg","p":259,"h":1,"n":"Shielding Salve"},{"c":2,"s":4,"id":5717,"u":"sinew-shock%20serum%20(generic)_apg","p":254,"h":1,"n":"Sinew-shock Serum"},{"c":2,"s":4,"id":5718,"u":"skinstitch%20salve_apg","p":255,"h":1,"n":"Skinstitch Salve"},{"c":2,"s":4,"id":5719,"u":"slates%20of%20distant%20letters_apg","p":262,"h":1,"n":"Slates Of Distant Letters"},{"c":2,"s":4,"id":5720,"u":"sleeves%20of%20storage%20(generic)_apg","p":263,"h":1,"n":"Sleeves Of Storage"},{"c":2,"s":4,"id":5721,"u":"snagging%20hook%20snare_apg","p":256,"h":1,"n":"Snagging Hook Snare"},{"c":2,"s":4,"id":5722,"u":"sovereign%20glue_apg","p":255,"h":1,"n":"Sovereign Glue"},{"c":2,"s":4,"id":5723,"u":"spellguard%20blade_apg","p":263,"h":1,"n":"Spellguard Blade"},{"c":2,"s":4,"id":5724,"u":"spiritsight%20crossbow_apg","p":263,"h":1,"n":"Spiritsight Crossbow"},{"c":2,"s":4,"id":5725,"u":"staff%20of%20impossible%20visions%20(generic)_apg","p":263,"h":1,"n":"Staff Of Impossible Visions"},{"c":2,"s":4,"id":5726,"u":"staff%20of%20nature's%20vengeance%20(generic)_apg","p":263,"h":1,"n":"Staff Of Nature's Vengeance"},{"c":2,"s":4,"id":5727,"u":"staff%20of%20providence%20(generic)_apg","p":264,"h":1,"n":"Staff Of Providence"},{"c":2,"s":4,"id":5728,"u":"terrifying%20ammunition_apg","p":259,"h":1,"n":"Terrifying Ammunition"},{"c":2,"s":4,"id":5729,"u":"time%20shield%20potion_apg","p":259,"h":1,"n":"Time Shield Potion"},{"c":2,"s":4,"id":5730,"u":"timeless%20salts_apg","p":255,"h":1,"n":"Timeless Salts"},{"c":2,"s":4,"id":5731,"u":"universal%20solvent%20(generic)_apg","p":255,"h":1,"n":"Universal Solvent"},{"c":2,"s":4,"id":5732,"u":"urn%20of%20ashes_apg","p":264,"h":1,"n":"Urn Of Ashes"},{"c":2,"s":4,"id":5733,"u":"victory%20plate%20(generic)_apg","p":264,"h":1,"n":"Victory Plate"},{"c":2,"s":4,"id":5734,"u":"walking%20cauldron_apg","p":264,"h":1,"n":"Walking Cauldron"},{"c":2,"s":4,"id":5735,"u":"wand%20of%20crackling%20lightning%20(generic)_apg","p":265,"h":1,"n":"Wand Of Crackling Lightning"},{"c":2,"s":4,"id":5736,"u":"wand%20of%20hopeless%20night%20(generic)_apg","p":265,"h":1,"n":"Wand Of Hopeless Night"},{"c":2,"s":4,"id":5737,"u":"wand%20of%20overflowing%20life%20(generic)_apg","p":265,"h":1,"n":"Wand Of Overflowing Life"},{"c":2,"s":4,"id":5738,"u":"wand%20of%20the%20snowfields%20(generic)_apg","p":265,"h":1,"n":"Wand Of The Snowfields"},{"c":2,"s":4,"id":5739,"u":"wand%20of%20the%20spider%20(generic)_apg","p":265,"h":1,"n":"Wand Of The Spider"},{"c":2,"s":4,"id":5740,"u":"winged%20(generic)_apg","p":265,"h":1,"n":"Winged"},{"c":2,"s":5,"id":5741,"u":"acid%20flask%20(generic)_crb","p":544,"h":1,"n":"Acid Flask"},{"c":2,"s":5,"id":5742,"u":"adamantine%20(generic)_crb","p":578,"h":1,"n":"Adamantine"},{"c":2,"s":5,"id":5743,"u":"adamantine%20armor%20(generic)_crb","p":555,"h":1,"n":"Adamantine Armor"},{"c":2,"s":5,"id":5744,"u":"adamantine%20shield%20(generic)_crb","p":586,"h":1,"n":"Adamantine Shield"},{"c":2,"s":5,"id":5745,"u":"adamantine%20weapon%20(generic)_crb","p":599,"h":1,"n":"Adamantine Weapon"},{"c":2,"s":5,"id":5746,"u":"adventurer's%20pack_crb","p":288,"h":1,"n":"Adventurer's Pack"},{"c":2,"s":5,"id":5747,"u":"aeon%20stone%20(generic)_crb","p":604,"h":1,"n":"Aeon Stone"},{"c":2,"s":5,"id":5748,"u":"alarm%20snare_crb","p":589,"h":1,"n":"Alarm Snare"},{"c":2,"s":5,"id":5749,"u":"alchemist%20goggles%20(generic)_crb","p":605,"h":1,"n":"Alchemist Goggles"},{"c":2,"s":5,"id":5750,"u":"alchemist's%20fire%20(generic)_crb","p":545,"h":1,"n":"Alchemist's Fire"},{"c":2,"s":5,"id":5751,"u":"alchemist's%20lab%20(generic)_crb","p":288,"h":1,"n":"Alchemist's Lab"},{"c":2,"s":5,"id":5752,"u":"alchemist's%20tools_crb","p":288,"h":1,"n":"Alchemist's Tools"},{"c":2,"s":5,"id":5753,"u":"aligned%20oil_crb","p":561,"h":1,"n":"Aligned Oil"},{"c":2,"s":5,"id":5754,"u":"anarchic_crb","p":583,"h":1,"n":"Anarchic"},{"c":2,"s":5,"id":5755,"u":"animal%20staff%20(generic)_crb","p":592,"h":1,"n":"Animal Staff"},{"c":2,"s":5,"id":5756,"u":"anklets%20of%20alacrity_crb","p":603,"h":1,"n":"Anklets of Alacrity"},{"c":2,"s":5,"id":5757,"u":"antidote%20(generic)_crb","p":546,"h":1,"n":"Antidote"},{"c":2,"s":5,"id":5758,"u":"antimagic_crb","p":582,"h":1,"n":"Antimagic"},{"c":2,"s":5,"id":5759,"u":"antimagic%20oil_crb","p":561,"h":1,"n":"Antimagic Oil"},{"c":2,"s":5,"id":5760,"u":"antiplague%20(generic)_crb","p":546,"h":1,"n":"Antiplague"},{"c":2,"s":5,"id":5761,"u":"armbands%20of%20athleticism%20(generic)_crb","p":605,"h":1,"n":"Armbands of Athleticism"},{"c":2,"s":5,"id":5762,"u":"armor%20potency%20(generic)_crb","p":581,"h":1,"n":"Armor Potency"},{"c":2,"s":5,"id":5763,"u":"arrow_crb","p":282,"h":1,"n":"Arrow"},{"c":2,"s":5,"id":5764,"u":"arrow-catching%20shield_crb","p":587,"h":1,"n":"Arrow-catching Shield"},{"c":2,"s":5,"id":5765,"u":"arsenic_crb","p":550,"h":1,"n":"Arsenic"},{"c":2,"s":5,"id":5766,"u":"artisan's%20tools%20(generic)_crb","p":288,"h":1,"n":"Artisan's Tools"},{"c":2,"s":5,"id":5767,"u":"axiomatic_crb","p":583,"h":1,"n":"Axiomatic"},{"c":2,"s":5,"id":5768,"u":"backpack_crb","p":288,"h":1,"n":"Backpack"},{"c":2,"s":5,"id":5769,"u":"bag%20of%20holding%20(generic)_crb","p":572,"h":1,"n":"Bag of Holding"},{"c":2,"s":5,"id":5770,"u":"barding%20of%20the%20zephyr_crb","p":604,"h":1,"n":"Barding of the Zephyr"},{"c":2,"s":5,"id":5771,"u":"barkskin%20potion_crb","p":562,"h":1,"n":"Barkskin Potion"},{"c":2,"s":5,"id":5772,"u":"basic%20crafter's%20book_crb","p":288,"h":1,"n":"Basic Crafter's Book"},{"c":2,"s":5,"id":5773,"u":"beacon%20shot_crb","p":559,"h":1,"n":"Beacon Shot"},{"c":2,"s":5,"id":5774,"u":"bedroll_crb","p":288,"h":1,"n":"Bedroll"},{"c":2,"s":5,"id":5775,"u":"belladonna_crb","p":551,"h":1,"n":"Belladonna"},{"c":2,"s":5,"id":5776,"u":"belt%20of%20giant%20strength_crb","p":603,"h":1,"n":"Belt of Giant Strength"},{"c":2,"s":5,"id":5777,"u":"belt%20of%20regeneration_crb","p":603,"h":1,"n":"Belt of Regeneration"},{"c":2,"s":5,"id":5778,"u":"belt%20of%20the%20five%20kings_crb","p":606,"h":1,"n":"Belt of the Five Kings"},{"c":2,"s":5,"id":5779,"u":"berserker's%20cloak%20(generic)_crb","p":606,"h":1,"n":"Berserker's Cloak"},{"c":2,"s":5,"id":5780,"u":"bestial%20mutagen%20(generic)_crb","p":546,"h":1,"n":"Bestial Mutagen"},{"c":2,"s":5,"id":5781,"u":"biting%20snare_crb","p":589,"h":1,"n":"Biting Snare"},{"c":2,"s":5,"id":5782,"u":"black%20adder%20venom_crb","p":551,"h":1,"n":"Black Adder Venom"},{"c":2,"s":5,"id":5783,"u":"black%20lotus%20extract_crb","p":551,"h":1,"n":"Black Lotus Extract"},{"c":2,"s":5,"id":5784,"u":"bleeding%20spines%20snare_crb","p":589,"h":1,"n":"Bleeding Spines Snare"},{"c":2,"s":5,"id":5785,"u":"blightburn%20resin_crb","p":551,"h":1,"n":"Blightburn Resin"},{"c":2,"s":5,"id":5786,"u":"bloodletting%20kukri_crb","p":600,"h":1,"n":"Bloodletting Kukri"},{"c":2,"s":5,"id":5787,"u":"bloodseeker%20beak_crb","p":565,"h":1,"n":"Bloodseeker Beak"},{"c":2,"s":5,"id":5788,"u":"blowgun%20dart_crb","p":281,"h":1,"n":"Blowgun Dart"},{"c":2,"s":5,"id":5789,"u":"bolt_crb","p":281,"h":1,"n":"Bolt"},{"c":2,"s":5,"id":5790,"u":"bomb%20snare_crb","p":589,"h":1,"n":"Bomb Snare"},{"c":2,"s":5,"id":5791,"u":"bomber's%20eye%20elixir%20(generic)_crb","p":547,"h":1,"n":"Bomber's Eye Elixir"},{"c":2,"s":5,"id":5792,"u":"boots%20of%20bounding%20(generic)_crb","p":606,"h":1,"n":"Boots of Bounding"},{"c":2,"s":5,"id":5793,"u":"boots%20of%20elvenkind%20(generic)_crb","p":606,"h":1,"n":"Boots of Elvenkind"},{"c":2,"s":5,"id":5794,"u":"boots%20of%20speed_crb","p":606,"h":1,"n":"Boots of Speed"},{"c":2,"s":5,"id":5795,"u":"bottled%20air_crb","p":572,"h":1,"n":"Bottled Air"},{"c":2,"s":5,"id":5796,"u":"bottled%20lightning%20(generic)_crb","p":545,"h":1,"n":"Bottled Lightning"},{"c":2,"s":5,"id":5797,"u":"bracelet%20of%20dashing_crb","p":607,"h":1,"n":"Bracelet of Dashing"},{"c":2,"s":5,"id":5798,"u":"bracers%20of%20armor%20(generic)_crb","p":607,"h":1,"n":"Bracers of Armor"},{"c":2,"s":5,"id":5799,"u":"bracers%20of%20missile%20deflection%20(generic)_crb","p":607,"h":1,"n":"Bracers of Missile Deflection"},{"c":2,"s":5,"id":5800,"u":"bravo's%20brew%20(generic)_crb","p":547,"h":1,"n":"Bravo's Brew"},{"c":2,"s":5,"id":5801,"u":"breastplate%20of%20command%20(generic)_crb","p":557,"h":1,"n":"Breastplate of Command"},{"c":2,"s":5,"id":5802,"u":"brimstone%20fumes_crb","p":551,"h":1,"n":"Brimstone Fumes"},{"c":2,"s":5,"id":5803,"u":"bronze%20bull%20pendant_crb","p":566,"h":1,"n":"Bronze Bull Pendant"},{"c":2,"s":5,"id":5804,"u":"brooch%20of%20shielding_crb","p":607,"h":1,"n":"Brooch of Shielding"},{"c":2,"s":5,"id":5805,"u":"broom%20of%20flying_crb","p":572,"h":1,"n":"Broom of Flying"},{"c":2,"s":5,"id":5806,"u":"caltrop%20snare_crb","p":590,"h":1,"n":"Caltrop Snare"},{"c":2,"s":5,"id":5807,"u":"caltrops_crb","p":288,"h":1,"n":"Caltrops"},{"c":2,"s":5,"id":5808,"u":"candle%20(10)_crb","p":288,"h":1,"n":"Candle (10)"},{"c":2,"s":5,"id":5809,"u":"candle%20of%20truth_crb","p":570,"h":1,"n":"Candle of Truth"},{"c":2,"s":5,"id":5810,"u":"cape%20of%20the%20mountebank_crb","p":607,"h":1,"n":"Cape of the Mountebank"},{"c":2,"s":5,"id":5811,"u":"cassock%20of%20devotion_crb","p":607,"h":1,"n":"Cassock of Devotion"},{"c":2,"s":5,"id":5812,"u":"cat's%20eye%20elixir_crb","p":547,"h":1,"n":"Cat's Eye Elixir"},{"c":2,"s":5,"id":5813,"u":"caterwaul%20sling_crb","p":600,"h":1,"n":"Caterwaul Sling"},{"c":2,"s":5,"id":5814,"u":"celestial%20armor_crb","p":557,"h":1,"n":"Celestial Armor"},{"c":2,"s":5,"id":5815,"u":"chain%20(10%20feet)_crb","p":288,"h":1,"n":"Chain (10 feet)"},{"c":2,"s":5,"id":5816,"u":"chalk%20(10)_crb","p":288,"h":1,"n":"Chalk (10)"},{"c":2,"s":5,"id":5817,"u":"channel%20protection%20amulet_crb","p":608,"h":1,"n":"Channel Protection Amulet"},{"c":2,"s":5,"id":5818,"u":"cheetah's%20elixir%20(generic)_crb","p":547,"h":1,"n":"Cheetah's Elixir"},{"c":2,"s":5,"id":5819,"u":"chest_crb","p":288,"h":1,"n":"Chest"},{"c":2,"s":5,"id":5820,"u":"chime%20of%20opening_crb","p":572,"h":1,"n":"Chime of Opening"},{"c":2,"s":5,"id":5821,"u":"choker%20of%20elocution%20(generic)_crb","p":608,"h":1,"n":"Choker of Elocution"},{"c":2,"s":5,"id":5822,"u":"circlet%20of%20persuasion_crb","p":603,"h":1,"n":"Circlet of Persuasion"},{"c":2,"s":5,"id":5823,"u":"clandestine%20cloak%20(generic)_crb","p":608,"h":1,"n":"Clandestine Cloak"},{"c":2,"s":5,"id":5824,"u":"climbing%20bolt_crb","p":559,"h":1,"n":"Climbing Bolt"},{"c":2,"s":5,"id":5825,"u":"climbing%20kit%20(generic)_crb","p":288,"h":1,"n":"Climbing Kit"},{"c":2,"s":5,"id":5826,"u":"cloak%20of%20elvenkind%20(generic)_crb","p":608,"h":1,"n":"Cloak of Elvenkind"},{"c":2,"s":5,"id":5827,"u":"cloak%20of%20the%20bat%20(generic)_crb","p":608,"h":1,"n":"Cloak of the Bat"},{"c":2,"s":5,"id":5828,"u":"clothing_crb","p":288,"h":1,"n":"Clothing"},{"c":2,"s":5,"id":5829,"u":"cognitive%20mutagen%20(generic)_crb","p":547,"h":1,"n":"Cognitive Mutagen"},{"c":2,"s":5,"id":5830,"u":"cold%20iron%20(generic)_crb","p":578,"h":1,"n":"Cold Iron"},{"c":2,"s":5,"id":5831,"u":"cold%20iron%20armor%20(generic)_crb","p":555,"h":1,"n":"Cold Iron Armor"},{"c":2,"s":5,"id":5832,"u":"cold%20iron%20shield%20(generic)_crb","p":586,"h":1,"n":"Cold Iron Shield"},{"c":2,"s":5,"id":5833,"u":"cold%20iron%20weapon%20(generic)_crb","p":599,"h":1,"n":"Cold Iron Weapon"},{"c":2,"s":5,"id":5834,"u":"collar%20of%20empathy_crb","p":604,"h":1,"n":"Collar of Empathy"},{"c":2,"s":5,"id":5835,"u":"collar%20of%20inconspicuousness_crb","p":604,"h":1,"n":"Collar of Inconspicuousness"},{"c":2,"s":5,"id":5836,"u":"compass%20(generic)_crb","p":288,"h":1,"n":"Compass"},{"c":2,"s":5,"id":5837,"u":"comprehension%20elixir%20(generic)_crb","p":547,"h":1,"n":"Comprehension Elixir"},{"c":2,"s":5,"id":5838,"u":"cookware_crb","p":288,"h":1,"n":"Cookware"},{"c":2,"s":5,"id":5839,"u":"corrosive%20(generic)_crb","p":583,"h":1,"n":"Corrosive"},{"c":2,"s":5,"id":5840,"u":"coyote%20cloak%20(generic)_crb","p":609,"h":1,"n":"Coyote Cloak"},{"c":2,"s":5,"id":5841,"u":"crafter's%20eyepiece%20(generic)_crb","p":609,"h":1,"n":"Crafter's Eyepiece"},{"c":2,"s":5,"id":5842,"u":"crowbar%20(generic)_crb","p":288,"h":1,"n":"Crowbar"},{"c":2,"s":5,"id":5843,"u":"crying%20angel%20pendant_crb","p":566,"h":1,"n":"Crying Angel Pendant"},{"c":2,"s":5,"id":5844,"u":"crystal%20ball%20(generic)_crb","p":572,"h":1,"n":"Crystal Ball"},{"c":2,"s":5,"id":5845,"u":"cytillesh%20oil_crb","p":551,"h":1,"n":"Cytillesh Oil"},{"c":2,"s":5,"id":5846,"u":"dagger%20of%20venom_crb","p":600,"h":1,"n":"Dagger of Venom"},{"c":2,"s":5,"id":5847,"u":"dancing_crb","p":583,"h":1,"n":"Dancing"},{"c":2,"s":5,"id":5848,"u":"dancing%20scarf%20(generic)_crb","p":609,"h":1,"n":"Dancing Scarf"},{"c":2,"s":5,"id":5849,"u":"daredevil%20boots%20(generic)_crb","p":609,"h":1,"n":"Daredevil Boots"},{"c":2,"s":5,"id":5850,"u":"darkvision%20elixir%20(generic)_crb","p":547,"h":1,"n":"Darkvision Elixir"},{"c":2,"s":5,"id":5851,"u":"darkwood%20(generic)_crb","p":578,"h":1,"n":"Darkwood"},{"c":2,"s":5,"id":5852,"u":"darkwood%20armor%20(generic)_crb","p":555,"h":1,"n":"Darkwood Armor"},{"c":2,"s":5,"id":5853,"u":"darkwood%20shield%20(generic)_crb","p":586,"h":1,"n":"Darkwood Shield"},{"c":2,"s":5,"id":5854,"u":"darkwood%20weapon%20(generic)_crb","p":599,"h":1,"n":"Darkwood Weapon"},{"c":2,"s":5,"id":5855,"u":"dazing%20coil_crb","p":566,"h":1,"n":"Dazing Coil"},{"c":2,"s":5,"id":5856,"u":"deathcap%20powder_crb","p":551,"h":1,"n":"Deathcap Powder"},{"c":2,"s":5,"id":5857,"u":"decanter%20of%20endless%20water_crb","p":573,"h":1,"n":"Decanter of Endless Water"},{"c":2,"s":5,"id":5858,"u":"demon%20armor_crb","p":557,"h":1,"n":"Demon Armor"},{"c":2,"s":5,"id":5859,"u":"demon%20mask%20(generic)_crb","p":609,"h":1,"n":"Demon Mask"},{"c":2,"s":5,"id":5860,"u":"diadem%20of%20intellect_crb","p":603,"h":1,"n":"Diadem of Intellect"},{"c":2,"s":5,"id":5861,"u":"diplomat's%20badge_crb","p":609,"h":1,"n":"Diplomat's Badge"},{"c":2,"s":5,"id":5862,"u":"disguise%20kit%20(generic)_crb","p":288,"h":1,"n":"Disguise Kit"},{"c":2,"s":5,"id":5863,"u":"disintegration%20bolt_crb","p":559,"h":1,"n":"Disintegration Bolt"},{"c":2,"s":5,"id":5864,"u":"dispelling%20sliver_crb","p":566,"h":1,"n":"Dispelling Sliver"},{"c":2,"s":5,"id":5865,"u":"disrupting%20(generic)_crb","p":584,"h":1,"n":"Disrupting"},{"c":2,"s":5,"id":5866,"u":"doubling%20rings%20(generic)_crb","p":609,"h":1,"n":"Doubling Rings"},{"c":2,"s":5,"id":5867,"u":"dragon%20bile_crb","p":551,"h":1,"n":"Dragon Bile"},{"c":2,"s":5,"id":5868,"u":"dragon%20turtle%20scale_crb","p":566,"h":1,"n":"Dragon Turtle Scale"},{"c":2,"s":5,"id":5869,"u":"dragon's%20breath%20potion%20(generic)_crb","p":562,"h":1,"n":"Dragon's Breath Potion"},{"c":2,"s":5,"id":5870,"u":"dragonhide%20(generic)_crb","p":579,"h":1,"n":"Dragonhide"},{"c":2,"s":5,"id":5871,"u":"dragonhide%20armor%20(generic)_crb","p":555,"h":1,"n":"Dragonhide Armor"},{"c":2,"s":5,"id":5872,"u":"dragonhide%20shield%20(generic)_crb","p":586,"h":1,"n":"Dragonhide Shield"},{"c":2,"s":5,"id":5873,"u":"dragonplate_crb","p":557,"h":1,"n":"Dragonplate"},{"c":2,"s":5,"id":5874,"u":"dragonslayer's%20shield_crb","p":587,"h":1,"n":"Dragonslayer's Shield"},{"c":2,"s":5,"id":5875,"u":"dread%20blindfold_crb","p":610,"h":1,"n":"Dread Blindfold"},{"c":2,"s":5,"id":5876,"u":"druid's%20vestments_crb","p":610,"h":1,"n":"Druid's Vestments"},{"c":2,"s":5,"id":5877,"u":"dust%20of%20appearance_crb","p":570,"h":1,"n":"Dust of Appearance"},{"c":2,"s":5,"id":5878,"u":"dust%20of%20disappearance_crb","p":570,"h":1,"n":"Dust of Disappearance"},{"c":2,"s":5,"id":5879,"u":"dwarven%20thrower_crb","p":600,"h":1,"n":"Dwarven Thrower"},{"c":2,"s":5,"id":5880,"u":"eagle-eye%20elixir%20(generic)_crb","p":548,"h":1,"n":"Eagle-eye Elixir"},{"c":2,"s":5,"id":5881,"u":"effervescent%20ampoule_crb","p":566,"h":1,"n":"Effervescent Ampoule"},{"c":2,"s":5,"id":5882,"u":"electric%20eelskin_crb","p":557,"h":1,"n":"Electric Eelskin"},{"c":2,"s":5,"id":5883,"u":"elemental%20gem_crb","p":570,"h":1,"n":"Elemental Gem"},{"c":2,"s":5,"id":5884,"u":"elixir%20of%20life%20(generic)_crb","p":548,"h":1,"n":"Elixir of Life"},{"c":2,"s":5,"id":5885,"u":"elixir%20of%20rejuvenation_crb","p":548,"h":1,"n":"Elixir of Rejuvenation"},{"c":2,"s":5,"id":5886,"u":"elven%20chain%20(generic)_crb","p":555,"h":1,"n":"Elven Chain"},{"c":2,"s":5,"id":5887,"u":"emerald%20grasshopper_crb","p":566,"h":1,"n":"Emerald Grasshopper"},{"c":2,"s":5,"id":5888,"u":"energy-resistant%20(generic)_crb","p":582,"h":1,"n":"Energy-Resistant"},{"c":2,"s":5,"id":5889,"u":"ethereal_crb","p":582,"h":1,"n":"Ethereal"},{"c":2,"s":5,"id":5890,"u":"everburning%20torch_crb","p":573,"h":1,"n":"Everburning Torch"},{"c":2,"s":5,"id":5891,"u":"explorer's%20yurt_crb","p":596,"h":1,"n":"Explorer's Yurt"},{"c":2,"s":5,"id":5892,"u":"explosive%20ammunition%20(generic)_crb","p":559,"h":1,"n":"Explosive Ammunition"},{"c":2,"s":5,"id":5893,"u":"extra%20ink%20and%20paper_crb","p":288,"h":1,"n":"Extra Ink and Paper"},{"c":2,"s":5,"id":5894,"u":"eye%20of%20apprehension_crb","p":566,"h":1,"n":"Eye of Apprehension"},{"c":2,"s":5,"id":5895,"u":"eye%20of%20fortune_crb","p":610,"h":1,"n":"Eye of Fortune"},{"c":2,"s":5,"id":5896,"u":"eyes%20of%20the%20eagle_crb","p":610,"h":1,"n":"Eyes of the Eagle"},{"c":2,"s":5,"id":5897,"u":"fade%20band_crb","p":566,"h":1,"n":"Fade Band"},{"c":2,"s":5,"id":5898,"u":"fear%20gem_crb","p":566,"h":1,"n":"Fear Gem"},{"c":2,"s":5,"id":5899,"u":"feather%20step%20stone_crb","p":567,"h":1,"n":"Feather Step Stone"},{"c":2,"s":5,"id":5900,"u":"feather%20token%20(generic)_crb","p":570,"h":1,"n":"Feather Token"},{"c":2,"s":5,"id":5901,"u":"fighter's%20fork_crb","p":600,"h":1,"n":"Fighter's Fork"},{"c":2,"s":5,"id":5902,"u":"fishing%20tackle%20(generic)_crb","p":288,"h":1,"n":"Fishing Tackle"},{"c":2,"s":5,"id":5903,"u":"flame%20navette_crb","p":567,"h":1,"n":"Flame Navette"},{"c":2,"s":5,"id":5904,"u":"flame%20tongue%20(generic)_crb","p":600,"h":1,"n":"Flame Tongue"},{"c":2,"s":5,"id":5905,"u":"flaming%20(generic)_crb","p":584,"h":1,"n":"Flaming"},{"c":2,"s":5,"id":5906,"u":"flint%20and%20steel_crb","p":288,"h":1,"n":"Flint and Steel"},{"c":2,"s":5,"id":5907,"u":"floating%20shield%20(generic)_crb","p":587,"h":1,"n":"Floating Shield"},{"c":2,"s":5,"id":5908,"u":"flying%20blade%20wheel%20snare_crb","p":590,"h":1,"n":"Flying Blade Wheel Snare"},{"c":2,"s":5,"id":5909,"u":"force%20shield_crb","p":587,"h":1,"n":"Force Shield"},{"c":2,"s":5,"id":5910,"u":"forge%20warden_crb","p":587,"h":1,"n":"Forge Warden"},{"c":2,"s":5,"id":5911,"u":"formula%20book%20(blank)_crb","p":288,"h":1,"n":"Formula Book (blank)"},{"c":2,"s":5,"id":5912,"u":"fortification%20(generic)_crb","p":582,"h":1,"n":"Fortification"},{"c":2,"s":5,"id":5913,"u":"frost%20(generic)_crb","p":584,"h":1,"n":"Frost"},{"c":2,"s":5,"id":5914,"u":"frost%20brand_crb","p":601,"h":1,"n":"Frost Brand"},{"c":2,"s":5,"id":5915,"u":"frost%20vial%20(generic)_crb","p":545,"h":1,"n":"Frost Vial"},{"c":2,"s":5,"id":5916,"u":"gallows%20tooth_crb","p":567,"h":1,"n":"Gallows Tooth"},{"c":2,"s":5,"id":5917,"u":"ghost%20ammunition_crb","p":559,"h":1,"n":"Ghost Ammunition"},{"c":2,"s":5,"id":5918,"u":"ghost%20dust_crb","p":567,"h":1,"n":"Ghost Dust"},{"c":2,"s":5,"id":5919,"u":"ghost%20touch_crb","p":584,"h":1,"n":"Ghost Touch"},{"c":2,"s":5,"id":5920,"u":"ghoul%20hide_crb","p":558,"h":1,"n":"Ghoul Hide"},{"c":2,"s":5,"id":5921,"u":"giant%20centipede%20venom_crb","p":551,"h":1,"n":"Giant Centipede Venom"},{"c":2,"s":5,"id":5922,"u":"giant%20scorpion%20venom_crb","p":551,"h":1,"n":"Giant Scorpion Venom"},{"c":2,"s":5,"id":5923,"u":"giant%20wasp%20venom_crb","p":552,"h":1,"n":"Giant Wasp Venom"},{"c":2,"s":5,"id":5924,"u":"glamered_crb","p":583,"h":1,"n":"Glamered"},{"c":2,"s":5,"id":5925,"u":"gloom%20blade_crb","p":601,"h":1,"n":"Gloom Blade"},{"c":2,"s":5,"id":5926,"u":"gloves%20of%20storing_crb","p":610,"h":1,"n":"Gloves of Storing"},{"c":2,"s":5,"id":5927,"u":"goggles%20of%20night%20(generic)_crb","p":610,"h":1,"n":"Goggles of Night"},{"c":2,"s":5,"id":5928,"u":"gorget%20of%20the%20primal%20roar_crb","p":611,"h":1,"n":"Gorget of the Primal Roar"},{"c":2,"s":5,"id":5929,"u":"grappling%20hook_crb","p":288,"h":1,"n":"Grappling Hook"},{"c":2,"s":5,"id":5930,"u":"grasping%20snare_crb","p":590,"h":1,"n":"Grasping Snare"},{"c":2,"s":5,"id":5931,"u":"graveroot_crb","p":552,"h":1,"n":"Graveroot"},{"c":2,"s":5,"id":5932,"u":"grievous_crb","p":584,"h":1,"n":"Grievous"},{"c":2,"s":5,"id":5933,"u":"grim%20trophy_crb","p":567,"h":1,"n":"Grim Trophy"},{"c":2,"s":5,"id":5934,"u":"hail%20of%20arrows%20snare_crb","p":590,"h":1,"n":"Hail of Arrows Snare"},{"c":2,"s":5,"id":5935,"u":"hammer_crb","p":288,"h":1,"n":"Hammer"},{"c":2,"s":5,"id":5936,"u":"hampering%20snare_crb","p":590,"h":1,"n":"Hampering Snare"},{"c":2,"s":5,"id":5937,"u":"hand%20of%20the%20mage_crb","p":611,"h":1,"n":"Hand of the Mage"},{"c":2,"s":5,"id":5938,"u":"handwraps%20of%20mighty%20blows%20(generic)_crb","p":611,"h":1,"n":"Handwraps of Mighty Blows"},{"c":2,"s":5,"id":5939,"u":"hat%20of%20disguise%20(generic)_crb","p":611,"h":1,"n":"Hat of Disguise"},{"c":2,"s":5,"id":5940,"u":"hat%20of%20the%20magi%20(generic)_crb","p":611,"h":1,"n":"Hat of the Magi"},{"c":2,"s":5,"id":5941,"u":"headband%20of%20inspired%20wisdom_crb","p":604,"h":1,"n":"Headband of Inspired Wisdom"},{"c":2,"s":5,"id":5942,"u":"healer's%20gloves%20(generic)_crb","p":612,"h":1,"n":"Healer's Gloves"},{"c":2,"s":5,"id":5943,"u":"healer's%20tools%20(generic)_crb","p":288,"h":1,"n":"Healer's Tools"},{"c":2,"s":5,"id":5944,"u":"healing%20potion%20(generic)_crb","p":563,"h":1,"n":"Healing Potion"},{"c":2,"s":5,"id":5945,"u":"hemlock_crb","p":552,"h":1,"n":"Hemlock"},{"c":2,"s":5,"id":5946,"u":"hobbling%20snare_crb","p":590,"h":1,"n":"Hobbling Snare"},{"c":2,"s":5,"id":5947,"u":"holly%20and%20mistletoe_crb","p":288,"h":1,"n":"Holly and Mistletoe"},{"c":2,"s":5,"id":5948,"u":"holy_crb","p":584,"h":1,"n":"Holy"},{"c":2,"s":5,"id":5949,"u":"holy%20avenger_crb","p":601,"h":1,"n":"Holy Avenger"},{"c":2,"s":5,"id":5950,"u":"holy%20prayer%20beads%20(generic)_crb","p":573,"h":1,"n":"Holy Prayer Beads"},{"c":2,"s":5,"id":5951,"u":"holy%20water_crb","p":571,"h":1,"n":"Holy Water"},{"c":2,"s":5,"id":5952,"u":"horn%20of%20blasting_crb","p":573,"h":1,"n":"Horn of Blasting"},{"c":2,"s":5,"id":5953,"u":"horn%20of%20fog_crb","p":573,"h":1,"n":"Horn of Fog"},{"c":2,"s":5,"id":5954,"u":"horseshoes%20of%20speed%20(generic)_crb","p":604,"h":1,"n":"Horseshoes of Speed"},{"c":2,"s":5,"id":5955,"u":"hourglass_crb","p":288,"h":1,"n":"Hourglass"},{"c":2,"s":5,"id":5956,"u":"hunter's%20bane_crb","p":567,"h":1,"n":"Hunter's Bane"},{"c":2,"s":5,"id":5957,"u":"hunting%20spider%20venom_crb","p":552,"h":1,"n":"Hunting Spider Venom"},{"c":2,"s":5,"id":5958,"u":"immovable%20rod_crb","p":574,"h":1,"n":"Immovable Rod"},{"c":2,"s":5,"id":5959,"u":"impenetrable%20scale_crb","p":558,"h":1,"n":"Impenetrable Scale"},{"c":2,"s":5,"id":5960,"u":"indestructible%20shield_crb","p":588,"h":1,"n":"Indestructible Shield"},{"c":2,"s":5,"id":5961,"u":"inexplicable%20apparatus_crb","p":612,"h":1,"n":"Inexplicable Apparatus"},{"c":2,"s":5,"id":5962,"u":"infiltrator's%20elixir_crb","p":548,"h":1,"n":"Infiltrator's Elixir"},{"c":2,"s":5,"id":5963,"u":"instant%20evisceration%20snare_crb","p":590,"h":1,"n":"Instant Evisceration Snare"},{"c":2,"s":5,"id":5964,"u":"instant%20fortress_crb","p":596,"h":1,"n":"Instant Fortress"},{"c":2,"s":5,"id":5965,"u":"invisibility%20(generic)_crb","p":583,"h":1,"n":"Invisibility"},{"c":2,"s":5,"id":5966,"u":"invisibility%20potion_crb","p":563,"h":1,"n":"Invisibility Potion"},{"c":2,"s":5,"id":5967,"u":"iron%20cube_crb","p":567,"h":1,"n":"Iron Cube"},{"c":2,"s":5,"id":5968,"u":"iron%20cudgel_crb","p":567,"h":1,"n":"Iron Cudgel"},{"c":2,"s":5,"id":5969,"u":"iron%20equalizer_crb","p":567,"h":1,"n":"Iron Equalizer"},{"c":2,"s":5,"id":5970,"u":"iron%20medallion_crb","p":568,"h":1,"n":"Iron Medallion"},{"c":2,"s":5,"id":5971,"u":"jade%20bauble_crb","p":568,"h":1,"n":"Jade Bauble"},{"c":2,"s":5,"id":5972,"u":"jade%20cat_crb","p":568,"h":1,"n":"Jade Cat"},{"c":2,"s":5,"id":5973,"u":"javelin%20of%20lightning_crb","p":571,"h":1,"n":"Javelin of Lightning"},{"c":2,"s":5,"id":5974,"u":"juggernaut%20mutagen%20(generic)_crb","p":548,"h":1,"n":"Juggernaut Mutagen"},{"c":2,"s":5,"id":5975,"u":"keen_crb","p":584,"h":1,"n":"Keen"},{"c":2,"s":5,"id":5976,"u":"king's%20sleep_crb","p":552,"h":1,"n":"King's Sleep"},{"c":2,"s":5,"id":5977,"u":"knapsack%20of%20halflingkind%20(generic)_crb","p":612,"h":1,"n":"Knapsack of Halflingkind"},{"c":2,"s":5,"id":5978,"u":"ladder%20(10-foot)_crb","p":288,"h":1,"n":"Ladder (10-foot)"},{"c":2,"s":5,"id":5979,"u":"lantern%20(generic)_crb","p":288,"h":1,"n":"Lantern"},{"c":2,"s":5,"id":5980,"u":"leaper's%20elixir%20(generic)_crb","p":549,"h":1,"n":"Leaper's Elixir"},{"c":2,"s":5,"id":5981,"u":"lethargy%20poison_crb","p":552,"h":1,"n":"Lethargy Poison"},{"c":2,"s":5,"id":5982,"u":"lich%20dust_crb","p":552,"h":1,"n":"Lich Dust"},{"c":2,"s":5,"id":5983,"u":"lifting%20belt_crb","p":613,"h":1,"n":"Lifting Belt"},{"c":2,"s":5,"id":5984,"u":"lion's%20shield_crb","p":588,"h":1,"n":"Lion's Shield"},{"c":2,"s":5,"id":5985,"u":"lock%20(generic)_crb","p":288,"h":1,"n":"Lock"},{"c":2,"s":5,"id":5986,"u":"luck%20blade%20(generic)_crb","p":601,"h":1,"n":"Luck Blade"},{"c":2,"s":5,"id":5987,"u":"maestro's%20instrument%20(generic)_crb","p":574,"h":1,"n":"Maestro's Instrument"},{"c":2,"s":5,"id":5988,"u":"scroll%20(generic)_crb","p":564,"h":1,"n":"Scroll"},{"c":2,"s":5,"id":5989,"u":"magic%20wand%20(generic)_crb","p":597,"h":1,"n":"Magic Wand"},{"c":2,"s":5,"id":5990,"u":"magnifying%20glass_crb","p":288,"h":1,"n":"Magnifying Glass"},{"c":2,"s":5,"id":5991,"u":"mail%20of%20luck_crb","p":558,"h":1,"n":"Mail of Luck"},{"c":2,"s":5,"id":5992,"u":"malyass%20root%20paste_crb","p":552,"h":1,"n":"Malyass Root Paste"},{"c":2,"s":5,"id":5993,"u":"manacles%20(generic)_crb","p":288,"h":1,"n":"Manacles"},{"c":2,"s":5,"id":5994,"u":"marking%20snare_crb","p":590,"h":1,"n":"Marking Snare"},{"c":2,"s":5,"id":5995,"u":"marvelous%20medicines%20(generic)_crb","p":574,"h":1,"n":"Marvelous Medicines"},{"c":2,"s":5,"id":5996,"u":"material%20component%20pouch_crb","p":288,"h":1,"n":"Material Component Pouch"},{"c":2,"s":5,"id":5997,"u":"mattock%20of%20the%20titans_crb","p":601,"h":1,"n":"Mattock of the Titans"},{"c":2,"s":5,"id":5998,"u":"mending%20lattice_crb","p":568,"h":1,"n":"Mending Lattice"},{"c":2,"s":5,"id":5999,"u":"mentalist's%20staff%20(generic)_crb","p":592,"h":1,"n":"Mentalist's Staff"},{"c":2,"s":5,"id":6000,"u":"merchant's%20scale_crb","p":288,"h":1,"n":"Merchant's Scale"},{"c":2,"s":5,"id":6001,"u":"mesmerizing%20opal_crb","p":568,"h":1,"n":"Mesmerizing Opal"},{"c":2,"s":5,"id":6002,"u":"messenger's%20ring%20(generic)_crb","p":613,"h":1,"n":"Messenger's Ring"},{"c":2,"s":5,"id":6003,"u":"mindfog%20mist_crb","p":553,"h":1,"n":"Mindfog Mist"},{"c":2,"s":5,"id":6004,"u":"mirror_crb","p":288,"h":1,"n":"Mirror"},{"c":2,"s":5,"id":6005,"u":"mistform%20elixir%20(generic)_crb","p":549,"h":1,"n":"Mistform Elixir"},{"c":2,"s":5,"id":6006,"u":"mithral%20(generic)_crb","p":579,"h":1,"n":"Mithral"},{"c":2,"s":5,"id":6007,"u":"mithral%20armor%20(generic)_crb","p":556,"h":1,"n":"Mithral Armor"},{"c":2,"s":5,"id":6008,"u":"mithral%20shield%20(generic)_crb","p":586,"h":1,"n":"Mithral Shield"},{"c":2,"s":5,"id":6009,"u":"mithral%20weapon%20(generic)_crb","p":599,"h":1,"n":"Mithral Weapon"},{"c":2,"s":5,"id":6010,"u":"monkey%20pin_crb","p":568,"h":1,"n":"Monkey Pin"},{"c":2,"s":5,"id":6011,"u":"moonlit%20chain_crb","p":558,"h":1,"n":"Moonlit Chain"},{"c":2,"s":5,"id":6012,"u":"mug_crb","p":288,"h":1,"n":"Mug"},{"c":2,"s":5,"id":6013,"u":"mummified%20bat_crb","p":568,"h":1,"n":"Mummified Bat"},{"c":2,"s":5,"id":6014,"u":"murderer's%20knot_crb","p":568,"h":1,"n":"Murderer's Knot"},{"c":2,"s":5,"id":6015,"u":"musical%20instrument%20(generic)_crb","p":288,"h":1,"n":"Musical Instrument"},{"c":2,"s":5,"id":6016,"u":"necklace%20of%20fireballs%20(generic)_crb","p":613,"h":1,"n":"Necklace of Fireballs"},{"c":2,"s":5,"id":6017,"u":"nectar%20of%20purification_crb","p":561,"h":1,"n":"Nectar of Purification"},{"c":2,"s":5,"id":6018,"u":"nettleweed%20residue_crb","p":553,"h":1,"n":"Nettleweed Residue"},{"c":2,"s":5,"id":6019,"u":"nightmare%20vapor_crb","p":553,"h":1,"n":"Nightmare Vapor"},{"c":2,"s":5,"id":6020,"u":"oathbow_crb","p":602,"h":1,"n":"Oathbow"},{"c":2,"s":5,"id":6021,"u":"obfuscation%20oil_crb","p":561,"h":1,"n":"Obfuscation Oil"},{"c":2,"s":5,"id":6022,"u":"oil%20(1%20pint)_crb","p":288,"h":1,"n":"Oil (1 pint)"},{"c":2,"s":5,"id":6023,"u":"oil%20of%20animation_crb","p":561,"h":1,"n":"Oil of Animation"},{"c":2,"s":5,"id":6024,"u":"oil%20of%20keen%20edges_crb","p":561,"h":1,"n":"Oil of Keen Edges"},{"c":2,"s":5,"id":6025,"u":"oil%20of%20mending_crb","p":561,"h":1,"n":"Oil of Mending"},{"c":2,"s":5,"id":6026,"u":"oil%20of%20potency_crb","p":562,"h":1,"n":"Oil of Potency"},{"c":2,"s":5,"id":6027,"u":"oil%20of%20repulsion_crb","p":562,"h":1,"n":"Oil of Repulsion"},{"c":2,"s":5,"id":6028,"u":"oil%20of%20weightlessness%20(generic)_crb","p":562,"h":1,"n":"Oil of Weightlessness"},{"c":2,"s":5,"id":6029,"u":"omnidirectional%20spear%20snare_crb","p":591,"h":1,"n":"Omnidirectional Spear Snare"},{"c":2,"s":5,"id":6030,"u":"onyx%20panther_crb","p":569,"h":1,"n":"Onyx Panther"},{"c":2,"s":5,"id":6031,"u":"orichalcum%20(generic)_crb","p":579,"h":1,"n":"Orichalcum"},{"c":2,"s":5,"id":6032,"u":"orichalcum%20armor%20(generic)_crb","p":556,"h":1,"n":"Orichalcum Armor"},{"c":2,"s":5,"id":6033,"u":"orichalcum%20shield%20(generic)_crb","p":587,"h":1,"n":"Orichalcum Shield"},{"c":2,"s":5,"id":6034,"u":"orichalcum%20weapon%20(generic)_crb","p":599,"h":1,"n":"Orichalcum Weapon"},{"c":2,"s":5,"id":6035,"u":"owlbear%20claw_crb","p":569,"h":1,"n":"Owlbear Claw"},{"c":2,"s":5,"id":6036,"u":"panacea_crb","p":563,"h":1,"n":"Panacea"},{"c":2,"s":5,"id":6037,"u":"pendant%20of%20the%20occult%20(generic)_crb","p":613,"h":1,"n":"Pendant of the Occult"},{"c":2,"s":5,"id":6038,"u":"penetrating%20ammunition_crb","p":560,"h":1,"n":"Penetrating Ammunition"},{"c":2,"s":5,"id":6039,"u":"persona%20mask%20(generic)_crb","p":613,"h":1,"n":"Persona Mask"},{"c":2,"s":5,"id":6040,"u":"philosopher's%20stone_crb","p":554,"h":1,"n":"Philosopher's Stone"},{"c":2,"s":5,"id":6041,"u":"phylactery%20of%20faithfulness%20(generic)_crb","p":614,"h":1,"n":"Phylactery of Faithfulness"},{"c":2,"s":5,"id":6042,"u":"piton_crb","p":288,"h":1,"n":"Piton"},{"c":2,"s":5,"id":6043,"u":"plate%20armor%20of%20the%20deep_crb","p":558,"h":1,"n":"Plate Armor of the Deep"},{"c":2,"s":5,"id":6044,"u":"pocket%20stage_crb","p":596,"h":1,"n":"Pocket Stage"},{"c":2,"s":5,"id":6045,"u":"possibility%20tome_crb","p":574,"h":1,"n":"Possibility Tome"},{"c":2,"s":5,"id":6046,"u":"potency%20crystal_crb","p":569,"h":1,"n":"Potency Crystal"},{"c":2,"s":5,"id":6047,"u":"potion%20of%20flying%20(generic)_crb","p":563,"h":1,"n":"Potion of Flying"},{"c":2,"s":5,"id":6048,"u":"potion%20of%20leaping_crb","p":563,"h":1,"n":"Potion of Leaping"},{"c":2,"s":5,"id":6049,"u":"potion%20of%20quickness_crb","p":563,"h":1,"n":"Potion of Quickness"},{"c":2,"s":5,"id":6050,"u":"potion%20of%20resistance%20(generic)_crb","p":563,"h":1,"n":"Potion of Resistance"},{"c":2,"s":5,"id":6051,"u":"potion%20of%20swimming%20(generic)_crb","p":563,"h":1,"n":"Potion of Swimming"},{"c":2,"s":5,"id":6052,"u":"potion%20of%20tongues_crb","p":563,"h":1,"n":"Potion of Tongues"},{"c":2,"s":5,"id":6053,"u":"potion%20of%20undetectability_crb","p":563,"h":1,"n":"Potion of Undetectability"},{"c":2,"s":5,"id":6054,"u":"potion%20of%20water%20breathing_crb","p":564,"h":1,"n":"Potion of Water Breathing"},{"c":2,"s":5,"id":6055,"u":"primeval%20mistletoe%20(generic)_crb","p":574,"h":1,"n":"Primeval Mistletoe"},{"c":2,"s":5,"id":6056,"u":"purple%20worm%20venom_crb","p":553,"h":1,"n":"Purple Worm Venom"},{"c":2,"s":5,"id":6057,"u":"quicksilver%20mutagen%20(generic)_crb","p":549,"h":1,"n":"Quicksilver Mutagen"},{"c":2,"s":5,"id":6058,"u":"rations%20(1%20week)_crb","p":288,"h":1,"n":"Rations (1 week)"},{"c":2,"s":5,"id":6059,"u":"reflecting%20shield_crb","p":588,"h":1,"n":"Reflecting Shield"},{"c":2,"s":5,"id":6060,"u":"religious%20symbol%20(generic)_crb","p":288,"h":1,"n":"Religious Symbol"},{"c":2,"s":5,"id":6061,"u":"religious%20text_crb","p":288,"h":1,"n":"Religious Text"},{"c":2,"s":5,"id":6062,"u":"repair%20kit%20(generic)_crb","p":288,"h":1,"n":"Repair Kit"},{"c":2,"s":5,"id":6063,"u":"replacement%20cosmetics%20(generic)_crb","p":288,"h":1,"n":"Replacement Cosmetics"},{"c":2,"s":5,"id":6064,"u":"replacement%20picks%20(generic)_crb","p":288,"h":1,"n":"Replacement Picks"},{"c":2,"s":5,"id":6065,"u":"resilient%20(generic)_crb","p":581,"h":1,"n":"Resilient"},{"c":2,"s":5,"id":6066,"u":"retribution%20axe_crb","p":602,"h":1,"n":"Retribution Axe"},{"c":2,"s":5,"id":6067,"u":"returning_crb","p":584,"h":1,"n":"Returning"},{"c":2,"s":5,"id":6068,"u":"rhino%20hide_crb","p":558,"h":1,"n":"Rhino Hide"},{"c":2,"s":5,"id":6069,"u":"ring%20of%20climbing_crb","p":614,"h":1,"n":"Ring of Climbing"},{"c":2,"s":5,"id":6070,"u":"ring%20of%20counterspells_crb","p":614,"h":1,"n":"Ring of Counterspells"},{"c":2,"s":5,"id":6071,"u":"ring%20of%20energy%20resistance%20(generic)_crb","p":614,"h":1,"n":"Ring of Energy Resistance"},{"c":2,"s":5,"id":6072,"u":"ring%20of%20lies_crb","p":614,"h":1,"n":"Ring of Lies"},{"c":2,"s":5,"id":6073,"u":"ring%20of%20maniacal%20devices%20(generic)_crb","p":614,"h":1,"n":"Ring of Maniacal Devices"},{"c":2,"s":5,"id":6074,"u":"ring%20of%20spell%20turning_crb","p":615,"h":1,"n":"Ring of Spell Turning"},{"c":2,"s":5,"id":6075,"u":"ring%20of%20sustenance_crb","p":615,"h":1,"n":"Ring of Sustenance"},{"c":2,"s":5,"id":6076,"u":"ring%20of%20swimming_crb","p":615,"h":1,"n":"Ring of Swimming"},{"c":2,"s":5,"id":6077,"u":"ring%20of%20the%20ram%20(generic)_crb","p":615,"h":1,"n":"Ring of the Ram"},{"c":2,"s":5,"id":6078,"u":"ring%20of%20wizardry%20(generic)_crb","p":615,"h":1,"n":"Ring of Wizardry"},{"c":2,"s":5,"id":6079,"u":"robe%20of%20eyes_crb","p":615,"h":1,"n":"Robe of Eyes"},{"c":2,"s":5,"id":6080,"u":"robe%20of%20the%20archmagi%20(generic)_crb","p":616,"h":1,"n":"Robe of the Archmagi"},{"c":2,"s":5,"id":6081,"u":"rod%20of%20negation_crb","p":574,"h":1,"n":"Rod of Negation"},{"c":2,"s":5,"id":6082,"u":"rod%20of%20wonder_crb","p":575,"h":1,"n":"Rod of Wonder"},{"c":2,"s":5,"id":6083,"u":"rope%20(50%20feet)_crb","p":288,"h":1,"n":"Rope (50 feet)"},{"c":2,"s":5,"id":6084,"u":"runestone_crb","p":571,"h":1,"n":"Runestone"},{"c":2,"s":5,"id":6085,"u":"sack%20(5)_crb","p":288,"h":1,"n":"Sack (5)"},{"c":2,"s":5,"id":6086,"u":"saddlebags_crb","p":288,"h":1,"n":"Saddlebags"},{"c":2,"s":5,"id":6087,"u":"salamander%20elixir%20(generic)_crb","p":549,"h":1,"n":"Salamander Elixir"},{"c":2,"s":5,"id":6088,"u":"salve%20of%20antiparalysis%20(generic)_crb","p":562,"h":1,"n":"Salve of Antiparalysis"},{"c":2,"s":5,"id":6089,"u":"salve%20of%20slipperiness_crb","p":562,"h":1,"n":"Salve of Slipperiness"},{"c":2,"s":5,"id":6090,"u":"savior%20spike_crb","p":569,"h":1,"n":"Savior Spike"},{"c":2,"s":5,"id":6091,"u":"scholarly%20journal%20(generic)_crb","p":288,"h":1,"n":"Scholarly Journal"},{"c":2,"s":5,"id":6092,"u":"scything%20blade%20snare_crb","p":591,"h":1,"n":"Scything Blade Snare"},{"c":2,"s":5,"id":6093,"u":"sea%20touch%20elixir%20(generic)_crb","p":549,"h":1,"n":"Sea Touch Elixir"},{"c":2,"s":5,"id":6094,"u":"serene%20mutagen%20(generic)_crb","p":549,"h":1,"n":"Serene Mutagen"},{"c":2,"s":5,"id":6095,"u":"serum%20of%20sex%20shift_crb","p":564,"h":1,"n":"Serum of Sex Shift"},{"c":2,"s":5,"id":6096,"u":"shadow%20(generic)_crb","p":583,"h":1,"n":"Shadow"},{"c":2,"s":5,"id":6097,"u":"shadow%20essence_crb","p":553,"h":1,"n":"Shadow Essence"},{"c":2,"s":5,"id":6098,"u":"shark%20tooth%20charm_crb","p":569,"h":1,"n":"Shark Tooth Charm"},{"c":2,"s":5,"id":6099,"u":"shifting_crb","p":585,"h":1,"n":"Shifting"},{"c":2,"s":5,"id":6100,"u":"shining%20ammunition_crb","p":560,"h":1,"n":"Shining Ammunition"},{"c":2,"s":5,"id":6101,"u":"shock%20(generic)_crb","p":585,"h":1,"n":"Shock"},{"c":2,"s":5,"id":6102,"u":"shrinking%20potion%20(generic)_crb","p":564,"h":1,"n":"Shrinking Potion"},{"c":2,"s":5,"id":6103,"u":"signal%20whistle_crb","p":288,"h":1,"n":"Signal Whistle"},{"c":2,"s":5,"id":6104,"u":"signaling%20snare_crb","p":591,"h":1,"n":"Signaling Snare"},{"c":2,"s":5,"id":6105,"u":"silver%20(generic)_crb","p":579,"h":1,"n":"Silver"},{"c":2,"s":5,"id":6106,"u":"silver%20armor%20(generic)_crb","p":556,"h":1,"n":"Silver Armor"},{"c":2,"s":5,"id":6107,"u":"silver%20shield%20(generic)_crb","p":587,"h":1,"n":"Silver Shield"},{"c":2,"s":5,"id":6108,"u":"silver%20weapon%20(generic)_crb","p":599,"h":1,"n":"Silver Weapon"},{"c":2,"s":5,"id":6109,"u":"silversheen_crb","p":554,"h":1,"n":"Silversheen"},{"c":2,"s":5,"id":6110,"u":"silvertongue%20mutagen%20(generic)_crb","p":550,"h":1,"n":"Silvertongue Mutagen"},{"c":2,"s":5,"id":6111,"u":"skeleton%20key%20(generic)_crb","p":575,"h":1,"n":"Skeleton Key"},{"c":2,"s":5,"id":6112,"u":"sky%20hammer_crb","p":602,"h":1,"n":"Sky Hammer"},{"c":2,"s":5,"id":6113,"u":"sleep%20arrow_crb","p":560,"h":1,"n":"Sleep Arrow"},{"c":2,"s":5,"id":6114,"u":"slick%20(generic)_crb","p":583,"h":1,"n":"Slick"},{"c":2,"s":5,"id":6115,"u":"sling%20bullets_crb","p":282,"h":1,"n":"Sling Bullets"},{"c":2,"s":5,"id":6116,"u":"slippers%20of%20spider%20climbing_crb","p":616,"h":1,"n":"Slippers of Spider Climbing"},{"c":2,"s":5,"id":6117,"u":"slumber%20wine_crb","p":553,"h":1,"n":"Slumber Wine"},{"c":2,"s":5,"id":6118,"u":"smokestick%20(generic)_crb","p":554,"h":1,"n":"Smokestick"},{"c":2,"s":5,"id":6119,"u":"snake%20oil_crb","p":554,"h":1,"n":"Snake Oil"},{"c":2,"s":5,"id":6120,"u":"snare%20kit%20(generic)_crb","p":288,"h":1,"n":"Snare Kit"},{"c":2,"s":5,"id":6121,"u":"sneaky%20key_crb","p":569,"h":1,"n":"Sneaky Key"},{"c":2,"s":5,"id":6122,"u":"soap_crb","p":288,"h":1,"n":"Soap"},{"c":2,"s":5,"id":6123,"u":"speed_crb","p":585,"h":1,"n":"Speed"},{"c":2,"s":5,"id":6124,"u":"spell-storing_crb","p":585,"h":1,"n":"Spell-storing"},{"c":2,"s":5,"id":6125,"u":"spellbook%20(blank)_crb","p":288,"h":1,"n":"Spellbook (Blank)"},{"c":2,"s":5,"id":6126,"u":"spellguard%20shield_crb","p":588,"h":1,"n":"Spellguard Shield"},{"c":2,"s":5,"id":6127,"u":"spellstrike%20ammunition%20(generic)_crb","p":560,"h":1,"n":"Spellstrike Ammunition"},{"c":2,"s":5,"id":6128,"u":"spider%20root_crb","p":553,"h":1,"n":"Spider Root"},{"c":2,"s":5,"id":6129,"u":"spike%20snare_crb","p":591,"h":1,"n":"Spike Snare"},{"c":2,"s":5,"id":6130,"u":"spined%20shield_crb","p":588,"h":1,"n":"Spined Shield"},{"c":2,"s":5,"id":6131,"u":"spyglass%20(generic)_crb","p":288,"h":1,"n":"Spyglass"},{"c":2,"s":5,"id":6132,"u":"staff%20of%20abjuration%20(generic)_crb","p":593,"h":1,"n":"Staff of Abjuration"},{"c":2,"s":5,"id":6133,"u":"staff%20of%20conjuration%20(generic)_crb","p":593,"h":1,"n":"Staff of Conjuration"},{"c":2,"s":5,"id":6134,"u":"staff%20of%20divination%20(generic)_crb","p":593,"h":1,"n":"Staff of Divination"},{"c":2,"s":5,"id":6135,"u":"staff%20of%20enchantment%20(generic)_crb","p":593,"h":1,"n":"Staff of Enchantment"},{"c":2,"s":5,"id":6136,"u":"staff%20of%20evocation%20(generic)_crb","p":593,"h":1,"n":"Staff of Evocation"},{"c":2,"s":5,"id":6137,"u":"staff%20of%20fire%20(generic)_crb","p":594,"h":1,"n":"Staff of Fire"},{"c":2,"s":5,"id":6138,"u":"staff%20of%20healing%20(generic)_crb","p":594,"h":1,"n":"Staff of Healing"},{"c":2,"s":5,"id":6139,"u":"staff%20of%20illumination_crb","p":594,"h":1,"n":"Staff of Illumination"},{"c":2,"s":5,"id":6140,"u":"staff%20of%20illusion%20(generic)_crb","p":594,"h":1,"n":"Staff of Illusion"},{"c":2,"s":5,"id":6141,"u":"staff%20of%20necromancy%20(generic)_crb","p":594,"h":1,"n":"Staff of Necromancy"},{"c":2,"s":5,"id":6142,"u":"staff%20of%20power_crb","p":595,"h":1,"n":"Staff of Power"},{"c":2,"s":5,"id":6143,"u":"staff%20of%20the%20magi_crb","p":595,"h":1,"n":"Staff of the Magi"},{"c":2,"s":5,"id":6144,"u":"staff%20of%20transmutation%20(generic)_crb","p":595,"h":1,"n":"Staff of Transmutation"},{"c":2,"s":5,"id":6145,"u":"stalker%20bane%20snare_crb","p":591,"h":1,"n":"Stalker Bane Snare"},{"c":2,"s":5,"id":6146,"u":"stone%20bullet_crb","p":560,"h":1,"n":"Stone Bullet"},{"c":2,"s":5,"id":6147,"u":"stone%20fist%20elixir_crb","p":550,"h":1,"n":"Stone Fist Elixir"},{"c":2,"s":5,"id":6148,"u":"storm%20arrow_crb","p":560,"h":1,"n":"Storm Arrow"},{"c":2,"s":5,"id":6149,"u":"storm%20flash%20(generic)_crb","p":602,"h":1,"n":"Storm Flash"},{"c":2,"s":5,"id":6150,"u":"striking%20(generic)_crb","p":581,"h":1,"n":"Striking"},{"c":2,"s":5,"id":6151,"u":"striking%20snare_crb","p":591,"h":1,"n":"Striking Snare"},{"c":2,"s":5,"id":6152,"u":"stunning%20snare_crb","p":591,"h":1,"n":"Stunning Snare"},{"c":2,"s":5,"id":6153,"u":"sturdy%20shield%20(generic)_crb","p":588,"h":1,"n":"Sturdy Shield"},{"c":2,"s":5,"id":6154,"u":"sunrod_crb","p":554,"h":1,"n":"Sunrod"},{"c":2,"s":5,"id":6155,"u":"survey%20map%20(generic)_crb","p":288,"h":1,"n":"Survey Map"},{"c":2,"s":5,"id":6156,"u":"swift%20block%20cabochon_crb","p":569,"h":1,"n":"Swift Block Cabochon"},{"c":2,"s":5,"id":6157,"u":"tack_crb","p":288,"h":1,"n":"Tack"},{"c":2,"s":5,"id":6158,"u":"tanglefoot%20bag%20(generic)_crb","p":545,"h":1,"n":"Tanglefoot Bag"},{"c":2,"s":5,"id":6159,"u":"tears%20of%20death_crb","p":553,"h":1,"n":"Tears of Death"},{"c":2,"s":5,"id":6160,"u":"ten-foot%20pole_crb","p":288,"h":1,"n":"Ten-Foot Pole"},{"c":2,"s":5,"id":6161,"u":"tent%20(generic)_crb","p":288,"h":1,"n":"Tent"},{"c":2,"s":5,"id":6162,"u":"thieves'%20tools%20(generic)_crb","p":288,"h":1,"n":"Thieves' Tools"},{"c":2,"s":5,"id":6163,"u":"third%20eye_crb","p":616,"h":1,"n":"Third Eye"},{"c":2,"s":5,"id":6164,"u":"thundering%20(generic)_crb","p":585,"h":1,"n":"Thundering"},{"c":2,"s":5,"id":6165,"u":"thunderstone%20(generic)_crb","p":546,"h":1,"n":"Thunderstone"},{"c":2,"s":5,"id":6166,"u":"thurible%20of%20revelation%20(generic)_crb","p":575,"h":1,"n":"Thurible of Revelation"},{"c":2,"s":5,"id":6167,"u":"tiger%20menuki_crb","p":569,"h":1,"n":"Tiger Menuki"},{"c":2,"s":5,"id":6168,"u":"tindertwig_crb","p":554,"h":1,"n":"Tindertwig"},{"c":2,"s":5,"id":6169,"u":"tool%20(generic)_crb","p":288,"h":1,"n":"Tool"},{"c":2,"s":5,"id":6170,"u":"torch_crb","p":288,"h":1,"n":"Torch"},{"c":2,"s":5,"id":6171,"u":"tracker's%20goggles%20(generic)_crb","p":616,"h":1,"n":"Tracker's Goggles"},{"c":2,"s":5,"id":6172,"u":"traveler's%20any-tool_crb","p":576,"h":1,"n":"Traveler's Any-tool"},{"c":2,"s":5,"id":6173,"u":"trip%20snare_crb","p":591,"h":1,"n":"Trip Snare"},{"c":2,"s":5,"id":6174,"u":"triton's%20conch_crb","p":576,"h":1,"n":"Triton's Conch"},{"c":2,"s":5,"id":6175,"u":"truesight%20potion_crb","p":564,"h":1,"n":"Truesight Potion"},{"c":2,"s":5,"id":6176,"u":"truth%20potion_crb","p":564,"h":1,"n":"Truth Potion"},{"c":2,"s":5,"id":6177,"u":"twining%20staff_crb","p":602,"h":1,"n":"Twining Staff"},{"c":2,"s":5,"id":6178,"u":"unholy_crb","p":585,"h":1,"n":"Unholy"},{"c":2,"s":5,"id":6179,"u":"unholy%20water_crb","p":571,"h":1,"n":"Unholy Water"},{"c":2,"s":5,"id":6180,"u":"vanishing%20coin_crb","p":569,"h":1,"n":"Vanishing Coin"},{"c":2,"s":5,"id":6181,"u":"ventriloquist's%20ring%20(generic)_crb","p":617,"h":1,"n":"Ventriloquist's Ring"},{"c":2,"s":5,"id":6182,"u":"verdant%20staff%20(generic)_crb","p":595,"h":1,"n":"Verdant Staff"},{"c":2,"s":5,"id":6183,"u":"vine%20arrow_crb","p":560,"h":1,"n":"Vine Arrow"},{"c":2,"s":5,"id":6184,"u":"viper%20arrow_crb","p":561,"h":1,"n":"Viper Arrow"},{"c":2,"s":5,"id":6185,"u":"viper's%20fang_crb","p":569,"h":1,"n":"Viper's Fang"},{"c":2,"s":5,"id":6186,"u":"vorpal_crb","p":585,"h":1,"n":"Vorpal"},{"c":2,"s":5,"id":6187,"u":"voyager's%20pack_crb","p":617,"h":1,"n":"Voyager's Pack"},{"c":2,"s":5,"id":6188,"u":"wand%20of%20continuation%20(generic)_crb","p":598,"h":1,"n":"Wand of Continuation"},{"c":2,"s":5,"id":6189,"u":"wand%20of%20manifold%20missiles%20(generic)_crb","p":598,"h":1,"n":"Wand of Manifold Missiles"},{"c":2,"s":5,"id":6190,"u":"wand%20of%20slaying%20(generic)_crb","p":598,"h":1,"n":"Wand of Slaying"},{"c":2,"s":5,"id":6191,"u":"wand%20of%20smoldering%20fireballs%20(generic)_crb","p":598,"h":1,"n":"Wand of Smoldering Fireballs"},{"c":2,"s":5,"id":6192,"u":"wand%20of%20widening%20(generic)_crb","p":598,"h":1,"n":"Wand of Widening"},{"c":2,"s":5,"id":6193,"u":"warning%20snare_crb","p":591,"h":1,"n":"Warning Snare"},{"c":2,"s":5,"id":6194,"u":"waterskin_crb","p":288,"h":1,"n":"Waterskin"},{"c":2,"s":5,"id":6195,"u":"wayfinder_crb","p":617,"h":1,"n":"Wayfinder"},{"c":2,"s":5,"id":6196,"u":"weapon%20potency%20(generic)_crb","p":581,"h":1,"n":"Weapon Potency"},{"c":2,"s":5,"id":6197,"u":"whisper%20of%20the%20first%20lie_crb","p":617,"h":1,"n":"Whisper of the First Lie"},{"c":2,"s":5,"id":6198,"u":"winged%20boots_crb","p":617,"h":1,"n":"Winged Boots"},{"c":2,"s":5,"id":6199,"u":"winter%20wolf%20elixir%20(generic)_crb","p":550,"h":1,"n":"Winter Wolf Elixir"},{"c":2,"s":5,"id":6200,"u":"wolf%20fang_crb","p":570,"h":1,"n":"Wolf Fang"},{"c":2,"s":5,"id":6201,"u":"wolfsbane_crb","p":553,"h":1,"n":"Wolfsbane"},{"c":2,"s":5,"id":6202,"u":"wondrous%20figurine%20(generic)_crb","p":576,"h":1,"n":"Wondrous Figurine"},{"c":2,"s":5,"id":6203,"u":"wounding_crb","p":585,"h":1,"n":"Wounding"},{"c":2,"s":5,"id":6204,"u":"writing%20set_crb","p":288,"h":1,"n":"Writing Set"},{"c":2,"s":5,"id":6205,"u":"wyvern%20poison_crb","p":554,"h":1,"n":"Wyvern Poison"},{"c":2,"s":12,"id":6206,"u":"alcohol_gmg","p":120,"h":1,"n":"Alcohol"},{"c":2,"s":12,"id":6207,"u":"arrow%20attracting_gmg","p":92,"h":1,"n":"Arrow Attracting"},{"c":2,"s":12,"id":6208,"u":"arsonous_gmg","p":92,"h":1,"n":"Arsonous"},{"c":2,"s":12,"id":6209,"u":"axe%20of%20the%20dwarven%20lords_gmg","p":106,"h":1,"n":"Axe Of The Dwarven Lords"},{"c":2,"s":12,"id":6210,"u":"backbiting_gmg","p":92,"h":1,"n":"Backbiting"},{"c":2,"s":12,"id":6211,"u":"bag%20of%20devouring_gmg","p":90,"h":1,"n":"Bag Of Devouring"},{"c":2,"s":12,"id":6212,"u":"bag%20of%20weasels_gmg","p":90,"h":1,"n":"Bag Of Weasels"},{"c":2,"s":12,"id":6213,"u":"blood%20sap_gmg","p":120,"h":1,"n":"Blood Sap"},{"c":2,"s":12,"id":6214,"u":"bloodbiter_gmg","p":92,"h":1,"n":"Bloodbiter"},{"c":2,"s":12,"id":6215,"u":"bloodeye%20coffee_gmg","p":120,"h":1,"n":"Bloodeye Coffee"},{"c":2,"s":12,"id":6216,"u":"boots%20of%20dancing_gmg","p":90,"h":1,"n":"Boots Of Dancing"},{"c":2,"s":12,"id":6217,"u":"cloak%20of%20immolation_gmg","p":91,"h":1,"n":"Cloak Of Immolation"},{"c":2,"s":12,"id":6218,"u":"cytillesh_gmg","p":121,"h":1,"n":"Cytillesh"},{"c":2,"s":12,"id":6219,"u":"deck%20of%20many%20things_gmg","p":107,"h":1,"n":"Deck Of Many Things"},{"c":2,"s":12,"id":6220,"u":"degenerating_gmg","p":93,"h":1,"n":"Degenerating"},{"c":2,"s":12,"id":6221,"u":"dependent_gmg","p":93,"h":1,"n":"Dependent"},{"c":2,"s":12,"id":6222,"u":"dreamtime%20tea_gmg","p":121,"h":1,"n":"Dreamtime Tea"},{"c":2,"s":12,"id":6223,"u":"dreary_gmg","p":93,"h":1,"n":"Dreary"},{"c":2,"s":12,"id":6224,"u":"elder%20sign_gmg","p":108,"h":1,"n":"Elder Sign"},{"c":2,"s":12,"id":6225,"u":"elven%20absinthe_gmg","p":121,"h":1,"n":"Elven Absinthe"},{"c":2,"s":12,"id":6226,"u":"erratic%20transposing_gmg","p":93,"h":1,"n":"Erratic Transposing"},{"c":2,"s":12,"id":6227,"u":"essence%20prism_gmg","p":108,"h":1,"n":"Essence Prism"},{"c":2,"s":12,"id":6228,"u":"flayleaf_gmg","p":120,"h":1,"n":"Flayleaf"},{"c":2,"s":12,"id":6229,"u":"forgefather's%20seal_gmg","p":109,"h":1,"n":"Forgefather's Seal"},{"c":2,"s":12,"id":6230,"u":"genius%20diadem_gmg","p":89,"h":1,"n":"Genius Diadem"},{"c":2,"s":12,"id":6231,"u":"gloves%20of%20carelessness_gmg","p":91,"h":1,"n":"Gloves Of Carelessness"},{"c":2,"s":12,"id":6232,"u":"grandstanding_gmg","p":93,"h":1,"n":"Grandstanding"},{"c":2,"s":12,"id":6233,"u":"horns%20of%20naraga_gmg","p":109,"h":1,"n":"Horns Of Naraga"},{"c":2,"s":12,"id":6234,"u":"martyr's%20shield_gmg","p":89,"h":1,"n":"Martyr's Shield"},{"c":2,"s":12,"id":6235,"u":"medusa%20armor_gmg","p":91,"h":1,"n":"Medusa Armor"},{"c":2,"s":12,"id":6236,"u":"mirror%20of%20sorshen_gmg","p":110,"h":1,"n":"Mirror Of Sorshen"},{"c":2,"s":12,"id":6237,"u":"monkey's%20paw_gmg","p":91,"h":1,"n":"Monkey's Paw"},{"c":2,"s":12,"id":6238,"u":"necklace%20of%20strangulation_gmg","p":91,"h":1,"n":"Necklace Of Strangulation"},{"c":2,"s":12,"id":6239,"u":"orb%20of%20dragonkind_gmg","p":110,"h":1,"n":"Orb Of Dragonkind"},{"c":2,"s":12,"id":6240,"u":"overdramatic_gmg","p":93,"h":1,"n":"Overdramatic"},{"c":2,"s":12,"id":6241,"u":"philosopher's%20extractor_gmg","p":111,"h":1,"n":"Philosopher's Extractor"},{"c":2,"s":12,"id":6242,"u":"poisonous%20cloak%20(generic)_gmg","p":91,"h":1,"n":"Poisonous Cloak"},{"c":2,"s":12,"id":6243,"u":"raucous_gmg","p":93,"h":1,"n":"Raucous"},{"c":2,"s":12,"id":6244,"u":"ravenous_gmg","p":93,"h":1,"n":"Ravenous"},{"c":2,"s":12,"id":6245,"u":"refined%20pesh_gmg","p":120,"h":1,"n":"Refined Pesh"},{"c":2,"s":12,"id":6246,"u":"ring%20of%20truth_gmg","p":91,"h":1,"n":"Ring Of Truth"},{"c":2,"s":12,"id":6247,"u":"scour_gmg","p":121,"h":1,"n":"Scour"},{"c":2,"s":12,"id":6248,"u":"serithtial_gmg","p":112,"h":1,"n":"Serithtial"},{"c":2,"s":12,"id":6249,"u":"shiver_gmg","p":121,"h":1,"n":"Shiver"},{"c":2,"s":12,"id":6250,"u":"shot%20of%20the%20first%20vault_gmg","p":112,"h":1,"n":"Shot Of The First Vault"},{"c":2,"s":12,"id":6251,"u":"singing%20sword_gmg","p":89,"h":1,"n":"Singing Sword"},{"c":2,"s":12,"id":6252,"u":"sphere%20of%20annihilation_gmg","p":113,"h":1,"n":"Sphere Of Annihilation"},{"c":2,"s":12,"id":6253,"u":"staining_gmg","p":93,"h":1,"n":"Staining"},{"c":2,"s":12,"id":6254,"u":"stone%20of%20weight_gmg","p":92,"h":1,"n":"Stone Of Weight"},{"c":2,"s":12,"id":6255,"u":"talisman%20of%20the%20sphere_gmg","p":113,"h":1,"n":"Talisman Of The Sphere"},{"c":2,"s":12,"id":6256,"u":"withering_gmg","p":93,"h":1,"n":"Withering"},{"c":2,"s":12,"id":6257,"u":"zerk_gmg","p":121,"h":1,"n":"Zerk"},{"c":2,"s":13,"id":6258,"u":"cinderclaw%20gauntlet_aoa1","p":77,"h":1,"n":"Cinderclaw Gauntlet"},{"c":2,"s":13,"id":6259,"u":"hunter's%20arrowhead_aoa1","p":77,"h":1,"n":"Hunter's Arrowhead"},{"c":2,"s":14,"id":6260,"u":"dragon's%20eye%20charm_aoa2","p":71,"h":1,"n":"Dragon's Eye Charm"},{"c":2,"s":14,"id":6261,"u":"eclipse_aoa2","p":72,"h":1,"n":"Eclipse"},{"c":2,"s":15,"id":6262,"u":"addlebrain_aoa3","p":71,"h":1,"n":"Addlebrain"},{"c":2,"s":15,"id":6263,"u":"bellflower%20toolbelt_aoa3","p":71,"h":1,"n":"Bellflower Toolbelt"},{"c":2,"s":15,"id":6264,"u":"bountiful%20cauldron_aoa3","p":71,"h":1,"n":"Bountiful Cauldron"},{"c":2,"s":15,"id":6265,"u":"cursed_aoa3","p":71,"h":1,"n":"Cursed"},{"c":2,"s":15,"id":6266,"u":"dreamstone_aoa3","p":71,"h":1,"n":"Dreamstone"},{"c":2,"s":15,"id":6267,"u":"eye%20of%20the%20wise_aoa3","p":72,"h":1,"n":"Eye Of The Wise"},{"c":2,"s":15,"id":6268,"u":"gourd%20home_aoa3","p":72,"h":1,"n":"Gourd Home"},{"c":2,"s":16,"id":6269,"u":"ancestral%20echoing_aoa4","p":73,"h":1,"n":"Ancestral Echoing"},{"c":2,"s":16,"id":6270,"u":"bloodbane%20(generic)_aoa4","p":73,"h":1,"n":"Bloodbane"},{"c":2,"s":16,"id":6271,"u":"dragonscale%20amulet_aoa4","p":73,"h":1,"n":"Dragonscale Amulet"},{"c":2,"s":16,"id":6272,"u":"guiding%20chisel_aoa4","p":74,"h":1,"n":"Guiding Chisel"},{"c":2,"s":16,"id":6273,"u":"kin-warding_aoa4","p":73,"h":1,"n":"Kin-warding"},{"c":2,"s":16,"id":6274,"u":"reforging%20shield_aoa4","p":74,"h":1,"n":"Reforging Shield"},{"c":2,"s":16,"id":6275,"u":"rock-braced_aoa4","p":73,"h":1,"n":"Rock-braced"},{"c":2,"s":17,"id":6276,"u":"aluum%20charm_aoa5","p":82,"h":1,"n":"Aluum Charm"},{"c":2,"s":17,"id":6277,"u":"false%20death_aoa5","p":78,"h":1,"n":"False Death"},{"c":2,"s":17,"id":6278,"u":"frenzy%20oil_aoa5","p":78,"h":1,"n":"Frenzy Oil"},{"c":2,"s":17,"id":6279,"u":"gorgon's%20breath_aoa5","p":78,"h":1,"n":"Gorgon's Breath"},{"c":2,"s":17,"id":6280,"u":"grinning%20pugwampi_aoa5","p":77,"h":1,"n":"Grinning Pugwampi"},{"c":2,"s":17,"id":6281,"u":"isolation%20draught_aoa5","p":79,"h":1,"n":"Isolation Draught"},{"c":2,"s":17,"id":6282,"u":"mage%20bane_aoa5","p":79,"h":1,"n":"Mage Bane"},{"c":2,"s":17,"id":6283,"u":"nethysian%20bulwark_aoa5","p":77,"h":1,"n":"Nethysian Bulwark"},{"c":2,"s":17,"id":6284,"u":"nightmare%20salt_aoa5","p":79,"h":1,"n":"Nightmare Salt"},{"c":2,"s":17,"id":6285,"u":"oblivion%20essence_aoa5","p":79,"h":1,"n":"Oblivion Essence"},{"c":2,"s":17,"id":6286,"u":"pactmasters'%20grace_aoa5","p":77,"h":1,"n":"Pactmasters' Grace"},{"c":2,"s":17,"id":6287,"u":"peshspine%20grenade%20(generic)_aoa5","p":77,"h":1,"n":"Peshspine Grenade"},{"c":2,"s":17,"id":6288,"u":"weeping%20midnight_aoa5","p":79,"h":1,"n":"Weeping Midnight"},{"c":2,"s":18,"id":6289,"u":"flawed%20orb%20of%20gold%20dragonkind_aoa6","p":75,"h":1,"n":"Flawed Orb Of Gold Dragonkind"},{"c":2,"s":18,"id":6290,"u":"orb%20shard_aoa6","p":75,"h":1,"n":"Orb Shard"},{"c":2,"s":19,"id":6291,"u":"aurifying%20salts_aoe1","p":80,"h":1,"n":"Aurifying Salts"},{"c":2,"s":19,"id":6292,"u":"blindpepper%20bomb_aoe1","p":78,"h":1,"n":"Blindpepper Bomb"},{"c":2,"s":19,"id":6293,"u":"blindpepper%20tube_aoe1","p":78,"h":1,"n":"Blindpepper Tube"},{"c":2,"s":19,"id":6294,"u":"corpseward%20pendant_aoe1","p":80,"h":1,"n":"Corpseward Pendant"},{"c":2,"s":19,"id":6295,"u":"fingerprinting%20kit_aoe1","p":77,"h":1,"n":"Fingerprinting Kit"},{"c":2,"s":19,"id":6296,"u":"grolna_aoe1","p":81,"h":1,"n":"Grolna"},{"c":2,"s":19,"id":6297,"u":"handcuffs%20(generic)_aoe1","p":77,"h":1,"n":"Handcuffs"},{"c":2,"s":19,"id":6298,"u":"knockout%20dram_aoe1","p":81,"h":1,"n":"Knockout Dram"},{"c":2,"s":19,"id":6299,"u":"looter's%20lethargy_aoe1","p":81,"h":1,"n":"Looter's Lethargy"},{"c":2,"s":19,"id":6300,"u":"pacifying_aoe1","p":78,"h":1,"n":"Pacifying"},{"c":2,"s":19,"id":6301,"u":"reaper's%20lancet_aoe1","p":81,"h":1,"n":"Reaper's Lancet"},{"c":2,"s":19,"id":6302,"u":"recording%20rod%20(generic)_aoe1","p":80,"h":1,"n":"Recording Rod"},{"c":2,"s":19,"id":6303,"u":"ring%20of%20discretion_aoe1","p":80,"h":1,"n":"Ring Of Discretion"},{"c":2,"s":20,"id":6304,"u":"chain%20of%20the%20stilled%20spirit_aoe2","p":75,"h":1,"n":"Chain Of The Stilled Spirit"},{"c":2,"s":20,"id":6305,"u":"deafening%20music%20box_aoe2","p":75,"h":1,"n":"Deafening Music Box"},{"c":2,"s":20,"id":6306,"u":"ethersight%20ring_aoe2","p":75,"h":1,"n":"Ethersight Ring"},{"c":2,"s":20,"id":6307,"u":"floorbell_aoe2","p":75,"h":1,"n":"Floorbell"},{"c":2,"s":20,"id":6308,"u":"skinsaw%20mask_aoe2","p":76,"h":1,"n":"Skinsaw Mask"},{"c":2,"s":20,"id":6309,"u":"swarmeater's%20clasp_aoe2","p":76,"h":1,"n":"Swarmeater's Clasp"},{"c":2,"s":20,"id":6310,"u":"vaultbreaker's%20harness_aoe2","p":76,"h":1,"n":"Vaultbreaker's Harness"},{"c":2,"s":21,"id":6311,"u":"barbed%20vest_aoe3","p":78,"h":1,"n":"Barbed Vest"},{"c":2,"s":21,"id":6312,"u":"blackfinger%20blight_aoe3","p":78,"h":1,"n":"Blackfinger Blight"},{"c":2,"s":21,"id":6313,"u":"mnemonic%20acid_aoe3","p":78,"h":1,"n":"Mnemonic Acid"},{"c":2,"s":22,"id":6314,"u":"blade%20of%20the%20rabbit%20prince_aoe4","p":79,"h":1,"n":"Blade Of The Rabbit Prince"},{"c":2,"s":22,"id":6315,"u":"daylight%20vapor_aoe4","p":77,"h":1,"n":"Daylight Vapor"},{"c":2,"s":22,"id":6316,"u":"death%20knell%20powder_aoe4","p":77,"h":1,"n":"Death Knell Powder"},{"c":2,"s":22,"id":6317,"u":"fearweed_aoe4","p":77,"h":1,"n":"Fearweed"},{"c":2,"s":22,"id":6318,"u":"hardened%20harrow%20deck_aoe4","p":79,"h":1,"n":"Hardened Harrow Deck"},{"c":2,"s":22,"id":6319,"u":"hunger%20oil_aoe4","p":78,"h":1,"n":"Hunger Oil"},{"c":2,"s":22,"id":6320,"u":"liar's%20demise_aoe4","p":78,"h":1,"n":"Liar's Demise"},{"c":2,"s":22,"id":6321,"u":"lifeblight%20residue_aoe4","p":78,"h":1,"n":"Lifeblight Residue"},{"c":2,"s":22,"id":6322,"u":"poisoner's%20staff%20(generic)_aoe4","p":80,"h":1,"n":"Poisoner's Staff"},{"c":2,"s":22,"id":6323,"u":"repulsion%20resin_aoe4","p":78,"h":1,"n":"Repulsion Resin"},{"c":2,"s":22,"id":6324,"u":"sight-theft%20grit_aoe4","p":78,"h":1,"n":"Sight-theft Grit"},{"c":2,"s":22,"id":6325,"u":"spectral%20nightshade_aoe4","p":79,"h":1,"n":"Spectral Nightshade"},{"c":2,"s":22,"id":6326,"u":"spell-eating%20pitch_aoe4","p":79,"h":1,"n":"Spell-eating Pitch"},{"c":2,"s":22,"id":6327,"u":"whisper%20briolette_aoe4","p":80,"h":1,"n":"Whisper Briolette"},{"c":2,"s":23,"id":6328,"u":"cauldron%20of%20nightmares_aoe5","p":78,"h":1,"n":"Cauldron Of Nightmares"},{"c":2,"s":23,"id":6329,"u":"clockwork%20cloak_aoe5","p":79,"h":1,"n":"Clockwork Cloak"},{"c":2,"s":23,"id":6330,"u":"clockwork%20helm_aoe5","p":79,"h":1,"n":"Clockwork Helm"},{"c":2,"s":23,"id":6331,"u":"clockwork%20rejuvenator_aoe5","p":79,"h":1,"n":"Clockwork Rejuvenator"},{"c":2,"s":23,"id":6332,"u":"forgotten%20shell_aoe5","p":78,"h":1,"n":"Forgotten Shell"},{"c":2,"s":23,"id":6333,"u":"fungal%20armor_aoe5","p":77,"h":1,"n":"Fungal Armor"},{"c":2,"s":23,"id":6334,"u":"garrote%20bolt_aoe5","p":77,"h":1,"n":"Garrote Bolt"},{"c":2,"s":23,"id":6335,"u":"gearblade_aoe5","p":79,"h":1,"n":"Gearblade"},{"c":2,"s":23,"id":6336,"u":"miogimo's%20mask_aoe5","p":77,"h":1,"n":"Miogimo's Mask"},{"c":2,"s":23,"id":6337,"u":"nightmare%20cudgel_aoe5","p":78,"h":1,"n":"Nightmare Cudgel"},{"c":2,"s":24,"id":6338,"u":"cane%20of%20the%20maelstrom_aoe6","p":73,"h":1,"n":"Cane Of The Maelstrom"},{"c":2,"s":24,"id":6339,"u":"radiant%20spark_aoe6","p":74,"h":1,"n":"Radiant Spark"},{"c":2,"s":24,"id":6340,"u":"ring%20of%20recalcitrant%20wishes_aoe6","p":74,"h":1,"n":"Ring Of Recalcitrant Wishes"},{"c":2,"s":24,"id":6341,"u":"warpglass%20(generic)_aoe6","p":74,"h":1,"n":"Warpglass"},{"c":2,"s":24,"id":6342,"u":"warpglass%20weapon%20(generic)_aoe6","p":75,"h":1,"n":"Warpglass Weapon"},{"c":2,"s":25,"id":6343,"u":"gauntlight_av1","p":77,"h":1,"n":"Gauntlight"},{"c":2,"s":25,"id":6344,"u":"lantern%20of%20empty%20light_av1","p":78,"h":1,"n":"Lantern Of Empty Light"},{"c":2,"s":25,"id":6345,"u":"skeptic's%20elixir%20(generic)_av1","p":78,"h":1,"n":"Skeptic's Elixir"},{"c":2,"s":25,"id":6346,"u":"the%20whispering%20reeds_av1","p":78,"h":1,"n":"The Whispering Reeds"},{"c":2,"s":26,"id":6347,"u":"cooperative%20blade_av2","p":71,"h":1,"n":"Cooperative Blade"},{"c":2,"s":26,"id":6348,"u":"devil's%20luck_av2","p":74,"h":1,"n":"Devil's Luck"},{"c":2,"s":26,"id":6349,"u":"drover's%20band_av2","p":72,"h":1,"n":"Drover's Band"},{"c":2,"s":26,"id":6350,"u":"folding%20drums_av2","p":72,"h":1,"n":"Folding Drums"},{"c":2,"s":26,"id":6351,"u":"hunter's%20brooch_av2","p":71,"h":1,"n":"Hunter's Brooch"},{"c":2,"s":26,"id":6352,"u":"ichthyosis%20mutagen_av2","p":72,"h":1,"n":"Ichthyosis Mutagen"},{"c":2,"s":26,"id":6353,"u":"icy%20disposition_av2","p":75,"h":1,"n":"Icy Disposition"},{"c":2,"s":26,"id":6354,"u":"pact%20of%20blood-taking_av2","p":75,"h":1,"n":"Pact Of Blood-taking"},{"c":2,"s":26,"id":6355,"u":"right%20of%20retribution_av2","p":75,"h":1,"n":"Right Of Retribution"},{"c":2,"s":26,"id":6356,"u":"sloughing%20toxin_av2","p":72,"h":1,"n":"Sloughing Toxin"},{"c":2,"s":27,"id":6357,"u":"crimson%20fulcrum%20lens_av3","p":75,"h":1,"n":"Crimson Fulcrum Lens"},{"c":2,"s":27,"id":6358,"u":"ebon%20fulcrum%20lens_av3","p":76,"h":1,"n":"Ebon Fulcrum Lens"},{"c":2,"s":27,"id":6359,"u":"emerald%20fulcrum%20lens_av3","p":76,"h":1,"n":"Emerald Fulcrum Lens"},{"c":2,"s":27,"id":6360,"u":"fulcrum%20lattice_av3","p":76,"h":1,"n":"Fulcrum Lattice"},{"c":2,"s":27,"id":6361,"u":"fungal%20walk%20musk_av3","p":74,"h":1,"n":"Fungal Walk Musk"},{"c":2,"s":27,"id":6362,"u":"necrotic%20bomb%20(generic)_av3","p":74,"h":1,"n":"Necrotic Bomb"},{"c":2,"s":27,"id":6363,"u":"ochre%20fulcrum%20lens_av3","p":76,"h":1,"n":"Ochre Fulcrum Lens"},{"c":2,"s":27,"id":6364,"u":"stupor%20poison_av3","p":74,"h":1,"n":"Stupor Poison"},{"c":2,"s":27,"id":6365,"u":"shootist%20bandolier_av3","p":73,"h":1,"n":"Shootist Bandolier"},{"c":2,"s":28,"id":6366,"u":"dust%20pods_ec1","p":76,"h":1,"n":"Dust Pods"},{"c":2,"s":28,"id":6367,"u":"fang%20snare_ec1","p":76,"h":1,"n":"Fang Snare"},{"c":2,"s":28,"id":6368,"u":"grasping%20tree_ec1","p":76,"h":1,"n":"Grasping Tree"},{"c":2,"s":28,"id":6369,"u":"thunder%20snare_ec1","p":76,"h":1,"n":"Thunder Snare"},{"c":2,"s":28,"id":6370,"u":"torrent%20snare_ec1","p":76,"h":1,"n":"Torrent Snare"},{"c":2,"s":29,"id":6371,"u":"acrobat's%20staff_ec2","p":73,"h":1,"n":"Acrobat's Staff"},{"c":2,"s":29,"id":6372,"u":"beckoning%20cat%20amulet_ec2","p":73,"h":1,"n":"Beckoning Cat Amulet"},{"c":2,"s":29,"id":6373,"u":"bullhook%20(generic)_ec2","p":73,"h":1,"n":"Bullhook"},{"c":2,"s":29,"id":6374,"u":"grail%20of%20twisted%20desires_ec2","p":73,"h":1,"n":"Grail Of Twisted Desires"},{"c":2,"s":29,"id":6375,"u":"inspiring%20spotlight_ec2","p":73,"h":1,"n":"Inspiring Spotlight"},{"c":2,"s":29,"id":6376,"u":"invisible%20net_ec2","p":74,"h":1,"n":"Invisible Net"},{"c":2,"s":29,"id":6377,"u":"marvelous%20calliope_ec2","p":74,"h":1,"n":"Marvelous Calliope"},{"c":2,"s":29,"id":6378,"u":"moonstone%20diadem_ec2","p":74,"h":1,"n":"Moonstone Diadem"},{"c":2,"s":29,"id":6379,"u":"ringmaster's%20staff%20(generic)_ec2","p":74,"h":1,"n":"Ringmaster's Staff"},{"c":2,"s":29,"id":6380,"u":"saints'%20balm_ec2","p":75,"h":1,"n":"Saints' Balm"},{"c":2,"s":29,"id":6381,"u":"spangled%20rider's%20suit_ec2","p":75,"h":1,"n":"Spangled Rider's Suit"},{"c":2,"s":29,"id":6382,"u":"stole%20of%20civility_ec2","p":75,"h":1,"n":"Stole Of Civility"},{"c":2,"s":29,"id":6383,"u":"whip%20of%20compliance_ec2","p":75,"h":1,"n":"Whip Of Compliance"},{"c":2,"s":29,"id":6384,"u":"wondrous%20figurines%20(generic)_ec2","p":75,"h":1,"n":"Wondrous Figurines"},{"c":2,"s":8,"id":6385,"u":"golem%20stylus_ec3","p":69,"h":1,"n":"Golem Stylus"},{"c":2,"s":8,"id":6386,"u":"ring%20of%20stoneshifting_ec3","p":69,"h":1,"n":"Ring Of Stoneshifting"},{"c":2,"s":8,"id":6387,"u":"shoony%20shovel_ec3","p":69,"h":1,"n":"Shoony Shovel"},{"c":2,"s":8,"id":6388,"u":"skarja's%20heartstone_ec3","p":89,"h":1,"n":"Skarja's Heartstone"},{"c":2,"s":30,"id":6389,"u":"ankylostar_ec4","p":75,"h":1,"n":"Ankylostar"},{"c":2,"s":30,"id":6390,"u":"jawbreaker%20shield_ec4","p":75,"h":1,"n":"Jawbreaker Shield"},{"c":2,"s":30,"id":6391,"u":"noxious%20jerkin_ec4","p":76,"h":1,"n":"Noxious Jerkin"},{"c":2,"s":30,"id":6392,"u":"spore%20sap_ec4","p":76,"h":1,"n":"Spore Sap"},{"c":2,"s":30,"id":6393,"u":"stoneraiser%20javelin_ec4","p":76,"h":1,"n":"Stoneraiser Javelin"},{"c":2,"s":31,"id":6394,"u":"anchor%20spear_ec5","p":75,"h":1,"n":"Anchor Spear"},{"c":2,"s":31,"id":6395,"u":"blightburn%20ward_ec5","p":73,"h":1,"n":"Blightburn Ward"},{"c":2,"s":31,"id":6396,"u":"bomber's%20saddle_ec5","p":76,"h":1,"n":"Bomber's Saddle"},{"c":2,"s":31,"id":6397,"u":"cave%20worm%20repellent%20(generic)_ec5","p":75,"h":1,"n":"Cave Worm Repellent"},{"c":2,"s":31,"id":6398,"u":"greengut_ec5","p":75,"h":1,"n":"Greengut"},{"c":2,"s":31,"id":6399,"u":"heedless%20spurs_ec5","p":76,"h":1,"n":"Heedless Spurs"},{"c":2,"s":31,"id":6400,"u":"life's%20last%20breath_ec5","p":76,"h":1,"n":"Life's Last Breath"},{"c":2,"s":31,"id":6401,"u":"staff%20of%20the%20black%20desert%20(generic)_ec5","p":76,"h":1,"n":"Staff Of The Black Desert"},{"c":2,"s":32,"id":6402,"u":"ambrosia%20of%20undying%20hope_ec6","p":74,"h":1,"n":"Ambrosia Of Undying Hope"},{"c":2,"s":32,"id":6403,"u":"aroden's%20hearthstone_ec6","p":66,"h":1,"n":"Aroden's Hearthstone"},{"c":2,"s":32,"id":6404,"u":"celestial%20hair_ec6","p":74,"h":1,"n":"Celestial Hair"},{"c":2,"s":32,"id":6405,"u":"hunter's%20dawn_ec6","p":67,"h":1,"n":"Hunter's Dawn"},{"c":2,"s":32,"id":6406,"u":"jerkin%20of%20liberation_ec6","p":74,"h":1,"n":"Jerkin Of Liberation"},{"c":2,"s":32,"id":6407,"u":"kortos%20diamond_ec6","p":68,"h":1,"n":"Kortos Diamond"},{"c":2,"s":32,"id":6408,"u":"locket%20of%20sealed%20nightmares_ec6","p":74,"h":1,"n":"Locket Of Sealed Nightmares"},{"c":2,"s":32,"id":6409,"u":"panacea%20fruit_ec6","p":74,"h":1,"n":"Panacea Fruit"},{"c":2,"s":32,"id":6410,"u":"piereta_ec6","p":74,"h":1,"n":"Piereta"},{"c":2,"s":32,"id":6411,"u":"planar%20ribbon_ec6","p":75,"h":1,"n":"Planar Ribbon"},{"c":2,"s":32,"id":6412,"u":"shield%20of%20the%20unified%20legion_ec6","p":75,"h":1,"n":"Shield Of The Unified Legion"},{"c":2,"s":32,"id":6413,"u":"staff%20of%20sieges_ec6","p":75,"h":1,"n":"Staff Of Sieges"},{"c":2,"s":32,"id":6414,"u":"tears%20of%20the%20last%20azlanti_ec6","p":69,"h":1,"n":"Tears Of The Last Azlanti"},{"c":2,"s":33,"id":6415,"u":"bort's%20blessing_fop","p":58,"h":1,"n":"Bort's Blessing"},{"c":2,"s":33,"id":6416,"u":"energy%20mutagen%20(generic)_fop","p":56,"h":1,"n":"Energy Mutagen"},{"c":2,"s":33,"id":6417,"u":"merchant's%20guile_fop","p":58,"h":1,"n":"Merchant's Guile"},{"c":2,"s":33,"id":6418,"u":"ring%20of%20minor%20arcana_fop","p":58,"h":1,"n":"Ring Of Minor Arcana"},{"c":2,"s":33,"id":6419,"u":"ring%20of%20the%20weary%20traveler_fop","p":58,"h":1,"n":"Ring Of The Weary Traveler"},{"c":2,"s":33,"id":6420,"u":"stalwart's%20ring_fop","p":58,"h":1,"n":"Stalwart's Ring"},{"c":2,"s":33,"id":6421,"u":"stone%20body%20mutagen%20(generic)_fop","p":56,"h":1,"n":"Stone Body Mutagen"},{"c":2,"s":33,"id":6422,"u":"warrior's%20training%20ring_fop","p":58,"h":1,"n":"Warrior's Training Ring"},{"c":2,"s":34,"id":6423,"u":"bonmuan%20swapping%20stone%20(generic)_frp1","p":75,"h":1,"n":"Bonmuan Swapping Stone"},{"c":2,"s":34,"id":6424,"u":"phoenix%20fighting%20fan_frp1","p":75,"h":1,"n":"Phoenix Fighting Fan"},{"c":2,"s":34,"id":6425,"u":"phoenix%20necklace_frp1","p":75,"h":1,"n":"Phoenix Necklace"},{"c":2,"s":35,"id":6426,"u":"apricot%20of%20bestial%20might_frp2","p":74,"h":1,"n":"Apricot Of Bestial Might"},{"c":2,"s":35,"id":6427,"u":"cape%20of%20the%20open%20sky_frp2","p":74,"h":1,"n":"Cape Of The Open Sky"},{"c":2,"s":35,"id":6428,"u":"headbands%20of%20translocation_frp2","p":74,"h":1,"n":"Headbands Of Translocation"},{"c":2,"s":35,"id":6429,"u":"sky-piercing%20bow_frp2","p":74,"h":1,"n":"Sky-piercing Bow"},{"c":2,"s":35,"id":6430,"u":"stormbreaker%20fulu_frp2","p":75,"h":1,"n":"Stormbreaker Fulu"},{"c":2,"s":35,"id":6431,"u":"tusk%20and%20fang%20chain_frp2","p":75,"h":1,"n":"Tusk And Fang Chain"},{"c":2,"s":2,"id":6432,"u":"round%20(5)_g%26g","p":150,"a":"5","h":1,"n":"Round"},{"c":2,"s":2,"id":6433,"u":"round%20(10)_g%26g","p":150,"a":"10","h":1,"n":"Round"},{"c":2,"s":2,"id":6434,"u":"ablative%20armor%20plating%20(generic)_g%26g","p":66,"h":1,"n":"Ablative Armor Plating"},{"c":2,"s":2,"id":6435,"u":"ablative%20shield%20plating%20(generic)_g%26g","p":67,"h":1,"n":"Ablative Shield Plating"},{"c":2,"s":2,"id":6436,"u":"acid%20spitter_g%26g","p":78,"h":1,"n":"Acid Spitter"},{"c":2,"s":2,"id":6437,"u":"adaptive%20cogwheel_g%26g","p":184,"h":1,"n":"Adaptive Cogwheel"},{"c":2,"s":2,"id":6438,"u":"admonishing%20band_g%26g","p":184,"h":1,"n":"Admonishing Band"},{"c":2,"s":2,"id":6439,"u":"air%20cartridge%20firing%20system_g%26g","p":183,"h":1,"n":"Air Cartridge Firing System"},{"c":2,"s":2,"id":6440,"u":"alchemical%20springald_g%26g","p":173,"h":1,"n":"Alchemical Springald"},{"c":2,"s":2,"id":6441,"u":"alkenstar%20cannon_g%26g","p":176,"h":1,"n":"Alkenstar Cannon"},{"c":2,"s":2,"id":6442,"u":"animate%20dreamer_g%26g","p":161,"h":1,"n":"Animate Dreamer"},{"c":2,"s":2,"id":6443,"u":"aquarium%20lamp_g%26g","p":84,"h":1,"n":"Aquarium Lamp"},{"c":2,"s":2,"id":6444,"u":"arboreal's%20revenge_g%26g","p":160,"h":1,"n":"Arboreal's Revenge"},{"c":2,"s":2,"id":6445,"u":"aromatic%20ammunition_g%26g","p":168,"h":1,"n":"Aromatic Ammunition"},{"c":2,"s":2,"id":6446,"u":"awakened%20metal%20shot%20(generic)_g%26g","p":168,"h":1,"n":"Awakened Metal Shot"},{"c":2,"s":2,"id":6447,"u":"backpack%20ballista%20bolts_g%26g","p":63,"h":1,"n":"Backpack Ballista Bolts"},{"c":2,"s":2,"id":6448,"u":"backpack%20catapult%20stones_g%26g","p":63,"h":1,"n":"Backpack Catapult Stones"},{"c":2,"s":2,"id":6449,"u":"ballista_g%26g","p":74,"h":1,"n":"Ballista"},{"c":2,"s":2,"id":6450,"u":"basic%20chair_g%26g","p":91,"h":1,"n":"Basic Chair"},{"c":2,"s":2,"id":6451,"u":"battering%20ram%20(generic)_g%26g","p":74,"h":1,"n":"Battering Ram"},{"c":2,"s":2,"id":6452,"u":"binding%20snare_g%26g","p":78,"h":1,"n":"Binding Snare"},{"c":2,"s":2,"id":6453,"u":"black%20powder%20(generic)_g%26g","p":169,"h":1,"n":"Black Powder"},{"c":2,"s":2,"id":6454,"u":"blade%20launcher_g%26g","p":64,"h":1,"n":"Blade Launcher"},{"c":2,"s":2,"id":6455,"u":"blast%20boots%20(generic)_g%26g","p":67,"h":1,"n":"Blast Boots"},{"c":2,"s":2,"id":6456,"u":"blasting%20ram_g%26g","p":173,"h":1,"n":"Blasting Ram"},{"c":2,"s":2,"id":6457,"u":"blazons%20of%20shared%20power%20(generic)_g%26g","p":183,"h":1,"n":"Blazons Of Shared Power"},{"c":2,"s":2,"id":6458,"u":"boastful%20hunter_g%26g","p":162,"h":1,"n":"Boastful Hunter"},{"c":2,"s":2,"id":6459,"u":"bomb%20launcher_g%26g","p":64,"h":1,"n":"Bomb Launcher"},{"c":2,"s":2,"id":6460,"u":"bombard_g%26g","p":173,"h":1,"n":"Bombard"},{"c":2,"s":2,"id":6461,"u":"breath%20blaster%20(generic)_g%26g","p":154,"h":1,"n":"Breath Blaster"},{"c":2,"s":2,"id":6462,"u":"breech%20ejectors_g%26g","p":183,"h":1,"n":"Breech Ejectors"},{"c":2,"s":2,"id":6463,"u":"camouflage%20suit%20(generic)_g%26g","p":178,"h":1,"n":"Camouflage Suit"},{"c":2,"s":2,"id":6464,"u":"cannon_g%26g","p":174,"h":1,"n":"Cannon"},{"c":2,"s":2,"id":6465,"u":"catapult_g%26g","p":75,"h":1,"n":"Catapult"},{"c":2,"s":2,"id":6466,"u":"cauterizing%20torch_g%26g","p":67,"h":1,"n":"Cauterizing Torch"},{"c":2,"s":2,"id":6467,"u":"chameleon%20suit%20(generic)_g%26g","p":67,"h":1,"n":"Chameleon Suit"},{"c":2,"s":2,"id":6468,"u":"clockwork%20bookshelf_g%26g","p":85,"h":1,"n":"Clockwork Bookshelf"},{"c":2,"s":2,"id":6469,"u":"clockwork%20box%20packer_g%26g","p":85,"h":1,"n":"Clockwork Box Packer"},{"c":2,"s":2,"id":6470,"u":"clockwork%20chirper_g%26g","p":79,"h":1,"n":"Clockwork Chirper"},{"c":2,"s":2,"id":6471,"u":"clockwork%20diving%20suit_g%26g","p":86,"h":1,"n":"Clockwork Diving Suit"},{"c":2,"s":2,"id":6472,"u":"clockwork%20goggles%20(generic)_g%26g","p":68,"h":1,"n":"Clockwork Goggles"},{"c":2,"s":2,"id":6473,"u":"clockwork%20megaphone_g%26g","p":87,"h":1,"n":"Clockwork Megaphone"},{"c":2,"s":2,"id":6474,"u":"clockwork%20monkey_g%26g","p":79,"h":1,"n":"Clockwork Monkey"},{"c":2,"s":2,"id":6475,"u":"concealed%20holster_g%26g","p":178,"h":1,"n":"Concealed Holster"},{"c":2,"s":2,"id":6476,"u":"cryomister%20(generic)_g%26g","p":68,"h":1,"n":"Cryomister"},{"c":2,"s":2,"id":6477,"u":"darkvision%20scope%20(generic)_g%26g","p":180,"h":1,"n":"Darkvision Scope"},{"c":2,"s":2,"id":6478,"u":"day%20goggles_g%26g","p":87,"h":1,"n":"Day Goggles"},{"c":2,"s":2,"id":6479,"u":"death%20coil_g%26g","p":79,"h":1,"n":"Death Coil"},{"c":2,"s":2,"id":6480,"u":"deployable%20cover%20(generic)_g%26g","p":64,"h":1,"n":"Deployable Cover"},{"c":2,"s":2,"id":6481,"u":"detonating%20gears%20snare_g%26g","p":79,"h":1,"n":"Detonating Gears Snare"},{"c":2,"s":2,"id":6482,"u":"door%20ram_g%26g","p":75,"h":1,"n":"Door Ram"},{"c":2,"s":2,"id":6483,"u":"drake%20rifle_g%26g","p":154,"h":1,"n":"Drake Rifle"},{"c":2,"s":2,"id":6484,"u":"dreaming%20round_g%26g","p":169,"h":1,"n":"Dreaming Round"},{"c":2,"s":2,"id":6485,"u":"duchy%20defender_g%26g","p":162,"h":1,"n":"Duchy Defender"},{"c":2,"s":2,"id":6486,"u":"earplugs_g%26g","p":178,"h":1,"n":"Earplugs"},{"c":2,"s":2,"id":6487,"u":"electrocable_g%26g","p":87,"h":1,"n":"Electrocable"},{"c":2,"s":2,"id":6488,"u":"electromuscular%20stimulator_g%26g","p":68,"h":1,"n":"Electromuscular Stimulator"},{"c":2,"s":2,"id":6489,"u":"energized%20cartridge_g%26g","p":184,"h":1,"n":"Energized Cartridge"},{"c":2,"s":2,"id":6490,"u":"eroding%20bullet_g%26g","p":169,"h":1,"n":"Eroding Bullet"},{"c":2,"s":2,"id":6491,"u":"etheric%20essence%20disruptor%20(generic)_g%26g","p":68,"h":1,"n":"Etheric Essence Disruptor"},{"c":2,"s":2,"id":6492,"u":"explosive%20mine%20(generic)_g%26g","p":69,"h":1,"n":"Explosive Mine"},{"c":2,"s":2,"id":6493,"u":"exsanguinating%20ammunition%20(generic)_g%26g","p":170,"h":1,"n":"Exsanguinating Ammunition"},{"c":2,"s":2,"id":6494,"u":"extendable%20pincer_g%26g","p":87,"h":1,"n":"Extendable Pincer"},{"c":2,"s":2,"id":6495,"u":"fairy%20bullet_g%26g","p":170,"h":1,"n":"Fairy Bullet"},{"c":2,"s":2,"id":6496,"u":"fiend's%20mouth%20cannon_g%26g","p":174,"h":1,"n":"Fiend's Mouth Cannon"},{"c":2,"s":2,"id":6497,"u":"fire%20box_g%26g","p":80,"h":1,"n":"Fire Box"},{"c":2,"s":2,"id":6498,"u":"firearm%20cleaning%20kit_g%26g","p":178,"h":1,"n":"Firearm Cleaning Kit"},{"c":2,"s":2,"id":6499,"u":"steelheart%2021_g%26g","p":175,"h":1,"n":"Steelheart 21"},{"c":2,"s":2,"id":6500,"u":"firedrake_g%26g","p":175,"h":1,"n":"Firedrake"},{"c":2,"s":2,"id":6501,"u":"flame%20drake%20snare_g%26g","p":79,"h":1,"n":"Flame Drake Snare"},{"c":2,"s":2,"id":6502,"u":"flare%20beacon%20(generic)_g%26g","p":69,"h":1,"n":"Flare Beacon"},{"c":2,"s":2,"id":6503,"u":"frog%20chair_g%26g","p":91,"h":1,"n":"Frog Chair"},{"c":2,"s":2,"id":6504,"u":"frost%20worm%20snare_g%26g","p":80,"h":1,"n":"Frost Worm Snare"},{"c":2,"s":2,"id":6505,"u":"gadget%20skates_g%26g","p":70,"h":1,"n":"Gadget Skates"},{"c":2,"s":2,"id":6506,"u":"galvanic%20mortal%20coil_g%26g","p":82,"h":1,"n":"Galvanic Mortal Coil"},{"c":2,"s":2,"id":6507,"u":"galvasphere_g%26g","p":82,"h":1,"n":"Galvasphere"},{"c":2,"s":2,"id":6508,"u":"gecko%20pads%20(generic)_g%26g","p":70,"h":1,"n":"Gecko Pads"},{"c":2,"s":2,"id":6509,"u":"ghostshot%20wrapping_g%26g","p":184,"h":1,"n":"Ghostshot Wrapping"},{"c":2,"s":2,"id":6510,"u":"glue%20bullet_g%26g","p":170,"h":1,"n":"Glue Bullet"},{"c":2,"s":2,"id":6511,"u":"goblin-eye%20orb_g%26g","p":184,"h":1,"n":"Goblin-eye Orb"},{"c":2,"s":2,"id":6512,"u":"grappling%20gun%20(generic)_g%26g","p":64,"h":1,"n":"Grappling Gun"},{"c":2,"s":2,"id":6513,"u":"growth%20gun_g%26g","p":155,"h":1,"n":"Growth Gun"},{"c":2,"s":2,"id":6514,"u":"gunner's%20bandolier_g%26g","p":179,"h":1,"n":"Gunner's Bandolier"},{"c":2,"s":2,"id":6515,"u":"gunner's%20saddle_g%26g","p":182,"h":1,"n":"Gunner's Saddle"},{"c":2,"s":2,"id":6516,"u":"heated%20cloak_g%26g","p":87,"h":1,"n":"Heated Cloak"},{"c":2,"s":2,"id":6517,"u":"heavy%20ballista_g%26g","p":75,"h":1,"n":"Heavy Ballista"},{"c":2,"s":2,"id":6518,"u":"heavy%20bombard_g%26g","p":175,"h":1,"n":"Heavy Bombard"},{"c":2,"s":2,"id":6519,"u":"holy%20steam%20ball_g%26g","p":87,"h":1,"n":"Holy Steam Ball"},{"c":2,"s":2,"id":6520,"u":"hwacha_g%26g","p":175,"h":1,"n":"Hwacha"},{"c":2,"s":2,"id":6521,"u":"hyldarf's%20fang_g%26g","p":164,"h":1,"n":"Hyldarf's Fang"},{"c":2,"s":2,"id":6522,"u":"ignitor_g%26g","p":88,"h":1,"n":"Ignitor"},{"c":2,"s":2,"id":6523,"u":"immaculate%20holsters_g%26g","p":180,"h":1,"n":"Immaculate Holsters"},{"c":2,"s":2,"id":6524,"u":"immolation%20clan%20pistol_g%26g","p":160,"h":1,"n":"Immolation Clan Pistol"},{"c":2,"s":2,"id":6525,"u":"immovable%20tripod_g%26g","p":182,"h":1,"n":"Immovable Tripod"},{"c":2,"s":2,"id":6526,"u":"impact%20foam%20chassis%20(generic)_g%26g","p":70,"h":1,"n":"Impact Foam Chassis"},{"c":2,"s":2,"id":6527,"u":"indomitable%20keepsake%20(generic)_g%26g","p":185,"h":1,"n":"Indomitable Keepsake"},{"c":2,"s":2,"id":6528,"u":"instant%20spy_g%26g","p":70,"h":1,"n":"Instant Spy"},{"c":2,"s":2,"id":6529,"u":"iris%20of%20the%20sky_g%26g","p":165,"h":1,"n":"Iris Of The Sky"},{"c":2,"s":2,"id":6530,"u":"large%20bore%20modifications_g%26g","p":183,"h":1,"n":"Large Bore Modifications"},{"c":2,"s":2,"id":6531,"u":"liar's%20gun_g%26g","p":157,"h":1,"n":"Liar's Gun"},{"c":2,"s":2,"id":6532,"u":"light%20writer_g%26g","p":88,"h":1,"n":"Light Writer"},{"c":2,"s":2,"id":6533,"u":"lucky%20draw%20bandolier%20(generic)_g%26g","p":180,"h":1,"n":"Lucky Draw Bandolier"},{"c":2,"s":2,"id":6534,"u":"magnetic%20suit%20(generic)_g%26g","p":71,"h":1,"n":"Magnetic Suit"},{"c":2,"s":2,"id":6535,"u":"magnetite%20scope%20(generic)_g%26g","p":181,"h":1,"n":"Magnetite Scope"},{"c":2,"s":2,"id":6536,"u":"magnifying%20scope%20(generic)_g%26g","p":181,"h":1,"n":"Magnifying Scope"},{"c":2,"s":2,"id":6537,"u":"material%20essence%20disruptor%20(generic)_g%26g","p":71,"h":1,"n":"Material Essence Disruptor"},{"c":2,"s":2,"id":6538,"u":"mechanical%20torch_g%26g","p":88,"h":1,"n":"Mechanical Torch"},{"c":2,"s":2,"id":6539,"u":"meteor%20shot%20(generic)_g%26g","p":171,"h":1,"n":"Meteor Shot"},{"c":2,"s":2,"id":6540,"u":"mortar_g%26g","p":176,"h":1,"n":"Mortar"},{"c":2,"s":2,"id":6541,"u":"mountebank's%20passage_g%26g","p":165,"h":1,"n":"Mountebank's Passage"},{"c":2,"s":2,"id":6542,"u":"net%20launcher_g%26g","p":65,"h":1,"n":"Net Launcher"},{"c":2,"s":2,"id":6543,"u":"nightbreeze%20machine_g%26g","p":88,"h":1,"n":"Nightbreeze Machine"},{"c":2,"s":2,"id":6544,"u":"noisemaker%20snare_g%26g","p":80,"h":1,"n":"Noisemaker Snare"},{"c":2,"s":2,"id":6545,"u":"pact-bound%20pistol_g%26g","p":161,"h":1,"n":"Pact-bound Pistol"},{"c":2,"s":2,"id":6546,"u":"paper%20shredder_g%26g","p":88,"h":1,"n":"Paper Shredder"},{"c":2,"s":2,"id":6547,"u":"peacemaker_g%26g","p":185,"h":1,"n":"Peacemaker"},{"c":2,"s":2,"id":6548,"u":"persistent%20lodestone_g%26g","p":185,"h":1,"n":"Persistent Lodestone"},{"c":2,"s":2,"id":6549,"u":"petrification%20cannon_g%26g","p":155,"h":1,"n":"Petrification Cannon"},{"c":2,"s":2,"id":6550,"u":"pistol%20of%20wonder_g%26g","p":167,"h":1,"n":"Pistol Of Wonder"},{"c":2,"s":2,"id":6551,"u":"portable%20weapon%20mount%20(generic)_g%26g","p":182,"h":1,"n":"Portable Weapon Mount"},{"c":2,"s":2,"id":6552,"u":"practice%20targets_g%26g","p":178,"h":1,"n":"Practice Targets"},{"c":2,"s":2,"id":6553,"u":"printing%20press_g%26g","p":89,"h":1,"n":"Printing Press"},{"c":2,"s":2,"id":6554,"u":"puff%20dragon_g%26g","p":80,"h":1,"n":"Puff Dragon"},{"c":2,"s":2,"id":6555,"u":"reaper's%20grasp_g%26g","p":165,"h":1,"n":"Reaper's Grasp"},{"c":2,"s":2,"id":6556,"u":"repeating%20magazine%20(generic)_g%26g","p":63,"h":1,"n":"Repeating Magazine"},{"c":2,"s":2,"id":6557,"u":"rowan%20rifle_g%26g","p":166,"h":1,"n":"Rowan Rifle"},{"c":2,"s":2,"id":6558,"u":"sambuca_g%26g","p":177,"h":1,"n":"Sambuca"},{"c":2,"s":2,"id":6559,"u":"scope%20of%20limning_g%26g","p":182,"h":1,"n":"Scope Of Limning"},{"c":2,"s":2,"id":6560,"u":"scope%20of%20truth_g%26g","p":182,"h":1,"n":"Scope Of Truth"},{"c":2,"s":2,"id":6561,"u":"screech%20shooter%20(generic)_g%26g","p":155,"h":1,"n":"Screech Shooter"},{"c":2,"s":2,"id":6562,"u":"shockguard%20coil_g%26g","p":83,"h":1,"n":"Shockguard Coil"},{"c":2,"s":2,"id":6563,"u":"shrapnel%20snare_g%26g","p":80,"h":1,"n":"Shrapnel Snare"},{"c":2,"s":2,"id":6564,"u":"shrieking%20skull_g%26g","p":185,"h":1,"n":"Shrieking Skull"},{"c":2,"s":2,"id":6565,"u":"silencer_g%26g","p":178,"h":1,"n":"Silencer"},{"c":2,"s":2,"id":6566,"u":"silencing%20shot_g%26g","p":171,"h":1,"n":"Silencing Shot"},{"c":2,"s":2,"id":6567,"u":"silver%20tripod_g%26g","p":185,"h":1,"n":"Silver Tripod"},{"c":2,"s":2,"id":6568,"u":"smoke%20fan%20(generic)_g%26g","p":71,"h":1,"n":"Smoke Fan"},{"c":2,"s":2,"id":6569,"u":"sniper's%20bead%20(generic)_g%26g","p":185,"h":1,"n":"Sniper's Bead"},{"c":2,"s":2,"id":6570,"u":"spider%20chair_g%26g","p":91,"h":1,"n":"Spider Chair"},{"c":2,"s":2,"id":6571,"u":"spider%20gun%20(generic)_g%26g","p":155,"h":1,"n":"Spider Gun"},{"c":2,"s":2,"id":6572,"u":"spike%20launcher_g%26g","p":156,"h":1,"n":"Spike Launcher"},{"c":2,"s":2,"id":6573,"u":"spirit%20snare_g%26g","p":80,"h":1,"n":"Spirit Snare"},{"c":2,"s":2,"id":6574,"u":"spirit-singer%20(generic)_g%26g","p":83,"h":1,"n":"Spirit-Singer"},{"c":2,"s":2,"id":6575,"u":"springald_g%26g","p":76,"h":1,"n":"Springald"},{"c":2,"s":2,"id":6576,"u":"steam%20winch_g%26g","p":89,"h":1,"n":"Steam Winch"},{"c":2,"s":2,"id":6577,"u":"steamflight%20pack_g%26g","p":89,"h":1,"n":"Steamflight Pack"},{"c":2,"s":2,"id":6578,"u":"stepping%20stone%20shot%20(generic)_g%26g","p":171,"h":1,"n":"Stepping Stone Shot"},{"c":2,"s":2,"id":6579,"u":"storm%20chair_g%26g","p":91,"h":1,"n":"Storm Chair"},{"c":2,"s":2,"id":6580,"u":"sunken%20pistol_g%26g","p":163,"h":1,"n":"Sunken Pistol"},{"c":2,"s":2,"id":6581,"u":"tentacle%20cannon%20(generic)_g%26g","p":156,"h":1,"n":"Tentacle Cannon"},{"c":2,"s":2,"id":6582,"u":"tiger's%20claw_g%26g","p":166,"h":1,"n":"Tiger's Claw"},{"c":2,"s":2,"id":6583,"u":"timepiece%20(generic)_g%26g","p":89,"h":1,"n":"Timepiece"},{"c":2,"s":2,"id":6584,"u":"tin%20cobra_g%26g","p":81,"h":1,"n":"Tin Cobra"},{"c":2,"s":2,"id":6585,"u":"traveler's%20chair_g%26g","p":91,"h":1,"n":"Traveler's Chair"},{"c":2,"s":2,"id":6586,"u":"trebuchet_g%26g","p":76,"h":1,"n":"Trebuchet"},{"c":2,"s":2,"id":6587,"u":"tripod_g%26g","p":178,"h":1,"n":"Tripod"},{"c":2,"s":2,"id":6588,"u":"trustworthy%20round_g%26g","p":171,"h":1,"n":"Trustworthy Round"},{"c":2,"s":2,"id":6589,"u":"underwater%20firing%20mechanism_g%26g","p":184,"h":1,"n":"Underwater Firing Mechanism"},{"c":2,"s":2,"id":6590,"u":"violet%20ray_g%26g","p":83,"h":1,"n":"Violet Ray"},{"c":2,"s":2,"id":6591,"u":"waterproof%20firearm%20carrying%20case_g%26g","p":178,"h":1,"n":"Waterproof Firearm Carrying Case"},{"c":2,"s":2,"id":6592,"u":"wind-up%20cart_g%26g","p":71,"h":1,"n":"Wind-up Cart"},{"c":2,"s":2,"id":6593,"u":"wind-up%20wings%20(generic)_g%26g","p":65,"h":1,"n":"Wind-up Wings"},{"c":2,"s":1,"id":6594,"u":"conducting_loag","p":140,"h":1,"n":"Conducting"},{"c":2,"s":1,"id":6595,"u":"soaring_loag","p":140,"h":1,"n":"Soaring"},{"c":2,"s":1,"id":6596,"u":"wooden%20taws_loag","p":139,"h":1,"n":"Wooden Taws"},{"c":2,"s":6,"id":6597,"u":"armored%20skirt_locg","p":91,"h":1,"n":"Armored Skirt"},{"c":2,"s":6,"id":6598,"u":"bi-resonant%20wayfinder_locg","p":110,"h":1,"n":"Bi-resonant Wayfinder"},{"c":2,"s":6,"id":6599,"u":"cloak%20of%20repute%20(generic)_locg","p":72,"h":1,"n":"Cloak Of Repute"},{"c":2,"s":6,"id":6600,"u":"crimson%20brand_locg","p":92,"h":1,"n":"Crimson Brand"},{"c":2,"s":6,"id":6601,"u":"fortifying%20pebble_locg","p":110,"h":1,"n":"Fortifying Pebble"},{"c":2,"s":6,"id":6602,"u":"glorious%20plate_locg","p":93,"h":1,"n":"Glorious Plate"},{"c":2,"s":6,"id":6603,"u":"insistent%20door%20knocker%20(generic)_locg","p":72,"h":1,"n":"Insistent Door Knocker"},{"c":2,"s":6,"id":6604,"u":"lastwall%20soup_locg","p":92,"h":1,"n":"Lastwall Soup"},{"c":2,"s":6,"id":6605,"u":"pathfinder%20chronicle_locg","p":110,"h":1,"n":"Pathfinder Chronicle"},{"c":2,"s":6,"id":6606,"u":"pathfinder's%20coin_locg","p":110,"h":1,"n":"Pathfinder's Coin"},{"c":2,"s":6,"id":6607,"u":"pathfinder's%20pouch_locg","p":111,"h":1,"n":"Pathfinder's Pouch"},{"c":2,"s":6,"id":6608,"u":"radiant%20lance_locg","p":92,"h":1,"n":"Radiant Lance"},{"c":2,"s":6,"id":6609,"u":"scroll%20case%20of%20simplicity_locg","p":111,"h":1,"n":"Scroll Case Of Simplicity"},{"c":2,"s":6,"id":6610,"u":"scrollstaff_locg","p":100,"h":1,"n":"Scrollstaff"},{"c":2,"s":6,"id":6611,"u":"serrating_locg","p":93,"h":1,"n":"Serrating"},{"c":2,"s":6,"id":6612,"u":"shining%20wayfinder_locg","p":111,"h":1,"n":"Shining Wayfinder"},{"c":2,"s":6,"id":6613,"u":"sinister%20knight_locg","p":92,"h":1,"n":"Sinister Knight"},{"c":2,"s":6,"id":6614,"u":"snapleaf_locg","p":73,"h":1,"n":"Snapleaf"},{"c":2,"s":6,"id":6615,"u":"unmemorable%20mantle%20(generic)_locg","p":73,"h":1,"n":"Unmemorable Mantle"},{"c":2,"s":6,"id":6616,"u":"vanishing%20wayfinder_locg","p":112,"h":1,"n":"Vanishing Wayfinder"},{"c":2,"s":51,"id":6617,"u":"abadar's%20flawless%20scale_logm","p":121,"h":1,"n":"Abadar's Flawless Scale"},{"c":2,"s":51,"id":6618,"u":"bottomless%20stein_logm","p":121,"h":1,"n":"Bottomless Stein"},{"c":2,"s":51,"id":6619,"u":"dagger%20of%20eternal%20sleep_logm","p":121,"h":1,"n":"Dagger Of Eternal Sleep"},{"c":2,"s":51,"id":6620,"u":"deteriorating%20dust%20(generic)_logm","p":122,"h":1,"n":"Deteriorating Dust"},{"c":2,"s":51,"id":6621,"u":"dreadsmoke%20thurible_logm","p":122,"h":1,"n":"Dreadsmoke Thurible"},{"c":2,"s":51,"id":6622,"u":"glaive%20of%20the%20artist_logm","p":122,"h":1,"n":"Glaive Of The Artist"},{"c":2,"s":51,"id":6623,"u":"lucky%20rabbit's%20foot_logm","p":122,"h":1,"n":"Lucky Rabbit's Foot"},{"c":2,"s":51,"id":6624,"u":"manacles%20of%20persuasion_logm","p":122,"h":1,"n":"Manacles Of Persuasion"},{"c":2,"s":51,"id":6625,"u":"miter%20of%20communion_logm","p":123,"h":1,"n":"Miter Of Communion"},{"c":2,"s":51,"id":6626,"u":"mortar%20of%20hidden%20meaning_logm","p":123,"h":1,"n":"Mortar Of Hidden Meaning"},{"c":2,"s":51,"id":6627,"u":"necklace%20of%20knives_logm","p":123,"h":1,"n":"Necklace Of Knives"},{"c":2,"s":51,"id":6628,"u":"rat-catcher%20trident_logm","p":123,"h":1,"n":"Rat-catcher Trident"},{"c":2,"s":51,"id":6629,"u":"singing%20bowl%20of%20the%20versatile%20stance_logm","p":123,"h":1,"n":"Singing Bowl Of The Versatile Stance"},{"c":2,"s":51,"id":6630,"u":"torag's%20silver%20anvil_logm","p":123,"h":1,"n":"Torag's Silver Anvil"},{"c":2,"s":52,"id":6631,"u":"addiction%20suppressant%20(generic)_lol","p":72,"h":1,"n":"Addiction Suppressant"},{"c":2,"s":52,"id":6632,"u":"alchemical%20atomizer_lol","p":80,"h":1,"n":"Alchemical Atomizer"},{"c":2,"s":52,"id":6633,"u":"applereed%20mutagen%20(generic)_lol","p":86,"h":1,"n":"Applereed Mutagen"},{"c":2,"s":52,"id":6634,"u":"blade%20of%20the%20black%20sovereign_lol","p":76,"h":1,"n":"Blade Of The Black Sovereign"},{"c":2,"s":52,"id":6635,"u":"celestial%20peach%20(generic)_lol","p":48,"h":1,"n":"Celestial Peach"},{"c":2,"s":52,"id":6636,"u":"clockwork%20recorder_lol","p":24,"h":1,"n":"Clockwork Recorder"},{"c":2,"s":52,"id":6637,"u":"deepdread%20claw_lol","p":28,"h":1,"n":"Deepdread Claw"},{"c":2,"s":52,"id":6638,"u":"diluted%20hype_lol","p":81,"h":1,"n":"Diluted Hype"},{"c":2,"s":52,"id":6639,"u":"fiendish%20teleportation_lol","p":10,"h":1,"n":"Fiendish Teleportation"},{"c":2,"s":52,"id":6640,"u":"honeyscent_lol","p":86,"h":1,"n":"Honeyscent"},{"c":2,"s":52,"id":6641,"u":"hype_lol","p":81,"h":1,"n":"Hype"},{"c":2,"s":52,"id":6642,"u":"infernal%20health_lol","p":10,"h":1,"n":"Infernal Health"},{"c":2,"s":52,"id":6643,"u":"lovers'%20ink_lol","p":24,"h":1,"n":"Lovers' Ink"},{"c":2,"s":52,"id":6644,"u":"mountain%20to%20the%20sky_lol","p":48,"h":1,"n":"Mountain To The Sky"},{"c":2,"s":52,"id":6645,"u":"palm%20crossbow_lol","p":25,"h":1,"n":"Palm Crossbow"},{"c":2,"s":52,"id":6646,"u":"plasma%20hype_lol","p":81,"h":1,"n":"Plasma Hype"},{"c":2,"s":52,"id":6647,"u":"ruby%20string_lol","p":48,"h":1,"n":"Ruby String"},{"c":2,"s":52,"id":6648,"u":"sovereign%20steel%20(generic)_lol","p":77,"h":1,"n":"Sovereign Steel"},{"c":2,"s":52,"id":6649,"u":"sovereign%20steel%20armor%20(generic)_lol","p":77,"h":1,"n":"Sovereign Steel Armor"},{"c":2,"s":52,"id":6650,"u":"sovereign%20steel%20weapon%20(generic)_lol","p":77,"h":1,"n":"Sovereign Steel Weapon"},{"c":2,"s":52,"id":6651,"u":"starshot%20arrow%20(generic)_lol","p":48,"h":1,"n":"Starshot Arrow"},{"c":2,"s":52,"id":6652,"u":"sun%20orchid%20poultice_lol","p":20,"h":1,"n":"Sun Orchid Poultice"},{"c":2,"s":52,"id":6653,"u":"swamp%20lily%20quilt_lol","p":86,"h":1,"n":"Swamp Lily Quilt"},{"c":2,"s":52,"id":6654,"u":"unending%20youth_lol","p":10,"h":1,"n":"Unending Youth"},{"c":2,"s":52,"id":6655,"u":"vaccine%20(generic)_lol","p":71,"h":1,"n":"Vaccine"},{"c":2,"s":52,"id":6656,"u":"vestige%20lenses_lol","p":25,"h":1,"n":"Vestige Lenses"},{"c":2,"s":0,"id":6657,"u":"genealogy%20mask_lome","p":34,"h":1,"n":"Genealogy Mask"},{"c":2,"s":0,"id":6658,"u":"jahan%20waystone_lome","p":207,"h":1,"n":"Jahan Waystone"},{"c":2,"s":0,"id":6659,"u":"oath%20of%20the%20devoted_lome","p":231,"h":1,"n":"Oath Of The Devoted"},{"c":2,"s":47,"id":6660,"u":"alignment%20ampoule%20(generic)_lopsg","p":39,"h":1,"n":"Alignment Ampoule"},{"c":2,"s":47,"id":6661,"u":"astrolabe%20(generic)_lopsg","p":35,"h":1,"n":"Astrolabe"},{"c":2,"s":47,"id":6662,"u":"body%20recovery%20kit_lopsg","p":2277,"h":1,"n":"Body Recovery Kit"},{"c":2,"s":47,"id":6663,"u":"bookthief%20brew_lopsg","p":31,"h":1,"n":"Bookthief Brew"},{"c":2,"s":47,"id":6664,"u":"boulderhead%20bock_lopsg","p":30,"h":1,"n":"Boulderhead Bock"},{"c":2,"s":47,"id":6665,"u":"buoyancy%20vest_lopsg","p":114,"h":1,"n":"Buoyancy Vest"},{"c":2,"s":47,"id":6666,"u":"cartographer's%20kit_lopsg","p":35,"h":1,"n":"Cartographer's Kit"},{"c":2,"s":47,"id":6667,"u":"chronicler%20wayfinder_lopsg","p":31,"h":1,"n":"Chronicler Wayfinder"},{"c":2,"s":47,"id":6668,"u":"clockwork%20dial_lopsg","p":114,"h":1,"n":"Clockwork Dial"},{"c":2,"s":47,"id":6669,"u":"comealong_lopsg","p":114,"h":1,"n":"Comealong"},{"c":2,"s":47,"id":6670,"u":"communication%20bangle_lopsg","p":2277,"h":1,"n":"Communication Bangle"},{"c":2,"s":47,"id":6671,"u":"cordelia's%20construct%20key%20(generic)_lopsg","p":124,"h":1,"n":"Cordelia's Construct Key"},{"c":2,"s":47,"id":6672,"u":"cunning_lopsg","p":124,"h":1,"n":"Cunning"},{"c":2,"s":47,"id":6673,"u":"depth%20gauge_lopsg","p":114,"h":1,"n":"Depth Gauge"},{"c":2,"s":47,"id":6674,"u":"diviner's%20nose%20chain_lopsg","p":78,"h":1,"n":"Diviner's Nose Chain"},{"c":2,"s":47,"id":6675,"u":"earplugs_lopsg","p":114,"h":1,"n":"Earplugs"},{"c":2,"s":47,"id":6676,"u":"elemental%20wayfinder%20(generic)_lopsg","p":122,"h":1,"n":"Elemental Wayfinder"},{"c":2,"s":47,"id":6677,"u":"emergency%20disguise_lopsg","p":109,"h":1,"n":"Emergency Disguise"},{"c":2,"s":47,"id":6678,"u":"everyneed%20pack%20(generic)_lopsg","p":86,"h":1,"n":"Everyneed Pack"},{"c":2,"s":47,"id":6679,"u":"false%20manacles_lopsg","p":114,"h":1,"n":"False Manacles"},{"c":2,"s":47,"id":6680,"u":"familiar%20satchel_lopsg","p":114,"h":1,"n":"Familiar satchel"},{"c":2,"s":47,"id":6681,"u":"fashionable%20wayfinder_lopsg","p":122,"h":1,"n":"Fashionable Wayfinder"},{"c":2,"s":47,"id":6682,"u":"ganjay%20book_lopsg","p":97,"h":1,"n":"Ganjay Book"},{"c":2,"s":47,"id":6683,"u":"glass%20cutter_lopsg","p":114,"h":1,"n":"Glass Cutter"},{"c":2,"s":47,"id":6684,"u":"grappling%20arrow_lopsg","p":114,"h":1,"n":"Grappling Arrow"},{"c":2,"s":47,"id":6685,"u":"grappling%20bolt_lopsg","p":114,"h":1,"n":"Grappling Bolt"},{"c":2,"s":47,"id":6686,"u":"homeward%20wayfinder_lopsg","p":122,"h":1,"n":"Homeward Wayfinder"},{"c":2,"s":47,"id":6687,"u":"hummingbird%20wayfinder_lopsg","p":122,"h":1,"n":"Hummingbird Wayfinder"},{"c":2,"s":47,"id":6688,"u":"marked%20playing%20cards_lopsg","p":114,"h":1,"n":"Marked Playing Cards"},{"c":2,"s":47,"id":6689,"u":"metalmist%20sphere%20(generic)_lopsg","p":39,"h":1,"n":"Metalmist Sphere"},{"c":2,"s":47,"id":6690,"u":"playing%20cards_lopsg","p":114,"h":1,"n":"Playing Cards"},{"c":2,"s":47,"id":6691,"u":"psychic%20warding%20bracelet_lopsg","p":39,"h":1,"n":"Psychic Warding Bracelet"},{"c":2,"s":47,"id":6692,"u":"quickpatch%20glue_lopsg","p":35,"h":1,"n":"Quickpatch Glue"},{"c":2,"s":47,"id":6693,"u":"quill%20of%20passage_lopsg","p":118,"h":1,"n":"Quill Of Passage"},{"c":2,"s":47,"id":6694,"u":"razmiri%20wayfinder_lopsg","p":73,"h":1,"n":"Razmiri Wayfinder"},{"c":2,"s":47,"id":6695,"u":"replacement%20filter%20(generic)_lopsg","p":114,"h":1,"n":"Replacement Filter"},{"c":2,"s":47,"id":6696,"u":"rubbing%20set_lopsg","p":114,"h":1,"n":"Rubbing Set"},{"c":2,"s":47,"id":6697,"u":"ruler_lopsg","p":35,"h":1,"n":"Ruler"},{"c":2,"s":47,"id":6698,"u":"sealing%20chest%20(generic)_lopsg","p":38,"h":1,"n":"Sealing Chest"},{"c":2,"s":47,"id":6699,"u":"shield%20sconce_lopsg","p":114,"h":1,"n":"Shield Sconce"},{"c":2,"s":47,"id":6700,"u":"snowshoes_lopsg","p":114,"h":1,"n":"Snowshoes"},{"c":2,"s":47,"id":6701,"u":"snowshoes%20of%20the%20long%20trek_lopsg","p":89,"h":1,"n":"Snowshoes Of The Long Trek"},{"c":2,"s":47,"id":6702,"u":"spectacles%20of%20understanding%20(generic)_lopsg","p":118,"h":1,"n":"Spectacles Of Understanding"},{"c":2,"s":47,"id":6703,"u":"sturdy%20satchel_lopsg","p":35,"h":1,"n":"Sturdy Satchel"},{"c":2,"s":47,"id":6704,"u":"talisman%20cord%20(generic)_lopsg","p":118,"h":1,"n":"Talisman Cord"},{"c":2,"s":47,"id":6705,"u":"vermin%20repellent%20agent%20(generic)_lopsg","p":101,"h":1,"n":"Vermin Repellent Agent"},{"c":2,"s":47,"id":6706,"u":"water%20purifier_lopsg","p":114,"h":1,"n":"Water Purifier"},{"c":2,"s":47,"id":6707,"u":"waterproof%20journal_lopsg","p":31,"h":1,"n":"Waterproof Journal"},{"c":2,"s":47,"id":6708,"u":"wax%20key%20blank_lopsg","p":114,"h":1,"n":"Wax Key Blank"},{"c":2,"s":47,"id":6709,"u":"writ%20of%20authenticity_lopsg","p":2277,"h":1,"n":"Writ Of Authenticity"},{"c":2,"s":7,"id":6710,"u":"abysium%20(generic)_lotgb","p":96,"h":1,"n":"Abysium"},{"c":2,"s":7,"id":6711,"u":"abysium%20armor%20(generic)_lotgb","p":96,"h":1,"n":"Abysium Armor"},{"c":2,"s":7,"id":6712,"u":"abysium%20powder_lotgb","p":96,"h":1,"n":"Abysium Powder"},{"c":2,"s":7,"id":6713,"u":"abysium%20shield%20(generic)_lotgb","p":96,"h":1,"n":"Abysium Shield"},{"c":2,"s":7,"id":6714,"u":"abysium%20weapon%20(generic)_lotgb","p":97,"h":1,"n":"Abysium Weapon"},{"c":2,"s":7,"id":6715,"u":"air%20bladder_lotgb","p":92,"h":1,"n":"Air Bladder"},{"c":2,"s":7,"id":6716,"u":"alluring%20scarf%20(generic)_lotgb","p":84,"h":1,"n":"Alluring Scarf"},{"c":2,"s":7,"id":6717,"u":"amaranthine%20pavise_lotgb","p":30,"h":1,"n":"Amaranthine Pavise"},{"c":2,"s":7,"id":6718,"u":"amphibious%20chair_lotgb","p":71,"h":1,"n":"Amphibious Chair"},{"c":2,"s":7,"id":6719,"u":"anchoring%20(generic)_lotgb","p":80,"h":1,"n":"Anchoring"},{"c":2,"s":7,"id":6720,"u":"arctic%20vigor%20(generic)_lotgb","p":38,"h":1,"n":"Arctic Vigor"},{"c":2,"s":7,"id":6721,"u":"avalanche%20of%20stones%20snare_lotgb","p":42,"h":1,"n":"Avalanche Of Stones Snare"},{"c":2,"s":7,"id":6722,"u":"ball_lotgb","p":58,"h":1,"n":"Ball"},{"c":2,"s":7,"id":6723,"u":"bandalore_lotgb","p":58,"h":1,"n":"Bandalore"},{"c":2,"s":7,"id":6724,"u":"basic%20cane_lotgb","p":67,"h":1,"n":"Basic Cane"},{"c":2,"s":7,"id":6725,"u":"basic%20corrective%20lenses_lotgb","p":70,"h":1,"n":"Basic Corrective Lenses"},{"c":2,"s":7,"id":6726,"u":"basic%20crutch_lotgb","p":67,"h":1,"n":"Basic Crutch"},{"c":2,"s":7,"id":6727,"u":"basic%20hearing%20aid_lotgb","p":67,"h":1,"n":"Basic Hearing Aid"},{"c":2,"s":7,"id":6728,"u":"basic%20prosthesis_lotgb","p":69,"h":1,"n":"Basic Prosthesis"},{"c":2,"s":7,"id":6729,"u":"big%20rock%20bullet%20(generic)_lotgb","p":14,"h":1,"n":"Big Rock Bullet"},{"c":2,"s":7,"id":6730,"u":"bitter_lotgb","p":18,"h":1,"n":"Bitter"},{"c":2,"s":7,"id":6731,"u":"blast%20foot%20(generic)_lotgb","p":73,"h":1,"n":"Blast Foot"},{"c":2,"s":7,"id":6732,"u":"blindpepper%20bolt_lotgb","p":14,"h":1,"n":"Blindpepper Bolt"},{"c":2,"s":7,"id":6733,"u":"blocks_lotgb","p":58,"h":1,"n":"Blocks"},{"c":2,"s":7,"id":6734,"u":"bloodthirsty_lotgb","p":42,"h":1,"n":"Bloodthirsty"},{"c":2,"s":7,"id":6735,"u":"brewer's%20regret%20(generic)_lotgb","p":46,"h":1,"n":"Brewer's Regret"},{"c":2,"s":7,"id":6736,"u":"brilliant%20rapier_lotgb","p":10,"h":1,"n":"Brilliant Rapier"},{"c":2,"s":7,"id":6737,"u":"brooch%20of%20inspiration%20(generic)_lotgb","p":110,"h":1,"n":"Brooch Of Inspiration"},{"c":2,"s":7,"id":6738,"u":"burning%20badger%20guts%20snare_lotgb","p":26,"h":1,"n":"Burning Badger Guts Snare"},{"c":2,"s":7,"id":6739,"u":"burnished%20plating_lotgb","p":104,"h":1,"n":"Burnished Plating"},{"c":2,"s":7,"id":6740,"u":"called_lotgb","p":88,"h":1,"n":"Called"},{"c":2,"s":7,"id":6741,"u":"chair%20storage_lotgb","p":71,"h":1,"n":"Chair Storage"},{"c":2,"s":7,"id":6742,"u":"chopping%20evisceration%20snare_lotgb","p":14,"h":1,"n":"Chopping Evisceration Snare"},{"c":2,"s":7,"id":6743,"u":"clay_lotgb","p":58,"h":1,"n":"Clay"},{"c":2,"s":7,"id":6744,"u":"clockwork%20heels_lotgb","p":22,"h":1,"n":"Clockwork Heels"},{"c":2,"s":7,"id":6745,"u":"clockwork%20macuahuitl_lotgb","p":22,"h":1,"n":"Clockwork Macuahuitl"},{"c":2,"s":7,"id":6746,"u":"clockwork%20spider%20bomb_lotgb","p":22,"h":1,"n":"Clockwork Spider Bomb"},{"c":2,"s":7,"id":6747,"u":"coin%20of%20comfort_lotgb","p":26,"h":1,"n":"Coin Of Comfort"},{"c":2,"s":7,"id":6748,"u":"cold%20comfort%20(generic)_lotgb","p":18,"h":1,"n":"Cold Comfort"},{"c":2,"s":7,"id":6749,"u":"crown%20of%20insight_lotgb","p":38,"h":1,"n":"Crown Of Insight"},{"c":2,"s":7,"id":6750,"u":"crown%20of%20the%20fire%20eater%20(generic)_lotgb","p":110,"h":1,"n":"Crown Of The Fire Eater"},{"c":2,"s":7,"id":6751,"u":"crushing%20(generic)_lotgb","p":42,"h":1,"n":"Crushing"},{"c":2,"s":7,"id":6752,"u":"cursebreak%20bulwark_lotgb","p":18,"h":1,"n":"Cursebreak Bulwark"},{"c":2,"s":7,"id":6753,"u":"deadweight%20snare_lotgb","p":14,"h":1,"n":"Deadweight Snare"},{"c":2,"s":7,"id":6754,"u":"deathless_lotgb","p":10,"h":1,"n":"Deathless"},{"c":2,"s":7,"id":6755,"u":"dinosaur%20boots%20(generic)_lotgb","p":42,"h":1,"n":"Dinosaur Boots"},{"c":2,"s":7,"id":6756,"u":"diving%20suit_lotgb","p":19,"h":1,"n":"Diving Suit"},{"c":2,"s":7,"id":6757,"u":"djezet%20(generic)_lotgb","p":97,"h":1,"n":"Djezet"},{"c":2,"s":7,"id":6758,"u":"djezet%20armor%20(generic)_lotgb","p":98,"h":1,"n":"Djezet Armor"},{"c":2,"s":7,"id":6759,"u":"djezet%20dose_lotgb","p":98,"h":1,"n":"Djezet Dose"},{"c":2,"s":7,"id":6760,"u":"djezet%20shield%20(generic)_lotgb","p":98,"h":1,"n":"Djezet Shield"},{"c":2,"s":7,"id":6761,"u":"djezet%20weapon%20(generic)_lotgb","p":98,"h":1,"n":"Djezet Weapon"},{"c":2,"s":7,"id":6762,"u":"doll%20(generic)_lotgb","p":58,"h":1,"n":"Doll"},{"c":2,"s":7,"id":6763,"u":"dragon's%20blood%20pudding%20(generic)_lotgb","p":46,"h":1,"n":"Dragon's Blood Pudding"},{"c":2,"s":7,"id":6764,"u":"dragon's%20breath%20(generic)_lotgb","p":88,"h":1,"n":"Dragon's Breath"},{"c":2,"s":7,"id":6765,"u":"dragon's%20crest_lotgb","p":104,"h":1,"n":"Dragon's Crest"},{"c":2,"s":7,"id":6766,"u":"dragonfly%20potion_lotgb","p":26,"h":1,"n":"Dragonfly Potion"},{"c":2,"s":7,"id":6767,"u":"dread%20(generic)_lotgb","p":14,"h":1,"n":"Dread"},{"c":2,"s":7,"id":6768,"u":"drum%20of%20upheaval_lotgb","p":30,"h":1,"n":"Drum Of Upheaval"},{"c":2,"s":7,"id":6769,"u":"duelist's%20beacon_lotgb","p":10,"h":1,"n":"Duelist's Beacon"},{"c":2,"s":7,"id":6770,"u":"dweomerweave%20robe_lotgb","p":50,"h":1,"n":"Dweomerweave Robe"},{"c":2,"s":7,"id":6771,"u":"encompassing%20lockpick_lotgb","p":10,"h":1,"n":"Encompassing Lockpick"},{"c":2,"s":7,"id":6772,"u":"energizing_lotgb","p":10,"h":1,"n":"Energizing"},{"c":2,"s":7,"id":6773,"u":"energy%20robe%20(generic)_lotgb","p":50,"h":1,"n":"Energy Robe"},{"c":2,"s":7,"id":6774,"u":"enfilading%20arrow_lotgb","p":14,"h":1,"n":"Enfilading Arrow"},{"c":2,"s":7,"id":6775,"u":"enhanced%20hearing%20aids_lotgb","p":68,"h":1,"n":"Enhanced Hearing Aids"},{"c":2,"s":7,"id":6776,"u":"enveloping%20light%20(generic)_lotgb","p":38,"h":1,"n":"Enveloping Light"},{"c":2,"s":7,"id":6777,"u":"envenomed%20snare_lotgb","p":15,"h":1,"n":"Envenomed Snare"},{"c":2,"s":7,"id":6778,"u":"experimental%20clothing_lotgb","p":50,"h":1,"n":"Experimental Clothing"},{"c":2,"s":7,"id":6779,"u":"eye%20of%20the%20unseen%20(generic)_lotgb","p":73,"h":1,"n":"Eye Of The Unseen"},{"c":2,"s":7,"id":6780,"u":"fake%20blood%20pack_lotgb","p":92,"h":1,"n":"Fake Blood Pack"},{"c":2,"s":7,"id":6781,"u":"fanged%20(generic)_lotgb","p":106,"h":1,"n":"Fanged"},{"c":2,"s":7,"id":6782,"u":"fire%20and%20iceberg%20(generic)_lotgb","p":46,"h":1,"n":"Fire And Iceberg"},{"c":2,"s":7,"id":6783,"u":"fleshgem%20(generic)_lotgb","p":110,"h":1,"n":"Fleshgem"},{"c":2,"s":7,"id":6784,"u":"folding%20boat%20(generic)_lotgb","p":76,"h":1,"n":"Folding Boat"},{"c":2,"s":7,"id":6785,"u":"folding%20ladder_lotgb","p":92,"h":1,"n":"Folding Ladder"},{"c":2,"s":7,"id":6786,"u":"follypops%20(generic)_lotgb","p":47,"h":1,"n":"Follypops"},{"c":2,"s":7,"id":6787,"u":"games%20(generic)_lotgb","p":58,"h":1,"n":"Games"},{"c":2,"s":7,"id":6788,"u":"glittering%20snare_lotgb","p":26,"h":1,"n":"Glittering Snare"},{"c":2,"s":7,"id":6789,"u":"griffon%20cane_lotgb","p":67,"h":1,"n":"Griffon Cane"},{"c":2,"s":7,"id":6790,"u":"harmonic%20hauberk_lotgb","p":84,"h":1,"n":"Harmonic Hauberk"},{"c":2,"s":7,"id":6791,"u":"hauling%20(generic)_lotgb","p":80,"h":1,"n":"Hauling"},{"c":2,"s":7,"id":6792,"u":"hopeful_lotgb","p":84,"h":1,"n":"Hopeful"},{"c":2,"s":7,"id":6793,"u":"horned%20hand%20rests_lotgb","p":72,"h":1,"n":"Horned Hand Rests"},{"c":2,"s":7,"id":6794,"u":"hosteling%20statuette_lotgb","p":55,"h":1,"n":"Hosteling Statuette"},{"c":2,"s":7,"id":6795,"u":"immovable%20arm_lotgb","p":73,"h":1,"n":"Immovable Arm"},{"c":2,"s":7,"id":6796,"u":"implacable_lotgb","p":80,"h":1,"n":"Implacable"},{"c":2,"s":7,"id":6797,"u":"impossible%20cake%20(generic)_lotgb","p":46,"h":1,"n":"Impossible Cake"},{"c":2,"s":7,"id":6798,"u":"impulse%20control_lotgb","p":71,"h":1,"n":"Impulse Control"},{"c":2,"s":7,"id":6799,"u":"inubrix%20(generic)_lotgb","p":98,"h":1,"n":"Inubrix"},{"c":2,"s":7,"id":6800,"u":"inubrix%20armor%20(generic)_lotgb","p":98,"h":1,"n":"Inubrix Armor"},{"c":2,"s":7,"id":6801,"u":"inubrix%20shield%20(generic)_lotgb","p":99,"h":1,"n":"Inubrix Shield"},{"c":2,"s":7,"id":6802,"u":"inubrix%20weapon%20(generic)_lotgb","p":99,"h":1,"n":"Inubrix Weapon"},{"c":2,"s":7,"id":6803,"u":"juxtaposition%20ammunition_lotgb","p":19,"h":1,"n":"Juxtaposition Ammunition"},{"c":2,"s":7,"id":6804,"u":"kite_lotgb","p":58,"h":1,"n":"Kite"},{"c":2,"s":7,"id":6805,"u":"kraken's%20guard_lotgb","p":38,"h":1,"n":"Kraken's Guard"},{"c":2,"s":7,"id":6806,"u":"lady's%20knife_lotgb","p":110,"h":1,"n":"Lady's Knife"},{"c":2,"s":7,"id":6807,"u":"maestro's%20chair_lotgb","p":70,"h":1,"n":"Maestro's Chair"},{"c":2,"s":7,"id":6808,"u":"magical%20hearing%20aids_lotgb","p":68,"h":1,"n":"Magical Hearing Aids"},{"c":2,"s":7,"id":6809,"u":"magnetic%20construction%20set_lotgb","p":58,"h":1,"n":"Magnetic Construction Set"},{"c":2,"s":7,"id":6810,"u":"magnifying%20glass%20of%20elucidation_lotgb","p":110,"h":1,"n":"Magnifying Glass Of Elucidation"},{"c":2,"s":7,"id":6811,"u":"malleable%20mixture%20(generic)_lotgb","p":19,"h":1,"n":"Malleable Mixture"},{"c":2,"s":7,"id":6812,"u":"marbles_lotgb","p":58,"h":1,"n":"Marbles"},{"c":2,"s":7,"id":6813,"u":"mask%20(generic)_lotgb","p":92,"h":1,"n":"Mask"},{"c":2,"s":7,"id":6814,"u":"memory%20palace_lotgb","p":80,"h":1,"n":"Memory Palace"},{"c":2,"s":7,"id":6815,"u":"minotaur%20chair_lotgb","p":71,"h":1,"n":"Minotaur Chair"},{"c":2,"s":7,"id":6816,"u":"mirror%20of%20sleeping%20vigil_lotgb","p":111,"h":1,"n":"Mirror Of Sleeping Vigil"},{"c":2,"s":7,"id":6817,"u":"mirror%20robe_lotgb","p":50,"h":1,"n":"Mirror Robe"},{"c":2,"s":7,"id":6818,"u":"mirror-ball%20snare_lotgb","p":26,"h":1,"n":"Mirror-ball Snare"},{"c":2,"s":7,"id":6819,"u":"misdirecting%20haversack_lotgb","p":10,"h":1,"n":"Misdirecting Haversack"},{"c":2,"s":7,"id":6820,"u":"mudrock%20snare_lotgb","p":15,"h":1,"n":"Mudrock Snare"},{"c":2,"s":7,"id":6821,"u":"noqual%20(generic)_lotgb","p":99,"h":1,"n":"Noqual"},{"c":2,"s":7,"id":6822,"u":"noqual%20armor%20(generic)_lotgb","p":100,"h":1,"n":"Noqual Armor"},{"c":2,"s":7,"id":6823,"u":"noqual%20shield%20(generic)_lotgb","p":100,"h":1,"n":"Noqual Shield"},{"c":2,"s":7,"id":6824,"u":"noqual%20weapon%20(generic)_lotgb","p":100,"h":1,"n":"Noqual Weapon"},{"c":2,"s":7,"id":6825,"u":"paint%20set_lotgb","p":59,"h":1,"n":"Paint Set"},{"c":2,"s":7,"id":6826,"u":"paired%20(generic)_lotgb","p":88,"h":1,"n":"Paired"},{"c":2,"s":7,"id":6827,"u":"periscopic%20viewfinder_lotgb","p":22,"h":1,"n":"Periscopic Viewfinder"},{"c":2,"s":7,"id":6828,"u":"pickpocket's%20tailoring_lotgb","p":50,"h":1,"n":"Pickpocket's Tailoring"},{"c":2,"s":7,"id":6829,"u":"pillow%20shield_lotgb","p":42,"h":1,"n":"Pillow Shield"},{"c":2,"s":7,"id":6830,"u":"pinwheel_lotgb","p":59,"h":1,"n":"Pinwheel"},{"c":2,"s":7,"id":6831,"u":"pocket%20gala_lotgb","p":84,"h":1,"n":"Pocket Gala"},{"c":2,"s":7,"id":6832,"u":"popdust_lotgb","p":59,"h":1,"n":"Popdust"},{"c":2,"s":7,"id":6833,"u":"portable%20gaming%20hall_lotgb","p":26,"h":1,"n":"Portable Gaming Hall"},{"c":2,"s":7,"id":6834,"u":"portable%20ram%20(generic)_lotgb","p":92,"h":1,"n":"Portable Ram"},{"c":2,"s":7,"id":6835,"u":"powder_lotgb","p":92,"h":1,"n":"Powder"},{"c":2,"s":7,"id":6836,"u":"presentable%20(generic)_lotgb","p":89,"h":1,"n":"Presentable"},{"c":2,"s":7,"id":6837,"u":"prismatic%20plate_lotgb","p":85,"h":1,"n":"Prismatic Plate"},{"c":2,"s":7,"id":6838,"u":"private%20workshop_lotgb","p":30,"h":1,"n":"Private Workshop"},{"c":2,"s":7,"id":6839,"u":"probing%20cane_lotgb","p":67,"h":1,"n":"Probing Cane"},{"c":2,"s":7,"id":6840,"u":"psychic%20brigandine_lotgb","p":42,"h":1,"n":"Psychic Brigandine"},{"c":2,"s":7,"id":6841,"u":"pummeling%20snare_lotgb","p":43,"h":1,"n":"Pummeling Snare"},{"c":2,"s":7,"id":6842,"u":"puzzle%20box%20(generic)_lotgb","p":59,"h":1,"n":"Puzzle Box"},{"c":2,"s":7,"id":6843,"u":"queasy%20lantern%20(generic)_lotgb","p":39,"h":1,"n":"Queasy Lantern"},{"c":2,"s":7,"id":6844,"u":"quick%20runner's%20shirt%20(generic)_lotgb","p":43,"h":1,"n":"Quick Runner's Shirt"},{"c":2,"s":7,"id":6845,"u":"quick%20wig_lotgb","p":50,"h":1,"n":"Quick Wig"},{"c":2,"s":7,"id":6846,"u":"raining%20knives%20snare_lotgb","p":43,"h":1,"n":"Raining Knives Snare"},{"c":2,"s":7,"id":6847,"u":"rampart%20shield_lotgb","p":30,"h":1,"n":"Rampart Shield"},{"c":2,"s":7,"id":6848,"u":"reading%20ring%20(generic)_lotgb","p":69,"h":1,"n":"Reading Ring"},{"c":2,"s":7,"id":6849,"u":"recovery%20bladder_lotgb","p":19,"h":1,"n":"Recovery Bladder"},{"c":2,"s":7,"id":6850,"u":"reflexive%20tattoo_lotgb","p":38,"h":1,"n":"Reflexive Tattoo"},{"c":2,"s":7,"id":6851,"u":"reinforced%20surcoat_lotgb","p":104,"h":1,"n":"Reinforced Surcoat"},{"c":2,"s":7,"id":6852,"u":"reinforced%20wheels_lotgb","p":72,"h":1,"n":"Reinforced Wheels"},{"c":2,"s":7,"id":6853,"u":"rending%20snare_lotgb","p":15,"h":1,"n":"Rending Snare"},{"c":2,"s":7,"id":6854,"u":"rhino%20shot_lotgb","p":30,"h":1,"n":"Rhino Shot"},{"c":2,"s":7,"id":6855,"u":"rock%20ripper%20snare_lotgb","p":43,"h":1,"n":"Rock Ripper Snare"},{"c":2,"s":7,"id":6856,"u":"sarkorian%20god-caller%20garb_lotgb","p":80,"h":1,"n":"Sarkorian God-caller Garb"},{"c":2,"s":7,"id":6857,"u":"scarab%20cuirass_lotgb","p":10,"h":1,"n":"Scarab Cuirass"},{"c":2,"s":7,"id":6858,"u":"server's%20stew_lotgb","p":47,"h":1,"n":"Server's Stew"},{"c":2,"s":7,"id":6859,"u":"shade%20hat_lotgb","p":51,"h":1,"n":"Shade Hat"},{"c":2,"s":7,"id":6860,"u":"shield%20augmentation_lotgb","p":104,"h":1,"n":"Shield Augmentation"},{"c":2,"s":7,"id":6861,"u":"shifter%20prosthesis_lotgb","p":73,"h":1,"n":"Shifter Prosthesis"},{"c":2,"s":7,"id":6862,"u":"siccatite%20(generic)_lotgb","p":100,"h":1,"n":"Siccatite"},{"c":2,"s":7,"id":6863,"u":"siccatite%20armor%20(generic)_lotgb","p":100,"h":1,"n":"Siccatite Armor"},{"c":2,"s":7,"id":6864,"u":"siccatite%20shield%20(generic)_lotgb","p":101,"h":1,"n":"Siccatite Shield"},{"c":2,"s":7,"id":6865,"u":"siccatite%20weapon%20(generic)_lotgb","p":101,"h":1,"n":"Siccatite Weapon"},{"c":2,"s":7,"id":6866,"u":"silencing%20ammunition_lotgb","p":10,"h":1,"n":"Silencing Ammunition"},{"c":2,"s":7,"id":6867,"u":"silhouette%20cloak_lotgb","p":43,"h":1,"n":"Silhouette Cloak"},{"c":2,"s":7,"id":6868,"u":"silkspinner's%20shield_lotgb","p":11,"h":1,"n":"Silkspinner's Shield"},{"c":2,"s":7,"id":6869,"u":"singularity%20ammunition_lotgb","p":43,"h":1,"n":"Singularity Ammunition"},{"c":2,"s":7,"id":6870,"u":"sky%20serpent%20bolt_lotgb","p":81,"h":1,"n":"Sky Serpent Bolt"},{"c":2,"s":7,"id":6871,"u":"skyrider%20sword%20(generic)_lotgb","p":106,"h":1,"n":"Skyrider Sword"},{"c":2,"s":7,"id":6872,"u":"smoked%20goggles_lotgb","p":92,"h":1,"n":"Smoked Goggles"},{"c":2,"s":7,"id":6873,"u":"snagging_lotgb","p":89,"h":1,"n":"Snagging"},{"c":2,"s":7,"id":6874,"u":"sneezing%20powder_lotgb","p":59,"h":1,"n":"Sneezing Powder"},{"c":2,"s":7,"id":6875,"u":"soft-landing_lotgb","p":89,"h":1,"n":"Soft-landing"},{"c":2,"s":7,"id":6876,"u":"spell-bastion_lotgb","p":89,"h":1,"n":"Spell-bastion"},{"c":2,"s":7,"id":6877,"u":"splint_lotgb","p":69,"h":1,"n":"Splint"},{"c":2,"s":7,"id":6878,"u":"spring-loaded%20net%20launcher_lotgb","p":23,"h":1,"n":"Spring-loaded Net Launcher"},{"c":2,"s":7,"id":6879,"u":"staff%20of%20final%20rest_lotgb","p":30,"h":1,"n":"Staff Of Final Rest"},{"c":2,"s":7,"id":6880,"u":"staff%20of%20the%20dreamlands%20(generic)_lotgb","p":111,"h":1,"n":"Staff Of The Dreamlands"},{"c":2,"s":7,"id":6881,"u":"stanching%20(generic)_lotgb","p":39,"h":1,"n":"Stanching"},{"c":2,"s":7,"id":6882,"u":"static%20snare_lotgb","p":43,"h":1,"n":"Static Snare"},{"c":2,"s":7,"id":6883,"u":"stone%20circle%20(generic)_lotgb","p":39,"h":1,"n":"Stone Circle"},{"c":2,"s":7,"id":6884,"u":"stonethroat%20ammunition_lotgb","p":11,"h":1,"n":"Stonethroat Ammunition"},{"c":2,"s":7,"id":6885,"u":"sulfur%20bomb%20(generic)_lotgb","p":15,"h":1,"n":"Sulfur Bomb"},{"c":2,"s":7,"id":6886,"u":"support_lotgb","p":69,"h":1,"n":"Support"},{"c":2,"s":7,"id":6887,"u":"swarmform%20collar_lotgb","p":55,"h":1,"n":"Swarmform Collar"},{"c":2,"s":7,"id":6888,"u":"swarmsuit%20(generic)_lotgb","p":93,"h":1,"n":"Swarmsuit"},{"c":2,"s":7,"id":6889,"u":"tar%20rocket%20snare_lotgb","p":27,"h":1,"n":"Tar Rocket Snare"},{"c":2,"s":7,"id":6890,"u":"tear-away%20clothing_lotgb","p":93,"h":1,"n":"Tear-away Clothing"},{"c":2,"s":7,"id":6891,"u":"thrice-fried%20mudwings_lotgb","p":47,"h":1,"n":"Thrice-fried Mudwings"},{"c":2,"s":7,"id":6892,"u":"toadskin%20salve%20(generic)_lotgb","p":27,"h":1,"n":"Toadskin Salve"},{"c":2,"s":7,"id":6893,"u":"toy%20carriage%20(generic)_lotgb","p":59,"h":1,"n":"Toy Carriage"},{"c":2,"s":7,"id":6894,"u":"transposition%20ammunition%20(generic)_lotgb","p":31,"h":1,"n":"Transposition Ammunition"},{"c":2,"s":7,"id":6895,"u":"twining%20chains_lotgb","p":104,"h":1,"n":"Twining Chains"},{"c":2,"s":7,"id":6896,"u":"vampiric%20scythe_lotgb","p":31,"h":1,"n":"Vampiric Scythe"},{"c":2,"s":7,"id":6897,"u":"vexing%20vapor%20(generic)_lotgb","p":27,"h":1,"n":"Vexing Vapor"},{"c":2,"s":7,"id":6898,"u":"vine%20of%20roses_lotgb","p":85,"h":1,"n":"Vine Of Roses"},{"c":2,"s":7,"id":6899,"u":"waffle%20iron%20(generic)_lotgb","p":93,"h":1,"n":"Waffle Iron"},{"c":2,"s":7,"id":6900,"u":"wand%20of%20fey%20flames_lotgb","p":81,"h":1,"n":"Wand Of Fey Flames"},{"c":2,"s":7,"id":6901,"u":"wand%20of%20spiritual%20warfare%20(generic)_lotgb","p":11,"h":1,"n":"Wand Of Spiritual Warfare"},{"c":2,"s":7,"id":6902,"u":"wand%20of%20thundering%20echoes%20(generic)_lotgb","p":85,"h":1,"n":"Wand Of Thundering Echoes"},{"c":2,"s":7,"id":6903,"u":"wardrobe%20stone%20(generic)_lotgb","p":51,"h":1,"n":"Wardrobe Stone"},{"c":2,"s":7,"id":6904,"u":"waverider%20barding_lotgb","p":55,"h":1,"n":"Waverider Barding"},{"c":2,"s":7,"id":6905,"u":"wet%20shock%20snare_lotgb","p":27,"h":1,"n":"Wet Shock Snare"},{"c":2,"s":7,"id":6906,"u":"wheel%20blades_lotgb","p":72,"h":1,"n":"Wheel Blades"},{"c":2,"s":7,"id":6907,"u":"wheel%20spikes_lotgb","p":72,"h":1,"n":"Wheel Spikes"},{"c":2,"s":7,"id":6908,"u":"wheelbarrow_lotgb","p":93,"h":1,"n":"Wheelbarrow"},{"c":2,"s":7,"id":6909,"u":"wig%20of%20holding_lotgb","p":51,"h":1,"n":"Wig Of Holding"},{"c":2,"s":7,"id":6910,"u":"wind-catcher%20(generic)_lotgb","p":89,"h":1,"n":"Wind-catcher"},{"c":2,"s":7,"id":6911,"u":"wizard's%20tower_lotgb","p":19,"h":1,"n":"Wizard's Tower"},{"c":2,"s":7,"id":6912,"u":"wovenwood%20shield%20(generic)_lotgb","p":81,"h":1,"n":"Wovenwood Shield"},{"c":2,"s":48,"id":6913,"u":"archaic%20wayfinder_lowg","p":17,"h":1,"n":"Archaic Wayfinder"},{"c":2,"s":48,"id":6914,"u":"blessed%20tattoo_lowg","p":92,"h":1,"n":"Blessed Tattoo"},{"c":2,"s":48,"id":6915,"u":"final%20blade_lowg","p":126,"h":1,"n":"Final Blade"},{"c":2,"s":48,"id":6916,"u":"golden%20legion%20epaulet_lowg","p":124,"h":1,"n":"Golden Legion Epaulet"},{"c":2,"s":48,"id":6917,"u":"jellyfish%20lamp_lowg","p":68,"h":1,"n":"Jellyfish Lamp"},{"c":2,"s":48,"id":6918,"u":"sun%20orchid%20elixir_lowg","p":56,"h":1,"n":"Sun Orchid Elixir"},{"c":2,"s":48,"id":6919,"u":"swim%20fins_lowg","p":69,"h":1,"n":"Swim Fins"},{"c":2,"s":37,"id":6920,"u":"granny's%20hedge%20trimmer_ltiba","p":10,"h":1,"n":"Granny's Hedge Trimmer"},{"c":2,"s":38,"id":6921,"u":"flaying%20knife_sli","p":60,"h":1,"n":"Flaying Knife"},{"c":2,"s":38,"id":6922,"u":"gluttonous%20spear_sli","p":60,"h":1,"n":"Gluttonous Spear"},{"c":2,"s":38,"id":6923,"u":"oily%20button_sli","p":60,"h":1,"n":"Oily Button"},{"c":2,"s":38,"id":6924,"u":"putrescent%20glob_sli","p":61,"h":1,"n":"Putrescent Glob"},{"c":2,"s":38,"id":6925,"u":"sixfingers%20elixir%20(generic)_sli","p":61,"h":1,"n":"Sixfingers Elixir"},{"c":2,"s":38,"id":6926,"u":"slime%20whip_sli","p":61,"h":1,"n":"Slime Whip"},{"c":2,"s":38,"id":6927,"u":"slippery%20ribbon_sli","p":61,"h":1,"n":"Slippery Ribbon"},{"c":2,"s":38,"id":6928,"u":"wand%20of%20noisome%20acid%20(generic)_sli","p":61,"h":1,"n":"Wand Of Noisome Acid"},{"c":2,"s":38,"id":6929,"u":"wand%20of%20teeming%20ghosts%20(generic)_sli","p":61,"h":1,"n":"Wand Of Teeming Ghosts"},{"c":2,"s":49,"id":6930,"u":"anointed%20waterskin_som","p":179,"h":1,"n":"Anointed Waterskin"},{"c":2,"s":49,"id":6931,"u":"apotropaic%20fulu_som","p":159,"h":1,"n":"Apotropaic Fulu"},{"c":2,"s":49,"id":6932,"u":"archivist's%20gaze_som","p":179,"h":1,"n":"Archivist's Gaze"},{"c":2,"s":49,"id":6933,"u":"auspicious%20scepter_som","p":179,"h":1,"n":"Auspicious Scepter"},{"c":2,"s":49,"id":6934,"u":"backfire%20mantle%20(generic)_som","p":179,"h":1,"n":"Backfire Mantle"},{"c":2,"s":49,"id":6935,"u":"bane_som","p":180,"h":1,"n":"Bane"},{"c":2,"s":49,"id":6936,"u":"bestiary%20of%20metamorphosis_som","p":162,"h":1,"n":"Bestiary Of Metamorphosis"},{"c":2,"s":49,"id":6937,"u":"binding%20coil%20(generic)_som","p":173,"h":1,"n":"Binding Coil"},{"c":2,"s":49,"id":6938,"u":"blade%20of%20four%20energies%20(generic)_som","p":180,"h":1,"n":"Blade Of Four Energies"},{"c":2,"s":49,"id":6939,"u":"book%20of%20lingering%20blaze_som","p":162,"h":1,"n":"Book Of Lingering Blaze"},{"c":2,"s":49,"id":6940,"u":"brilliant%20(generic)_som","p":180,"h":1,"n":"Brilliant"},{"c":2,"s":49,"id":6941,"u":"burr%20shield_som","p":181,"h":1,"n":"Burr Shield"},{"c":2,"s":49,"id":6942,"u":"buzzsaw%20axe%20(generic)_som","p":181,"h":1,"n":"Buzzsaw Axe"},{"c":2,"s":49,"id":6943,"u":"cantrip%20deck%20(generic)_som","p":181,"h":1,"n":"Cantrip Deck"},{"c":2,"s":49,"id":6944,"u":"chatterer%20of%20follies_som","p":181,"h":1,"n":"Chatterer Of Follies"},{"c":2,"s":49,"id":6945,"u":"cloak%20of%20feline%20rest_som","p":182,"h":1,"n":"Cloak Of Feline Rest"},{"c":2,"s":49,"id":6946,"u":"codebreaker's%20parchment%20(generic)_som","p":182,"h":1,"n":"Codebreaker's Parchment"},{"c":2,"s":49,"id":6947,"u":"codex%20of%20unimpeded%20sight%20(generic)_som","p":162,"h":1,"n":"Codex Of Unimpeded Sight"},{"c":2,"s":49,"id":6948,"u":"collar%20of%20the%20eternal%20bond_som","p":182,"h":1,"n":"Collar Of The Eternal Bond"},{"c":2,"s":49,"id":6949,"u":"conflagration%20club_som","p":182,"h":1,"n":"Conflagration Club"},{"c":2,"s":49,"id":6950,"u":"dazzling%20rosary%20(generic)_som","p":168,"h":1,"n":"Dazzling Rosary"},{"c":2,"s":49,"id":6951,"u":"deck%20of%20illusions_som","p":182,"h":1,"n":"Deck Of Illusions"},{"c":2,"s":49,"id":6952,"u":"deck%20of%20mischief_som","p":183,"h":1,"n":"Deck Of Mischief"},{"c":2,"s":49,"id":6953,"u":"detect%20anathema%20fulu_som","p":159,"h":1,"n":"Detect Anathema Fulu"},{"c":2,"s":49,"id":6954,"u":"dimensional%20knot_som","p":168,"h":1,"n":"Dimensional Knot"},{"c":2,"s":49,"id":6955,"u":"dispersing%20bullet_som","p":173,"h":1,"n":"Dispersing Bullet"},{"c":2,"s":49,"id":6956,"u":"dragonbone%20arrowhead_som","p":173,"h":1,"n":"Dragonbone Arrowhead"},{"c":2,"s":49,"id":6957,"u":"emberheart_som","p":184,"h":1,"n":"Emberheart"},{"c":2,"s":49,"id":6958,"u":"endless%20grimoire%20(generic)_som","p":162,"h":1,"n":"Endless Grimoire"},{"c":2,"s":49,"id":6959,"u":"extending%20(generic)_som","p":184,"h":1,"n":"Extending"},{"c":2,"s":49,"id":6960,"u":"eye%20of%20enlightenment_som","p":173,"h":1,"n":"Eye Of Enlightenment"},{"c":2,"s":49,"id":6961,"u":"familiar%20tattoo_som","p":164,"h":1,"n":"Familiar Tattoo"},{"c":2,"s":49,"id":6962,"u":"firestarter%20pellets%20(generic)_som","p":168,"h":1,"n":"Firestarter Pellets"},{"c":2,"s":49,"id":6963,"u":"five-feather%20wreath%20(generic)_som","p":170,"h":1,"n":"Five-feather Wreath"},{"c":2,"s":49,"id":6964,"u":"flaming%20star%20(generic)_som","p":170,"h":1,"n":"Flaming Star"},{"c":2,"s":49,"id":6965,"u":"flask%20of%20fellowship_som","p":184,"h":1,"n":"Flask Of Fellowship"},{"c":2,"s":49,"id":6966,"u":"force%20tiles_som","p":168,"h":1,"n":"Force Tiles"},{"c":2,"s":49,"id":6967,"u":"fu%20water_som","p":161,"h":1,"n":"Fu Water"},{"c":2,"s":49,"id":6968,"u":"fulu%20compendium_som","p":161,"h":1,"n":"Fulu Compendium"},{"c":2,"s":49,"id":6969,"u":"fulu%20of%20fire%20suppression_som","p":159,"h":1,"n":"Fulu Of Fire Suppression"},{"c":2,"s":49,"id":6970,"u":"fulu%20of%20flood%20suppression_som","p":159,"h":1,"n":"Fulu Of Flood Suppression"},{"c":2,"s":49,"id":6971,"u":"fulu%20of%20the%20drunken%20monkey_som","p":159,"h":1,"n":"Fulu Of The Drunken Monkey"},{"c":2,"s":49,"id":6972,"u":"fulu%20of%20the%20stoic%20ox_som","p":159,"h":1,"n":"Fulu Of The Stoic Ox"},{"c":2,"s":49,"id":6973,"u":"fulus%20of%20concealment_som","p":159,"h":1,"n":"Fulus Of Concealment"},{"c":2,"s":49,"id":6974,"u":"ghostbane%20fulu_som","p":160,"h":1,"n":"Ghostbane Fulu"},{"c":2,"s":49,"id":6975,"u":"ghostly%20portal%20paint_som","p":173,"h":1,"n":"Ghostly Portal Paint"},{"c":2,"s":49,"id":6976,"u":"glasses%20of%20sociability_som","p":185,"h":1,"n":"Glasses Of Sociability"},{"c":2,"s":49,"id":6977,"u":"gloaming%20shard_som","p":185,"h":1,"n":"Gloaming Shard"},{"c":2,"s":49,"id":6978,"u":"golden%20chrysalis_som","p":174,"h":1,"n":"Golden Chrysalis"},{"c":2,"s":49,"id":6979,"u":"grim%20sandglass%20(generic)_som","p":171,"h":1,"n":"Grim Sandglass"},{"c":2,"s":49,"id":6980,"u":"guiding%20star_som","p":185,"h":1,"n":"Guiding Star"},{"c":2,"s":49,"id":6981,"u":"hat%20of%20many%20minds_som","p":185,"h":1,"n":"Hat Of Many Minds"},{"c":2,"s":49,"id":6982,"u":"healer's%20gel%20(generic)_som","p":168,"h":1,"n":"Healer's Gel"},{"c":2,"s":49,"id":6983,"u":"hundred-moth%20caress_som","p":185,"h":1,"n":"Hundred-moth Caress"},{"c":2,"s":49,"id":6984,"u":"impactful%20(generic)_som","p":185,"h":1,"n":"Impactful"},{"c":2,"s":49,"id":6985,"u":"instructions%20for%20lasting%20agony_som","p":163,"h":1,"n":"Instructions For Lasting Agony"},{"c":2,"s":49,"id":6986,"u":"invisible%20chain%20shirt_som","p":186,"h":1,"n":"Invisible Chain Shirt"},{"c":2,"s":49,"id":6987,"u":"jar%20of%20shifting%20sands_som","p":186,"h":1,"n":"Jar Of Shifting Sands"},{"c":2,"s":49,"id":6988,"u":"keymaking%20tools_som","p":186,"h":1,"n":"Keymaking Tools"},{"c":2,"s":49,"id":6989,"u":"lini's%20leafstick_som","p":167,"h":1,"n":"Lini's Leafstick"},{"c":2,"s":49,"id":6990,"u":"lion%20claw_som","p":174,"h":1,"n":"Lion Claw"},{"c":2,"s":49,"id":6991,"u":"magical%20lock%20fulu_som","p":160,"h":1,"n":"Magical Lock Fulu"},{"c":2,"s":49,"id":6992,"u":"mask%20of%20allure_som","p":186,"h":1,"n":"Mask Of Allure"},{"c":2,"s":49,"id":6993,"u":"matchmaker%20fulu_som","p":160,"h":1,"n":"Matchmaker Fulu"},{"c":2,"s":49,"id":6994,"u":"mercurial%20mantle_som","p":187,"h":1,"n":"Mercurial Mantle"},{"c":2,"s":49,"id":6995,"u":"north%20wind's%20night%20verse_som","p":187,"h":1,"n":"North Wind's Night Verse"},{"c":2,"s":49,"id":6996,"u":"noxious%20incense%20(generic)_som","p":169,"h":1,"n":"Noxious Incense"},{"c":2,"s":49,"id":6997,"u":"orchestral%20brooch_som","p":174,"h":1,"n":"Orchestral Brooch"},{"c":2,"s":49,"id":6998,"u":"ouroboros%20flail%20(generic)_som","p":187,"h":1,"n":"Ouroboros Flail"},{"c":2,"s":49,"id":6999,"u":"perfect%20droplet%20(generic)_som","p":171,"h":1,"n":"Perfect Droplet"},{"c":2,"s":49,"id":7000,"u":"phoenix%20flask_som","p":174,"h":1,"n":"Phoenix Flask"},{"c":2,"s":49,"id":7001,"u":"potion%20of%20grounding_som","p":174,"h":1,"n":"Potion Of Grounding"},{"c":2,"s":49,"id":7002,"u":"potion%20of%20minute%20echoes_som","p":175,"h":1,"n":"Potion Of Minute Echoes"},{"c":2,"s":49,"id":7003,"u":"potion%20of%20shared%20life_som","p":175,"h":1,"n":"Potion Of Shared Life"},{"c":2,"s":49,"id":7004,"u":"potion%20of%20stable%20form%20(generic)_som","p":175,"h":1,"n":"Potion Of Stable Form"},{"c":2,"s":49,"id":7005,"u":"rebound%20fulu_som","p":160,"h":1,"n":"Rebound Fulu"},{"c":2,"s":49,"id":7006,"u":"rebounding%20breastplate_som","p":188,"h":1,"n":"Rebounding Breastplate"},{"c":2,"s":49,"id":7007,"u":"resonating%20ammunition_som","p":175,"h":1,"n":"Resonating Ammunition"},{"c":2,"s":49,"id":7008,"u":"restful%20sleep%20fulu_som","p":160,"h":1,"n":"Restful Sleep Fulu"},{"c":2,"s":49,"id":7009,"u":"restful%20tent_som","p":188,"h":1,"n":"Restful Tent"},{"c":2,"s":49,"id":7010,"u":"retrieval%20prism%20(generic)_som","p":176,"h":1,"n":"Retrieval Prism"},{"c":2,"s":49,"id":7011,"u":"rune%20of%20sin_som","p":165,"h":1,"n":"Rune Of Sin"},{"c":2,"s":49,"id":7012,"u":"s%20ring_som","p":190,"h":1,"n":"S Ring"},{"c":2,"s":49,"id":7013,"u":"sage's%20lash_som","p":189,"h":1,"n":"Sage's Lash"},{"c":2,"s":49,"id":7014,"u":"shadow%20signet_som","p":189,"h":1,"n":"Shadow Signet"},{"c":2,"s":49,"id":7015,"u":"shimmering%20dust_som","p":169,"h":1,"n":"Shimmering Dust"},{"c":2,"s":49,"id":7016,"u":"shortbread%20spy_som","p":176,"h":1,"n":"Shortbread Spy"},{"c":2,"s":49,"id":7017,"u":"singing%20shortbow%20(generic)_som","p":189,"h":1,"n":"Singing Shortbow"},{"c":2,"s":49,"id":7018,"u":"sonic%20tuning%20mace%20(generic)_som","p":189,"h":1,"n":"Sonic Tuning Mace"},{"c":2,"s":49,"id":7019,"u":"soothing%20scents_som","p":169,"h":1,"n":"Soothing Scents"},{"c":2,"s":49,"id":7020,"u":"south%20wind's%20scorch%20song_som","p":190,"h":1,"n":"South Wind's Scorch Song"},{"c":2,"s":49,"id":7021,"u":"spellbook%20of%20redundant%20enchantment_som","p":163,"h":1,"n":"Spellbook Of Redundant Enchantment"},{"c":2,"s":49,"id":7022,"u":"spirit-sealing%20fulu%20(generic)_som","p":160,"h":1,"n":"Spirit-sealing Fulu"},{"c":2,"s":49,"id":7023,"u":"staff%20of%20nature's%20cunning%20(generic)_som","p":167,"h":1,"n":"Staff Of Nature's Cunning"},{"c":2,"s":49,"id":7024,"u":"staff%20of%20the%20desert%20winds%20(generic)_som","p":190,"h":1,"n":"Staff Of The Desert Winds"},{"c":2,"s":49,"id":7025,"u":"staff-storing%20shield%20(generic)_som","p":190,"h":1,"n":"Staff-storing Shield"},{"c":2,"s":49,"id":7026,"u":"stampede%20medallion%20(generic)_som","p":190,"h":1,"n":"Stampede Medallion"},{"c":2,"s":49,"id":7027,"u":"stormbreaker%20fulu_som","p":161,"h":1,"n":"Stormbreaker Fulu"},{"c":2,"s":49,"id":7028,"u":"stormfeather_som","p":176,"h":1,"n":"Stormfeather"},{"c":2,"s":49,"id":7029,"u":"storyteller's%20opus_som","p":163,"h":1,"n":"Storyteller's Opus"},{"c":2,"s":49,"id":7030,"u":"summoning%20handscroll_som","p":163,"h":1,"n":"Summoning Handscroll"},{"c":2,"s":49,"id":7031,"u":"thousand-blade%20thesis_som","p":191,"h":1,"n":"Thousand-blade Thesis"},{"c":2,"s":49,"id":7032,"u":"thunderbird%20tuft%20(generic)_som","p":169,"h":1,"n":"Thunderbird Tuft"},{"c":2,"s":49,"id":7033,"u":"titan's%20grasp_som","p":191,"h":1,"n":"Titan's Grasp"},{"c":2,"s":49,"id":7034,"u":"topology%20protoplasm_som","p":176,"h":1,"n":"Topology Protoplasm"},{"c":2,"s":49,"id":7035,"u":"tracking%20fulu_som","p":161,"h":1,"n":"Tracking Fulu"},{"c":2,"s":49,"id":7036,"u":"trinity%20geode%20(generic)_som","p":171,"h":1,"n":"Trinity Geode"},{"c":2,"s":49,"id":7037,"u":"true%20name%20amulet%20(generic)_som","p":247,"h":1,"n":"True Name Amulet"},{"c":2,"s":49,"id":7038,"u":"vapor%20sphere_som","p":176,"h":1,"n":"Vapor Sphere"},{"c":2,"s":49,"id":7039,"u":"venomous%20cure%20fulu_som","p":161,"h":1,"n":"Venomous Cure Fulu"},{"c":2,"s":49,"id":7040,"u":"warding%20tablets_som","p":163,"h":1,"n":"Warding Tablets"},{"c":2,"s":49,"id":7041,"u":"warding%20tattoo%20(generic)_som","p":165,"h":1,"n":"Warding Tattoo"},{"c":2,"s":49,"id":7042,"u":"waterproofing%20wax_som","p":169,"h":1,"n":"Waterproofing Wax"},{"c":2,"s":39,"id":7043,"u":"forgetful%20ink_sot1","p":75,"h":1,"n":"Forgetful Ink"},{"c":2,"s":39,"id":7044,"u":"goz%20mask%20(generic)_sot1","p":73,"h":1,"n":"Goz Mask"},{"c":2,"s":39,"id":7045,"u":"herd%20mask_sot1","p":73,"h":1,"n":"Herd Mask"},{"c":2,"s":39,"id":7046,"u":"mask%20of%20mercy_sot1","p":74,"h":1,"n":"Mask Of Mercy"},{"c":2,"s":39,"id":7047,"u":"mask%20of%20the%20cursed%20eye_sot1","p":74,"h":1,"n":"Mask Of The Cursed Eye"},{"c":2,"s":39,"id":7048,"u":"psychopomp%20mask_sot1","p":74,"h":1,"n":"Psychopomp Mask"},{"c":2,"s":39,"id":7049,"u":"rhinoceros%20mask%20(generic)_sot1","p":74,"h":1,"n":"Rhinoceros Mask"},{"c":2,"s":39,"id":7050,"u":"rhythm%20bone%20(generic)_sot1","p":76,"h":1,"n":"Rhythm Bone"},{"c":2,"s":39,"id":7051,"u":"shapespeak%20mask_sot1","p":74,"h":1,"n":"Shapespeak Mask"},{"c":2,"s":39,"id":7052,"u":"skittering%20mask%20(generic)_sot1","p":74,"h":1,"n":"Skittering Mask"},{"c":2,"s":39,"id":7053,"u":"tlil%20mask%20(generic)_sot1","p":75,"h":1,"n":"Tlil Mask"},{"c":2,"s":40,"id":7054,"u":"bag%20of%20cats_sot2","p":75,"h":1,"n":"Bag Of Cats"},{"c":2,"s":40,"id":7055,"u":"crown%20of%20the%20companion_sot2","p":75,"h":1,"n":"Crown Of The Companion"},{"c":2,"s":40,"id":7056,"u":"fulminating%20spear_sot2","p":76,"h":1,"n":"Fulminating Spear"},{"c":2,"s":40,"id":7057,"u":"habu's%20cudgel_sot2","p":76,"h":1,"n":"Habu's Cudgel"},{"c":2,"s":40,"id":7058,"u":"leopard's%20armor_sot2","p":76,"h":1,"n":"Leopard's Armor"},{"c":2,"s":40,"id":7059,"u":"rhino%20hide%20brooch_sot2","p":76,"h":1,"n":"Rhino Hide Brooch"},{"c":2,"s":40,"id":7060,"u":"singing%20muse_sot2","p":76,"h":1,"n":"Singing Muse"},{"c":2,"s":40,"id":7061,"u":"spellender_sot2","p":76,"h":1,"n":"Spellender"},{"c":2,"s":40,"id":7062,"u":"warcaller's%20chime%20(generic)_sot2","p":77,"h":1,"n":"Warcaller's Chime"},{"c":2,"s":40,"id":7063,"u":"wondrous%20figurines%20(generic)_sot2","p":77,"h":1,"n":"Wondrous Figurines"},{"c":2,"s":41,"id":7064,"u":"antivenom%20potion_tio","p":60,"h":1,"n":"Antivenom Potion"},{"c":2,"s":41,"id":7065,"u":"capsaicin%20tonic_tio","p":60,"h":1,"n":"Capsaicin Tonic"},{"c":2,"s":41,"id":7066,"u":"sparkblade_tio","p":60,"h":1,"n":"Sparkblade"},{"c":2,"s":41,"id":7067,"u":"sun%20wheel_tio","p":60,"h":1,"n":"Sun Wheel"},{"c":3,"s":4,"id":7068,"u":"access%20lore_apg","p":229,"h":1,"n":"Access Lore"},{"c":3,"s":4,"id":7069,"u":"agonizing%20despair_apg","p":214,"h":1,"n":"Agonizing Despair"},{"c":3,"s":4,"id":7070,"u":"ancestral%20defense_apg","p":230,"h":1,"n":"Ancestral Defense"},{"c":3,"s":4,"id":7071,"u":"ancestral%20form_apg","p":230,"h":1,"n":"Ancestral Form"},{"c":3,"s":4,"id":7072,"u":"ancestral%20touch_apg","p":230,"h":1,"n":"Ancestral Touch"},{"c":3,"s":4,"id":7073,"u":"animal%20feature_apg","p":234,"h":1,"n":"Animal Feature"},{"c":3,"s":4,"id":7074,"u":"animate%20dead_apg","p":214,"h":1,"n":"Animate Dead"},{"c":3,"s":4,"id":7075,"u":"animate%20rope_apg","p":214,"h":1,"n":"Animate Rope"},{"c":3,"s":4,"id":7076,"u":"animated%20assault_apg","p":214,"h":1,"n":"Animated Assault"},{"c":3,"s":4,"id":7077,"u":"aqueous%20orb_apg","p":214,"h":1,"n":"Aqueous Orb"},{"c":3,"s":4,"id":7078,"u":"armor%20of%20bones_apg","p":230,"h":1,"n":"Armor Of Bones"},{"c":3,"s":4,"id":7079,"u":"battlefield%20persistence_apg","p":230,"h":1,"n":"Battlefield Persistence"},{"c":3,"s":4,"id":7080,"u":"beastmaster%20trance_apg","p":161,"h":1,"n":"Beastmaster Trance"},{"c":3,"s":4,"id":7081,"u":"bestial%20curse_apg","p":215,"h":1,"n":"Bestial Curse"},{"c":3,"s":4,"id":7082,"u":"blanket%20of%20stars_apg","p":215,"h":1,"n":"Blanket Of Stars"},{"c":3,"s":4,"id":7083,"u":"blinding%20beauty_apg","p":235,"h":1,"n":"Blinding Beauty"},{"c":3,"s":4,"id":7084,"u":"blinding%20fury_apg","p":216,"h":1,"n":"Blinding Fury"},{"c":3,"s":4,"id":7085,"u":"blister_apg","p":216,"h":1,"n":"Blister"},{"c":3,"s":4,"id":7086,"u":"blistering%20invective_apg","p":216,"h":1,"n":"Blistering Invective"},{"c":3,"s":4,"id":7087,"u":"blood%20vendetta_apg","p":216,"h":1,"n":"Blood Vendetta"},{"c":3,"s":4,"id":7088,"u":"blood%20ward_apg","p":237,"h":1,"n":"Blood Ward"},{"c":3,"s":4,"id":7089,"u":"brain%20drain_apg","p":230,"h":1,"n":"Brain Drain"},{"c":3,"s":4,"id":7090,"u":"cackle_apg","p":237,"h":1,"n":"Cackle"},{"c":3,"s":4,"id":7091,"u":"call%20to%20arms_apg","p":230,"h":1,"n":"Call To Arms"},{"c":3,"s":4,"id":7092,"u":"chameleon%20coat_apg","p":216,"h":1,"n":"Chameleon Coat"},{"c":3,"s":4,"id":7093,"u":"charitable%20urge_apg","p":216,"h":1,"n":"Charitable Urge"},{"c":3,"s":4,"id":7094,"u":"chroma%20leach_apg","p":217,"h":1,"n":"Chroma Leach"},{"c":3,"s":4,"id":7095,"u":"claim%20undead_apg","p":230,"h":1,"n":"Claim Undead"},{"c":3,"s":4,"id":7096,"u":"clinging%20ice_apg","p":237,"h":1,"n":"Clinging Ice"},{"c":3,"s":4,"id":7097,"u":"clinging%20shadows%20stance_apg","p":229,"h":1,"n":"Clinging Shadows Stance"},{"c":3,"s":4,"id":7098,"u":"consuming%20darkness_apg","p":235,"h":1,"n":"Consuming Darkness"},{"c":3,"s":4,"id":7099,"u":"countless%20eyes_apg","p":217,"h":1,"n":"Countless Eyes"},{"c":3,"s":4,"id":7100,"u":"cozy%20cabin_apg","p":217,"h":1,"n":"Cozy Cabin"},{"c":3,"s":4,"id":7101,"u":"crashing%20wave_apg","p":217,"h":1,"n":"Crashing Wave"},{"c":3,"s":4,"id":7102,"u":"curse%20of%20death_apg","p":237,"h":1,"n":"Curse Of Death"},{"c":3,"s":4,"id":7103,"u":"curse%20of%20lost%20time_apg","p":217,"h":1,"n":"Curse Of Lost Time"},{"c":3,"s":4,"id":7104,"u":"dance%20of%20darkness_apg","p":193,"h":1,"n":"Dance Of Darkness"},{"c":3,"s":4,"id":7105,"u":"debilitating%20dichotomy_apg","p":231,"h":1,"n":"Debilitating Dichotomy"},{"c":3,"s":4,"id":7106,"u":"deceiver's%20cloak_apg","p":238,"h":1,"n":"Deceiver's Cloak"},{"c":3,"s":4,"id":7107,"u":"delay%20affliction_apg","p":231,"h":1,"n":"Delay Affliction"},{"c":3,"s":4,"id":7108,"u":"dim%20the%20light_apg","p":236,"h":1,"n":"Dim The Light"},{"c":3,"s":4,"id":7109,"u":"discern%20secrets_apg","p":238,"h":1,"n":"Discern Secrets"},{"c":3,"s":4,"id":7110,"u":"dismantle_apg","p":218,"h":1,"n":"Dismantle"},{"c":3,"s":4,"id":7111,"u":"dread%20secret_apg","p":231,"h":1,"n":"Dread Secret"},{"c":3,"s":4,"id":7112,"u":"dull%20ambition_apg","p":218,"h":1,"n":"Dull Ambition"},{"c":3,"s":4,"id":7113,"u":"d%c3%a9j%c3%a0%20vu_apg","p":218,"h":1,"n":"Déjà Vu"},{"c":3,"s":4,"id":7114,"u":"elemental%20betrayal_apg","p":238,"h":1,"n":"Elemental Betrayal"},{"c":3,"s":4,"id":7115,"u":"enervation_apg","p":218,"h":1,"n":"Enervation"},{"c":3,"s":4,"id":7116,"u":"enlarge%20companion_apg","p":234,"h":1,"n":"Enlarge Companion"},{"c":3,"s":4,"id":7117,"u":"ephemeral%20tracking_apg","p":234,"h":1,"n":"Ephemeral Tracking"},{"c":3,"s":4,"id":7118,"u":"establish%20ward_apg","p":236,"h":1,"n":"Establish Ward"},{"c":3,"s":4,"id":7119,"u":"evil%20eye_apg","p":238,"h":1,"n":"Evil Eye"},{"c":3,"s":4,"id":7120,"u":"familiar's%20face_apg","p":218,"h":1,"n":"Familiar's Face"},{"c":3,"s":4,"id":7121,"u":"final%20sacrifice_apg","p":219,"h":1,"n":"Final Sacrifice"},{"c":3,"s":4,"id":7122,"u":"flaming%20fusillade_apg","p":232,"h":1,"n":"Flaming Fusillade"},{"c":3,"s":4,"id":7123,"u":"force%20cage_apg","p":219,"h":1,"n":"Force Cage"},{"c":3,"s":4,"id":7124,"u":"fungal%20infestation_apg","p":220,"h":1,"n":"Fungal Infestation"},{"c":3,"s":4,"id":7125,"u":"genie's%20veil_apg","p":236,"h":1,"n":"Genie's Veil"},{"c":3,"s":4,"id":7126,"u":"ghostly%20tragedy_apg","p":220,"h":1,"n":"Ghostly Tragedy"},{"c":3,"s":4,"id":7127,"u":"gravity%20weapon_apg","p":234,"h":1,"n":"Gravity Weapon"},{"c":3,"s":4,"id":7128,"u":"grisly%20growths_apg","p":220,"h":1,"n":"Grisly Growths"},{"c":3,"s":4,"id":7129,"u":"heal%20companion_apg","p":234,"h":1,"n":"Heal Companion"},{"c":3,"s":4,"id":7130,"u":"heart's%20desire_apg","p":236,"h":1,"n":"Heart's Desire"},{"c":3,"s":4,"id":7131,"u":"heat%20metal_apg","p":220,"h":1,"n":"Heat Metal"},{"c":3,"s":4,"id":7132,"u":"heroic%20feat_apg","p":232,"h":1,"n":"Heroic Feat"},{"c":3,"s":4,"id":7133,"u":"hunter's%20luck_apg","p":235,"h":1,"n":"Hunter's Luck"},{"c":3,"s":4,"id":7134,"u":"hunter's%20vision_apg","p":235,"h":1,"n":"Hunter's Vision"},{"c":3,"s":4,"id":7135,"u":"hymn%20of%20healing_apg","p":228,"h":1,"n":"Hymn Of Healing"},{"c":3,"s":4,"id":7136,"u":"ice%20storm_apg","p":220,"h":1,"n":"Ice Storm"},{"c":3,"s":4,"id":7137,"u":"ill%20omen_apg","p":221,"h":1,"n":"Ill Omen"},{"c":3,"s":4,"id":7138,"u":"impaling%20spike_apg","p":221,"h":1,"n":"Impaling Spike"},{"c":3,"s":4,"id":7139,"u":"imprint%20message_apg","p":221,"h":1,"n":"Imprint Message"},{"c":3,"s":4,"id":7140,"u":"incendiary%20aura_apg","p":232,"h":1,"n":"Incendiary Aura"},{"c":3,"s":4,"id":7141,"u":"indestructibility_apg","p":221,"h":1,"n":"Indestructibility"},{"c":3,"s":4,"id":7142,"u":"interstellar%20void_apg","p":232,"h":1,"n":"Interstellar Void"},{"c":3,"s":4,"id":7143,"u":"invisible%20item_apg","p":221,"h":1,"n":"Invisible Item"},{"c":3,"s":4,"id":7144,"u":"ki%20form_apg","p":229,"h":1,"n":"Ki Form"},{"c":3,"s":4,"id":7145,"u":"life%20boost_apg","p":238,"h":1,"n":"Life Boost"},{"c":3,"s":4,"id":7146,"u":"life%20link_apg","p":232,"h":1,"n":"Life Link"},{"c":3,"s":4,"id":7147,"u":"life-giving%20form_apg","p":232,"h":1,"n":"Life-giving Form"},{"c":3,"s":4,"id":7148,"u":"lightning%20storm_apg","p":221,"h":1,"n":"Lightning Storm"},{"c":3,"s":4,"id":7149,"u":"litany%20of%20depravity_apg","p":228,"h":1,"n":"Litany Of Depravity"},{"c":3,"s":4,"id":7150,"u":"litany%20of%20self-interest_apg","p":229,"h":1,"n":"Litany Of Self-interest"},{"c":3,"s":4,"id":7151,"u":"mad%20monkeys_apg","p":222,"h":1,"n":"Mad Monkeys"},{"c":3,"s":4,"id":7152,"u":"magic%20hide_apg","p":235,"h":1,"n":"Magic Hide"},{"c":3,"s":4,"id":7153,"u":"magic%20stone_apg","p":222,"h":1,"n":"Magic Stone"},{"c":3,"s":4,"id":7154,"u":"malicious%20shadow_apg","p":238,"h":1,"n":"Malicious Shadow"},{"c":3,"s":4,"id":7155,"u":"medusa's%20wrath_apg","p":229,"h":1,"n":"Medusa's Wrath"},{"c":3,"s":4,"id":7156,"u":"moonlight%20bridge_apg","p":233,"h":1,"n":"Moonlight Bridge"},{"c":3,"s":4,"id":7157,"u":"needle%20of%20vengeance_apg","p":238,"h":1,"n":"Needle Of Vengeance"},{"c":3,"s":4,"id":7158,"u":"noxious%20vapors_apg","p":222,"h":1,"n":"Noxious Vapors"},{"c":3,"s":4,"id":7159,"u":"nudge%20fate_apg","p":239,"h":1,"n":"Nudge Fate"},{"c":3,"s":4,"id":7160,"u":"nymph's%20token_apg","p":236,"h":1,"n":"Nymph's Token"},{"c":3,"s":4,"id":7161,"u":"object%20reading_apg","p":222,"h":1,"n":"Object Reading"},{"c":3,"s":4,"id":7162,"u":"ode%20to%20ouroboros_apg","p":228,"h":1,"n":"Ode To Ouroboros"},{"c":3,"s":4,"id":7163,"u":"personal%20blizzard_apg","p":239,"h":1,"n":"Personal Blizzard"},{"c":3,"s":4,"id":7164,"u":"pet%20cache_apg","p":222,"h":1,"n":"Pet Cache"},{"c":3,"s":4,"id":7165,"u":"phantasmal%20treasure_apg","p":223,"h":1,"n":"Phantasmal Treasure"},{"c":3,"s":4,"id":7166,"u":"phase%20familiar_apg","p":239,"h":1,"n":"Phase Familiar"},{"c":3,"s":4,"id":7167,"u":"pied%20piping_apg","p":228,"h":1,"n":"Pied Piping"},{"c":3,"s":4,"id":7168,"u":"pummeling%20rubble_apg","p":223,"h":1,"n":"Pummeling Rubble"},{"c":3,"s":4,"id":7169,"u":"quench_apg","p":223,"h":1,"n":"Quench"},{"c":3,"s":4,"id":7170,"u":"ranger's%20bramble_apg","p":235,"h":1,"n":"Ranger's Bramble"},{"c":3,"s":4,"id":7171,"u":"reaper's%20lantern_apg","p":223,"h":1,"n":"Reaper's Lantern"},{"c":3,"s":4,"id":7172,"u":"restorative%20moment_apg","p":239,"h":1,"n":"Restorative Moment"},{"c":3,"s":4,"id":7173,"u":"rusting%20grasp_apg","p":223,"h":1,"n":"Rusting Grasp"},{"c":3,"s":4,"id":7174,"u":"safe%20passage_apg","p":224,"h":1,"n":"Safe Passage"},{"c":3,"s":4,"id":7175,"u":"scintillating%20safeguard_apg","p":224,"h":1,"n":"Scintillating Safeguard"},{"c":3,"s":4,"id":7176,"u":"sculpt%20sound_apg","p":224,"h":1,"n":"Sculpt Sound"},{"c":3,"s":4,"id":7177,"u":"seal%20fate_apg","p":224,"h":1,"n":"Seal Fate"},{"c":3,"s":4,"id":7178,"u":"secret%20chest_apg","p":225,"h":1,"n":"Secret Chest"},{"c":3,"s":4,"id":7179,"u":"sepulchral%20mask_apg","p":236,"h":1,"n":"Sepulchral Mask"},{"c":3,"s":4,"id":7180,"u":"shadow%20illusion_apg","p":193,"h":1,"n":"Shadow Illusion"},{"c":3,"s":4,"id":7181,"u":"shadow%20jump_apg","p":193,"h":1,"n":"Shadow Jump"},{"c":3,"s":4,"id":7182,"u":"shadow's%20web_apg","p":229,"h":1,"n":"Shadow's Web"},{"c":3,"s":4,"id":7183,"u":"shepherd%20of%20souls_apg","p":236,"h":1,"n":"Shepherd Of Souls"},{"c":3,"s":4,"id":7184,"u":"shroud%20of%20night_apg","p":239,"h":1,"n":"Shroud Of Night"},{"c":3,"s":4,"id":7185,"u":"snare%20hopping_apg","p":235,"h":1,"n":"Snare Hopping"},{"c":3,"s":4,"id":7186,"u":"song%20of%20marching_apg","p":228,"h":1,"n":"Song Of Marching"},{"c":3,"s":4,"id":7187,"u":"song%20of%20strength_apg","p":228,"h":1,"n":"Song Of Strength"},{"c":3,"s":4,"id":7188,"u":"soothing%20mist_apg","p":235,"h":1,"n":"Soothing Mist"},{"c":3,"s":4,"id":7189,"u":"soul%20siphon_apg","p":233,"h":1,"n":"Soul Siphon"},{"c":3,"s":4,"id":7190,"u":"spike%20stones_apg","p":225,"h":1,"n":"Spike Stones"},{"c":3,"s":4,"id":7191,"u":"spirit%20sense_apg","p":225,"h":1,"n":"Spirit Sense"},{"c":3,"s":4,"id":7192,"u":"spirit%20veil_apg","p":237,"h":1,"n":"Spirit Veil"},{"c":3,"s":4,"id":7193,"u":"spray%20of%20stars_apg","p":233,"h":1,"n":"Spray Of Stars"},{"c":3,"s":4,"id":7194,"u":"steal%20shadow_apg","p":237,"h":1,"n":"Steal Shadow"},{"c":3,"s":4,"id":7195,"u":"stoke%20the%20heart_apg","p":239,"h":1,"n":"Stoke The Heart"},{"c":3,"s":4,"id":7196,"u":"strange%20geometry_apg","p":226,"h":1,"n":"Strange Geometry"},{"c":3,"s":4,"id":7197,"u":"sudden%20blight_apg","p":226,"h":1,"n":"Sudden Blight"},{"c":3,"s":4,"id":7198,"u":"summon%20instrument_apg","p":226,"h":1,"n":"Summon Instrument"},{"c":3,"s":4,"id":7199,"u":"symphony%20of%20the%20unfettered%20heart_apg","p":228,"h":1,"n":"Symphony Of The Unfettered Heart"},{"c":3,"s":4,"id":7200,"u":"tempest%20form_apg","p":233,"h":1,"n":"Tempest Form"},{"c":3,"s":4,"id":7201,"u":"tempest%20touch_apg","p":233,"h":1,"n":"Tempest Touch"},{"c":3,"s":4,"id":7202,"u":"terrain%20transposition_apg","p":235,"h":1,"n":"Terrain Transposition"},{"c":3,"s":4,"id":7203,"u":"thoughtful%20gift_apg","p":226,"h":1,"n":"Thoughtful Gift"},{"c":3,"s":4,"id":7204,"u":"threefold%20aspect_apg","p":226,"h":1,"n":"Threefold Aspect"},{"c":3,"s":4,"id":7205,"u":"thunderburst_apg","p":234,"h":1,"n":"Thunderburst"},{"c":3,"s":4,"id":7206,"u":"touch%20of%20corruption_apg","p":229,"h":1,"n":"Touch Of Corruption"},{"c":3,"s":4,"id":7207,"u":"transmute%20rock%20and%20mud_apg","p":226,"h":1,"n":"Transmute Rock And Mud"},{"c":3,"s":4,"id":7208,"u":"vampiric%20maiden_apg","p":227,"h":1,"n":"Vampiric Maiden"},{"c":3,"s":4,"id":7209,"u":"veil%20of%20dreams_apg","p":239,"h":1,"n":"Veil Of Dreams"},{"c":3,"s":4,"id":7210,"u":"vision%20of%20weakness_apg","p":234,"h":1,"n":"Vision Of Weakness"},{"c":3,"s":4,"id":7211,"u":"vomit%20swarm_apg","p":227,"h":1,"n":"Vomit Swarm"},{"c":3,"s":4,"id":7212,"u":"wall%20of%20flesh_apg","p":227,"h":1,"n":"Wall Of Flesh"},{"c":3,"s":4,"id":7213,"u":"whirling%20flames_apg","p":234,"h":1,"n":"Whirling Flames"},{"c":3,"s":4,"id":7214,"u":"wilding%20word_apg","p":239,"h":1,"n":"Wilding Word"},{"c":3,"s":4,"id":7215,"u":"wish-twisted%20form_apg","p":237,"h":1,"n":"Wish-twisted Form"},{"c":3,"s":5,"id":7216,"u":"aberrant%20whispers_crb","p":402,"h":1,"n":"Aberrant Whispers"},{"c":3,"s":5,"id":7217,"u":"abundant%20step_crb","p":401,"h":1,"n":"Abundant Step"},{"c":3,"s":5,"id":7218,"u":"abyssal%20plague_crb","p":316,"h":1,"n":"Abyssal Plague"},{"c":3,"s":5,"id":7219,"u":"abyssal%20wrath_crb","p":402,"h":1,"n":"Abyssal Wrath"},{"c":3,"s":5,"id":7220,"u":"acid%20arrow_crb","p":316,"h":1,"n":"Acid Arrow"},{"c":3,"s":5,"id":7221,"u":"acid%20splash_crb","p":316,"h":1,"n":"Acid Splash"},{"c":3,"s":5,"id":7222,"u":"aerial%20form_crb","p":316,"h":1,"n":"Aerial Form"},{"c":3,"s":5,"id":7223,"u":"agile%20feet_crb","p":389,"h":1,"n":"Agile Feet"},{"c":3,"s":5,"id":7224,"u":"air%20bubble_crb","p":316,"h":1,"n":"Air Bubble"},{"c":3,"s":5,"id":7225,"u":"air%20walk_crb","p":317,"h":1,"n":"Air Walk"},{"c":3,"s":5,"id":7226,"u":"alarm_crb","p":317,"h":1,"n":"Alarm"},{"c":3,"s":5,"id":7227,"u":"allegro_crb","p":386,"h":1,"n":"Allegro"},{"c":3,"s":5,"id":7228,"u":"alter%20reality_crb","p":317,"h":1,"n":"Alter Reality"},{"c":3,"s":5,"id":7229,"u":"anathematic%20reprisal_crb","p":317,"h":1,"n":"Anathematic Reprisal"},{"c":3,"s":5,"id":7230,"u":"ancestral%20memories_crb","p":402,"h":1,"n":"Ancestral Memories"},{"c":3,"s":5,"id":7231,"u":"angelic%20halo_crb","p":402,"h":1,"n":"Angelic Halo"},{"c":3,"s":5,"id":7232,"u":"angelic%20wings_crb","p":403,"h":1,"n":"Angelic Wings"},{"c":3,"s":5,"id":7233,"u":"animal%20form_crb","p":317,"h":1,"n":"Animal Form"},{"c":3,"s":5,"id":7234,"u":"animal%20messenger_crb","p":318,"h":1,"n":"Animal Messenger"},{"c":3,"s":5,"id":7235,"u":"animal%20vision_crb","p":318,"h":1,"n":"Animal Vision"},{"c":3,"s":5,"id":7236,"u":"ant%20haul_crb","p":318,"h":1,"n":"Ant Haul"},{"c":3,"s":5,"id":7237,"u":"antimagic%20field_crb","p":318,"h":1,"n":"Antimagic Field"},{"c":3,"s":5,"id":7238,"u":"appearance%20of%20wealth_crb","p":389,"h":1,"n":"Appearance Of Wealth"},{"c":3,"s":5,"id":7239,"u":"arcane%20countermeasure_crb","p":403,"h":1,"n":"Arcane Countermeasure"},{"c":3,"s":5,"id":7240,"u":"artistic%20flourish_crb","p":389,"h":1,"n":"Artistic Flourish"},{"c":3,"s":5,"id":7241,"u":"athletic%20rush_crb","p":389,"h":1,"n":"Athletic Rush"},{"c":3,"s":5,"id":7242,"u":"augment%20summoning_crb","p":406,"h":1,"n":"Augment Summoning"},{"c":3,"s":5,"id":7243,"u":"augury_crb","p":318,"h":1,"n":"Augury"},{"c":3,"s":5,"id":7244,"u":"avatar_crb","p":318,"h":1,"n":"Avatar"},{"c":3,"s":5,"id":7245,"u":"baleful%20polymorph_crb","p":320,"h":1,"n":"Baleful Polymorph"},{"c":3,"s":5,"id":7246,"u":"bane_crb","p":320,"h":1,"n":"Bane"},{"c":3,"s":5,"id":7247,"u":"banishment_crb","p":320,"h":1,"n":"Banishment"},{"c":3,"s":5,"id":7248,"u":"barkskin_crb","p":320,"h":1,"n":"Barkskin"},{"c":3,"s":5,"id":7249,"u":"bind%20soul_crb","p":320,"h":1,"n":"Bind Soul"},{"c":3,"s":5,"id":7250,"u":"bind%20undead_crb","p":321,"h":1,"n":"Bind Undead"},{"c":3,"s":5,"id":7251,"u":"bit%20of%20luck_crb","p":389,"h":1,"n":"Bit Of Luck"},{"c":3,"s":5,"id":7252,"u":"black%20tentacles_crb","p":321,"h":1,"n":"Black Tentacles"},{"c":3,"s":5,"id":7253,"u":"blade%20barrier_crb","p":321,"h":1,"n":"Blade Barrier"},{"c":3,"s":5,"id":7254,"u":"bless_crb","p":321,"h":1,"n":"Bless"},{"c":3,"s":5,"id":7255,"u":"blind%20ambition_crb","p":389,"h":1,"n":"Blind Ambition"},{"c":3,"s":5,"id":7256,"u":"blindness_crb","p":321,"h":1,"n":"Blindness"},{"c":3,"s":5,"id":7257,"u":"blink_crb","p":321,"h":1,"n":"Blink"},{"c":3,"s":5,"id":7258,"u":"blur_crb","p":321,"h":1,"n":"Blur"},{"c":3,"s":5,"id":7259,"u":"breath%20of%20life_crb","p":322,"h":1,"n":"Breath Of Life"},{"c":3,"s":5,"id":7260,"u":"burning%20hands_crb","p":322,"h":1,"n":"Burning Hands"},{"c":3,"s":5,"id":7261,"u":"call%20of%20the%20grave_crb","p":406,"h":1,"n":"Call Of The Grave"},{"c":3,"s":5,"id":7262,"u":"calm%20emotions_crb","p":322,"h":1,"n":"Calm Emotions"},{"c":3,"s":5,"id":7263,"u":"captivating%20adoration_crb","p":389,"h":1,"n":"Captivating Adoration"},{"c":3,"s":5,"id":7264,"u":"cataclysm_crb","p":322,"h":1,"n":"Cataclysm"},{"c":3,"s":5,"id":7265,"u":"celestial%20brand_crb","p":403,"h":1,"n":"Celestial Brand"},{"c":3,"s":5,"id":7266,"u":"chain%20lightning_crb","p":322,"h":1,"n":"Chain Lightning"},{"c":3,"s":5,"id":7267,"u":"champion's%20sacrifice_crb","p":387,"h":1,"n":"Champion's Sacrifice"},{"c":3,"s":5,"id":7268,"u":"charm_crb","p":322,"h":1,"n":"Charm"},{"c":3,"s":5,"id":7269,"u":"charming%20touch_crb","p":390,"h":1,"n":"Charming Touch"},{"c":3,"s":5,"id":7270,"u":"charming%20words_crb","p":406,"h":1,"n":"Charming Words"},{"c":3,"s":5,"id":7271,"u":"chill%20touch_crb","p":323,"h":1,"n":"Chill Touch"},{"c":3,"s":5,"id":7272,"u":"chilling%20darkness_crb","p":323,"h":1,"n":"Chilling Darkness"},{"c":3,"s":5,"id":7273,"u":"chromatic%20wall_crb","p":323,"h":1,"n":"Chromatic Wall"},{"c":3,"s":5,"id":7274,"u":"circle%20of%20protection_crb","p":324,"h":1,"n":"Circle Of Protection"},{"c":3,"s":5,"id":7275,"u":"clairaudience_crb","p":324,"h":1,"n":"Clairaudience"},{"c":3,"s":5,"id":7276,"u":"clairvoyance_crb","p":324,"h":1,"n":"Clairvoyance"},{"c":3,"s":5,"id":7277,"u":"cloak%20of%20colors_crb","p":324,"h":1,"n":"Cloak Of Colors"},{"c":3,"s":5,"id":7278,"u":"cloak%20of%20shadow_crb","p":390,"h":1,"n":"Cloak Of Shadow"},{"c":3,"s":5,"id":7279,"u":"cloudkill_crb","p":324,"h":1,"n":"Cloudkill"},{"c":3,"s":5,"id":7280,"u":"collective%20transposition_crb","p":324,"h":1,"n":"Collective Transposition"},{"c":3,"s":5,"id":7281,"u":"color%20spray_crb","p":324,"h":1,"n":"Color Spray"},{"c":3,"s":5,"id":7282,"u":"command_crb","p":325,"h":1,"n":"Command"},{"c":3,"s":5,"id":7283,"u":"commanding%20lash_crb","p":390,"h":1,"n":"Commanding Lash"},{"c":3,"s":5,"id":7284,"u":"competitive%20edge_crb","p":390,"h":1,"n":"Competitive Edge"},{"c":3,"s":5,"id":7285,"u":"comprehend%20language_crb","p":325,"h":1,"n":"Comprehend Language"},{"c":3,"s":5,"id":7286,"u":"cone%20of%20cold_crb","p":325,"h":1,"n":"Cone Of Cold"},{"c":3,"s":5,"id":7287,"u":"confusion_crb","p":325,"h":1,"n":"Confusion"},{"c":3,"s":5,"id":7288,"u":"contingency_crb","p":326,"h":1,"n":"Contingency"},{"c":3,"s":5,"id":7289,"u":"continual%20flame_crb","p":326,"h":1,"n":"Continual Flame"},{"c":3,"s":5,"id":7290,"u":"control%20water_crb","p":326,"h":1,"n":"Control Water"},{"c":3,"s":5,"id":7291,"u":"counter%20performance_crb","p":386,"h":1,"n":"Counter Performance"},{"c":3,"s":5,"id":7292,"u":"create%20food_crb","p":326,"h":1,"n":"Create Food"},{"c":3,"s":5,"id":7293,"u":"create%20water_crb","p":326,"h":1,"n":"Create Water"},{"c":3,"s":5,"id":7294,"u":"creation_crb","p":326,"h":1,"n":"Creation"},{"c":3,"s":5,"id":7295,"u":"crisis%20of%20faith_crb","p":326,"h":1,"n":"Crisis Of Faith"},{"c":3,"s":5,"id":7296,"u":"crusade_crb","p":327,"h":1,"n":"Crusade"},{"c":3,"s":5,"id":7297,"u":"crushing%20despair_crb","p":327,"h":1,"n":"Crushing Despair"},{"c":3,"s":5,"id":7298,"u":"cry%20of%20destruction_crb","p":390,"h":1,"n":"Cry Of Destruction"},{"c":3,"s":5,"id":7299,"u":"dancing%20lights_crb","p":327,"h":1,"n":"Dancing Lights"},{"c":3,"s":5,"id":7300,"u":"darkened%20eyes_crb","p":390,"h":1,"n":"Darkened Eyes"},{"c":3,"s":5,"id":7301,"u":"darkness_crb","p":327,"h":1,"n":"Darkness"},{"c":3,"s":5,"id":7302,"u":"darkvision_crb","p":327,"h":1,"n":"Darkvision"},{"c":3,"s":5,"id":7303,"u":"daze_crb","p":327,"h":1,"n":"Daze"},{"c":3,"s":5,"id":7304,"u":"dazzling%20flash_crb","p":391,"h":1,"n":"Dazzling Flash"},{"c":3,"s":5,"id":7305,"u":"deafness_crb","p":327,"h":1,"n":"Deafness"},{"c":3,"s":5,"id":7306,"u":"death%20knell_crb","p":328,"h":1,"n":"Death Knell"},{"c":3,"s":5,"id":7307,"u":"death%20ward_crb","p":328,"h":1,"n":"Death Ward"},{"c":3,"s":5,"id":7308,"u":"death's%20call_crb","p":391,"h":1,"n":"Death's Call"},{"c":3,"s":5,"id":7309,"u":"delusional%20pride_crb","p":391,"h":1,"n":"Delusional Pride"},{"c":3,"s":5,"id":7310,"u":"destructive%20aura_crb","p":391,"h":1,"n":"Destructive Aura"},{"c":3,"s":5,"id":7311,"u":"detect%20alignment_crb","p":328,"h":1,"n":"Detect Alignment"},{"c":3,"s":5,"id":7312,"u":"detect%20magic_crb","p":328,"h":1,"n":"Detect Magic"},{"c":3,"s":5,"id":7313,"u":"detect%20poison_crb","p":328,"h":1,"n":"Detect Poison"},{"c":3,"s":5,"id":7314,"u":"detect%20scrying_crb","p":328,"h":1,"n":"Detect Scrying"},{"c":3,"s":5,"id":7315,"u":"diabolic%20edict_crb","p":403,"h":1,"n":"Diabolic Edict"},{"c":3,"s":5,"id":7316,"u":"dimension%20door_crb","p":328,"h":1,"n":"Dimension Door"},{"c":3,"s":5,"id":7317,"u":"dimensional%20anchor_crb","p":329,"h":1,"n":"Dimensional Anchor"},{"c":3,"s":5,"id":7318,"u":"dimensional%20lock_crb","p":329,"h":1,"n":"Dimensional Lock"},{"c":3,"s":5,"id":7319,"u":"dimensional%20steps_crb","p":406,"h":1,"n":"Dimensional Steps"},{"c":3,"s":5,"id":7320,"u":"dinosaur%20form_crb","p":329,"h":1,"n":"Dinosaur Form"},{"c":3,"s":5,"id":7321,"u":"dirge%20of%20doom_crb","p":386,"h":1,"n":"Dirge Of Doom"},{"c":3,"s":5,"id":7322,"u":"disappearance_crb","p":330,"h":1,"n":"Disappearance"},{"c":3,"s":5,"id":7323,"u":"discern%20lies_crb","p":330,"h":1,"n":"Discern Lies"},{"c":3,"s":5,"id":7324,"u":"discern%20location_crb","p":330,"h":1,"n":"Discern Location"},{"c":3,"s":5,"id":7325,"u":"disintegrate_crb","p":330,"h":1,"n":"Disintegrate"},{"c":3,"s":5,"id":7326,"u":"disjunction_crb","p":330,"h":1,"n":"Disjunction"},{"c":3,"s":5,"id":7327,"u":"dispel%20magic_crb","p":330,"h":1,"n":"Dispel Magic"},{"c":3,"s":5,"id":7328,"u":"disperse%20into%20air_crb","p":391,"h":1,"n":"Disperse Into Air"},{"c":3,"s":5,"id":7329,"u":"disrupt%20undead_crb","p":331,"h":1,"n":"Disrupt Undead"},{"c":3,"s":5,"id":7330,"u":"disrupting%20weapons_crb","p":331,"h":1,"n":"Disrupting Weapons"},{"c":3,"s":5,"id":7331,"u":"divine%20aura_crb","p":331,"h":1,"n":"Divine Aura"},{"c":3,"s":5,"id":7332,"u":"divine%20decree_crb","p":331,"h":1,"n":"Divine Decree"},{"c":3,"s":5,"id":7333,"u":"divine%20inspiration_crb","p":331,"h":1,"n":"Divine Inspiration"},{"c":3,"s":5,"id":7334,"u":"divine%20lance_crb","p":331,"h":1,"n":"Divine Lance"},{"c":3,"s":5,"id":7335,"u":"divine%20vessel_crb","p":331,"h":1,"n":"Divine Vessel"},{"c":3,"s":5,"id":7336,"u":"divine%20wrath_crb","p":332,"h":1,"n":"Divine Wrath"},{"c":3,"s":5,"id":7337,"u":"diviner's%20sight_crb","p":406,"h":1,"n":"Diviner's Sight"},{"c":3,"s":5,"id":7338,"u":"dominate_crb","p":332,"h":1,"n":"Dominate"},{"c":3,"s":5,"id":7339,"u":"downpour_crb","p":391,"h":1,"n":"Downpour"},{"c":3,"s":5,"id":7340,"u":"dragon%20breath_crb","p":403,"h":1,"n":"Dragon Breath"},{"c":3,"s":5,"id":7341,"u":"dragon%20claws_crb","p":403,"h":1,"n":"Dragon Claws"},{"c":3,"s":5,"id":7342,"u":"dragon%20form_crb","p":332,"h":1,"n":"Dragon Form"},{"c":3,"s":5,"id":7343,"u":"dragon%20wings_crb","p":403,"h":1,"n":"Dragon Wings"},{"c":3,"s":5,"id":7344,"u":"drain%20life_crb","p":403,"h":1,"n":"Drain Life"},{"c":3,"s":5,"id":7345,"u":"dread%20aura_crb","p":406,"h":1,"n":"Dread Aura"},{"c":3,"s":5,"id":7346,"u":"dream%20council_crb","p":333,"h":1,"n":"Dream Council"},{"c":3,"s":5,"id":7347,"u":"dream%20message_crb","p":333,"h":1,"n":"Dream Message"},{"c":3,"s":5,"id":7348,"u":"dreamer's%20call_crb","p":391,"h":1,"n":"Dreamer's Call"},{"c":3,"s":5,"id":7349,"u":"dreaming%20potential_crb","p":333,"h":1,"n":"Dreaming Potential"},{"c":3,"s":5,"id":7350,"u":"drop%20dead_crb","p":333,"h":1,"n":"Drop Dead"},{"c":3,"s":5,"id":7351,"u":"duplicate%20foe_crb","p":334,"h":1,"n":"Duplicate Foe"},{"c":3,"s":5,"id":7352,"u":"earthbind_crb","p":334,"h":1,"n":"Earthbind"},{"c":3,"s":5,"id":7353,"u":"earthquake_crb","p":334,"h":1,"n":"Earthquake"},{"c":3,"s":5,"id":7354,"u":"eclipse%20burst_crb","p":334,"h":1,"n":"Eclipse Burst"},{"c":3,"s":5,"id":7355,"u":"electric%20arc_crb","p":335,"h":1,"n":"Electric Arc"},{"c":3,"s":5,"id":7356,"u":"elemental%20blast_crb","p":404,"h":1,"n":"Elemental Blast"},{"c":3,"s":5,"id":7357,"u":"elemental%20form_crb","p":335,"h":1,"n":"Elemental Form"},{"c":3,"s":5,"id":7358,"u":"elemental%20motion_crb","p":404,"h":1,"n":"Elemental Motion"},{"c":3,"s":5,"id":7359,"u":"elemental%20tempest_crb","p":406,"h":1,"n":"Elemental Tempest"},{"c":3,"s":5,"id":7360,"u":"elemental%20toss_crb","p":404,"h":1,"n":"Elemental Toss"},{"c":3,"s":5,"id":7361,"u":"embrace%20the%20pit_crb","p":404,"h":1,"n":"Embrace The Pit"},{"c":3,"s":5,"id":7362,"u":"empty%20body_crb","p":401,"h":1,"n":"Empty Body"},{"c":3,"s":5,"id":7363,"u":"endure%20elements_crb","p":335,"h":1,"n":"Endure Elements"},{"c":3,"s":5,"id":7364,"u":"enduring%20might_crb","p":392,"h":1,"n":"Enduring Might"},{"c":3,"s":5,"id":7365,"u":"energy%20absorption_crb","p":407,"h":1,"n":"Energy Absorption"},{"c":3,"s":5,"id":7366,"u":"energy%20aegis_crb","p":335,"h":1,"n":"Energy Aegis"},{"c":3,"s":5,"id":7367,"u":"enhance%20victuals_crb","p":335,"h":1,"n":"Enhance Victuals"},{"c":3,"s":5,"id":7368,"u":"enlarge_crb","p":336,"h":1,"n":"Enlarge"},{"c":3,"s":5,"id":7369,"u":"entangle_crb","p":336,"h":1,"n":"Entangle"},{"c":3,"s":5,"id":7370,"u":"enthrall_crb","p":336,"h":1,"n":"Enthrall"},{"c":3,"s":5,"id":7371,"u":"eradicate%20undeath_crb","p":392,"h":1,"n":"Eradicate Undeath"},{"c":3,"s":5,"id":7372,"u":"ethereal%20jaunt_crb","p":336,"h":1,"n":"Ethereal Jaunt"},{"c":3,"s":5,"id":7373,"u":"extend%20spell_crb","p":404,"h":1,"n":"Extend Spell"},{"c":3,"s":5,"id":7374,"u":"fabricated%20truth_crb","p":336,"h":1,"n":"Fabricated Truth"},{"c":3,"s":5,"id":7375,"u":"face%20in%20the%20crowd_crb","p":392,"h":1,"n":"Face In The Crowd"},{"c":3,"s":5,"id":7376,"u":"faerie%20dust_crb","p":404,"h":1,"n":"Faerie Dust"},{"c":3,"s":5,"id":7377,"u":"faerie%20fire_crb","p":337,"h":1,"n":"Faerie Fire"},{"c":3,"s":5,"id":7378,"u":"false%20life_crb","p":337,"h":1,"n":"False Life"},{"c":3,"s":5,"id":7379,"u":"false%20vision_crb","p":337,"h":1,"n":"False Vision"},{"c":3,"s":5,"id":7380,"u":"fatal%20aria_crb","p":386,"h":1,"n":"Fatal Aria"},{"c":3,"s":5,"id":7381,"u":"fear_crb","p":337,"h":1,"n":"Fear"},{"c":3,"s":5,"id":7382,"u":"feather%20fall_crb","p":337,"h":1,"n":"Feather Fall"},{"c":3,"s":5,"id":7383,"u":"feeblemind_crb","p":337,"h":1,"n":"Feeblemind"},{"c":3,"s":5,"id":7384,"u":"feet%20to%20fins_crb","p":337,"h":1,"n":"Feet To Fins"},{"c":3,"s":5,"id":7385,"u":"fey%20disappearance_crb","p":404,"h":1,"n":"Fey Disappearance"},{"c":3,"s":5,"id":7386,"u":"fey%20glamour_crb","p":404,"h":1,"n":"Fey Glamour"},{"c":3,"s":5,"id":7387,"u":"field%20of%20life_crb","p":337,"h":1,"n":"Field Of Life"},{"c":3,"s":5,"id":7388,"u":"fiery%20body_crb","p":337,"h":1,"n":"Fiery Body"},{"c":3,"s":5,"id":7389,"u":"finger%20of%20death_crb","p":338,"h":1,"n":"Finger Of Death"},{"c":3,"s":5,"id":7390,"u":"fire%20ray_crb","p":392,"h":1,"n":"Fire Ray"},{"c":3,"s":5,"id":7391,"u":"fire%20seeds_crb","p":338,"h":1,"n":"Fire Seeds"},{"c":3,"s":5,"id":7392,"u":"fire%20shield_crb","p":338,"h":1,"n":"Fire Shield"},{"c":3,"s":5,"id":7393,"u":"fireball_crb","p":338,"h":1,"n":"Fireball"},{"c":3,"s":5,"id":7394,"u":"flame%20barrier_crb","p":392,"h":1,"n":"Flame Barrier"},{"c":3,"s":5,"id":7395,"u":"flame%20strike_crb","p":338,"h":1,"n":"Flame Strike"},{"c":3,"s":5,"id":7396,"u":"flaming%20sphere_crb","p":338,"h":1,"n":"Flaming Sphere"},{"c":3,"s":5,"id":7397,"u":"fleet%20step_crb","p":338,"h":1,"n":"Fleet Step"},{"c":3,"s":5,"id":7398,"u":"flesh%20to%20stone_crb","p":339,"h":1,"n":"Flesh To Stone"},{"c":3,"s":5,"id":7399,"u":"floating%20disk_crb","p":339,"h":1,"n":"Floating Disk"},{"c":3,"s":5,"id":7400,"u":"fly_crb","p":339,"h":1,"n":"Fly"},{"c":3,"s":5,"id":7401,"u":"forbidding%20ward_crb","p":339,"h":1,"n":"Forbidding Ward"},{"c":3,"s":5,"id":7402,"u":"force%20bolt_crb","p":407,"h":1,"n":"Force Bolt"},{"c":3,"s":5,"id":7403,"u":"forced%20quiet_crb","p":393,"h":1,"n":"Forced Quiet"},{"c":3,"s":5,"id":7404,"u":"foresight_crb","p":340,"h":1,"n":"Foresight"},{"c":3,"s":5,"id":7405,"u":"freedom%20of%20movement_crb","p":340,"h":1,"n":"Freedom Of Movement"},{"c":3,"s":5,"id":7406,"u":"gaseous%20form_crb","p":340,"h":1,"n":"Gaseous Form"},{"c":3,"s":5,"id":7407,"u":"gate_crb","p":340,"h":1,"n":"Gate"},{"c":3,"s":5,"id":7408,"u":"gentle%20repose_crb","p":340,"h":1,"n":"Gentle Repose"},{"c":3,"s":5,"id":7409,"u":"ghost%20sound_crb","p":340,"h":1,"n":"Ghost Sound"},{"c":3,"s":5,"id":7410,"u":"ghostly%20weapon_crb","p":340,"h":1,"n":"Ghostly Weapon"},{"c":3,"s":5,"id":7411,"u":"ghoulish%20cravings_crb","p":341,"h":1,"n":"Ghoulish Cravings"},{"c":3,"s":5,"id":7412,"u":"glibness_crb","p":341,"h":1,"n":"Glibness"},{"c":3,"s":5,"id":7413,"u":"glimpse%20the%20truth_crb","p":393,"h":1,"n":"Glimpse The Truth"},{"c":3,"s":5,"id":7414,"u":"glitterdust_crb","p":341,"h":1,"n":"Glitterdust"},{"c":3,"s":5,"id":7415,"u":"globe%20of%20invulnerability_crb","p":341,"h":1,"n":"Globe Of Invulnerability"},{"c":3,"s":5,"id":7416,"u":"glutton's%20jaws_crb","p":404,"h":1,"n":"Glutton's Jaws"},{"c":3,"s":5,"id":7417,"u":"glyph%20of%20warding_crb","p":341,"h":1,"n":"Glyph Of Warding"},{"c":3,"s":5,"id":7418,"u":"goblin%20pox_crb","p":341,"h":1,"n":"Goblin Pox"},{"c":3,"s":5,"id":7419,"u":"goodberry_crb","p":399,"h":1,"n":"Goodberry"},{"c":3,"s":5,"id":7420,"u":"grasping%20grave_crb","p":404,"h":1,"n":"Grasping Grave"},{"c":3,"s":5,"id":7421,"u":"grease_crb","p":342,"h":1,"n":"Grease"},{"c":3,"s":5,"id":7422,"u":"grim%20tendrils_crb","p":342,"h":1,"n":"Grim Tendrils"},{"c":3,"s":5,"id":7423,"u":"guidance_crb","p":342,"h":1,"n":"Guidance"},{"c":3,"s":5,"id":7424,"u":"gust%20of%20wind_crb","p":342,"h":1,"n":"Gust Of Wind"},{"c":3,"s":5,"id":7425,"u":"hallucination_crb","p":342,"h":1,"n":"Hallucination"},{"c":3,"s":5,"id":7426,"u":"hallucinatory%20terrain_crb","p":343,"h":1,"n":"Hallucinatory Terrain"},{"c":3,"s":5,"id":7427,"u":"hand%20of%20the%20apprentice_crb","p":407,"h":1,"n":"Hand Of The Apprentice"},{"c":3,"s":5,"id":7428,"u":"harm_crb","p":343,"h":1,"n":"Harm"},{"c":3,"s":5,"id":7429,"u":"haste_crb","p":343,"h":1,"n":"Haste"},{"c":3,"s":5,"id":7430,"u":"heal_crb","p":343,"h":1,"n":"Heal"},{"c":3,"s":5,"id":7431,"u":"heal%20animal_crb","p":399,"h":1,"n":"Heal Animal"},{"c":3,"s":5,"id":7432,"u":"healer's%20blessing_crb","p":393,"h":1,"n":"Healer's Blessing"},{"c":3,"s":5,"id":7433,"u":"hellfire%20plume_crb","p":405,"h":1,"n":"Hellfire Plume"},{"c":3,"s":5,"id":7434,"u":"hero's%20defiance_crb","p":387,"h":1,"n":"Hero's Defiance"},{"c":3,"s":5,"id":7435,"u":"heroism_crb","p":343,"h":1,"n":"Heroism"},{"c":3,"s":5,"id":7436,"u":"hideous%20laughter_crb","p":343,"h":1,"n":"Hideous Laughter"},{"c":3,"s":5,"id":7437,"u":"holy%20cascade_crb","p":344,"h":1,"n":"Holy Cascade"},{"c":3,"s":5,"id":7438,"u":"horrid%20wilting_crb","p":344,"h":1,"n":"Horrid Wilting"},{"c":3,"s":5,"id":7439,"u":"horrific%20visage_crb","p":405,"h":1,"n":"Horrific Visage"},{"c":3,"s":5,"id":7440,"u":"house%20of%20imaginary%20walls_crb","p":386,"h":1,"n":"House Of Imaginary Walls"},{"c":3,"s":5,"id":7441,"u":"humanoid%20form_crb","p":344,"h":1,"n":"Humanoid Form"},{"c":3,"s":5,"id":7442,"u":"hurtling%20stone_crb","p":393,"h":1,"n":"Hurtling Stone"},{"c":3,"s":5,"id":7443,"u":"hydraulic%20push_crb","p":344,"h":1,"n":"Hydraulic Push"},{"c":3,"s":5,"id":7444,"u":"hydraulic%20torrent_crb","p":344,"h":1,"n":"Hydraulic Torrent"},{"c":3,"s":5,"id":7445,"u":"hypercognition_crb","p":344,"h":1,"n":"Hypercognition"},{"c":3,"s":5,"id":7446,"u":"hypnotic%20pattern_crb","p":344,"h":1,"n":"Hypnotic Pattern"},{"c":3,"s":5,"id":7447,"u":"illusory%20creature_crb","p":345,"h":1,"n":"Illusory Creature"},{"c":3,"s":5,"id":7448,"u":"illusory%20disguise_crb","p":345,"h":1,"n":"Illusory Disguise"},{"c":3,"s":5,"id":7449,"u":"illusory%20object_crb","p":345,"h":1,"n":"Illusory Object"},{"c":3,"s":5,"id":7450,"u":"illusory%20scene_crb","p":345,"h":1,"n":"Illusory Scene"},{"c":3,"s":5,"id":7451,"u":"impaling%20briars_crb","p":400,"h":1,"n":"Impaling Briars"},{"c":3,"s":5,"id":7452,"u":"implosion_crb","p":346,"h":1,"n":"Implosion"},{"c":3,"s":5,"id":7453,"u":"insect%20form_crb","p":346,"h":1,"n":"Insect Form"},{"c":3,"s":5,"id":7454,"u":"inspire%20competence_crb","p":386,"h":1,"n":"Inspire Competence"},{"c":3,"s":5,"id":7455,"u":"inspire%20courage_crb","p":386,"h":1,"n":"Inspire Courage"},{"c":3,"s":5,"id":7456,"u":"inspire%20defense_crb","p":386,"h":1,"n":"Inspire Defense"},{"c":3,"s":5,"id":7457,"u":"inspire%20heroics_crb","p":387,"h":1,"n":"Inspire Heroics"},{"c":3,"s":5,"id":7458,"u":"invisibility_crb","p":347,"h":1,"n":"Invisibility"},{"c":3,"s":5,"id":7459,"u":"invisibility%20cloak_crb","p":407,"h":1,"n":"Invisibility Cloak"},{"c":3,"s":5,"id":7460,"u":"invisibility%20sphere_crb","p":347,"h":1,"n":"Invisibility Sphere"},{"c":3,"s":5,"id":7461,"u":"item%20facade_crb","p":347,"h":1,"n":"Item Facade"},{"c":3,"s":5,"id":7462,"u":"jealous%20hex_crb","p":405,"h":1,"n":"Jealous Hex"},{"c":3,"s":5,"id":7463,"u":"jump_crb","p":347,"h":1,"n":"Jump"},{"c":3,"s":5,"id":7464,"u":"ki%20blast_crb","p":401,"h":1,"n":"Ki Blast"},{"c":3,"s":5,"id":7465,"u":"ki%20rush_crb","p":401,"h":1,"n":"Ki Rush"},{"c":3,"s":5,"id":7466,"u":"ki%20strike_crb","p":401,"h":1,"n":"Ki Strike"},{"c":3,"s":5,"id":7467,"u":"knock_crb","p":347,"h":1,"n":"Knock"},{"c":3,"s":5,"id":7468,"u":"know%20direction_crb","p":348,"h":1,"n":"Know Direction"},{"c":3,"s":5,"id":7469,"u":"know%20the%20enemy_crb","p":393,"h":1,"n":"Know The Enemy"},{"c":3,"s":5,"id":7470,"u":"lay%20on%20hands_crb","p":387,"h":1,"n":"Lay On Hands"},{"c":3,"s":5,"id":7471,"u":"levitate_crb","p":348,"h":1,"n":"Levitate"},{"c":3,"s":5,"id":7472,"u":"life%20siphon_crb","p":407,"h":1,"n":"Life Siphon"},{"c":3,"s":5,"id":7473,"u":"light_crb","p":348,"h":1,"n":"Light"},{"c":3,"s":5,"id":7474,"u":"lightning%20bolt_crb","p":348,"h":1,"n":"Lightning Bolt"},{"c":3,"s":5,"id":7475,"u":"lingering%20composition_crb","p":387,"h":1,"n":"Lingering Composition"},{"c":3,"s":5,"id":7476,"u":"litany%20against%20sloth_crb","p":388,"h":1,"n":"Litany Against Sloth"},{"c":3,"s":5,"id":7477,"u":"litany%20against%20wrath_crb","p":388,"h":1,"n":"Litany Against Wrath"},{"c":3,"s":5,"id":7478,"u":"litany%20of%20righteousness_crb","p":388,"h":1,"n":"Litany Of Righteousness"},{"c":3,"s":5,"id":7479,"u":"localized%20quake_crb","p":393,"h":1,"n":"Localized Quake"},{"c":3,"s":5,"id":7480,"u":"locate_crb","p":348,"h":1,"n":"Locate"},{"c":3,"s":5,"id":7481,"u":"lock_crb","p":348,"h":1,"n":"Lock"},{"c":3,"s":5,"id":7482,"u":"longstrider_crb","p":348,"h":1,"n":"Longstrider"},{"c":3,"s":5,"id":7483,"u":"loremaster's%20etude_crb","p":387,"h":1,"n":"Loremaster's Etude"},{"c":3,"s":5,"id":7484,"u":"lucky%20break_crb","p":393,"h":1,"n":"Lucky Break"},{"c":3,"s":5,"id":7485,"u":"mage%20armor_crb","p":348,"h":1,"n":"Mage Armor"},{"c":3,"s":5,"id":7486,"u":"mage%20hand_crb","p":349,"h":1,"n":"Mage Hand"},{"c":3,"s":5,"id":7487,"u":"magic%20aura_crb","p":349,"h":1,"n":"Magic Aura"},{"c":3,"s":5,"id":7488,"u":"magic%20fang_crb","p":349,"h":1,"n":"Magic Fang"},{"c":3,"s":5,"id":7489,"u":"magic%20missile_crb","p":349,"h":1,"n":"Magic Missile"},{"c":3,"s":5,"id":7490,"u":"magic%20mouth_crb","p":349,"h":1,"n":"Magic Mouth"},{"c":3,"s":5,"id":7491,"u":"magic%20weapon_crb","p":349,"h":1,"n":"Magic Weapon"},{"c":3,"s":5,"id":7492,"u":"magic's%20vessel_crb","p":393,"h":1,"n":"Magic's Vessel"},{"c":3,"s":5,"id":7493,"u":"magnificent%20mansion_crb","p":349,"h":1,"n":"Magnificent Mansion"},{"c":3,"s":5,"id":7494,"u":"malignant%20sustenance_crb","p":394,"h":1,"n":"Malignant Sustenance"},{"c":3,"s":5,"id":7495,"u":"mariner's%20curse_crb","p":350,"h":1,"n":"Mariner's Curse"},{"c":3,"s":5,"id":7496,"u":"mask%20of%20terror_crb","p":350,"h":1,"n":"Mask Of Terror"},{"c":3,"s":5,"id":7497,"u":"massacre_crb","p":350,"h":1,"n":"Massacre"},{"c":3,"s":5,"id":7498,"u":"maze_crb","p":350,"h":1,"n":"Maze"},{"c":3,"s":5,"id":7499,"u":"meld%20into%20stone_crb","p":350,"h":1,"n":"Meld Into Stone"},{"c":3,"s":5,"id":7500,"u":"mending_crb","p":351,"h":1,"n":"Mending"},{"c":3,"s":5,"id":7501,"u":"message_crb","p":351,"h":1,"n":"Message"},{"c":3,"s":5,"id":7502,"u":"meteor%20swarm_crb","p":351,"h":1,"n":"Meteor Swarm"},{"c":3,"s":5,"id":7503,"u":"mind%20blank_crb","p":351,"h":1,"n":"Mind Blank"},{"c":3,"s":5,"id":7504,"u":"mind%20probe_crb","p":351,"h":1,"n":"Mind Probe"},{"c":3,"s":5,"id":7505,"u":"mind%20reading_crb","p":351,"h":1,"n":"Mind Reading"},{"c":3,"s":5,"id":7506,"u":"mindlink_crb","p":352,"h":1,"n":"Mindlink"},{"c":3,"s":5,"id":7507,"u":"miracle_crb","p":352,"h":1,"n":"Miracle"},{"c":3,"s":5,"id":7508,"u":"mirror%20image_crb","p":352,"h":1,"n":"Mirror Image"},{"c":3,"s":5,"id":7509,"u":"misdirection_crb","p":352,"h":1,"n":"Misdirection"},{"c":3,"s":5,"id":7510,"u":"mislead_crb","p":352,"h":1,"n":"Mislead"},{"c":3,"s":5,"id":7511,"u":"modify%20memory_crb","p":352,"h":1,"n":"Modify Memory"},{"c":3,"s":5,"id":7512,"u":"moment%20of%20renewal_crb","p":353,"h":1,"n":"Moment Of Renewal"},{"c":3,"s":5,"id":7513,"u":"monstrosity%20form_crb","p":353,"h":1,"n":"Monstrosity Form"},{"c":3,"s":5,"id":7514,"u":"moon%20frenzy_crb","p":353,"h":1,"n":"Moon Frenzy"},{"c":3,"s":5,"id":7515,"u":"moonbeam_crb","p":394,"h":1,"n":"Moonbeam"},{"c":3,"s":5,"id":7516,"u":"mystic%20beacon_crb","p":394,"h":1,"n":"Mystic Beacon"},{"c":3,"s":5,"id":7517,"u":"nature%20incarnate_crb","p":354,"h":1,"n":"Nature Incarnate"},{"c":3,"s":5,"id":7518,"u":"nature's%20bounty_crb","p":394,"h":1,"n":"Nature's Bounty"},{"c":3,"s":5,"id":7519,"u":"nature's%20enmity_crb","p":354,"h":1,"n":"Nature's Enmity"},{"c":3,"s":5,"id":7520,"u":"negate%20aroma_crb","p":354,"h":1,"n":"Negate Aroma"},{"c":3,"s":5,"id":7521,"u":"neutralize%20poison_crb","p":354,"h":1,"n":"Neutralize Poison"},{"c":3,"s":5,"id":7522,"u":"nightmare_crb","p":354,"h":1,"n":"Nightmare"},{"c":3,"s":5,"id":7523,"u":"nondetection_crb","p":355,"h":1,"n":"Nondetection"},{"c":3,"s":5,"id":7524,"u":"obscuring%20mist_crb","p":355,"h":1,"n":"Obscuring Mist"},{"c":3,"s":5,"id":7525,"u":"outcast's%20curse_crb","p":355,"h":1,"n":"Outcast's Curse"},{"c":3,"s":5,"id":7526,"u":"overstuff_crb","p":394,"h":1,"n":"Overstuff"},{"c":3,"s":5,"id":7527,"u":"overwhelming%20presence_crb","p":356,"h":1,"n":"Overwhelming Presence"},{"c":3,"s":5,"id":7528,"u":"paralyze_crb","p":356,"h":1,"n":"Paralyze"},{"c":3,"s":5,"id":7529,"u":"paranoia_crb","p":356,"h":1,"n":"Paranoia"},{"c":3,"s":5,"id":7530,"u":"pass%20without%20trace_crb","p":356,"h":1,"n":"Pass Without Trace"},{"c":3,"s":5,"id":7531,"u":"passwall_crb","p":356,"h":1,"n":"Passwall"},{"c":3,"s":5,"id":7532,"u":"perfected%20form_crb","p":394,"h":1,"n":"Perfected Form"},{"c":3,"s":5,"id":7533,"u":"perfected%20mind_crb","p":394,"h":1,"n":"Perfected Mind"},{"c":3,"s":5,"id":7534,"u":"pest%20form_crb","p":356,"h":1,"n":"Pest Form"},{"c":3,"s":5,"id":7535,"u":"phantasmal%20calamity_crb","p":357,"h":1,"n":"Phantasmal Calamity"},{"c":3,"s":5,"id":7536,"u":"phantasmal%20killer_crb","p":357,"h":1,"n":"Phantasmal Killer"},{"c":3,"s":5,"id":7537,"u":"phantom%20pain_crb","p":357,"h":1,"n":"Phantom Pain"},{"c":3,"s":5,"id":7538,"u":"phantom%20steed_crb","p":357,"h":1,"n":"Phantom Steed"},{"c":3,"s":5,"id":7539,"u":"physical%20boost_crb","p":407,"h":1,"n":"Physical Boost"},{"c":3,"s":5,"id":7540,"u":"plane%20shift_crb","p":357,"h":1,"n":"Plane Shift"},{"c":3,"s":5,"id":7541,"u":"plant%20form_crb","p":358,"h":1,"n":"Plant Form"},{"c":3,"s":5,"id":7542,"u":"polar%20ray_crb","p":358,"h":1,"n":"Polar Ray"},{"c":3,"s":5,"id":7543,"u":"positive%20luminance_crb","p":394,"h":1,"n":"Positive Luminance"},{"c":3,"s":5,"id":7544,"u":"possession_crb","p":358,"h":1,"n":"Possession"},{"c":3,"s":5,"id":7545,"u":"power%20word%20blind_crb","p":358,"h":1,"n":"Power Word Blind"},{"c":3,"s":5,"id":7546,"u":"power%20word%20kill_crb","p":358,"h":1,"n":"Power Word Kill"},{"c":3,"s":5,"id":7547,"u":"power%20word%20stun_crb","p":359,"h":1,"n":"Power Word Stun"},{"c":3,"s":5,"id":7548,"u":"precious%20metals_crb","p":395,"h":1,"n":"Precious Metals"},{"c":3,"s":5,"id":7549,"u":"prestidigitation_crb","p":359,"h":1,"n":"Prestidigitation"},{"c":3,"s":5,"id":7550,"u":"primal%20herd_crb","p":359,"h":1,"n":"Primal Herd"},{"c":3,"s":5,"id":7551,"u":"primal%20phenomenon_crb","p":359,"h":1,"n":"Primal Phenomenon"},{"c":3,"s":5,"id":7552,"u":"primal%20summons_crb","p":400,"h":1,"n":"Primal Summons"},{"c":3,"s":5,"id":7553,"u":"prismatic%20sphere_crb","p":359,"h":1,"n":"Prismatic Sphere"},{"c":3,"s":5,"id":7554,"u":"prismatic%20spray_crb","p":360,"h":1,"n":"Prismatic Spray"},{"c":3,"s":5,"id":7555,"u":"prismatic%20wall_crb","p":360,"h":1,"n":"Prismatic Wall"},{"c":3,"s":5,"id":7556,"u":"private%20sanctum_crb","p":360,"h":1,"n":"Private Sanctum"},{"c":3,"s":5,"id":7557,"u":"produce%20flame_crb","p":360,"h":1,"n":"Produce Flame"},{"c":3,"s":5,"id":7558,"u":"project%20image_crb","p":360,"h":1,"n":"Project Image"},{"c":3,"s":5,"id":7559,"u":"protection_crb","p":361,"h":1,"n":"Protection"},{"c":3,"s":5,"id":7560,"u":"protective%20ward_crb","p":407,"h":1,"n":"Protective Ward"},{"c":3,"s":5,"id":7561,"u":"protector's%20sacrifice_crb","p":395,"h":1,"n":"Protector's Sacrifice"},{"c":3,"s":5,"id":7562,"u":"protector's%20sphere_crb","p":395,"h":1,"n":"Protector's Sphere"},{"c":3,"s":5,"id":7563,"u":"prying%20eye_crb","p":361,"h":1,"n":"Prying Eye"},{"c":3,"s":5,"id":7564,"u":"pulse%20of%20the%20city_crb","p":395,"h":1,"n":"Pulse Of The City"},{"c":3,"s":5,"id":7565,"u":"punishing%20winds_crb","p":361,"h":1,"n":"Punishing Winds"},{"c":3,"s":5,"id":7566,"u":"purify%20food%20and%20drink_crb","p":362,"h":1,"n":"Purify Food And Drink"},{"c":3,"s":5,"id":7567,"u":"purple%20worm%20sting_crb","p":362,"h":1,"n":"Purple Worm Sting"},{"c":3,"s":5,"id":7568,"u":"pushing%20gust_crb","p":395,"h":1,"n":"Pushing Gust"},{"c":3,"s":5,"id":7569,"u":"quivering%20palm_crb","p":401,"h":1,"n":"Quivering Palm"},{"c":3,"s":5,"id":7570,"u":"raise%20dead_crb","p":362,"h":1,"n":"Raise Dead"},{"c":3,"s":5,"id":7571,"u":"ray%20of%20enfeeblement_crb","p":362,"h":1,"n":"Ray Of Enfeeblement"},{"c":3,"s":5,"id":7572,"u":"ray%20of%20frost_crb","p":362,"h":1,"n":"Ray Of Frost"},{"c":3,"s":5,"id":7573,"u":"read%20aura_crb","p":362,"h":1,"n":"Read Aura"},{"c":3,"s":5,"id":7574,"u":"read%20fate_crb","p":395,"h":1,"n":"Read Fate"},{"c":3,"s":5,"id":7575,"u":"read%20omens_crb","p":363,"h":1,"n":"Read Omens"},{"c":3,"s":5,"id":7576,"u":"rebuke%20death_crb","p":396,"h":1,"n":"Rebuke Death"},{"c":3,"s":5,"id":7577,"u":"regenerate_crb","p":363,"h":1,"n":"Regenerate"},{"c":3,"s":5,"id":7578,"u":"remake_crb","p":363,"h":1,"n":"Remake"},{"c":3,"s":5,"id":7579,"u":"remove%20curse_crb","p":363,"h":1,"n":"Remove Curse"},{"c":3,"s":5,"id":7580,"u":"remove%20disease_crb","p":363,"h":1,"n":"Remove Disease"},{"c":3,"s":5,"id":7581,"u":"remove%20fear_crb","p":363,"h":1,"n":"Remove Fear"},{"c":3,"s":5,"id":7582,"u":"remove%20paralysis_crb","p":363,"h":1,"n":"Remove Paralysis"},{"c":3,"s":5,"id":7583,"u":"repulsion_crb","p":363,"h":1,"n":"Repulsion"},{"c":3,"s":5,"id":7584,"u":"resilient%20sphere_crb","p":364,"h":1,"n":"Resilient Sphere"},{"c":3,"s":5,"id":7585,"u":"resist%20energy_crb","p":364,"h":1,"n":"Resist Energy"},{"c":3,"s":5,"id":7586,"u":"resplendent%20mansion_crb","p":364,"h":1,"n":"Resplendent Mansion"},{"c":3,"s":5,"id":7587,"u":"restoration_crb","p":364,"h":1,"n":"Restoration"},{"c":3,"s":5,"id":7588,"u":"restore%20senses_crb","p":364,"h":1,"n":"Restore Senses"},{"c":3,"s":5,"id":7589,"u":"retributive%20pain_crb","p":396,"h":1,"n":"Retributive Pain"},{"c":3,"s":5,"id":7590,"u":"retrocognition_crb","p":365,"h":1,"n":"Retrocognition"},{"c":3,"s":5,"id":7591,"u":"reverse%20gravity_crb","p":365,"h":1,"n":"Reverse Gravity"},{"c":3,"s":5,"id":7592,"u":"revival_crb","p":366,"h":1,"n":"Revival"},{"c":3,"s":5,"id":7593,"u":"righteous%20might_crb","p":366,"h":1,"n":"Righteous Might"},{"c":3,"s":5,"id":7594,"u":"rope%20trick_crb","p":366,"h":1,"n":"Rope Trick"},{"c":3,"s":5,"id":7595,"u":"safeguard%20secret_crb","p":396,"h":1,"n":"Safeguard Secret"},{"c":3,"s":5,"id":7596,"u":"sanctified%20ground_crb","p":366,"h":1,"n":"Sanctified Ground"},{"c":3,"s":5,"id":7597,"u":"sanctuary_crb","p":366,"h":1,"n":"Sanctuary"},{"c":3,"s":5,"id":7598,"u":"savor%20the%20sting_crb","p":396,"h":1,"n":"Savor The Sting"},{"c":3,"s":5,"id":7599,"u":"scholarly%20recollection_crb","p":396,"h":1,"n":"Scholarly Recollection"},{"c":3,"s":5,"id":7600,"u":"scintillating%20pattern_crb","p":367,"h":1,"n":"Scintillating Pattern"},{"c":3,"s":5,"id":7601,"u":"scrying_crb","p":367,"h":1,"n":"Scrying"},{"c":3,"s":5,"id":7602,"u":"searing%20light_crb","p":367,"h":1,"n":"Searing Light"},{"c":3,"s":5,"id":7603,"u":"secret%20page_crb","p":367,"h":1,"n":"Secret Page"},{"c":3,"s":5,"id":7604,"u":"see%20invisibility_crb","p":367,"h":1,"n":"See Invisibility"},{"c":3,"s":5,"id":7605,"u":"sending_crb","p":367,"h":1,"n":"Sending"},{"c":3,"s":5,"id":7606,"u":"shadow%20blast_crb","p":367,"h":1,"n":"Shadow Blast"},{"c":3,"s":5,"id":7607,"u":"shadow%20siphon_crb","p":368,"h":1,"n":"Shadow Siphon"},{"c":3,"s":5,"id":7608,"u":"shadow%20walk_crb","p":368,"h":1,"n":"Shadow Walk"},{"c":3,"s":5,"id":7609,"u":"shape%20stone_crb","p":368,"h":1,"n":"Shape Stone"},{"c":3,"s":5,"id":7610,"u":"shape%20wood_crb","p":368,"h":1,"n":"Shape Wood"},{"c":3,"s":5,"id":7611,"u":"shapechange_crb","p":368,"h":1,"n":"Shapechange"},{"c":3,"s":5,"id":7612,"u":"shared%20nightmare_crb","p":396,"h":1,"n":"Shared Nightmare"},{"c":3,"s":5,"id":7613,"u":"shatter_crb","p":368,"h":1,"n":"Shatter"},{"c":3,"s":5,"id":7614,"u":"shield_crb","p":368,"h":1,"n":"Shield"},{"c":3,"s":5,"id":7615,"u":"shield%20other_crb","p":369,"h":1,"n":"Shield Other"},{"c":3,"s":5,"id":7616,"u":"shifting%20form_crb","p":407,"h":1,"n":"Shifting Form"},{"c":3,"s":5,"id":7617,"u":"shillelagh_crb","p":369,"h":1,"n":"Shillelagh"},{"c":3,"s":5,"id":7618,"u":"shocking%20grasp_crb","p":369,"h":1,"n":"Shocking Grasp"},{"c":3,"s":5,"id":7619,"u":"shrink_crb","p":369,"h":1,"n":"Shrink"},{"c":3,"s":5,"id":7620,"u":"shrink%20item_crb","p":369,"h":1,"n":"Shrink Item"},{"c":3,"s":5,"id":7621,"u":"sigil_crb","p":369,"h":1,"n":"Sigil"},{"c":3,"s":5,"id":7622,"u":"silence_crb","p":369,"h":1,"n":"Silence"},{"c":3,"s":5,"id":7623,"u":"sleep_crb","p":370,"h":1,"n":"Sleep"},{"c":3,"s":5,"id":7624,"u":"slow_crb","p":370,"h":1,"n":"Slow"},{"c":3,"s":5,"id":7625,"u":"solid%20fog_crb","p":370,"h":1,"n":"Solid Fog"},{"c":3,"s":5,"id":7626,"u":"soothe_crb","p":370,"h":1,"n":"Soothe"},{"c":3,"s":5,"id":7627,"u":"soothing%20ballad_crb","p":387,"h":1,"n":"Soothing Ballad"},{"c":3,"s":5,"id":7628,"u":"soothing%20words_crb","p":396,"h":1,"n":"Soothing Words"},{"c":3,"s":5,"id":7629,"u":"sound%20burst_crb","p":370,"h":1,"n":"Sound Burst"},{"c":3,"s":5,"id":7630,"u":"speak%20with%20animals_crb","p":370,"h":1,"n":"Speak With Animals"},{"c":3,"s":5,"id":7631,"u":"speak%20with%20plants_crb","p":370,"h":1,"n":"Speak With Plants"},{"c":3,"s":5,"id":7632,"u":"spectral%20hand_crb","p":370,"h":1,"n":"Spectral Hand"},{"c":3,"s":5,"id":7633,"u":"spell%20immunity_crb","p":371,"h":1,"n":"Spell Immunity"},{"c":3,"s":5,"id":7634,"u":"spell%20turning_crb","p":371,"h":1,"n":"Spell Turning"},{"c":3,"s":5,"id":7635,"u":"spellwrack_crb","p":371,"h":1,"n":"Spellwrack"},{"c":3,"s":5,"id":7636,"u":"spider%20climb_crb","p":371,"h":1,"n":"Spider Climb"},{"c":3,"s":5,"id":7637,"u":"spider%20sting_crb","p":371,"h":1,"n":"Spider Sting"},{"c":3,"s":5,"id":7638,"u":"spirit%20blast_crb","p":371,"h":1,"n":"Spirit Blast"},{"c":3,"s":5,"id":7639,"u":"spirit%20link_crb","p":371,"h":1,"n":"Spirit Link"},{"c":3,"s":5,"id":7640,"u":"spirit%20song_crb","p":372,"h":1,"n":"Spirit Song"},{"c":3,"s":5,"id":7641,"u":"spiritual%20epidemic_crb","p":372,"h":1,"n":"Spiritual Epidemic"},{"c":3,"s":5,"id":7642,"u":"spiritual%20guardian_crb","p":373,"h":1,"n":"Spiritual Guardian"},{"c":3,"s":5,"id":7643,"u":"spiritual%20weapon_crb","p":373,"h":1,"n":"Spiritual Weapon"},{"c":3,"s":5,"id":7644,"u":"splash%20of%20art_crb","p":397,"h":1,"n":"Splash Of Art"},{"c":3,"s":5,"id":7645,"u":"stabilize_crb","p":373,"h":1,"n":"Stabilize"},{"c":3,"s":5,"id":7646,"u":"status_crb","p":373,"h":1,"n":"Status"},{"c":3,"s":5,"id":7647,"u":"stinking%20cloud_crb","p":373,"h":1,"n":"Stinking Cloud"},{"c":3,"s":5,"id":7648,"u":"stone%20tell_crb","p":374,"h":1,"n":"Stone Tell"},{"c":3,"s":5,"id":7649,"u":"stone%20to%20flesh_crb","p":374,"h":1,"n":"Stone To Flesh"},{"c":3,"s":5,"id":7650,"u":"stoneskin_crb","p":374,"h":1,"n":"Stoneskin"},{"c":3,"s":5,"id":7651,"u":"storm%20lord_crb","p":400,"h":1,"n":"Storm Lord"},{"c":3,"s":5,"id":7652,"u":"storm%20of%20vengeance_crb","p":374,"h":1,"n":"Storm Of Vengeance"},{"c":3,"s":5,"id":7653,"u":"stormwind%20flight_crb","p":400,"h":1,"n":"Stormwind Flight"},{"c":3,"s":5,"id":7654,"u":"subconscious%20suggestion_crb","p":374,"h":1,"n":"Subconscious Suggestion"},{"c":3,"s":5,"id":7655,"u":"sudden%20shift_crb","p":397,"h":1,"n":"Sudden Shift"},{"c":3,"s":5,"id":7656,"u":"suggestion_crb","p":374,"h":1,"n":"Suggestion"},{"c":3,"s":5,"id":7657,"u":"summon%20animal_crb","p":375,"h":1,"n":"Summon Animal"},{"c":3,"s":5,"id":7658,"u":"summon%20celestial_crb","p":375,"h":1,"n":"Summon Celestial"},{"c":3,"s":5,"id":7659,"u":"summon%20construct_crb","p":375,"h":1,"n":"Summon Construct"},{"c":3,"s":5,"id":7660,"u":"summon%20dragon_crb","p":375,"h":1,"n":"Summon Dragon"},{"c":3,"s":5,"id":7661,"u":"summon%20elemental_crb","p":375,"h":1,"n":"Summon Elemental"},{"c":3,"s":5,"id":7662,"u":"summon%20entity_crb","p":375,"h":1,"n":"Summon Entity"},{"c":3,"s":5,"id":7663,"u":"summon%20fey_crb","p":375,"h":1,"n":"Summon Fey"},{"c":3,"s":5,"id":7664,"u":"summon%20fiend_crb","p":375,"h":1,"n":"Summon Fiend"},{"c":3,"s":5,"id":7665,"u":"summon%20giant_crb","p":376,"h":1,"n":"Summon Giant"},{"c":3,"s":5,"id":7666,"u":"summon%20plant%20or%20fungus_crb","p":376,"h":1,"n":"Summon Plant Or Fungus"},{"c":3,"s":5,"id":7667,"u":"sunburst_crb","p":376,"h":1,"n":"Sunburst"},{"c":3,"s":5,"id":7668,"u":"swamp%20of%20sloth_crb","p":405,"h":1,"n":"Swamp Of Sloth"},{"c":3,"s":5,"id":7669,"u":"sweet%20dream_crb","p":397,"h":1,"n":"Sweet Dream"},{"c":3,"s":5,"id":7670,"u":"synaptic%20pulse_crb","p":376,"h":1,"n":"Synaptic Pulse"},{"c":3,"s":5,"id":7671,"u":"synesthesia_crb","p":376,"h":1,"n":"Synesthesia"},{"c":3,"s":5,"id":7672,"u":"take%20its%20course_crb","p":397,"h":1,"n":"Take Its Course"},{"c":3,"s":5,"id":7673,"u":"talking%20corpse_crb","p":376,"h":1,"n":"Talking Corpse"},{"c":3,"s":5,"id":7674,"u":"tanglefoot_crb","p":377,"h":1,"n":"Tanglefoot"},{"c":3,"s":5,"id":7675,"u":"tangling%20creepers_crb","p":377,"h":1,"n":"Tangling Creepers"},{"c":3,"s":5,"id":7676,"u":"telekinetic%20haul_crb","p":377,"h":1,"n":"Telekinetic Haul"},{"c":3,"s":5,"id":7677,"u":"telekinetic%20maneuver_crb","p":377,"h":1,"n":"Telekinetic Maneuver"},{"c":3,"s":5,"id":7678,"u":"telekinetic%20projectile_crb","p":377,"h":1,"n":"Telekinetic Projectile"},{"c":3,"s":5,"id":7679,"u":"telepathic%20bond_crb","p":377,"h":1,"n":"Telepathic Bond"},{"c":3,"s":5,"id":7680,"u":"telepathic%20demand_crb","p":377,"h":1,"n":"Telepathic Demand"},{"c":3,"s":5,"id":7681,"u":"telepathy_crb","p":377,"h":1,"n":"Telepathy"},{"c":3,"s":5,"id":7682,"u":"teleport_crb","p":378,"h":1,"n":"Teleport"},{"c":3,"s":5,"id":7683,"u":"tempest%20surge_crb","p":400,"h":1,"n":"Tempest Surge"},{"c":3,"s":5,"id":7684,"u":"tempt%20fate_crb","p":397,"h":1,"n":"Tempt Fate"},{"c":3,"s":5,"id":7685,"u":"tentacular%20limbs_crb","p":405,"h":1,"n":"Tentacular Limbs"},{"c":3,"s":5,"id":7686,"u":"tidal%20surge_crb","p":397,"h":1,"n":"Tidal Surge"},{"c":3,"s":5,"id":7687,"u":"time%20stop_crb","p":378,"h":1,"n":"Time Stop"},{"c":3,"s":5,"id":7688,"u":"tongues_crb","p":378,"h":1,"n":"Tongues"},{"c":3,"s":5,"id":7689,"u":"touch%20of%20idiocy_crb","p":378,"h":1,"n":"Touch Of Idiocy"},{"c":3,"s":5,"id":7690,"u":"touch%20of%20obedience_crb","p":398,"h":1,"n":"Touch Of Obedience"},{"c":3,"s":5,"id":7691,"u":"touch%20of%20the%20moon_crb","p":398,"h":1,"n":"Touch Of The Moon"},{"c":3,"s":5,"id":7692,"u":"touch%20of%20undeath_crb","p":398,"h":1,"n":"Touch Of Undeath"},{"c":3,"s":5,"id":7693,"u":"traveler's%20transit_crb","p":398,"h":1,"n":"Traveler's Transit"},{"c":3,"s":5,"id":7694,"u":"tree%20shape_crb","p":378,"h":1,"n":"Tree Shape"},{"c":3,"s":5,"id":7695,"u":"tree%20stride_crb","p":378,"h":1,"n":"Tree Stride"},{"c":3,"s":5,"id":7696,"u":"trickster's%20twin_crb","p":398,"h":1,"n":"Trickster's Twin"},{"c":3,"s":5,"id":7697,"u":"triple%20time_crb","p":387,"h":1,"n":"Triple Time"},{"c":3,"s":5,"id":7698,"u":"true%20seeing_crb","p":378,"h":1,"n":"True Seeing"},{"c":3,"s":5,"id":7699,"u":"true%20strike_crb","p":379,"h":1,"n":"True Strike"},{"c":3,"s":5,"id":7700,"u":"true%20target_crb","p":379,"h":1,"n":"True Target"},{"c":3,"s":5,"id":7701,"u":"uncontrollable%20dance_crb","p":379,"h":1,"n":"Uncontrollable Dance"},{"c":3,"s":5,"id":7702,"u":"undeath's%20blessing_crb","p":405,"h":1,"n":"Undeath's Blessing"},{"c":3,"s":5,"id":7703,"u":"undetectable%20alignment_crb","p":379,"h":1,"n":"Undetectable Alignment"},{"c":3,"s":5,"id":7704,"u":"unfathomable%20song_crb","p":379,"h":1,"n":"Unfathomable Song"},{"c":3,"s":5,"id":7705,"u":"unfettered%20pack_crb","p":379,"h":1,"n":"Unfettered Pack"},{"c":3,"s":5,"id":7706,"u":"unimpeded%20stride_crb","p":398,"h":1,"n":"Unimpeded Stride"},{"c":3,"s":5,"id":7707,"u":"unity_crb","p":398,"h":1,"n":"Unity"},{"c":3,"s":5,"id":7708,"u":"unrelenting%20observation_crb","p":379,"h":1,"n":"Unrelenting Observation"},{"c":3,"s":5,"id":7709,"u":"unseen%20servant_crb","p":380,"h":1,"n":"Unseen Servant"},{"c":3,"s":5,"id":7710,"u":"unusual%20anatomy_crb","p":405,"h":1,"n":"Unusual Anatomy"},{"c":3,"s":5,"id":7711,"u":"vampiric%20exsanguination_crb","p":380,"h":1,"n":"Vampiric Exsanguination"},{"c":3,"s":5,"id":7712,"u":"vampiric%20touch_crb","p":380,"h":1,"n":"Vampiric Touch"},{"c":3,"s":5,"id":7713,"u":"veil_crb","p":380,"h":1,"n":"Veil"},{"c":3,"s":5,"id":7714,"u":"veil%20of%20confidence_crb","p":398,"h":1,"n":"Veil Of Confidence"},{"c":3,"s":5,"id":7715,"u":"ventriloquism_crb","p":381,"h":1,"n":"Ventriloquism"},{"c":3,"s":5,"id":7716,"u":"vibrant%20pattern_crb","p":381,"h":1,"n":"Vibrant Pattern"},{"c":3,"s":5,"id":7717,"u":"vibrant%20thorns_crb","p":399,"h":1,"n":"Vibrant Thorns"},{"c":3,"s":5,"id":7718,"u":"vigilant%20eye_crb","p":407,"h":1,"n":"Vigilant Eye"},{"c":3,"s":5,"id":7719,"u":"visions%20of%20danger_crb","p":381,"h":1,"n":"Visions Of Danger"},{"c":3,"s":5,"id":7720,"u":"vital%20beacon_crb","p":382,"h":1,"n":"Vital Beacon"},{"c":3,"s":5,"id":7721,"u":"volcanic%20eruption_crb","p":382,"h":1,"n":"Volcanic Eruption"},{"c":3,"s":5,"id":7722,"u":"wail%20of%20the%20banshee_crb","p":382,"h":1,"n":"Wail Of The Banshee"},{"c":3,"s":5,"id":7723,"u":"waking%20nightmare_crb","p":399,"h":1,"n":"Waking Nightmare"},{"c":3,"s":5,"id":7724,"u":"wall%20of%20fire_crb","p":382,"h":1,"n":"Wall Of Fire"},{"c":3,"s":5,"id":7725,"u":"wall%20of%20force_crb","p":382,"h":1,"n":"Wall Of Force"},{"c":3,"s":5,"id":7726,"u":"wall%20of%20ice_crb","p":382,"h":1,"n":"Wall Of Ice"},{"c":3,"s":5,"id":7727,"u":"wall%20of%20stone_crb","p":383,"h":1,"n":"Wall Of Stone"},{"c":3,"s":5,"id":7728,"u":"wall%20of%20thorns_crb","p":383,"h":1,"n":"Wall Of Thorns"},{"c":3,"s":5,"id":7729,"u":"wall%20of%20wind_crb","p":383,"h":1,"n":"Wall Of Wind"},{"c":3,"s":5,"id":7730,"u":"wanderer's%20guide_crb","p":383,"h":1,"n":"Wanderer's Guide"},{"c":3,"s":5,"id":7731,"u":"warp%20mind_crb","p":383,"h":1,"n":"Warp Mind"},{"c":3,"s":5,"id":7732,"u":"warped%20terrain_crb","p":407,"h":1,"n":"Warped Terrain"},{"c":3,"s":5,"id":7733,"u":"water%20breathing_crb","p":384,"h":1,"n":"Water Breathing"},{"c":3,"s":5,"id":7734,"u":"water%20walk_crb","p":384,"h":1,"n":"Water Walk"},{"c":3,"s":5,"id":7735,"u":"weapon%20of%20judgment_crb","p":384,"h":1,"n":"Weapon Of Judgment"},{"c":3,"s":5,"id":7736,"u":"weapon%20storm_crb","p":384,"h":1,"n":"Weapon Storm"},{"c":3,"s":5,"id":7737,"u":"weapon%20surge_crb","p":399,"h":1,"n":"Weapon Surge"},{"c":3,"s":5,"id":7738,"u":"web_crb","p":384,"h":1,"n":"Web"},{"c":3,"s":5,"id":7739,"u":"weird_crb","p":385,"h":1,"n":"Weird"},{"c":3,"s":5,"id":7740,"u":"wholeness%20of%20body_crb","p":402,"h":1,"n":"Wholeness Of Body"},{"c":3,"s":5,"id":7741,"u":"wild%20morph_crb","p":400,"h":1,"n":"Wild Morph"},{"c":3,"s":5,"id":7742,"u":"wild%20shape_crb","p":401,"h":1,"n":"Wild Shape"},{"c":3,"s":5,"id":7743,"u":"wild%20winds%20stance_crb","p":402,"h":1,"n":"Wild Winds Stance"},{"c":3,"s":5,"id":7744,"u":"wind%20jump_crb","p":402,"h":1,"n":"Wind Jump"},{"c":3,"s":5,"id":7745,"u":"wind%20walk_crb","p":385,"h":1,"n":"Wind Walk"},{"c":3,"s":5,"id":7746,"u":"wish_crb","p":385,"h":1,"n":"Wish"},{"c":3,"s":5,"id":7747,"u":"word%20of%20freedom_crb","p":399,"h":1,"n":"Word Of Freedom"},{"c":3,"s":5,"id":7748,"u":"word%20of%20truth_crb","p":399,"h":1,"n":"Word Of Truth"},{"c":3,"s":5,"id":7749,"u":"you're%20mine_crb","p":406,"h":1,"n":"You're Mine"},{"c":3,"s":5,"id":7750,"u":"zeal%20for%20battle_crb","p":399,"h":1,"n":"Zeal For Battle"},{"c":3,"s":5,"id":7751,"u":"zealous%20conviction_crb","p":385,"h":1,"n":"Zealous Conviction"},{"c":3,"s":5,"id":7752,"u":"zone%20of%20truth_crb","p":385,"h":1,"n":"Zone Of Truth"},{"c":3,"s":15,"id":7753,"u":"exchange%20image_aoa3","p":73,"h":1,"n":"Exchange Image"},{"c":3,"s":15,"id":7754,"u":"forgotten%20lines_aoa3","p":73,"h":1,"n":"Forgotten Lines"},{"c":3,"s":15,"id":7755,"u":"imprint%20message_aoa3","p":74,"h":1,"n":"Imprint Message"},{"c":3,"s":15,"id":7756,"u":"join%20pasts_aoa3","p":74,"h":1,"n":"Join Pasts"},{"c":3,"s":15,"id":7757,"u":"object%20reading_aoa3","p":74,"h":1,"n":"Object Reading"},{"c":3,"s":15,"id":7758,"u":"silver's%20refrain_aoa3","p":74,"h":1,"n":"Silver's Refrain"},{"c":3,"s":15,"id":7759,"u":"spiritual%20anamnesis_aoa3","p":74,"h":1,"n":"Spiritual Anamnesis"},{"c":3,"s":16,"id":7760,"u":"electrified%20crystal%20ward_aoa4","p":75,"h":1,"n":"Electrified Crystal Ward"},{"c":3,"s":16,"id":7761,"u":"practice%20makes%20perfect_aoa4","p":63,"h":1,"n":"Practice Makes Perfect"},{"c":3,"s":16,"id":7762,"u":"tireless%20worker_aoa4","p":63,"h":1,"n":"Tireless Worker"},{"c":3,"s":18,"id":7763,"u":"apex%20companion_aoa6","p":77,"h":1,"n":"Apex Companion"},{"c":3,"s":18,"id":7764,"u":"song%20of%20the%20fallen_aoa6","p":77,"h":1,"n":"Song Of The Fallen"},{"c":3,"s":20,"id":7765,"u":"admonishing%20ray_aoe2","p":76,"h":1,"n":"Admonishing Ray"},{"c":3,"s":20,"id":7766,"u":"magical%20fetters_aoe2","p":77,"h":1,"n":"Magical Fetters"},{"c":3,"s":20,"id":7767,"u":"maze%20of%20locked%20doors_aoe2","p":77,"h":1,"n":"Maze Of Locked Doors"},{"c":3,"s":20,"id":7768,"u":"putrefy%20food%20and%20drink_aoe2","p":77,"h":1,"n":"Putrefy Food And Drink"},{"c":3,"s":20,"id":7769,"u":"speaking%20sky_aoe2","p":79,"h":1,"n":"Speaking Sky"},{"c":3,"s":20,"id":7770,"u":"steal%20the%20sky_aoe2","p":79,"h":1,"n":"Steal The Sky"},{"c":3,"s":22,"id":7771,"u":"imp%20sting_aoe4","p":80,"h":1,"n":"Imp Sting"},{"c":3,"s":22,"id":7772,"u":"leng%20sting_aoe4","p":80,"h":1,"n":"Leng Sting"},{"c":3,"s":22,"id":7773,"u":"linnorm%20sting_aoe4","p":81,"h":1,"n":"Linnorm Sting"},{"c":3,"s":22,"id":7774,"u":"swarming%20wasp%20stings_aoe4","p":81,"h":1,"n":"Swarming Wasp Stings"},{"c":3,"s":22,"id":7775,"u":"wyvern%20sting_aoe4","p":81,"h":1,"n":"Wyvern Sting"},{"c":3,"s":23,"id":7776,"u":"ordained%20purpose_aoe5","p":75,"h":1,"n":"Ordained Purpose"},{"c":3,"s":23,"id":7777,"u":"split%20the%20tongue_aoe5","p":75,"h":1,"n":"Split The Tongue"},{"c":3,"s":24,"id":7778,"u":"divinity%20leech_aoe6","p":75,"h":1,"n":"Divinity Leech"},{"c":3,"s":24,"id":7779,"u":"prismatic%20shield_aoe6","p":75,"h":1,"n":"Prismatic Shield"},{"c":3,"s":25,"id":7780,"u":"worm's%20repast_av1","p":80,"h":1,"n":"Worm's Repast"},{"c":3,"s":26,"id":7781,"u":"daydreamer's%20curse_av2","p":73,"h":1,"n":"Daydreamer's Curse"},{"c":3,"s":26,"id":7782,"u":"savant's%20curse_av2","p":73,"h":1,"n":"Savant's Curse"},{"c":3,"s":27,"id":7783,"u":"call%20the%20blood_av3","p":75,"h":1,"n":"Call The Blood"},{"c":3,"s":27,"id":7784,"u":"ectoplasmic%20expulsion_av3","p":75,"h":1,"n":"Ectoplasmic Expulsion"},{"c":3,"s":27,"id":7785,"u":"fearful%20feast_av3","p":65,"h":1,"n":"Fearful Feast"},{"c":3,"s":27,"id":7786,"u":"lift%20nature's%20caul_av3","p":65,"h":1,"n":"Lift Nature's Caul"},{"c":3,"s":28,"id":7787,"u":"breath%20of%20drought_ec1","p":78,"h":1,"n":"Breath Of Drought"},{"c":3,"s":28,"id":7788,"u":"personal%20rain%20cloud_ec1","p":78,"h":1,"n":"Personal Rain Cloud"},{"c":3,"s":28,"id":7789,"u":"rime%20slick_ec1","p":78,"h":1,"n":"Rime Slick"},{"c":3,"s":28,"id":7790,"u":"scouring%20sand_ec1","p":78,"h":1,"n":"Scouring Sand"},{"c":3,"s":28,"id":7791,"u":"sea%20surge_ec1","p":78,"h":1,"n":"Sea Surge"},{"c":3,"s":28,"id":7792,"u":"sudden%20bolt_ec1","p":79,"h":1,"n":"Sudden Bolt"},{"c":3,"s":28,"id":7793,"u":"unseasonable%20squall_ec1","p":79,"h":1,"n":"Unseasonable Squall"},{"c":3,"s":28,"id":7794,"u":"verdant%20sprout_ec1","p":79,"h":1,"n":"Verdant Sprout"},{"c":3,"s":29,"id":7795,"u":"clownish%20curse_ec2","p":77,"h":1,"n":"Clownish Curse"},{"c":3,"s":29,"id":7796,"u":"favorable%20review_ec2","p":77,"h":1,"n":"Favorable Review"},{"c":3,"s":29,"id":7797,"u":"pillar%20of%20water_ec2","p":77,"h":1,"n":"Pillar Of Water"},{"c":3,"s":29,"id":7798,"u":"pyrotechnics_ec2","p":77,"h":1,"n":"Pyrotechnics"},{"c":3,"s":8,"id":7799,"u":"ravening%20maw_ec3","p":67,"h":1,"n":"Ravening Maw"},{"c":3,"s":30,"id":7800,"u":"blood%20feast_ec4","p":74,"h":1,"n":"Blood Feast"},{"c":3,"s":30,"id":7801,"u":"entrancing%20eyes_ec4","p":74,"h":1,"n":"Entrancing Eyes"},{"c":3,"s":30,"id":7802,"u":"necrotic%20radiation_ec4","p":75,"h":1,"n":"Necrotic Radiation"},{"c":3,"s":31,"id":7803,"u":"blightburn%20blast_ec5","p":73,"h":1,"n":"Blightburn Blast"},{"c":3,"s":31,"id":7804,"u":"control%20sand_ec5","p":73,"h":1,"n":"Control Sand"},{"c":3,"s":31,"id":7805,"u":"pillars%20of%20sand_ec5","p":74,"h":1,"n":"Pillars Of Sand"},{"c":3,"s":32,"id":7806,"u":"astral%20labyrinth_ec6","p":76,"h":1,"n":"Astral Labyrinth"},{"c":3,"s":32,"id":7807,"u":"deluge_ec6","p":76,"h":1,"n":"Deluge"},{"c":3,"s":32,"id":7808,"u":"devour%20life_ec6","p":76,"h":1,"n":"Devour Life"},{"c":3,"s":32,"id":7809,"u":"prying%20survey_ec6","p":76,"h":1,"n":"Prying Survey"},{"c":3,"s":32,"id":7810,"u":"undermine%20reality_ec6","p":76,"h":1,"n":"Undermine Reality"},{"c":3,"s":32,"id":7811,"u":"upheaval_ec6","p":77,"h":1,"n":"Upheaval"},{"c":3,"s":34,"id":7812,"u":"aura%20of%20the%20unremarkable_frp1","p":77,"h":1,"n":"Aura Of The Unremarkable"},{"c":3,"s":34,"id":7813,"u":"return%20beacon_frp1","p":77,"h":1,"n":"Return Beacon"},{"c":3,"s":34,"id":7814,"u":"wronged%20monk's%20wrath_frp1","p":77,"h":1,"n":"Wronged Monk's Wrath"},{"c":3,"s":36,"id":7815,"u":"cleansing%20flames_frp3","p":74,"h":1,"n":"Cleansing Flames"},{"c":3,"s":36,"id":7816,"u":"rejuvenating%20flames_frp3","p":74,"h":1,"n":"Rejuvenating Flames"},{"c":3,"s":36,"id":7817,"u":"shroud%20of%20flame_frp3","p":74,"h":1,"n":"Shroud Of Flame"},{"c":3,"s":6,"id":7818,"u":"invoke%20the%20crimson%20oath_locg","p":90,"h":1,"n":"Invoke The Crimson Oath"},{"c":3,"s":6,"id":7819,"u":"light%20of%20revelation_locg","p":91,"h":1,"n":"Light Of Revelation"},{"c":3,"s":6,"id":7820,"u":"perfect%20strike_locg","p":131,"h":1,"n":"Perfect Strike"},{"c":3,"s":6,"id":7821,"u":"sun%20blade_locg","p":91,"h":1,"n":"Sun Blade"},{"c":3,"s":51,"id":7822,"u":"acid%20storm_logm","p":106,"h":1,"n":"Acid Storm"},{"c":3,"s":51,"id":7823,"u":"acidic%20burst_logm","p":106,"h":1,"n":"Acidic Burst"},{"c":3,"s":51,"id":7824,"u":"adapt%20self_logm","p":112,"h":1,"n":"Adapt Self"},{"c":3,"s":51,"id":7825,"u":"adaptive%20ablation_logm","p":112,"h":1,"n":"Adaptive Ablation"},{"c":3,"s":51,"id":7826,"u":"agitate_logm","p":106,"h":1,"n":"Agitate"},{"c":3,"s":51,"id":7827,"u":"animus%20mine_logm","p":106,"h":1,"n":"Animus Mine"},{"c":3,"s":51,"id":7828,"u":"anticipate%20peril_logm","p":107,"h":1,"n":"Anticipate Peril"},{"c":3,"s":51,"id":7829,"u":"asterism_logm","p":117,"h":1,"n":"Asterism"},{"c":3,"s":51,"id":7830,"u":"befuddle_logm","p":107,"h":1,"n":"Befuddle"},{"c":3,"s":51,"id":7831,"u":"bottle%20the%20storm_logm","p":115,"h":1,"n":"Bottle The Storm"},{"c":3,"s":51,"id":7832,"u":"brand%20the%20impenitent_logm","p":107,"h":1,"n":"Brand The Impenitent"},{"c":3,"s":51,"id":7833,"u":"charged%20javelin_logm","p":115,"h":1,"n":"Charged Javelin"},{"c":3,"s":51,"id":7834,"u":"chilling%20spray_logm","p":107,"h":1,"n":"Chilling Spray"},{"c":3,"s":51,"id":7835,"u":"cup%20of%20dust_logm","p":107,"h":1,"n":"Cup Of Dust"},{"c":3,"s":51,"id":7836,"u":"delay%20consequence_logm","p":118,"h":1,"n":"Delay Consequence"},{"c":3,"s":51,"id":7837,"u":"diamond%20dust_logm","p":112,"h":1,"n":"Diamond Dust"},{"c":3,"s":51,"id":7838,"u":"divine%20plagues_logm","p":115,"h":1,"n":"Divine Plagues"},{"c":3,"s":51,"id":7839,"u":"door%20to%20beyond_logm","p":119,"h":1,"n":"Door To Beyond"},{"c":3,"s":51,"id":7840,"u":"draconic%20barrage_logm","p":119,"h":1,"n":"Draconic Barrage"},{"c":3,"s":51,"id":7841,"u":"dust%20storm_logm","p":114,"h":1,"n":"Dust Storm"},{"c":3,"s":51,"id":7842,"u":"dutiful%20challenge_logm","p":114,"h":1,"n":"Dutiful Challenge"},{"c":3,"s":51,"id":7843,"u":"ectoplasmic%20interstice_logm","p":117,"h":1,"n":"Ectoplasmic Interstice"},{"c":3,"s":51,"id":7844,"u":"eject%20soul_logm","p":117,"h":1,"n":"Eject Soul"},{"c":3,"s":51,"id":7845,"u":"empty%20inside_logm","p":119,"h":1,"n":"Empty Inside"},{"c":3,"s":51,"id":7846,"u":"endure_logm","p":107,"h":1,"n":"Endure"},{"c":3,"s":51,"id":7847,"u":"ephemeral%20hazards_logm","p":113,"h":1,"n":"Ephemeral Hazards"},{"c":3,"s":51,"id":7848,"u":"expeditious%20excavation_logm","p":107,"h":1,"n":"Expeditious Excavation"},{"c":3,"s":51,"id":7849,"u":"fallow%20field_logm","p":113,"h":1,"n":"Fallow Field"},{"c":3,"s":51,"id":7850,"u":"feast%20of%20ashes_logm","p":107,"h":1,"n":"Feast Of Ashes"},{"c":3,"s":51,"id":7851,"u":"font%20of%20serenity_logm","p":116,"h":1,"n":"Font Of Serenity"},{"c":3,"s":51,"id":7852,"u":"foul%20miasma_logm","p":115,"h":1,"n":"Foul Miasma"},{"c":3,"s":51,"id":7853,"u":"fungal%20hyphae_logm","p":108,"h":1,"n":"Fungal Hyphae"},{"c":3,"s":51,"id":7854,"u":"ghostly%20transcription_logm","p":115,"h":1,"n":"Ghostly Transcription"},{"c":3,"s":51,"id":7855,"u":"gravity%20well_logm","p":108,"h":1,"n":"Gravity Well"},{"c":3,"s":51,"id":7856,"u":"hyperfocus_logm","p":113,"h":1,"n":"Hyperfocus"},{"c":3,"s":51,"id":7857,"u":"ill%20omen_logm","p":108,"h":1,"n":"Ill Omen"},{"c":3,"s":51,"id":7858,"u":"iron%20gut_logm","p":108,"h":1,"n":"Iron Gut"},{"c":3,"s":51,"id":7859,"u":"lament_logm","p":116,"h":1,"n":"Lament"},{"c":3,"s":51,"id":7860,"u":"liberating%20command_logm","p":108,"h":1,"n":"Liberating Command"},{"c":3,"s":51,"id":7861,"u":"message%20rune_logm","p":108,"h":1,"n":"Message Rune"},{"c":3,"s":51,"id":7862,"u":"oathkeeper's%20insignia_logm","p":114,"h":1,"n":"Oathkeeper's Insignia"},{"c":3,"s":51,"id":7863,"u":"object%20memory_logm","p":118,"h":1,"n":"Object Memory"},{"c":3,"s":51,"id":7864,"u":"overflowing%20sorrow_logm","p":116,"h":1,"n":"Overflowing Sorrow"},{"c":3,"s":51,"id":7865,"u":"parch_logm","p":114,"h":1,"n":"Parch"},{"c":3,"s":51,"id":7866,"u":"penumbral%20shroud_logm","p":109,"h":1,"n":"Penumbral Shroud"},{"c":3,"s":51,"id":7867,"u":"redact_logm","p":114,"h":1,"n":"Redact"},{"c":3,"s":51,"id":7868,"u":"reflective%20scales_logm","p":109,"h":1,"n":"Reflective Scales"},{"c":3,"s":51,"id":7869,"u":"remember%20the%20lost_logm","p":119,"h":1,"n":"Remember The Lost"},{"c":3,"s":51,"id":7870,"u":"roar%20of%20the%20wyrm_logm","p":119,"h":1,"n":"Roar Of The Wyrm"},{"c":3,"s":51,"id":7871,"u":"share%20burden_logm","p":116,"h":1,"n":"Share Burden"},{"c":3,"s":51,"id":7872,"u":"share%20lore_logm","p":109,"h":1,"n":"Share Lore"},{"c":3,"s":51,"id":7873,"u":"shattering%20gem_logm","p":109,"h":1,"n":"Shattering Gem"},{"c":3,"s":51,"id":7874,"u":"shifting%20sand_logm","p":110,"h":1,"n":"Shifting Sand"},{"c":3,"s":51,"id":7875,"u":"shockwave_logm","p":110,"h":1,"n":"Shockwave"},{"c":3,"s":51,"id":7876,"u":"show%20the%20way_logm","p":110,"h":1,"n":"Show The Way"},{"c":3,"s":51,"id":7877,"u":"slough%20skin_logm","p":110,"h":1,"n":"Slough Skin"},{"c":3,"s":51,"id":7878,"u":"stasis_logm","p":118,"h":1,"n":"Stasis"},{"c":3,"s":51,"id":7879,"u":"swarm%20form_logm","p":118,"h":1,"n":"Swarm Form"},{"c":3,"s":51,"id":7880,"u":"swarmsense_logm","p":117,"h":1,"n":"Swarmsense"},{"c":3,"s":51,"id":7881,"u":"temporary%20tool_logm","p":110,"h":1,"n":"Temporary Tool"},{"c":3,"s":51,"id":7882,"u":"tether_logm","p":111,"h":1,"n":"Tether"},{"c":3,"s":51,"id":7883,"u":"time%20beacon_logm","p":111,"h":1,"n":"Time Beacon"},{"c":3,"s":51,"id":7884,"u":"whirling%20scarves_logm","p":111,"h":1,"n":"Whirling Scarves"},{"c":3,"s":51,"id":7885,"u":"winter%20bolt_logm","p":112,"h":1,"n":"Winter Bolt"},{"c":3,"s":51,"id":7886,"u":"withering%20grasp_logm","p":112,"h":1,"n":"Withering Grasp"},{"c":3,"s":51,"id":7887,"u":"zenith%20star_logm","p":117,"h":1,"n":"Zenith Star"},{"c":3,"s":52,"id":7888,"u":"achaekek's%20clutch_lol","p":58,"h":1,"n":"Achaekek's Clutch"},{"c":3,"s":52,"id":7889,"u":"all%20is%20one%2c%20one%20is%20all_lol","p":65,"h":1,"n":"All Is One, One Is All"},{"c":3,"s":52,"id":7890,"u":"aromatic%20lure_lol","p":37,"h":1,"n":"Aromatic Lure"},{"c":3,"s":52,"id":7891,"u":"glacial%20heart_lol","p":32,"h":1,"n":"Glacial Heart"},{"c":3,"s":52,"id":7892,"u":"halcyon%20infusion_lol","p":66,"h":1,"n":"Halcyon Infusion"},{"c":3,"s":52,"id":7893,"u":"rebounding%20barrier_lol","p":37,"h":1,"n":"Rebounding Barrier"},{"c":3,"s":52,"id":7894,"u":"shall%20not%20falter%2c%20shall%20not%20rout_lol","p":69,"h":1,"n":"Shall Not Falter, Shall Not Rout"},{"c":3,"s":52,"id":7895,"u":"spirit%20object_lol","p":32,"h":1,"n":"Spirit Object"},{"c":3,"s":52,"id":7896,"u":"sun's%20fury_lol","p":101,"h":1,"n":"Sun's Fury"},{"c":3,"s":47,"id":7897,"u":"familiar%20form_lopsg","p":5500,"h":1,"n":"Familiar Form"},{"c":3,"s":47,"id":7898,"u":"perseis's%20precautions_lopsg","p":124,"h":1,"n":"Perseis's Precautions"},{"c":3,"s":47,"id":7899,"u":"spellmaster's%20ward_lopsg","p":5500,"h":1,"n":"Spellmaster's Ward"},{"c":3,"s":47,"id":7900,"u":"transcribe%20moment_lopsg","p":46,"h":1,"n":"Transcribe Moment"},{"c":3,"s":48,"id":7901,"u":"magic%20warrior%20aspect_lowg","p":95,"h":1,"n":"Magic Warrior Aspect"},{"c":3,"s":48,"id":7902,"u":"magic%20warrior%20transformation_lowg","p":95,"h":1,"n":"Magic Warrior Transformation"},{"c":3,"s":48,"id":7903,"u":"mantis%20form_lowg","p":71,"h":1,"n":"Mantis Form"},{"c":3,"s":48,"id":7904,"u":"perfect%20strike_lowg","p":83,"h":1,"n":"Perfect Strike"},{"c":3,"s":48,"id":7905,"u":"snowball_lowg","p":112,"h":1,"n":"Snowball"},{"c":3,"s":48,"id":7906,"u":"unblinking%20flame%20revelation_lowg","p":83,"h":1,"n":"Unblinking Flame Revelation"},{"c":3,"s":48,"id":7907,"u":"unbreaking%20wave%20advance_lowg","p":83,"h":1,"n":"Unbreaking Wave Advance"},{"c":3,"s":48,"id":7908,"u":"unfolding%20wind%20rush_lowg","p":83,"h":1,"n":"Unfolding Wind Rush"},{"c":3,"s":48,"id":7909,"u":"untwisting%20iron%20buffer_lowg","p":83,"h":1,"n":"Untwisting Iron Buffer"},{"c":3,"s":49,"id":7910,"u":"aberrant%20form_som","p":88,"h":1,"n":"Aberrant Form"},{"c":3,"s":49,"id":7911,"u":"angel%20form_som","p":89,"h":1,"n":"Angel Form"},{"c":3,"s":49,"id":7912,"u":"animal%20allies_som","p":89,"h":1,"n":"Animal Allies"},{"c":3,"s":49,"id":7913,"u":"approximate_som","p":90,"h":1,"n":"Approximate"},{"c":3,"s":49,"id":7914,"u":"ash%20cloud_som","p":90,"h":1,"n":"Ash Cloud"},{"c":3,"s":49,"id":7915,"u":"bandit's%20doom_som","p":90,"h":1,"n":"Bandit's Doom"},{"c":3,"s":49,"id":7916,"u":"befitting%20attire_som","p":90,"h":1,"n":"Befitting Attire"},{"c":3,"s":49,"id":7917,"u":"biting%20words_som","p":90,"h":1,"n":"Biting Words"},{"c":3,"s":49,"id":7918,"u":"blazing%20dive_som","p":90,"h":1,"n":"Blazing Dive"},{"c":3,"s":49,"id":7919,"u":"blazing%20fissure_som","p":91,"h":1,"n":"Blazing Fissure"},{"c":3,"s":49,"id":7920,"u":"blessing%20of%20defiance_som","p":91,"h":1,"n":"Blessing Of Defiance"},{"c":3,"s":49,"id":7921,"u":"blink%20charge_som","p":92,"h":1,"n":"Blink Charge"},{"c":3,"s":49,"id":7922,"u":"bloodspray%20curse_som","p":92,"h":1,"n":"Bloodspray Curse"},{"c":3,"s":49,"id":7923,"u":"boil%20blood_som","p":92,"h":1,"n":"Boil Blood"},{"c":3,"s":49,"id":7924,"u":"boost%20eidolon_som","p":144,"h":1,"n":"Boost Eidolon"},{"c":3,"s":49,"id":7925,"u":"bottomless%20stomach_som","p":92,"h":1,"n":"Bottomless Stomach"},{"c":3,"s":49,"id":7926,"u":"breadcrumbs_som","p":92,"h":1,"n":"Breadcrumbs"},{"c":3,"s":49,"id":7927,"u":"bullhorn_som","p":93,"h":1,"n":"Bullhorn"},{"c":3,"s":49,"id":7928,"u":"burning%20blossoms_som","p":93,"h":1,"n":"Burning Blossoms"},{"c":3,"s":49,"id":7929,"u":"canticle%20of%20everlasting%20grief_som","p":94,"h":1,"n":"Canticle Of Everlasting Grief"},{"c":3,"s":49,"id":7930,"u":"cascade%20countermeasure_som","p":143,"h":1,"n":"Cascade Countermeasure"},{"c":3,"s":49,"id":7931,"u":"cast%20into%20time_som","p":94,"h":1,"n":"Cast Into Time"},{"c":3,"s":49,"id":7932,"u":"catch%20your%20name_som","p":247,"h":1,"n":"Catch Your Name"},{"c":3,"s":49,"id":7933,"u":"chromatic%20armor_som","p":95,"h":1,"n":"Chromatic Armor"},{"c":3,"s":49,"id":7934,"u":"chromatic%20image_som","p":95,"h":1,"n":"Chromatic Image"},{"c":3,"s":49,"id":7935,"u":"chromatic%20ray_som","p":95,"h":1,"n":"Chromatic Ray"},{"c":3,"s":49,"id":7936,"u":"claim%20curse_som","p":95,"h":1,"n":"Claim Curse"},{"c":3,"s":49,"id":7937,"u":"clone%20companion_som","p":96,"h":1,"n":"Clone Companion"},{"c":3,"s":49,"id":7938,"u":"combustion_som","p":200,"h":1,"n":"Combustion"},{"c":3,"s":49,"id":7939,"u":"compel%20true%20name_som","p":247,"h":1,"n":"Compel True Name"},{"c":3,"s":49,"id":7940,"u":"concordant%20choir_som","p":96,"h":1,"n":"Concordant Choir"},{"c":3,"s":49,"id":7941,"u":"coral%20eruption_som","p":96,"h":1,"n":"Coral Eruption"},{"c":3,"s":49,"id":7942,"u":"corrosive%20body_som","p":96,"h":1,"n":"Corrosive Body"},{"c":3,"s":49,"id":7943,"u":"cosmic%20form_som","p":97,"h":1,"n":"Cosmic Form"},{"c":3,"s":49,"id":7944,"u":"crushing%20ground_som","p":200,"h":1,"n":"Crushing Ground"},{"c":3,"s":49,"id":7945,"u":"daemon%20form_som","p":98,"h":1,"n":"Daemon Form"},{"c":3,"s":49,"id":7946,"u":"darklight_som","p":227,"h":1,"n":"Darklight"},{"c":3,"s":49,"id":7947,"u":"day's%20weight_som","p":98,"h":1,"n":"Day's Weight"},{"c":3,"s":49,"id":7948,"u":"deity's%20strike_som","p":99,"h":1,"n":"Deity's Strike"},{"c":3,"s":49,"id":7949,"u":"demon%20form_som","p":99,"h":1,"n":"Demon Form"},{"c":3,"s":49,"id":7950,"u":"devil%20form_som","p":99,"h":1,"n":"Devil Form"},{"c":3,"s":49,"id":7951,"u":"dimensional%20assault_som","p":143,"h":1,"n":"Dimensional Assault"},{"c":3,"s":49,"id":7952,"u":"distracting%20chatter_som","p":100,"h":1,"n":"Distracting Chatter"},{"c":3,"s":49,"id":7953,"u":"divine%20armageddon_som","p":100,"h":1,"n":"Divine Armageddon"},{"c":3,"s":49,"id":7954,"u":"draw%20ire_som","p":101,"h":1,"n":"Draw Ire"},{"c":3,"s":49,"id":7955,"u":"draw%20the%20lightning_som","p":101,"h":1,"n":"Draw The Lightning"},{"c":3,"s":49,"id":7956,"u":"echoing%20weapon_som","p":101,"h":1,"n":"Echoing Weapon"},{"c":3,"s":49,"id":7957,"u":"efficient%20apport_som","p":241,"h":1,"n":"Efficient Apport"},{"c":3,"s":49,"id":7958,"u":"eidolon's%20wrath_som","p":144,"h":1,"n":"Eidolon's Wrath"},{"c":3,"s":49,"id":7959,"u":"element%20embodied_som","p":101,"h":1,"n":"Element Embodied"},{"c":3,"s":49,"id":7960,"u":"elemental%20absorption_som","p":102,"h":1,"n":"Elemental Absorption"},{"c":3,"s":49,"id":7961,"u":"elemental%20annihilation%20wave_som","p":102,"h":1,"n":"Elemental Annihilation Wave"},{"c":3,"s":49,"id":7962,"u":"elemental%20confluence_som","p":102,"h":1,"n":"Elemental Confluence"},{"c":3,"s":49,"id":7963,"u":"elemental%20gift_som","p":103,"h":1,"n":"Elemental Gift"},{"c":3,"s":49,"id":7964,"u":"elemental%20zone_som","p":104,"h":1,"n":"Elemental Zone"},{"c":3,"s":49,"id":7965,"u":"envenom%20companion_som","p":104,"h":1,"n":"Envenom Companion"},{"c":3,"s":49,"id":7966,"u":"evolution%20surge_som","p":144,"h":1,"n":"Evolution Surge"},{"c":3,"s":49,"id":7967,"u":"extend%20boost_som","p":145,"h":1,"n":"Extend Boost"},{"c":3,"s":49,"id":7968,"u":"extract%20poison_som","p":104,"h":1,"n":"Extract Poison"},{"c":3,"s":49,"id":7969,"u":"fated%20confrontation_som","p":105,"h":1,"n":"Fated Confrontation"},{"c":3,"s":49,"id":7970,"u":"feral%20shades_som","p":105,"h":1,"n":"Feral Shades"},{"c":3,"s":49,"id":7971,"u":"fey%20form_som","p":105,"h":1,"n":"Fey Form"},{"c":3,"s":49,"id":7972,"u":"flame%20vortex_som","p":106,"h":1,"n":"Flame Vortex"},{"c":3,"s":49,"id":7973,"u":"flame%20wisp_som","p":106,"h":1,"n":"Flame Wisp"},{"c":3,"s":49,"id":7974,"u":"flammable%20fumes_som","p":106,"h":1,"n":"Flammable Fumes"},{"c":3,"s":49,"id":7975,"u":"flowing%20strike_som","p":106,"h":1,"n":"Flowing Strike"},{"c":3,"s":49,"id":7976,"u":"force%20fang_som","p":143,"h":1,"n":"Force Fang"},{"c":3,"s":49,"id":7977,"u":"forceful%20hand_som","p":106,"h":1,"n":"Forceful Hand"},{"c":3,"s":49,"id":7978,"u":"frigid%20flurry_som","p":108,"h":1,"n":"Frigid Flurry"},{"c":3,"s":49,"id":7979,"u":"gale%20blast_som","p":108,"h":1,"n":"Gale Blast"},{"c":3,"s":49,"id":7980,"u":"geyser_som","p":108,"h":1,"n":"Geyser"},{"c":3,"s":49,"id":7981,"u":"glimmer%20of%20charm_som","p":108,"h":1,"n":"Glimmer Of Charm"},{"c":3,"s":49,"id":7982,"u":"gouging%20claw_som","p":109,"h":1,"n":"Gouging Claw"},{"c":3,"s":49,"id":7983,"u":"gravitational%20pull_som","p":109,"h":1,"n":"Gravitational Pull"},{"c":3,"s":49,"id":7984,"u":"guiding%20star_som","p":109,"h":1,"n":"Guiding Star"},{"c":3,"s":49,"id":7985,"u":"hasted%20assault_som","p":143,"h":1,"n":"Hasted Assault"},{"c":3,"s":49,"id":7986,"u":"haunting%20hymn_som","p":109,"h":1,"n":"Haunting Hymn"},{"c":3,"s":49,"id":7987,"u":"healing%20plaster_som","p":109,"h":1,"n":"Healing Plaster"},{"c":3,"s":49,"id":7988,"u":"healing%20well_som","p":110,"h":1,"n":"Healing Well"},{"c":3,"s":49,"id":7989,"u":"horizon%20thunder%20sphere_som","p":110,"h":1,"n":"Horizon Thunder Sphere"},{"c":3,"s":49,"id":7990,"u":"ignite%20fireworks_som","p":110,"h":1,"n":"Ignite Fireworks"},{"c":3,"s":49,"id":7991,"u":"impending%20doom_som","p":110,"h":1,"n":"Impending Doom"},{"c":3,"s":49,"id":7992,"u":"inevitable%20disaster_som","p":111,"h":1,"n":"Inevitable Disaster"},{"c":3,"s":49,"id":7993,"u":"inexhaustible%20cynicism_som","p":111,"h":1,"n":"Inexhaustible Cynicism"},{"c":3,"s":49,"id":7994,"u":"infectious%20enthusiasm_som","p":112,"h":1,"n":"Infectious Enthusiasm"},{"c":3,"s":49,"id":7995,"u":"infectious%20melody_som","p":112,"h":1,"n":"Infectious Melody"},{"c":3,"s":49,"id":7996,"u":"inner%20radiance%20torrent_som","p":112,"h":1,"n":"Inner Radiance Torrent"},{"c":3,"s":49,"id":7997,"u":"inscrutable%20mask_som","p":227,"h":1,"n":"Inscrutable Mask"},{"c":3,"s":49,"id":7998,"u":"instant%20armor_som","p":112,"h":1,"n":"Instant Armor"},{"c":3,"s":49,"id":7999,"u":"invisibility%20curtain_som","p":112,"h":1,"n":"Invisibility Curtain"},{"c":3,"s":49,"id":8000,"u":"invoke%20spirits_som","p":113,"h":1,"n":"Invoke Spirits"},{"c":3,"s":49,"id":8001,"u":"invoke%20true%20name_som","p":247,"h":1,"n":"Invoke True Name"},{"c":3,"s":49,"id":8002,"u":"juvenile%20companion_som","p":113,"h":1,"n":"Juvenile Companion"},{"c":3,"s":49,"id":8003,"u":"life%20connection_som","p":113,"h":1,"n":"Life Connection"},{"c":3,"s":49,"id":8004,"u":"lifelink%20surge_som","p":145,"h":1,"n":"Lifelink Surge"},{"c":3,"s":49,"id":8005,"u":"lose%20the%20path_som","p":113,"h":1,"n":"Lose The Path"},{"c":3,"s":49,"id":8006,"u":"lucky%20number_som","p":113,"h":1,"n":"Lucky Number"},{"c":3,"s":49,"id":8007,"u":"magic%20mailbox_som","p":114,"h":1,"n":"Magic Mailbox"},{"c":3,"s":49,"id":8008,"u":"magnetic%20acceleration_som","p":114,"h":1,"n":"Magnetic Acceleration"},{"c":3,"s":49,"id":8009,"u":"magnetic%20attraction_som","p":114,"h":1,"n":"Magnetic Attraction"},{"c":3,"s":49,"id":8010,"u":"magnetic%20repulsion_som","p":115,"h":1,"n":"Magnetic Repulsion"},{"c":3,"s":49,"id":8011,"u":"mantle%20of%20the%20frozen%20heart_som","p":115,"h":1,"n":"Mantle Of The Frozen Heart"},{"c":3,"s":49,"id":8012,"u":"mantle%20of%20the%20magma%20heart_som","p":115,"h":1,"n":"Mantle Of The Magma Heart"},{"c":3,"s":49,"id":8013,"u":"mimic%20undead_som","p":115,"h":1,"n":"Mimic Undead"},{"c":3,"s":49,"id":8014,"u":"mind%20of%20menace_som","p":116,"h":1,"n":"Mind Of Menace"},{"c":3,"s":49,"id":8015,"u":"mirror%20malefactors_som","p":116,"h":1,"n":"Mirror Malefactors"},{"c":3,"s":49,"id":8016,"u":"mirror's%20misfortune_som","p":117,"h":1,"n":"Mirror's Misfortune"},{"c":3,"s":49,"id":8017,"u":"mud%20pit_som","p":117,"h":1,"n":"Mud Pit"},{"c":3,"s":49,"id":8018,"u":"murderous%20vine_som","p":117,"h":1,"n":"Murderous Vine"},{"c":3,"s":49,"id":8019,"u":"nature's%20reprisal_som","p":117,"h":1,"n":"Nature's Reprisal"},{"c":3,"s":49,"id":8020,"u":"necromancer's%20generosity_som","p":117,"h":1,"n":"Necromancer's Generosity"},{"c":3,"s":49,"id":8021,"u":"necrotize_som","p":118,"h":1,"n":"Necrotize"},{"c":3,"s":49,"id":8022,"u":"nudge%20the%20odds_som","p":118,"h":1,"n":"Nudge The Odds"},{"c":3,"s":49,"id":8023,"u":"nullify_som","p":118,"h":1,"n":"Nullify"},{"c":3,"s":49,"id":8024,"u":"ocular%20overload_som","p":118,"h":1,"n":"Ocular Overload"},{"c":3,"s":49,"id":8025,"u":"one%20with%20the%20land_som","p":118,"h":1,"n":"One With The Land"},{"c":3,"s":49,"id":8026,"u":"oneiric%20mire_som","p":119,"h":1,"n":"Oneiric Mire"},{"c":3,"s":49,"id":8027,"u":"ooze%20form_som","p":119,"h":1,"n":"Ooze Form"},{"c":3,"s":49,"id":8028,"u":"organsight_som","p":120,"h":1,"n":"Organsight"},{"c":3,"s":49,"id":8029,"u":"painful%20vibrations_som","p":120,"h":1,"n":"Painful Vibrations"},{"c":3,"s":49,"id":8030,"u":"pernicious%20poltergeist_som","p":121,"h":1,"n":"Pernicious Poltergeist"},{"c":3,"s":49,"id":8031,"u":"persistent%20servant_som","p":121,"h":1,"n":"Persistent Servant"},{"c":3,"s":49,"id":8032,"u":"petal%20storm_som","p":121,"h":1,"n":"Petal Storm"},{"c":3,"s":49,"id":8033,"u":"phantom%20crowd_som","p":121,"h":1,"n":"Phantom Crowd"},{"c":3,"s":49,"id":8034,"u":"phantom%20prison_som","p":121,"h":1,"n":"Phantom Prison"},{"c":3,"s":49,"id":8035,"u":"pocket%20library_som","p":122,"h":1,"n":"Pocket Library"},{"c":3,"s":49,"id":8036,"u":"portrait%20of%20the%20artist_som","p":122,"h":1,"n":"Portrait Of The Artist"},{"c":3,"s":49,"id":8037,"u":"positive%20attunement_som","p":122,"h":1,"n":"Positive Attunement"},{"c":3,"s":49,"id":8038,"u":"powerful%20inhalation_som","p":201,"h":1,"n":"Powerful Inhalation"},{"c":3,"s":49,"id":8039,"u":"prismatic%20armor_som","p":122,"h":1,"n":"Prismatic Armor"},{"c":3,"s":49,"id":8040,"u":"proliferating%20eyes_som","p":122,"h":1,"n":"Proliferating Eyes"},{"c":3,"s":49,"id":8041,"u":"protect%20companion_som","p":123,"h":1,"n":"Protect Companion"},{"c":3,"s":49,"id":8042,"u":"protector%20tree_som","p":123,"h":1,"n":"Protector Tree"},{"c":3,"s":49,"id":8043,"u":"puff%20of%20poison_som","p":124,"h":1,"n":"Puff Of Poison"},{"c":3,"s":49,"id":8044,"u":"pulverizing%20cascade_som","p":201,"h":1,"n":"Pulverizing Cascade"},{"c":3,"s":49,"id":8045,"u":"quick%20sort_som","p":124,"h":1,"n":"Quick Sort"},{"c":3,"s":49,"id":8046,"u":"rapid%20adaptation_som","p":124,"h":1,"n":"Rapid Adaptation"},{"c":3,"s":49,"id":8047,"u":"ravenous%20portal_som","p":124,"h":1,"n":"Ravenous Portal"},{"c":3,"s":49,"id":8048,"u":"read%20the%20air_som","p":125,"h":1,"n":"Read The Air"},{"c":3,"s":49,"id":8049,"u":"reinforce%20eidolon_som","p":145,"h":1,"n":"Reinforce Eidolon"},{"c":3,"s":49,"id":8050,"u":"repelling%20pulse_som","p":125,"h":1,"n":"Repelling Pulse"},{"c":3,"s":49,"id":8051,"u":"replicate_som","p":125,"h":1,"n":"Replicate"},{"c":3,"s":49,"id":8052,"u":"restyle_som","p":126,"h":1,"n":"Restyle"},{"c":3,"s":49,"id":8053,"u":"rewinding%20step_som","p":126,"h":1,"n":"Rewinding Step"},{"c":3,"s":49,"id":8054,"u":"rip%20the%20spirit_som","p":126,"h":1,"n":"Rip The Spirit"},{"c":3,"s":49,"id":8055,"u":"rising%20surf_som","p":201,"h":1,"n":"Rising Surf"},{"c":3,"s":49,"id":8056,"u":"roaring%20applause_som","p":126,"h":1,"n":"Roaring Applause"},{"c":3,"s":49,"id":8057,"u":"rouse%20skeletons_som","p":126,"h":1,"n":"Rouse Skeletons"},{"c":3,"s":49,"id":8058,"u":"runic%20impression_som","p":143,"h":1,"n":"Runic Impression"},{"c":3,"s":49,"id":8059,"u":"sanguine%20mist_som","p":127,"h":1,"n":"Sanguine Mist"},{"c":3,"s":49,"id":8060,"u":"scatter%20scree_som","p":127,"h":1,"n":"Scatter Scree"},{"c":3,"s":49,"id":8061,"u":"schadenfreude_som","p":127,"h":1,"n":"Schadenfreude"},{"c":3,"s":49,"id":8062,"u":"scorching%20ray_som","p":127,"h":1,"n":"Scorching Ray"},{"c":3,"s":49,"id":8063,"u":"seashell%20of%20stolen%20sound_som","p":127,"h":1,"n":"Seashell Of Stolen Sound"},{"c":3,"s":49,"id":8064,"u":"shadow%20army_som","p":128,"h":1,"n":"Shadow Army"},{"c":3,"s":49,"id":8065,"u":"shadow%20projectile_som","p":128,"h":1,"n":"Shadow Projectile"},{"c":3,"s":49,"id":8066,"u":"shadow%20raid_som","p":129,"h":1,"n":"Shadow Raid"},{"c":3,"s":49,"id":8067,"u":"shielding%20strike_som","p":143,"h":1,"n":"Shielding Strike"},{"c":3,"s":49,"id":8068,"u":"shift%20blame_som","p":129,"h":1,"n":"Shift Blame"},{"c":3,"s":49,"id":8069,"u":"shooting%20star_som","p":143,"h":1,"n":"Shooting Star"},{"c":3,"s":49,"id":8070,"u":"sonata%20span_som","p":129,"h":1,"n":"Sonata Span"},{"c":3,"s":49,"id":8071,"u":"soothing%20blossoms_som","p":129,"h":1,"n":"Soothing Blossoms"},{"c":3,"s":49,"id":8072,"u":"soothing%20spring_som","p":129,"h":1,"n":"Soothing Spring"},{"c":3,"s":49,"id":8073,"u":"spinning%20staff_som","p":144,"h":1,"n":"Spinning Staff"},{"c":3,"s":49,"id":8074,"u":"spiritual%20attunement_som","p":130,"h":1,"n":"Spiritual Attunement"},{"c":3,"s":49,"id":8075,"u":"spout_som","p":130,"h":1,"n":"Spout"},{"c":3,"s":49,"id":8076,"u":"stone%20lance_som","p":201,"h":1,"n":"Stone Lance"},{"c":3,"s":49,"id":8077,"u":"sudden%20recollection_som","p":130,"h":1,"n":"Sudden Recollection"},{"c":3,"s":49,"id":8078,"u":"summon%20anarch_som","p":131,"h":1,"n":"Summon Anarch"},{"c":3,"s":49,"id":8079,"u":"summon%20archmage_som","p":131,"h":1,"n":"Summon Archmage"},{"c":3,"s":49,"id":8080,"u":"summon%20axiom_som","p":131,"h":1,"n":"Summon Axiom"},{"c":3,"s":49,"id":8081,"u":"summon%20deific%20herald_som","p":131,"h":1,"n":"Summon Deific Herald"},{"c":3,"s":49,"id":8082,"u":"summon%20draconic%20legion_som","p":133,"h":1,"n":"Summon Draconic Legion"},{"c":3,"s":49,"id":8083,"u":"summon%20kaiju_som","p":133,"h":1,"n":"Summon Kaiju"},{"c":3,"s":49,"id":8084,"u":"summon%20lesser%20servitor_som","p":134,"h":1,"n":"Summon Lesser Servitor"},{"c":3,"s":49,"id":8085,"u":"summoner's%20precaution_som","p":135,"h":1,"n":"Summoner's Precaution"},{"c":3,"s":49,"id":8086,"u":"summoner's%20visage_som","p":135,"h":1,"n":"Summoner's Visage"},{"c":3,"s":49,"id":8087,"u":"synchronize_som","p":135,"h":1,"n":"Synchronize"},{"c":3,"s":49,"id":8088,"u":"tame_som","p":135,"h":1,"n":"Tame"},{"c":3,"s":49,"id":8089,"u":"tempest%20of%20shades_som","p":135,"h":1,"n":"Tempest Of Shades"},{"c":3,"s":49,"id":8090,"u":"temporary%20glyph_som","p":136,"h":1,"n":"Temporary Glyph"},{"c":3,"s":49,"id":8091,"u":"thicket%20of%20knives_som","p":136,"h":1,"n":"Thicket Of Knives"},{"c":3,"s":49,"id":8092,"u":"thundering%20dominance_som","p":136,"h":1,"n":"Thundering Dominance"},{"c":3,"s":49,"id":8093,"u":"thunderous%20strike_som","p":144,"h":1,"n":"Thunderous Strike"},{"c":3,"s":49,"id":8094,"u":"time%20jump_som","p":136,"h":1,"n":"Time Jump"},{"c":3,"s":49,"id":8095,"u":"timely%20tutor_som","p":137,"h":1,"n":"Timely Tutor"},{"c":3,"s":49,"id":8096,"u":"tortoise%20and%20the%20hare_som","p":137,"h":1,"n":"Tortoise And The Hare"},{"c":3,"s":49,"id":8097,"u":"umbral%20extraction_som","p":137,"h":1,"n":"Umbral Extraction"},{"c":3,"s":49,"id":8098,"u":"umbral%20graft_som","p":137,"h":1,"n":"Umbral Graft"},{"c":3,"s":49,"id":8099,"u":"unexpected%20transposition_som","p":138,"h":1,"n":"Unexpected Transposition"},{"c":3,"s":49,"id":8100,"u":"unfetter%20eidolon_som","p":145,"h":1,"n":"Unfetter Eidolon"},{"c":3,"s":49,"id":8101,"u":"unspeakable%20shadow_som","p":138,"h":1,"n":"Unspeakable Shadow"},{"c":3,"s":49,"id":8102,"u":"updraft_som","p":201,"h":1,"n":"Updraft"},{"c":3,"s":49,"id":8103,"u":"variable%20gravity_som","p":138,"h":1,"n":"Variable Gravity"},{"c":3,"s":49,"id":8104,"u":"voracious%20gestalt_som","p":139,"h":1,"n":"Voracious Gestalt"},{"c":3,"s":49,"id":8105,"u":"wall%20of%20water_som","p":139,"h":1,"n":"Wall Of Water"},{"c":3,"s":49,"id":8106,"u":"warding%20aggression_som","p":140,"h":1,"n":"Warding Aggression"},{"c":3,"s":49,"id":8107,"u":"warrior's%20regret_som","p":140,"h":1,"n":"Warrior's Regret"},{"c":3,"s":49,"id":8108,"u":"wash%20your%20luck_som","p":140,"h":1,"n":"Wash Your Luck"},{"c":3,"s":49,"id":8109,"u":"web%20of%20eyes_som","p":140,"h":1,"n":"Web Of Eyes"},{"c":3,"s":49,"id":8110,"u":"whirlwind_som","p":141,"h":1,"n":"Whirlwind"},{"c":3,"s":49,"id":8111,"u":"wildfire_som","p":201,"h":1,"n":"Wildfire"},{"c":3,"s":49,"id":8112,"u":"winning%20streak_som","p":141,"h":1,"n":"Winning Streak"},{"c":3,"s":49,"id":8113,"u":"zero%20gravity_som","p":141,"h":1,"n":"Zero Gravity"},{"c":3,"s":39,"id":8114,"u":"airburst_sot1","p":76,"h":1,"n":"Airburst"},{"c":3,"s":39,"id":8115,"u":"friendfetch_sot1","p":77,"h":1,"n":"Friendfetch"},{"c":3,"s":39,"id":8116,"u":"grave%20impressions_sot1","p":77,"h":1,"n":"Grave Impressions"},{"c":3,"s":39,"id":8117,"u":"impeccable%20flow_sot1","p":76,"h":1,"n":"Impeccable Flow"},{"c":3,"s":39,"id":8118,"u":"mind%20games_sot1","p":77,"h":1,"n":"Mind Games"},{"c":3,"s":39,"id":8119,"u":"stumbling%20curse_sot1","p":75,"h":1,"n":"Stumbling Curse"},{"c":3,"s":39,"id":8120,"u":"verminous%20lure_sot1","p":76,"h":1,"n":"Verminous Lure"},{"c":23,"s":5,"id":8121,"u":"alchemist_crb","p":71,"h":1,"n":"Alchemist"},{"c":23,"s":5,"id":8122,"u":"barbarian_crb","p":83,"h":1,"n":"Barbarian"},{"c":23,"s":5,"id":8123,"u":"bard_crb","p":95,"h":1,"n":"Bard"},{"c":23,"s":5,"id":8124,"u":"champion_crb","p":105,"h":1,"n":"Champion"},{"c":23,"s":5,"id":8125,"u":"cleric_crb","p":117,"h":1,"n":"Cleric"},{"c":23,"s":5,"id":8126,"u":"druid_crb","p":129,"h":1,"n":"Druid"},{"c":23,"s":5,"id":8127,"u":"fighter_crb","p":140,"h":1,"n":"Fighter"},{"c":23,"s":2,"id":8128,"u":"gunslinger_g%26g","p":105,"h":1,"n":"Gunslinger"},{"c":23,"s":2,"id":8129,"u":"inventor_g%26g","p":15,"h":1,"n":"Inventor"},{"c":23,"s":4,"id":8130,"u":"investigator_apg","p":55,"h":1,"n":"Investigator"},{"c":23,"s":49,"id":8131,"u":"magus_som","p":35,"h":1,"n":"Magus"},{"c":23,"s":5,"id":8132,"u":"monk_crb","p":155,"h":1,"n":"Monk"},{"c":23,"s":4,"id":8133,"u":"oracle_apg","p":67,"h":1,"n":"Oracle"},{"c":23,"s":5,"id":8134,"u":"ranger_crb","p":167,"h":1,"n":"Ranger"},{"c":23,"s":5,"id":8135,"u":"rogue_crb","p":178,"h":1,"n":"Rogue"},{"c":23,"s":5,"id":8136,"u":"sorcerer_crb","p":191,"h":1,"n":"Sorcerer"},{"c":23,"s":49,"id":8137,"u":"summoner_som","p":51,"h":1,"n":"Summoner"},{"c":23,"s":4,"id":8138,"u":"swashbuckler_apg","p":83,"h":1,"n":"Swashbuckler"},{"c":23,"s":4,"id":8139,"u":"witch_apg","p":94,"h":1,"n":"Witch"},{"c":23,"s":5,"id":8140,"u":"wizard_crb","p":203,"h":1,"n":"Wizard"},{"c":24,"s":5,"id":8142,"u":"alchemist_crb,state:sub-bomber-crb=b1","p":73,"h":1,"b":"Bomber","n":"Bomber (Alchemist)"},{"c":24,"s":5,"id":8143,"u":"alchemist_crb,state:sub-chirurgeon-crb=b1","p":73,"h":1,"b":"Chirurgeon","n":"Chirurgeon (Alchemist)"},{"c":24,"s":5,"id":8144,"u":"alchemist_crb,state:sub-mutagenist-crb=b1","p":73,"h":1,"b":"Mutagenist","n":"Mutagenist (Alchemist)"},{"c":24,"s":4,"id":8145,"u":"alchemist_crb,state:sub-toxicologist-apg=b1","p":106,"h":1,"b":"Toxicologist","n":"Toxicologist (Alchemist)"},{"c":24,"s":5,"id":8147,"u":"barbarian_crb,state:sub-animal-crb=b1","p":86,"h":1,"b":"Animal","n":"Animal (Barbarian)"},{"c":24,"s":5,"id":8148,"u":"barbarian_crb,state:sub-dragon-crb=b1","p":86,"h":1,"b":"Dragon","n":"Dragon (Barbarian)"},{"c":24,"s":5,"id":8149,"u":"barbarian_crb,state:sub-fury-crb=b1","p":87,"h":1,"b":"Fury","n":"Fury (Barbarian)"},{"c":24,"s":5,"id":8150,"u":"barbarian_crb,state:sub-giant-crb=b1","p":87,"h":1,"b":"Giant","n":"Giant (Barbarian)"},{"c":24,"s":5,"id":8151,"u":"barbarian_crb,state:sub-spirit-crb=b1","p":87,"h":1,"b":"Spirit","n":"Spirit (Barbarian)"},{"c":24,"s":4,"id":8152,"u":"barbarian_crb,state:sub-superstition-apg=b1","p":108,"h":1,"b":"Superstition","n":"Superstition (Barbarian)"},{"c":24,"s":5,"id":8154,"u":"bard_crb,state:sub-enigma-crb=b1","p":97,"h":1,"b":"Enigma","n":"Enigma (Bard)"},{"c":24,"s":5,"id":8155,"u":"bard_crb,state:sub-maestro-crb=b1","p":97,"h":1,"b":"Maestro","n":"Maestro (Bard)"},{"c":24,"s":5,"id":8156,"u":"bard_crb,state:sub-polymath-crb=b1","p":97,"h":1,"b":"Polymath","n":"Polymath (Bard)"},{"c":24,"s":4,"id":8157,"u":"bard_crb,state:sub-warrior-apg=b1","p":112,"h":1,"b":"Warrior","n":"Warrior (Bard)"},{"c":24,"s":5,"id":8159,"u":"champion_crb,state:sub-paladin-crb=b1","p":106,"h":1,"b":"Paladin","n":"Paladin (Champion)"},{"c":24,"s":5,"id":8160,"u":"champion_crb,state:sub-redeemer-crb=b1","p":106,"h":1,"b":"Redeemer","n":"Redeemer (Champion)"},{"c":24,"s":5,"id":8161,"u":"champion_crb,state:sub-liberator-crb=b1","p":106,"h":1,"b":"Liberator","n":"Liberator (Champion)"},{"c":24,"s":4,"id":8162,"u":"champion_crb,state:sub-tyrant-apg=b1","p":116,"h":1,"b":"Tyrant","n":"Tyrant (Champion)"},{"c":24,"s":4,"id":8163,"u":"champion_crb,state:sub-desecrator-apg=b1","p":116,"h":1,"b":"Desecrator","n":"Desecrator (Champion)"},{"c":24,"s":4,"id":8164,"u":"champion_crb,state:sub-antipaladin-apg=b1","p":116,"h":1,"b":"Antipaladin","n":"Antipaladin (Champion)"},{"c":24,"s":5,"id":8166,"u":"cleric_crb,state:sub-cloistered-crb=b1","p":119,"h":1,"b":"Cloistered Cleric","n":"Cloistered Cleric (Cleric)"},{"c":24,"s":5,"id":8167,"u":"cleric_crb,state:sub-warpriest-crb=b1","p":120,"h":1,"b":"Warpriest","n":"Warpriest (Cleric)"},{"c":24,"s":5,"id":8169,"u":"druid_crb,state:sub-animal-crb=b1","p":131,"h":1,"b":"Animal","n":"Animal (Druid)"},{"c":24,"s":5,"id":8170,"u":"druid_crb,state:sub-leaf-crb=b1","p":131,"h":1,"b":"Leaf","n":"Leaf (Druid)"},{"c":24,"s":5,"id":8171,"u":"druid_crb,state:sub-storm-crb=b1","p":132,"h":1,"b":"Storm","n":"Storm (Druid)"},{"c":24,"s":5,"id":8172,"u":"druid_crb,state:sub-wild-crb=b1","p":132,"h":1,"b":"Wild","n":"Wild (Druid)"},{"c":24,"s":49,"id":8173,"u":"druid_crb,state:sub-flame-som=b1","p":198,"h":1,"b":"Flame","n":"Flame (Druid)"},{"c":24,"s":49,"id":8174,"u":"druid_crb,state:sub-stone-som=b1","p":198,"h":1,"b":"Stone","n":"Stone (Druid)"},{"c":24,"s":49,"id":8175,"u":"druid_crb,state:sub-wave-som=b1","p":198,"h":1,"b":"Wave","n":"Wave (Druid)"},{"c":24,"s":2,"id":8178,"u":"gunslinger_g%26g,state:sub-drifter-gg=b1","p":108,"h":1,"b":"Drifter","n":"Drifter (Gunslinger)"},{"c":24,"s":2,"id":8179,"u":"gunslinger_g%26g,state:sub-pistolero-gg=b1","p":109,"h":1,"b":"Pistolero","n":"Pistolero (Gunslinger)"},{"c":24,"s":2,"id":8180,"u":"gunslinger_g%26g,state:sub-sniper-gg=b1","p":109,"h":1,"b":"Sniper","n":"Sniper (Gunslinger)"},{"c":24,"s":2,"id":8181,"u":"gunslinger_g%26g,state:sub-vanguard-gg=b1","p":110,"h":1,"b":"Vanguard","n":"Vanguard (Gunslinger)"},{"c":24,"s":2,"id":8183,"u":"inventor_g%26g,state:sub-armor-gg=b1","p":16,"h":1,"b":"Armor","n":"Armor (Inventor)"},{"c":24,"s":2,"id":8184,"u":"inventor_g%26g,state:sub-construct-gg=b1","p":16,"h":1,"b":"Construct","n":"Construct (Inventor)"},{"c":24,"s":2,"id":8185,"u":"inventor_g%26g,state:sub-weapon-gg=b1","p":16,"h":1,"b":"Weapon","n":"Weapon (Inventor)"},{"c":24,"s":4,"id":8187,"u":"investigator_apg,state:sub-alchemical-sciences-apg=b1","p":57,"h":1,"b":"Alchemical Sciences","n":"Alchemical Sciences (Investigator)"},{"c":24,"s":4,"id":8188,"u":"investigator_apg,state:sub-empiricism-apg=b1","p":57,"h":1,"b":"Empiricism","n":"Empiricism (Investigator)"},{"c":24,"s":4,"id":8189,"u":"investigator_apg,state:sub-forensic-medicine-apg=b1","p":58,"h":1,"b":"Forensic Medicine","n":"Forensic Medicine (Investigator)"},{"c":24,"s":4,"id":8190,"u":"investigator_apg,state:sub-interrogation-apg=b1","p":58,"h":1,"b":"Interrogation","n":"Interrogation (Investigator)"},{"c":24,"s":49,"id":8192,"u":"magus_som,state:sub-inexorable-iron-som=b1","p":39,"h":1,"b":"Inexorable Iron","n":"Inexorable Iron (Magus)"},{"c":24,"s":49,"id":8193,"u":"magus_som,state:sub-laughing-shadow-som=b1","p":39,"h":1,"b":"Laughing Shadow","n":"Laughing Shadow (Magus)"},{"c":24,"s":49,"id":8194,"u":"magus_som,state:sub-sparkling-targe-som=b1","p":39,"h":1,"b":"Sparkling Targe","n":"Sparkling Targe (Magus)"},{"c":24,"s":49,"id":8195,"u":"magus_som,state:sub-starlit-span-som=b1","p":39,"h":1,"b":"Starlit Span","n":"Starlit Span (Magus)"},{"c":24,"s":49,"id":8196,"u":"magus_som,state:sub-twisting-tree-som=b1","p":40,"h":1,"b":"Twisting Tree","n":"Twisting Tree (Magus)"},{"c":24,"s":4,"id":8199,"u":"oracle_apg,state:sub-ancestors-apg=b1","p":73,"h":1,"b":"Ancestors","n":"Ancestors (Oracle)"},{"c":24,"s":4,"id":8200,"u":"oracle_apg,state:sub-battle-apg=b1","p":74,"h":1,"b":"Battle","n":"Battle (Oracle)"},{"c":24,"s":4,"id":8201,"u":"oracle_apg,state:sub-bones-apg=b1","p":75,"h":1,"b":"Bones","n":"Bones (Oracle)"},{"c":24,"s":4,"id":8202,"u":"oracle_apg,state:sub-cosmos-apg=b1","p":75,"h":1,"b":"Cosmos","n":"Cosmos (Oracle)"},{"c":24,"s":4,"id":8203,"u":"oracle_apg,state:sub-flames-apg=b1","p":76,"h":1,"b":"Flames","n":"Flames (Oracle)"},{"c":24,"s":4,"id":8204,"u":"oracle_apg,state:sub-life-apg=b1","p":77,"h":1,"b":"Life","n":"Life (Oracle)"},{"c":24,"s":4,"id":8205,"u":"oracle_apg,state:sub-lore-apg=b1","p":77,"h":1,"b":"Lore","n":"Lore (Oracle)"},{"c":24,"s":4,"id":8206,"u":"oracle_apg,state:sub-tempest-apg=b1","p":78,"h":1,"b":"Tempest","n":"Tempest (Oracle)"},{"c":24,"s":5,"id":8208,"u":"ranger_crb,state:sub-flurry-crb=b1","p":168,"h":1,"b":"Flurry","n":"Flurry (Ranger)"},{"c":24,"s":5,"id":8209,"u":"ranger_crb,state:sub-precision-crb=b1","p":168,"h":1,"b":"Precision","n":"Precision (Ranger)"},{"c":24,"s":5,"id":8210,"u":"ranger_crb,state:sub-outwit-crb=b1","p":168,"h":1,"b":"Outwit","n":"Outwit (Ranger)"},{"c":24,"s":4,"id":8212,"u":"rogue_crb,state:sub-eldritch-trickster-apg=b1","p":134,"h":1,"b":"Eldritch Trickster","n":"Eldritch Trickster (Rogue)"},{"c":24,"s":4,"id":8213,"u":"rogue_crb,state:sub-mastermind-apg=b1","p":134,"h":1,"b":"Mastermind","n":"Mastermind (Rogue)"},{"c":24,"s":5,"id":8214,"u":"rogue_crb,state:sub-ruffian-crb=b1","p":180,"h":1,"b":"Ruffian","n":"Ruffian (Rogue)"},{"c":24,"s":5,"id":8215,"u":"rogue_crb,state:sub-scoundrel-crb=b1","p":180,"h":1,"b":"Scoundrel","n":"Scoundrel (Rogue)"},{"c":24,"s":5,"id":8216,"u":"rogue_crb,state:sub-thief-crb=b1","p":180,"h":1,"b":"Thief","n":"Thief (Rogue)"},{"c":24,"s":5,"id":8218,"u":"sorcerer_crb,state:sub-aberrant-crb=b1","p":195,"h":1,"b":"Aberrant","n":"Aberrant (Sorcerer)"},{"c":24,"s":5,"id":8219,"u":"sorcerer_crb,state:sub-angelic-crb=b1","p":195,"h":1,"b":"Angelic","n":"Angelic (Sorcerer)"},{"c":24,"s":5,"id":8220,"u":"sorcerer_crb,state:sub-demonic-crb=b1","p":195,"h":1,"b":"Demonic","n":"Demonic (Sorcerer)"},{"c":24,"s":5,"id":8221,"u":"sorcerer_crb,state:sub-diabolic-crb=b1","p":196,"h":1,"b":"Diabolic","n":"Diabolic (Sorcerer)"},{"c":24,"s":0,"id":8222,"u":"sorcerer_crb,state:sub-wyrmblessed-lome=b1","p":75,"h":1,"b":"Wyrmblessed","n":"Wyrmblessed (Sorcerer)"},{"c":24,"s":5,"id":8223,"u":"sorcerer_crb,state:sub-draconic-crb=b1","p":196,"h":1,"b":"Draconic","n":"Draconic (Sorcerer)"},{"c":24,"s":5,"id":8224,"u":"sorcerer_crb,state:sub-elemental-crb=b1","p":196,"h":1,"b":"Elemental","n":"Elemental (Sorcerer)"},{"c":24,"s":5,"id":8225,"u":"sorcerer_crb,state:sub-fey-crb=b1","p":197,"h":1,"b":"Fey","n":"Fey (Sorcerer)"},{"c":24,"s":5,"id":8226,"u":"sorcerer_crb,state:sub-hag-crb=b1","p":197,"h":1,"b":"Hag","n":"Hag (Sorcerer)"},{"c":24,"s":5,"id":8227,"u":"sorcerer_crb,state:sub-imperial-crb=b1","p":198,"h":1,"b":"Imperial","n":"Imperial (Sorcerer)"},{"c":24,"s":5,"id":8228,"u":"sorcerer_crb,state:sub-undead-crb=b1","p":198,"h":1,"b":"Undead","n":"Undead (Sorcerer)"},{"c":24,"s":4,"id":8229,"u":"sorcerer_crb,state:sub-genie-apg=b1","p":138,"h":1,"b":"Genie","n":"Genie (Sorcerer)"},{"c":24,"s":4,"id":8230,"u":"sorcerer_crb,state:sub-nymph-apg=b1","p":138,"h":1,"b":"Nymph","n":"Nymph (Sorcerer)"},{"c":24,"s":4,"id":8231,"u":"sorcerer_crb,state:sub-psychopomp-apg=b1","p":138,"h":1,"b":"Psychopomp","n":"Psychopomp (Sorcerer)"},{"c":24,"s":4,"id":8232,"u":"sorcerer_crb,state:sub-shadow-apg=b1","p":138,"h":1,"b":"Shadow","n":"Shadow (Sorcerer)"},{"c":24,"s":36,"id":8233,"u":"sorcerer_crb,state:sub-phoenix-frp3=b1","p":74,"h":1,"b":"Phoenix","n":"Phoenix (Sorcerer)"},{"c":24,"s":49,"id":8235,"u":"summoner_som,state:sub-angel-som=b1","p":59,"h":1,"b":"Angel","n":"Angel (Summoner)"},{"c":24,"s":49,"id":8236,"u":"summoner_som,state:sub-anger-phantom-som=b1","p":59,"h":1,"b":"Anger Phantom","n":"Anger Phantom (Summoner)"},{"c":24,"s":49,"id":8237,"u":"summoner_som,state:sub-beast-som=b1","p":61,"h":1,"b":"Beast","n":"Beast (Summoner)"},{"c":24,"s":49,"id":8238,"u":"summoner_som,state:sub-construct-som=b1","p":61,"h":1,"b":"Construct","n":"Construct (Summoner)"},{"c":24,"s":49,"id":8239,"u":"summoner_som,state:sub-demon-som=b1","p":62,"h":1,"b":"Demon","n":"Demon (Summoner)"},{"c":24,"s":49,"id":8240,"u":"summoner_som,state:sub-devotion-phantom-som=b1","p":63,"h":1,"b":"Devotion Phantom","n":"Devotion Phantom (Summoner)"},{"c":24,"s":49,"id":8241,"u":"summoner_som,state:sub-dragon-som=b1","p":63,"h":1,"b":"Dragon","n":"Dragon (Summoner)"},{"c":24,"s":49,"id":8242,"u":"summoner_som,state:sub-fey-som=b1","p":64,"h":1,"b":"Fey","n":"Fey (Summoner)"},{"c":24,"s":49,"id":8243,"u":"summoner_som,state:sub-plant-som=b1","p":65,"h":1,"b":"Plant","n":"Plant (Summoner)"},{"c":24,"s":49,"id":8244,"u":"summoner_som,state:sub-psychopomp-som=b1","p":66,"h":1,"b":"Psychopomp","n":"Psychopomp (Summoner)"},{"c":24,"s":4,"id":8246,"u":"swashbuckler_apg,state:sub-battledancer-apg=b1","p":84,"h":1,"b":"Battledancer","n":"Battledancer (Swashbuckler)"},{"c":24,"s":4,"id":8247,"u":"swashbuckler_apg,state:sub-braggart-apg=b1","p":84,"h":1,"b":"Braggart","n":"Braggart (Swashbuckler)"},{"c":24,"s":4,"id":8248,"u":"swashbuckler_apg,state:sub-fencer-apg=b1","p":84,"h":1,"b":"Fencer","n":"Fencer (Swashbuckler)"},{"c":24,"s":4,"id":8249,"u":"swashbuckler_apg,state:sub-gymnast-apg=b1","p":84,"h":1,"b":"Gymnast","n":"Gymnast (Swashbuckler)"},{"c":24,"s":4,"id":8250,"u":"swashbuckler_apg,state:sub-wit-apg=b1","p":85,"h":1,"b":"Wit","n":"Wit (Swashbuckler)"},{"c":24,"s":52,"id":8252,"u":"witch_apg,state:sub-baba-yaga-lol=b1","p":32,"h":1,"b":"Baba Yaga","n":"Baba Yaga (Witch)"},{"c":24,"s":4,"id":8253,"u":"witch_apg,state:sub-curse-apg=b1","p":99,"h":1,"b":"Curse","n":"Curse (Witch)"},{"c":24,"s":4,"id":8254,"u":"witch_apg,state:sub-fate-apg=b1","p":99,"h":1,"b":"Fate","n":"Fate (Witch)"},{"c":24,"s":4,"id":8255,"u":"witch_apg,state:sub-fervor-apg=b1","p":99,"h":1,"b":"Fervor","n":"Fervor (Witch)"},{"c":24,"s":4,"id":8256,"u":"witch_apg,state:sub-night-apg=b1","p":99,"h":1,"b":"Night","n":"Night (Witch)"},{"c":24,"s":4,"id":8257,"u":"witch_apg,state:sub-rune-apg=b1","p":99,"h":1,"b":"Rune","n":"Rune (Witch)"},{"c":24,"s":4,"id":8258,"u":"witch_apg,state:sub-wild-apg=b1","p":99,"h":1,"b":"Wild","n":"Wild (Witch)"},{"c":24,"s":4,"id":8259,"u":"witch_apg,state:sub-winter-apg=b1","p":208,"h":1,"b":"Winter","n":"Winter (Witch)"},{"c":24,"s":5,"id":8261,"u":"wizard_crb,state:sub-abjuration-crb=b1","p":207,"h":1,"b":"Abjuration","n":"Abjuration (Wizard)"},{"c":24,"s":5,"id":8262,"u":"wizard_crb,state:sub-conjuration-crb=b1","p":207,"h":1,"b":"Conjuration","n":"Conjuration (Wizard)"},{"c":24,"s":5,"id":8263,"u":"wizard_crb,state:sub-divination-crb=b1","p":208,"h":1,"b":"Divination","n":"Divination (Wizard)"},{"c":24,"s":5,"id":8264,"u":"wizard_crb,state:sub-enchantment-crb=b1","p":208,"h":1,"b":"Enchantment","n":"Enchantment (Wizard)"},{"c":24,"s":5,"id":8265,"u":"wizard_crb,state:sub-evocation-crb=b1","p":208,"h":1,"b":"Evocation","n":"Evocation (Wizard)"},{"c":24,"s":5,"id":8266,"u":"wizard_crb,state:sub-illusion-crb=b1","p":208,"h":1,"b":"Illusion","n":"Illusion (Wizard)"},{"c":24,"s":5,"id":8267,"u":"wizard_crb,state:sub-necromancy-crb=b1","p":208,"h":1,"b":"Necromancy","n":"Necromancy (Wizard)"},{"c":24,"s":5,"id":8268,"u":"wizard_crb,state:sub-transmutation-crb=b1","p":208,"h":1,"b":"Transmutation","n":"Transmutation (Wizard)"},{"c":24,"s":5,"id":8269,"u":"wizard_crb,state:sub-universalist-crb=b1","p":209,"h":1,"b":"Universalist","n":"Universalist (Wizard)"},{"c":24,"s":5,"id":8270,"u":"wizard_crb,state:sub-improved-familiar-attunement-crb=b1","p":205,"h":1,"b":"Improved Familiar Attunement","n":"Improved Familiar Attunement (Wizard)"},{"c":24,"s":5,"id":8271,"u":"wizard_crb,state:sub-metamagical-experimentation-crb=b1","p":205,"h":1,"b":"Metamagical Experimentation","n":"Metamagical Experimentation (Wizard)"},{"c":24,"s":5,"id":8272,"u":"wizard_crb,state:sub-spell-blending-crb=b1","p":206,"h":1,"b":"Spell Blending","n":"Spell Blending (Wizard)"},{"c":24,"s":5,"id":8273,"u":"wizard_crb,state:sub-spell-substitution-crb=b1","p":206,"h":1,"b":"Spell Substitution","n":"Spell Substitution (Wizard)"},{"c":24,"s":4,"id":8274,"u":"wizard_crb,state:sub-staff-nexus-apg=b1","p":142,"h":1,"b":"Staff Nexus","n":"Staff Nexus (Wizard)"},{"c":5,"s":"CRB","id":8276,"u":"ancestry%20and%20background_alchemist_crb_1_crb","p":72,"h":1,"n":"Alchemist 1; Ancestry and Background","uh":"alchemist_crb,state:feature=s0-0"},{"c":5,"s":"CRB","id":8278,"u":"initial%20proficiencies_alchemist_crb_1_crb","p":72,"h":1,"n":"Alchemist 1; Initial Proficiencies","uh":"alchemist_crb,state:feature=s0-1"},{"c":5,"s":"CRB","id":8280,"u":"alchemy_alchemist_crb_1_crb","p":72,"h":1,"n":"Alchemist 1; Alchemy","uh":"alchemist_crb,state:feature=s0-2"},{"c":5,"s":"CRB","id":8282,"u":"formula%20book_alchemist_crb_1_crb","p":73,"h":1,"n":"Alchemist 1; Formula Book","uh":"alchemist_crb,state:feature=s0-3"},{"c":5,"s":"CRB","id":8284,"u":"research%20field_alchemist_crb_1_crb","p":73,"h":1,"n":"Alchemist 1; Research Field","uh":"alchemist_crb,state:feature=s0-4"},{"c":5,"s":"CRB","id":8286,"u":"alchemist%20feats_alchemist_crb_1_crb","p":73,"h":1,"n":"Alchemist 1; Alchemist Feats","uh":"alchemist_crb,state:feature=s0-5"},{"c":5,"s":"CRB","id":8288,"u":"skill%20feats_alchemist_crb_2_crb","p":73,"h":1,"n":"Alchemist 2; Skill Feats","uh":"alchemist_crb,state:feature=s1-0"},{"c":5,"s":"CRB","id":8290,"u":"general%20feats_alchemist_crb_3_crb","p":73,"h":1,"n":"Alchemist 3; General Feats","uh":"alchemist_crb,state:feature=s2-0"},{"c":5,"s":"CRB","id":8292,"u":"skill%20increases_alchemist_crb_3_crb","p":74,"h":1,"n":"Alchemist 3; Skill Increases","uh":"alchemist_crb,state:feature=s2-1"},{"c":5,"s":"CRB","id":8294,"u":"ability%20boosts_alchemist_crb_5_crb","p":74,"h":1,"n":"Alchemist 5; Ability Boosts","uh":"alchemist_crb,state:feature=s4-0"},{"c":5,"s":"CRB","id":8296,"u":"ancestry%20feats_alchemist_crb_5_crb","p":74,"h":1,"n":"Alchemist 5; Ancestry Feats","uh":"alchemist_crb,state:feature=s4-1"},{"c":5,"s":"CRB","id":8298,"u":"field%20discovery_alchemist_crb_5_crb","p":74,"h":1,"n":"Alchemist 5; Field Discovery","uh":"alchemist_crb,state:feature=s4-2"},{"c":5,"s":"CRB","id":8300,"u":"powerful%20alchemy_alchemist_crb_5_crb","p":74,"h":1,"n":"Alchemist 5; Powerful Alchemy","uh":"alchemist_crb,state:feature=s4-0"},{"c":5,"s":"CRB","id":8302,"u":"alchemical%20weapon%20expertise_alchemist_crb_7_crb","p":74,"h":1,"n":"Alchemist 7; Alchemical Weapon Expertise","uh":"alchemist_crb,state:feature=s6-0"},{"c":5,"s":"CRB","id":8304,"u":"iron%20will_alchemist_crb_7_crb","p":74,"h":1,"n":"Alchemist 7; Iron Will","uh":"alchemist_crb,state:feature=s6-1"},{"c":5,"s":"CRB","id":8306,"u":"perpetual%20infusions_alchemist_crb_7_crb","p":74,"h":1,"n":"Alchemist 7; Perpetual Infusions","uh":"alchemist_crb,state:feature=s6-2"},{"c":5,"s":"CRB","id":8308,"u":"alchemical%20expertise_alchemist_crb_9_crb","p":75,"h":1,"n":"Alchemist 9; Alchemical Expertise","uh":"alchemist_crb,state:feature=s8-0"},{"c":5,"s":"CRB","id":8310,"u":"alertness_alchemist_crb_9_crb","p":75,"h":1,"n":"Alchemist 9; Alertness","uh":"alchemist_crb,state:feature=s8-1"},{"c":5,"s":"CRB","id":8312,"u":"double%20brew_alchemist_crb_9_crb","p":75,"h":1,"n":"Alchemist 9; Double Brew","uh":"alchemist_crb,state:feature=s8-2"},{"c":5,"s":"CRB","id":8314,"u":"juggernaut_alchemist_crb_11_crb","p":75,"h":1,"n":"Alchemist 11; Juggernaut","uh":"alchemist_crb,state:feature=s10-0"},{"c":5,"s":"CRB","id":8316,"u":"perpetual%20potency_alchemist_crb_11_crb","p":75,"h":1,"n":"Alchemist 11; Perpetual Potency","uh":"alchemist_crb,state:feature=s10-1"},{"c":5,"s":"CRB","id":8318,"u":"greater%20field%20discovery_alchemist_crb_13_crb","p":75,"h":1,"n":"Alchemist 13; Greater Field Discovery","uh":"alchemist_crb,state:feature=s12-0"},{"c":5,"s":"CRB","id":8320,"u":"light%20armor%20expertise_alchemist_crb_13_crb","p":75,"h":1,"n":"Alchemist 13; Light Armor Expertise","uh":"alchemist_crb,state:feature=s12-1"},{"c":5,"s":"CRB","id":8322,"u":"weapon%20specialization_alchemist_crb_13_crb","p":75,"h":1,"n":"Alchemist 13; Weapon Specialization","uh":"alchemist_crb,state:feature=s12-2"},{"c":5,"s":"CRB","id":8324,"u":"alchemical%20alacrity_alchemist_crb_15_crb","p":75,"h":1,"n":"Alchemist 15; Alchemical Alacrity","uh":"alchemist_crb,state:feature=s14-0"},{"c":5,"s":"CRB","id":8326,"u":"evasion_alchemist_crb_15_crb","p":76,"h":1,"n":"Alchemist 15; Evasion","uh":"alchemist_crb,state:feature=s14-1"},{"c":5,"s":"CRB","id":8328,"u":"alchemical%20mastery_alchemist_crb_17_crb","p":76,"h":1,"n":"Alchemist 17; Alchemical Mastery","uh":"alchemist_crb,state:feature=s16-0"},{"c":5,"s":"CRB","id":8330,"u":"perpetual%20perfection_alchemist_crb_17_crb","p":76,"h":1,"n":"Alchemist 17; Perpetual Perfection","uh":"alchemist_crb,state:feature=s16-1"},{"c":5,"s":"CRB","id":8332,"u":"light%20armor%20mastery_alchemist_crb_19_crb","p":76,"h":1,"n":"Alchemist 19; Light Armor Mastery","uh":"alchemist_crb,state:feature=s18-0"},{"c":5,"s":"CRB","id":8334,"u":"ancestry%20and%20background_barbarian_crb_1_crb","p":84,"h":1,"n":"Barbarian 1; Ancestry and Background","uh":"barbarian_crb,state:feature=s0-0"},{"c":5,"s":"CRB","id":8336,"u":"initial%20proficiencies_barbarian_crb_1_crb","p":84,"h":1,"n":"Barbarian 1; Initial Proficiencies","uh":"barbarian_crb,state:feature=s0-1"},{"c":5,"s":"CRB","id":8338,"u":"rage_barbarian_crb_1_crb","p":84,"h":1,"n":"Barbarian 1; Rage","uh":"barbarian_crb,state:feature=s0-2"},{"c":5,"s":"CRB","id":8340,"u":"instinct_barbarian_crb_1_crb","p":84,"h":1,"n":"Barbarian 1; Instinct","uh":"barbarian_crb,state:feature=s0-3"},{"c":5,"s":"CRB","id":8342,"u":"barbarian%20feats_barbarian_crb_1_crb","p":84,"h":1,"n":"Barbarian 1; Barbarian Feats","uh":"barbarian_crb,state:feature=s0-4"},{"c":5,"s":"CRB","id":8344,"u":"skill%20feats_barbarian_crb_2_crb","p":84,"h":1,"n":"Barbarian 2; Skill Feats","uh":"barbarian_crb,state:feature=s1-0"},{"c":5,"s":"CRB","id":8346,"u":"deny%20advantage_barbarian_crb_3_crb","p":84,"h":1,"n":"Barbarian 3; Deny Advantage","uh":"barbarian_crb,state:feature=s2-0"},{"c":5,"s":"CRB","id":8348,"u":"general%20feats_barbarian_crb_3_crb","p":84,"h":1,"n":"Barbarian 3; General Feats","uh":"barbarian_crb,state:feature=s2-1"},{"c":5,"s":"CRB","id":8350,"u":"skill%20increases_barbarian_crb_3_crb","p":84,"h":1,"n":"Barbarian 3; Skill Increases","uh":"barbarian_crb,state:feature=s2-2"},{"c":5,"s":"CRB","id":8352,"u":"ability%20boosts_barbarian_crb_5_crb","p":84,"h":1,"n":"Barbarian 5; Ability Boosts","uh":"barbarian_crb,state:feature=s4-0"},{"c":5,"s":"CRB","id":8354,"u":"ancestry%20feats_barbarian_crb_5_crb","p":85,"h":1,"n":"Barbarian 5; Ancestry Feats","uh":"barbarian_crb,state:feature=s4-1"},{"c":5,"s":"CRB","id":8356,"u":"brutality_barbarian_crb_5_crb","p":85,"h":1,"n":"Barbarian 5; Brutality","uh":"barbarian_crb,state:feature=s4-2"},{"c":5,"s":"CRB","id":8358,"u":"juggernaut_barbarian_crb_7_crb","p":85,"h":1,"n":"Barbarian 7; Juggernaut","uh":"barbarian_crb,state:feature=s6-0"},{"c":5,"s":"CRB","id":8360,"u":"weapon%20specialization_barbarian_crb_7_crb","p":85,"h":1,"n":"Barbarian 7; Weapon Specialization","uh":"barbarian_crb,state:feature=s6-1"},{"c":5,"s":"CRB","id":8362,"u":"lightning%20reflexes_barbarian_crb_9_crb","p":85,"h":1,"n":"Barbarian 9; Lightning Reflexes","uh":"barbarian_crb,state:feature=s8-0"},{"c":5,"s":"CRB","id":8364,"u":"raging%20resistance_barbarian_crb_9_crb","p":85,"h":1,"n":"Barbarian 9; Raging Resistance","uh":"barbarian_crb,state:feature=s8-1"},{"c":5,"s":"CRB","id":8366,"u":"mighty%20rage_barbarian_crb_11_crb","p":85,"h":1,"n":"Barbarian 11; Mighty Rage","uh":"barbarian_crb,state:feature=s10-0"},{"c":5,"s":"CRB","id":8368,"u":"greater%20juggernaut_barbarian_crb_13_crb","p":85,"h":1,"n":"Barbarian 13; Greater Juggernaut","uh":"barbarian_crb,state:feature=s12-0"},{"c":5,"s":"CRB","id":8370,"u":"medium%20armor%20expertise_barbarian_crb_13_crb","p":85,"h":1,"n":"Barbarian 13; Medium Armor Expertise","uh":"barbarian_crb,state:feature=s12-1"},{"c":5,"s":"CRB","id":8372,"u":"weapon%20fury_barbarian_crb_13_crb","p":85,"h":1,"n":"Barbarian 13; Weapon Fury","uh":"barbarian_crb,state:feature=s12-2"},{"c":5,"s":"CRB","id":8374,"u":"greater%20weapon%20specialization_barbarian_crb_15_crb","p":86,"h":1,"n":"Barbarian 15; Greater Weapon Specialization","uh":"barbarian_crb,state:feature=s14-0"},{"c":5,"s":"CRB","id":8376,"u":"indomitable%20will_barbarian_crb_15_crb","p":86,"h":1,"n":"Barbarian 15; Indomitable Will","uh":"barbarian_crb,state:feature=s14-1"},{"c":5,"s":"CRB","id":8378,"u":"heightened%20senses_barbarian_crb_17_crb","p":86,"h":1,"n":"Barbarian 17; Heightened Senses","uh":"barbarian_crb,state:feature=s16-0"},{"c":5,"s":"CRB","id":8380,"u":"quick%20rage_barbarian_crb_17_crb","p":86,"h":1,"n":"Barbarian 17; Quick Rage","uh":"barbarian_crb,state:feature=s16-1"},{"c":5,"s":"CRB","id":8382,"u":"armor%20of%20fury_barbarian_crb_19_crb","p":86,"h":1,"n":"Barbarian 19; Armor of Fury","uh":"barbarian_crb,state:feature=s18-0"},{"c":5,"s":"CRB","id":8384,"u":"devastator_barbarian_crb_19_crb","p":86,"h":1,"n":"Barbarian 19; Devastator","uh":"barbarian_crb,state:feature=s18-1"},{"c":5,"s":"CRB","id":8386,"u":"ancestry%20and%20background_bard_crb_1_crb","p":96,"h":1,"n":"Bard 1; Ancestry and Background","uh":"bard_crb,state:feature=s0-0"},{"c":5,"s":"CRB","id":8388,"u":"initial%20proficiencies_bard_crb_1_crb","p":96,"h":1,"n":"Bard 1; Initial Proficiencies","uh":"bard_crb,state:feature=s0-1"},{"c":5,"s":"CRB","id":8390,"u":"occult%20spellcasting_bard_crb_1_crb","p":96,"h":1,"n":"Bard 1; Occult Spellcasting","uh":"bard_crb,state:feature=s0-2"},{"c":5,"s":"CRB","id":8392,"u":"spell%20repertoire_bard_crb_1_crb","p":96,"h":1,"n":"Bard 1; Spell Repertoire","uh":"bard_crb,state:feature=s0-3"},{"c":5,"s":"CRB","id":8394,"u":"composition%20spells_bard_crb_1_crb","p":97,"h":1,"n":"Bard 1; Composition Spells","uh":"bard_crb,state:feature=s0-4"},{"c":5,"s":"CRB","id":8396,"u":"muses_bard_crb_1_crb","p":97,"h":1,"n":"Bard 1; Muses","uh":"bard_crb,state:feature=s0-5"},{"c":5,"s":"CRB","id":8398,"u":"bard%20feats_bard_crb_2_crb","p":98,"h":1,"n":"Bard 2; Bard Feats","uh":"bard_crb,state:feature=s1-0"},{"c":5,"s":"CRB","id":8400,"u":"skill%20feats_bard_crb_2_crb","p":98,"h":1,"n":"Bard 2; Skill Feats","uh":"bard_crb,state:feature=s1-1"},{"c":5,"s":"CRB","id":8402,"u":"general%20feats_bard_crb_3_crb","p":98,"h":1,"n":"Bard 3; General Feats","uh":"bard_crb,state:feature=s2-0"},{"c":5,"s":"CRB","id":8404,"u":"lightning%20reflexes_bard_crb_3_crb","p":98,"h":1,"n":"Bard 3; Lightning Reflexes","uh":"bard_crb,state:feature=s2-1"},{"c":5,"s":"CRB","id":8406,"u":"signature%20spells_bard_crb_3_crb","p":98,"h":1,"n":"Bard 3; Signature Spells","uh":"bard_crb,state:feature=s2-2"},{"c":5,"s":"CRB","id":8408,"u":"skill%20increases_bard_crb_3_crb","p":98,"h":1,"n":"Bard 3; Skill Increases","uh":"bard_crb,state:feature=s2-3"},{"c":5,"s":"CRB","id":8410,"u":"ability%20boosts_bard_crb_5_crb","p":98,"h":1,"n":"Bard 5; Ability Boosts","uh":"bard_crb,state:feature=s4-0"},{"c":5,"s":"CRB","id":8412,"u":"ancestry%20feats_bard_crb_5_crb","p":98,"h":1,"n":"Bard 5; Ancestry Feats","uh":"bard_crb,state:feature=s4-1"},{"c":5,"s":"CRB","id":8414,"u":"expert%20spellcaster_bard_crb_7_crb","p":98,"h":1,"n":"Bard 7; Expert Spellcaster","uh":"bard_crb,state:feature=s6-0"},{"c":5,"s":"CRB","id":8416,"u":"great%20fortitude_bard_crb_9_crb","p":99,"h":1,"n":"Bard 9; Great Fortitude","uh":"bard_crb,state:feature=s8-0"},{"c":5,"s":"CRB","id":8418,"u":"resolve_bard_crb_9_crb","p":99,"h":1,"n":"Bard 9; Resolve","uh":"bard_crb,state:feature=s8-1"},{"c":5,"s":"CRB","id":8420,"u":"bard%20weapon%20expertise_bard_crb_11_crb","p":99,"h":1,"n":"Bard 11; Bard Weapon Expertise","uh":"bard_crb,state:feature=s10-0"},{"c":5,"s":"CRB","id":8422,"u":"vigilant%20senses_bard_crb_11_crb","p":99,"h":1,"n":"Bard 11; Vigilant Senses","uh":"bard_crb,state:feature=s10-1"},{"c":5,"s":"CRB","id":8424,"u":"light%20armor%20expertise_bard_crb_13_crb","p":99,"h":1,"n":"Bard 13; Light Armor Expertise","uh":"bard_crb,state:feature=s12-0"},{"c":5,"s":"CRB","id":8426,"u":"weapon%20specialization_bard_crb_13_crb","p":99,"h":1,"n":"Bard 13; Weapon Specialization","uh":"bard_crb,state:feature=s12-1"},{"c":5,"s":"CRB","id":8428,"u":"master%20spellcaster_bard_crb_15_crb","p":99,"h":1,"n":"Bard 15; Master Spellcaster","uh":"bard_crb,state:feature=s14-0"},{"c":5,"s":"CRB","id":8430,"u":"greater%20resolve_bard_crb_17_crb","p":99,"h":1,"n":"Bard 17; Greater Resolve","uh":"bard_crb,state:feature=s16-0"},{"c":5,"s":"CRB","id":8432,"u":"magnum%20opus_bard_crb_19_crb","p":99,"h":1,"n":"Bard 19; Magnum Opus","uh":"bard_crb,state:feature=s18-0"},{"c":5,"s":"CRB","id":8434,"u":"legendary%20spellcaster_bard_crb_19_crb","p":99,"h":1,"n":"Bard 19; Legendary Spellcaster","uh":"bard_crb,state:feature=s18-1"},{"c":5,"s":"CRB","id":8436,"u":"ancestry%20and%20background_champion_crb_1_crb","p":106,"h":1,"n":"Champion 1; Ancestry and Background","uh":"champion_crb,state:feature=s0-0"},{"c":5,"s":"CRB","id":8438,"u":"initial%20proficiencies_champion_crb_1_crb","p":106,"h":1,"n":"Champion 1; Initial Proficiencies","uh":"champion_crb,state:feature=s0-1"},{"c":5,"s":"CRB","id":8440,"u":"champion's%20code_champion_crb_1_crb","p":106,"h":1,"n":"Champion 1; Champion's Code","uh":"champion_crb,state:feature=s0-2"},{"c":5,"s":"CRB","id":8442,"u":"deity%20and%20cause_champion_crb_1_crb","p":106,"h":1,"n":"Champion 1; Deity and Cause","uh":"champion_crb,state:feature=s0-3"},{"c":5,"s":"CRB","id":8444,"u":"deific%20weapon_champion_crb_1_crb","p":107,"h":1,"n":"Champion 1; Deific Weapon","uh":"champion_crb,state:feature=s0-4"},{"c":5,"s":"CRB","id":8446,"u":"champion's%20reaction_champion_crb_1_crb","p":107,"h":1,"n":"Champion 1; Champion's Reaction","uh":"champion_crb,state:feature=s0-5"},{"c":5,"s":"CRB","id":8448,"u":"devotion%20spells_champion_crb_1_crb","p":108,"h":1,"n":"Champion 1; Devotion Spells","uh":"champion_crb,state:feature=s0-6"},{"c":5,"s":"CRB","id":8450,"u":"champion%20feats_champion_crb_1_crb","p":108,"h":1,"n":"Champion 1; Champion Feats","uh":"champion_crb,state:feature=s0-7"},{"c":5,"s":"CRB","id":8452,"u":"shield%20block_champion_crb_1_crb","p":108,"h":1,"n":"Champion 1; Shield Block","uh":"champion_crb,state:feature=s0-8"},{"c":5,"s":"CRB","id":8454,"u":"skill%20feats_champion_crb_2_crb","p":108,"h":1,"n":"Champion 2; Skill Feats","uh":"champion_crb,state:feature=s1-0"},{"c":5,"s":"CRB","id":8456,"u":"divine%20ally_champion_crb_3_crb","p":108,"h":1,"n":"Champion 3; Divine Ally","uh":"champion_crb,state:feature=s2-0"},{"c":5,"s":"CRB","id":8458,"u":"general%20feats_champion_crb_3_crb","p":108,"h":1,"n":"Champion 3; General Feats","uh":"champion_crb,state:feature=s2-1"},{"c":5,"s":"CRB","id":8460,"u":"skill%20increases_champion_crb_3_crb","p":108,"h":1,"n":"Champion 3; Skill Increases","uh":"champion_crb,state:feature=s2-2"},{"c":5,"s":"CRB","id":8462,"u":"ability%20boosts_champion_crb_5_crb","p":108,"h":1,"n":"Champion 5; Ability Boosts","uh":"champion_crb,state:feature=s4-0"},{"c":5,"s":"CRB","id":8464,"u":"ancestry%20feats_champion_crb_5_crb","p":108,"h":1,"n":"Champion 5; Ancestry Feats","uh":"champion_crb,state:feature=s4-1"},{"c":5,"s":"CRB","id":8466,"u":"weapon%20expertise_champion_crb_5_crb","p":108,"h":1,"n":"Champion 5; Weapon Expertise","uh":"champion_crb,state:feature=s4-2"},{"c":5,"s":"CRB","id":8468,"u":"armor%20expertise_champion_crb_7_crb","p":108,"h":1,"n":"Champion 7; Armor Expertise","uh":"champion_crb,state:feature=s6-0"},{"c":5,"s":"CRB","id":8470,"u":"weapon%20specialization_champion_crb_7_crb","p":108,"h":1,"n":"Champion 7; Weapon Specialization","uh":"champion_crb,state:feature=s6-1"},{"c":5,"s":"CRB","id":8472,"u":"champion%20expertise_champion_crb_9_crb","p":108,"h":1,"n":"Champion 9; Champion Expertise","uh":"champion_crb,state:feature=s8-0"},{"c":5,"s":"CRB","id":8474,"u":"divine%20smite_champion_crb_9_crb","p":108,"h":1,"n":"Champion 9; Divine Smite","uh":"champion_crb,state:feature=s8-1"},{"c":5,"s":"CRB","id":8476,"u":"juggernaut_champion_crb_9_crb","p":109,"h":1,"n":"Champion 9; Juggernaut","uh":"champion_crb,state:feature=s8-2"},{"c":5,"s":"CRB","id":8478,"u":"lightning%20reflexes_champion_crb_9_crb","p":109,"h":1,"n":"Champion 9; Lightning Reflexes","uh":"champion_crb,state:feature=s8-0"},{"c":5,"s":"CRB","id":8480,"u":"alertness_champion_crb_11_crb","p":109,"h":1,"n":"Champion 11; Alertness","uh":"champion_crb,state:feature=s10-0"},{"c":5,"s":"CRB","id":8482,"u":"divine%20will_champion_crb_11_crb","p":109,"h":1,"n":"Champion 11; Divine Will","uh":"champion_crb,state:feature=s10-1"},{"c":5,"s":"CRB","id":8484,"u":"exalt_champion_crb_11_crb","p":109,"h":1,"n":"Champion 11; Exalt","uh":"champion_crb,state:feature=s10-2"},{"c":5,"s":"CRB","id":8486,"u":"armor%20mastery_champion_crb_13_crb","p":109,"h":1,"n":"Champion 13; Armor Mastery","uh":"champion_crb,state:feature=s12-0"},{"c":5,"s":"CRB","id":8488,"u":"weapon%20mastery_champion_crb_13_crb","p":109,"h":1,"n":"Champion 13; Weapon Mastery","uh":"champion_crb,state:feature=s12-1"},{"c":5,"s":"CRB","id":8490,"u":"greater%20weapon%20specialization_champion_crb_15_crb","p":109,"h":1,"n":"Champion 15; Greater Weapon Specialization","uh":"champion_crb,state:feature=s14-0"},{"c":5,"s":"CRB","id":8492,"u":"champion%20mastery_champion_crb_17_crb","p":109,"h":1,"n":"Champion 17; Champion Mastery","uh":"champion_crb,state:feature=s16-0"},{"c":5,"s":"CRB","id":8494,"u":"legendary%20armor_champion_crb_17_crb","p":109,"h":1,"n":"Champion 17; Legendary Armor","uh":"champion_crb,state:feature=s16-1"},{"c":5,"s":"CRB","id":8496,"u":"hero's%20defiance_champion_crb_19_crb","p":109,"h":1,"n":"Champion 19; Hero's Defiance","uh":"champion_crb,state:feature=s18-0"},{"c":5,"s":"CRB","id":8498,"u":"ancestry%20and%20background_cleric_crb_1_crb","p":118,"h":1,"n":"Cleric 1; Ancestry and Background","uh":"cleric_crb,state:feature=s0-0"},{"c":5,"s":"CRB","id":8500,"u":"initial%20proficiencies_cleric_crb_1_crb","p":118,"h":1,"n":"Cleric 1; Initial Proficiencies","uh":"cleric_crb,state:feature=s0-1"},{"c":5,"s":"CRB","id":8502,"u":"first%20doctrine_cleric_crb_1_crb","p":119,"h":1,"n":"Cleric 1; First Doctrine","uh":"cleric_crb,state:feature=s0-6"},{"c":5,"s":"CRB","id":8504,"u":"second%20doctrine_cleric_crb_3_crb","p":119,"h":1,"n":"Cleric 3; Second Doctrine","uh":"cleric_crb,state:feature=s2-0"},{"c":5,"s":"CRB","id":8506,"u":"final%20doctrine_cleric_crb_19_crb","p":119,"h":1,"n":"Cleric 19; Final Doctrine","uh":"cleric_crb,state:feature=s18-0"},{"c":5,"s":"CRB","id":8508,"u":"fifth%20doctrine_cleric_crb_15_crb","p":119,"h":1,"n":"Cleric 15; Fifth Doctrine","uh":"cleric_crb,state:feature=s14-0"},{"c":5,"s":"CRB","id":8510,"u":"fourth%20doctrine_cleric_crb_11_crb","p":119,"h":1,"n":"Cleric 11; Fourth Doctrine","uh":"cleric_crb,state:feature=s10-0"},{"c":5,"s":"CRB","id":8512,"u":"third%20doctrine_cleric_crb_7_crb","p":119,"h":1,"n":"Cleric 7; Third Doctrine","uh":"cleric_crb,state:feature=s6-0"},{"c":5,"s":"CRB","id":8514,"u":"deity_cleric_crb_1_crb","p":118,"h":1,"n":"Cleric 1; Deity","uh":"cleric_crb,state:feature=s0-2"},{"c":5,"s":"CRB","id":8516,"u":"divine%20spellcasting_cleric_crb_1_crb","p":118,"h":1,"n":"Cleric 1; Divine Spellcasting","uh":"cleric_crb,state:feature=s0-3"},{"c":5,"s":"CRB","id":8518,"u":"divine%20font_cleric_crb_1_crb","p":119,"h":1,"n":"Cleric 1; Divine Font","uh":"cleric_crb,state:feature=s0-4"},{"c":5,"s":"CRB","id":8520,"u":"doctrine_cleric_crb_1_crb","p":119,"h":1,"n":"Cleric 1; Doctrine","uh":"cleric_crb,state:feature=s0-5"},{"c":5,"s":"CRB","id":8522,"u":"cleric%20feats_cleric_crb_2_crb","p":120,"h":1,"n":"Cleric 2; Cleric Feats","uh":"cleric_crb,state:feature=s1-0"},{"c":5,"s":"CRB","id":8524,"u":"skill%20feats_cleric_crb_2_crb","p":120,"h":1,"n":"Cleric 2; Skill Feats","uh":"cleric_crb,state:feature=s1-1"},{"c":5,"s":"CRB","id":8526,"u":"general%20feats_cleric_crb_3_crb","p":120,"h":1,"n":"Cleric 3; General Feats","uh":"cleric_crb,state:feature=s2-1"},{"c":5,"s":"CRB","id":8528,"u":"skill%20increases_cleric_crb_3_crb","p":120,"h":1,"n":"Cleric 3; Skill Increases","uh":"cleric_crb,state:feature=s2-2"},{"c":5,"s":"CRB","id":8530,"u":"ability%20boosts_cleric_crb_5_crb","p":120,"h":1,"n":"Cleric 5; Ability Boosts","uh":"cleric_crb,state:feature=s4-0"},{"c":5,"s":"CRB","id":8532,"u":"alertness_cleric_crb_5_crb","p":121,"h":1,"n":"Cleric 5; Alertness","uh":"cleric_crb,state:feature=s4-1"},{"c":5,"s":"CRB","id":8534,"u":"ancestry%20feats_cleric_crb_5_crb","p":121,"h":1,"n":"Cleric 5; Ancestry Feats","uh":"cleric_crb,state:feature=s4-2"},{"c":5,"s":"CRB","id":8536,"u":"resolve_cleric_crb_9_crb","p":121,"h":1,"n":"Cleric 9; Resolve","uh":"cleric_crb,state:feature=s8-0"},{"c":5,"s":"CRB","id":8538,"u":"lightning%20reflexes_cleric_crb_11_crb","p":121,"h":1,"n":"Cleric 11; Lightning Reflexes","uh":"cleric_crb,state:feature=s10-1"},{"c":5,"s":"CRB","id":8540,"u":"divine%20defense_cleric_crb_13_crb","p":121,"h":1,"n":"Cleric 13; Divine Defense","uh":"cleric_crb,state:feature=s12-0"},{"c":5,"s":"CRB","id":8542,"u":"weapon%20specialization_cleric_crb_13_crb","p":121,"h":1,"n":"Cleric 13; Weapon Specialization","uh":"cleric_crb,state:feature=s12-1"},{"c":5,"s":"CRB","id":8544,"u":"miraculous%20spell_cleric_crb_19_crb","p":121,"h":1,"n":"Cleric 19; Miraculous Spell","uh":"cleric_crb,state:feature=s18-1"},{"c":5,"s":"CRB","id":8546,"u":"ancestry%20and%20background_druid_crb_1_crb","p":130,"h":1,"n":"Druid 1; Ancestry and Background","uh":"druid_crb,state:feature=s0-0"},{"c":5,"s":"CRB","id":8548,"u":"initial%20proficiencies_druid_crb_1_crb","p":130,"h":1,"n":"Druid 1; Initial Proficiencies","uh":"druid_crb,state:feature=s0-1"},{"c":5,"s":"CRB","id":8550,"u":"primal%20spellcasting_druid_crb_1_crb","p":130,"h":1,"n":"Druid 1; Primal Spellcasting","uh":"druid_crb,state:feature=s0-2"},{"c":5,"s":"CRB","id":8552,"u":"anathema_druid_crb_1_crb","p":130,"h":1,"n":"Druid 1; Anathema","uh":"druid_crb,state:feature=s0-3"},{"c":5,"s":"CRB","id":8554,"u":"druidic%20language_druid_crb_1_crb","p":130,"h":1,"n":"Druid 1; Druidic Language","uh":"druid_crb,state:feature=s0-4"},{"c":5,"s":"CRB","id":8556,"u":"druidic%20order_druid_crb_1_crb","p":131,"h":1,"n":"Druid 1; Druidic Order","uh":"druid_crb,state:feature=s0-5"},{"c":5,"s":"CRB","id":8558,"u":"shield%20block_druid_crb_1_crb","p":132,"h":1,"n":"Druid 1; Shield Block","uh":"druid_crb,state:feature=s0-6"},{"c":5,"s":"CRB","id":8560,"u":"wild%20empathy_druid_crb_1_crb","p":132,"h":1,"n":"Druid 1; Wild Empathy","uh":"druid_crb,state:feature=s0-7"},{"c":5,"s":"CRB","id":8562,"u":"druid%20feats_druid_crb_2_crb","p":132,"h":1,"n":"Druid 2; Druid Feats","uh":"druid_crb,state:feature=s1-0"},{"c":5,"s":"CRB","id":8564,"u":"skill%20feats_druid_crb_2_crb","p":132,"h":1,"n":"Druid 2; Skill Feats","uh":"druid_crb,state:feature=s1-1"},{"c":5,"s":"CRB","id":8566,"u":"alertness_druid_crb_3_crb","p":132,"h":1,"n":"Druid 3; Alertness","uh":"druid_crb,state:feature=s2-0"},{"c":5,"s":"CRB","id":8568,"u":"general%20feats_druid_crb_3_crb","p":132,"h":1,"n":"Druid 3; General Feats","uh":"druid_crb,state:feature=s2-1"},{"c":5,"s":"CRB","id":8570,"u":"great%20fortitude_druid_crb_3_crb","p":132,"h":1,"n":"Druid 3; Great Fortitude","uh":"druid_crb,state:feature=s2-2"},{"c":5,"s":"CRB","id":8572,"u":"skill%20increases_druid_crb_3_crb","p":133,"h":1,"n":"Druid 3; Skill Increases","uh":"druid_crb,state:feature=s2-3"},{"c":5,"s":"CRB","id":8574,"u":"ability%20boosts_druid_crb_5_crb","p":133,"h":1,"n":"Druid 5; Ability Boosts","uh":"druid_crb,state:feature=s4-0"},{"c":5,"s":"CRB","id":8576,"u":"ancestry%20feats_druid_crb_5_crb","p":133,"h":1,"n":"Druid 5; Ancestry Feats","uh":"druid_crb,state:feature=s4-1"},{"c":5,"s":"CRB","id":8578,"u":"lightning%20reflexes_druid_crb_5_crb","p":133,"h":1,"n":"Druid 5; Lightning Reflexes","uh":"druid_crb,state:feature=s4-2"},{"c":5,"s":"CRB","id":8580,"u":"expert%20spellcaster_druid_crb_7_crb","p":133,"h":1,"n":"Druid 7; Expert Spellcaster","uh":"druid_crb,state:feature=s6-0"},{"c":5,"s":"CRB","id":8582,"u":"druid%20weapon%20expertise_druid_crb_11_crb","p":133,"h":1,"n":"Druid 11; Druid Weapon Expertise","uh":"druid_crb,state:feature=s10-0"},{"c":5,"s":"CRB","id":8584,"u":"resolve_druid_crb_11_crb","p":133,"h":1,"n":"Druid 11; Resolve","uh":"druid_crb,state:feature=s10-1"},{"c":5,"s":"CRB","id":8586,"u":"medium%20armor%20expertise_druid_crb_13_crb","p":133,"h":1,"n":"Druid 13; Medium Armor Expertise","uh":"druid_crb,state:feature=s12-0"},{"c":5,"s":"CRB","id":8588,"u":"weapon%20specialization_druid_crb_13_crb","p":133,"h":1,"n":"Druid 13; Weapon Specialization","uh":"druid_crb,state:feature=s12-1"},{"c":5,"s":"CRB","id":8590,"u":"master%20spellcaster_druid_crb_15_crb","p":133,"h":1,"n":"Druid 15; Master Spellcaster","uh":"druid_crb,state:feature=s14-0"},{"c":5,"s":"CRB","id":8592,"u":"legendary%20spellcaster_druid_crb_19_crb","p":133,"h":1,"n":"Druid 19; Legendary Spellcaster","uh":"druid_crb,state:feature=s18-0"},{"c":5,"s":"CRB","id":8594,"u":"primal%20hierophant_druid_crb_19_crb","p":133,"h":1,"n":"Druid 19; Primal Hierophant","uh":"druid_crb,state:feature=s18-1"},{"c":5,"s":"CRB","id":8596,"u":"ancestry%20and%20background_fighter_crb_1_crb","p":141,"h":1,"n":"Fighter 1; Ancestry and Background","uh":"fighter_crb,state:feature=s0-0"},{"c":5,"s":"CRB","id":8598,"u":"initial%20proficiencies_fighter_crb_1_crb","p":141,"h":1,"n":"Fighter 1; Initial Proficiencies","uh":"fighter_crb,state:feature=s0-1"},{"c":5,"s":"CRB","id":8600,"u":"attack%20of%20opportunity_fighter_crb_1_crb","p":141,"h":1,"n":"Fighter 1; Attack of Opportunity","uh":"fighter_crb,state:feature=s0-2"},{"c":5,"s":"CRB","id":8602,"u":"fighter%20feats_fighter_crb_1_crb","p":141,"h":1,"n":"Fighter 1; Fighter Feats","uh":"fighter_crb,state:feature=s0-3"},{"c":5,"s":"CRB","id":8604,"u":"shield%20block_fighter_crb_1_crb","p":141,"h":1,"n":"Fighter 1; Shield Block","uh":"fighter_crb,state:feature=s0-4"},{"c":5,"s":"CRB","id":8606,"u":"skill%20feats_fighter_crb_2_crb","p":141,"h":1,"n":"Fighter 2; Skill Feats","uh":"fighter_crb,state:feature=s1-0"},{"c":5,"s":"CRB","id":8608,"u":"bravery_fighter_crb_3_crb","p":141,"h":1,"n":"Fighter 3; Bravery","uh":"fighter_crb,state:feature=s2-0"},{"c":5,"s":"CRB","id":8610,"u":"general%20feats_fighter_crb_3_crb","p":141,"h":1,"n":"Fighter 3; General Feats","uh":"fighter_crb,state:feature=s2-1"},{"c":5,"s":"CRB","id":8612,"u":"skill%20increases_fighter_crb_3_crb","p":141,"h":1,"n":"Fighter 3; Skill Increases","uh":"fighter_crb,state:feature=s2-2"},{"c":5,"s":"CRB","id":8614,"u":"ability%20boosts_fighter_crb_5_crb","p":141,"h":1,"n":"Fighter 5; Ability Boosts","uh":"fighter_crb,state:feature=s4-0"},{"c":5,"s":"CRB","id":8616,"u":"ancestry%20feats_fighter_crb_5_crb","p":141,"h":1,"n":"Fighter 5; Ancestry Feats","uh":"fighter_crb,state:feature=s4-1"},{"c":5,"s":"CRB","id":8618,"u":"fighter%20weapon%20mastery_fighter_crb_5_crb","p":142,"h":1,"n":"Fighter 5; Fighter Weapon Mastery","uh":"fighter_crb,state:feature=s4-2"},{"c":5,"s":"CRB","id":8620,"u":"battlefield%20surveyor_fighter_crb_7_crb","p":142,"h":1,"n":"Fighter 7; Battlefield Surveyor","uh":"fighter_crb,state:feature=s6-0"},{"c":5,"s":"CRB","id":8622,"u":"weapon%20specialization_fighter_crb_7_crb","p":142,"h":1,"n":"Fighter 7; Weapon Specialization","uh":"fighter_crb,state:feature=s6-1"},{"c":5,"s":"CRB","id":8624,"u":"combat%20flexibility_fighter_crb_9_crb","p":142,"h":1,"n":"Fighter 9; Combat Flexibility","uh":"fighter_crb,state:feature=s8-0"},{"c":5,"s":"CRB","id":8626,"u":"juggernaut_fighter_crb_9_crb","p":142,"h":1,"n":"Fighter 9; Juggernaut","uh":"fighter_crb,state:feature=s8-1"},{"c":5,"s":"CRB","id":8628,"u":"armor%20expertise_fighter_crb_11_crb","p":142,"h":1,"n":"Fighter 11; Armor Expertise","uh":"fighter_crb,state:feature=s10-0"},{"c":5,"s":"CRB","id":8630,"u":"fighter%20expertise_fighter_crb_11_crb","p":142,"h":1,"n":"Fighter 11; Fighter Expertise","uh":"fighter_crb,state:feature=s10-1"},{"c":5,"s":"CRB","id":8632,"u":"weapon%20legend_fighter_crb_13_crb","p":142,"h":1,"n":"Fighter 13; Weapon Legend","uh":"fighter_crb,state:feature=s12-0"},{"c":5,"s":"CRB","id":8634,"u":"evasion_fighter_crb_15_crb","p":142,"h":1,"n":"Fighter 15; Evasion","uh":"fighter_crb,state:feature=s14-0"},{"c":5,"s":"CRB","id":8636,"u":"greater%20weapon%20specialization_fighter_crb_15_crb","p":142,"h":1,"n":"Fighter 15; Greater Weapon Specialization","uh":"fighter_crb,state:feature=s14-1"},{"c":5,"s":"CRB","id":8638,"u":"improved%20flexibility_fighter_crb_15_crb","p":142,"h":1,"n":"Fighter 15; Improved Flexibility","uh":"fighter_crb,state:feature=s14-2"},{"c":5,"s":"CRB","id":8640,"u":"armor%20mastery_fighter_crb_17_crb","p":143,"h":1,"n":"Fighter 17; Armor Mastery","uh":"fighter_crb,state:feature=s16-0"},{"c":5,"s":"CRB","id":8642,"u":"versatile%20legend_fighter_crb_19_crb","p":143,"h":1,"n":"Fighter 19; Versatile Legend","uh":"fighter_crb,state:feature=s18-0"},{"c":5,"s":"G&G","id":8644,"u":"ancestry%20and%20background_gunslinger_g%26g_1_g%26g","p":106,"h":1,"n":"Gunslinger 1; Ancestry and Background","uh":"gunslinger_g%26g,state:feature=s0-0"},{"c":5,"s":"G&G","id":8646,"u":"initial%20proficiencies_gunslinger_g%26g_1_g%26g","p":106,"h":1,"n":"Gunslinger 1; Initial Proficiencies","uh":"gunslinger_g%26g,state:feature=s0-1"},{"c":5,"s":"G&G","id":8648,"u":"gunslinger's%20way_gunslinger_g%26g_1_g%26g","p":106,"h":1,"n":"Gunslinger 1; Gunslinger's Way","uh":"gunslinger_g%26g,state:feature=s0-2"},{"c":5,"s":"G&G","id":8650,"u":"gunslinger%20feats_gunslinger_g%26g_1_g%26g","p":106,"h":1,"n":"Gunslinger 1; Gunslinger Feats","uh":"gunslinger_g%26g,state:feature=s0-3"},{"c":5,"s":"G&G","id":8652,"u":"singular%20expertise_gunslinger_g%26g_1_g%26g","p":106,"h":1,"n":"Gunslinger 1; Singular Expertise","uh":"gunslinger_g%26g,state:feature=s0-4"},{"c":5,"s":"G&G","id":8654,"u":"skill%20feats_gunslinger_g%26g_2_g%26g","p":106,"h":1,"n":"Gunslinger 2; Skill Feats","uh":"gunslinger_g%26g,state:feature=s1-0"},{"c":5,"s":"G&G","id":8656,"u":"general%20feats_gunslinger_g%26g_3_g%26g","p":106,"h":1,"n":"Gunslinger 3; General Feats","uh":"gunslinger_g%26g,state:feature=s2-0"},{"c":5,"s":"G&G","id":8658,"u":"skill%20increases_gunslinger_g%26g_3_g%26g","p":106,"h":1,"n":"Gunslinger 3; Skill Increases","uh":"gunslinger_g%26g,state:feature=s2-1"},{"c":5,"s":"G&G","id":8660,"u":"stubborn_gunslinger_g%26g_3_g%26g","p":106,"h":1,"n":"Gunslinger 3; Stubborn","uh":"gunslinger_g%26g,state:feature=s2-2"},{"c":5,"s":"G&G","id":8662,"u":"ability%20boosts_gunslinger_g%26g_5_g%26g","p":107,"h":1,"n":"Gunslinger 5; Ability Boosts","uh":"gunslinger_g%26g,state:feature=s4-0"},{"c":5,"s":"G&G","id":8664,"u":"ancestry%20feats_gunslinger_g%26g_5_g%26g","p":107,"h":1,"n":"Gunslinger 5; Ancestry Feats","uh":"gunslinger_g%26g,state:feature=s4-1"},{"c":5,"s":"G&G","id":8666,"u":"gunslinger%20weapon%20mastery_gunslinger_g%26g_5_g%26g","p":107,"h":1,"n":"Gunslinger 5; Gunslinger Weapon Mastery","uh":"gunslinger_g%26g,state:feature=s4-2"},{"c":5,"s":"G&G","id":8668,"u":"vigilant%20senses_gunslinger_g%26g_7_g%26g","p":107,"h":1,"n":"Gunslinger 7; Vigilant Senses","uh":"gunslinger_g%26g,state:feature=s6-0"},{"c":5,"s":"G&G","id":8670,"u":"weapon%20specialization_gunslinger_g%26g_7_g%26g","p":107,"h":1,"n":"Gunslinger 7; Weapon Specialization","uh":"gunslinger_g%26g,state:feature=s6-1"},{"c":5,"s":"G&G","id":8672,"u":"advanced%20deed_gunslinger_g%26g_9_g%26g","p":107,"h":1,"n":"Gunslinger 9; Advanced Deed","uh":"gunslinger_g%26g,state:feature=s8-0"},{"c":5,"s":"G&G","id":8674,"u":"gunslinger%20expertise_gunslinger_g%26g_9_g%26g","p":107,"h":1,"n":"Gunslinger 9; Gunslinger Expertise","uh":"gunslinger_g%26g,state:feature=s8-1"},{"c":5,"s":"G&G","id":8676,"u":"evasion_gunslinger_g%26g_11_g%26g","p":107,"h":1,"n":"Gunslinger 11; Evasion","uh":"gunslinger_g%26g,state:feature=s10-0"},{"c":5,"s":"G&G","id":8678,"u":"gunslinging%20legend_gunslinger_g%26g_13_g%26g","p":107,"h":1,"n":"Gunslinger 13; Gunslinging Legend","uh":"gunslinger_g%26g,state:feature=s12-0"},{"c":5,"s":"G&G","id":8680,"u":"medium%20armor%20expertise_gunslinger_g%26g_13_g%26g","p":107,"h":1,"n":"Gunslinger 13; Medium Armor Expertise","uh":"gunslinger_g%26g,state:feature=s12-1"},{"c":5,"s":"G&G","id":8682,"u":"greater%20deed_gunslinger_g%26g_15_g%26g","p":107,"h":1,"n":"Gunslinger 15; Greater Deed","uh":"gunslinger_g%26g,state:feature=s14-0"},{"c":5,"s":"G&G","id":8684,"u":"greater%20weapon%20specialization_gunslinger_g%26g_15_g%26g","p":107,"h":1,"n":"Gunslinger 15; Greater Weapon Specialization","uh":"gunslinger_g%26g,state:feature=s14-1"},{"c":5,"s":"G&G","id":8686,"u":"juggernaut_gunslinger_g%26g_17_g%26g","p":107,"h":1,"n":"Gunslinger 17; Juggernaut","uh":"gunslinger_g%26g,state:feature=s16-0"},{"c":5,"s":"G&G","id":8688,"u":"shootist's%20edge_gunslinger_g%26g_17_g%26g","p":107,"h":1,"n":"Gunslinger 17; Shootist's Edge","uh":"gunslinger_g%26g,state:feature=s16-1"},{"c":5,"s":"G&G","id":8690,"u":"incredible%20senses_gunslinger_g%26g_19_g%26g","p":108,"h":1,"n":"Gunslinger 19; Incredible Senses","uh":"gunslinger_g%26g,state:feature=s18-0"},{"c":5,"s":"G&G","id":8692,"u":"medium%20armor%20mastery_gunslinger_g%26g_19_g%26g","p":108,"h":1,"n":"Gunslinger 19; Medium Armor Mastery","uh":"gunslinger_g%26g,state:feature=s18-1"},{"c":5,"s":"G&G","id":8694,"u":"ancestry%20and%20background_inventor_g%26g_1_g%26g","p":16,"h":1,"n":"Inventor 1; Ancestry and Background","uh":"inventor_g%26g,state:feature=s0-0"},{"c":5,"s":"G&G","id":8696,"u":"initial%20proficiencies_inventor_g%26g_1_g%26g","p":16,"h":1,"n":"Inventor 1; Initial Proficiencies","uh":"inventor_g%26g,state:feature=s0-1"},{"c":5,"s":"G&G","id":8698,"u":"overdrive_inventor_g%26g_1_g%26g","p":16,"h":1,"n":"Inventor 1; Overdrive","uh":"inventor_g%26g,state:feature=s0-2"},{"c":5,"s":"G&G","id":8700,"u":"innovation_inventor_g%26g_1_g%26g","p":16,"h":1,"n":"Inventor 1; Innovation","uh":"inventor_g%26g,state:feature=s0-3"},{"c":5,"s":"G&G","id":8702,"u":"explode_inventor_g%26g_1_g%26g","p":19,"h":1,"n":"Inventor 1; Explode","uh":"inventor_g%26g,state:feature=s0-4"},{"c":5,"s":"G&G","id":8704,"u":"peerless%20inventor_inventor_g%26g_1_g%26g","p":20,"h":1,"n":"Inventor 1; Peerless Inventor","uh":"inventor_g%26g,state:feature=s0-5"},{"c":5,"s":"G&G","id":8706,"u":"shield%20block_inventor_g%26g_1_g%26g","p":20,"h":1,"n":"Inventor 1; Shield Block","uh":"inventor_g%26g,state:feature=s0-6"},{"c":5,"s":"G&G","id":8708,"u":"inventor%20feats_inventor_g%26g_2_g%26g","p":20,"h":1,"n":"Inventor 2; Inventor Feats","uh":"inventor_g%26g,state:feature=s1-0"},{"c":5,"s":"G&G","id":8710,"u":"skill%20feats_inventor_g%26g_2_g%26g","p":20,"h":1,"n":"Inventor 2; Skill Feats","uh":"inventor_g%26g,state:feature=s1-1"},{"c":5,"s":"G&G","id":8712,"u":"expert%20overdrive_inventor_g%26g_3_g%26g","p":20,"h":1,"n":"Inventor 3; Expert Overdrive","uh":"inventor_g%26g,state:feature=s2-0"},{"c":5,"s":"G&G","id":8714,"u":"general%20feats_inventor_g%26g_3_g%26g","p":20,"h":1,"n":"Inventor 3; General Feats","uh":"inventor_g%26g,state:feature=s2-1"},{"c":5,"s":"G&G","id":8716,"u":"reconfigure_inventor_g%26g_3_g%26g","p":20,"h":1,"n":"Inventor 3; Reconfigure","uh":"inventor_g%26g,state:feature=s2-2"},{"c":5,"s":"G&G","id":8718,"u":"skill%20increases_inventor_g%26g_3_g%26g","p":20,"h":1,"n":"Inventor 3; Skill Increases","uh":"inventor_g%26g,state:feature=s2-3"},{"c":5,"s":"G&G","id":8720,"u":"ability%20boosts_inventor_g%26g_5_g%26g","p":20,"h":1,"n":"Inventor 5; Ability Boosts","uh":"inventor_g%26g,state:feature=s4-0"},{"c":5,"s":"G&G","id":8722,"u":"ancestry%20feats_inventor_g%26g_5_g%26g","p":20,"h":1,"n":"Inventor 5; Ancestry Feats","uh":"inventor_g%26g,state:feature=s4-1"},{"c":5,"s":"G&G","id":8724,"u":"inventor%20weapon%20expertise_inventor_g%26g_5_g%26g","p":20,"h":1,"n":"Inventor 5; Inventor Weapon Expertise","uh":"inventor_g%26g,state:feature=s4-2"},{"c":5,"s":"G&G","id":8726,"u":"breakthrough%20innovation_inventor_g%26g_7_g%26g","p":20,"h":1,"n":"Inventor 7; Breakthrough Innovation","uh":"inventor_g%26g,state:feature=s6-0"},{"c":5,"s":"G&G","id":8728,"u":"lightning%20reflexes_inventor_g%26g_7_g%26g","p":22,"h":1,"n":"Inventor 7; Lightning Reflexes","uh":"inventor_g%26g,state:feature=s6-1"},{"c":5,"s":"G&G","id":8730,"u":"master%20overdrive_inventor_g%26g_7_g%26g","p":22,"h":1,"n":"Inventor 7; Master Overdrive","uh":"inventor_g%26g,state:feature=s6-2"},{"c":5,"s":"G&G","id":8732,"u":"weapon%20specialization_inventor_g%26g_7_g%26g","p":22,"h":1,"n":"Inventor 7; Weapon Specialization","uh":"inventor_g%26g,state:feature=s6-3"},{"c":5,"s":"G&G","id":8734,"u":"inventive%20expertise_inventor_g%26g_9_g%26g","p":22,"h":1,"n":"Inventor 9; Inventive Expertise","uh":"inventor_g%26g,state:feature=s8-0"},{"c":5,"s":"G&G","id":8736,"u":"offensive%20boost_inventor_g%26g_9_g%26g","p":22,"h":1,"n":"Inventor 9; Offensive Boost","uh":"inventor_g%26g,state:feature=s8-1"},{"c":5,"s":"G&G","id":8738,"u":"medium%20armor%20expertise_inventor_g%26g_11_g%26g","p":22,"h":1,"n":"Inventor 11; Medium Armor Expertise","uh":"inventor_g%26g,state:feature=s10-0"},{"c":5,"s":"G&G","id":8740,"u":"resolve_inventor_g%26g_11_g%26g","p":22,"h":1,"n":"Inventor 11; Resolve","uh":"inventor_g%26g,state:feature=s10-1"},{"c":5,"s":"G&G","id":8742,"u":"alertness_inventor_g%26g_13_g%26g","p":22,"h":1,"n":"Inventor 13; Alertness","uh":"inventor_g%26g,state:feature=s12-0"},{"c":5,"s":"G&G","id":8744,"u":"complete%20reconfiguration_inventor_g%26g_13_g%26g","p":22,"h":1,"n":"Inventor 13; Complete Reconfiguration","uh":"inventor_g%26g,state:feature=s12-1"},{"c":5,"s":"G&G","id":8746,"u":"inventor%20weapon%20mastery_inventor_g%26g_13_g%26g","p":22,"h":1,"n":"Inventor 13; Inventor Weapon Mastery","uh":"inventor_g%26g,state:feature=s12-2"},{"c":5,"s":"G&G","id":8748,"u":"greater%20weapon%20specialization_inventor_g%26g_15_g%26g","p":22,"h":1,"n":"Inventor 15; Greater Weapon Specialization","uh":"inventor_g%26g,state:feature=s14-0"},{"c":5,"s":"G&G","id":8750,"u":"legendary%20overdrive_inventor_g%26g_15_g%26g","p":22,"h":1,"n":"Inventor 15; Legendary Overdrive","uh":"inventor_g%26g,state:feature=s14-1"},{"c":5,"s":"G&G","id":8752,"u":"revolutionary%20innovation_inventor_g%26g_15_g%26g","p":23,"h":1,"n":"Inventor 15; Revolutionary Innovation","uh":"inventor_g%26g,state:feature=s14-2"},{"c":5,"s":"G&G","id":8754,"u":"inventive%20mastery_inventor_g%26g_17_g%26g","p":24,"h":1,"n":"Inventor 17; Inventive Mastery","uh":"inventor_g%26g,state:feature=s16-0"},{"c":5,"s":"G&G","id":8756,"u":"juggernaut_inventor_g%26g_17_g%26g","p":24,"h":1,"n":"Inventor 17; Juggernaut","uh":"inventor_g%26g,state:feature=s16-1"},{"c":5,"s":"G&G","id":8758,"u":"infinite%20invention_inventor_g%26g_19_g%26g","p":24,"h":1,"n":"Inventor 19; Infinite Invention","uh":"inventor_g%26g,state:feature=s18-0"},{"c":5,"s":"G&G","id":8760,"u":"medium%20armor%20mastery_inventor_g%26g_19_g%26g","p":24,"h":1,"n":"Inventor 19; Medium Armor Mastery","uh":"inventor_g%26g,state:feature=s18-1"},{"c":5,"s":"APG","id":8762,"u":"ancestry%20and%20background_investigator_apg_1_apg","p":56,"h":1,"n":"Investigator 1; Ancestry and Background","uh":"investigator_apg,state:feature=s0-0"},{"c":5,"s":"APG","id":8764,"u":"strategic%20strike_investigator_apg_1_apg","p":56,"h":1,"n":"Investigator 1; Strategic Strike","uh":"investigator_apg,state:feature=s0-6"},{"c":5,"s":"APG","id":8766,"u":"initial%20proficiencies_investigator_apg_1_apg","p":56,"h":1,"n":"Investigator 1; Initial Proficiencies","uh":"investigator_apg,state:feature=s0-1"},{"c":5,"s":"APG","id":8768,"u":"on%20the%20case_investigator_apg_1_apg","p":56,"h":1,"n":"Investigator 1; On the Case","uh":"investigator_apg,state:feature=s0-2"},{"c":5,"s":"APG","id":8770,"u":"devise%20a%20stratagem_investigator_apg_1_apg","p":56,"h":1,"n":"Investigator 1; Devise a Stratagem","uh":"investigator_apg,state:feature=s0-3"},{"c":5,"s":"APG","id":8772,"u":"methodology_investigator_apg_1_apg","p":57,"h":1,"n":"Investigator 1; Methodology","uh":"investigator_apg,state:feature=s0-4"},{"c":5,"s":"APG","id":8774,"u":"investigator%20feats_investigator_apg_1_apg","p":58,"h":1,"n":"Investigator 1; Investigator Feats","uh":"investigator_apg,state:feature=s0-5"},{"c":5,"s":"APG","id":8776,"u":"skill%20feats_investigator_apg_2_apg","p":58,"h":1,"n":"Investigator 2; Skill Feats","uh":"investigator_apg,state:feature=s1-0"},{"c":5,"s":"APG","id":8778,"u":"skill%20increases_investigator_apg_2_apg","p":58,"h":1,"n":"Investigator 2; Skill Increases","uh":"investigator_apg,state:feature=s1-1"},{"c":5,"s":"APG","id":8780,"u":"general%20feats_investigator_apg_3_apg","p":59,"h":1,"n":"Investigator 3; General Feats","uh":"investigator_apg,state:feature=s2-0"},{"c":5,"s":"APG","id":8782,"u":"keen%20recollection_investigator_apg_3_apg","p":59,"h":1,"n":"Investigator 3; Keen Recollection","uh":"investigator_apg,state:feature=s2-1"},{"c":5,"s":"APG","id":8784,"u":"skillful%20lessons_investigator_apg_3_apg","p":59,"h":1,"n":"Investigator 3; Skillful Lessons","uh":"investigator_apg,state:feature=s2-2"},{"c":5,"s":"APG","id":8786,"u":"ability%20boosts_investigator_apg_5_apg","p":59,"h":1,"n":"Investigator 5; Ability Boosts","uh":"investigator_apg,state:feature=s4-0"},{"c":5,"s":"APG","id":8788,"u":"ancestry%20feats_investigator_apg_5_apg","p":59,"h":1,"n":"Investigator 5; Ancestry Feats","uh":"investigator_apg,state:feature=s4-1"},{"c":5,"s":"APG","id":8790,"u":"weapon%20expertise_investigator_apg_5_apg","p":59,"h":1,"n":"Investigator 5; Weapon Expertise","uh":"investigator_apg,state:feature=s4-2"},{"c":5,"s":"APG","id":8792,"u":"vigilant%20senses_investigator_apg_7_apg","p":59,"h":1,"n":"Investigator 7; Vigilant Senses","uh":"investigator_apg,state:feature=s6-0"},{"c":5,"s":"APG","id":8794,"u":"weapon%20specialization_investigator_apg_7_apg","p":59,"h":1,"n":"Investigator 7; Weapon Specialization","uh":"investigator_apg,state:feature=s6-1"},{"c":5,"s":"APG","id":8796,"u":"great%20fortitude_investigator_apg_9_apg","p":59,"h":1,"n":"Investigator 9; Great Fortitude","uh":"investigator_apg,state:feature=s8-0"},{"c":5,"s":"APG","id":8798,"u":"investigator%20expertise_investigator_apg_9_apg","p":59,"h":1,"n":"Investigator 9; Investigator Expertise","uh":"investigator_apg,state:feature=s8-1"},{"c":5,"s":"APG","id":8800,"u":"deductive%20improvisation_investigator_apg_11_apg","p":59,"h":1,"n":"Investigator 11; Deductive Improvisation","uh":"investigator_apg,state:feature=s10-0"},{"c":5,"s":"APG","id":8802,"u":"resolve_investigator_apg_11_apg","p":59,"h":1,"n":"Investigator 11; Resolve","uh":"investigator_apg,state:feature=s10-1"},{"c":5,"s":"APG","id":8804,"u":"incredible%20senses_investigator_apg_13_apg","p":59,"h":1,"n":"Investigator 13; Incredible Senses","uh":"investigator_apg,state:feature=s12-0"},{"c":5,"s":"APG","id":8806,"u":"light%20armor%20expertise_investigator_apg_13_apg","p":59,"h":1,"n":"Investigator 13; Light Armor Expertise","uh":"investigator_apg,state:feature=s12-1"},{"c":5,"s":"APG","id":8808,"u":"weapon%20mastery_investigator_apg_13_apg","p":59,"h":1,"n":"Investigator 13; Weapon Mastery","uh":"investigator_apg,state:feature=s12-2"},{"c":5,"s":"APG","id":8810,"u":"evasion_investigator_apg_15_apg","p":59,"h":1,"n":"Investigator 15; Evasion","uh":"investigator_apg,state:feature=s14-0"},{"c":5,"s":"APG","id":8812,"u":"greater%20weapon%20specialization_investigator_apg_15_apg","p":59,"h":1,"n":"Investigator 15; Greater Weapon Specialization","uh":"investigator_apg,state:feature=s14-1"},{"c":5,"s":"APG","id":8814,"u":"greater%20resolve_investigator_apg_17_apg","p":59,"h":1,"n":"Investigator 17; Greater Resolve","uh":"investigator_apg,state:feature=s16-0"},{"c":5,"s":"APG","id":8816,"u":"light%20armor%20mastery_investigator_apg_19_apg","p":59,"h":1,"n":"Investigator 19; Light Armor Mastery","uh":"investigator_apg,state:feature=s18-0"},{"c":5,"s":"APG","id":8818,"u":"master%20detective_investigator_apg_19_apg","p":59,"h":1,"n":"Investigator 19; Master Detective","uh":"investigator_apg,state:feature=s18-1"},{"c":5,"s":"SoM","id":8820,"u":"ancestry%20and%20background_magus_som_1_som","p":36,"h":1,"n":"Magus 1; Ancestry and Background","uh":"magus_som,state:feature=s0-0"},{"c":5,"s":"SoM","id":8822,"u":"initial%20proficiencies_magus_som_1_som","p":36,"h":1,"n":"Magus 1; Initial Proficiencies","uh":"magus_som,state:feature=s0-1"},{"c":5,"s":"SoM","id":8824,"u":"arcane%20spellcasting_magus_som_1_som","p":36,"h":1,"n":"Magus 1; Arcane Spellcasting","uh":"magus_som,state:feature=s0-2"},{"c":5,"s":"SoM","id":8826,"u":"hybrid%20study_magus_som_1_som","p":38,"h":1,"n":"Magus 1; Hybrid Study","uh":"magus_som,state:feature=s0-5"},{"c":5,"s":"SoM","id":8828,"u":"spellstrike_magus_som_1_som","p":37,"h":1,"n":"Magus 1; Spellstrike","uh":"magus_som,state:feature=s0-3"},{"c":5,"s":"SoM","id":8830,"u":"arcane%20cascade_magus_som_1_som","p":38,"h":1,"n":"Magus 1; Arcane Cascade","uh":"magus_som,state:feature=s0-4"},{"c":5,"s":"SoM","id":8832,"u":"conflux%20spells_magus_som_1_som","p":40,"h":1,"n":"Magus 1; Conflux Spells","uh":"magus_som,state:feature=s0-6"},{"c":5,"s":"SoM","id":8834,"u":"skill%20feats_magus_som_2_som","p":40,"h":1,"n":"Magus 2; Skill Feats","uh":"magus_som,state:feature=s1-1"},{"c":5,"s":"SoM","id":8836,"u":"magus%20feats_magus_som_2_som","p":40,"h":1,"n":"Magus 2; Magus Feats","uh":"magus_som,state:feature=s1-0"},{"c":5,"s":"SoM","id":8838,"u":"general%20feats_magus_som_3_som","p":40,"h":1,"n":"Magus 3; General Feats","uh":"magus_som,state:feature=s2-0"},{"c":5,"s":"SoM","id":8840,"u":"skill%20increases_magus_som_3_som","p":40,"h":1,"n":"Magus 3; Skill Increases","uh":"magus_som,state:feature=s2-1"},{"c":5,"s":"SoM","id":8842,"u":"ability%20boosts_magus_som_5_som","p":40,"h":1,"n":"Magus 5; Ability Boosts","uh":"magus_som,state:feature=s4-0"},{"c":5,"s":"SoM","id":8844,"u":"ancestry%20feats_magus_som_5_som","p":40,"h":1,"n":"Magus 5; Ancestry Feats","uh":"magus_som,state:feature=s4-1"},{"c":5,"s":"SoM","id":8846,"u":"lightning%20reflexes_magus_som_5_som","p":40,"h":1,"n":"Magus 5; Lightning Reflexes","uh":"magus_som,state:feature=s4-2"},{"c":5,"s":"SoM","id":8848,"u":"weapon%20expertise_magus_som_5_som","p":40,"h":1,"n":"Magus 5; Weapon Expertise","uh":"magus_som,state:feature=s4-3"},{"c":5,"s":"SoM","id":8850,"u":"studious%20spells_magus_som_7_som","p":41,"h":1,"n":"Magus 7; Studious Spells","uh":"magus_som,state:feature=s6-0"},{"c":5,"s":"SoM","id":8852,"u":"weapon%20specialization_magus_som_7_som","p":41,"h":1,"n":"Magus 7; Weapon Specialization","uh":"magus_som,state:feature=s6-1"},{"c":5,"s":"SoM","id":8854,"u":"alertness_magus_som_9_som","p":41,"h":1,"n":"Magus 9; Alertness","uh":"magus_som,state:feature=s8-0"},{"c":5,"s":"SoM","id":8856,"u":"expert%20spellcaster_magus_som_9_som","p":41,"h":1,"n":"Magus 9; Expert Spellcaster","uh":"magus_som,state:feature=s8-1"},{"c":5,"s":"SoM","id":8858,"u":"resolve_magus_som_9_som","p":41,"h":1,"n":"Magus 9; Resolve","uh":"magus_som,state:feature=s8-2"},{"c":5,"s":"SoM","id":8860,"u":"medium%20armor%20expertise_magus_som_11_som","p":41,"h":1,"n":"Magus 11; Medium Armor Expertise","uh":"magus_som,state:feature=s10-0"},{"c":5,"s":"SoM","id":8862,"u":"weapon%20mastery_magus_som_13_som","p":41,"h":1,"n":"Magus 13; Weapon Mastery","uh":"magus_som,state:feature=s12-0"},{"c":5,"s":"SoM","id":8864,"u":"greater%20weapon%20specialization_magus_som_15_som","p":41,"h":1,"n":"Magus 15; Greater Weapon Specialization","uh":"magus_som,state:feature=s14-0"},{"c":5,"s":"SoM","id":8866,"u":"juggernaut_magus_som_15_som","p":41,"h":1,"n":"Magus 15; Juggernaut","uh":"magus_som,state:feature=s14-1"},{"c":5,"s":"SoM","id":8868,"u":"master%20spellcaster_magus_som_17_som","p":41,"h":1,"n":"Magus 17; Master Spellcaster","uh":"magus_som,state:feature=s16-0"},{"c":5,"s":"SoM","id":8870,"u":"medium%20armor%20mastery_magus_som_17_som","p":41,"h":1,"n":"Magus 17; Medium Armor Mastery","uh":"magus_som,state:feature=s16-1"},{"c":5,"s":"SoM","id":8872,"u":"double%20spellstrike_magus_som_19_som","p":41,"h":1,"n":"Magus 19; Double Spellstrike","uh":"magus_som,state:feature=s18-0"},{"c":5,"s":"CRB","id":8874,"u":"ancestry%20and%20background_monk_crb_1_crb","p":156,"h":1,"n":"Monk 1; Ancestry and Background","uh":"monk_crb,state:feature=s0-0"},{"c":5,"s":"CRB","id":8876,"u":"initial%20proficiencies_monk_crb_1_crb","p":156,"h":1,"n":"Monk 1; Initial Proficiencies","uh":"monk_crb,state:feature=s0-1"},{"c":5,"s":"CRB","id":8878,"u":"flurry%20of%20blows_monk_crb_1_crb","p":156,"h":1,"n":"Monk 1; Flurry of Blows","uh":"monk_crb,state:feature=s0-2"},{"c":5,"s":"CRB","id":8880,"u":"monk%20feats_monk_crb_1_crb","p":156,"h":1,"n":"Monk 1; Monk Feats","uh":"monk_crb,state:feature=s0-3"},{"c":5,"s":"CRB","id":8882,"u":"powerful%20fist_monk_crb_1_crb","p":156,"h":1,"n":"Monk 1; Powerful Fist","uh":"monk_crb,state:feature=s0-4"},{"c":5,"s":"CRB","id":8884,"u":"skill%20feats_monk_crb_2_crb","p":156,"h":1,"n":"Monk 2; Skill Feats","uh":"monk_crb,state:feature=s1-0"},{"c":5,"s":"CRB","id":8886,"u":"general%20feats_monk_crb_3_crb","p":156,"h":1,"n":"Monk 3; General Feats","uh":"monk_crb,state:feature=s2-0"},{"c":5,"s":"CRB","id":8888,"u":"incredible%20movement_monk_crb_3_crb","p":156,"h":1,"n":"Monk 3; Incredible Movement","uh":"monk_crb,state:feature=s2-1"},{"c":5,"s":"CRB","id":8890,"u":"mystic%20strikes_monk_crb_3_crb","p":156,"h":1,"n":"Monk 3; Mystic Strikes","uh":"monk_crb,state:feature=s2-2"},{"c":5,"s":"CRB","id":8892,"u":"skill%20increases_monk_crb_3_crb","p":156,"h":1,"n":"Monk 3; Skill Increases","uh":"monk_crb,state:feature=s2-3"},{"c":5,"s":"CRB","id":8894,"u":"ability%20boosts_monk_crb_5_crb","p":156,"h":1,"n":"Monk 5; Ability Boosts","uh":"monk_crb,state:feature=s4-0"},{"c":5,"s":"CRB","id":8896,"u":"alertness_monk_crb_5_crb","p":157,"h":1,"n":"Monk 5; Alertness","uh":"monk_crb,state:feature=s4-1"},{"c":5,"s":"CRB","id":8898,"u":"ancestry%20feats_monk_crb_5_crb","p":157,"h":1,"n":"Monk 5; Ancestry Feats","uh":"monk_crb,state:feature=s4-2"},{"c":5,"s":"CRB","id":8900,"u":"expert%20strikes_monk_crb_5_crb","p":157,"h":1,"n":"Monk 5; Expert Strikes","uh":"monk_crb,state:feature=s4-3"},{"c":5,"s":"CRB","id":8902,"u":"path%20to%20perfection_monk_crb_7_crb","p":157,"h":1,"n":"Monk 7; Path to Perfection","uh":"monk_crb,state:feature=s6-0"},{"c":5,"s":"CRB","id":8904,"u":"weapon%20specialization_monk_crb_7_crb","p":157,"h":1,"n":"Monk 7; Weapon Specialization","uh":"monk_crb,state:feature=s6-1"},{"c":5,"s":"CRB","id":8906,"u":"metal%20strikes_monk_crb_9_crb","p":157,"h":1,"n":"Monk 9; Metal Strikes","uh":"monk_crb,state:feature=s8-0"},{"c":5,"s":"CRB","id":8908,"u":"monk%20expertise_monk_crb_9_crb","p":157,"h":1,"n":"Monk 9; Monk Expertise","uh":"monk_crb,state:feature=s8-1"},{"c":5,"s":"CRB","id":8910,"u":"second%20path%20to%20perfection_monk_crb_11_crb","p":157,"h":1,"n":"Monk 11; Second Path to Perfection","uh":"monk_crb,state:feature=s10-0"},{"c":5,"s":"CRB","id":8912,"u":"graceful%20mastery_monk_crb_13_crb","p":157,"h":1,"n":"Monk 13; Graceful Mastery","uh":"monk_crb,state:feature=s12-0"},{"c":5,"s":"CRB","id":8914,"u":"master%20strikes_monk_crb_13_crb","p":157,"h":1,"n":"Monk 13; Master Strikes","uh":"monk_crb,state:feature=s12-1"},{"c":5,"s":"CRB","id":8916,"u":"greater%20weapon%20specialization_monk_crb_15_crb","p":157,"h":1,"n":"Monk 15; Greater Weapon Specialization","uh":"monk_crb,state:feature=s14-0"},{"c":5,"s":"CRB","id":8918,"u":"third%20path%20to%20perfection_monk_crb_15_crb","p":157,"h":1,"n":"Monk 15; Third Path to Perfection","uh":"monk_crb,state:feature=s14-1"},{"c":5,"s":"CRB","id":8920,"u":"adamantine%20strikes_monk_crb_17_crb","p":158,"h":1,"n":"Monk 17; Adamantine Strikes","uh":"monk_crb,state:feature=s16-0"},{"c":5,"s":"CRB","id":8922,"u":"graceful%20legend_monk_crb_17_crb","p":158,"h":1,"n":"Monk 17; Graceful Legend","uh":"monk_crb,state:feature=s16-1"},{"c":5,"s":"CRB","id":8924,"u":"perfected%20form_monk_crb_19_crb","p":158,"h":1,"n":"Monk 19; Perfected Form","uh":"monk_crb,state:feature=s18-0"},{"c":5,"s":"APG","id":8926,"u":"ancestry%20and%20background_oracle_apg_1_apg","p":68,"h":1,"n":"Oracle 1; Ancestry and Background","uh":"oracle_apg,state:feature=s0-0"},{"c":5,"s":"APG","id":8928,"u":"initial%20proficiencies_oracle_apg_1_apg","p":68,"h":1,"n":"Oracle 1; Initial Proficiencies","uh":"oracle_apg,state:feature=s0-1"},{"c":5,"s":"APG","id":8930,"u":"divine%20spellcasting_oracle_apg_1_apg","p":68,"h":1,"n":"Oracle 1; Divine Spellcasting","uh":"oracle_apg,state:feature=s0-2"},{"c":5,"s":"APG","id":8932,"u":"spell%20repetoire_oracle_apg_1_apg","p":68,"h":1,"n":"Oracle 1; Spell Repetoire","uh":"oracle_apg,state:feature=s0-3"},{"c":5,"s":"APG","id":8934,"u":"mystery_oracle_apg_1_apg","p":69,"h":1,"n":"Oracle 1; Mystery","uh":"oracle_apg,state:feature=s0-4"},{"c":5,"s":"APG","id":8936,"u":"revelation%20spells_oracle_apg_1_apg","p":69,"h":1,"n":"Oracle 1; Revelation Spells","uh":"oracle_apg,state:feature=s0-0"},{"c":5,"s":"APG","id":8938,"u":"oracular%20curse_oracle_apg_1_apg","p":70,"h":1,"n":"Oracle 1; Oracular Curse","uh":"oracle_apg,state:feature=s0-0"},{"c":5,"s":"APG","id":8940,"u":"oracle%20feats_oracle_apg_2_apg","p":70,"h":1,"n":"Oracle 2; Oracle Feats","uh":"oracle_apg,state:feature=s1-0"},{"c":5,"s":"APG","id":8942,"u":"skill%20feats_oracle_apg_2_apg","p":70,"h":1,"n":"Oracle 2; Skill Feats","uh":"oracle_apg,state:feature=s1-1"},{"c":5,"s":"APG","id":8944,"u":"general%20feats_oracle_apg_3_apg","p":70,"h":1,"n":"Oracle 3; General Feats","uh":"oracle_apg,state:feature=s2-0"},{"c":5,"s":"APG","id":8946,"u":"signature%20spells_oracle_apg_3_apg","p":71,"h":1,"n":"Oracle 3; Signature Spells","uh":"oracle_apg,state:feature=s2-1"},{"c":5,"s":"APG","id":8948,"u":"skill%20increases_oracle_apg_3_apg","p":71,"h":1,"n":"Oracle 3; Skill Increases","uh":"oracle_apg,state:feature=s2-2"},{"c":5,"s":"APG","id":8950,"u":"ability%20boosts_oracle_apg_5_apg","p":71,"h":1,"n":"Oracle 5; Ability Boosts","uh":"oracle_apg,state:feature=s4-0"},{"c":5,"s":"APG","id":8952,"u":"ancestry%20feats_oracle_apg_5_apg","p":71,"h":1,"n":"Oracle 5; Ancestry Feats","uh":"oracle_apg,state:feature=s4-1"},{"c":5,"s":"APG","id":8954,"u":"expert%20spellcaster_oracle_apg_7_apg","p":71,"h":1,"n":"Oracle 7; Expert Spellcaster","uh":"oracle_apg,state:feature=s6-0"},{"c":5,"s":"APG","id":8956,"u":"resolve_oracle_apg_7_apg","p":71,"h":1,"n":"Oracle 7; Resolve","uh":"oracle_apg,state:feature=s6-1"},{"c":5,"s":"APG","id":8958,"u":"magical%20fortitude_oracle_apg_9_apg","p":71,"h":1,"n":"Oracle 9; Magical Fortitude","uh":"oracle_apg,state:feature=s8-0"},{"c":5,"s":"APG","id":8960,"u":"alertness_oracle_apg_11_apg","p":71,"h":1,"n":"Oracle 11; Alertness","uh":"oracle_apg,state:feature=s10-0"},{"c":5,"s":"APG","id":8962,"u":"major%20curse_oracle_apg_11_apg","p":71,"h":1,"n":"Oracle 11; Major Curse","uh":"oracle_apg,state:feature=s10-1"},{"c":5,"s":"APG","id":8964,"u":"weapon%20expertise_oracle_apg_11_apg","p":72,"h":1,"n":"Oracle 11; Weapon Expertise","uh":"oracle_apg,state:feature=s10-2"},{"c":5,"s":"APG","id":8966,"u":"light%20armor%20expertise_oracle_apg_13_apg","p":72,"h":1,"n":"Oracle 13; Light Armor Expertise","uh":"oracle_apg,state:feature=s12-0"},{"c":5,"s":"APG","id":8968,"u":"lightning%20reflexes_oracle_apg_13_apg","p":72,"h":1,"n":"Oracle 13; Lightning Reflexes","uh":"oracle_apg,state:feature=s12-1"},{"c":5,"s":"APG","id":8970,"u":"weapon%20specialization_oracle_apg_13_apg","p":72,"h":1,"n":"Oracle 13; Weapon Specialization","uh":"oracle_apg,state:feature=s12-2"},{"c":5,"s":"APG","id":8972,"u":"master%20spellcaster_oracle_apg_15_apg","p":72,"h":1,"n":"Oracle 15; Master Spellcaster","uh":"oracle_apg,state:feature=s14-0"},{"c":5,"s":"APG","id":8974,"u":"extreme%20curse_oracle_apg_17_apg","p":72,"h":1,"n":"Oracle 17; Extreme Curse","uh":"oracle_apg,state:feature=s16-0"},{"c":5,"s":"APG","id":8976,"u":"greater%20resolve_oracle_apg_17_apg","p":72,"h":1,"n":"Oracle 17; Greater Resolve","uh":"oracle_apg,state:feature=s16-1"},{"c":5,"s":"APG","id":8978,"u":"legendary%20spellcaster_oracle_apg_19_apg","p":72,"h":1,"n":"Oracle 19; Legendary Spellcaster","uh":"oracle_apg,state:feature=s18-0"},{"c":5,"s":"APG","id":8980,"u":"oracular%20clarity_oracle_apg_19_apg","p":72,"h":1,"n":"Oracle 19; Oracular Clarity","uh":"oracle_apg,state:feature=s18-1"},{"c":5,"s":"CRB","id":8982,"u":"ancestry%20and%20background_ranger_crb_1_crb","p":168,"h":1,"n":"Ranger 1; Ancestry and Background","uh":"ranger_crb,state:feature=s0-0"},{"c":5,"s":"CRB","id":8984,"u":"initial%20proficiencies_ranger_crb_1_crb","p":168,"h":1,"n":"Ranger 1; Initial Proficiencies","uh":"ranger_crb,state:feature=s0-1"},{"c":5,"s":"CRB","id":8986,"u":"hunt%20prey_ranger_crb_1_crb","p":168,"h":1,"n":"Ranger 1; Hunt Prey","uh":"ranger_crb,state:feature=s0-2"},{"c":5,"s":"CRB","id":8988,"u":"hunter's%20edge_ranger_crb_1_crb","p":168,"h":1,"n":"Ranger 1; Hunter's Edge","uh":"ranger_crb,state:feature=s0-3"},{"c":5,"s":"CRB","id":8990,"u":"ranger%20feats_ranger_crb_1_crb","p":168,"h":1,"n":"Ranger 1; Ranger Feats","uh":"ranger_crb,state:feature=s0-4"},{"c":5,"s":"CRB","id":8992,"u":"skill%20feats_ranger_crb_2_crb","p":168,"h":1,"n":"Ranger 2; Skill Feats","uh":"ranger_crb,state:feature=s1-0"},{"c":5,"s":"CRB","id":8994,"u":"general%20feats_ranger_crb_3_crb","p":168,"h":1,"n":"Ranger 3; General Feats","uh":"ranger_crb,state:feature=s2-0"},{"c":5,"s":"CRB","id":8996,"u":"iron%20will_ranger_crb_3_crb","p":168,"h":1,"n":"Ranger 3; Iron Will","uh":"ranger_crb,state:feature=s2-1"},{"c":5,"s":"CRB","id":8998,"u":"skill%20increases_ranger_crb_3_crb","p":168,"h":1,"n":"Ranger 3; Skill Increases","uh":"ranger_crb,state:feature=s2-2"},{"c":5,"s":"CRB","id":9000,"u":"ability%20boosts_ranger_crb_5_crb","p":169,"h":1,"n":"Ranger 5; Ability Boosts","uh":"ranger_crb,state:feature=s4-0"},{"c":5,"s":"CRB","id":9002,"u":"ancestry%20feats_ranger_crb_5_crb","p":169,"h":1,"n":"Ranger 5; Ancestry Feats","uh":"ranger_crb,state:feature=s4-1"},{"c":5,"s":"CRB","id":9004,"u":"weapon%20expertise_ranger_crb_5_crb","p":169,"h":1,"n":"Ranger 5; Weapon Expertise","uh":"ranger_crb,state:feature=s4-3"},{"c":5,"s":"CRB","id":9006,"u":"trackless%20step_ranger_crb_5_crb","p":169,"h":1,"n":"Ranger 5; Trackless Step","uh":"ranger_crb,state:feature=s4-2"},{"c":5,"s":"CRB","id":9008,"u":"evasion_ranger_crb_7_crb","p":169,"h":1,"n":"Ranger 7; Evasion","uh":"ranger_crb,state:feature=s6-0"},{"c":5,"s":"CRB","id":9010,"u":"vigilant%20senses_ranger_crb_7_crb","p":169,"h":1,"n":"Ranger 7; Vigilant Senses","uh":"ranger_crb,state:feature=s6-1"},{"c":5,"s":"CRB","id":9012,"u":"weapon%20specialization_ranger_crb_7_crb","p":169,"h":1,"n":"Ranger 7; Weapon Specialization","uh":"ranger_crb,state:feature=s6-2"},{"c":5,"s":"CRB","id":9014,"u":"nature's%20edge_ranger_crb_9_crb","p":169,"h":1,"n":"Ranger 9; Nature's Edge","uh":"ranger_crb,state:feature=s8-0"},{"c":5,"s":"CRB","id":9016,"u":"ranger%20expertise_ranger_crb_9_crb","p":169,"h":1,"n":"Ranger 9; Ranger Expertise","uh":"ranger_crb,state:feature=s8-1"},{"c":5,"s":"CRB","id":9018,"u":"juggernaut_ranger_crb_11_crb","p":169,"h":1,"n":"Ranger 11; Juggernaut","uh":"ranger_crb,state:feature=s10-0"},{"c":5,"s":"CRB","id":9020,"u":"medium%20armor%20expertise_ranger_crb_11_crb","p":169,"h":1,"n":"Ranger 11; Medium Armor Expertise","uh":"ranger_crb,state:feature=s10-1"},{"c":5,"s":"CRB","id":9022,"u":"wild%20stride_ranger_crb_11_crb","p":169,"h":1,"n":"Ranger 11; Wild Stride","uh":"ranger_crb,state:feature=s10-2"},{"c":5,"s":"CRB","id":9024,"u":"weapon%20mastery_ranger_crb_13_crb","p":169,"h":1,"n":"Ranger 13; Weapon Mastery","uh":"ranger_crb,state:feature=s12-0"},{"c":5,"s":"CRB","id":9026,"u":"greater%20weapon%20specialization_ranger_crb_15_crb","p":169,"h":1,"n":"Ranger 15; Greater Weapon Specialization","uh":"ranger_crb,state:feature=s14-0"},{"c":5,"s":"CRB","id":9028,"u":"improved%20evasion_ranger_crb_15_crb","p":169,"h":1,"n":"Ranger 15; Improved Evasion","uh":"ranger_crb,state:feature=s14-1"},{"c":5,"s":"CRB","id":9030,"u":"incredible%20senses_ranger_crb_15_crb","p":170,"h":1,"n":"Ranger 15; Incredible Senses","uh":"ranger_crb,state:feature=s14-2"},{"c":5,"s":"CRB","id":9032,"u":"masterful%20hunter_ranger_crb_17_crb","p":170,"h":1,"n":"Ranger 17; Masterful Hunter","uh":"ranger_crb,state:feature=s16-0"},{"c":5,"s":"CRB","id":9034,"u":"second%20skin_ranger_crb_19_crb","p":170,"h":1,"n":"Ranger 19; Second Skin","uh":"ranger_crb,state:feature=s18-0"},{"c":5,"s":"CRB","id":9036,"u":"swift%20prey_ranger_crb_19_crb","p":170,"h":1,"n":"Ranger 19; Swift Prey","uh":"ranger_crb,state:feature=s18-1"},{"c":5,"s":"CRB","id":9038,"u":"ancestry%20and%20background_rogue_crb_1_crb","p":180,"h":1,"n":"Rogue 1; Ancestry and Background","uh":"rogue_crb,state:feature=s0-0"},{"c":5,"s":"CRB","id":9040,"u":"initial%20proficiencies_rogue_crb_1_crb","p":180,"h":1,"n":"Rogue 1; Initial Proficiencies","uh":"rogue_crb,state:feature=s0-1"},{"c":5,"s":"CRB","id":9042,"u":"rogue%20feats_rogue_crb_1_crb","p":180,"h":1,"n":"Rogue 1; Rogue Feats","uh":"rogue_crb,state:feature=s0-5"},{"c":5,"s":"CRB","id":9044,"u":"rogue's%20racket_rogue_crb_1_crb","p":180,"h":1,"n":"Rogue 1; Rogue's Racket","uh":"rogue_crb,state:feature=s0-2"},{"c":5,"s":"CRB","id":9046,"u":"skill%20feats_rogue_crb_1_crb","p":181,"h":1,"n":"Rogue 1; Skill Feats","uh":"rogue_crb,state:feature=s0-6"},{"c":5,"s":"CRB","id":9048,"u":"sneak%20attack_rogue_crb_1_crb","p":181,"h":1,"n":"Rogue 1; Sneak Attack","uh":"rogue_crb,state:feature=s0-3"},{"c":5,"s":"CRB","id":9050,"u":"surprise%20attack_rogue_crb_1_crb","p":181,"h":1,"n":"Rogue 1; Surprise Attack","uh":"rogue_crb,state:feature=s0-4"},{"c":5,"s":"CRB","id":9052,"u":"skill%20increases_rogue_crb_2_crb","p":181,"h":1,"n":"Rogue 2; Skill Increases","uh":"rogue_crb,state:feature=s1-0"},{"c":5,"s":"CRB","id":9054,"u":"deny%20advantage_rogue_crb_3_crb","p":181,"h":1,"n":"Rogue 3; Deny Advantage","uh":"rogue_crb,state:feature=s2-1"},{"c":5,"s":"CRB","id":9056,"u":"general%20feats_rogue_crb_3_crb","p":181,"h":1,"n":"Rogue 3; General Feats","uh":"rogue_crb,state:feature=s2-0"},{"c":5,"s":"CRB","id":9058,"u":"deny%20advantage_rogue_crb_3_crb","p":181,"h":1,"n":"Rogue 3; Deny Advantage","uh":"rogue_crb,state:feature=s2-1"},{"c":5,"s":"CRB","id":9060,"u":"ability%20boosts_rogue_crb_5_crb","p":181,"h":1,"n":"Rogue 5; Ability Boosts","uh":"rogue_crb,state:feature=s4-0"},{"c":5,"s":"CRB","id":9062,"u":"ancestry%20feats_rogue_crb_5_crb","p":182,"h":1,"n":"Rogue 5; Ancestry Feats","uh":"rogue_crb,state:feature=s4-1"},{"c":5,"s":"CRB","id":9064,"u":"weapon%20tricks_rogue_crb_5_crb","p":182,"h":1,"n":"Rogue 5; Weapon Tricks","uh":"rogue_crb,state:feature=s4-2"},{"c":5,"s":"CRB","id":9066,"u":"evasion_rogue_crb_7_crb","p":182,"h":1,"n":"Rogue 7; Evasion","uh":"rogue_crb,state:feature=s6-0"},{"c":5,"s":"CRB","id":9068,"u":"vigilant%20senses_rogue_crb_7_crb","p":182,"h":1,"n":"Rogue 7; Vigilant Senses","uh":"rogue_crb,state:feature=s6-1"},{"c":5,"s":"CRB","id":9070,"u":"weapon%20specialization_rogue_crb_7_crb","p":182,"h":1,"n":"Rogue 7; Weapon Specialization","uh":"rogue_crb,state:feature=s6-2"},{"c":5,"s":"CRB","id":9072,"u":"debilitating%20strikes_rogue_crb_9_crb","p":182,"h":1,"n":"Rogue 9; Debilitating Strikes","uh":"rogue_crb,state:feature=s8-0"},{"c":5,"s":"CRB","id":9074,"u":"great%20fortitude_rogue_crb_9_crb","p":182,"h":1,"n":"Rogue 9; Great Fortitude","uh":"rogue_crb,state:feature=s8-1"},{"c":5,"s":"CRB","id":9076,"u":"rogue%20expertise_rogue_crb_11_crb","p":182,"h":1,"n":"Rogue 11; Rogue Expertise","uh":"rogue_crb,state:feature=s10-0"},{"c":5,"s":"CRB","id":9078,"u":"improved%20evasion_rogue_crb_13_crb","p":182,"h":1,"n":"Rogue 13; Improved Evasion","uh":"rogue_crb,state:feature=s12-0"},{"c":5,"s":"CRB","id":9080,"u":"incredible%20senses_rogue_crb_13_crb","p":182,"h":1,"n":"Rogue 13; Incredible Senses","uh":"rogue_crb,state:feature=s12-1"},{"c":5,"s":"CRB","id":9082,"u":"light%20armor%20expertise_rogue_crb_13_crb","p":182,"h":1,"n":"Rogue 13; Light Armor Expertise","uh":"rogue_crb,state:feature=s12-2"},{"c":5,"s":"CRB","id":9084,"u":"master%20tricks_rogue_crb_13_crb","p":182,"h":1,"n":"Rogue 13; Master Tricks","uh":"rogue_crb,state:feature=s12-3"},{"c":5,"s":"CRB","id":9086,"u":"double%20debilitation_rogue_crb_15_crb","p":182,"h":1,"n":"Rogue 15; Double Debilitation","uh":"rogue_crb,state:feature=s14-0"},{"c":5,"s":"CRB","id":9088,"u":"greater%20weapon%20specialization_rogue_crb_15_crb","p":182,"h":1,"n":"Rogue 15; Greater Weapon Specialization","uh":"rogue_crb,state:feature=s14-1"},{"c":5,"s":"CRB","id":9090,"u":"slippery%20mind_rogue_crb_17_crb","p":182,"h":1,"n":"Rogue 17; Slippery Mind","uh":"rogue_crb,state:feature=s16-0"},{"c":5,"s":"CRB","id":9092,"u":"light%20armor%20mastery_rogue_crb_19_crb","p":182,"h":1,"n":"Rogue 19; Light Armor Mastery","uh":"rogue_crb,state:feature=s18-0"},{"c":5,"s":"CRB","id":9094,"u":"master%20strike_rogue_crb_19_crb","p":182,"h":1,"n":"Rogue 19; Master Strike","uh":"rogue_crb,state:feature=s18-1"},{"c":5,"s":"CRB","id":9096,"u":"ancestry%20and%20background_sorcerer_crb_1_crb","p":196,"h":1,"n":"Sorcerer 1; Ancestry and Background","uh":"sorcerer_crb,state:feature=s0-0"},{"c":5,"s":"CRB","id":9098,"u":"bloodline_sorcerer_crb_1_crb","p":196,"h":1,"n":"Sorcerer 1; Bloodline","uh":"sorcerer_crb,state:feature=s0-2"},{"c":5,"s":"CRB","id":9100,"u":"initial%20proficiencies_sorcerer_crb_1_crb","p":196,"h":1,"n":"Sorcerer 1; Initial Proficiencies","uh":"sorcerer_crb,state:feature=s0-1"},{"c":5,"s":"CRB","id":9102,"u":"sorcerer%20spellcasting_sorcerer_crb_1_crb","p":192,"h":1,"n":"Sorcerer 1; Sorcerer Spellcasting","uh":"sorcerer_crb,state:feature=s0-3"},{"c":5,"s":"CRB","id":9104,"u":"spell%20repertoire_sorcerer_crb_1_crb","p":193,"h":1,"n":"Sorcerer 1; Spell Repertoire","uh":"sorcerer_crb,state:feature=s0-4"},{"c":5,"s":"CRB","id":9106,"u":"skill%20feats_sorcerer_crb_2_crb","p":193,"h":1,"n":"Sorcerer 2; Skill Feats","uh":"sorcerer_crb,state:feature=s1-0"},{"c":5,"s":"CRB","id":9108,"u":"sorcerer%20feats_sorcerer_crb_2_crb","p":193,"h":1,"n":"Sorcerer 2; Sorcerer Feats","uh":"sorcerer_crb,state:feature=s1-1"},{"c":5,"s":"CRB","id":9110,"u":"general%20feats_sorcerer_crb_3_crb","p":193,"h":1,"n":"Sorcerer 3; General Feats","uh":"sorcerer_crb,state:feature=s2-0"},{"c":5,"s":"CRB","id":9112,"u":"signature%20spells_sorcerer_crb_3_crb","p":193,"h":1,"n":"Sorcerer 3; Signature Spells","uh":"sorcerer_crb,state:feature=s2-1"},{"c":5,"s":"CRB","id":9114,"u":"skill%20increases_sorcerer_crb_3_crb","p":194,"h":1,"n":"Sorcerer 3; Skill Increases","uh":"sorcerer_crb,state:feature=s2-2"},{"c":5,"s":"CRB","id":9116,"u":"ability%20boosts_sorcerer_crb_5_crb","p":194,"h":1,"n":"Sorcerer 5; Ability Boosts","uh":"sorcerer_crb,state:feature=s4-0"},{"c":5,"s":"CRB","id":9118,"u":"ancestry%20feats_sorcerer_crb_5_crb","p":194,"h":1,"n":"Sorcerer 5; Ancestry Feats","uh":"sorcerer_crb,state:feature=s4-1"},{"c":5,"s":"CRB","id":9120,"u":"magical%20fortitude_sorcerer_crb_5_crb","p":194,"h":1,"n":"Sorcerer 5; Magical Fortitude","uh":"sorcerer_crb,state:feature=s4-2"},{"c":5,"s":"CRB","id":9122,"u":"expert%20spellcaster_sorcerer_crb_7_crb","p":194,"h":1,"n":"Sorcerer 7; Expert Spellcaster","uh":"sorcerer_crb,state:feature=s6-0"},{"c":5,"s":"CRB","id":9124,"u":"lightning%20reflexes_sorcerer_crb_9_crb","p":194,"h":1,"n":"Sorcerer 9; Lightning Reflexes","uh":"sorcerer_crb,state:feature=s8-0"},{"c":5,"s":"CRB","id":9126,"u":"alertness_sorcerer_crb_11_crb","p":194,"h":1,"n":"Sorcerer 11; Alertness","uh":"sorcerer_crb,state:feature=s10-0"},{"c":5,"s":"CRB","id":9128,"u":"simple%20weapon%20expertise_sorcerer_crb_11_crb","p":194,"h":1,"n":"Sorcerer 11; Simple Weapon Expertise","uh":"sorcerer_crb,state:feature=s10-1"},{"c":5,"s":"CRB","id":9130,"u":"defensive%20robes_sorcerer_crb_13_crb","p":194,"h":1,"n":"Sorcerer 13; Defensive Robes","uh":"sorcerer_crb,state:feature=s12-0"},{"c":5,"s":"CRB","id":9132,"u":"weapon%20specialization_sorcerer_crb_13_crb","p":194,"h":1,"n":"Sorcerer 13; Weapon Specialization","uh":"sorcerer_crb,state:feature=s12-1"},{"c":5,"s":"CRB","id":9134,"u":"master%20spellcaster_sorcerer_crb_15_crb","p":194,"h":1,"n":"Sorcerer 15; Master Spellcaster","uh":"sorcerer_crb,state:feature=s14-0"},{"c":5,"s":"CRB","id":9136,"u":"resolve_sorcerer_crb_17_crb","p":194,"h":1,"n":"Sorcerer 17; Resolve","uh":"sorcerer_crb,state:feature=s16-0"},{"c":5,"s":"CRB","id":9138,"u":"bloodline%20paragon_sorcerer_crb_19_crb","p":194,"h":1,"n":"Sorcerer 19; Bloodline Paragon","uh":"sorcerer_crb,state:feature=s18-0"},{"c":5,"s":"CRB","id":9140,"u":"legendary%20spellcaster_sorcerer_crb_19_crb","p":194,"h":1,"n":"Sorcerer 19; Legendary Spellcaster","uh":"sorcerer_crb,state:feature=s18-1"},{"c":5,"s":"SoM","id":9142,"u":"ancestry%20and%20background_summoner_som_1_som","p":52,"h":1,"n":"Summoner 1; Ancestry and Background","uh":"summoner_som,state:feature=s0-0"},{"c":5,"s":"SoM","id":9144,"u":"initial%20proficiencies_summoner_som_1_som","p":52,"h":1,"n":"Summoner 1; Initial Proficiencies","uh":"summoner_som,state:feature=s0-1"},{"c":5,"s":"SoM","id":9146,"u":"eidolon_summoner_som_1_som","p":52,"h":1,"n":"Summoner 1; Eidolon","uh":"summoner_som,state:feature=s0-2"},{"c":5,"s":"SoM","id":9148,"u":"summoner%20spellcasting_summoner_som_1_som","p":54,"h":1,"n":"Summoner 1; Summoner Spellcasting","uh":"summoner_som,state:feature=s0-3"},{"c":5,"s":"SoM","id":9150,"u":"spell%20repertoire_summoner_som_1_som","p":52,"h":1,"n":"Summoner 1; Spell Repertoire","uh":"summoner_som,state:feature=s0-4"},{"c":5,"s":"SoM","id":9152,"u":"link%20spells_summoner_som_1_som","p":55,"h":1,"n":"Summoner 1; Link Spells","uh":"summoner_som,state:feature=s0-5"},{"c":5,"s":"SoM","id":9154,"u":"evolution%20feat_summoner_som_1_som","p":56,"h":1,"n":"Summoner 1; Evolution Feat","uh":"summoner_som,state:feature=s0-6"},{"c":5,"s":"SoM","id":9156,"u":"skill%20feats_summoner_som_2_som","p":56,"h":1,"n":"Summoner 2; Skill Feats","uh":"summoner_som,state:feature=s1-0"},{"c":5,"s":"SoM","id":9158,"u":"summoner%20feats_summoner_som_2_som","p":56,"h":1,"n":"Summoner 2; Summoner Feats","uh":"summoner_som,state:feature=s1-1"},{"c":5,"s":"SoM","id":9160,"u":"general%20feats_summoner_som_3_som","p":56,"h":1,"n":"Summoner 3; General Feats","uh":"summoner_som,state:feature=s2-0"},{"c":5,"s":"SoM","id":9162,"u":"shared%20vigilance_summoner_som_3_som","p":56,"h":1,"n":"Summoner 3; Shared Vigilance","uh":"summoner_som,state:feature=s2-1"},{"c":5,"s":"SoM","id":9164,"u":"skill%20increases_summoner_som_3_som","p":56,"h":1,"n":"Summoner 3; Skill Increases","uh":"summoner_som,state:feature=s2-2"},{"c":5,"s":"SoM","id":9166,"u":"unlimited%20signature%20spells_summoner_som_3_som","p":56,"h":1,"n":"Summoner 3; Unlimited Signature Spells","uh":"summoner_som,state:feature=s2-3"},{"c":5,"s":"SoM","id":9168,"u":"ability%20boosts_summoner_som_5_som","p":56,"h":1,"n":"Summoner 5; Ability Boosts","uh":"summoner_som,state:feature=s4-0"},{"c":5,"s":"SoM","id":9170,"u":"ancestry%20feats_summoner_som_5_som","p":56,"h":1,"n":"Summoner 5; Ancestry Feats","uh":"summoner_som,state:feature=s4-1"},{"c":5,"s":"SoM","id":9172,"u":"eidolon%20unarmed%20expertise_summoner_som_5_som","p":56,"h":1,"n":"Summoner 5; Eidolon Unarmed Expertise","uh":"summoner_som,state:feature=s4-2"},{"c":5,"s":"SoM","id":9174,"u":"eidolon%20symbiosis_summoner_som_7_som","p":56,"h":1,"n":"Summoner 7; Eidolon Symbiosis","uh":"summoner_som,state:feature=s6-0"},{"c":5,"s":"SoM","id":9176,"u":"eidolon%20weapon%20specialization_summoner_som_7_som","p":56,"h":1,"n":"Summoner 7; Eidolon Weapon Specialization","uh":"summoner_som,state:feature=s6-1"},{"c":5,"s":"SoM","id":9178,"u":"expert%20spellcaster_summoner_som_9_som","p":56,"h":1,"n":"Summoner 9; Expert Spellcaster","uh":"summoner_som,state:feature=s8-0"},{"c":5,"s":"SoM","id":9180,"u":"shared%20reflexes_summoner_som_9_som","p":57,"h":1,"n":"Summoner 9; Shared Reflexes","uh":"summoner_som,state:feature=s8-1"},{"c":5,"s":"SoM","id":9182,"u":"eidolon%20defensive%20expertise_summoner_som_11_som","p":57,"h":1,"n":"Summoner 11; Eidolon Defensive Expertise","uh":"summoner_som,state:feature=s10-0"},{"c":5,"s":"SoM","id":9184,"u":"simple%20weapon%20expertise_summoner_som_11_som","p":57,"h":1,"n":"Summoner 11; Simple Weapon Expertise","uh":"summoner_som,state:feature=s10-1"},{"c":5,"s":"SoM","id":9186,"u":"twin%20juggernauts_summoner_som_11_som","p":57,"h":1,"n":"Summoner 11; Twin Juggernauts","uh":"summoner_som,state:feature=s10-2"},{"c":5,"s":"SoM","id":9188,"u":"defensive%20robes_summoner_som_13_som","p":57,"h":1,"n":"Summoner 13; Defensive Robes","uh":"summoner_som,state:feature=s12-0"},{"c":5,"s":"SoM","id":9190,"u":"eidolon%20unarmed%20mastery_summoner_som_13_som","p":57,"h":1,"n":"Summoner 13; Eidolon Unarmed Mastery","uh":"summoner_som,state:feature=s12-1"},{"c":5,"s":"SoM","id":9192,"u":"weapon%20specialization_summoner_som_13_som","p":57,"h":1,"n":"Summoner 13; Weapon Specialization","uh":"summoner_som,state:feature=s12-2"},{"c":5,"s":"SoM","id":9194,"u":"greater%20eidolon%20specialization_summoner_som_15_som","p":57,"h":1,"n":"Summoner 15; Greater Eidolon Specialization","uh":"summoner_som,state:feature=s14-0"},{"c":5,"s":"SoM","id":9196,"u":"shared%20resolve_summoner_som_15_som","p":57,"h":1,"n":"Summoner 15; Shared Resolve","uh":"summoner_som,state:feature=s14-1"},{"c":5,"s":"SoM","id":9198,"u":"eidolon%20transcendence_summoner_som_17_som","p":57,"h":1,"n":"Summoner 17; Eidolon Transcendence","uh":"summoner_som,state:feature=s16-0"},{"c":5,"s":"SoM","id":9200,"u":"master%20spellcaster_summoner_som_17_som","p":57,"h":1,"n":"Summoner 17; Master Spellcaster","uh":"summoner_som,state:feature=s16-1"},{"c":5,"s":"SoM","id":9202,"u":"eidolon%20defensive%20mastery_summoner_som_19_som","p":57,"h":1,"n":"Summoner 19; Eidolon Defensive Mastery","uh":"summoner_som,state:feature=s18-0"},{"c":5,"s":"SoM","id":9204,"u":"instant%20manifestation_summoner_som_19_som","p":57,"h":1,"n":"Summoner 19; Instant Manifestation","uh":"summoner_som,state:feature=s18-1"},{"c":5,"s":"APG","id":9206,"u":"ancestry%20and%20background_swashbuckler_apg_1_apg","p":84,"h":1,"n":"Swashbuckler 1; Ancestry and Background","uh":"swashbuckler_apg,state:feature=s0-0"},{"c":5,"s":"APG","id":9208,"u":"initial%20proficiencies_swashbuckler_apg_1_apg","p":84,"h":1,"n":"Swashbuckler 1; Initial Proficiencies","uh":"swashbuckler_apg,state:feature=s0-1"},{"c":5,"s":"APG","id":9210,"u":"panache_swashbuckler_apg_1_apg","p":84,"h":1,"n":"Swashbuckler 1; Panache","uh":"swashbuckler_apg,state:feature=s0-2"},{"c":5,"s":"APG","id":9212,"u":"swashbuckler's%20style_swashbuckler_apg_1_apg","p":84,"h":1,"n":"Swashbuckler 1; Swashbuckler's Style","uh":"swashbuckler_apg,state:feature=s0-4"},{"c":5,"s":"APG","id":9214,"u":"precise%20strike_swashbuckler_apg_1_apg","p":85,"h":1,"n":"Swashbuckler 1; Precise Strike","uh":"swashbuckler_apg,state:feature=s0-3"},{"c":5,"s":"APG","id":9216,"u":"confident%20finisher_swashbuckler_apg_1_apg","p":85,"h":1,"n":"Swashbuckler 1; Confident Finisher","uh":"swashbuckler_apg,state:feature=s0-5"},{"c":5,"s":"APG","id":9218,"u":"swashbuckler%20feats_swashbuckler_apg_1_apg","p":85,"h":1,"n":"Swashbuckler 1; Swashbuckler Feats","uh":"swashbuckler_apg,state:feature=s0-6"},{"c":5,"s":"APG","id":9220,"u":"skill%20feats_swashbuckler_apg_2_apg","p":85,"h":1,"n":"Swashbuckler 2; Skill Feats","uh":"swashbuckler_apg,state:feature=s1-0"},{"c":5,"s":"APG","id":9222,"u":"general%20feats_swashbuckler_apg_3_apg","p":85,"h":1,"n":"Swashbuckler 3; General Feats","uh":"swashbuckler_apg,state:feature=s2-0"},{"c":5,"s":"APG","id":9224,"u":"great%20fortitude_swashbuckler_apg_3_apg","p":85,"h":1,"n":"Swashbuckler 3; Great Fortitude","uh":"swashbuckler_apg,state:feature=s2-1"},{"c":5,"s":"APG","id":9226,"u":"opportune%20riposte_swashbuckler_apg_3_apg","p":85,"h":1,"n":"Swashbuckler 3; Opportune Riposte","uh":"swashbuckler_apg,state:feature=s2-2"},{"c":5,"s":"APG","id":9228,"u":"skill%20increases_swashbuckler_apg_3_apg","p":86,"h":1,"n":"Swashbuckler 3; Skill Increases","uh":"swashbuckler_apg,state:feature=s2-3"},{"c":5,"s":"APG","id":9230,"u":"stylish%20tricks_swashbuckler_apg_3_apg","p":86,"h":1,"n":"Swashbuckler 3; Stylish Tricks","uh":"swashbuckler_apg,state:feature=s2-4"},{"c":5,"s":"APG","id":9232,"u":"vivacious%20speed_swashbuckler_apg_3_apg","p":86,"h":1,"n":"Swashbuckler 3; Vivacious Speed","uh":"swashbuckler_apg,state:feature=s2-5"},{"c":5,"s":"APG","id":9234,"u":"ability%20boosts_swashbuckler_apg_5_apg","p":86,"h":1,"n":"Swashbuckler 5; Ability Boosts","uh":"swashbuckler_apg,state:feature=s4-0"},{"c":5,"s":"APG","id":9236,"u":"ancestry%20feats_swashbuckler_apg_5_apg","p":86,"h":1,"n":"Swashbuckler 5; Ancestry Feats","uh":"swashbuckler_apg,state:feature=s4-1"},{"c":5,"s":"APG","id":9238,"u":"weapon%20expertise_swashbuckler_apg_5_apg","p":86,"h":1,"n":"Swashbuckler 5; Weapon Expertise","uh":"swashbuckler_apg,state:feature=s4-2"},{"c":5,"s":"APG","id":9240,"u":"evasion_swashbuckler_apg_7_apg","p":86,"h":1,"n":"Swashbuckler 7; Evasion","uh":"swashbuckler_apg,state:feature=s6-0"},{"c":5,"s":"APG","id":9242,"u":"weapon%20specialization_swashbuckler_apg_7_apg","p":86,"h":1,"n":"Swashbuckler 7; Weapon Specialization","uh":"swashbuckler_apg,state:feature=s6-1"},{"c":5,"s":"APG","id":9244,"u":"exemplary%20finisher_swashbuckler_apg_9_apg","p":86,"h":1,"n":"Swashbuckler 9; Exemplary Finisher","uh":"swashbuckler_apg,state:feature=s8-0"},{"c":5,"s":"APG","id":9246,"u":"swashbuckler%20expertise_swashbuckler_apg_9_apg","p":87,"h":1,"n":"Swashbuckler 9; Swashbuckler Expertise","uh":"swashbuckler_apg,state:feature=s8-1"},{"c":5,"s":"APG","id":9248,"u":"continuous%20flair_swashbuckler_apg_11_apg","p":87,"h":1,"n":"Swashbuckler 11; Continuous Flair","uh":"swashbuckler_apg,state:feature=s10-0"},{"c":5,"s":"APG","id":9250,"u":"vigilant%20senses_swashbuckler_apg_11_apg","p":87,"h":1,"n":"Swashbuckler 11; Vigilant Senses","uh":"swashbuckler_apg,state:feature=s10-1"},{"c":5,"s":"APG","id":9252,"u":"improved%20evasion_swashbuckler_apg_13_apg","p":86,"h":1,"n":"Swashbuckler 13; Improved Evasion","uh":"swashbuckler_apg,state:feature=s12-0"},{"c":5,"s":"APG","id":9254,"u":"light%20armor%20expertise_swashbuckler_apg_13_apg","p":86,"h":1,"n":"Swashbuckler 13; Light Armor Expertise","uh":"swashbuckler_apg,state:feature=s12-1"},{"c":5,"s":"APG","id":9256,"u":"weapon%20mastery_swashbuckler_apg_13_apg","p":86,"h":1,"n":"Swashbuckler 13; Weapon Mastery","uh":"swashbuckler_apg,state:feature=s12-2"},{"c":5,"s":"APG","id":9258,"u":"greater%20weapon%20specialization_swashbuckler_apg_15_apg","p":86,"h":1,"n":"Swashbuckler 15; Greater Weapon Specialization","uh":"swashbuckler_apg,state:feature=s14-0"},{"c":5,"s":"APG","id":9260,"u":"keen%20flair_swashbuckler_apg_15_apg","p":86,"h":1,"n":"Swashbuckler 15; Keen Flair","uh":"swashbuckler_apg,state:feature=s14-1"},{"c":5,"s":"APG","id":9262,"u":"resolve_swashbuckler_apg_17_apg","p":86,"h":1,"n":"Swashbuckler 17; Resolve","uh":"swashbuckler_apg,state:feature=s16-0"},{"c":5,"s":"APG","id":9264,"u":"eternal%20confidence_swashbuckler_apg_19_apg","p":86,"h":1,"n":"Swashbuckler 19; Eternal Confidence","uh":"swashbuckler_apg,state:feature=s18-0"},{"c":5,"s":"APG","id":9266,"u":"light%20armor%20mastery_swashbuckler_apg_19_apg","p":86,"h":1,"n":"Swashbuckler 19; Light Armor Mastery","uh":"swashbuckler_apg,state:feature=s18-1"},{"c":5,"s":"APG","id":9268,"u":"ancestry%20and%20background_witch_apg_1_apg","p":96,"h":1,"n":"Witch 1; Ancestry and Background","uh":"witch_apg,state:feature=s0-0"},{"c":5,"s":"APG","id":9270,"u":"initial%20proficiencies_witch_apg_1_apg","p":96,"h":1,"n":"Witch 1; Initial Proficiencies","uh":"witch_apg,state:feature=s0-1"},{"c":5,"s":"APG","id":9272,"u":"witch%20feats_witch_apg_2_apg","p":98,"h":1,"n":"Witch 2; Witch Feats","uh":"witch_apg,state:feature=s1-1"},{"c":5,"s":"APG","id":9274,"u":"patron_witch_apg_1_apg","p":96,"h":1,"n":"Witch 1; Patron","uh":"witch_apg,state:feature=s0-2"},{"c":5,"s":"APG","id":9276,"u":"familiar_witch_apg_1_apg","p":96,"h":1,"n":"Witch 1; Familiar","uh":"witch_apg,state:feature=s0-3"},{"c":5,"s":"APG","id":9278,"u":"witch%20spellcasting_witch_apg_1_apg","p":96,"h":1,"n":"Witch 1; Witch Spellcasting","uh":"witch_apg,state:feature=s0-4"},{"c":5,"s":"APG","id":9280,"u":"hexes_witch_apg_1_apg","p":97,"h":1,"n":"Witch 1; Hexes","uh":"witch_apg,state:feature=s0-5"},{"c":5,"s":"APG","id":9282,"u":"skill%20feats_witch_apg_2_apg","p":98,"h":1,"n":"Witch 2; Skill Feats","uh":"witch_apg,state:feature=s1-0"},{"c":5,"s":"APG","id":9284,"u":"general%20feats_witch_apg_3_apg","p":98,"h":1,"n":"Witch 3; General Feats","uh":"witch_apg,state:feature=s2-0"},{"c":5,"s":"APG","id":9286,"u":"skill%20increases_witch_apg_3_apg","p":98,"h":1,"n":"Witch 3; Skill Increases","uh":"witch_apg,state:feature=s2-1"},{"c":5,"s":"APG","id":9288,"u":"ability%20boosts_witch_apg_5_apg","p":98,"h":1,"n":"Witch 5; Ability Boosts","uh":"witch_apg,state:feature=s4-0"},{"c":5,"s":"APG","id":9290,"u":"ancestry%20feats_witch_apg_5_apg","p":98,"h":1,"n":"Witch 5; Ancestry Feats","uh":"witch_apg,state:feature=s4-1"},{"c":5,"s":"APG","id":9292,"u":"magical%20fortitude_witch_apg_5_apg","p":98,"h":1,"n":"Witch 5; Magical Fortitude","uh":"witch_apg,state:feature=s4-2"},{"c":5,"s":"APG","id":9294,"u":"expert%20spellcaster_witch_apg_7_apg","p":98,"h":1,"n":"Witch 7; Expert Spellcaster","uh":"witch_apg,state:feature=s6-0"},{"c":5,"s":"APG","id":9296,"u":"lightning%20reflexes_witch_apg_9_apg","p":98,"h":1,"n":"Witch 9; Lightning Reflexes","uh":"witch_apg,state:feature=s8-0"},{"c":5,"s":"APG","id":9298,"u":"alertness_witch_apg_11_apg","p":98,"h":1,"n":"Witch 11; Alertness","uh":"witch_apg,state:feature=s10-0"},{"c":5,"s":"APG","id":9300,"u":"weapon%20expertise_witch_apg_11_apg","p":98,"h":1,"n":"Witch 11; Weapon Expertise","uh":"witch_apg,state:feature=s10-1"},{"c":5,"s":"APG","id":9302,"u":"defensive%20robes_witch_apg_13_apg","p":99,"h":1,"n":"Witch 13; Defensive Robes","uh":"witch_apg,state:feature=s12-0"},{"c":5,"s":"APG","id":9304,"u":"weapon%20specialization_witch_apg_13_apg","p":99,"h":1,"n":"Witch 13; Weapon Specialization","uh":"witch_apg,state:feature=s12-1"},{"c":5,"s":"APG","id":9306,"u":"master%20spellcaster_witch_apg_15_apg","p":99,"h":1,"n":"Witch 15; Master Spellcaster","uh":"witch_apg,state:feature=s14-0"},{"c":5,"s":"APG","id":9308,"u":"resolve_witch_apg_17_apg","p":99,"h":1,"n":"Witch 17; Resolve","uh":"witch_apg,state:feature=s16-0"},{"c":5,"s":"APG","id":9310,"u":"legendary%20spellcaster_witch_apg_19_apg","p":99,"h":1,"n":"Witch 19; Legendary Spellcaster","uh":"witch_apg,state:feature=s18-0"},{"c":5,"s":"APG","id":9312,"u":"patron's%20gift_witch_apg_19_apg","p":99,"h":1,"n":"Witch 19; Patron's Gift","uh":"witch_apg,state:feature=s18-1"},{"c":5,"s":"CRB","id":9314,"u":"ancestry%20and%20background_wizard_crb_1_crb","p":204,"h":1,"n":"Wizard 1; Ancestry and Background","uh":"wizard_crb,state:feature=s0-0"},{"c":5,"s":"CRB","id":9316,"u":"initial%20proficiencies_wizard_crb_1_crb","p":204,"h":1,"n":"Wizard 1; Initial Proficiencies","uh":"wizard_crb,state:feature=s0-1"},{"c":5,"s":"CRB","id":9318,"u":"arcane%20spellcasting_wizard_crb_1_crb","p":204,"h":1,"n":"Wizard 1; Arcane Spellcasting","uh":"wizard_crb,state:feature=s0-2"},{"c":5,"s":"CRB","id":9320,"u":"arcane%20school_wizard_crb_1_crb","p":204,"h":1,"n":"Wizard 1; Arcane School","uh":"wizard_crb,state:feature=s0-3"},{"c":5,"s":"CRB","id":9322,"u":"arcane%20bond_wizard_crb_1_crb","p":205,"h":1,"n":"Wizard 1; Arcane Bond","uh":"wizard_crb,state:feature=s0-4"},{"c":5,"s":"CRB","id":9324,"u":"arcane%20thesis_wizard_crb_1_crb","p":205,"h":1,"n":"Wizard 1; Arcane Thesis","uh":"wizard_crb,state:feature=s0-5"},{"c":5,"s":"CRB","id":9326,"u":"skill%20feats_wizard_crb_2_crb","p":206,"h":1,"n":"Wizard 2; Skill Feats","uh":"wizard_crb,state:feature=s1-0"},{"c":5,"s":"CRB","id":9328,"u":"wizard%20feats_wizard_crb_2_crb","p":206,"h":1,"n":"Wizard 2; Wizard Feats","uh":"wizard_crb,state:feature=s1-1"},{"c":5,"s":"CRB","id":9330,"u":"general%20feats_wizard_crb_3_crb","p":206,"h":1,"n":"Wizard 3; General Feats","uh":"wizard_crb,state:feature=s2-0"},{"c":5,"s":"CRB","id":9332,"u":"skill%20increases_wizard_crb_3_crb","p":206,"h":1,"n":"Wizard 3; Skill Increases","uh":"wizard_crb,state:feature=s2-1"},{"c":5,"s":"CRB","id":9334,"u":"ability%20boosts_wizard_crb_5_crb","p":207,"h":1,"n":"Wizard 5; Ability Boosts","uh":"wizard_crb,state:feature=s4-0"},{"c":5,"s":"CRB","id":9336,"u":"ancestry%20feats_wizard_crb_5_crb","p":207,"h":1,"n":"Wizard 5; Ancestry Feats","uh":"wizard_crb,state:feature=s4-1"},{"c":5,"s":"CRB","id":9338,"u":"lightning%20reflexes_wizard_crb_5_crb","p":207,"h":1,"n":"Wizard 5; Lightning Reflexes","uh":"wizard_crb,state:feature=s4-2"},{"c":5,"s":"CRB","id":9340,"u":"expert%20spellcaster_wizard_crb_7_crb","p":207,"h":1,"n":"Wizard 7; Expert Spellcaster","uh":"wizard_crb,state:feature=s6-0"},{"c":5,"s":"CRB","id":9342,"u":"magical%20fortitude_wizard_crb_9_crb","p":207,"h":1,"n":"Wizard 9; Magical Fortitude","uh":"wizard_crb,state:feature=s8-0"},{"c":5,"s":"CRB","id":9344,"u":"alertness_wizard_crb_11_crb","p":207,"h":1,"n":"Wizard 11; Alertness","uh":"wizard_crb,state:feature=s10-0"},{"c":5,"s":"CRB","id":9346,"u":"wizard%20weapon%20expertise_wizard_crb_11_crb","p":207,"h":1,"n":"Wizard 11; Wizard Weapon Expertise","uh":"wizard_crb,state:feature=s10-1"},{"c":5,"s":"CRB","id":9348,"u":"defensive%20robes_wizard_crb_13_crb","p":207,"h":1,"n":"Wizard 13; Defensive Robes","uh":"wizard_crb,state:feature=s12-0"},{"c":5,"s":"CRB","id":9350,"u":"weapon%20specialization_wizard_crb_13_crb","p":207,"h":1,"n":"Wizard 13; Weapon Specialization","uh":"wizard_crb,state:feature=s12-1"},{"c":5,"s":"CRB","id":9352,"u":"master%20spellcaster_wizard_crb_15_crb","p":207,"h":1,"n":"Wizard 15; Master Spellcaster","uh":"wizard_crb,state:feature=s14-0"},{"c":5,"s":"CRB","id":9354,"u":"resolve_wizard_crb_17_crb","p":207,"h":1,"n":"Wizard 17; Resolve","uh":"wizard_crb,state:feature=s16-0"},{"c":5,"s":"CRB","id":9356,"u":"archwizard's%20spellcraft_wizard_crb_19_crb","p":207,"h":1,"n":"Wizard 19; Archwizard's Spellcraft","uh":"wizard_crb,state:feature=s18-0"},{"c":5,"s":"CRB","id":9358,"u":"legendary%20spellcaster_wizard_crb_19_crb","p":207,"h":1,"n":"Wizard 19; Legendary Spellcaster","uh":"wizard_crb,state:feature=s18-1"},{"c":6,"s":"CRB","id":9360,"u":"research%20field_alchemist_crb_bomber_crb_1_crb","p":73,"h":1,"n":"Bomber Alchemist 1; Research Field","uh":"alchemist_crb,state:sub-bomber-crb=b1~feature=s0-4"},{"c":6,"s":"CRB","id":9362,"u":"field%20discovery_alchemist_crb_bomber_crb_5_crb","p":74,"h":1,"n":"Bomber Alchemist 5; Field Discovery","uh":"alchemist_crb,state:sub-bomber-crb=b1~feature=s4-2"},{"c":6,"s":"CRB","id":9364,"u":"perpetual%20infusions_alchemist_crb_bomber_crb_7_crb","p":74,"h":1,"n":"Bomber Alchemist 7; Perpetual Infusions","uh":"alchemist_crb,state:sub-bomber-crb=b1~feature=s6-2"},{"c":6,"s":"CRB","id":9366,"u":"perpetual%20potency_alchemist_crb_bomber_crb_11_crb","p":74,"h":1,"n":"Bomber Alchemist 11; Perpetual Potency","uh":"alchemist_crb,state:sub-bomber-crb=b1~feature=s10-1"},{"c":6,"s":"CRB","id":9368,"u":"greater%20field%20discovery_alchemist_crb_bomber_crb_13_crb","p":74,"h":1,"n":"Bomber Alchemist 13; Greater Field Discovery","uh":"alchemist_crb,state:sub-bomber-crb=b1~feature=s12-0"},{"c":6,"s":"CRB","id":9370,"u":"perpetual%20perfection_alchemist_crb_bomber_crb_17_crb","p":74,"h":1,"n":"Bomber Alchemist 17; Perpetual Perfection","uh":"alchemist_crb,state:sub-bomber-crb=b1~feature=s16-1"},{"c":6,"s":"CRB","id":9372,"u":"research%20field_alchemist_crb_chirurgeon_crb_1_crb","p":73,"h":1,"n":"Chirurgeon Alchemist 1; Research Field","uh":"alchemist_crb,state:sub-chirurgeon-crb=b1~feature=s0-4"},{"c":6,"s":"CRB","id":9374,"u":"field%20discovery_alchemist_crb_chirurgeon_crb_5_crb","p":74,"h":1,"n":"Chirurgeon Alchemist 5; Field Discovery","uh":"alchemist_crb,state:sub-chirurgeon-crb=b1~feature=s4-2"},{"c":6,"s":"CRB","id":9376,"u":"perpetual%20infusions_alchemist_crb_chirurgeon_crb_7_crb","p":74,"h":1,"n":"Chirurgeon Alchemist 7; Perpetual Infusions","uh":"alchemist_crb,state:sub-chirurgeon-crb=b1~feature=s6-2"},{"c":6,"s":"CRB","id":9378,"u":"perpetual%20potency_alchemist_crb_chirurgeon_crb_11_crb","p":74,"h":1,"n":"Chirurgeon Alchemist 11; Perpetual Potency","uh":"alchemist_crb,state:sub-chirurgeon-crb=b1~feature=s10-1"},{"c":6,"s":"CRB","id":9380,"u":"greater%20field%20discovery_alchemist_crb_chirurgeon_crb_13_crb","p":74,"h":1,"n":"Chirurgeon Alchemist 13; Greater Field Discovery","uh":"alchemist_crb,state:sub-chirurgeon-crb=b1~feature=s12-0"},{"c":6,"s":"CRB","id":9382,"u":"perpetual%20perfection_alchemist_crb_chirurgeon_crb_17_crb","p":74,"h":1,"n":"Chirurgeon Alchemist 17; Perpetual Perfection","uh":"alchemist_crb,state:sub-chirurgeon-crb=b1~feature=s16-1"},{"c":6,"s":"CRB","id":9384,"u":"research%20field_alchemist_crb_mutagenist_crb_1_crb","p":73,"h":1,"n":"Mutagenist Alchemist 1; Research Field","uh":"alchemist_crb,state:sub-mutagenist-crb=b1~feature=s0-4"},{"c":6,"s":"CRB","id":9386,"u":"field%20discovery_alchemist_crb_mutagenist_crb_5_crb","p":74,"h":1,"n":"Mutagenist Alchemist 5; Field Discovery","uh":"alchemist_crb,state:sub-mutagenist-crb=b1~feature=s4-2"},{"c":6,"s":"CRB","id":9388,"u":"perpetual%20infusions_alchemist_crb_mutagenist_crb_7_crb","p":74,"h":1,"n":"Mutagenist Alchemist 7; Perpetual Infusions","uh":"alchemist_crb,state:sub-mutagenist-crb=b1~feature=s6-2"},{"c":6,"s":"CRB","id":9390,"u":"perpetual%20potency_alchemist_crb_mutagenist_crb_11_crb","p":74,"h":1,"n":"Mutagenist Alchemist 11; Perpetual Potency","uh":"alchemist_crb,state:sub-mutagenist-crb=b1~feature=s10-1"},{"c":6,"s":"CRB","id":9392,"u":"greater%20field%20discovery_alchemist_crb_mutagenist_crb_13_crb","p":74,"h":1,"n":"Mutagenist Alchemist 13; Greater Field Discovery","uh":"alchemist_crb,state:sub-mutagenist-crb=b1~feature=s12-0"},{"c":6,"s":"CRB","id":9394,"u":"perpetual%20perfection_alchemist_crb_mutagenist_crb_17_crb","p":74,"h":1,"n":"Mutagenist Alchemist 17; Perpetual Perfection","uh":"alchemist_crb,state:sub-mutagenist-crb=b1~feature=s16-1"},{"c":6,"s":"APG","id":9396,"u":"research%20field_alchemist_crb_toxicologist_apg_1_apg","p":106,"h":1,"n":"Toxicologist Alchemist 1; Research Field","uh":"alchemist_crb,state:sub-toxicologist-apg=b1~feature=s0-4"},{"c":6,"s":"APG","id":9398,"u":"field%20discovery_alchemist_crb_toxicologist_apg_5_apg","p":106,"h":1,"n":"Toxicologist Alchemist 5; Field Discovery","uh":"alchemist_crb,state:sub-toxicologist-apg=b1~feature=s4-2"},{"c":6,"s":"APG","id":9400,"u":"perpetual%20infusions_alchemist_crb_toxicologist_apg_7_apg","p":106,"h":1,"n":"Toxicologist Alchemist 7; Perpetual Infusions","uh":"alchemist_crb,state:sub-toxicologist-apg=b1~feature=s6-2"},{"c":6,"s":"APG","id":9402,"u":"perpetual%20potency_alchemist_crb_toxicologist_apg_11_apg","p":106,"h":1,"n":"Toxicologist Alchemist 11; Perpetual Potency","uh":"alchemist_crb,state:sub-toxicologist-apg=b1~feature=s10-1"},{"c":6,"s":"APG","id":9404,"u":"greater%20field%20discovery_alchemist_crb_toxicologist_apg_13_apg","p":106,"h":1,"n":"Toxicologist Alchemist 13; Greater Field Discovery","uh":"alchemist_crb,state:sub-toxicologist-apg=b1~feature=s12-0"},{"c":6,"s":"APG","id":9406,"u":"perpetual%20perfection_alchemist_crb_toxicologist_apg_17_apg","p":106,"h":1,"n":"Toxicologist Alchemist 17; Perpetual Perfection","uh":"alchemist_crb,state:sub-toxicologist-apg=b1~feature=s16-1"},{"c":6,"s":"CRB","id":9408,"u":"instinct_barbarian_crb_animal_crb_1_crb","p":86,"h":1,"n":"Animal Barbarian 1; Instinct","uh":"barbarian_crb,state:sub-animal-crb=b1~feature=s0-3"},{"c":6,"s":"CRB","id":9410,"u":"weapon%20specialization_barbarian_crb_animal_crb_7_crb","p":86,"h":1,"n":"Animal Barbarian 7; Weapon Specialization","uh":"barbarian_crb,state:sub-animal-crb=b1~feature=s6-1"},{"c":6,"s":"CRB","id":9412,"u":"raging%20resistance_barbarian_crb_animal_crb_9_crb","p":86,"h":1,"n":"Animal Barbarian 9; Raging Resistance","uh":"barbarian_crb,state:sub-animal-crb=b1~feature=s8-1"},{"c":6,"s":"CRB","id":9414,"u":"instinct_barbarian_crb_dragon_crb_1_crb","p":86,"h":1,"n":"Dragon Barbarian 1; Instinct","uh":"barbarian_crb,state:sub-dragon-crb=b1~feature=s0-3"},{"c":6,"s":"CRB","id":9416,"u":"weapon%20specialization_barbarian_crb_dragon_crb_7_crb","p":87,"h":1,"n":"Dragon Barbarian 7; Weapon Specialization","uh":"barbarian_crb,state:sub-dragon-crb=b1~feature=s6-1"},{"c":6,"s":"CRB","id":9418,"u":"raging%20resistance_barbarian_crb_dragon_crb_9_crb","p":87,"h":1,"n":"Dragon Barbarian 9; Raging Resistance","uh":"barbarian_crb,state:sub-dragon-crb=b1~feature=s8-1"},{"c":6,"s":"CRB","id":9420,"u":"instinct_barbarian_crb_fury_crb_1_crb","p":87,"h":1,"n":"Fury Barbarian 1; Instinct","uh":"barbarian_crb,state:sub-fury-crb=b1~feature=s0-3"},{"c":6,"s":"CRB","id":9422,"u":"weapon%20specialization_barbarian_crb_fury_crb_7_crb","p":87,"h":1,"n":"Fury Barbarian 7; Weapon Specialization","uh":"barbarian_crb,state:sub-fury-crb=b1~feature=s6-1"},{"c":6,"s":"CRB","id":9424,"u":"raging%20resistance_barbarian_crb_fury_crb_9_crb","p":87,"h":1,"n":"Fury Barbarian 9; Raging Resistance","uh":"barbarian_crb,state:sub-fury-crb=b1~feature=s8-1"},{"c":6,"s":"CRB","id":9426,"u":"instinct_barbarian_crb_giant_crb_1_crb","p":87,"h":1,"n":"Giant Barbarian 1; Instinct","uh":"barbarian_crb,state:sub-giant-crb=b1~feature=s0-3"},{"c":6,"s":"CRB","id":9428,"u":"weapon%20specialization_barbarian_crb_giant_crb_7_crb","p":87,"h":1,"n":"Giant Barbarian 7; Weapon Specialization","uh":"barbarian_crb,state:sub-giant-crb=b1~feature=s6-1"},{"c":6,"s":"CRB","id":9430,"u":"raging%20resistance_barbarian_crb_giant_crb_9_crb","p":87,"h":1,"n":"Giant Barbarian 9; Raging Resistance","uh":"barbarian_crb,state:sub-giant-crb=b1~feature=s8-1"},{"c":6,"s":"CRB","id":9432,"u":"instinct_barbarian_crb_spirit_crb_1_crb","p":87,"h":1,"n":"Spirit Barbarian 1; Instinct","uh":"barbarian_crb,state:sub-spirit-crb=b1~feature=s0-3"},{"c":6,"s":"CRB","id":9434,"u":"weapon%20specialization_barbarian_crb_spirit_crb_7_crb","p":87,"h":1,"n":"Spirit Barbarian 7; Weapon Specialization","uh":"barbarian_crb,state:sub-spirit-crb=b1~feature=s6-1"},{"c":6,"s":"CRB","id":9436,"u":"raging%20resistance_barbarian_crb_spirit_crb_9_crb","p":87,"h":1,"n":"Spirit Barbarian 9; Raging Resistance","uh":"barbarian_crb,state:sub-spirit-crb=b1~feature=s8-1"},{"c":6,"s":"APG","id":9438,"u":"instinct_barbarian_crb_superstition_apg_1_apg","p":108,"h":1,"n":"Superstition Barbarian 1; Instinct","uh":"barbarian_crb,state:sub-superstition-apg=b1~feature=s0-3"},{"c":6,"s":"APG","id":9440,"u":"weapon%20specialization_barbarian_crb_superstition_apg_7_apg","p":108,"h":1,"n":"Superstition Barbarian 7; Weapon Specialization","uh":"barbarian_crb,state:sub-superstition-apg=b1~feature=s6-1"},{"c":6,"s":"APG","id":9442,"u":"raging%20resistance_barbarian_crb_superstition_apg_9_apg","p":108,"h":1,"n":"Superstition Barbarian 9; Raging Resistance","uh":"barbarian_crb,state:sub-superstition-apg=b1~feature=s8-1"},{"c":6,"s":"CRB","id":9444,"u":"muses_bard_crb_polymath_crb_1_crb","p":97,"h":1,"n":"Polymath Bard 1; Muses","uh":"bard_crb,state:sub-polymath-crb=b1~feature=s0-5"},{"c":6,"s":"CRB","id":9446,"u":"muses_bard_crb_enigma_crb_1_crb","p":97,"h":1,"n":"Enigma Bard 1; Muses","uh":"bard_crb,state:sub-enigma-crb=b1~feature=s0-5"},{"c":6,"s":"CRB","id":9448,"u":"muses_bard_crb_maestro_crb_1_crb","p":97,"h":1,"n":"Maestro Bard 1; Muses","uh":"bard_crb,state:sub-maestro-crb=b1~feature=s0-5"},{"c":6,"s":"APG","id":9450,"u":"muses_bard_crb_warrior_apg_1_apg","p":112,"h":1,"n":"Warrior Bard 1; Muses","uh":"bard_crb,state:sub-warrior-apg=b1~feature=s0-5"},{"c":6,"s":"CRB","id":9452,"u":"deity%20and%20cause_champion_crb_paladin_crb_1_crb","p":106,"h":1,"n":"Paladin Champion 1; Deity and Cause","uh":"champion_crb,state:sub-paladin-crb=b1~feature=s0-3"},{"c":6,"s":"CRB","id":9454,"u":"deity%20and%20cause_champion_crb_redeemer_crb_1_crb","p":106,"h":1,"n":"Redeemer Champion 1; Deity and Cause","uh":"champion_crb,state:sub-redeemer-crb=b1~feature=s0-3"},{"c":6,"s":"CRB","id":9456,"u":"deity%20and%20cause_champion_crb_liberator_crb_1_crb","p":107,"h":1,"n":"Liberator Champion 1; Deity and Cause","uh":"champion_crb,state:sub-liberator-crb=b1~feature=s0-3"},{"c":6,"s":"CRB","id":9458,"u":"champion's%20reaction_champion_crb_paladin_crb_1_crb","p":107,"h":1,"n":"Paladin Champion 1; Champion's Reaction","uh":"champion_crb,state:sub-paladin-crb=b1~feature=s0-5"},{"c":6,"s":"CRB","id":9460,"u":"champion's%20reaction_champion_crb_redeemer_crb_1_crb","p":107,"h":1,"n":"Redeemer Champion 1; Champion's Reaction","uh":"champion_crb,state:sub-redeemer-crb=b1~feature=s0-5"},{"c":6,"s":"CRB","id":9462,"u":"champion's%20reaction_champion_crb_liberator_crb_1_crb","p":107,"h":1,"n":"Liberator Champion 1; Champion's Reaction","uh":"champion_crb,state:sub-liberator-crb=b1~feature=s0-5"},{"c":6,"s":"CRB","id":9464,"u":"divine%20smite_champion_crb_paladin_crb_9_crb","p":107,"h":1,"n":"Paladin Champion 9; Divine Smite","uh":"champion_crb,state:sub-paladin-crb=b1~feature=s8-1"},{"c":6,"s":"CRB","id":9466,"u":"divine%20smite_champion_crb_redeemer_crb_9_crb","p":107,"h":1,"n":"Redeemer Champion 9; Divine Smite","uh":"champion_crb,state:sub-redeemer-crb=b1~feature=s8-1"},{"c":6,"s":"CRB","id":9468,"u":"divine%20smite_champion_crb_liberator_crb_9_crb","p":107,"h":1,"n":"Liberator Champion 9; Divine Smite","uh":"champion_crb,state:sub-liberator-crb=b1~feature=s8-1"},{"c":6,"s":"CRB","id":9470,"u":"exalt_champion_crb_liberator_crb_11_crb","p":107,"h":1,"n":"Liberator Champion 11; Exalt","uh":"champion_crb,state:sub-liberator-crb=b1~feature=s10-2"},{"c":6,"s":"CRB","id":9472,"u":"exalt_champion_crb_redeemer_crb_11_crb","p":107,"h":1,"n":"Redeemer Champion 11; Exalt","uh":"champion_crb,state:sub-redeemer-crb=b1~feature=s10-2"},{"c":6,"s":"CRB","id":9474,"u":"exalt_champion_crb_paladin_crb_11_crb","p":107,"h":1,"n":"Paladin Champion 11; Exalt","uh":"champion_crb,state:sub-paladin-crb=b1~feature=s10-2"},{"c":6,"s":"APG","id":9476,"u":"deity%20and%20cause_champion_crb_tyrant_apg_1_apg","p":116,"h":1,"n":"Tyrant Champion 1; Deity and Cause","uh":"champion_crb,state:sub-tyrant-apg=b1~feature=s0-3"},{"c":6,"s":"APG","id":9478,"u":"champion's%20reaction_champion_crb_tyrant_apg_1_apg","p":116,"h":1,"n":"Tyrant Champion 1; Champion's Reaction","uh":"champion_crb,state:sub-tyrant-apg=b1~feature=s0-5"},{"c":6,"s":"APG","id":9480,"u":"divine%20smite_champion_crb_tyrant_apg_9_apg","p":107,"h":1,"n":"Tyrant Champion 9; Divine Smite","uh":"champion_crb,state:sub-tyrant-apg=b1~feature=s8-1"},{"c":6,"s":"APG","id":9482,"u":"exalt_champion_crb_tyrant_apg_11_apg","p":107,"h":1,"n":"Tyrant Champion 11; Exalt","uh":"champion_crb,state:sub-tyrant-apg=b1~feature=s10-2"},{"c":6,"s":"APG","id":9484,"u":"deity%20and%20cause_champion_crb_desecrator_apg_1_apg","p":116,"h":1,"n":"Desecrator Champion 1; Deity and Cause","uh":"champion_crb,state:sub-desecrator-apg=b1~feature=s0-3"},{"c":6,"s":"APG","id":9486,"u":"champion's%20reaction_champion_crb_desecrator_apg_1_apg","p":116,"h":1,"n":"Desecrator Champion 1; Champion's Reaction","uh":"champion_crb,state:sub-desecrator-apg=b1~feature=s0-5"},{"c":6,"s":"APG","id":9488,"u":"divine%20smite_champion_crb_desecrator_apg_9_apg","p":107,"h":1,"n":"Desecrator Champion 9; Divine Smite","uh":"champion_crb,state:sub-desecrator-apg=b1~feature=s8-1"},{"c":6,"s":"APG","id":9490,"u":"exalt_champion_crb_desecrator_apg_11_apg","p":107,"h":1,"n":"Desecrator Champion 11; Exalt","uh":"champion_crb,state:sub-desecrator-apg=b1~feature=s10-2"},{"c":6,"s":"APG","id":9492,"u":"deity%20and%20cause_champion_crb_antipaladin_apg_1_apg","p":116,"h":1,"n":"Antipaladin Champion 1; Deity and Cause","uh":"champion_crb,state:sub-antipaladin-apg=b1~feature=s0-3"},{"c":6,"s":"APG","id":9494,"u":"champion's%20reaction_champion_crb_antipaladin_apg_1_apg","p":116,"h":1,"n":"Antipaladin Champion 1; Champion's Reaction","uh":"champion_crb,state:sub-antipaladin-apg=b1~feature=s0-5"},{"c":6,"s":"APG","id":9496,"u":"divine%20smite_champion_crb_antipaladin_apg_9_apg","p":107,"h":1,"n":"Antipaladin Champion 9; Divine Smite","uh":"champion_crb,state:sub-antipaladin-apg=b1~feature=s8-1"},{"c":6,"s":"APG","id":9498,"u":"exalt_champion_crb_antipaladin_apg_11_apg","p":107,"h":1,"n":"Antipaladin Champion 11; Exalt","uh":"champion_crb,state:sub-antipaladin-apg=b1~feature=s10-2"},{"c":6,"s":"CRB","id":9500,"u":"doctrine_cleric_crb_cloistered_crb_1_crb","p":119,"h":1,"n":"Cloistered Cleric 1; Doctrine","uh":"cleric_crb,state:sub-cloistered-crb=b1~feature=s0-5"},{"c":6,"s":"CRB","id":9502,"u":"first%20doctrine_cleric_crb_cloistered_crb_1_crb","p":119,"h":1,"n":"Cloistered Cleric 1; First Doctrine","uh":"cleric_crb,state:sub-cloistered-crb=b1~feature=s0-6"},{"c":6,"s":"CRB","id":9504,"u":"second%20doctrine_cleric_crb_cloistered_crb_3_crb","p":119,"h":1,"n":"Cloistered Cleric 3; Second Doctrine","uh":"cleric_crb,state:sub-cloistered-crb=b1~feature=s2-0"},{"c":6,"s":"CRB","id":9506,"u":"third%20doctrine_cleric_crb_cloistered_crb_7_crb","p":119,"h":1,"n":"Cloistered Cleric 7; Third Doctrine","uh":"cleric_crb,state:sub-cloistered-crb=b1~feature=s6-0"},{"c":6,"s":"CRB","id":9508,"u":"fourth%20doctrine_cleric_crb_cloistered_crb_11_crb","p":119,"h":1,"n":"Cloistered Cleric 11; Fourth Doctrine","uh":"cleric_crb,state:sub-cloistered-crb=b1~feature=s10-0"},{"c":6,"s":"CRB","id":9510,"u":"fifth%20doctrine_cleric_crb_cloistered_crb_15_crb","p":119,"h":1,"n":"Cloistered Cleric 15; Fifth Doctrine","uh":"cleric_crb,state:sub-cloistered-crb=b1~feature=s14-0"},{"c":6,"s":"CRB","id":9512,"u":"final%20doctrine_cleric_crb_cloistered_crb_19_crb","p":119,"h":1,"n":"Cloistered Cleric 19; Final Doctrine","uh":"cleric_crb,state:sub-cloistered-crb=b1~feature=s18-0"},{"c":6,"s":"CRB","id":9514,"u":"doctrine_cleric_crb_warpriest_crb_1_crb","p":120,"h":1,"n":"Warpriest Cleric 1; Doctrine","uh":"cleric_crb,state:sub-warpriest-crb=b1~feature=s0-5"},{"c":6,"s":"CRB","id":9516,"u":"first%20doctrine_cleric_crb_warpriest_crb_1_crb","p":120,"h":1,"n":"Warpriest Cleric 1; First Doctrine","uh":"cleric_crb,state:sub-warpriest-crb=b1~feature=s0-6"},{"c":6,"s":"CRB","id":9518,"u":"second%20doctrine_cleric_crb_warpriest_crb_3_crb","p":120,"h":1,"n":"Warpriest Cleric 3; Second Doctrine","uh":"cleric_crb,state:sub-warpriest-crb=b1~feature=s2-0"},{"c":6,"s":"CRB","id":9520,"u":"third%20doctrine_cleric_crb_warpriest_crb_7_crb","p":120,"h":1,"n":"Warpriest Cleric 7; Third Doctrine","uh":"cleric_crb,state:sub-warpriest-crb=b1~feature=s6-0"},{"c":6,"s":"CRB","id":9522,"u":"fourth%20doctrine_cleric_crb_warpriest_crb_11_crb","p":120,"h":1,"n":"Warpriest Cleric 11; Fourth Doctrine","uh":"cleric_crb,state:sub-warpriest-crb=b1~feature=s10-0"},{"c":6,"s":"CRB","id":9524,"u":"fifth%20doctrine_cleric_crb_warpriest_crb_15_crb","p":120,"h":1,"n":"Warpriest Cleric 15; Fifth Doctrine","uh":"cleric_crb,state:sub-warpriest-crb=b1~feature=s14-0"},{"c":6,"s":"CRB","id":9526,"u":"final%20doctrine_cleric_crb_warpriest_crb_19_crb","p":120,"h":1,"n":"Warpriest Cleric 19; Final Doctrine","uh":"cleric_crb,state:sub-warpriest-crb=b1~feature=s18-0"},{"c":6,"s":"CRB","id":9528,"u":"druidic%20order_druid_crb_animal_crb_1_crb","p":131,"h":1,"n":"Animal Druid 1; Druidic Order","uh":"druid_crb,state:sub-animal-crb=b1~feature=s0-5"},{"c":6,"s":"CRB","id":9530,"u":"druidic%20order_druid_crb_leaf_crb_1_crb","p":131,"h":1,"n":"Leaf Druid 1; Druidic Order","uh":"druid_crb,state:sub-leaf-crb=b1~feature=s0-5"},{"c":6,"s":"CRB","id":9532,"u":"druidic%20order_druid_crb_storm_crb_1_crb","p":132,"h":1,"n":"Storm Druid 1; Druidic Order","uh":"druid_crb,state:sub-storm-crb=b1~feature=s0-5"},{"c":6,"s":"CRB","id":9534,"u":"druidic%20order_druid_crb_wild_crb_1_crb","p":132,"h":1,"n":"Wild Druid 1; Druidic Order","uh":"druid_crb,state:sub-wild-crb=b1~feature=s0-5"},{"c":6,"s":"SoM","id":9536,"u":"druidic%20order_druid_crb_flame_som_1_som","p":198,"h":1,"n":"Flame Druid 1; Druidic Order","uh":"druid_crb,state:sub-flame-som=b1~feature=s0-5"},{"c":6,"s":"SoM","id":9538,"u":"druidic%20order_druid_crb_stone_som_1_som","p":198,"h":1,"n":"Stone Druid 1; Druidic Order","uh":"druid_crb,state:sub-stone-som=b1~feature=s0-5"},{"c":6,"s":"SoM","id":9540,"u":"druidic%20order_druid_crb_wave_som_1_som","p":198,"h":1,"n":"Wave Druid 1; Druidic Order","uh":"druid_crb,state:sub-wave-som=b1~feature=s0-5"},{"c":6,"s":"G&G","id":9542,"u":"gunslinger's%20way_gunslinger_g%26g_drifter_g%26g_1_g%26g","p":108,"h":1,"n":"Drifter Gunslinger 1; Gunslinger's Way","uh":"gunslinger_g%26g,state:sub-drifter-gg=b1~feature=s0-2"},{"c":6,"s":"G&G","id":9544,"u":"advanced%20deed_gunslinger_g%26g_drifter_g%26g_9_g%26g","p":108,"h":1,"n":"Drifter Gunslinger 9; Advanced Deed","uh":"gunslinger_g%26g,state:sub-drifter-gg=b1~feature=s8-0"},{"c":6,"s":"G&G","id":9546,"u":"greater%20deed_gunslinger_g%26g_drifter_g%26g_15_g%26g","p":109,"h":1,"n":"Drifter Gunslinger 15; Greater Deed","uh":"gunslinger_g%26g,state:sub-drifter-gg=b1~feature=s14-0"},{"c":6,"s":"G&G","id":9548,"u":"gunslinger's%20way_gunslinger_g%26g_pistolero_g%26g_1_g%26g","p":108,"h":1,"n":"Pistolero Gunslinger 1; Gunslinger's Way","uh":"gunslinger_g%26g,state:sub-pistolero-gg=b1~feature=s0-2"},{"c":6,"s":"G&G","id":9550,"u":"advanced%20deed_gunslinger_g%26g_pistolero_g%26g_9_g%26g","p":109,"h":1,"n":"Pistolero Gunslinger 9; Advanced Deed","uh":"gunslinger_g%26g,state:sub-pistolero-gg=b1~feature=s8-0"},{"c":6,"s":"G&G","id":9552,"u":"greater%20deed_gunslinger_g%26g_pistolero_g%26g_15_g%26g","p":109,"h":1,"n":"Pistolero Gunslinger 15; Greater Deed","uh":"gunslinger_g%26g,state:sub-pistolero-gg=b1~feature=s14-0"},{"c":6,"s":"G&G","id":9554,"u":"gunslinger's%20way_gunslinger_g%26g_sniper_g%26g_1_g%26g","p":108,"h":1,"n":"Sniper Gunslinger 1; Gunslinger's Way","uh":"gunslinger_g%26g,state:sub-sniper-gg=b1~feature=s0-2"},{"c":6,"s":"G&G","id":9556,"u":"advanced%20deed_gunslinger_g%26g_sniper_g%26g_9_g%26g","p":110,"h":1,"n":"Sniper Gunslinger 9; Advanced Deed","uh":"gunslinger_g%26g,state:sub-sniper-gg=b1~feature=s8-0"},{"c":6,"s":"G&G","id":9558,"u":"greater%20deed_gunslinger_g%26g_sniper_g%26g_15_g%26g","p":110,"h":1,"n":"Sniper Gunslinger 15; Greater Deed","uh":"gunslinger_g%26g,state:sub-sniper-gg=b1~feature=s14-0"},{"c":6,"s":"G&G","id":9560,"u":"gunslinger's%20way_gunslinger_g%26g_vanguard_g%26g_1_g%26g","p":110,"h":1,"n":"Vanguard Gunslinger 1; Gunslinger's Way","uh":"gunslinger_g%26g,state:sub-vanguard-gg=b1~feature=s0-2"},{"c":6,"s":"G&G","id":9562,"u":"advanced%20deed_gunslinger_g%26g_vanguard_g%26g_9_g%26g","p":110,"h":1,"n":"Vanguard Gunslinger 9; Advanced Deed","uh":"gunslinger_g%26g,state:sub-vanguard-gg=b1~feature=s8-0"},{"c":6,"s":"G&G","id":9564,"u":"greater%20deed_gunslinger_g%26g_vanguard_g%26g_15_g%26g","p":110,"h":1,"n":"Vanguard Gunslinger 15; Greater Deed","uh":"gunslinger_g%26g,state:sub-vanguard-gg=b1~feature=s14-0"},{"c":6,"s":"G&G","id":9566,"u":"innovation_inventor_g%26g_armor_g%26g_1_g%26g","p":16,"h":1,"n":"Armor Inventor 1; Innovation","uh":"inventor_g%26g,state:sub-armor-gg=b1~feature=s0-3"},{"c":6,"s":"G&G","id":9568,"u":"innovation_inventor_g%26g_construct_g%26g_1_g%26g","p":17,"h":1,"n":"Construct Inventor 1; Innovation","uh":"inventor_g%26g,state:sub-construct-gg=b1~feature=s0-3"},{"c":6,"s":"G&G","id":9570,"u":"innovation_inventor_g%26g_weapon_g%26g_1_g%26g","p":17,"h":1,"n":"Weapon Inventor 1; Innovation","uh":"inventor_g%26g,state:sub-weapon-gg=b1~feature=s0-3"},{"c":6,"s":"G&G","id":9572,"u":"breakthrough%20innovation_inventor_g%26g_armor_g%26g_7_g%26g","p":20,"h":1,"n":"Armor Inventor 7; Breakthrough Innovation","uh":"inventor_g%26g,state:sub-armor-gg=b1~feature=s6-0"},{"c":6,"s":"G&G","id":9574,"u":"breakthrough%20innovation_inventor_g%26g_construct_g%26g_7_g%26g","p":21,"h":1,"n":"Construct Inventor 7; Breakthrough Innovation","uh":"inventor_g%26g,state:sub-construct-gg=b1~feature=s6-0"},{"c":6,"s":"G&G","id":9576,"u":"breakthrough%20innovation_inventor_g%26g_weapon_g%26g_7_g%26g","p":21,"h":1,"n":"Weapon Inventor 7; Breakthrough Innovation","uh":"inventor_g%26g,state:sub-weapon-gg=b1~feature=s6-0"},{"c":6,"s":"G&G","id":9578,"u":"revolutionary%20innovation_inventor_g%26g_armor_g%26g_15_g%26g","p":23,"h":1,"n":"Armor Inventor 15; Revolutionary Innovation","uh":"inventor_g%26g,state:sub-armor-gg=b1~feature=s14-2"},{"c":6,"s":"G&G","id":9580,"u":"revolutionary%20innovation_inventor_g%26g_construct_g%26g_15_g%26g","p":23,"h":1,"n":"Construct Inventor 15; Revolutionary Innovation","uh":"inventor_g%26g,state:sub-construct-gg=b1~feature=s14-2"},{"c":6,"s":"G&G","id":9582,"u":"revolutionary%20innovation_inventor_g%26g_weapon_g%26g_15_g%26g","p":23,"h":1,"n":"Weapon Inventor 15; Revolutionary Innovation","uh":"inventor_g%26g,state:sub-weapon-gg=b1~feature=s14-2"},{"c":6,"s":"APG","id":9584,"u":"methodology_investigator_apg_alchemical%20sciences_apg_1_apg","p":57,"h":1,"n":"Alchemical Sciences Investigator 1; Methodology","uh":"investigator_apg,state:sub-alchemical-sciences-apg=b1~feature=s0-4"},{"c":6,"s":"APG","id":9586,"u":"methodology_investigator_apg_empiricism_apg_1_apg","p":57,"h":1,"n":"Empiricism Investigator 1; Methodology","uh":"investigator_apg,state:sub-empiricism-apg=b1~feature=s0-4"},{"c":6,"s":"APG","id":9588,"u":"methodology_investigator_apg_forensic%20medicine_apg_1_apg","p":58,"h":1,"n":"Forensic Medicine Investigator 1; Methodology","uh":"investigator_apg,state:sub-forensic-medicine-apg=b1~feature=s0-4"},{"c":6,"s":"APG","id":9590,"u":"methodology_investigator_apg_interrogation_apg_1_apg","p":58,"h":1,"n":"Interrogation Investigator 1; Methodology","uh":"investigator_apg,state:sub-interrogation-apg=b1~feature=s0-4"},{"c":6,"s":"SoM","id":9592,"u":"hybrid%20study_magus_som_inexorable%20iron_som_1_som","p":39,"h":1,"n":"Inexorable Iron Magus 1; Hybrid Study","uh":"magus_som,state:sub-inexorable-iron-som=b1~feature=s0-5"},{"c":6,"s":"SoM","id":9594,"u":"hybrid%20study_magus_som_laughing%20shadow_som_1_som","p":39,"h":1,"n":"Laughing Shadow Magus 1; Hybrid Study","uh":"magus_som,state:sub-laughing-shadow-som=b1~feature=s0-5"},{"c":6,"s":"SoM","id":9596,"u":"hybrid%20study_magus_som_sparkling%20targe_som_1_som","p":39,"h":1,"n":"Sparkling Targe Magus 1; Hybrid Study","uh":"magus_som,state:sub-sparkling-targe-som=b1~feature=s0-5"},{"c":6,"s":"SoM","id":9598,"u":"hybrid%20study_magus_som_starlit%20span_som_1_som","p":39,"h":1,"n":"Starlit Span Magus 1; Hybrid Study","uh":"magus_som,state:sub-starlit-span-som=b1~feature=s0-5"},{"c":6,"s":"SoM","id":9600,"u":"hybrid%20study_magus_som_twisting%20tree_som_1_som","p":39,"h":1,"n":"Twisting Tree Magus 1; Hybrid Study","uh":"magus_som,state:sub-twisting-tree-som=b1~feature=s0-5"},{"c":6,"s":"SoM","id":9602,"u":"studious%20spells_magus_som_inexorable%20iron_som_7_som","p":41,"h":1,"n":"Inexorable Iron Magus 7; Studious Spells","uh":"magus_som,state:sub-inexorable-iron-som=b1~feature=s6-0"},{"c":6,"s":"SoM","id":9604,"u":"studious%20spells_magus_som_laughing%20shadow_som_7_som","p":41,"h":1,"n":"Laughing Shadow Magus 7; Studious Spells","uh":"magus_som,state:sub-laughing-shadow-som=b1~feature=s6-0"},{"c":6,"s":"SoM","id":9606,"u":"studious%20spells_magus_som_sparkling%20targe_som_7_som","p":41,"h":1,"n":"Sparkling Targe Magus 7; Studious Spells","uh":"magus_som,state:sub-sparkling-targe-som=b1~feature=s6-0"},{"c":6,"s":"SoM","id":9608,"u":"studious%20spells_magus_som_starlit%20span_som_7_som","p":41,"h":1,"n":"Starlit Span Magus 7; Studious Spells","uh":"magus_som,state:sub-starlit-span-som=b1~feature=s6-0"},{"c":6,"s":"SoM","id":9610,"u":"studious%20spells_magus_som_twisting%20tree_som_7_som","p":41,"h":1,"n":"Twisting Tree Magus 7; Studious Spells","uh":"magus_som,state:sub-twisting-tree-som=b1~feature=s6-0"},{"c":6,"s":"APG","id":9612,"u":"mystery_oracle_apg_ancestors_apg_1_apg","p":73,"h":1,"n":"Ancestors Oracle 1; Mystery","uh":"oracle_apg,state:sub-ancestors-apg=b1~feature=s0-4"},{"c":6,"s":"APG","id":9614,"u":"major%20curse_oracle_apg_ancestors_apg_11_apg","p":74,"h":1,"n":"Ancestors Oracle 11; Major Curse","uh":"oracle_apg,state:sub-ancestors-apg=b1~feature=s10-1"},{"c":6,"s":"APG","id":9616,"u":"mystery_oracle_apg_battle_apg_1_apg","p":74,"h":1,"n":"Battle Oracle 1; Mystery","uh":"oracle_apg,state:sub-battle-apg=b1~feature=s0-4"},{"c":6,"s":"APG","id":9618,"u":"major%20curse_oracle_apg_battle_apg_11_apg","p":74,"h":1,"n":"Battle Oracle 11; Major Curse","uh":"oracle_apg,state:sub-battle-apg=b1~feature=s10-1"},{"c":6,"s":"APG","id":9620,"u":"mystery_oracle_apg_bones_apg_1_apg","p":75,"h":1,"n":"Bones Oracle 1; Mystery","uh":"oracle_apg,state:sub-bones-apg=b1~feature=s0-4"},{"c":6,"s":"APG","id":9622,"u":"major%20curse_oracle_apg_bones_apg_11_apg","p":74,"h":1,"n":"Bones Oracle 11; Major Curse","uh":"oracle_apg,state:sub-bones-apg=b1~feature=s10-1"},{"c":6,"s":"APG","id":9624,"u":"mystery_oracle_apg_cosmos_apg_1_apg","p":75,"h":1,"n":"Cosmos Oracle 1; Mystery","uh":"oracle_apg,state:sub-cosmos-apg=b1~feature=s0-4"},{"c":6,"s":"APG","id":9626,"u":"major%20curse_oracle_apg_cosmos_apg_11_apg","p":74,"h":1,"n":"Cosmos Oracle 11; Major Curse","uh":"oracle_apg,state:sub-cosmos-apg=b1~feature=s10-1"},{"c":6,"s":"APG","id":9628,"u":"mystery_oracle_apg_flames_apg_1_apg","p":75,"h":1,"n":"Flames Oracle 1; Mystery","uh":"oracle_apg,state:sub-flames-apg=b1~feature=s0-4"},{"c":6,"s":"APG","id":9630,"u":"major%20curse_oracle_apg_flames_apg_11_apg","p":74,"h":1,"n":"Flames Oracle 11; Major Curse","uh":"oracle_apg,state:sub-flames-apg=b1~feature=s10-1"},{"c":6,"s":"APG","id":9632,"u":"mystery_oracle_apg_life_apg_1_apg","p":77,"h":1,"n":"Life Oracle 1; Mystery","uh":"oracle_apg,state:sub-life-apg=b1~feature=s0-4"},{"c":6,"s":"APG","id":9634,"u":"major%20curse_oracle_apg_life_apg_11_apg","p":77,"h":1,"n":"Life Oracle 11; Major Curse","uh":"oracle_apg,state:sub-life-apg=b1~feature=s10-1"},{"c":6,"s":"APG","id":9636,"u":"mystery_oracle_apg_lore_apg_1_apg","p":75,"h":1,"n":"Lore Oracle 1; Mystery","uh":"oracle_apg,state:sub-lore-apg=b1~feature=s0-4"},{"c":6,"s":"APG","id":9638,"u":"major%20curse_oracle_apg_lore_apg_11_apg","p":74,"h":1,"n":"Lore Oracle 11; Major Curse","uh":"oracle_apg,state:sub-lore-apg=b1~feature=s10-1"},{"c":6,"s":"APG","id":9640,"u":"mystery_oracle_apg_tempest_apg_1_apg","p":75,"h":1,"n":"Tempest Oracle 1; Mystery","uh":"oracle_apg,state:sub-tempest-apg=b1~feature=s0-4"},{"c":6,"s":"APG","id":9642,"u":"major%20curse_oracle_apg_tempest_apg_11_apg","p":74,"h":1,"n":"Tempest Oracle 11; Major Curse","uh":"oracle_apg,state:sub-tempest-apg=b1~feature=s10-1"},{"c":6,"s":"CRB","id":9644,"u":"hunter's%20edge_ranger_crb_flurry_crb_1_crb","p":168,"h":1,"n":"Flurry Ranger 1; Hunter's Edge","uh":"ranger_crb,state:sub-flurry-crb=b1~feature=s0-3"},{"c":6,"s":"CRB","id":9646,"u":"hunter's%20edge_ranger_crb_outwit_crb_1_crb","p":168,"h":1,"n":"Outwit Ranger 1; Hunter's Edge","uh":"ranger_crb,state:sub-outwit-crb=b1~feature=s0-3"},{"c":6,"s":"CRB","id":9648,"u":"hunter's%20edge_ranger_crb_precision_crb_1_crb","p":168,"h":1,"n":"Precision Ranger 1; Hunter's Edge","uh":"ranger_crb,state:sub-precision-crb=b1~feature=s0-3"},{"c":6,"s":"CRB","id":9650,"u":"masterful%20hunter_ranger_crb_flurry_crb_17_crb","p":170,"h":1,"n":"Flurry Ranger 17; Masterful Hunter","uh":"ranger_crb,state:sub-flurry-crb=b1~feature=s16-0"},{"c":6,"s":"CRB","id":9652,"u":"masterful%20hunter_ranger_crb_outwit_crb_17_crb","p":170,"h":1,"n":"Outwit Ranger 17; Masterful Hunter","uh":"ranger_crb,state:sub-outwit-crb=b1~feature=s16-0"},{"c":6,"s":"CRB","id":9654,"u":"masterful%20hunter_ranger_crb_precision_crb_17_crb","p":170,"h":1,"n":"Precision Ranger 17; Masterful Hunter","uh":"ranger_crb,state:sub-precision-crb=b1~feature=s16-0"},{"c":6,"s":"APG","id":9656,"u":"rogue's%20racket_rogue_crb_eldritch%20trickster_apg_1_apg","p":134,"h":1,"n":"Eldritch Trickster Rogue 1; Rogue's Racket","uh":"rogue_crb,state:sub-eldritch-trickster-apg=b1~feature=s0-2"},{"c":6,"s":"APG","id":9658,"u":"rogue's%20racket_rogue_crb_mastermind_apg_1_apg","p":134,"h":1,"n":"Mastermind Rogue 1; Rogue's Racket","uh":"rogue_crb,state:sub-mastermind-apg=b1~feature=s0-2"},{"c":6,"s":"CRB","id":9660,"u":"rogue's%20racket_rogue_crb_ruffian_crb_1_crb","p":180,"h":1,"n":"Ruffian Rogue 1; Rogue's Racket","uh":"rogue_crb,state:sub-ruffian-crb=b1~feature=s0-2"},{"c":6,"s":"CRB","id":9662,"u":"rogue's%20racket_rogue_crb_scoundrel_crb_1_crb","p":180,"h":1,"n":"Scoundrel Rogue 1; Rogue's Racket","uh":"rogue_crb,state:sub-scoundrel-crb=b1~feature=s0-2"},{"c":6,"s":"CRB","id":9664,"u":"rogue's%20racket_rogue_crb_thief_crb_1_crb","p":180,"h":1,"n":"Thief Rogue 1; Rogue's Racket","uh":"rogue_crb,state:sub-thief-crb=b1~feature=s0-2"},{"c":6,"s":"CRB","id":9666,"u":"bloodline_sorcerer_crb_aberrant_crb_1_crb","p":195,"h":1,"n":"Aberrant Sorcerer 1; Bloodline","uh":"sorcerer_crb,state:sub-aberrant-crb=b1~feature=s0-2"},{"c":6,"s":"CRB","id":9668,"u":"bloodline_sorcerer_crb_angelic_crb_1_crb","p":195,"h":1,"n":"Angelic Sorcerer 1; Bloodline","uh":"sorcerer_crb,state:sub-angelic-crb=b1~feature=s0-2"},{"c":6,"s":"CRB","id":9670,"u":"bloodline_sorcerer_crb_demonic_crb_1_crb","p":195,"h":1,"n":"Demonic Sorcerer 1; Bloodline","uh":"sorcerer_crb,state:sub-demonic-crb=b1~feature=s0-2"},{"c":6,"s":"CRB","id":9672,"u":"bloodline_sorcerer_crb_diabolic_crb_1_crb","p":196,"h":1,"n":"Diabolic Sorcerer 1; Bloodline","uh":"sorcerer_crb,state:sub-diabolic-crb=b1~feature=s0-2"},{"c":6,"s":"LOME","id":9674,"u":"bloodline_sorcerer_crb_wyrmblessed_lome_1_lome","p":75,"h":1,"n":"Wyrmblessed Sorcerer 1; Bloodline","uh":"sorcerer_crb,state:sub-wyrmblessed-lome=b1~feature=s0-2"},{"c":6,"s":"CRB","id":9676,"u":"bloodline_sorcerer_crb_draconic_crb_1_crb","p":196,"h":1,"n":"Draconic Sorcerer 1; Bloodline","uh":"sorcerer_crb,state:sub-draconic-crb=b1~feature=s0-2"},{"c":6,"s":"FRP3","id":9678,"u":"bloodline_sorcerer_crb_phoenix_frp3_1_frp3","p":74,"h":1,"n":"Phoenix Sorcerer 1; Bloodline","uh":"sorcerer_crb,state:sub-phoenix-frp3=b1~feature=s0-2"},{"c":6,"s":"CRB","id":9680,"u":"bloodline_sorcerer_crb_elemental_crb_1_crb","p":196,"h":1,"n":"Elemental Sorcerer 1; Bloodline","uh":"sorcerer_crb,state:sub-elemental-crb=b1~feature=s0-2"},{"c":6,"s":"CRB","id":9682,"u":"bloodline_sorcerer_crb_fey_crb_1_crb","p":197,"h":1,"n":"Fey Sorcerer 1; Bloodline","uh":"sorcerer_crb,state:sub-fey-crb=b1~feature=s0-2"},{"c":6,"s":"CRB","id":9684,"u":"bloodline_sorcerer_crb_hag_crb_1_crb","p":197,"h":1,"n":"Hag Sorcerer 1; Bloodline","uh":"sorcerer_crb,state:sub-hag-crb=b1~feature=s0-2"},{"c":6,"s":"CRB","id":9686,"u":"bloodline_sorcerer_crb_imperial_crb_1_crb","p":198,"h":1,"n":"Imperial Sorcerer 1; Bloodline","uh":"sorcerer_crb,state:sub-imperial-crb=b1~feature=s0-2"},{"c":6,"s":"CRB","id":9688,"u":"bloodline_sorcerer_crb_undead_crb_1_crb","p":198,"h":1,"n":"Undead Sorcerer 1; Bloodline","uh":"sorcerer_crb,state:sub-undead-crb=b1~feature=s0-2"},{"c":6,"s":"APG","id":9690,"u":"bloodline_sorcerer_crb_genie_apg_1_apg","p":138,"h":1,"n":"Genie Sorcerer 1; Bloodline","uh":"sorcerer_crb,state:sub-genie-apg=b1~feature=s0-2"},{"c":6,"s":"APG","id":9692,"u":"bloodline_sorcerer_crb_nymph_apg_1_apg","p":138,"h":1,"n":"Nymph Sorcerer 1; Bloodline","uh":"sorcerer_crb,state:sub-nymph-apg=b1~feature=s0-2"},{"c":6,"s":"APG","id":9694,"u":"bloodline_sorcerer_crb_psychopomp_apg_1_apg","p":138,"h":1,"n":"Psychopomp Sorcerer 1; Bloodline","uh":"sorcerer_crb,state:sub-psychopomp-apg=b1~feature=s0-2"},{"c":6,"s":"APG","id":9696,"u":"bloodline_sorcerer_crb_shadow_apg_1_apg","p":138,"h":1,"n":"Shadow Sorcerer 1; Bloodline","uh":"sorcerer_crb,state:sub-shadow-apg=b1~feature=s0-2"},{"c":6,"s":"SoM","id":9698,"u":"eidolon_summoner_som_angel_som_1_som","p":59,"h":1,"n":"Angel Summoner 1; Eidolon","uh":"summoner_som,state:sub-angel-som=b1~feature=s0-2"},{"c":6,"s":"SoM","id":9700,"u":"eidolon_summoner_som_anger%20phantom_som_1_som","p":59,"h":1,"n":"Anger Phantom Summoner 1; Eidolon","uh":"summoner_som,state:sub-anger-phantom-som=b1~feature=s0-2"},{"c":6,"s":"SoM","id":9702,"u":"eidolon_summoner_som_beast_som_1_som","p":61,"h":1,"n":"Beast Summoner 1; Eidolon","uh":"summoner_som,state:sub-beast-som=b1~feature=s0-2"},{"c":6,"s":"SoM","id":9704,"u":"eidolon_summoner_som_construct_som_1_som","p":61,"h":1,"n":"Construct Summoner 1; Eidolon","uh":"summoner_som,state:sub-construct-som=b1~feature=s0-2"},{"c":6,"s":"SoM","id":9706,"u":"eidolon_summoner_som_demon_som_1_som","p":62,"h":1,"n":"Demon Summoner 1; Eidolon","uh":"summoner_som,state:sub-demon-som=b1~feature=s0-2"},{"c":6,"s":"SoM","id":9708,"u":"eidolon_summoner_som_devotion%20phantom_som_1_som","p":63,"h":1,"n":"Devotion Phantom Summoner 1; Eidolon","uh":"summoner_som,state:sub-devotion-phantom-som=b1~feature=s0-2"},{"c":6,"s":"SoM","id":9710,"u":"eidolon_summoner_som_dragon_som_1_som","p":63,"h":1,"n":"Dragon Summoner 1; Eidolon","uh":"summoner_som,state:sub-dragon-som=b1~feature=s0-2"},{"c":6,"s":"SoM","id":9712,"u":"eidolon_summoner_som_fey_som_1_som","p":64,"h":1,"n":"Fey Summoner 1; Eidolon","uh":"summoner_som,state:sub-fey-som=b1~feature=s0-2"},{"c":6,"s":"SoM","id":9714,"u":"eidolon_summoner_som_plant_som_1_som","p":65,"h":1,"n":"Plant Summoner 1; Eidolon","uh":"summoner_som,state:sub-plant-som=b1~feature=s0-2"},{"c":6,"s":"SoM","id":9716,"u":"eidolon_summoner_som_psychopomp_som_1_som","p":66,"h":1,"n":"Psychopomp Summoner 1; Eidolon","uh":"summoner_som,state:sub-psychopomp-som=b1~feature=s0-2"},{"c":6,"s":"APG","id":9718,"u":"swashbuckler's%20style_swashbuckler_apg_battledancer_apg_1_apg","p":84,"h":1,"n":"Battledancer Swashbuckler 1; Swashbuckler's Style","uh":"swashbuckler_apg,state:sub-battledancer-apg=b1~feature=s0-4"},{"c":6,"s":"APG","id":9720,"u":"exemplary%20finisher_swashbuckler_apg_battledancer_apg_9_apg","p":87,"h":1,"n":"Battledancer Swashbuckler 9; Exemplary Finisher","uh":"swashbuckler_apg,state:sub-battledancer-apg=b1~feature=s8-0"},{"c":6,"s":"APG","id":9722,"u":"swashbuckler's%20style_swashbuckler_apg_braggart_apg_1_apg","p":84,"h":1,"n":"Braggart Swashbuckler 1; Swashbuckler's Style","uh":"swashbuckler_apg,state:sub-braggart-apg=b1~feature=s0-4"},{"c":6,"s":"APG","id":9724,"u":"exemplary%20finisher_swashbuckler_apg_braggart_apg_9_apg","p":87,"h":1,"n":"Braggart Swashbuckler 9; Exemplary Finisher","uh":"swashbuckler_apg,state:sub-braggart-apg=b1~feature=s8-0"},{"c":6,"s":"APG","id":9726,"u":"swashbuckler's%20style_swashbuckler_apg_fencer_apg_1_apg","p":84,"h":1,"n":"Fencer Swashbuckler 1; Swashbuckler's Style","uh":"swashbuckler_apg,state:sub-fencer-apg=b1~feature=s0-4"},{"c":6,"s":"APG","id":9728,"u":"exemplary%20finisher_swashbuckler_apg_fencer_apg_9_apg","p":87,"h":1,"n":"Fencer Swashbuckler 9; Exemplary Finisher","uh":"swashbuckler_apg,state:sub-fencer-apg=b1~feature=s8-0"},{"c":6,"s":"APG","id":9730,"u":"swashbuckler's%20style_swashbuckler_apg_gymnast_apg_1_apg","p":84,"h":1,"n":"Gymnast Swashbuckler 1; Swashbuckler's Style","uh":"swashbuckler_apg,state:sub-gymnast-apg=b1~feature=s0-4"},{"c":6,"s":"APG","id":9732,"u":"exemplary%20finisher_swashbuckler_apg_gymnast_apg_9_apg","p":87,"h":1,"n":"Gymnast Swashbuckler 9; Exemplary Finisher","uh":"swashbuckler_apg,state:sub-gymnast-apg=b1~feature=s8-0"},{"c":6,"s":"APG","id":9734,"u":"swashbuckler's%20style_swashbuckler_apg_wit_apg_1_apg","p":84,"h":1,"n":"Wit Swashbuckler 1; Swashbuckler's Style","uh":"swashbuckler_apg,state:sub-wit-apg=b1~feature=s0-4"},{"c":6,"s":"APG","id":9736,"u":"exemplary%20finisher_swashbuckler_apg_wit_apg_9_apg","p":87,"h":1,"n":"Wit Swashbuckler 9; Exemplary Finisher","uh":"swashbuckler_apg,state:sub-wit-apg=b1~feature=s8-0"},{"c":6,"s":"LOL","id":9738,"u":"patron_witch_apg_baba%20yaga_lol_1_lol","p":32,"h":1,"n":"Baba Yaga Witch 1; Patron","uh":"witch_apg,state:sub-baba-yaga-lol=b1~feature=s0-2"},{"c":6,"s":"APG","id":9740,"u":"patron_witch_apg_curse_apg_1_apg","p":99,"h":1,"n":"Curse Witch 1; Patron","uh":"witch_apg,state:sub-curse-apg=b1~feature=s0-2"},{"c":6,"s":"APG","id":9742,"u":"patron_witch_apg_fate_apg_1_apg","p":208,"h":1,"n":"Fate Witch 1; Patron","uh":"witch_apg,state:sub-fate-apg=b1~feature=s0-2"},{"c":6,"s":"APG","id":9744,"u":"patron_witch_apg_fervor_apg_1_apg","p":208,"h":1,"n":"Fervor Witch 1; Patron","uh":"witch_apg,state:sub-fervor-apg=b1~feature=s0-2"},{"c":6,"s":"APG","id":9746,"u":"patron_witch_apg_night_apg_1_apg","p":208,"h":1,"n":"Night Witch 1; Patron","uh":"witch_apg,state:sub-night-apg=b1~feature=s0-2"},{"c":6,"s":"APG","id":9748,"u":"patron_witch_apg_rune_apg_1_apg","p":208,"h":1,"n":"Rune Witch 1; Patron","uh":"witch_apg,state:sub-rune-apg=b1~feature=s0-2"},{"c":6,"s":"APG","id":9750,"u":"patron_witch_apg_wild_apg_1_apg","p":208,"h":1,"n":"Wild Witch 1; Patron","uh":"witch_apg,state:sub-wild-apg=b1~feature=s0-2"},{"c":6,"s":"APG","id":9752,"u":"patron_witch_apg_winter_apg_1_apg","p":208,"h":1,"n":"Winter Witch 1; Patron","uh":"witch_apg,state:sub-winter-apg=b1~feature=s0-2"},{"c":6,"s":"CRB","id":9754,"u":"arcane%20school_wizard_crb_abjuration_crb_1_crb","p":207,"h":1,"n":"Abjuration Wizard 1; Arcane School","uh":"wizard_crb,state:sub-abjuration-crb=b1~feature=s0-3"},{"c":6,"s":"CRB","id":9756,"u":"arcane%20school_wizard_crb_conjuration_crb_1_crb","p":207,"h":1,"n":"Conjuration Wizard 1; Arcane School","uh":"wizard_crb,state:sub-conjuration-crb=b1~feature=s0-3"},{"c":6,"s":"CRB","id":9758,"u":"arcane%20school_wizard_crb_divination_crb_1_crb","p":208,"h":1,"n":"Divination Wizard 1; Arcane School","uh":"wizard_crb,state:sub-divination-crb=b1~feature=s0-3"},{"c":6,"s":"CRB","id":9760,"u":"arcane%20school_wizard_crb_enchantment_crb_1_crb","p":208,"h":1,"n":"Enchantment Wizard 1; Arcane School","uh":"wizard_crb,state:sub-enchantment-crb=b1~feature=s0-3"},{"c":6,"s":"CRB","id":9762,"u":"arcane%20school_wizard_crb_evocation_crb_1_crb","p":208,"h":1,"n":"Evocation Wizard 1; Arcane School","uh":"wizard_crb,state:sub-evocation-crb=b1~feature=s0-3"},{"c":6,"s":"CRB","id":9764,"u":"arcane%20school_wizard_crb_illusion_crb_1_crb","p":208,"h":1,"n":"Illusion Wizard 1; Arcane School","uh":"wizard_crb,state:sub-illusion-crb=b1~feature=s0-3"},{"c":6,"s":"CRB","id":9766,"u":"arcane%20school_wizard_crb_necromancy_crb_1_crb","p":208,"h":1,"n":"Necromancy Wizard 1; Arcane School","uh":"wizard_crb,state:sub-necromancy-crb=b1~feature=s0-3"},{"c":6,"s":"CRB","id":9768,"u":"arcane%20school_wizard_crb_transmutation_crb_1_crb","p":208,"h":1,"n":"Transmutation Wizard 1; Arcane School","uh":"wizard_crb,state:sub-transmutation-crb=b1~feature=s0-3"},{"c":6,"s":"CRB","id":9770,"u":"arcane%20school_wizard_crb_universalist_crb_1_crb","p":209,"h":1,"n":"Universalist Wizard 1; Arcane School","uh":"wizard_crb,state:sub-universalist-crb=b1~feature=s0-3"},{"c":6,"s":"CRB","id":9772,"u":"arcane%20thesis_wizard_crb_improved%20familiar%20attunement_crb_1_crb","p":205,"h":1,"n":"Improved Familiar Attunement Wizard 1; Arcane Thesis","uh":"wizard_crb,state:sub-improved-familiar-attunement-crb=b1~feature=s0-5"},{"c":6,"s":"CRB","id":9774,"u":"arcane%20thesis_wizard_crb_metamagical%20experimentation_crb_1_crb","p":205,"h":1,"n":"Metamagical Experimentation Wizard 1; Arcane Thesis","uh":"wizard_crb,state:sub-metamagical-experimentation-crb=b1~feature=s0-5"},{"c":6,"s":"CRB","id":9776,"u":"arcane%20thesis_wizard_crb_spell%20blending_crb_1_crb","p":206,"h":1,"n":"Spell Blending Wizard 1; Arcane Thesis","uh":"wizard_crb,state:sub-spell-blending-crb=b1~feature=s0-5"},{"c":6,"s":"CRB","id":9778,"u":"arcane%20thesis_wizard_crb_spell%20substitution_crb_1_crb","p":206,"h":1,"n":"Spell Substitution Wizard 1; Arcane Thesis","uh":"wizard_crb,state:sub-spell-substitution-crb=b1~feature=s0-5"},{"c":6,"s":"APG","id":9780,"u":"arcane%20thesis_wizard_crb_staff%20nexus_apg_1_apg","p":142,"h":1,"n":"Staff Nexus Wizard 1; Arcane Thesis","uh":"wizard_crb,state:sub-staff-nexus-apg=b1~feature=s0-5"},{"c":25,"s":4,"id":9781,"u":"acrobat_apg","p":155,"h":1,"n":"Acrobat"},{"c":25,"s":4,"id":9782,"u":"archaeologist_apg","p":156,"h":1,"n":"Archaeologist"},{"c":25,"s":4,"id":9783,"u":"archer_apg","p":157,"h":1,"n":"Archer"},{"c":25,"s":4,"id":9784,"u":"assassin_apg","p":158,"h":1,"n":"Assassin"},{"c":25,"s":4,"id":9785,"u":"bastion_apg","p":159,"h":1,"n":"Bastion"},{"c":25,"s":4,"id":9786,"u":"beastmaster_apg","p":160,"h":1,"n":"Beastmaster"},{"c":25,"s":4,"id":9787,"u":"blessed%20one_apg","p":162,"h":1,"n":"Blessed One"},{"c":25,"s":4,"id":9788,"u":"bounty%20hunter_apg","p":163,"h":1,"n":"Bounty Hunter"},{"c":25,"s":4,"id":9789,"u":"cavalier_apg","p":164,"h":1,"n":"Cavalier"},{"c":25,"s":4,"id":9790,"u":"celebrity_apg","p":166,"h":1,"n":"Celebrity"},{"c":25,"s":4,"id":9791,"u":"dandy_apg","p":167,"h":1,"n":"Dandy"},{"c":25,"s":4,"id":9792,"u":"dragon%20disciple_apg","p":168,"h":1,"n":"Dragon Disciple"},{"c":25,"s":4,"id":9793,"u":"dual-weapon%20warrior_apg","p":170,"h":1,"n":"Dual-Weapon Warrior"},{"c":25,"s":4,"id":9794,"u":"duelist_apg","p":171,"h":1,"n":"Duelist"},{"c":25,"s":4,"id":9795,"u":"eldritch%20archer_apg","p":172,"h":1,"n":"Eldritch Archer"},{"c":25,"s":4,"id":9796,"u":"familiar%20master_apg","p":174,"h":1,"n":"Familiar Master"},{"c":25,"s":4,"id":9797,"u":"gladiator_apg","p":175,"h":1,"n":"Gladiator"},{"c":25,"s":4,"id":9798,"u":"herbalist_apg","p":176,"h":1,"n":"Herbalist"},{"c":25,"s":4,"id":9799,"u":"horizon%20walker_apg","p":177,"h":1,"n":"Horizon Walker"},{"c":25,"s":4,"id":9800,"u":"investigator_apg","p":151,"h":1,"n":"Investigator"},{"c":25,"s":4,"id":9801,"u":"linguist_apg","p":178,"h":1,"n":"Linguist"},{"c":25,"s":4,"id":9802,"u":"loremaster_apg","p":179,"h":1,"n":"Loremaster"},{"c":25,"s":4,"id":9803,"u":"marshal_apg","p":180,"h":1,"n":"Marshal"},{"c":25,"s":4,"id":9804,"u":"martial%20artist_apg","p":182,"h":1,"n":"Martial Artist"},{"c":25,"s":4,"id":9805,"u":"mauler_apg","p":183,"h":1,"n":"Mauler"},{"c":25,"s":4,"id":9806,"u":"medic_apg","p":184,"h":1,"n":"Medic"},{"c":25,"s":4,"id":9807,"u":"oracle_apg","p":152,"h":1,"n":"Oracle"},{"c":25,"s":4,"id":9808,"u":"pirate_apg","p":185,"h":1,"n":"Pirate"},{"c":25,"s":4,"id":9809,"u":"poisoner_apg","p":186,"h":1,"n":"Poisoner"},{"c":25,"s":4,"id":9810,"u":"ritualist_apg","p":187,"h":1,"n":"Ritualist"},{"c":25,"s":4,"id":9811,"u":"scout_apg","p":188,"h":1,"n":"Scout"},{"c":25,"s":4,"id":9812,"u":"scroll%20trickster_apg","p":189,"h":1,"n":"Scroll Trickster"},{"c":25,"s":4,"id":9813,"u":"scrounger_apg","p":190,"h":1,"n":"Scrounger"},{"c":25,"s":4,"id":9814,"u":"sentinel_apg","p":191,"h":1,"n":"Sentinel"},{"c":25,"s":4,"id":9815,"u":"shadowdancer_apg","p":192,"h":1,"n":"Shadowdancer"},{"c":25,"s":4,"id":9816,"u":"snarecrafter_apg","p":194,"h":1,"n":"Snarecrafter"},{"c":25,"s":4,"id":9817,"u":"swashbuckler_apg","p":153,"h":1,"n":"Swashbuckler"},{"c":25,"s":4,"id":9818,"u":"talisman%20dabbler_apg","p":195,"h":1,"n":"Talisman Dabbler"},{"c":25,"s":4,"id":9819,"u":"vigilante_apg","p":196,"h":1,"n":"Vigilante"},{"c":25,"s":4,"id":9820,"u":"viking_apg","p":198,"h":1,"n":"Viking"},{"c":25,"s":4,"id":9821,"u":"weapon%20improviser_apg","p":198,"h":1,"n":"Weapon Improviser"},{"c":25,"s":4,"id":9822,"u":"witch_apg","p":154,"h":1,"n":"Witch"},{"c":25,"s":5,"id":9823,"u":"alchemist_crb","p":220,"h":1,"n":"Alchemist"},{"c":25,"s":5,"id":9824,"u":"barbarian_crb","p":221,"h":1,"n":"Barbarian"},{"c":25,"s":5,"id":9825,"u":"bard_crb","p":222,"h":1,"n":"Bard"},{"c":25,"s":5,"id":9826,"u":"champion_crb","p":223,"h":1,"n":"Champion"},{"c":25,"s":5,"id":9827,"u":"cleric_crb","p":224,"h":1,"n":"Cleric"},{"c":25,"s":5,"id":9828,"u":"druid_crb","p":225,"h":1,"n":"Druid"},{"c":25,"s":5,"id":9829,"u":"fighter_crb","p":226,"h":1,"n":"Fighter"},{"c":25,"s":5,"id":9830,"u":"monk_crb","p":227,"h":1,"n":"Monk"},{"c":25,"s":5,"id":9831,"u":"ranger_crb","p":228,"h":1,"n":"Ranger"},{"c":25,"s":5,"id":9832,"u":"rogue_crb","p":229,"h":1,"n":"Rogue"},{"c":25,"s":5,"id":9833,"u":"sorcerer_crb","p":230,"h":1,"n":"Sorcerer"},{"c":25,"s":5,"id":9834,"u":"wizard_crb","p":231,"h":1,"n":"Wizard"},{"c":25,"s":15,"id":9835,"u":"bellflower%20tiller_aoa3","p":75,"h":1,"n":"Bellflower Tiller"},{"c":25,"s":16,"id":9836,"u":"crystal%20keeper_aoa4","p":74,"h":1,"n":"Crystal Keeper"},{"c":25,"s":53,"id":9837,"u":"zephyr%20guard_aoa5","p":81,"h":1,"n":"Zephyr Guard"},{"c":25,"s":54,"id":9838,"u":"edgewatch%20detective_aoe1","p":79,"h":1,"n":"Edgewatch Detective"},{"c":25,"s":20,"id":9839,"u":"jalmeri%20heavenseeker_aoe2","p":78,"h":1,"n":"Jalmeri Heavenseeker"},{"c":25,"s":55,"id":9840,"u":"provocator_aoe3","p":79,"h":1,"n":"Provocator"},{"c":25,"s":55,"id":9841,"u":"red%20mantis%20assassin_aoe3","p":71,"h":1,"n":"Red Mantis Assassin"},{"c":25,"s":25,"id":9842,"u":"ghost%20hunter_av1","p":81,"h":1,"n":"Ghost Hunter"},{"c":25,"s":26,"id":9843,"u":"eldritch%20researcher_av2","p":76,"h":1,"n":"Eldritch Researcher"},{"c":25,"s":28,"id":9844,"u":"juggler_ec1","p":74,"h":1,"n":"Juggler"},{"c":25,"s":28,"id":9845,"u":"staff%20acrobat_ec1","p":114,"h":1,"n":"Staff Acrobat"},{"c":25,"s":29,"id":9846,"u":"animal%20trainer_ec2","p":76,"h":1,"n":"Animal Trainer"},{"c":25,"s":8,"id":9847,"u":"golem%20grafter_ec3","p":74,"h":1,"n":"Golem Grafter"},{"c":25,"s":8,"id":9848,"u":"turpin%20rowe%20lumberjack_ec3","p":75,"h":1,"n":"Turpin Rowe Lumberjack"},{"c":25,"s":34,"id":9849,"u":"butterfly%20blade_frp1","p":78,"h":1,"n":"Butterfly Blade"},{"c":25,"s":34,"id":9850,"u":"drow%20shootist_frp1","p":77,"h":1,"n":"Drow Shootist"},{"c":25,"s":34,"id":9851,"u":"ghost%20eater_frp1","p":79,"h":1,"n":"Ghost Eater"},{"c":25,"s":35,"id":9852,"u":"golden%20league%20xun_frp2","p":76,"h":1,"n":"Golden League Xun"},{"c":25,"s":35,"id":9853,"u":"sixth%20pillar_frp2","p":77,"h":1,"n":"Sixth Pillar"},{"c":25,"s":2,"id":9854,"u":"artillerist_g%26g","p":128,"h":1,"n":"Artillerist"},{"c":25,"s":2,"id":9855,"u":"beast%20gunner_g%26g","p":130,"h":1,"n":"Beast Gunner"},{"c":25,"s":2,"id":9856,"u":"bullet%20dancer_g%26g","p":132,"h":1,"n":"Bullet Dancer"},{"c":25,"s":2,"id":9857,"u":"demolitionist_g%26g","p":133,"h":1,"n":"Demolitionist"},{"c":25,"s":2,"id":9858,"u":"firework%20technician_g%26g","p":134,"h":1,"n":"Firework Technician"},{"c":25,"s":2,"id":9859,"u":"gunslinger_g%26g","p":127,"h":1,"n":"Gunslinger"},{"c":25,"s":2,"id":9860,"u":"inventor_g%26g","p":49,"h":1,"n":"Inventor"},{"c":25,"s":2,"id":9861,"u":"overwatch_g%26g","p":50,"h":1,"n":"Overwatch"},{"c":25,"s":2,"id":9862,"u":"pistol%20phenom_g%26g","p":136,"h":1,"n":"Pistol Phenom"},{"c":25,"s":2,"id":9863,"u":"sniping%20duo_g%26g","p":138,"h":1,"n":"Sniping Duo"},{"c":25,"s":2,"id":9864,"u":"spellshot_g%26g","p":140,"h":1,"n":"Spellshot"},{"c":25,"s":2,"id":9865,"u":"sterling%20dynamo_g%26g","p":52,"h":1,"n":"Sterling Dynamo"},{"c":25,"s":2,"id":9866,"u":"trapsmith_g%26g","p":52,"h":1,"n":"Trapsmith"},{"c":25,"s":2,"id":9867,"u":"trick%20driver_g%26g","p":55,"h":1,"n":"Trick Driver"},{"c":25,"s":2,"id":9868,"u":"unexpected%20sharpshooter_g%26g","p":138,"h":1,"n":"Unexpected Sharpshooter"},{"c":25,"s":2,"id":9869,"u":"vehicle%20mechanic_g%26g","p":56,"h":1,"n":"Vehicle Mechanic"},{"c":25,"s":6,"id":9870,"u":"firebrand%20braggart_locg","p":74,"h":1,"n":"Firebrand Braggart"},{"c":25,"s":6,"id":9871,"u":"halcyon%20speaker_locg","p":104,"h":1,"n":"Halcyon Speaker"},{"c":25,"s":6,"id":9872,"u":"hellknight_locg","p":84,"h":1,"n":"Hellknight"},{"c":25,"s":6,"id":9873,"u":"hellknight%20signifer_locg","p":85,"h":1,"n":"Hellknight Signifer"},{"c":25,"s":6,"id":9874,"u":"knight%20reclaimant_locg","p":74,"h":1,"n":"Knight Reclaimant"},{"c":25,"s":6,"id":9875,"u":"knight%20vigilant_locg","p":94,"h":1,"n":"Knight Vigilant"},{"c":25,"s":6,"id":9876,"u":"magaambyan%20attendant_locg","p":101,"h":1,"n":"Magaambyan Attendant"},{"c":25,"s":6,"id":9877,"u":"scrollmaster_locg","p":113,"h":1,"n":"Scrollmaster"},{"c":25,"s":6,"id":9878,"u":"spellmaster_locg","p":114,"h":1,"n":"Spellmaster"},{"c":25,"s":6,"id":9879,"u":"swordmaster_locg","p":115,"h":1,"n":"Swordmaster"},{"c":25,"s":52,"id":9880,"u":"bright%20lion_lol","p":101,"h":1,"n":"Bright Lion"},{"c":25,"s":7,"id":9881,"u":"captivator_lotgb","p":120,"h":1,"n":"Captivator"},{"c":25,"s":7,"id":9882,"u":"spell%20trickster_lotgb","p":122,"h":1,"n":"Spell Trickster"},{"c":25,"s":7,"id":9883,"u":"wrestler_lotgb","p":126,"h":1,"n":"Wrestler"},{"c":25,"s":48,"id":9884,"u":"aldori%20duelist_lowg","p":35,"h":1,"n":"Aldori Duelist"},{"c":25,"s":48,"id":9885,"u":"hellknight%20armiger_lowg","p":107,"h":1,"n":"Hellknight Armiger"},{"c":25,"s":48,"id":9886,"u":"lastwall%20sentry_lowg","p":47,"h":1,"n":"Lastwall Sentry"},{"c":25,"s":48,"id":9887,"u":"living%20monolith_lowg","p":59,"h":1,"n":"Living Monolith"},{"c":25,"s":48,"id":9888,"u":"magic%20warrior_lowg","p":95,"h":1,"n":"Magic Warrior"},{"c":25,"s":48,"id":9889,"u":"pathfinder%20agent_lowg","p":23,"h":1,"n":"Pathfinder Agent"},{"c":25,"s":48,"id":9890,"u":"runescarred_lowg","p":119,"h":1,"n":"Runescarred"},{"c":25,"s":48,"id":9891,"u":"student%20of%20perfection_lowg","p":83,"h":1,"n":"Student of Perfection"},{"c":25,"s":56,"id":9892,"u":"gray%20gardener_ngd","p":64,"h":1,"n":"Gray Gardener"},{"c":25,"s":38,"id":9893,"u":"oozemorph_sli","p":59,"h":1,"n":"Oozemorph"},{"c":25,"s":49,"id":9894,"u":"cathartic%20mage_som","p":194,"h":1,"n":"Cathartic Mage"},{"c":25,"s":49,"id":9895,"u":"elementalist_som","p":206,"h":1,"n":"Elementalist"},{"c":25,"s":49,"id":9896,"u":"flexible%20caster_som","p":209,"h":1,"n":"Flexible Caster"},{"c":25,"s":49,"id":9897,"u":"geomancer_som","p":212,"h":1,"n":"Geomancer"},{"c":25,"s":49,"id":9898,"u":"magus_som","p":75,"h":1,"n":"Magus"},{"c":25,"s":49,"id":9899,"u":"runelord_som","p":240,"h":1,"n":"Runelord"},{"c":25,"s":49,"id":9900,"u":"shadowcaster_som","p":226,"h":1,"n":"Shadowcaster"},{"c":25,"s":49,"id":9901,"u":"soulforger_som","p":236,"h":1,"n":"Soulforger"},{"c":25,"s":49,"id":9902,"u":"summoner_som","p":76,"h":1,"n":"Summoner"},{"c":25,"s":49,"id":9903,"u":"wellspring%20mage_som","p":248,"h":1,"n":"Wellspring Mage"},{"c":25,"s":57,"id":9904,"u":"folklorist_sot2","p":78,"h":1,"n":"Folklorist"},{"c":25,"s":57,"id":9905,"u":"nantambu%20chime-ringer_sot2","p":79,"h":1,"n":"Nantambu Chime-Ringer"},{"c":2,"s":4,"id":9906,"u":"bola_apg","p":248,"h":1,"n":"Bola"},{"c":2,"s":4,"id":9907,"u":"claw%20blade_apg","p":248,"h":1,"n":"Claw Blade"},{"c":2,"s":4,"id":9908,"u":"khakkara_apg","p":248,"h":1,"n":"Khakkara"},{"c":2,"s":4,"id":9909,"u":"sword%20cane_apg","p":248,"h":1,"n":"Sword Cane"},{"c":2,"s":4,"id":9910,"u":"tengu%20gale%20blade_apg","p":248,"h":1,"n":"Tengu Gale Blade"},{"c":2,"s":4,"id":9911,"u":"wakizashi_apg","p":248,"h":1,"n":"Wakizashi"},{"c":2,"s":9,"id":9912,"u":"aklys_bst","p":85,"h":1,"n":"Aklys"},{"c":2,"s":5,"id":9913,"u":"bastard%20sword_crb","p":280,"h":1,"n":"Bastard Sword"},{"c":2,"s":5,"id":9914,"u":"battle%20axe_crb","p":280,"h":1,"n":"Battle Axe"},{"c":2,"s":5,"id":9915,"u":"blowgun_crb","p":281,"h":1,"n":"Blowgun"},{"c":2,"s":5,"id":9916,"u":"bo%20staff_crb","p":280,"h":1,"n":"Bo Staff"},{"c":2,"s":5,"id":9917,"u":"breastplate_crb","p":275,"h":1,"n":"Breastplate"},{"c":2,"s":5,"id":9918,"u":"buckler_crb","p":277,"h":1,"n":"Buckler"},{"c":2,"s":5,"id":9919,"u":"chain%20mail_crb","p":275,"h":1,"n":"Chain Mail"},{"c":2,"s":5,"id":9920,"u":"chain%20shirt_crb","p":275,"h":1,"n":"Chain Shirt"},{"c":2,"s":5,"id":9921,"u":"clan%20dagger_crb","p":280,"h":1,"n":"Clan Dagger"},{"c":2,"s":5,"id":9922,"u":"club_crb","p":280,"h":1,"n":"Club"},{"c":2,"s":5,"id":9923,"u":"composite%20longbow_crb","p":282,"h":1,"n":"Composite Longbow"},{"c":2,"s":5,"id":9924,"u":"composite%20shortbow_crb","p":282,"h":1,"n":"Composite Shortbow"},{"c":2,"s":5,"id":9925,"u":"crossbow_crb","p":281,"h":1,"n":"Crossbow"},{"c":2,"s":5,"id":9926,"u":"dagger_crb","p":280,"h":1,"n":"Dagger"},{"c":2,"s":5,"id":9927,"u":"dart_crb","p":281,"h":1,"n":"Dart"},{"c":2,"s":5,"id":9928,"u":"dogslicer_crb","p":281,"h":1,"n":"Dogslicer"},{"c":2,"s":5,"id":9929,"u":"dwarven%20war%20axe_crb","p":281,"h":1,"n":"Dwarven War Axe"},{"c":2,"s":5,"id":9930,"u":"elven%20curve%20blade_crb","p":281,"h":1,"n":"Elven Curve Blade"},{"c":2,"s":5,"id":9931,"u":"explorer's%20clothing_crb","p":275,"h":1,"n":"Explorer's Clothing"},{"c":2,"s":5,"id":9932,"u":"falchion_crb","p":280,"h":1,"n":"Falchion"},{"c":2,"s":5,"id":9933,"u":"filcher's%20fork_crb","p":281,"h":1,"n":"Filcher's Fork"},{"c":2,"s":5,"id":9934,"u":"flail_crb","p":280,"h":1,"n":"Flail"},{"c":2,"s":5,"id":9935,"u":"full%20plate_crb","p":275,"h":1,"n":"Full Plate"},{"c":2,"s":5,"id":9936,"u":"gauntlet_crb","p":280,"h":1,"n":"Gauntlet"},{"c":2,"s":5,"id":9937,"u":"glaive_crb","p":280,"h":1,"n":"Glaive"},{"c":2,"s":5,"id":9938,"u":"gnome%20flickmace_crb","p":281,"h":1,"n":"Gnome Flickmace"},{"c":2,"s":5,"id":9939,"u":"gnome%20hooked%20hammer_crb","p":281,"h":1,"n":"Gnome Hooked Hammer"},{"c":2,"s":5,"id":9940,"u":"greataxe_crb","p":280,"h":1,"n":"Greataxe"},{"c":2,"s":5,"id":9941,"u":"greatclub_crb","p":280,"h":1,"n":"Greatclub"},{"c":2,"s":5,"id":9942,"u":"greatpick_crb","p":280,"h":1,"n":"Greatpick"},{"c":2,"s":5,"id":9943,"u":"greatsword_crb","p":280,"h":1,"n":"Greatsword"},{"c":2,"s":5,"id":9944,"u":"guisarme_crb","p":280,"h":1,"n":"Guisarme"},{"c":2,"s":5,"id":9945,"u":"halberd_crb","p":280,"h":1,"n":"Halberd"},{"c":2,"s":5,"id":9946,"u":"half%20plate_crb","p":275,"h":1,"n":"Half Plate"},{"c":2,"s":5,"id":9947,"u":"halfling%20sling%20staff_crb","p":281,"h":1,"n":"Halfling Sling Staff"},{"c":2,"s":5,"id":9948,"u":"hand%20crossbow_crb","p":281,"h":1,"n":"Hand Crossbow"},{"c":2,"s":5,"id":9949,"u":"hatchet_crb","p":280,"h":1,"n":"Hatchet"},{"c":2,"s":5,"id":9950,"u":"heavy%20crossbow_crb","p":281,"h":1,"n":"Heavy Crossbow"},{"c":2,"s":5,"id":9951,"u":"hide_crb","p":275,"h":1,"n":"Hide"},{"c":2,"s":5,"id":9952,"u":"horsechopper_crb","p":281,"h":1,"n":"Horsechopper"},{"c":2,"s":5,"id":9953,"u":"javelin_crb","p":281,"h":1,"n":"Javelin"},{"c":2,"s":5,"id":9954,"u":"kama_crb","p":281,"h":1,"n":"Kama"},{"c":2,"s":5,"id":9955,"u":"katana_crb","p":281,"h":1,"n":"Katana"},{"c":2,"s":5,"id":9956,"u":"katar_crb","p":280,"h":1,"n":"Katar"},{"c":2,"s":5,"id":9957,"u":"kukri_crb","p":281,"h":1,"n":"Kukri"},{"c":2,"s":5,"id":9958,"u":"lance_crb","p":280,"h":1,"n":"Lance"},{"c":2,"s":5,"id":9959,"u":"leather_crb","p":275,"h":1,"n":"Leather"},{"c":2,"s":5,"id":9960,"u":"light%20hammer_crb","p":280,"h":1,"n":"Light Hammer"},{"c":2,"s":5,"id":9961,"u":"light%20mace_crb","p":280,"h":1,"n":"Light Mace"},{"c":2,"s":5,"id":9962,"u":"light%20pick_crb","p":280,"h":1,"n":"Light Pick"},{"c":2,"s":5,"id":9963,"u":"longbow_crb","p":282,"h":1,"n":"Longbow"},{"c":2,"s":5,"id":9964,"u":"longspear_crb","p":280,"h":1,"n":"Longspear"},{"c":2,"s":5,"id":9965,"u":"longsword_crb","p":281,"h":1,"n":"Longsword"},{"c":2,"s":5,"id":9966,"u":"mace_crb","p":280,"h":1,"n":"Mace"},{"c":2,"s":5,"id":9967,"u":"main-gauche_crb","p":281,"h":1,"n":"Main-gauche"},{"c":2,"s":5,"id":9968,"u":"maul_crb","p":281,"h":1,"n":"Maul"},{"c":2,"s":5,"id":9969,"u":"morningstar_crb","p":280,"h":1,"n":"Morningstar"},{"c":2,"s":5,"id":9970,"u":"nunchaku_crb","p":281,"h":1,"n":"Nunchaku"},{"c":2,"s":5,"id":9971,"u":"orc%20knuckle%20dagger_crb","p":281,"h":1,"n":"Orc Knuckle Dagger"},{"c":2,"s":5,"id":9972,"u":"orc%20necksplitter_crb","p":281,"h":1,"n":"Orc Necksplitter"},{"c":2,"s":5,"id":9973,"u":"padded%20armor_crb","p":275,"h":1,"n":"Padded Armor"},{"c":2,"s":5,"id":9974,"u":"pick_crb","p":281,"h":1,"n":"Pick"},{"c":2,"s":5,"id":9975,"u":"ranseur_crb","p":281,"h":1,"n":"Ranseur"},{"c":2,"s":5,"id":9976,"u":"rapier_crb","p":281,"h":1,"n":"Rapier"},{"c":2,"s":5,"id":9977,"u":"sai_crb","p":281,"h":1,"n":"Sai"},{"c":2,"s":5,"id":9978,"u":"sap_crb","p":281,"h":1,"n":"Sap"},{"c":2,"s":5,"id":9979,"u":"sawtooth%20saber_crb","p":281,"h":1,"n":"Sawtooth Saber"},{"c":2,"s":5,"id":9980,"u":"scale%20mail_crb","p":275,"h":1,"n":"Scale Mail"},{"c":2,"s":5,"id":9981,"u":"scimitar_crb","p":281,"h":1,"n":"Scimitar"},{"c":2,"s":5,"id":9982,"u":"scythe_crb","p":281,"h":1,"n":"Scythe"},{"c":2,"s":5,"id":9983,"u":"shield%20boss_crb","p":281,"h":1,"n":"Shield Boss"},{"c":2,"s":5,"id":9984,"u":"shield%20spikes_crb","p":281,"h":1,"n":"Shield Spikes"},{"c":2,"s":5,"id":9985,"u":"shortbow_crb","p":282,"h":1,"n":"Shortbow"},{"c":2,"s":5,"id":9986,"u":"shortsword_crb","p":281,"h":1,"n":"Shortsword"},{"c":2,"s":5,"id":9987,"u":"shuriken_crb","p":281,"h":1,"n":"Shuriken"},{"c":2,"s":5,"id":9988,"u":"sickle_crb","p":280,"h":1,"n":"Sickle"},{"c":2,"s":5,"id":9989,"u":"sling_crb","p":282,"h":1,"n":"Sling"},{"c":2,"s":5,"id":9990,"u":"spear_crb","p":280,"h":1,"n":"Spear"},{"c":2,"s":5,"id":9991,"u":"spiked%20chain_crb","p":281,"h":1,"n":"Spiked Chain"},{"c":2,"s":5,"id":9992,"u":"spiked%20gauntlet_crb","p":280,"h":1,"n":"Spiked Gauntlet"},{"c":2,"s":5,"id":9993,"u":"splint%20mail_crb","p":275,"h":1,"n":"Splint Mail"},{"c":2,"s":5,"id":9994,"u":"staff_crb","p":280,"h":1,"n":"Staff"},{"c":2,"s":5,"id":9995,"u":"starknife_crb","p":281,"h":1,"n":"Starknife"},{"c":2,"s":5,"id":9996,"u":"steel%20shield_crb","p":277,"h":1,"n":"Steel Shield"},{"c":2,"s":5,"id":9997,"u":"studded%20leather_crb","p":275,"h":1,"n":"Studded Leather"},{"c":2,"s":5,"id":9998,"u":"temple%20sword_crb","p":281,"h":1,"n":"Temple Sword"},{"c":2,"s":5,"id":9999,"u":"tower%20shield_crb","p":277,"h":1,"n":"Tower Shield"},{"c":2,"s":5,"id":10000,"u":"trident_crb","p":281,"h":1,"n":"Trident"},{"c":2,"s":5,"id":10001,"u":"war%20flail_crb","p":281,"h":1,"n":"War Flail"},{"c":2,"s":5,"id":10002,"u":"warhammer_crb","p":281,"h":1,"n":"Warhammer"},{"c":2,"s":5,"id":10003,"u":"whip_crb","p":281,"h":1,"n":"Whip"},{"c":2,"s":5,"id":10004,"u":"wooden%20shield_crb","p":277,"h":1,"n":"Wooden Shield"},{"c":2,"s":19,"id":10005,"u":"monkey's%20fist_aoe1","p":78,"h":1,"n":"Monkey's Fist"},{"c":2,"s":19,"id":10006,"u":"nightstick_aoe1","p":78,"h":1,"n":"Nightstick"},{"c":2,"s":27,"id":10007,"u":"rhoka%20sword_av3","p":73,"h":1,"n":"Rhoka Sword"},{"c":2,"s":27,"id":10008,"u":"shauth%20blade_av3","p":73,"h":1,"n":"Shauth Blade"},{"c":2,"s":27,"id":10009,"u":"shauth%20lash_av3","p":73,"h":1,"n":"Shauth Lash"},{"c":2,"s":33,"id":10010,"u":"alchemical%20crossbow_fop","p":56,"h":1,"n":"Alchemical Crossbow"},{"c":2,"s":2,"id":10011,"u":"air%20repeater_g%26g","p":151,"h":1,"n":"Air Repeater"},{"c":2,"s":2,"id":10012,"u":"arquebus_g%26g","p":151,"h":1,"n":"Arquebus"},{"c":2,"s":2,"id":10013,"u":"axe%20musket_g%26g","p":158,"h":1,"n":"Axe Musket"},{"c":2,"s":2,"id":10014,"u":"backpack%20ballista_g%26g","p":62,"h":1,"n":"Backpack Ballista"},{"c":2,"s":2,"id":10015,"u":"backpack%20catapult_g%26g","p":63,"h":1,"n":"Backpack Catapult"},{"c":2,"s":2,"id":10016,"u":"bayonet_g%26g","p":150,"h":1,"n":"Bayonet"},{"c":2,"s":2,"id":10017,"u":"big%20boom%20gun_g%26g","p":157,"h":1,"n":"Big Boom Gun"},{"c":2,"s":2,"id":10018,"u":"black%20powder%20knuckle%20dusters_g%26g","p":158,"h":1,"n":"Black Powder Knuckle Dusters"},{"c":2,"s":2,"id":10019,"u":"blunderbuss_g%26g","p":151,"h":1,"n":"Blunderbuss"},{"c":2,"s":2,"id":10020,"u":"cane%20pistol_g%26g","p":158,"h":1,"n":"Cane Pistol"},{"c":2,"s":2,"id":10021,"u":"clan%20pistol_g%26g","p":151,"h":1,"n":"Clan Pistol"},{"c":2,"s":2,"id":10022,"u":"clockwork%20disguise_g%26g","p":85,"h":1,"n":"Clockwork Disguise"},{"c":2,"s":2,"id":10023,"u":"coat%20pistol_g%26g","p":151,"h":1,"n":"Coat Pistol"},{"c":2,"s":2,"id":10024,"u":"dagger%20pistol_g%26g","p":158,"h":1,"n":"Dagger Pistol"},{"c":2,"s":2,"id":10025,"u":"dart%20umbrella_g%26g","p":63,"h":1,"n":"Dart Umbrella"},{"c":2,"s":2,"id":10026,"u":"double-barreled%20musket_g%26g","p":151,"h":1,"n":"Double-barreled Musket"},{"c":2,"s":2,"id":10027,"u":"double-barreled%20pistol_g%26g","p":151,"h":1,"n":"Double-barreled Pistol"},{"c":2,"s":2,"id":10028,"u":"dragon%20mouth%20pistol_g%26g","p":151,"h":1,"n":"Dragon Mouth Pistol"},{"c":2,"s":2,"id":10029,"u":"dueling%20pistol_g%26g","p":151,"h":1,"n":"Dueling Pistol"},{"c":2,"s":2,"id":10030,"u":"dwarven%20scattergun_g%26g","p":151,"h":1,"n":"Dwarven Scattergun"},{"c":2,"s":2,"id":10031,"u":"explosive%20dogslicer_g%26g","p":158,"h":1,"n":"Explosive Dogslicer"},{"c":2,"s":2,"id":10032,"u":"fire%20lance_g%26g","p":151,"h":1,"n":"Fire Lance"},{"c":2,"s":2,"id":10033,"u":"flingflenser_g%26g","p":151,"h":1,"n":"Flingflenser"},{"c":2,"s":2,"id":10034,"u":"flintlock%20musket_g%26g","p":151,"h":1,"n":"Flintlock Musket"},{"c":2,"s":2,"id":10035,"u":"flintlock%20pistol_g%26g","p":151,"h":1,"n":"Flintlock Pistol"},{"c":2,"s":2,"id":10036,"u":"forked%20bipod_g%26g","p":150,"h":1,"n":"Forked Bipod"},{"c":2,"s":2,"id":10037,"u":"gnome%20amalgam%20musket_g%26g","p":158,"h":1,"n":"Gnome Amalgam Musket"},{"c":2,"s":2,"id":10038,"u":"gun%20sword_g%26g","p":158,"h":1,"n":"Gun Sword"},{"c":2,"s":2,"id":10039,"u":"hammer%20gun_g%26g","p":158,"h":1,"n":"Hammer Gun"},{"c":2,"s":2,"id":10040,"u":"hand%20cannon_g%26g","p":151,"h":1,"n":"Hand Cannon"},{"c":2,"s":2,"id":10041,"u":"harmona%20gun_g%26g","p":151,"h":1,"n":"Harmona Gun"},{"c":2,"s":2,"id":10042,"u":"heavy%20power%20suit_g%26g","p":16,"h":1,"n":"Heavy Power Suit"},{"c":2,"s":2,"id":10043,"u":"injection%20spear_g%26g","p":63,"h":1,"n":"Injection Spear"},{"c":2,"s":2,"id":10044,"u":"jezail_g%26g","p":151,"h":1,"n":"Jezail"},{"c":2,"s":2,"id":10045,"u":"knuckle%20duster_g%26g","p":150,"h":1,"n":"Knuckle Duster"},{"c":2,"s":2,"id":10046,"u":"long%20air%20repeater_g%26g","p":151,"h":1,"n":"Long Air Repeater"},{"c":2,"s":2,"id":10047,"u":"mace%20multipistol_g%26g","p":158,"h":1,"n":"Mace Multipistol"},{"c":2,"s":2,"id":10048,"u":"mithral%20tree_g%26g","p":151,"h":1,"n":"Mithral Tree"},{"c":2,"s":2,"id":10049,"u":"pantograph%20gauntlet_g%26g","p":63,"h":1,"n":"Pantograph Gauntlet"},{"c":2,"s":2,"id":10050,"u":"pepperbox_g%26g","p":151,"h":1,"n":"Pepperbox"},{"c":2,"s":2,"id":10051,"u":"piercing%20wind_g%26g","p":158,"h":1,"n":"Piercing Wind"},{"c":2,"s":2,"id":10052,"u":"power%20suit_g%26g","p":16,"h":1,"n":"Power Suit"},{"c":2,"s":2,"id":10053,"u":"rapier%20pistol_g%26g","p":158,"h":1,"n":"Rapier Pistol"},{"c":2,"s":2,"id":10054,"u":"reinforced%20stock_g%26g","p":150,"h":1,"n":"Reinforced Stock"},{"c":2,"s":2,"id":10055,"u":"repeating%20crossbow_g%26g","p":63,"h":1,"n":"Repeating Crossbow"},{"c":2,"s":2,"id":10056,"u":"repeating%20hand%20crossbow_g%26g","p":63,"h":1,"n":"Repeating Hand Crossbow"},{"c":2,"s":2,"id":10057,"u":"repeating%20heavy%20crossbow_g%26g","p":63,"h":1,"n":"Repeating Heavy Crossbow"},{"c":2,"s":2,"id":10058,"u":"slide%20pistol_g%26g","p":151,"h":1,"n":"Slide Pistol"},{"c":2,"s":2,"id":10059,"u":"spoon%20gun_g%26g","p":157,"h":1,"n":"Spoon Gun"},{"c":2,"s":2,"id":10060,"u":"subterfuge%20suit_g%26g","p":16,"h":1,"n":"Subterfuge Suit"},{"c":2,"s":2,"id":10061,"u":"three%20peaked%20tree_g%26g","p":158,"h":1,"n":"Three Peaked Tree"},{"c":2,"s":2,"id":10062,"u":"umbrella%20injector_g%26g","p":64,"h":1,"n":"Umbrella Injector"},{"c":2,"s":1,"id":10063,"u":"adze_loag","p":139,"h":1,"n":"Adze"},{"c":2,"s":1,"id":10064,"u":"buugeng_loag","p":139,"h":1,"n":"Buugeng"},{"c":2,"s":1,"id":10065,"u":"fangwire_loag","p":139,"h":1,"n":"Fangwire"},{"c":2,"s":1,"id":10066,"u":"hand%20adze_loag","p":139,"h":1,"n":"Hand Adze"},{"c":2,"s":1,"id":10067,"u":"rungu_loag","p":139,"h":1,"n":"Rungu"},{"c":2,"s":1,"id":10068,"u":"taw%20launcher_loag","p":139,"h":1,"n":"Taw Launcher"},{"c":2,"s":1,"id":10069,"u":"thunder%20sling_loag","p":139,"h":1,"n":"Thunder Sling"},{"c":2,"s":1,"id":10070,"u":"tricky%20pick_loag","p":139,"h":1,"n":"Tricky Pick"},{"c":2,"s":1,"id":10071,"u":"whip%20claw_loag","p":139,"h":1,"n":"Whip Claw"},{"c":2,"s":1,"id":10072,"u":"wish%20blade_loag","p":139,"h":1,"n":"Wish Blade"},{"c":2,"s":1,"id":10073,"u":"wish%20knife_loag","p":139,"h":1,"n":"Wish Knife"},{"c":2,"s":6,"id":10074,"u":"fauchard_locg","p":92,"h":1,"n":"Fauchard"},{"c":2,"s":6,"id":10075,"u":"hellknight%20plate_locg","p":80,"h":1,"n":"Hellknight Plate"},{"c":2,"s":6,"id":10076,"u":"scourge_locg","p":80,"h":1,"n":"Scourge"},{"c":2,"s":51,"id":10077,"u":"bladed%20scarf_logm","p":120,"h":1,"n":"Bladed Scarf"},{"c":2,"s":51,"id":10078,"u":"fighting%20fan_logm","p":120,"h":1,"n":"Fighting Fan"},{"c":2,"s":51,"id":10079,"u":"khopesh_logm","p":120,"h":1,"n":"Khopesh"},{"c":2,"s":51,"id":10080,"u":"machete_logm","p":120,"h":1,"n":"Machete"},{"c":2,"s":51,"id":10081,"u":"mambele_logm","p":120,"h":1,"n":"Mambele"},{"c":2,"s":51,"id":10082,"u":"meteor%20hammer_logm","p":120,"h":1,"n":"Meteor Hammer"},{"c":2,"s":51,"id":10083,"u":"naginata_logm","p":120,"h":1,"n":"Naginata"},{"c":2,"s":51,"id":10084,"u":"nine-ring%20sword_logm","p":120,"h":1,"n":"Nine-Ring Sword"},{"c":2,"s":51,"id":10085,"u":"polytool_logm","p":120,"h":1,"n":"Polytool"},{"c":2,"s":51,"id":10086,"u":"tekko-kagi_logm","p":120,"h":1,"n":"Tekko-Kagi"},{"c":2,"s":51,"id":10087,"u":"urumi_logm","p":120,"h":1,"n":"Urumi"},{"c":2,"s":51,"id":10088,"u":"war%20razor_logm","p":120,"h":1,"n":"War Razor"},{"c":2,"s":47,"id":10089,"u":"boarding%20pike_lopsg","p":81,"h":1,"n":"Boarding Pike"},{"c":2,"s":47,"id":10090,"u":"combat%20grapnel_lopsg","p":81,"h":1,"n":"Combat Grapnel"},{"c":2,"s":47,"id":10091,"u":"stiletto%20pen_lopsg","p":81,"h":1,"n":"Stiletto Pen"},{"c":2,"s":7,"id":10092,"u":"asp%20coil_lotgb","p":107,"h":1,"n":"Asp Coil"},{"c":2,"s":7,"id":10093,"u":"butchering%20axe_lotgb","p":107,"h":1,"n":"Butchering Axe"},{"c":2,"s":7,"id":10094,"u":"chakram_lotgb","p":107,"h":1,"n":"Chakram"},{"c":2,"s":7,"id":10095,"u":"dueling%20spear_lotgb","p":107,"h":1,"n":"Dueling Spear"},{"c":2,"s":7,"id":10096,"u":"elven%20branched%20spear_lotgb","p":107,"h":1,"n":"Elven Branched Spear"},{"c":2,"s":7,"id":10097,"u":"hongali%20hornbow_lotgb","p":107,"h":1,"n":"Hongali Hornbow"},{"c":2,"s":7,"id":10098,"u":"piranha%20kiss_lotgb","p":107,"h":1,"n":"Piranha Kiss"},{"c":2,"s":7,"id":10099,"u":"sickle-saber_lotgb","p":107,"h":1,"n":"Sickle-Saber"},{"c":2,"s":7,"id":10100,"u":"spiral%20rapier_lotgb","p":107,"h":1,"n":"Spiral Rapier"},{"c":2,"s":7,"id":10101,"u":"switchscythe_lotgb","p":107,"h":1,"n":"Switchscythe"},{"c":2,"s":7,"id":10102,"u":"throwing%20knife_lotgb","p":107,"h":1,"n":"Throwing Knife"},{"c":2,"s":7,"id":10103,"u":"thundermace_lotgb","p":107,"h":1,"n":"Thundermace"},{"c":2,"s":7,"id":10104,"u":"tonfa_lotgb","p":107,"h":1,"n":"Tonfa"},{"c":2,"s":7,"id":10105,"u":"tri-bladed%20katar_lotgb","p":107,"h":1,"n":"Tri-bladed Katar"},{"c":2,"s":48,"id":10106,"u":"aldori%20dueling%20sword_lowg","p":28,"h":1,"n":"Aldori Dueling Sword"},{"c":60,"s":5,"id":10107,"u":"blinded_crb","p":618,"h":1,"n":"Blinded"},{"c":60,"s":5,"id":10108,"u":"broken_crb","p":618,"h":1,"n":"Broken"},{"c":60,"s":5,"id":10109,"u":"clumsy_crb","p":618,"h":1,"n":"Clumsy"},{"c":60,"s":5,"id":10110,"u":"concealed_crb","p":618,"h":1,"n":"Concealed"},{"c":60,"s":5,"id":10111,"u":"confused_crb","p":618,"h":1,"n":"Confused"},{"c":60,"s":5,"id":10112,"u":"controlled_crb","p":618,"h":1,"n":"Controlled"},{"c":60,"s":5,"id":10113,"u":"dazzled_crb","p":619,"h":1,"n":"Dazzled"},{"c":60,"s":5,"id":10114,"u":"deafened_crb","p":619,"h":1,"n":"Deafened"},{"c":60,"s":5,"id":10115,"u":"doomed_crb","p":619,"h":1,"n":"Doomed"},{"c":60,"s":5,"id":10116,"u":"drained_crb","p":619,"h":1,"n":"Drained"},{"c":60,"s":5,"id":10117,"u":"dying_crb","p":619,"h":1,"n":"Dying"},{"c":60,"s":5,"id":10118,"u":"encumbered_crb","p":619,"h":1,"n":"Encumbered"},{"c":60,"s":5,"id":10119,"u":"enfeebled_crb","p":619,"h":1,"n":"Enfeebled"},{"c":60,"s":5,"id":10120,"u":"fascinated_crb","p":619,"h":1,"n":"Fascinated"},{"c":60,"s":5,"id":10121,"u":"fatigued_crb","p":620,"h":1,"n":"Fatigued"},{"c":60,"s":5,"id":10122,"u":"flat-footed_crb","p":620,"h":1,"n":"Flat-Footed"},{"c":60,"s":5,"id":10123,"u":"fleeing_crb","p":620,"h":1,"n":"Fleeing"},{"c":60,"s":5,"id":10124,"u":"friendly_crb","p":620,"h":1,"n":"Friendly"},{"c":60,"s":5,"id":10125,"u":"frightened_crb","p":620,"h":1,"n":"Frightened"},{"c":60,"s":5,"id":10126,"u":"grabbed_crb","p":620,"h":1,"n":"Grabbed"},{"c":60,"s":5,"id":10127,"u":"helpful_crb","p":620,"h":1,"n":"Helpful"},{"c":60,"s":5,"id":10128,"u":"hidden_crb","p":620,"h":1,"n":"Hidden"},{"c":60,"s":5,"id":10129,"u":"hostile_crb","p":620,"h":1,"n":"Hostile"},{"c":60,"s":5,"id":10130,"u":"immobilized_crb","p":620,"h":1,"n":"Immobilized"},{"c":60,"s":5,"id":10131,"u":"indifferent_crb","p":620,"h":1,"n":"Indifferent"},{"c":60,"s":5,"id":10132,"u":"invisible_crb","p":620,"h":1,"n":"Invisible"},{"c":60,"s":5,"id":10133,"u":"observed_crb","p":621,"h":1,"n":"Observed"},{"c":60,"s":5,"id":10134,"u":"paralyzed_crb","p":621,"h":1,"n":"Paralyzed"},{"c":60,"s":5,"id":10135,"u":"persistent%20damage_crb","p":621,"h":1,"n":"Persistent Damage"},{"c":60,"s":5,"id":10136,"u":"petrified_crb","p":621,"h":1,"n":"Petrified"},{"c":60,"s":5,"id":10137,"u":"prone_crb","p":621,"h":1,"n":"Prone"},{"c":60,"s":5,"id":10138,"u":"quickened_crb","p":622,"h":1,"n":"Quickened"},{"c":60,"s":5,"id":10139,"u":"restrained_crb","p":622,"h":1,"n":"Restrained"},{"c":60,"s":5,"id":10140,"u":"sickened_crb","p":622,"h":1,"n":"Sickened"},{"c":60,"s":5,"id":10141,"u":"slowed_crb","p":622,"h":1,"n":"Slowed"},{"c":60,"s":5,"id":10142,"u":"stunned_crb","p":622,"h":1,"n":"Stunned"},{"c":60,"s":5,"id":10143,"u":"stupefied_crb","p":622,"h":1,"n":"Stupefied"},{"c":60,"s":5,"id":10144,"u":"unconscious_crb","p":622,"h":1,"n":"Unconscious"},{"c":60,"s":5,"id":10145,"u":"undetected_crb","p":623,"h":1,"n":"Undetected"},{"c":60,"s":5,"id":10146,"u":"unfriendly_crb","p":623,"h":1,"n":"Unfriendly"},{"c":60,"s":5,"id":10147,"u":"unnoticed_crb","p":623,"h":1,"n":"Unnoticed"},{"c":60,"s":5,"id":10148,"u":"wounded_crb","p":623,"h":1,"n":"Wounded"},{"c":63,"s":9,"id":10149,"u":"ghast%20fever_bst","p":169,"h":1,"n":"Ghast Fever"},{"c":63,"s":9,"id":10150,"u":"ghoul%20fever_bst","p":168,"h":1,"n":"Ghoul Fever"},{"c":63,"s":12,"id":10151,"u":"blinding%20sickness_gmg","p":119,"h":1,"n":"Blinding Sickness"},{"c":63,"s":12,"id":10152,"u":"bog%20rot_gmg","p":118,"h":1,"n":"Bog Rot"},{"c":63,"s":12,"id":10153,"u":"bone%20chill_gmg","p":118,"h":1,"n":"Bone Chill"},{"c":63,"s":12,"id":10154,"u":"brain%20worms_gmg","p":119,"h":1,"n":"Brain Worms"},{"c":63,"s":12,"id":10155,"u":"bubonic%20plague_gmg","p":118,"h":1,"n":"Bubonic Plague"},{"c":63,"s":12,"id":10156,"u":"chocking%20death_gmg","p":118,"h":1,"n":"Chocking Death"},{"c":63,"s":12,"id":10157,"u":"malaria_gmg","p":118,"h":1,"n":"Malaria"},{"c":63,"s":12,"id":10158,"u":"nightmare%20fever_gmg","p":119,"h":1,"n":"Nightmare Fever"},{"c":63,"s":12,"id":10159,"u":"scarlet%20fever_gmg","p":118,"h":1,"n":"Scarlet Fever"},{"c":63,"s":12,"id":10160,"u":"scarlet%20leprosy_gmg","p":118,"h":1,"n":"Scarlet Leprosy"},{"c":63,"s":12,"id":10161,"u":"sewer%20haze_gmg","p":119,"h":1,"n":"Sewer Haze"},{"c":63,"s":12,"id":10162,"u":"tetanus_gmg","p":118,"h":1,"n":"Tetanus"},{"c":63,"s":12,"id":10163,"u":"tuberculosis_gmg","p":118,"h":1,"n":"Tuberculosis"},{"c":63,"s":49,"id":10164,"u":"soulforged%20corruption_som","p":234,"h":1,"n":"Soulforged Corruption"},{"c":62,"s":9,"id":10165,"u":"curse%20of%20the%20werecreature_bst","p":329,"h":1,"n":"Curse of the Werecreature"},{"c":62,"s":12,"id":10166,"u":"coward's%20roots_gmg","p":116,"h":1,"n":"Coward's Roots"},{"c":62,"s":12,"id":10167,"u":"curse%20of%20nightmares_gmg","p":116,"h":1,"n":"Curse of Nightmares"},{"c":62,"s":12,"id":10168,"u":"curse%20of%20slumber_gmg","p":117,"h":1,"n":"Curse of Slumber"},{"c":62,"s":12,"id":10169,"u":"curse%20of%20the%20ravenous_gmg","p":116,"h":1,"n":"Curse of the Ravenous"},{"c":62,"s":12,"id":10170,"u":"grave%20curse_gmg","p":117,"h":1,"n":"Grave Curse"},{"c":62,"s":12,"id":10171,"u":"oath%20of%20the%20flesh_gmg","p":117,"h":1,"n":"Oath of the Flesh"},{"c":62,"s":12,"id":10172,"u":"reviled%20of%20nature_gmg","p":117,"h":1,"n":"Reviled of Nature"},{"c":62,"s":12,"id":10173,"u":"reviling%20earth_gmg","p":117,"h":1,"n":"Reviling Earth"},{"c":62,"s":12,"id":10174,"u":"sellsword's%20folly_gmg","p":117,"h":1,"n":"Sellsword's Folly"},{"c":62,"s":12,"id":10175,"u":"slayer's%20haunt_gmg","p":116,"h":1,"n":"Slayer's Haunt"},{"c":62,"s":12,"id":10176,"u":"spirit%20anchor_gmg","p":117,"h":1,"n":"Spirit Anchor"},{"c":62,"s":12,"id":10177,"u":"sword%20of%20anathema_gmg","p":117,"h":1,"n":"Sword of Anathema"},{"c":62,"s":12,"id":10178,"u":"theft%20of%20thought_gmg","p":116,"h":1,"n":"Theft of Thought"},{"c":62,"s":12,"id":10179,"u":"thief's%20retribution_gmg","p":117,"h":1,"n":"Thief's Retribution"},{"c":62,"s":12,"id":10180,"u":"unending%20thirst_gmg","p":117,"h":1,"n":"Unending Thirst"},{"c":62,"s":12,"id":10181,"u":"wizard's%20ward_gmg","p":116,"h":1,"n":"Wizard's Ward"},{"c":10,"s":5,"id":10183,"u":"bookref-quick,0,young%20animal%20companions,0","p":214,"h":1,"n":"Young Animal Companions"},{"c":10,"s":5,"id":10184,"u":"bookref-quick,0,mature%20animal%20companions,0","p":214,"h":1,"n":"Mature Animal Companions"},{"c":10,"s":5,"id":10185,"u":"bookref-quick,0,nimble%20animal%20companions,0","p":214,"h":1,"n":"Nimble Animal Companions"},{"c":10,"s":5,"id":10186,"u":"bookref-quick,0,savage%20animal%20companions,0","p":214,"h":1,"n":"Savage Animal Companions"},{"c":10,"s":5,"id":10187,"u":"bookref-quick,0,specialized%20animal%20companions,0","p":217,"h":1,"n":"Specialized Animal Companions"},{"c":10,"s":5,"id":10188,"u":"bookref-quick,0,animal%20companions,0","p":214,"h":1,"n":"Animal Companions"},{"c":10,"s":5,"id":10189,"u":"bookref-quick,0,spellcasting%20archetypes,0","p":219,"h":1,"n":"Spellcasting Archetypes"},{"c":10,"s":5,"id":10190,"u":"bookref-quick,0,archetypes,0","p":219,"h":1,"n":"Archetypes"},{"c":10,"s":5,"id":10191,"u":"bookref-quick,0,character%20creation,0","p":19,"h":1,"n":"Character Creation"},{"c":10,"s":5,"id":10192,"u":"bookref-quick,0,characters%20with%20disabilities,0","p":487,"h":1,"n":"Characters With Disabilities"},{"c":10,"s":5,"id":10193,"u":"bookref-quick,0,familiars,0","p":217,"h":1,"n":"Familiars"},{"c":10,"s":5,"id":10194,"u":"bookref-quick,0,leveling%20up,0","p":31,"h":1,"n":"Leveling Up"},{"c":10,"s":5,"id":10196,"u":"bookref-quick,1,activating%20items,0","p":532,"h":1,"n":"Activating Items"},{"c":10,"s":5,"id":10197,"u":"bookref-quick,1,animals,0","p":294,"h":1,"n":"Animals"},{"c":10,"s":5,"id":10198,"u":"bookref-quick,1,armor,0","p":274,"h":1,"n":"Armor"},{"c":10,"s":5,"id":10199,"u":"bookref-quick,1,carrying%20and%20using%20items,0","p":271,"h":1,"n":"Carrying and Using Items"},{"c":10,"s":5,"id":10200,"u":"bookref-quick,1,coins%20and%20currency,0","p":271,"h":1,"n":"Coins and Currency"},{"c":10,"s":5,"id":10201,"u":"bookref-quick,1,constant%20abilities,0","p":531,"h":1,"n":"Constant Abilities"},{"c":10,"s":5,"id":10202,"u":"bookref-quick,1,formulas,0","p":293,"h":1,"n":"Formulas"},{"c":10,"s":5,"id":10203,"u":"bookref-quick,1,investing%20magic%20items,0","p":531,"h":1,"n":"Investing Magic Items"},{"c":10,"s":5,"id":10204,"u":"bookref-quick,1,item%20damage,0","p":272,"h":1,"n":"Item Damage"},{"c":10,"s":5,"id":10205,"u":"bookref-quick,1,item%20level,0","p":271,"h":1,"n":"Item Level"},{"c":10,"s":5,"id":10206,"u":"bookref-quick,1,items%20and%20sizes,0","p":295,"h":1,"n":"Items and Sizes"},{"c":10,"s":5,"id":10207,"u":"bookref-quick,1,price,0","p":271,"h":1,"n":"Price"},{"c":10,"s":5,"id":10208,"u":"bookref-quick,1,transferring%20runes,0","p":580,"h":1,"n":"Transferring Runes"},{"c":10,"s":5,"id":10209,"u":"bookref-quick,1,runes,0","p":580,"h":1,"n":"Runes"},{"c":10,"s":5,"id":10210,"u":"bookref-quick,1,crafting%20a%20scroll,0","p":565,"h":1,"n":"Crafting a Scroll"},{"c":10,"s":5,"id":10211,"u":"bookref-quick,1,scrolls,0","p":564,"h":1,"n":"Scrolls"},{"c":10,"s":5,"id":10212,"u":"bookref-quick,1,services,0","p":294,"h":1,"n":"Services"},{"c":10,"s":5,"id":10213,"u":"bookref-quick,1,shields,0","p":277,"h":1,"n":"Shields"},{"c":10,"s":5,"id":10214,"u":"bookref-quick,1,shoddy%20items,0","p":273,"h":1,"n":"Shoddy Items"},{"c":10,"s":5,"id":10215,"u":"bookref-quick,1,staves,0","p":592,"h":1,"n":"Staves"},{"c":10,"s":5,"id":10216,"u":"bookref-quick,1,wands,0","p":597,"h":1,"n":"Wands"},{"c":10,"s":5,"id":10217,"u":"bookref-quick,1,reload,0","p":279,"h":1,"n":"Reload"},{"c":10,"s":5,"id":10218,"u":"bookref-quick,1,weapons,0","p":278,"h":1,"n":"Weapons"},{"c":10,"s":5,"id":10220,"u":"bookref-quick,2,cantrips,0","p":300,"h":1,"n":"Cantrips"},{"c":10,"s":5,"id":10221,"u":"bookref-quick,2,casting%20spells,0","p":302,"h":1,"n":"Casting Spells"},{"c":10,"s":5,"id":10222,"u":"bookref-quick,2,disbelieving%20illusions,0","p":298,"h":1,"n":"Disbelieving Illusions"},{"c":10,"s":5,"id":10223,"u":"bookref-quick,2,durations,0","p":304,"h":1,"n":"Durations"},{"c":10,"s":5,"id":10224,"u":"bookref-quick,2,focus%20spells,0","p":300,"h":1,"n":"Focus Spells"},{"c":10,"s":5,"id":10225,"u":"bookref-quick,2,hostile%20actions,0","p":305,"h":1,"n":"Hostile Actions"},{"c":10,"s":5,"id":10226,"u":"bookref-quick,2,identifying%20spells,0","p":305,"h":1,"n":"Identifying Spells"},{"c":10,"s":5,"id":10227,"u":"bookref-quick,2,innate%20spells,0","p":302,"h":1,"n":"Innate Spells"},{"c":10,"s":5,"id":10228,"u":"bookref-quick,2,ranges%2c%20areas%2c%20and%20targets,0","p":304,"h":1,"n":"Ranges, Areas, and Targets"},{"c":10,"s":5,"id":10229,"u":"bookref-quick,2,reading%20spells,0","p":306,"h":1,"n":"Reading Spells"},{"c":10,"s":5,"id":10230,"u":"bookref-quick,2,casting%20rituals,0","p":408,"h":1,"n":"Casting Rituals"},{"c":10,"s":5,"id":10231,"u":"bookref-quick,2,secondary%20checks,0","p":408,"h":1,"n":"Secondary Checks"},{"c":10,"s":5,"id":10232,"u":"bookref-quick,2,effect,0","p":409,"h":1,"n":"Effect"},{"c":10,"s":5,"id":10233,"u":"bookref-quick,2,rituals,0","p":408,"h":1,"n":"Rituals"},{"c":10,"s":5,"id":10234,"u":"bookref-quick,2,saving%20throws,0","p":305,"h":1,"n":"Saving Throws"},{"c":10,"s":5,"id":10235,"u":"bookref-quick,2,setting%20triggers,0","p":305,"h":1,"n":"Setting Triggers"},{"c":10,"s":5,"id":10236,"u":"bookref-quick,2,spell%20attacks,0","p":305,"h":1,"n":"Spell Attacks"},{"c":10,"s":5,"id":10237,"u":"bookref-quick,2,spell%20slots,0","p":298,"h":1,"n":"Spell Slots"},{"c":10,"s":5,"id":10238,"u":"bookref-quick,2,walls,0","p":306,"h":1,"n":"Walls"},{"c":10,"s":5,"id":10240,"u":"bookref-quick,3,actions,0","p":461,"h":1,"n":"Actions"},{"c":10,"s":5,"id":10241,"u":"bookref-quick,3,afflictions,0","p":457,"h":1,"n":"Afflictions"},{"c":10,"s":5,"id":10242,"u":"bookref-quick,3,checks,0","p":443,"h":1,"n":"Checks"},{"c":10,"s":5,"id":10243,"u":"bookref-quick,3,concealment%20and%20invisibility,0","p":467,"h":1,"n":"Concealment and Invisibility"},{"c":10,"s":5,"id":10244,"u":"bookref-quick,3,condition%20values,0","p":618,"h":1,"n":"Condition Values"},{"c":10,"s":5,"id":10245,"u":"bookref-quick,3,conditions,0","p":453,"h":1,"n":"Conditions"},{"c":10,"s":5,"id":10246,"u":"bookref-quick,3,counteracting,0","p":458,"h":1,"n":"Counteracting"},{"c":10,"s":5,"id":10247,"u":"bookref-quick,3,cover,0","p":477,"h":1,"n":"Cover"},{"c":10,"s":5,"id":10248,"u":"bookref-quick,3,damage,0","p":450,"h":1,"n":"Damage"},{"c":10,"s":5,"id":10249,"u":"bookref-quick,3,downtime%20mode,0","p":481,"h":1,"n":"Downtime Mode"},{"c":10,"s":5,"id":10250,"u":"bookref-quick,3,areas,0","p":456,"h":1,"n":"Areas"},{"c":10,"s":5,"id":10251,"u":"bookref-quick,3,line%20of%20effect,0","p":457,"h":1,"n":"Line of Effect"},{"c":10,"s":5,"id":10252,"u":"bookref-quick,3,line%20of%20sight,0","p":457,"h":1,"n":"Line of Sight"},{"c":10,"s":5,"id":10253,"u":"bookref-quick,3,effects,0","p":453,"h":1,"n":"Effects"},{"c":10,"s":5,"id":10254,"u":"bookref-quick,3,forced%20movement,0","p":475,"h":1,"n":"Forced Movement"},{"c":10,"s":5,"id":10255,"u":"bookref-quick,3,terrain,0","p":475,"h":1,"n":"Terrain"},{"c":10,"s":5,"id":10256,"u":"bookref-quick,3,drowning%20and%20suffocating,0","p":478,"h":1,"n":"Drowning and Suffocating"},{"c":10,"s":5,"id":10257,"u":"bookref-quick,3,aquatic%20combat,0","p":478,"h":1,"n":"Aquatic Combat"},{"c":10,"s":5,"id":10258,"u":"bookref-quick,3,encounter%20mode,0","p":468,"h":1,"n":"Encounter Mode"},{"c":10,"s":5,"id":10259,"u":"bookref-quick,3,rest%20and%20daily%20preparations,0","p":480,"h":1,"n":"Rest and Daily Preparations"},{"c":10,"s":5,"id":10260,"u":"bookref-quick,3,exploration%20mode,0","p":479,"h":1,"n":"Exploration Mode"},{"c":10,"s":5,"id":10261,"u":"bookref-quick,3,flanking,0","p":476,"h":1,"n":"Flanking"},{"c":10,"s":5,"id":10262,"u":"bookref-quick,3,game%20conventions,0","p":444,"h":1,"n":"Game Conventions"},{"c":10,"s":5,"id":10263,"u":"bookref-quick,3,hero%20points,0","p":467,"h":1,"n":"Hero Points"},{"c":10,"s":5,"id":10264,"u":"bookref-quick,3,hit%20points%2c%20healing%2c%20and%20dying,0","p":459,"h":1,"n":"Hit Points, Healing, and Dying"},{"c":10,"s":5,"id":10265,"u":"bookref-quick,3,making%20choices,0","p":443,"h":1,"n":"Making Choices"},{"c":10,"s":5,"id":10266,"u":"bookref-quick,3,falling,0","p":463,"h":1,"n":"Falling"},{"c":10,"s":5,"id":10267,"u":"bookref-quick,3,movement,0","p":463,"h":1,"n":"Movement"},{"c":10,"s":5,"id":10268,"u":"bookref-quick,3,overriding%20conditions,0","p":618,"h":1,"n":"Overriding Conditions"},{"c":10,"s":5,"id":10269,"u":"bookref-quick,3,perception,0","p":464,"h":1,"n":"Perception"},{"c":10,"s":5,"id":10270,"u":"bookref-quick,3,special%20checks,0","p":450,"h":1,"n":"Special Checks"},{"c":10,"s":5,"id":10271,"u":"bookref-quick,3,spell%20attack%20rolls,0","p":447,"h":1,"n":"Spell Attack Rolls"},{"c":10,"s":5,"id":10272,"u":"bookref-quick,3,specific%20checks,0","p":446,"h":1,"n":"Specific Checks"},{"c":10,"s":5,"id":10274,"u":"bookref-quick,4,simple%20dcs,0","p":503,"h":1,"n":"Simple DCs"},{"c":10,"s":5,"id":10275,"u":"bookref-quick,4,level-based%20dcs,0","p":503,"h":1,"n":"Level-Based DCs"},{"c":10,"s":5,"id":10276,"u":"bookref-quick,4,adjusting%20difficulty,0","p":503,"h":1,"n":"Adjusting Difficulty"},{"c":10,"s":5,"id":10277,"u":"bookref-quick,4,minimum%20proficiency,0","p":504,"h":1,"n":"Minimum Proficiency"},{"c":10,"s":5,"id":10278,"u":"bookref-quick,4,difficulty%20classes,0","p":503,"h":1,"n":"Difficulty Classes"},{"c":10,"s":5,"id":10279,"u":"bookref-quick,4,difficulty%20classes,0","p":503,"h":1,"n":"DCs"},{"c":10,"s":12,"id":10280,"u":"bookref-quick,4,drugs,0","p":120,"h":1,"n":"Drugs"},{"c":10,"s":5,"id":10281,"u":"bookref-quick,4,crowds,0","p":514,"h":1,"n":"Crowds"},{"c":10,"s":5,"id":10282,"u":"bookref-quick,4,environment,0","p":512,"h":1,"n":"Environment"},{"c":10,"s":5,"id":10283,"u":"bookref-quick,4,hazards,0","p":520,"h":1,"n":"Hazards"},{"c":10,"s":5,"id":10284,"u":"bookref-quick,4,planning%20a%20campaign,0","p":483,"h":1,"n":"Planning a Campaign"},{"c":10,"s":5,"id":10285,"u":"bookref-quick,4,building%20encounters,0","p":488,"h":1,"n":"Building Encounters"},{"c":10,"s":5,"id":10286,"u":"bookref-quick,4,preparing%20an%20adventure,0","p":486,"h":1,"n":"Preparing an Adventure"},{"c":10,"s":5,"id":10287,"u":"bookref-quick,4,rewards,0","p":507,"h":1,"n":"Rewards"},{"c":10,"s":5,"id":10288,"u":"bookref-quick,4,running%20modes%20of%20play,0","p":493,"h":1,"n":"Running Modes of Play"},{"c":10,"s":5,"id":10289,"u":"bookref-quick,4,running%20a%20game%20session,0","p":489,"h":1,"n":"Running a Game Session"},{"c":11,"s":12,"id":10290,"u":"alternative%20scores_gmg","p":183,"h":1,"n":"Alternative Scores"},{"c":11,"s":12,"id":10291,"u":"ancestry%20paragon_gmg","p":194,"h":1,"n":"Ancestry Paragon"},{"c":11,"s":12,"id":10292,"u":"automatic%20bonus%20progression_gmg","p":196,"h":1,"n":"Automatic Bonus Progression"},{"c":11,"s":12,"id":10293,"u":"chases_gmg","p":156,"h":1,"n":"Chases"},{"c":11,"s":12,"id":10294,"u":"deep%20backgrounds_gmg","p":186,"h":1,"n":"Deep Backgrounds"},{"c":11,"s":12,"id":10295,"u":"dual-class%20pcs_gmg","p":192,"h":1,"n":"Dual-Class PCs"},{"c":11,"s":12,"id":10296,"u":"duels_gmg","p":166,"h":1,"n":"Duels"},{"c":11,"s":12,"id":10297,"u":"extreme%20good%20and%20evil_gmg","p":184,"h":1,"n":"Extreme Good and Evil"},{"c":11,"s":12,"id":10298,"u":"free%20archetype_gmg","p":194,"h":1,"n":"Free Archetype"},{"c":11,"s":12,"id":10299,"u":"gradual%20ability%20boosts_gmg","p":182,"h":1,"n":"Gradual Ability Boosts"},{"c":11,"s":12,"id":10300,"u":"hexploration_gmg","p":170,"h":1,"n":"Hexploration"},{"c":11,"s":12,"id":10301,"u":"high-quality_gmg","p":197,"h":1,"n":"High-Quality"},{"c":11,"s":12,"id":10302,"u":"incremental%20alignment_gmg","p":184,"h":1,"n":"Incremental Alignment"},{"c":11,"s":12,"id":10303,"u":"infiltration_gmg","p":160,"h":1,"n":"Infiltration"},{"c":11,"s":12,"id":10304,"u":"influence_gmg","p":151,"h":1,"n":"Influence"},{"c":11,"s":12,"id":10305,"u":"leadership_gmg","p":168,"h":1,"n":"Leadership"},{"c":11,"s":12,"id":10306,"u":"level%200%20characters_gmg","p":195,"h":1,"n":"Level 0 Characters"},{"c":11,"s":12,"id":10307,"u":"moral%20intentions_gmg","p":185,"h":1,"n":"Moral Intentions"},{"c":11,"s":12,"id":10308,"u":"no%20alignment_gmg","p":184,"h":1,"n":"No Alignment"},{"c":11,"s":12,"id":10309,"u":"point%20buy_gmg","p":182,"h":1,"n":"Point Buy"},{"c":11,"s":12,"id":10310,"u":"proficiency%20without%20level_gmg","p":198,"h":1,"n":"Proficiency Without Level"},{"c":11,"s":12,"id":10311,"u":"reputation_gmg","p":164,"h":1,"n":"Reputation"},{"c":11,"s":12,"id":10312,"u":"research_gmg","p":154,"h":1,"n":"Research"},{"c":11,"s":12,"id":10313,"u":"simplified%20ancestries_gmg","p":194,"h":1,"n":"Simplified Ancestries"},{"c":11,"s":12,"id":10314,"u":"simplified%20skill%20feats_gmg","p":194,"h":1,"n":"Simplified Skill Feats"},{"c":11,"s":12,"id":10315,"u":"skill%20points_gmg","p":199,"h":1,"n":"Skill Points"},{"c":11,"s":12,"id":10316,"u":"stamina_gmg","p":200,"h":1,"n":"Stamina"},{"c":11,"s":12,"id":10317,"u":"vehicles_gmg","p":174,"h":1,"n":"Vehicles"},{"c":11,"s":12,"id":10318,"u":"victory%20points_gmg","p":148,"h":1,"n":"Victory Points"},{"c":11,"s":49,"id":10319,"u":"cathartic%20magic_som","p":194,"h":1,"n":"Cathartic Magic"},{"c":11,"s":49,"id":10320,"u":"elementalism_som","p":198,"h":1,"n":"Elementalism"},{"c":11,"s":49,"id":10321,"u":"flexible%20preparation_som","p":208,"h":1,"n":"Flexible Preparation"},{"c":11,"s":49,"id":10322,"u":"geomancy_som","p":210,"h":1,"n":"Geomancy"},{"c":11,"s":49,"id":10323,"u":"ley%20lines_som","p":214,"h":1,"n":"Ley Lines"},{"c":11,"s":49,"id":10324,"u":"pervasive%20magic_som","p":218,"h":1,"n":"Pervasive Magic"},{"c":11,"s":49,"id":10325,"u":"shadow%20magic_som","p":224,"h":1,"n":"Shadow Magic"},{"c":11,"s":49,"id":10326,"u":"soul%20seeds_som","p":230,"h":1,"n":"Soul Seeds"},{"c":11,"s":49,"id":10327,"u":"soulforged%20armaments_som","p":232,"h":1,"n":"Soulforged Armaments"},{"c":11,"s":49,"id":10328,"u":"thassilonian%20rune%20magic_som","p":238,"h":1,"n":"Thassilonian Rune Magic"},{"c":11,"s":49,"id":10329,"u":"true%20names_som","p":244,"h":1,"n":"True Names"},{"c":11,"s":49,"id":10330,"u":"wellspring%20magic_som","p":248,"h":1,"n":"Wellspring Magic"},{"c":11,"s":39,"id":10331,"u":"life%20in%20the%20academy_sot1","p":61,"h":1,"n":"Life in the Academy"},{"c":15,"s":5,"id":10374,"u":"crb","n":"CRB: Core Rulebook"},{"c":15,"s":12,"id":10375,"u":"gmg","n":"GMG: Gamemastery Guide"},{"c":15,"s":48,"id":10376,"u":"lowg","n":"LOWG: Lost Omens: World Guide"},{"c":15,"s":49,"id":10377,"u":"som","n":"SoM: Secrets of Magic"},{"c":9,"s":9,"id":10378,"u":"gogunta_bst","p":45,"h":1,"n":"Gogunta"},{"c":9,"s":9,"id":10379,"u":"gogunta_bst","p":45,"h":1,"n":"Song of the Swamp"},{"c":9,"s":9,"id":10380,"u":"treerazer_bst","p":312,"h":1,"n":"Treerazer"},{"c":9,"s":9,"id":10381,"u":"treerazer_bst","p":312,"h":1,"n":"Lord of the Blasted Tarn"},{"c":9,"s":10,"id":10382,"u":"ydersius_bst2","p":237,"h":1,"n":"Ydersius"},{"c":9,"s":5,"id":10383,"u":"abadar_crb","p":437,"h":1,"n":"Abadar"},{"c":9,"s":5,"id":10384,"u":"abadar_crb","p":437,"h":1,"n":"The Master of the first Vault"},{"c":9,"s":5,"id":10385,"u":"asmodeus_crb","p":437,"h":1,"n":"Asmodeus"},{"c":9,"s":5,"id":10386,"u":"asmodeus_crb","p":437,"h":1,"n":"The Prince of Darkness"},{"c":9,"s":5,"id":10387,"u":"atheists%20and%20free%20agents_crb","p":440,"h":1,"n":"Atheists and Free Agents"},{"c":9,"s":5,"id":10388,"u":"atheists%20and%20free%20agents_crb","p":440,"h":1,"n":"Atheism"},{"c":9,"s":5,"id":10389,"u":"calistria_crb","p":437,"h":1,"n":"Calistria"},{"c":9,"s":5,"id":10390,"u":"calistria_crb","p":437,"h":1,"n":"The Savored Sting"},{"c":9,"s":5,"id":10391,"u":"cayden%20cailean_crb","p":437,"h":1,"n":"Cayden Cailean"},{"c":9,"s":5,"id":10392,"u":"cayden%20cailean_crb","p":437,"h":1,"n":"The Drunken Hero"},{"c":9,"s":5,"id":10393,"u":"cayden%20cailean_crb","p":437,"h":1,"n":"The Accidental God"},{"c":9,"s":5,"id":10394,"u":"desna_crb","p":438,"h":1,"n":"Desna"},{"c":9,"s":5,"id":10395,"u":"desna_crb","p":438,"h":1,"n":"The Song of the Spheres"},{"c":9,"s":5,"id":10396,"u":"erastil_crb","p":438,"h":1,"n":"Erastil"},{"c":9,"s":5,"id":10397,"u":"erastil_crb","p":438,"h":1,"n":"Old Deadeye"},{"c":9,"s":5,"id":10398,"u":"gorum_crb","p":438,"h":1,"n":"Gorum"},{"c":9,"s":5,"id":10399,"u":"gorum_crb","p":438,"h":1,"n":"Our Lord in Iron"},{"c":9,"s":5,"id":10400,"u":"gozreh_crb","p":438,"h":1,"n":"Gozreh"},{"c":9,"s":5,"id":10401,"u":"gozreh_crb","p":438,"h":1,"n":"The Wind and the waves"},{"c":9,"s":5,"id":10402,"u":"green%20faith_crb","p":440,"h":1,"n":"Green Faith"},{"c":9,"s":5,"id":10403,"u":"iomedae_crb","p":438,"h":1,"n":"Iomedae"},{"c":9,"s":5,"id":10404,"u":"iomedae_crb","p":438,"h":1,"n":"The Inheritor"},{"c":9,"s":5,"id":10405,"u":"irori_crb","p":438,"h":1,"n":"Irori"},{"c":9,"s":5,"id":10406,"u":"irori_crb","p":438,"h":1,"n":"Master of Masters"},{"c":9,"s":5,"id":10407,"u":"lamashtu_crb","p":439,"h":1,"n":"Lamashtu"},{"c":9,"s":5,"id":10408,"u":"lamashtu_crb","p":439,"h":1,"n":"Mother of Monsters"},{"c":9,"s":5,"id":10409,"u":"nethys_crb","p":439,"h":1,"n":"Nethys"},{"c":9,"s":5,"id":10410,"u":"nethys_crb","p":439,"h":1,"n":"The All-Seeing Eye"},{"c":9,"s":5,"id":10411,"u":"norgorber_crb","p":439,"h":1,"n":"Norgorber"},{"c":9,"s":5,"id":10412,"u":"norgorber_crb","p":439,"h":1,"n":"Blackfingers"},{"c":9,"s":5,"id":10413,"u":"norgorber_crb","p":439,"h":1,"n":"Father Skinsaw"},{"c":9,"s":5,"id":10414,"u":"norgorber_crb","p":439,"h":1,"n":"Gray Master"},{"c":9,"s":5,"id":10415,"u":"norgorber_crb","p":439,"h":1,"n":"Reaper of Reputation"},{"c":9,"s":5,"id":10416,"u":"pharasma_crb","p":439,"h":1,"n":"Pharasma"},{"c":9,"s":5,"id":10417,"u":"pharasma_crb","p":439,"h":1,"n":"Lady of Graves"},{"c":9,"s":5,"id":10418,"u":"prophecies%20of%20kalistrade_crb","p":440,"h":1,"n":"Prophecies of Kalistrade"},{"c":9,"s":5,"id":10419,"u":"rovagug_crb","p":439,"h":1,"n":"Rovagug"},{"c":9,"s":5,"id":10420,"u":"rovagug_crb","p":439,"h":1,"n":"Rough Beast"},{"c":9,"s":5,"id":10421,"u":"sarenrae_crb","p":439,"h":1,"n":"Sarenrae"},{"c":9,"s":5,"id":10422,"u":"sarenrae_crb","p":439,"h":1,"n":"Dawnflower"},{"c":9,"s":5,"id":10423,"u":"shelyn_crb","p":440,"h":1,"n":"Shelyn"},{"c":9,"s":5,"id":10424,"u":"shelyn_crb","p":440,"h":1,"n":"The Eternal Rose"},{"c":9,"s":5,"id":10425,"u":"torag_crb","p":440,"h":1,"n":"Torag"},{"c":9,"s":5,"id":10426,"u":"torag_crb","p":440,"h":1,"n":"Father of Creation"},{"c":9,"s":5,"id":10427,"u":"urgathoa_crb","p":440,"h":1,"n":"Urgathoa"},{"c":9,"s":5,"id":10428,"u":"urgathoa_crb","p":440,"h":1,"n":"Pallid Princess"},{"c":9,"s":5,"id":10429,"u":"whispering%20way_crb","p":441,"h":1,"n":"Whispering Way"},{"c":9,"s":5,"id":10430,"u":"zon-kuthon_crb","p":440,"h":1,"n":"Zon-Kuthon"},{"c":9,"s":5,"id":10431,"u":"zon-kuthon_crb","p":440,"h":1,"n":"Midnight Lord"},{"c":9,"s":44,"id":10432,"u":"cosmic%20caravan_av0","p":5,"h":1,"n":"Cosmic Caravan"},{"c":9,"s":8,"id":10433,"u":"zevgavizeb_ec3","p":67,"h":1,"n":"Zevgavizeb"},{"c":9,"s":8,"id":10434,"u":"zevgavizeb_ec3","p":67,"h":1,"n":"The Beast of Gluttondark"},{"c":9,"s":51,"id":10435,"u":"abraxas_logm","p":124,"h":1,"n":"Abraxas"},{"c":9,"s":51,"id":10436,"u":"abraxas_logm","p":124,"h":1,"n":"Master of the Final Incantation"},{"c":9,"s":51,"id":10437,"u":"achaekek_logm","p":52,"h":1,"n":"Achaekek"},{"c":9,"s":51,"id":10438,"u":"achaekek_logm","p":52,"h":1,"n":"He Who Walks In Blood"},{"c":9,"s":51,"id":10439,"u":"alglenweis_logm","p":132,"h":1,"n":"Alglenweis"},{"c":9,"s":51,"id":10440,"u":"alglenweis_logm","p":132,"h":1,"n":"Princess of the Rime"},{"c":9,"s":51,"id":10441,"u":"alseta_logm","p":53,"h":1,"n":"Alseta"},{"c":9,"s":51,"id":10442,"u":"alseta_logm","p":53,"h":1,"n":"The Welcomer"},{"c":9,"s":51,"id":10443,"u":"andoletta_logm","p":128,"h":1,"n":"Andoletta"},{"c":9,"s":51,"id":10444,"u":"andoletta_logm","p":128,"h":1,"n":"Grandmother Crow"},{"c":9,"s":51,"id":10445,"u":"angazhan_logm","p":124,"h":1,"n":"Angazhan"},{"c":9,"s":51,"id":10446,"u":"angazhan_logm","p":124,"h":1,"n":"The Ravenous King"},{"c":9,"s":51,"id":10447,"u":"angradd_logm","p":126,"h":1,"n":"Angradd"},{"c":9,"s":51,"id":10448,"u":"angradd_logm","p":126,"h":1,"n":"The Forge-Fire"},{"c":9,"s":51,"id":10449,"u":"anubis_logm","p":124,"h":1,"n":"Anubis"},{"c":9,"s":51,"id":10450,"u":"anubis_logm","p":124,"h":1,"n":"Guardian of the Tomb"},{"c":9,"s":51,"id":10451,"u":"apollyon_logm","p":128,"h":1,"n":"Apollyon"},{"c":9,"s":51,"id":10452,"u":"apollyon_logm","p":128,"h":1,"n":"Prince of Locusts"},{"c":9,"s":51,"id":10453,"u":"apsu_logm","p":130,"h":1,"n":"Apsu"},{"c":9,"s":51,"id":10454,"u":"apsu_logm","p":130,"h":1,"n":"The Waybringer"},{"c":9,"s":51,"id":10455,"u":"arazni_logm","p":54,"h":1,"n":"Arazni"},{"c":9,"s":51,"id":10456,"u":"arazni_logm","p":54,"h":1,"n":"The Unyielding"},{"c":9,"s":51,"id":10457,"u":"ardad%20lili_logm","p":75,"h":1,"n":"Ardad Lili"},{"c":9,"s":51,"id":10458,"u":"ardad%20lili_logm","p":75,"h":1,"n":"The End of Innocence"},{"c":9,"s":51,"id":10459,"u":"arshea_logm","p":128,"h":1,"n":"Arshea"},{"c":9,"s":51,"id":10460,"u":"arshea_logm","p":128,"h":1,"n":"Spirit of Abandon"},{"c":9,"s":51,"id":10461,"u":"arundhat_logm","p":132,"h":1,"n":"Arundhat"},{"c":9,"s":51,"id":10462,"u":"arundhat_logm","p":132,"h":1,"n":"The Sacred Perfume"},{"c":9,"s":51,"id":10463,"u":"ashava_logm","p":128,"h":1,"n":"Ashava"},{"c":9,"s":51,"id":10464,"u":"ashava_logm","p":128,"h":1,"n":"The True Spark"},{"c":9,"s":51,"id":10465,"u":"ashukharma_logm","p":132,"h":1,"n":"Ashukharma"},{"c":9,"s":51,"id":10466,"u":"ashukharma_logm","p":132,"h":1,"n":"The Divine Divide"},{"c":9,"s":51,"id":10467,"u":"atreia_logm","p":126,"h":1,"n":"Atreia"},{"c":9,"s":51,"id":10468,"u":"atreia_logm","p":126,"h":1,"n":"The Lambent King"},{"c":9,"s":51,"id":10469,"u":"ayrzul_logm","p":126,"h":1,"n":"Ayrzul"},{"c":9,"s":51,"id":10470,"u":"ayrzul_logm","p":126,"h":1,"n":"The Fossilized King"},{"c":9,"s":51,"id":10471,"u":"azathoth_logm","p":130,"h":1,"n":"Azathoth"},{"c":9,"s":51,"id":10472,"u":"azathoth_logm","p":130,"h":1,"n":"The Primal Chaos"},{"c":9,"s":51,"id":10473,"u":"baalzebul_logm","p":74,"h":1,"n":"Baalzebul"},{"c":9,"s":51,"id":10474,"u":"baalzebul_logm","p":74,"h":1,"n":"Lord of Flies"},{"c":9,"s":51,"id":10475,"u":"baphomet_logm","p":76,"h":1,"n":"Baphomet"},{"c":9,"s":51,"id":10476,"u":"baphomet_logm","p":76,"h":1,"n":"Lord of the Labyrinth"},{"c":9,"s":51,"id":10477,"u":"barbatos_logm","p":74,"h":1,"n":"Barbatos"},{"c":9,"s":51,"id":10478,"u":"barbatos_logm","p":74,"h":1,"n":"The Bearded Lord"},{"c":9,"s":51,"id":10479,"u":"barzahk_logm","p":130,"h":1,"n":"Barzahk"},{"c":9,"s":51,"id":10480,"u":"barzahk_logm","p":130,"h":1,"n":"The Passage"},{"c":9,"s":51,"id":10481,"u":"bastet_logm","p":124,"h":1,"n":"Bastet"},{"c":9,"s":51,"id":10482,"u":"bastet_logm","p":124,"h":1,"n":"The Sly Enchantress"},{"c":9,"s":51,"id":10483,"u":"belial_logm","p":74,"h":1,"n":"Belial"},{"c":9,"s":51,"id":10484,"u":"belial_logm","p":74,"h":1,"n":"The Pale Kiss"},{"c":9,"s":51,"id":10485,"u":"bes_logm","p":124,"h":1,"n":"Bes"},{"c":9,"s":51,"id":10486,"u":"bes_logm","p":124,"h":1,"n":"The Guardian Fool"},{"c":9,"s":51,"id":10487,"u":"besmara_logm","p":55,"h":1,"n":"Besmara"},{"c":9,"s":51,"id":10488,"u":"besmara_logm","p":55,"h":1,"n":"The Pirate Queen"},{"c":9,"s":51,"id":10489,"u":"black%20butterfly_logm","p":128,"h":1,"n":"Black Butterfly"},{"c":9,"s":51,"id":10490,"u":"black%20butterfly_logm","p":128,"h":1,"n":"The Silence Between"},{"c":9,"s":51,"id":10491,"u":"bolka_logm","p":126,"h":1,"n":"Bolka"},{"c":9,"s":51,"id":10492,"u":"bolka_logm","p":126,"h":1,"n":"The Golden Gift"},{"c":9,"s":51,"id":10493,"u":"brigh_logm","p":56,"h":1,"n":"Brigh"},{"c":9,"s":51,"id":10494,"u":"brigh_logm","p":56,"h":1,"n":"The Whisper In Bronze"},{"c":9,"s":51,"id":10495,"u":"casandalee_logm","p":57,"h":1,"n":"Casandalee"},{"c":9,"s":51,"id":10496,"u":"casandalee_logm","p":57,"h":1,"n":"The Iron Goddess"},{"c":9,"s":51,"id":10497,"u":"cernunnos_logm","p":128,"h":1,"n":"Cernunnos"},{"c":9,"s":51,"id":10498,"u":"cernunnos_logm","p":128,"h":1,"n":"The Horned Lord"},{"c":9,"s":51,"id":10499,"u":"chaldira_logm","p":58,"h":1,"n":"Chaldira"},{"c":9,"s":51,"id":10500,"u":"chaldira_logm","p":58,"h":1,"n":"The Calamitous Turn"},{"c":9,"s":51,"id":10501,"u":"chamidu_logm","p":132,"h":1,"n":"Chamidu"},{"c":9,"s":51,"id":10502,"u":"chamidu_logm","p":132,"h":1,"n":"The Roar of the Storm"},{"c":9,"s":51,"id":10503,"u":"charon_logm","p":128,"h":1,"n":"Charon"},{"c":9,"s":51,"id":10504,"u":"charon_logm","p":128,"h":1,"n":"The Boatman"},{"c":9,"s":51,"id":10505,"u":"count%20ranalc_logm","p":78,"h":1,"n":"Count Ranalc"},{"c":9,"s":51,"id":10506,"u":"count%20ranalc_logm","p":78,"h":1,"n":"The Traitor"},{"c":9,"s":51,"id":10507,"u":"cyth-v'sug_logm","p":76,"h":1,"n":"Cyth-V'sug"},{"c":9,"s":51,"id":10508,"u":"cyth-v'sug_logm","p":76,"h":1,"n":"Prince of the Blasted Heath"},{"c":9,"s":51,"id":10509,"u":"dagon_logm","p":76,"h":1,"n":"Dagon"},{"c":9,"s":51,"id":10510,"u":"dagon_logm","p":76,"h":1,"n":"The Shadow in the Sea"},{"c":9,"s":51,"id":10511,"u":"dahak_logm","p":130,"h":1,"n":"Dahak"},{"c":9,"s":51,"id":10512,"u":"dahak_logm","p":130,"h":1,"n":"The Endless Destruction"},{"c":9,"s":51,"id":10513,"u":"daikitsu_logm","p":132,"h":1,"n":"Daikitsu"},{"c":9,"s":51,"id":10514,"u":"daikitsu_logm","p":132,"h":1,"n":"Lady of Foxes"},{"c":9,"s":51,"id":10515,"u":"dammerich_logm","p":128,"h":1,"n":"Dammerich"},{"c":9,"s":51,"id":10516,"u":"dammerich_logm","p":128,"h":1,"n":"The Weighted Swing"},{"c":9,"s":51,"id":10517,"u":"dhalavei_logm","p":132,"h":1,"n":"Dhalavei"},{"c":9,"s":51,"id":10518,"u":"dhalavei_logm","p":132,"h":1,"n":"The Unsuspected Rot"},{"c":9,"s":51,"id":10519,"u":"diomazul_logm","p":132,"h":1,"n":"Diomazul"},{"c":9,"s":51,"id":10520,"u":"diomazul_logm","p":132,"h":1,"n":"The Serpent of Eighty Blades"},{"c":9,"s":51,"id":10521,"u":"dispater_logm","p":74,"h":1,"n":"Dispater"},{"c":9,"s":51,"id":10522,"u":"dispater_logm","p":74,"h":1,"n":"Iron Lord"},{"c":9,"s":51,"id":10523,"u":"doloras_logm","p":75,"h":1,"n":"Doloras"},{"c":9,"s":51,"id":10524,"u":"doloras_logm","p":75,"h":1,"n":"Our Lady of Pain"},{"c":9,"s":51,"id":10525,"u":"dranngvit_logm","p":126,"h":1,"n":"Dranngvit"},{"c":9,"s":51,"id":10526,"u":"dranngvit_logm","p":126,"h":1,"n":"The Debt Minder"},{"c":9,"s":51,"id":10527,"u":"droskar_logm","p":126,"h":1,"n":"Droskar"},{"c":9,"s":51,"id":10528,"u":"droskar_logm","p":126,"h":1,"n":"The Dark Smith"},{"c":9,"s":51,"id":10529,"u":"dwarven%20pantheon_logm","p":92,"h":1,"n":"Dwarven Pantheon"},{"c":9,"s":51,"id":10530,"u":"eiseth_logm","p":75,"h":1,"n":"Eiseth"},{"c":9,"s":51,"id":10531,"u":"eiseth_logm","p":75,"h":1,"n":"The Erinyes Queen"},{"c":9,"s":51,"id":10532,"u":"elven%20pantheon_logm","p":93,"h":1,"n":"Elven Pantheon"},{"c":9,"s":51,"id":10533,"u":"erecura_logm","p":130,"h":1,"n":"Erecura"},{"c":9,"s":51,"id":10534,"u":"erecura_logm","p":130,"h":1,"n":"Queen of Dis"},{"c":9,"s":51,"id":10535,"u":"eritrice_logm","p":128,"h":1,"n":"Eritrice"},{"c":9,"s":51,"id":10536,"u":"eritrice_logm","p":128,"h":1,"n":"Heart-Speaker"},{"c":9,"s":51,"id":10537,"u":"esoteric%20order%20of%20the%20palatine%20eye_logm","p":94,"h":1,"n":"Esoteric Order of the Palatine Eye"},{"c":9,"s":51,"id":10538,"u":"falayna_logm","p":128,"h":1,"n":"Falayna"},{"c":9,"s":51,"id":10539,"u":"falayna_logm","p":128,"h":1,"n":"Warrior's Ring"},{"c":9,"s":51,"id":10540,"u":"findeladlara_logm","p":128,"h":1,"n":"Findeladlara"},{"c":9,"s":51,"id":10541,"u":"findeladlara_logm","p":128,"h":1,"n":"The Guiding Hand"},{"c":9,"s":51,"id":10542,"u":"folgrit_logm","p":126,"h":1,"n":"Folgrit"},{"c":9,"s":51,"id":10543,"u":"folgrit_logm","p":126,"h":1,"n":"The Watchful Mother"},{"c":9,"s":51,"id":10544,"u":"fumeiyoshi_logm","p":132,"h":1,"n":"Fumeiyoshi"},{"c":9,"s":51,"id":10545,"u":"fumeiyoshi_logm","p":132,"h":1,"n":"Lord of Envy"},{"c":9,"s":51,"id":10546,"u":"gendowyn_logm","p":130,"h":1,"n":"Gendowyn"},{"c":9,"s":51,"id":10547,"u":"gendowyn_logm","p":130,"h":1,"n":"Lady of the Fangwood"},{"c":9,"s":51,"id":10548,"u":"general%20susumu_logm","p":132,"h":1,"n":"General Susumu"},{"c":9,"s":51,"id":10549,"u":"general%20susumu_logm","p":132,"h":1,"n":"The Black Daimyo"},{"c":9,"s":51,"id":10550,"u":"geryon_logm","p":75,"h":1,"n":"Geryon"},{"c":9,"s":51,"id":10551,"u":"geryon_logm","p":75,"h":1,"n":"The Serpent"},{"c":9,"s":51,"id":10552,"u":"ghlaunder_logm","p":59,"h":1,"n":"Ghlaunder"},{"c":9,"s":51,"id":10553,"u":"ghlaunder_logm","p":59,"h":1,"n":"The Gossamer King"},{"c":9,"s":51,"id":10554,"u":"god%20calling_logm","p":95,"h":1,"n":"God Calling"},{"c":9,"s":51,"id":10555,"u":"grandmother%20spider_logm","p":60,"h":1,"n":"Grandmother Spider"},{"c":9,"s":51,"id":10556,"u":"grandmother%20spider_logm","p":60,"h":1,"n":"The Weaver"},{"c":9,"s":51,"id":10557,"u":"grandmother%20spider_logm","p":60,"h":1,"n":"Nana Anadi"},{"c":9,"s":51,"id":10558,"u":"groetus_logm","p":61,"h":1,"n":"Groetus"},{"c":9,"s":51,"id":10559,"u":"groetus_logm","p":61,"h":1,"n":"God of the End Times"},{"c":9,"s":51,"id":10560,"u":"gruhastha_logm","p":62,"h":1,"n":"Gruhastha"},{"c":9,"s":51,"id":10561,"u":"gruhastha_logm","p":62,"h":1,"n":"The Keeper"},{"c":9,"s":51,"id":10562,"u":"grundinnar_logm","p":126,"h":1,"n":"Grundinnar"},{"c":9,"s":51,"id":10563,"u":"grundinnar_logm","p":126,"h":1,"n":"The Peacemaker"},{"c":9,"s":51,"id":10564,"u":"gyronna_logm","p":130,"h":1,"n":"Gyronna"},{"c":9,"s":51,"id":10565,"u":"gyronna_logm","p":130,"h":1,"n":"The Angry Hag"},{"c":9,"s":51,"id":10566,"u":"halcamora_logm","p":128,"h":1,"n":"Halcamora"},{"c":9,"s":51,"id":10567,"u":"halcamora_logm","p":128,"h":1,"n":"Lady of Ripe Bounty"},{"c":9,"s":51,"id":10568,"u":"hanspur_logm","p":130,"h":1,"n":"Hanspur"},{"c":9,"s":51,"id":10569,"u":"hanspur_logm","p":130,"h":1,"n":"The Water Rat"},{"c":9,"s":51,"id":10570,"u":"hastur_logm","p":130,"h":1,"n":"Hastur"},{"c":9,"s":51,"id":10571,"u":"hastur_logm","p":130,"h":1,"n":"The King in Yellow"},{"c":9,"s":51,"id":10572,"u":"hathor_logm","p":124,"h":1,"n":"Hathor"},{"c":9,"s":51,"id":10573,"u":"hathor_logm","p":124,"h":1,"n":"Mistress of Jubilation"},{"c":9,"s":51,"id":10574,"u":"hei%20feng_logm","p":63,"h":1,"n":"Hei Feng"},{"c":9,"s":51,"id":10575,"u":"hei%20feng_logm","p":63,"h":1,"n":"Duke of Thunder"},{"c":9,"s":51,"id":10576,"u":"horus_logm","p":124,"h":1,"n":"Horus"},{"c":9,"s":51,"id":10577,"u":"horus_logm","p":124,"h":1,"n":"The Distant Falcon"},{"c":9,"s":51,"id":10578,"u":"hshurha_logm","p":126,"h":1,"n":"Hshurha"},{"c":9,"s":51,"id":10579,"u":"hshurha_logm","p":126,"h":1,"n":"Duchess of All Winds"},{"c":9,"s":51,"id":10580,"u":"imbrex_logm","p":78,"h":1,"n":"Imbrex"},{"c":9,"s":51,"id":10581,"u":"imbrex_logm","p":78,"h":1,"n":"The Twins"},{"c":9,"s":51,"id":10582,"u":"imot_logm","p":130,"h":1,"n":"Imot"},{"c":9,"s":51,"id":10583,"u":"imot_logm","p":130,"h":1,"n":"The Symbol of Doom"},{"c":9,"s":51,"id":10584,"u":"irez_logm","p":128,"h":1,"n":"Irez"},{"c":9,"s":51,"id":10585,"u":"irez_logm","p":128,"h":1,"n":"Lady of Inscribed Wonder"},{"c":9,"s":51,"id":10586,"u":"isis_logm","p":124,"h":1,"n":"Isis"},{"c":9,"s":51,"id":10587,"u":"isis_logm","p":124,"h":1,"n":"Queen of Miracles"},{"c":9,"s":51,"id":10588,"u":"jaidi_logm","p":130,"h":1,"n":"Jaidi"},{"c":9,"s":51,"id":10589,"u":"jaidi_logm","p":130,"h":1,"n":"The Blessing and Bounty"},{"c":9,"s":51,"id":10590,"u":"jaidz_logm","p":128,"h":1,"n":"Jaidz"},{"c":9,"s":51,"id":10591,"u":"jaidz_logm","p":128,"h":1,"n":"Fearless Claw"},{"c":9,"s":51,"id":10592,"u":"kabriri_logm","p":77,"h":1,"n":"Kabriri"},{"c":9,"s":51,"id":10593,"u":"kabriri_logm","p":77,"h":1,"n":"Him Who Gnaws"},{"c":9,"s":51,"id":10594,"u":"kazutal_logm","p":64,"h":1,"n":"Kazutal"},{"c":9,"s":51,"id":10595,"u":"kazutal_logm","p":64,"h":1,"n":"Duke of Thunder"},{"c":9,"s":51,"id":10596,"u":"kelizandri_logm","p":126,"h":1,"n":"Kelizandri"},{"c":9,"s":51,"id":10597,"u":"kelizandri_logm","p":126,"h":1,"n":"The Brackish Emperor"},{"c":9,"s":51,"id":10598,"u":"kerkamoth_logm","p":130,"h":1,"n":"Kerkamoth"},{"c":9,"s":51,"id":10599,"u":"kerkamoth_logm","p":130,"h":1,"n":"The Waiting Void"},{"c":9,"s":51,"id":10600,"u":"ketephys_logm","p":128,"h":1,"n":"Ketephys"},{"c":9,"s":51,"id":10601,"u":"ketephys_logm","p":128,"h":1,"n":"The Hunter"},{"c":9,"s":51,"id":10602,"u":"kofusachi_logm","p":132,"h":1,"n":"Kofusachi"},{"c":9,"s":51,"id":10603,"u":"kofusachi_logm","p":132,"h":1,"n":"The Laughing God"},{"c":9,"s":51,"id":10604,"u":"kols_logm","p":126,"h":1,"n":"Kols"},{"c":9,"s":51,"id":10605,"u":"kols_logm","p":126,"h":1,"n":"Oath-Keeper"},{"c":9,"s":51,"id":10606,"u":"korada_logm","p":128,"h":1,"n":"Korada"},{"c":9,"s":51,"id":10607,"u":"korada_logm","p":128,"h":1,"n":"The Open Hand of Harmony"},{"c":9,"s":51,"id":10608,"u":"kostchtchie_logm","p":126,"h":1,"n":"Kostchtchie"},{"c":9,"s":51,"id":10609,"u":"kostchtchie_logm","p":126,"h":1,"n":"The Deathless Frost"},{"c":9,"s":51,"id":10610,"u":"kurgess_logm","p":65,"h":1,"n":"Kurgess"},{"c":9,"s":51,"id":10611,"u":"kurgess_logm","p":65,"h":1,"n":"The Strong Man"},{"c":9,"s":51,"id":10612,"u":"lady%20jingxi_logm","p":132,"h":1,"n":"Lady Jingxi"},{"c":9,"s":51,"id":10613,"u":"lady%20jingxi_logm","p":132,"h":1,"n":"The Poet of Dawn and Dusk"},{"c":9,"s":51,"id":10614,"u":"lady%20nanbyo_logm","p":132,"h":1,"n":"Lady Nanbyo"},{"c":9,"s":51,"id":10615,"u":"lady%20nanbyo_logm","p":132,"h":1,"n":"The Widow of Suffering"},{"c":9,"s":51,"id":10616,"u":"lahkgya_logm","p":132,"h":1,"n":"Lahkgya"},{"c":9,"s":51,"id":10617,"u":"lahkgya_logm","p":132,"h":1,"n":"Patron of Monkeys"},{"c":9,"s":51,"id":10618,"u":"lao%20shu%20po_logm","p":132,"h":1,"n":"Lao Shu Po"},{"c":9,"s":51,"id":10619,"u":"lao%20shu%20po_logm","p":132,"h":1,"n":"Old Rat Woman"},{"c":9,"s":51,"id":10620,"u":"laws%20of%20mortality_logm","p":97,"h":1,"n":"Laws of Mortality"},{"c":9,"s":51,"id":10621,"u":"likha_logm","p":132,"h":1,"n":"Likha"},{"c":9,"s":51,"id":10622,"u":"likha_logm","p":132,"h":1,"n":"The Teller"},{"c":9,"s":51,"id":10623,"u":"lissala_logm","p":130,"h":1,"n":"Lissala"},{"c":9,"s":51,"id":10624,"u":"lissala_logm","p":130,"h":1,"n":"The Sihedron Scion"},{"c":9,"s":51,"id":10625,"u":"lymnieris_logm","p":128,"h":1,"n":"Lymnieris"},{"c":9,"s":51,"id":10626,"u":"lymnieris_logm","p":128,"h":1,"n":"The Auroral Tower"},{"c":9,"s":51,"id":10627,"u":"lysianassa_logm","p":126,"h":1,"n":"Lysianassa"},{"c":9,"s":51,"id":10628,"u":"lysianassa_logm","p":126,"h":1,"n":"Empress of the Torrent"},{"c":9,"s":51,"id":10629,"u":"ma'at_logm","p":124,"h":1,"n":"Ma'at"},{"c":9,"s":51,"id":10630,"u":"ma'at_logm","p":124,"h":1,"n":"The Feather of Truth"},{"c":9,"s":51,"id":10631,"u":"magdh_logm","p":79,"h":1,"n":"Magdh"},{"c":9,"s":51,"id":10632,"u":"magdh_logm","p":79,"h":1,"n":"The Three"},{"c":9,"s":51,"id":10633,"u":"magrim_logm","p":126,"h":1,"n":"Magrim"},{"c":9,"s":51,"id":10634,"u":"magrim_logm","p":126,"h":1,"n":"The Taskmaster"},{"c":9,"s":51,"id":10635,"u":"mahathallah_logm","p":75,"h":1,"n":"Mahathallah"},{"c":9,"s":51,"id":10636,"u":"mahathallah_logm","p":75,"h":1,"n":"Dowager of Illusions"},{"c":9,"s":51,"id":10637,"u":"mammon_logm","p":75,"h":1,"n":"Mammon"},{"c":9,"s":51,"id":10638,"u":"mammon_logm","p":75,"h":1,"n":"The Argent Prince"},{"c":9,"s":51,"id":10639,"u":"matravash_logm","p":132,"h":1,"n":"Matravash"},{"c":9,"s":51,"id":10640,"u":"matravash_logm","p":132,"h":1,"n":"The Wide Water"},{"c":9,"s":51,"id":10641,"u":"mephistopheles_logm","p":75,"h":1,"n":"Mephistopheles"},{"c":9,"s":51,"id":10642,"u":"mephistopheles_logm","p":75,"h":1,"n":"The Crimson Son"},{"c":9,"s":51,"id":10643,"u":"milani_logm","p":66,"h":1,"n":"Milani"},{"c":9,"s":51,"id":10644,"u":"milani_logm","p":66,"h":1,"n":"The Everbloom"},{"c":9,"s":51,"id":10645,"u":"moloch_logm","p":75,"h":1,"n":"Moloch"},{"c":9,"s":51,"id":10646,"u":"moloch_logm","p":75,"h":1,"n":"The Ashen Bull"},{"c":9,"s":51,"id":10647,"u":"monad_logm","p":130,"h":1,"n":"Monad"},{"c":9,"s":51,"id":10648,"u":"monad_logm","p":130,"h":1,"n":"The Condition of All"},{"c":9,"s":51,"id":10649,"u":"mother%20vulture_logm","p":130,"h":1,"n":"Mother Vulture"},{"c":9,"s":51,"id":10650,"u":"mother%20vulture_logm","p":130,"h":1,"n":"The Flesheater"},{"c":9,"s":51,"id":10651,"u":"naderi_logm","p":130,"h":1,"n":"Naderi"},{"c":9,"s":51,"id":10652,"u":"naderi_logm","p":130,"h":1,"n":"The Lost Maiden"},{"c":9,"s":51,"id":10653,"u":"nalinivati_logm","p":132,"h":1,"n":"Nalinivati"},{"c":9,"s":51,"id":10654,"u":"nalinivati_logm","p":132,"h":1,"n":"The Serpent's Kiss"},{"c":9,"s":51,"id":10655,"u":"narakaas_logm","p":130,"h":1,"n":"Narakaas"},{"c":9,"s":51,"id":10656,"u":"narakaas_logm","p":130,"h":1,"n":"The Cleansing Sentence"},{"c":9,"s":51,"id":10657,"u":"narriseminek_logm","p":130,"h":1,"n":"Narriseminek"},{"c":9,"s":51,"id":10658,"u":"narriseminek_logm","p":130,"h":1,"n":"The Crownless, the Maker of Kings"},{"c":9,"s":51,"id":10659,"u":"nhimbaloth_logm","p":130,"h":1,"n":"Nhimbaloth"},{"c":9,"s":51,"id":10660,"u":"nhimbaloth_logm","p":130,"h":1,"n":"The Empty Death"},{"c":9,"s":51,"id":10661,"u":"nivi%20rhombodazzle_logm","p":67,"h":1,"n":"Nivi Rhombodazzle"},{"c":9,"s":51,"id":10662,"u":"nivi%20rhombodazzle_logm","p":67,"h":1,"n":"The Grey Polychrome"},{"c":9,"s":51,"id":10663,"u":"nocticula_logm","p":68,"h":1,"n":"Nocticula"},{"c":9,"s":51,"id":10664,"u":"nocticula_logm","p":68,"h":1,"n":"The Redeemer Queen"},{"c":9,"s":51,"id":10665,"u":"nurgal_logm","p":77,"h":1,"n":"Nurgal"},{"c":9,"s":51,"id":10666,"u":"nurgal_logm","p":77,"h":1,"n":"The Shining Scourge"},{"c":9,"s":51,"id":10667,"u":"nyarlathotep_logm","p":130,"h":1,"n":"Nyarlathotep"},{"c":9,"s":51,"id":10668,"u":"nyarlathotep_logm","p":130,"h":1,"n":"The Crawling Chaos"},{"c":9,"s":51,"id":10669,"u":"osiris_logm","p":124,"h":1,"n":"Osiris"},{"c":9,"s":51,"id":10670,"u":"osiris_logm","p":124,"h":1,"n":"Lord of the Living"},{"c":9,"s":51,"id":10671,"u":"otolmens_logm","p":130,"h":1,"n":"Otolmens"},{"c":9,"s":51,"id":10672,"u":"otolmens_logm","p":130,"h":1,"n":"The Universal"},{"c":9,"s":51,"id":10673,"u":"pazuzu_logm","p":77,"h":1,"n":"Pazuzu"},{"c":9,"s":51,"id":10674,"u":"pazuzu_logm","p":77,"h":1,"n":"King of the Wind Demons"},{"c":9,"s":51,"id":10675,"u":"pulura_logm","p":128,"h":1,"n":"Pulura"},{"c":9,"s":51,"id":10676,"u":"pulura_logm","p":128,"h":1,"n":"The Shimmering Maiden"},{"c":9,"s":51,"id":10677,"u":"qi%20zhong_logm","p":132,"h":1,"n":"Qi Zhong"},{"c":9,"s":51,"id":10678,"u":"qi%20zhong_logm","p":132,"h":1,"n":"Master of Medicine"},{"c":9,"s":51,"id":10679,"u":"ra_logm","p":124,"h":1,"n":"Ra"},{"c":9,"s":51,"id":10680,"u":"ra_logm","p":124,"h":1,"n":"King of the Heavens"},{"c":9,"s":51,"id":10681,"u":"ragathiel_logm","p":128,"h":1,"n":"Ragathiel"},{"c":9,"s":51,"id":10682,"u":"ragathiel_logm","p":128,"h":1,"n":"General of Vengeance"},{"c":9,"s":51,"id":10683,"u":"ragdya_logm","p":132,"h":1,"n":"Ragdya"},{"c":9,"s":51,"id":10684,"u":"ragdya_logm","p":132,"h":1,"n":"The Sage on the Mountain"},{"c":9,"s":51,"id":10685,"u":"ranginori_logm","p":128,"h":1,"n":"Ranginori"},{"c":9,"s":51,"id":10686,"u":"ranginori_logm","p":128,"h":1,"n":"Zephyrous Prince"},{"c":9,"s":51,"id":10687,"u":"raumya_logm","p":132,"h":1,"n":"Raumya"},{"c":9,"s":51,"id":10688,"u":"raumya_logm","p":132,"h":1,"n":"The Evil Prince"},{"c":9,"s":51,"id":10689,"u":"sairazul_logm","p":128,"h":1,"n":"Sairazul"},{"c":9,"s":51,"id":10690,"u":"sairazul_logm","p":128,"h":1,"n":"The Crystalline Queen"},{"c":9,"s":51,"id":10691,"u":"saloc_logm","p":130,"h":1,"n":"Saloc"},{"c":9,"s":51,"id":10692,"u":"saloc_logm","p":130,"h":1,"n":"The Minder of Immortals"},{"c":9,"s":51,"id":10693,"u":"sangpotshi_logm","p":99,"h":1,"n":"Sangpotshi"},{"c":9,"s":51,"id":10694,"u":"sekhmet_logm","p":124,"h":1,"n":"Sekhmet"},{"c":9,"s":51,"id":10695,"u":"sekhmet_logm","p":124,"h":1,"n":"Lady of Slaughter"},{"c":9,"s":51,"id":10696,"u":"selket_logm","p":124,"h":1,"n":"Selket"},{"c":9,"s":51,"id":10697,"u":"selket_logm","p":124,"h":1,"n":"Mistress of the Beautiful House"},{"c":9,"s":51,"id":10698,"u":"shax_logm","p":77,"h":1,"n":"Shax"},{"c":9,"s":51,"id":10699,"u":"shax_logm","p":77,"h":1,"n":"The Bloody Marquis"},{"c":9,"s":51,"id":10700,"u":"shei_logm","p":128,"h":1,"n":"Shei"},{"c":9,"s":51,"id":10701,"u":"shei_logm","p":128,"h":1,"n":"The Ibis Matron"},{"c":9,"s":51,"id":10702,"u":"shizuru_logm","p":70,"h":1,"n":"Shizuru"},{"c":9,"s":51,"id":10703,"u":"shizuru_logm","p":70,"h":1,"n":"The Empress of Heaven"},{"c":9,"s":51,"id":10704,"u":"shoanti%20animism_logm","p":100,"h":1,"n":"Shoanti Animism"},{"c":9,"s":51,"id":10705,"u":"sifkesh_logm","p":126,"h":1,"n":"Sifkesh"},{"c":9,"s":51,"id":10706,"u":"sifkesh_logm","p":126,"h":1,"n":"The Whispered Doubt"},{"c":9,"s":51,"id":10707,"u":"sivanah_logm","p":69,"h":1,"n":"Sivanah"},{"c":9,"s":51,"id":10708,"u":"sivanah_logm","p":69,"h":1,"n":"The Seventh Veil"},{"c":9,"s":51,"id":10709,"u":"sobek_logm","p":124,"h":1,"n":"Sobek"},{"c":9,"s":51,"id":10710,"u":"sobek_logm","p":124,"h":1,"n":"The Raging Torrent"},{"c":9,"s":51,"id":10711,"u":"soralyon_logm","p":128,"h":1,"n":"Soralyon"},{"c":9,"s":51,"id":10712,"u":"soralyon_logm","p":128,"h":1,"n":"The Mystic Angel"},{"c":9,"s":51,"id":10713,"u":"stag%20mother%20of%20the%20forest%20of%20stones_logm","p":132,"h":1,"n":"Stag Mother of the Forest of Stones"},{"c":9,"s":51,"id":10714,"u":"stag%20mother%20of%20the%20forest%20of%20stones_logm","p":132,"h":1,"n":"She Who Listens"},{"c":9,"s":51,"id":10715,"u":"sturovenen_logm","p":132,"h":1,"n":"Sturovenen"},{"c":9,"s":51,"id":10716,"u":"sturovenen_logm","p":132,"h":1,"n":"The Dragoneagle"},{"c":9,"s":51,"id":10717,"u":"sun%20wukong_logm","p":132,"h":1,"n":"Sun Wukong"},{"c":9,"s":51,"id":10718,"u":"sun%20wukong_logm","p":132,"h":1,"n":"The Monkey King"},{"c":9,"s":51,"id":10719,"u":"szuriel_logm","p":128,"h":1,"n":"Szuriel"},{"c":9,"s":51,"id":10720,"u":"szuriel_logm","p":128,"h":1,"n":"Angel of Desolation"},{"c":9,"s":51,"id":10721,"u":"tanagaar_logm","p":128,"h":1,"n":"Tanagaar"},{"c":9,"s":51,"id":10722,"u":"tanagaar_logm","p":128,"h":1,"n":"The Aurulent Eye"},{"c":9,"s":51,"id":10723,"u":"thamir_logm","p":130,"h":1,"n":"Thamir"},{"c":9,"s":51,"id":10724,"u":"thamir_logm","p":130,"h":1,"n":"The Silent Blade"},{"c":9,"s":51,"id":10725,"u":"the%20godclaw_logm","p":93,"h":1,"n":"The Godclaw"},{"c":9,"s":51,"id":10726,"u":"the%20green%20mother_logm","p":78,"h":1,"n":"The Green Mother"},{"c":9,"s":51,"id":10727,"u":"the%20green%20mother_logm","p":78,"h":1,"n":"The Feasting Flower"},{"c":9,"s":51,"id":10728,"u":"the%20lantern%20king_logm","p":78,"h":1,"n":"The Lantern King"},{"c":9,"s":51,"id":10729,"u":"the%20lantern%20king_logm","p":78,"h":1,"n":"The Laughing Lie"},{"c":9,"s":51,"id":10730,"u":"the%20lost%20prince_logm","p":78,"h":1,"n":"The Lost Prince"},{"c":9,"s":51,"id":10731,"u":"the%20lost%20prince_logm","p":78,"h":1,"n":"The Melancholy Lord"},{"c":9,"s":51,"id":10732,"u":"thoth_logm","p":124,"h":1,"n":"Thoth"},{"c":9,"s":51,"id":10733,"u":"thoth_logm","p":124,"h":1,"n":"Lord of Divine Words"},{"c":9,"s":51,"id":10734,"u":"trelmarixian_logm","p":128,"h":1,"n":"Trelmarixian"},{"c":9,"s":51,"id":10735,"u":"trelmarixian_logm","p":128,"h":1,"n":"The Lysogenic Prince"},{"c":9,"s":51,"id":10736,"u":"trudd_logm","p":126,"h":1,"n":"Trudd"},{"c":9,"s":51,"id":10737,"u":"trudd_logm","p":126,"h":1,"n":"The Mighty"},{"c":9,"s":51,"id":10738,"u":"tsukiyo_logm","p":71,"h":1,"n":"Tsukiyo"},{"c":9,"s":51,"id":10739,"u":"tsukiyo_logm","p":71,"h":1,"n":"Prince of the Moon"},{"c":9,"s":51,"id":10740,"u":"valmallos_logm","p":130,"h":1,"n":"Valmallos"},{"c":9,"s":51,"id":10741,"u":"valmallos_logm","p":130,"h":1,"n":"The Answering Rite"},{"c":9,"s":51,"id":10742,"u":"vildeis_logm","p":128,"h":1,"n":"Vildeis"},{"c":9,"s":51,"id":10743,"u":"vildeis_logm","p":128,"h":1,"n":"The Cardinal Martyr"},{"c":9,"s":51,"id":10744,"u":"wadjet_logm","p":124,"h":1,"n":"Wadjet"},{"c":9,"s":51,"id":10745,"u":"wadjet_logm","p":124,"h":1,"n":"The Green Empress"},{"c":9,"s":51,"id":10746,"u":"walkena_logm","p":130,"h":1,"n":"Walkena"},{"c":9,"s":51,"id":10747,"u":"walkena_logm","p":130,"h":1,"n":"The Child-God"},{"c":9,"s":51,"id":10748,"u":"winlas_logm","p":128,"h":1,"n":"Winlas"},{"c":9,"s":51,"id":10749,"u":"winlas_logm","p":128,"h":1,"n":"The Elder of Divinity"},{"c":9,"s":51,"id":10750,"u":"xhamen-dor_logm","p":130,"h":1,"n":"Xhamen-Dor"},{"c":9,"s":51,"id":10751,"u":"xhamen-dor_logm","p":130,"h":1,"n":"The Star Seed"},{"c":9,"s":51,"id":10752,"u":"yaezhing_logm","p":132,"h":1,"n":"Yaezhing"},{"c":9,"s":51,"id":10753,"u":"yaezhing_logm","p":132,"h":1,"n":"Minister of Blood"},{"c":9,"s":51,"id":10754,"u":"yamatsumi_logm","p":132,"h":1,"n":"Yamatsumi"},{"c":9,"s":51,"id":10755,"u":"yamatsumi_logm","p":132,"h":1,"n":"The Mountain Lord"},{"c":9,"s":51,"id":10756,"u":"ydajisk_logm","p":130,"h":1,"n":"Ydajisk"},{"c":9,"s":51,"id":10757,"u":"ydajisk_logm","p":130,"h":1,"n":"Mother of Tongues"},{"c":9,"s":51,"id":10758,"u":"ylimancha_logm","p":128,"h":1,"n":"Ylimancha"},{"c":9,"s":51,"id":10759,"u":"ylimancha_logm","p":128,"h":1,"n":"Harborwing"},{"c":9,"s":51,"id":10760,"u":"ymeri_logm","p":128,"h":1,"n":"Ymeri"},{"c":9,"s":51,"id":10761,"u":"ymeri_logm","p":128,"h":1,"n":"Queen of the Inferno"},{"c":9,"s":51,"id":10762,"u":"yog-sothoth_logm","p":130,"h":1,"n":"Yog-Sothoth"},{"c":9,"s":51,"id":10763,"u":"yog-sothoth_logm","p":130,"h":1,"n":"Lurker at the Threshold"},{"c":9,"s":51,"id":10764,"u":"yuelral_logm","p":128,"h":1,"n":"Yuelral"},{"c":9,"s":51,"id":10765,"u":"yuelral_logm","p":128,"h":1,"n":"The Wise"},{"c":9,"s":51,"id":10766,"u":"zohls_logm","p":128,"h":1,"n":"Zohls"},{"c":9,"s":51,"id":10767,"u":"zohls_logm","p":128,"h":1,"n":"Verity"},{"c":9,"s":51,"id":10768,"u":"zura_logm","p":77,"h":1,"n":"Zura"},{"c":9,"s":51,"id":10769,"u":"zura_logm","p":77,"h":1,"n":"The Vampire Queen"},{"c":9,"s":51,"id":10770,"u":"zyphus_logm","p":130,"h":1,"n":"Zyphus"},{"c":9,"s":51,"id":10771,"u":"zyphus_logm","p":130,"h":1,"n":"The Grim Harvestman"},{"c":9,"s":0,"id":10772,"u":"adanye_lome","p":132,"h":1,"n":"Adanye"},{"c":9,"s":0,"id":10773,"u":"adanye_lome","p":132,"h":1,"n":"The Warmth of the Hearth"},{"c":9,"s":0,"id":10774,"u":"balumbdar_lome","p":134,"h":1,"n":"Balumbdar"},{"c":9,"s":0,"id":10775,"u":"balumbdar_lome","p":134,"h":1,"n":"The World-Shaker"},{"c":9,"s":0,"id":10776,"u":"chohar_lome","p":135,"h":1,"n":"Chohar"},{"c":9,"s":0,"id":10777,"u":"chohar_lome","p":135,"h":1,"n":"The Golden Lion"},{"c":9,"s":0,"id":10778,"u":"kalekot_lome","p":137,"h":1,"n":"Kalekot"},{"c":9,"s":0,"id":10779,"u":"kalekot_lome","p":137,"h":1,"n":"The Winnower"},{"c":9,"s":0,"id":10780,"u":"kitmu_lome","p":158,"h":1,"n":"Kitmu"},{"c":9,"s":0,"id":10781,"u":"kitmu_lome","p":158,"h":1,"n":"Mother of Fireflies"},{"c":9,"s":0,"id":10782,"u":"lubaiko_lome","p":138,"h":1,"n":"Lubaiko"},{"c":9,"s":0,"id":10783,"u":"lubaiko_lome","p":138,"h":1,"n":"The Spark in the Dust"},{"c":9,"s":0,"id":10784,"u":"luhar_lome","p":139,"h":1,"n":"Luhar"},{"c":9,"s":0,"id":10785,"u":"luhar_lome","p":139,"h":1,"n":"THE SETTING SUN"},{"c":9,"s":0,"id":10786,"u":"mazludeh_lome","p":140,"h":1,"n":"Mazludeh"},{"c":9,"s":0,"id":10787,"u":"mazludeh_lome","p":140,"h":1,"n":"Mother of Hearth and Wall"},{"c":9,"s":0,"id":10788,"u":"tlehar_lome","p":141,"h":1,"n":"Tlehar"},{"c":9,"s":0,"id":10789,"u":"tlehar_lome","p":141,"h":1,"n":"The Rising Sun"},{"c":9,"s":0,"id":10790,"u":"uvuko_lome","p":141,"h":1,"n":"Uvuko"},{"c":9,"s":0,"id":10791,"u":"uvuko_lome","p":141,"h":1,"n":"The Diamond Ring"},{"c":72,"s":6,"id":10792,"u":"firebrands_locg","p":68,"h":1,"n":"Firebrands"},{"c":72,"s":6,"id":10793,"u":"hellknights_locg","p":78,"h":1,"n":"Hellknights"},{"c":72,"s":6,"id":10794,"u":"knights%20of%20lastwall_locg","p":88,"h":1,"n":"Knights of Lastwall"},{"c":72,"s":6,"id":10795,"u":"magaambya_locg","p":98,"h":1,"n":"Magaambya"},{"c":72,"s":6,"id":10796,"u":"pathfinder%20society_locg","p":108,"h":1,"n":"Pathfinder Society"},{"c":66,"s":12,"id":10797,"u":"abaddon_gmg","p":142,"h":1,"n":"Abaddon"},{"c":66,"s":12,"id":10798,"u":"abyss_gmg","p":142,"h":1,"n":"Abyss"},{"c":66,"s":12,"id":10799,"u":"andoran_gmg","p":131,"h":1,"n":"Andoran"},{"c":66,"s":12,"id":10800,"u":"astral%20plane_gmg","p":140,"h":1,"n":"Astral Plane"},{"c":66,"s":12,"id":10801,"u":"axis_gmg","p":142,"h":1,"n":"Axis"},{"c":66,"s":12,"id":10802,"u":"boneyard_gmg","p":142,"h":1,"n":"Boneyard"},{"c":66,"s":12,"id":10803,"u":"dimension%20of%20time_gmg","p":145,"h":1,"n":"Dimension of Time"},{"c":66,"s":12,"id":10804,"u":"dreamlands_gmg","p":145,"h":1,"n":"Dreamlands"},{"c":66,"s":12,"id":10805,"u":"elysium_gmg","p":143,"h":1,"n":"Elysium"},{"c":66,"s":12,"id":10806,"u":"ethereal%20plane_gmg","p":141,"h":1,"n":"Ethereal Plane"},{"c":66,"s":12,"id":10807,"u":"first%20world_gmg","p":141,"h":1,"n":"First World"},{"c":66,"s":12,"id":10808,"u":"heaven_gmg","p":143,"h":1,"n":"Heaven"},{"c":66,"s":12,"id":10809,"u":"hell_gmg","p":144,"h":1,"n":"Hell"},{"c":66,"s":12,"id":10810,"u":"maelstrom_gmg","p":144,"h":1,"n":"Maelstrom"},{"c":66,"s":12,"id":10811,"u":"material%20plane_gmg","p":138,"h":1,"n":"Material Plane"},{"c":66,"s":12,"id":10812,"u":"negative%20energy%20plane_gmg","p":139,"h":1,"n":"Negative Energy Plane"},{"c":66,"s":12,"id":10813,"u":"otari_gmg","p":135,"h":1,"n":"Otari"},{"c":66,"s":12,"id":10814,"u":"plane%20of%20air_gmg","p":138,"h":1,"n":"Plane of Air"},{"c":66,"s":12,"id":10815,"u":"plane%20of%20earth_gmg","p":139,"h":1,"n":"Plane of Earth"},{"c":66,"s":12,"id":10816,"u":"plane%20of%20fire_gmg","p":140,"h":1,"n":"Plane of Fire"},{"c":66,"s":12,"id":10817,"u":"plane%20of%20water_gmg","p":140,"h":1,"n":"Plane of Water"},{"c":66,"s":12,"id":10818,"u":"port%20peril_gmg","p":135,"h":1,"n":"Port Peril"},{"c":66,"s":12,"id":10819,"u":"positive%20energy%20plane_gmg","p":139,"h":1,"n":"Positive Energy Plane"},{"c":66,"s":12,"id":10820,"u":"rahadoum_gmg","p":131,"h":1,"n":"Rahadoum"},{"c":66,"s":12,"id":10821,"u":"shadow%20plane_gmg","p":141,"h":1,"n":"Shadow Plane"},{"c":66,"s":0,"id":10822,"u":"anthusis%20(capital)_lome","p":274,"h":1,"n":"Anthusis (Capital)"},{"c":66,"s":0,"id":10823,"u":"bloodcove_lome","p":184,"h":1,"n":"Bloodcove"},{"c":66,"s":0,"id":10824,"u":"jaha_lome","p":196,"h":1,"n":"Jaha"},{"c":66,"s":0,"id":10825,"u":"kibwe_lome","p":208,"h":1,"n":"Kibwe"},{"c":66,"s":0,"id":10826,"u":"mzali_lome","p":220,"h":1,"n":"Mzali"},{"c":66,"s":0,"id":10827,"u":"nantambu_lome","p":232,"h":1,"n":"Nantambu"},{"c":66,"s":0,"id":10828,"u":"osibu_lome","p":246,"h":1,"n":"Osibu"},{"c":66,"s":0,"id":10829,"u":"senghor_lome","p":254,"h":1,"n":"Senghor"},{"c":66,"s":0,"id":10830,"u":"usaro_lome","p":266,"h":1,"n":"Usaro"},{"c":51,"s":9,"id":10831,"u":"web%20lurker%20deadfall_bst","p":325,"h":1,"n":"Web Lurker Deadfall"},{"c":51,"s":9,"id":10832,"u":"web%20lurker%20noose_bst","p":325,"h":1,"n":"Web Lurker Noose"},{"c":51,"s":5,"id":10833,"u":"armageddon%20orb_crb","p":526,"h":1,"n":"Armageddon Orb"},{"c":51,"s":5,"id":10834,"u":"banshee's%20symphony_crb","p":529,"h":1,"n":"Banshee's Symphony"},{"c":51,"s":5,"id":10835,"u":"bloodthirsty%20urge_crb","p":524,"h":1,"n":"Bloodthirsty Urge"},{"c":51,"s":5,"id":10836,"u":"bottomless%20pit_crb","p":524,"h":1,"n":"Bottomless Pit"},{"c":51,"s":5,"id":10837,"u":"darkside%20mirror_crb","p":528,"h":1,"n":"Darkside Mirror"},{"c":51,"s":5,"id":10838,"u":"drowning%20pit_crb","p":526,"h":1,"n":"Drowning Pit"},{"c":51,"s":5,"id":10839,"u":"electric%20latch%20rune_crb","p":523,"h":1,"n":"Electric Latch Rune"},{"c":51,"s":5,"id":10840,"u":"fireball%20rune_crb","p":524,"h":1,"n":"Fireball Rune"},{"c":51,"s":5,"id":10841,"u":"frozen%20moment_crb","p":525,"h":1,"n":"Frozen Moment"},{"c":51,"s":5,"id":10842,"u":"hallucination%20powder%20trap_crb","p":524,"h":1,"n":"Hallucination Powder Trap"},{"c":51,"s":5,"id":10843,"u":"hammer%20of%20forbiddance_crb","p":525,"h":1,"n":"Hammer Of Forbiddance"},{"c":51,"s":5,"id":10844,"u":"hidden%20pit_crb","p":522,"h":1,"n":"Hidden Pit"},{"c":51,"s":5,"id":10845,"u":"lava%20flume%20tube_crb","p":528,"h":1,"n":"Lava Flume Tube"},{"c":51,"s":5,"id":10846,"u":"pharaoh's%20ward_crb","p":524,"h":1,"n":"Pharaoh's Ward"},{"c":51,"s":5,"id":10847,"u":"planar%20rift_crb","p":525,"h":1,"n":"Planar Rift"},{"c":51,"s":5,"id":10848,"u":"poisoned%20dart%20gallery_crb","p":528,"h":1,"n":"Poisoned Dart Gallery"},{"c":51,"s":5,"id":10849,"u":"poisoned%20lock_crb","p":523,"h":1,"n":"Poisoned Lock"},{"c":51,"s":5,"id":10850,"u":"polymorph%20trap_crb","p":525,"h":1,"n":"Polymorph Trap"},{"c":51,"s":5,"id":10851,"u":"quicksand_crb","p":526,"h":1,"n":"Quicksand"},{"c":51,"s":5,"id":10852,"u":"scythe%20blades_crb","p":523,"h":1,"n":"Scythe Blades"},{"c":51,"s":5,"id":10853,"u":"second%20chance_crb","p":525,"h":1,"n":"Second Chance"},{"c":51,"s":5,"id":10854,"u":"slamming%20door_crb","p":523,"h":1,"n":"Slamming Door"},{"c":51,"s":5,"id":10855,"u":"spear%20launcher_crb","p":523,"h":1,"n":"Spear Launcher"},{"c":51,"s":5,"id":10856,"u":"spinning%20blade%20pillar_crb","p":527,"h":1,"n":"Spinning Blade Pillar"},{"c":51,"s":5,"id":10857,"u":"summoning%20rune_crb","p":526,"h":1,"n":"Summoning Rune"},{"c":51,"s":5,"id":10858,"u":"telekinetic%20swarm%20trap_crb","p":528,"h":1,"n":"Telekinetic Swarm Trap"},{"c":51,"s":5,"id":10859,"u":"vorpal%20executioner_crb","p":525,"h":1,"n":"Vorpal Executioner"},{"c":51,"s":5,"id":10860,"u":"wheel%20of%20misery_crb","p":527,"h":1,"n":"Wheel Of Misery"},{"c":51,"s":5,"id":10861,"u":"yellow%20mold_crb","p":524,"h":1,"n":"Yellow Mold"},{"c":51,"s":13,"id":10862,"u":"gloomglow%20mushrooms_aoa1","p":57,"h":1,"n":"Gloomglow Mushrooms"},{"c":51,"s":13,"id":10863,"u":"spiked%20doorframe_aoa1","p":46,"h":1,"n":"Spiked Doorframe"},{"c":51,"s":13,"id":10864,"u":"town%20hall%20fire_aoa1","p":9,"h":1,"n":"Town Hall Fire"},{"c":51,"s":14,"id":10865,"u":"black%20powder%20bomb_aoa2","p":40,"h":1,"n":"Black Powder Bomb"},{"c":51,"s":14,"id":10866,"u":"dahak's%20shell_aoa2","p":55,"h":1,"n":"Dahak's Shell"},{"c":51,"s":14,"id":10867,"u":"dahak's%20skull_aoa2","p":61,"h":1,"n":"Dahak's Skull"},{"c":51,"s":14,"id":10868,"u":"dragon%20pillar_aoa2","p":28,"h":1,"n":"Dragon Pillar"},{"c":51,"s":14,"id":10869,"u":"vision%20of%20dahak_aoa2","p":10,"h":1,"n":"Vision Of Dahak"},{"c":51,"s":14,"id":10870,"u":"wrath%20of%20the%20destroyer_aoa2","p":57,"h":1,"n":"Wrath Of The Destroyer"},{"c":51,"s":15,"id":10871,"u":"barzillai's%20hounds_aoa3","p":27,"h":1,"n":"Barzillai's Hounds"},{"c":51,"s":15,"id":10872,"u":"phantom%20bells_aoa3","p":28,"h":1,"n":"Phantom Bells"},{"c":51,"s":15,"id":10873,"u":"quarry%20sluiceway_aoa3","p":55,"h":1,"n":"Quarry Sluiceway"},{"c":51,"s":15,"id":10874,"u":"trapped%20lathe_aoa3","p":6,"h":1,"n":"Trapped Lathe"},{"c":51,"s":15,"id":10875,"u":"tree%20of%20dreadful%20dreams_aoa3","p":11,"h":1,"n":"Tree Of Dreadful Dreams"},{"c":51,"s":16,"id":10876,"u":"ash%20web_aoa4","p":12,"h":1,"n":"Ash Web"},{"c":51,"s":16,"id":10877,"u":"echoes%20of%20betrayal_aoa4","p":53,"h":1,"n":"Echoes Of Betrayal"},{"c":51,"s":16,"id":10878,"u":"lifeleech%20crystal%20patch_aoa4","p":9,"h":1,"n":"Lifeleech Crystal Patch"},{"c":51,"s":16,"id":10879,"u":"wailing%20crystals_aoa4","p":9,"h":1,"n":"Wailing Crystals"},{"c":51,"s":17,"id":10880,"u":"acidic%20needle%20launcher_aoa5","p":54,"h":1,"n":"Acidic Needle Launcher"},{"c":51,"s":17,"id":10881,"u":"caustic%20vapor_aoa5","p":57,"h":1,"n":"Caustic Vapor"},{"c":51,"s":17,"id":10882,"u":"endless%20elven%20aging_aoa5","p":7,"h":1,"n":"Endless Elven Aging"},{"c":51,"s":17,"id":10883,"u":"luminous%20ward_aoa5","p":58,"h":1,"n":"Luminous Ward"},{"c":51,"s":17,"id":10884,"u":"mental%20scream%20trap_aoa5","p":56,"h":1,"n":"Mental Scream Trap"},{"c":51,"s":17,"id":10885,"u":"seismic%20spears%20trap_aoa5","p":19,"h":1,"n":"Seismic Spears Trap"},{"c":51,"s":18,"id":10886,"u":"damurdiel's%20vengeance_aoa6","p":18,"h":1,"n":"Damurdiel's Vengeance"},{"c":51,"s":18,"id":10887,"u":"dragonstorm_aoa6","p":7,"h":1,"n":"Dragonstorm"},{"c":51,"s":18,"id":10888,"u":"lesser%20dragonstorm_aoa6","p":6,"h":1,"n":"Lesser Dragonstorm"},{"c":51,"s":19,"id":10889,"u":"boiling%20fountains_aoe1","p":24,"h":1,"n":"Boiling Fountains"},{"c":51,"s":19,"id":10890,"u":"canopy%20drop_aoe1","p":52,"h":1,"n":"Canopy Drop"},{"c":51,"s":19,"id":10891,"u":"dart%20barrage_aoe1","p":24,"h":1,"n":"Dart Barrage"},{"c":51,"s":19,"id":10892,"u":"exploding%20statue_aoe1","p":26,"h":1,"n":"Exploding Statue"},{"c":51,"s":19,"id":10893,"u":"explosive%20barrels_aoe1","p":10,"h":1,"n":"Explosive Barrels"},{"c":51,"s":19,"id":10894,"u":"flying%20guillotine_aoe1","p":49,"h":1,"n":"Flying Guillotine"},{"c":51,"s":19,"id":10895,"u":"gas%20trap_aoe1","p":57,"h":1,"n":"Gas Trap"},{"c":51,"s":19,"id":10896,"u":"hidden%20chute_aoe1","p":48,"h":1,"n":"Hidden Chute"},{"c":51,"s":19,"id":10897,"u":"plunger%20chute_aoe1","p":58,"h":1,"n":"Plunger Chute"},{"c":51,"s":19,"id":10898,"u":"summoning%20rune_aoe1","p":50,"h":1,"n":"Summoning Rune"},{"c":51,"s":19,"id":10899,"u":"summoning%20rune_aoe1","p":51,"h":1,"n":"Summoning Rune"},{"c":51,"s":20,"id":10900,"u":"hands%20of%20the%20forgotten_aoe2","p":37,"h":1,"n":"Hands Of The Forgotten"},{"c":51,"s":20,"id":10901,"u":"iron%20maiden%20trap_aoe2","p":52,"h":1,"n":"Iron Maiden Trap"},{"c":51,"s":20,"id":10902,"u":"life%20magnet_aoe2","p":36,"h":1,"n":"Life Magnet"},{"c":51,"s":20,"id":10903,"u":"rigged%20cubby_aoe2","p":51,"h":1,"n":"Rigged Cubby"},{"c":51,"s":21,"id":10904,"u":"acidic%20poison%20cloud%20trap_aoe3","p":46,"h":1,"n":"Acidic Poison Cloud Trap"},{"c":51,"s":21,"id":10905,"u":"boiling%20tub%20trap_aoe3","p":56,"h":1,"n":"Boiling Tub Trap"},{"c":51,"s":21,"id":10906,"u":"clockwork%20poison%20bomb_aoe3","p":58,"h":1,"n":"Clockwork Poison Bomb"},{"c":51,"s":21,"id":10907,"u":"needling%20stairs_aoe3","p":19,"h":1,"n":"Needling Stairs"},{"c":51,"s":22,"id":10908,"u":"arcane%20feedback%20trap_aoe4","p":47,"h":1,"n":"Arcane Feedback Trap"},{"c":51,"s":22,"id":10909,"u":"burning%20chandelier%20trap_aoe4","p":38,"h":1,"n":"Burning Chandelier Trap"},{"c":51,"s":22,"id":10910,"u":"false%20door%20trap_aoe4","p":23,"h":1,"n":"False Door Trap"},{"c":51,"s":22,"id":10911,"u":"poisoned%20dart%20statues_aoe4","p":30,"h":1,"n":"Poisoned Dart Statues"},{"c":51,"s":22,"id":10912,"u":"supplicant%20statues_aoe4","p":9,"h":1,"n":"Supplicant Statues"},{"c":51,"s":22,"id":10913,"u":"waxworks%20onslaught%20trap_aoe4","p":60,"h":1,"n":"Waxworks Onslaught Trap"},{"c":51,"s":23,"id":10914,"u":"clockwork%20arms_aoe5","p":56,"h":1,"n":"Clockwork Arms"},{"c":51,"s":23,"id":10915,"u":"eyeball%20tank_aoe5","p":51,"h":1,"n":"Eyeball Tank"},{"c":51,"s":23,"id":10916,"u":"ink%20drowning%20vats_aoe5","p":49,"h":1,"n":"Ink Drowning Vats"},{"c":51,"s":23,"id":10917,"u":"the%20winder_aoe5","p":63,"h":1,"n":"The Winder"},{"c":51,"s":24,"id":10918,"u":"blackfingers's%20prayer_aoe6","p":49,"h":1,"n":"Blackfingers's Prayer"},{"c":51,"s":24,"id":10919,"u":"field%20of%20opposition_aoe6","p":53,"h":1,"n":"Field Of Opposition"},{"c":51,"s":24,"id":10920,"u":"freezing%20alarm_aoe6","p":37,"h":1,"n":"Freezing Alarm"},{"c":51,"s":24,"id":10921,"u":"greater%20planar%20rift_aoe6","p":30,"h":1,"n":"Greater Planar Rift"},{"c":51,"s":24,"id":10922,"u":"inky%20tendrils_aoe6","p":54,"h":1,"n":"Inky Tendrils"},{"c":51,"s":24,"id":10923,"u":"kharnas's%20lesser%20glyph_aoe6","p":29,"h":1,"n":"Kharnas's Lesser Glyph"},{"c":51,"s":24,"id":10924,"u":"living%20paints_aoe6","p":32,"h":1,"n":"Living Paints"},{"c":51,"s":24,"id":10925,"u":"the%20laughing%20fiend's%20greeting_aoe6","p":34,"h":1,"n":"The Laughing Fiend's Greeting"},{"c":51,"s":25,"id":10926,"u":"blood%20of%20belcorra_av1","p":13,"h":1,"n":"Blood Of Belcorra"},{"c":51,"s":25,"id":10927,"u":"doom%20of%20tomorrow_av1","p":31,"h":1,"n":"Doom Of Tomorrow"},{"c":51,"s":25,"id":10928,"u":"spike%20launcher_av1","p":25,"h":1,"n":"Spike Launcher"},{"c":51,"s":25,"id":10929,"u":"stonescale%20spirits_av1","p":9,"h":1,"n":"Stonescale Spirits"},{"c":51,"s":25,"id":10930,"u":"vengeful%20furnace_av1","p":46,"h":1,"n":"Vengeful Furnace"},{"c":51,"s":25,"id":10931,"u":"watching%20wall_av1","p":37,"h":1,"n":"Watching Wall"},{"c":51,"s":26,"id":10932,"u":"painful%20suggestion%20trap_av2","p":54,"h":1,"n":"Painful Suggestion Trap"},{"c":51,"s":26,"id":10933,"u":"paralyzing%20light%20trap_av2","p":52,"h":1,"n":"Paralyzing Light Trap"},{"c":51,"s":26,"id":10934,"u":"rusty%20grate%20pit_av2","p":12,"h":1,"n":"Rusty Grate Pit"},{"c":51,"s":26,"id":10935,"u":"shuffling%20scythe%20blades_av2","p":21,"h":1,"n":"Shuffling Scythe Blades"},{"c":51,"s":27,"id":10936,"u":"befuddling%20gas%20trap_av3","p":52,"h":1,"n":"Befuddling Gas Trap"},{"c":51,"s":27,"id":10937,"u":"blast%20tumbler_av3","p":45,"h":1,"n":"Blast Tumbler"},{"c":51,"s":27,"id":10938,"u":"daemonic%20fog_av3","p":38,"h":1,"n":"Daemonic Fog"},{"c":51,"s":27,"id":10939,"u":"images%20of%20failure_av3","p":55,"h":1,"n":"Images Of Failure"},{"c":51,"s":27,"id":10940,"u":"images%20of%20powerlessness_av3","p":55,"h":1,"n":"Images Of Powerlessness"},{"c":51,"s":28,"id":10941,"u":"catacomb%20cave-in_ec1","p":37,"h":1,"n":"Catacomb Cave-in"},{"c":51,"s":28,"id":10942,"u":"dream%20pollen%20pods_ec1","p":12,"h":1,"n":"Dream Pollen Pods"},{"c":51,"s":28,"id":10943,"u":"envenomed%20thorns%20trap_ec1","p":13,"h":1,"n":"Envenomed Thorns Trap"},{"c":51,"s":29,"id":10944,"u":"echoes%20of%20faith_ec2","p":29,"h":1,"n":"Echoes Of Faith"},{"c":51,"s":29,"id":10945,"u":"ghost%20crystal%20cloud_ec2","p":28,"h":1,"n":"Ghost Crystal Cloud"},{"c":51,"s":29,"id":10946,"u":"hallowed%20wheel_ec2","p":51,"h":1,"n":"Hallowed Wheel"},{"c":51,"s":29,"id":10947,"u":"krooth%20summoning%20rune_ec2","p":30,"h":1,"n":"Krooth Summoning Rune"},{"c":51,"s":29,"id":10948,"u":"masks%20of%20aroden's%20guises_ec2","p":37,"h":1,"n":"Masks Of Aroden's Guises"},{"c":51,"s":29,"id":10949,"u":"maze%20of%20mirrors_ec2","p":56,"h":1,"n":"Maze Of Mirrors"},{"c":51,"s":29,"id":10950,"u":"thunderstone%20cascade%20trap_ec2","p":14,"h":1,"n":"Thunderstone Cascade Trap"},{"c":51,"s":8,"id":10951,"u":"caustic%20dart%20trap_ec3","p":29,"h":1,"n":"Caustic Dart Trap"},{"c":51,"s":8,"id":10952,"u":"raving%20spirit_ec3","p":25,"h":1,"n":"Raving Spirit"},{"c":51,"s":30,"id":10953,"u":"buzzing%20latch%20rune_ec4","p":21,"h":1,"n":"Buzzing Latch Rune"},{"c":51,"s":30,"id":10954,"u":"explosive%20furniture%20trap_ec4","p":18,"h":1,"n":"Explosive Furniture Trap"},{"c":51,"s":30,"id":10955,"u":"mukradi%20summoning%20runes_ec4","p":35,"h":1,"n":"Mukradi Summoning Runes"},{"c":51,"s":30,"id":10956,"u":"poisoned%20secret%20door%20trap_ec4","p":36,"h":1,"n":"Poisoned Secret Door Trap"},{"c":51,"s":30,"id":10957,"u":"spiked%20barricade%20trap_ec4","p":45,"h":1,"n":"Spiked Barricade Trap"},{"c":51,"s":31,"id":10958,"u":"crushing%20gate%20trap_ec5","p":14,"h":1,"n":"Crushing Gate Trap"},{"c":51,"s":31,"id":10959,"u":"host%20of%20spirits_ec5","p":27,"h":1,"n":"Host Of Spirits"},{"c":51,"s":31,"id":10960,"u":"imperious%20darkside%20mirror_ec5","p":54,"h":1,"n":"Imperious Darkside Mirror"},{"c":51,"s":31,"id":10961,"u":"stabbing%20sentinel_ec5","p":53,"h":1,"n":"Stabbing Sentinel"},{"c":51,"s":31,"id":10962,"u":"witch-priests'%20curse_ec5","p":34,"h":1,"n":"Witch-priests' Curse"},{"c":51,"s":32,"id":10963,"u":"angry%20vegetation_ec6","p":41,"h":1,"n":"Angry Vegetation"},{"c":51,"s":32,"id":10964,"u":"axiomatic%20polymorph%20trap_ec6","p":49,"h":1,"n":"Axiomatic Polymorph Trap"},{"c":51,"s":32,"id":10965,"u":"convergence%20lattice_ec6","p":15,"h":1,"n":"Convergence Lattice"},{"c":51,"s":32,"id":10966,"u":"guthallath%20rockslide_ec6","p":25,"h":1,"n":"Guthallath Rockslide"},{"c":51,"s":32,"id":10967,"u":"suffering%20xulgaths_ec6","p":22,"h":1,"n":"Suffering Xulgaths"},{"c":51,"s":32,"id":10968,"u":"thief's%20trap_ec6","p":36,"h":1,"n":"Thief's Trap"},{"c":51,"s":33,"id":10969,"u":"falling%20debris_fop","p":18,"h":1,"n":"Falling Debris"},{"c":51,"s":33,"id":10970,"u":"ice%20fall%20trap_fop","p":41,"h":1,"n":"Ice Fall Trap"},{"c":51,"s":33,"id":10971,"u":"poisoned%20lock_fop","p":19,"h":1,"n":"Poisoned Lock"},{"c":51,"s":33,"id":10972,"u":"spear%20launcher_fop","p":17,"h":1,"n":"Spear Launcher"},{"c":51,"s":34,"id":10973,"u":"broken%20rebus%20attack_frp1","p":15,"h":1,"n":"Broken Rebus Attack"},{"c":51,"s":34,"id":10974,"u":"sand%20whirlwind_frp1","p":18,"h":1,"n":"Sand Whirlwind"},{"c":51,"s":34,"id":10975,"u":"wronged%20monk's%20wrath_frp1","p":17,"h":1,"n":"Wronged Monk's Wrath"},{"c":51,"s":35,"id":10976,"u":"air%20rift_frp2","p":17,"h":1,"n":"Air Rift"},{"c":51,"s":35,"id":10977,"u":"collapsing%20structure_frp2","p":88,"h":1,"n":"Collapsing Structure"},{"c":51,"s":35,"id":10978,"u":"floating%20flamethrower_frp2","p":44,"h":1,"n":"Floating Flamethrower"},{"c":51,"s":35,"id":10979,"u":"freezing%20floor%20tiles_frp2","p":45,"h":1,"n":"Freezing Floor Tiles"},{"c":51,"s":35,"id":10980,"u":"mogaru's%20breath_frp2","p":89,"h":1,"n":"Mogaru's Breath"},{"c":51,"s":35,"id":10981,"u":"quaking%20footfalls_frp2","p":88,"h":1,"n":"Quaking Footfalls"},{"c":51,"s":35,"id":10982,"u":"swatting%20tail_frp2","p":89,"h":1,"n":"Swatting Tail"},{"c":51,"s":36,"id":10983,"u":"dimensional%20darkside%20mirror_frp3","p":44,"h":1,"n":"Dimensional Darkside Mirror"},{"c":51,"s":2,"id":10984,"u":"instant%20privacy%20fence_g%26g","p":81,"h":1,"n":"Instant Privacy Fence"},{"c":51,"s":2,"id":10985,"u":"malevolant%20mannequins_g%26g","p":81,"h":1,"n":"Malevolant Mannequins"},{"c":51,"s":2,"id":10986,"u":"steam%20vents_g%26g","p":81,"h":1,"n":"Steam Vents"},{"c":51,"s":37,"id":10987,"u":"precarious%20pile_ltiba","p":3,"h":1,"n":"Precarious Pile"},{"c":51,"s":38,"id":10988,"u":"angazhan's%20rake%20trap_sli","p":29,"h":1,"n":"Angazhan's Rake Trap"},{"c":51,"s":38,"id":10989,"u":"fiendripping%20blast%20trap_sli","p":32,"h":1,"n":"Fiendripping Blast Trap"},{"c":51,"s":38,"id":10990,"u":"scroll%20shock%20trap_sli","p":47,"h":1,"n":"Scroll Shock Trap"},{"c":51,"s":38,"id":10991,"u":"stalker%20summoning%20rune_sli","p":15,"h":1,"n":"Stalker Summoning Rune"},{"c":51,"s":39,"id":10992,"u":"centipede%20carcasses%20trap_sot1","p":50,"h":1,"n":"Centipede Carcasses Trap"},{"c":51,"s":40,"id":10993,"u":"agitated%20carnivorous%20plants_sot2","p":36,"h":1,"n":"Agitated Carnivorous Plants"},{"c":51,"s":40,"id":10994,"u":"boulder%20deadfall%20trap_sot2","p":40,"h":1,"n":"Boulder Deadfall Trap"},{"c":51,"s":40,"id":10995,"u":"electrified%20water%20ward_sot2","p":57,"h":1,"n":"Electrified Water Ward"},{"c":51,"s":40,"id":10996,"u":"serpent%20ward_sot2","p":9,"h":1,"n":"Serpent Ward"},{"c":51,"s":41,"id":10997,"u":"collapsing%20porch_tio","p":14,"h":1,"n":"Collapsing Porch"},{"c":51,"s":41,"id":10998,"u":"magic%20starknives%20trap_tio","p":28,"h":1,"n":"Magic Starknives Trap"},{"c":51,"s":41,"id":10999,"u":"nightmare%20terrain_tio","p":41,"h":1,"n":"Nightmare Terrain"},{"c":51,"s":41,"id":11000,"u":"tongues%20of%20flame_tio","p":44,"h":1,"n":"Tongues Of Flame"},{"c":51,"s":41,"id":11001,"u":"viper%20urn_tio","p":31,"h":1,"n":"Viper Urn"},{"c":51,"s":41,"id":11002,"u":"web%20lurker%20noose_tio","p":17,"h":1,"n":"Web Lurker Noose"},{"c":13,"s":5,"id":11003,"u":"ability%20modifiers_crb","p":20,"h":1,"n":"1-1: Ability Modifiers"},{"c":13,"s":5,"id":11004,"u":"adventuring%20gear_crb","p":288,"h":1,"n":"6-9: Adventuring Gear"},{"c":13,"s":5,"id":11005,"u":"alchemical%20gear_crb","p":292,"h":1,"n":"6-11: Alchemical Gear"},{"c":13,"s":5,"id":11006,"u":"alignment%20aura_crb","p":328,"h":1,"n":"Alignment Aura"},{"c":13,"s":5,"id":11007,"u":"animal%20instincts_crb","p":86,"h":1,"n":"3-3: Animal Instincts"},{"c":13,"s":5,"id":11008,"u":"animals_crb","p":294,"h":1,"n":"6-17: Animals"},{"c":13,"s":5,"id":11009,"u":"armor_crb","p":275,"h":1,"n":"6-4: Armor"},{"c":13,"s":5,"id":11010,"u":"armor%20upgrade%20prices_crb","p":582,"h":1,"n":"11-5: Armor Upgrade Prices"},{"c":13,"s":5,"id":11011,"u":"barding_crb","p":294,"h":1,"n":"6-18: Barding"},{"c":13,"s":5,"id":11012,"u":"basic%20services%20and%20consumables_crb","p":294,"h":1,"n":"6-14: Basic Services and Consumables"},{"c":13,"s":5,"id":11013,"u":"bulk%20conversions_crb","p":295,"h":1,"n":"6-19: Bulk conversions"},{"c":13,"s":5,"id":11014,"u":"bulk%20of%20creatures_crb","p":273,"h":1,"n":"Bulk of Creatures"},{"c":13,"s":5,"id":11015,"u":"changing%20equipment_crb","p":274,"h":1,"n":"6-2: Changing Equipment"},{"c":13,"s":5,"id":11016,"u":"character%20wealth_crb","p":511,"h":1,"n":"10-10: Character Wealth"},{"c":13,"s":5,"id":11017,"u":"climb%20and%20swim%20distance_crb","p":242,"h":1,"n":"4-4: Climb and Swim Distance"},{"c":13,"s":5,"id":11018,"u":"coin%20values_crb","p":271,"h":1,"n":"6-1: Coin Values"},{"c":13,"s":5,"id":11019,"u":"common%20languages_crb","p":65,"h":1,"n":"2-1: Common Languages"},{"c":13,"s":5,"id":11020,"u":"cost%20of%20living_crb","p":294,"h":1,"n":"6-16: Cost of Living"},{"c":13,"s":5,"id":11021,"u":"creature%20creation%20rituals_crb","p":408,"h":1,"n":"7-1: Creature Creation Rituals"},{"c":13,"s":5,"id":11022,"u":"creature%20identification%20skills_crb","p":506,"h":1,"n":"10-7: Creature Identification Skills"},{"c":13,"s":5,"id":11023,"u":"creature%20xp%20and%20role_crb","p":489,"h":1,"n":"10-2: Creature XP and Role"},{"c":13,"s":5,"id":11024,"u":"damaging%20armor_crb","p":276,"h":1,"n":"Damaging Armor"},{"c":13,"s":5,"id":11025,"u":"dc%20adjustments_crb","p":504,"h":1,"n":"10-6: DC Adjustments"},{"c":13,"s":5,"id":11026,"u":"dcs%20by%20level_crb","p":503,"h":1,"n":"10-5: DCs by Level"},{"c":13,"s":5,"id":11027,"u":"differently%20sized%20items_crb","p":295,"h":1,"n":"6-20: Differently Sized Items"},{"c":13,"s":5,"id":11028,"u":"domains_crb","p":441,"h":1,"n":"8-2: Domains"},{"c":13,"s":5,"id":11029,"u":"dragon%20instincts_crb","p":86,"h":1,"n":"3-4: Dragon Instincts"},{"c":13,"s":5,"id":11030,"u":"encounter%20budget_crb","p":489,"h":1,"n":"10-1: Encounter Budget"},{"c":13,"s":5,"id":11031,"u":"enviromental%20damage_crb","p":512,"h":1,"n":"10-11: Enviromental Damage"},{"c":13,"s":5,"id":11032,"u":"enviromental%20features_crb","p":513,"h":1,"n":"10-12: Enviromental Features"},{"c":13,"s":5,"id":11033,"u":"formulas_crb","p":293,"h":1,"n":"6-13: Formulas"},{"c":13,"s":5,"id":11034,"u":"fundamental%20runes_crb","p":580,"h":1,"n":"Fundamental Runes"},{"c":13,"s":5,"id":11035,"u":"general%20feats_crb","p":255,"h":1,"n":"5-1: General Feats"},{"c":13,"s":5,"id":11036,"u":"general%20skill%20feats_crb","p":255,"h":1,"n":"5-2: General Skill Feats"},{"c":13,"s":5,"id":11037,"u":"hazard%20xp_crb","p":521,"h":1,"n":"10-14: Hazard XP"},{"c":13,"s":5,"id":11038,"u":"income%20earned_crb","p":236,"h":1,"n":"4-2: Income Earned"},{"c":13,"s":5,"id":11039,"u":"learning%20a%20spell_crb","p":238,"h":1,"n":"4-3: Learning a Spell"},{"c":13,"s":5,"id":11040,"u":"magical%20gear_crb","p":293,"h":1,"n":"6-12: Magical Gear"},{"c":13,"s":5,"id":11041,"u":"material%20hardness%2c%20hit%20points%2c%20and%20broken%20threshold_crb","p":577,"h":1,"n":"11-4: Material Hardness, Hit Points, and Broken Threshold"},{"c":13,"s":5,"id":11042,"u":"melee%20weapons_crb","p":280,"h":1,"n":"6-7: Melee Weapons"},{"c":13,"s":5,"id":11043,"u":"monk%20unarmed%20attacks_crb","p":159,"h":1,"n":"Monk Unarmed Attacks"},{"c":13,"s":5,"id":11044,"u":"party%20treasure%20by%20level_crb","p":509,"h":1,"n":"10-9: Party Treasure by Level"},{"c":13,"s":5,"id":11045,"u":"ranged%20weapons_crb","p":280,"h":1,"n":"6-8: Ranged Weapons"},{"c":13,"s":5,"id":11046,"u":"regional%20languages_crb","p":432,"h":1,"n":"8-1: Regional Languages"},{"c":13,"s":5,"id":11047,"u":"rituals%20by%20level_crb","p":409,"h":1,"n":"7-2: Rituals by Level"},{"c":13,"s":5,"id":11048,"u":"scroll%20statistics_crb","p":565,"h":1,"n":"11-3: Scroll Statistics"},{"c":13,"s":5,"id":11049,"u":"secret%20language_crb","p":65,"h":1,"n":"2-3: Secret Language"},{"c":13,"s":5,"id":11050,"u":"shields_crb","p":277,"h":1,"n":"6-5: Shields"},{"c":13,"s":5,"id":11051,"u":"simple%20dcs_crb","p":503,"h":1,"n":"10-4: Simple DCs"},{"c":13,"s":5,"id":11052,"u":"size%20and%20reach_crb","p":474,"h":1,"n":"9-1: Size and Reach"},{"c":13,"s":5,"id":11053,"u":"skills%2c%20key%20abilities%2c%20and%20actions_crb","p":235,"h":1,"n":"4-1: Skills, Key Abilities, and Actions"},{"c":13,"s":5,"id":11054,"u":"spellcasting%20services_crb","p":294,"h":1,"n":"6-15: Spellcasting Services"},{"c":13,"s":5,"id":11055,"u":"temperature%20effects_crb","p":518,"h":1,"n":"10-13: Temperature Effects"},{"c":13,"s":5,"id":11056,"u":"the%20nine%20alignments_crb","p":29,"h":1,"n":"1-2: The Nine Alignments"},{"c":13,"s":5,"id":11057,"u":"travel%20speed_crb","p":479,"h":1,"n":"9-2: Travel Speed"},{"c":13,"s":5,"id":11058,"u":"unarmed%20attacks_crb","p":280,"h":1,"n":"6-6: Unarmed Attacks"},{"c":13,"s":5,"id":11059,"u":"unarmored%20defense_crb","p":275,"h":1,"n":"6-3: Unarmored Defense"},{"c":13,"s":5,"id":11060,"u":"uncommon%20adventuring%20gear_crb","p":288,"h":1,"n":"6-10: Uncommon Adventuring Gear"},{"c":13,"s":5,"id":11061,"u":"uncommon%20languages_crb","p":65,"h":1,"n":"2-2: Uncommon Languages"},{"c":13,"s":5,"id":11062,"u":"watches%20and%20rest_crb","p":500,"h":1,"n":"10-3: Watches and Rest"},{"c":13,"s":5,"id":11063,"u":"weapon%20upgrade%20price_crb","p":582,"h":1,"n":"11-6: Weapon Upgrade Price"},{"c":13,"s":5,"id":11064,"u":"xp%20awards_crb","p":508,"h":1,"n":"10-8: XP Awards"},{"c":13,"s":12,"id":11065,"u":"automatic%20bonus%20progression_gmg","p":196,"h":1,"n":"4-11: Automatic Bonus Progression"},{"c":13,"s":12,"id":11066,"u":"cost%20to%20increase%20rank_gmg","p":199,"h":1,"n":"4-20: Cost to Increase Rank"},{"c":13,"s":12,"id":11067,"u":"creature%20xp%20(no%20level)_gmg","p":198,"h":1,"n":"4-18: Creature XP (No Level)"},{"c":13,"s":12,"id":11068,"u":"devastating%20weapons_gmg","p":197,"h":1,"n":"4-14: Devastating Weapons"},{"c":13,"s":12,"id":11069,"u":"high-quality%20armor_gmg","p":197,"h":1,"n":"4-13: High-Quality Armor"},{"c":13,"s":12,"id":11070,"u":"high-quality%20skill%20item_gmg","p":197,"h":1,"n":"4-16: High-Quality Skill Item"},{"c":13,"s":12,"id":11071,"u":"high-quality%20weapons_gmg","p":197,"h":1,"n":"4-12: High-Quality Weapons"},{"c":13,"s":12,"id":11072,"u":"resilient%20armor_gmg","p":197,"h":1,"n":"4-15: Resilient Armor"},{"c":13,"s":12,"id":11073,"u":"simple%20skill%20dcs%20(no%20level)_gmg","p":198,"h":1,"n":"4-17: Simple Skill DCs (No Level)"},{"c":13,"s":12,"id":11074,"u":"skill%20points%20by%20level_gmg","p":199,"h":1,"n":"4-19: Skill Points by Level"},{"c":13,"s":12,"id":11075,"u":"stamina%20and%20hit%20points%20by%20class_gmg","p":200,"h":1,"n":"4-20: Stamina and Hit Points by Class"},{"c":13,"s":2,"id":11076,"u":"innovation%20armor%20statistics_g%26g","p":16,"h":1,"n":"2-2: Innovation Armor Statistics"},{"c":13,"s":51,"id":11077,"u":"domains_logm","p":112,"h":1,"n":"1: Domains"},{"c":13,"s":49,"id":11078,"u":"wellspring%20surges_som","p":250,"h":1,"n":"5-2: Wellspring Surges"},{"c":8,"s":4,"id":11079,"u":"clue%20in_apg","p":56,"h":1,"n":"Clue In"},{"c":8,"s":4,"id":11080,"u":"confident%20finisher_apg","p":85,"h":1,"n":"Confident Finisher"},{"c":8,"s":4,"id":11081,"u":"destructive%20vengeance_apg","p":116,"h":1,"n":"Destructive Vengeance"},{"c":8,"s":4,"id":11082,"u":"devise%20a%20stratagem_apg","p":56,"h":1,"n":"Devise a Stratagem"},{"c":8,"s":4,"id":11083,"u":"expeditious%20inspection_apg","p":57,"h":1,"n":"Expeditious Inspection"},{"c":8,"s":4,"id":11084,"u":"iron%20command_apg","p":116,"h":1,"n":"Iron Command"},{"c":8,"s":4,"id":11085,"u":"opportune%20riposte_apg","p":86,"h":1,"n":"Opportune Riposte"},{"c":8,"s":4,"id":11086,"u":"pointed%20question_apg","p":58,"h":1,"n":"Pointed Question"},{"c":8,"s":4,"id":11087,"u":"pursue%20a%20lead_apg","p":56,"h":1,"n":"Pursue a Lead"},{"c":8,"s":4,"id":11088,"u":"quick%20tincture_apg","p":57,"h":1,"n":"Quick Tincture"},{"c":8,"s":4,"id":11089,"u":"selfish%20shield_apg","p":116,"h":1,"n":"Selfish Shield"},{"c":8,"s":4,"id":11090,"u":"tail%20toxin_apg","p":14,"h":1,"n":"Tail Toxin"},{"c":8,"s":5,"id":11091,"u":"activate%20an%20item_crb","p":532,"h":1,"n":"Activate an Item"},{"c":8,"s":5,"id":11092,"u":"administer%20first%20aid_crb","p":248,"h":1,"n":"Administer First Aid"},{"c":8,"s":5,"id":11093,"u":"affix%20a%20talisman_crb","p":565,"h":1,"n":"Affix a Talisman"},{"c":8,"s":5,"id":11094,"u":"aid_crb","p":470,"h":1,"n":"Aid"},{"c":8,"s":5,"id":11095,"u":"arrest%20a%20fall_crb","p":472,"h":1,"n":"Arrest a Fall"},{"c":8,"s":5,"id":11096,"u":"attack%20of%20opportunity_crb","p":474,"h":1,"n":"Attack of Opportunity"},{"c":8,"s":5,"id":11097,"u":"avert%20gaze_crb","p":472,"h":1,"n":"Avert Gaze"},{"c":8,"s":5,"id":11098,"u":"avoid%20notice_crb","p":479,"h":1,"n":"Avoid Notice"},{"c":8,"s":5,"id":11099,"u":"balance_crb","p":240,"h":1,"n":"Balance"},{"c":8,"s":5,"id":11100,"u":"borrow%20an%20arcane%20spell_crb","p":241,"h":1,"n":"Borrow an Arcane Spell"},{"c":8,"s":5,"id":11101,"u":"burrow_crb","p":472,"h":1,"n":"Burrow"},{"c":8,"s":5,"id":11102,"u":"call%20on%20ancient%20blood_crb","p":35,"h":1,"n":"Call on Ancient Blood"},{"c":8,"s":5,"id":11103,"u":"cast%20a%20spell_crb","p":302,"h":1,"n":"Cast a Spell"},{"c":8,"s":5,"id":11104,"u":"climb_crb","p":241,"h":1,"n":"Climb"},{"c":8,"s":5,"id":11105,"u":"coerce_crb","p":247,"h":1,"n":"Coerce"},{"c":8,"s":5,"id":11106,"u":"command%20an%20animal_crb","p":249,"h":1,"n":"Command an Animal"},{"c":8,"s":5,"id":11107,"u":"conceal%20an%20object_crb","p":251,"h":1,"n":"Conceal an Object"},{"c":8,"s":5,"id":11108,"u":"cover%20tracks_crb","p":252,"h":1,"n":"Cover Tracks"},{"c":8,"s":5,"id":11109,"u":"craft_crb","p":244,"h":1,"n":"Craft"},{"c":8,"s":5,"id":11110,"u":"crawl_crb","p":470,"h":1,"n":"Crawl"},{"c":8,"s":5,"id":11111,"u":"create%20a%20diversion_crb","p":245,"h":1,"n":"Create a Diversion"},{"c":8,"s":5,"id":11112,"u":"create%20forgery_crb","p":251,"h":1,"n":"Create Forgery"},{"c":8,"s":5,"id":11113,"u":"debilitating%20strike_crb","p":182,"h":1,"n":"Debilitating Strike"},{"c":8,"s":5,"id":11114,"u":"decipher%20writing_crb","p":234,"h":1,"n":"Decipher Writing"},{"c":8,"s":5,"id":11115,"u":"defend_crb","p":479,"h":1,"n":"Defend"},{"c":8,"s":5,"id":11116,"u":"delay_crb","p":470,"h":1,"n":"Delay"},{"c":8,"s":5,"id":11117,"u":"demoralize_crb","p":247,"h":1,"n":"Demoralize"},{"c":8,"s":5,"id":11118,"u":"detect%20magic_crb","p":479,"h":1,"n":"Detect Magic"},{"c":8,"s":5,"id":11119,"u":"disable%20a%20device_crb","p":253,"h":1,"n":"Disable a Device"},{"c":8,"s":5,"id":11120,"u":"disarm_crb","p":243,"h":1,"n":"Disarm"},{"c":8,"s":5,"id":11121,"u":"dismiss_crb","p":305,"h":1,"n":"Dismiss"},{"c":8,"s":5,"id":11122,"u":"drain%20bonded%20item_crb","p":205,"h":1,"n":"Drain Bonded Item"},{"c":8,"s":5,"id":11123,"u":"drop%20prone_crb","p":470,"h":1,"n":"Drop Prone"},{"c":8,"s":5,"id":11124,"u":"earn%20income_crb","p":236,"h":1,"n":"Earn Income"},{"c":8,"s":5,"id":11125,"u":"escape_crb","p":470,"h":1,"n":"Escape"},{"c":8,"s":5,"id":11126,"u":"feint_crb","p":246,"h":1,"n":"Feint"},{"c":8,"s":5,"id":11127,"u":"flurry%20of%20blows_crb","p":156,"h":1,"n":"Flurry of Blows"},{"c":8,"s":5,"id":11128,"u":"fly_crb","p":305,"h":1,"n":"Fly"},{"c":8,"s":5,"id":11129,"u":"follow%20the%20expert_crb","p":479,"h":1,"n":"Follow the Expert"},{"c":8,"s":5,"id":11130,"u":"force%20open_crb","p":242,"h":1,"n":"Force Open"},{"c":8,"s":5,"id":11131,"u":"gather%20information_crb","p":246,"h":1,"n":"Gather Information"},{"c":8,"s":5,"id":11132,"u":"glimpse%20of%20redemption_crb","p":107,"h":1,"n":"Glimpse of Redemption"},{"c":8,"s":5,"id":11133,"u":"grab%20an%20edge_crb","p":472,"h":1,"n":"Grab an Edge"},{"c":8,"s":5,"id":11134,"u":"grapple_crb","p":242,"h":1,"n":"Grapple"},{"c":8,"s":5,"id":11135,"u":"hide_crb","p":251,"h":1,"n":"Hide"},{"c":8,"s":5,"id":11136,"u":"high%20jump_crb","p":242,"h":1,"n":"High Jump"},{"c":8,"s":5,"id":11137,"u":"hunt%20prey_crb","p":168,"h":1,"n":"Hunt Prey"},{"c":8,"s":5,"id":11138,"u":"hustle_crb","p":480,"h":1,"n":"Hustle"},{"c":8,"s":5,"id":11139,"u":"identify%20alchemy_crb","p":245,"h":1,"n":"Identify Alchemy"},{"c":8,"s":5,"id":11140,"u":"identify%20magic_crb","p":238,"h":1,"n":"Identify Magic"},{"c":8,"s":5,"id":11141,"u":"impersonate_crb","p":245,"h":1,"n":"Impersonate"},{"c":8,"s":5,"id":11142,"u":"interact_crb","p":470,"h":1,"n":"Interact"},{"c":8,"s":5,"id":11143,"u":"invest%20an%20item_crb","p":531,"h":1,"n":"Invest an Item"},{"c":8,"s":5,"id":11144,"u":"investigate_crb","p":480,"h":1,"n":"Investigate"},{"c":8,"s":5,"id":11145,"u":"invoke%20celestial%20privilege_crb","p":123,"h":1,"n":"Invoke Celestial Privilege"},{"c":8,"s":5,"id":11146,"u":"leap_crb","p":470,"h":1,"n":"Leap"},{"c":8,"s":5,"id":11147,"u":"learn%20a%20spell_crb","p":238,"h":1,"n":"Learn a Spell"},{"c":8,"s":5,"id":11148,"u":"liberating%20step_crb","p":107,"h":1,"n":"Liberating Step"},{"c":8,"s":5,"id":11149,"u":"lie_crb","p":246,"h":1,"n":"Lie"},{"c":8,"s":5,"id":11150,"u":"long%20jump_crb","p":242,"h":1,"n":"Long Jump"},{"c":8,"s":5,"id":11151,"u":"long-term%20rest_crb","p":481,"h":1,"n":"Long-Term Rest"},{"c":8,"s":5,"id":11152,"u":"make%20an%20impression_crb","p":246,"h":1,"n":"Make an Impression"},{"c":8,"s":5,"id":11153,"u":"maneuver%20in%20flight_crb","p":240,"h":1,"n":"Maneuver in Flight"},{"c":8,"s":5,"id":11154,"u":"master%20strike_crb","p":182,"h":1,"n":"Master Strike"},{"c":8,"s":5,"id":11155,"u":"mighty%20rage_crb","p":85,"h":1,"n":"Mighty Rage"},{"c":8,"s":5,"id":11156,"u":"mount_crb","p":472,"h":1,"n":"Mount"},{"c":8,"s":5,"id":11157,"u":"mutagenic%20flashback_crb","p":73,"h":1,"n":"Mutagenic Flashback"},{"c":8,"s":5,"id":11158,"u":"palm%20an%20object_crb","p":253,"h":1,"n":"Palm an Object"},{"c":8,"s":5,"id":11159,"u":"perform_crb","p":250,"h":1,"n":"Perform"},{"c":8,"s":5,"id":11160,"u":"pick%20a%20lock_crb","p":253,"h":1,"n":"Pick a Lock"},{"c":8,"s":5,"id":11161,"u":"point%20out_crb","p":472,"h":1,"n":"Point Out"},{"c":8,"s":5,"id":11162,"u":"quick%20alchemy_crb","p":72,"h":1,"n":"Quick Alchemy"},{"c":8,"s":5,"id":11163,"u":"rage_crb","p":84,"h":1,"n":"Rage"},{"c":8,"s":5,"id":11164,"u":"raise%20a%20shield_crb","p":472,"h":1,"n":"Raise a Shield"},{"c":8,"s":5,"id":11165,"u":"ready_crb","p":470,"h":1,"n":"Ready"},{"c":8,"s":5,"id":11166,"u":"recall%20knowledge_crb","p":239,"h":1,"n":"Recall Knowledge"},{"c":8,"s":5,"id":11167,"u":"refocus_crb","p":300,"h":1,"n":"Refocus"},{"c":8,"s":5,"id":11168,"u":"release_crb","p":470,"h":1,"n":"Release"},{"c":8,"s":5,"id":11169,"u":"repair_crb","p":243,"h":1,"n":"Repair"},{"c":8,"s":5,"id":11170,"u":"repeat%20a%20spell_crb","p":480,"h":1,"n":"Repeat a Spell"},{"c":8,"s":5,"id":11171,"u":"request_crb","p":247,"h":1,"n":"Request"},{"c":8,"s":5,"id":11172,"u":"retraining_crb","p":481,"h":1,"n":"Retraining"},{"c":8,"s":5,"id":11173,"u":"retributive%20strike_crb","p":107,"h":1,"n":"Retributive Strike"},{"c":8,"s":5,"id":11174,"u":"scout_crb","p":480,"h":1,"n":"Scout"},{"c":8,"s":5,"id":11175,"u":"search_crb","p":480,"h":1,"n":"Search"},{"c":8,"s":5,"id":11176,"u":"seek_crb","p":471,"h":1,"n":"Seek"},{"c":8,"s":5,"id":11177,"u":"sense%20direction_crb","p":252,"h":1,"n":"Sense Direction"},{"c":8,"s":5,"id":11178,"u":"sense%20motive_crb","p":471,"h":1,"n":"Sense Motive"},{"c":8,"s":5,"id":11179,"u":"shove_crb","p":243,"h":1,"n":"Shove"},{"c":8,"s":5,"id":11180,"u":"sneak_crb","p":252,"h":1,"n":"Sneak"},{"c":8,"s":5,"id":11181,"u":"squeeze_crb","p":241,"h":1,"n":"Squeeze"},{"c":8,"s":5,"id":11182,"u":"stand_crb","p":471,"h":1,"n":"Stand"},{"c":8,"s":5,"id":11183,"u":"steal_crb","p":253,"h":1,"n":"Steal"},{"c":8,"s":5,"id":11184,"u":"step_crb","p":471,"h":1,"n":"Step"},{"c":8,"s":5,"id":11185,"u":"stride_crb","p":471,"h":1,"n":"Stride"},{"c":8,"s":5,"id":11186,"u":"strike_crb","p":471,"h":1,"n":"Strike"},{"c":8,"s":5,"id":11187,"u":"subsist_crb","p":240,"h":1,"n":"Subsist"},{"c":8,"s":5,"id":11188,"u":"sustain%20a%20spell_crb","p":304,"h":1,"n":"Sustain a Spell"},{"c":8,"s":5,"id":11189,"u":"sustain%20an%20activation_crb","p":534,"h":1,"n":"Sustain an Activation"},{"c":8,"s":5,"id":11190,"u":"swim_crb","p":243,"h":1,"n":"Swim"},{"c":8,"s":5,"id":11191,"u":"take%20cover_crb","p":471,"h":1,"n":"Take Cover"},{"c":8,"s":5,"id":11192,"u":"track_crb","p":252,"h":1,"n":"Track"},{"c":8,"s":5,"id":11193,"u":"treat%20disease_crb","p":248,"h":1,"n":"Treat Disease"},{"c":8,"s":5,"id":11194,"u":"treat%20poison_crb","p":248,"h":1,"n":"Treat Poison"},{"c":8,"s":5,"id":11195,"u":"treat%20wounds_crb","p":248,"h":1,"n":"Treat Wounds"},{"c":8,"s":5,"id":11196,"u":"trip_crb","p":243,"h":1,"n":"Trip"},{"c":8,"s":5,"id":11197,"u":"tumble%20through_crb","p":240,"h":1,"n":"Tumble Through"},{"c":8,"s":12,"id":11198,"u":"board_gmg","p":175,"h":1,"n":"Board"},{"c":8,"s":12,"id":11199,"u":"bribe%20contact_gmg","p":163,"h":1,"n":"Bribe Contact"},{"c":8,"s":12,"id":11200,"u":"bullying%20press_gmg","p":167,"h":1,"n":"Bullying Press"},{"c":8,"s":12,"id":11201,"u":"change%20tradition%20focus_gmg","p":167,"h":1,"n":"Change Tradition Focus"},{"c":8,"s":12,"id":11202,"u":"deceptive%20sidestep_gmg","p":167,"h":1,"n":"Deceptive Sidestep"},{"c":8,"s":12,"id":11203,"u":"discover_gmg","p":151,"h":1,"n":"Discover"},{"c":8,"s":12,"id":11204,"u":"drive_gmg","p":175,"h":1,"n":"Drive"},{"c":8,"s":12,"id":11205,"u":"dueling%20counter_gmg","p":167,"h":1,"n":"Dueling Counter"},{"c":8,"s":12,"id":11206,"u":"forge%20documents_gmg","p":163,"h":1,"n":"Forge Documents"},{"c":8,"s":12,"id":11207,"u":"fortify%20camp_gmg","p":173,"h":1,"n":"Fortify Camp"},{"c":8,"s":12,"id":11208,"u":"gain%20contact_gmg","p":163,"h":1,"n":"Gain Contact"},{"c":8,"s":12,"id":11209,"u":"gossip_gmg","p":163,"h":1,"n":"Gossip"},{"c":8,"s":12,"id":11210,"u":"influence_gmg","p":151,"h":1,"n":"Influence"},{"c":8,"s":12,"id":11211,"u":"map%20the%20area_gmg","p":173,"h":1,"n":"Map the Area"},{"c":8,"s":12,"id":11212,"u":"rally_gmg","p":201,"h":1,"n":"Rally"},{"c":8,"s":12,"id":11213,"u":"reconnoiter_gmg","p":173,"h":1,"n":"Reconnoiter"},{"c":8,"s":12,"id":11214,"u":"research_gmg","p":154,"h":1,"n":"Research"},{"c":8,"s":12,"id":11215,"u":"run%20over_gmg","p":176,"h":1,"n":"Run Over"},{"c":8,"s":12,"id":11216,"u":"scout%20location_gmg","p":163,"h":1,"n":"Scout Location"},{"c":8,"s":12,"id":11217,"u":"secure%20disguises_gmg","p":163,"h":1,"n":"Secure Disguises"},{"c":8,"s":12,"id":11218,"u":"sense%20weakness_gmg","p":167,"h":1,"n":"Sense Weakness"},{"c":8,"s":12,"id":11219,"u":"stop_gmg","p":176,"h":1,"n":"Stop"},{"c":8,"s":12,"id":11220,"u":"take%20a%20breather_gmg","p":200,"h":1,"n":"Take a Breather"},{"c":8,"s":12,"id":11221,"u":"take%20control_gmg","p":176,"h":1,"n":"Take Control"},{"c":8,"s":12,"id":11222,"u":"travel_gmg","p":172,"h":1,"n":"Travel"},{"c":8,"s":2,"id":11223,"u":"accidental%20shot_g%26g","p":142,"h":1,"n":"Accidental Shot"},{"c":8,"s":2,"id":11224,"u":"automaton%20aim_g%26g","p":39,"h":1,"n":"Automaton Aim"},{"c":8,"s":2,"id":11225,"u":"clear%20a%20path_g%26g","p":110,"h":1,"n":"Clear a Path"},{"c":8,"s":2,"id":11226,"u":"covered%20reload_g%26g","p":109,"h":1,"n":"Covered Reload"},{"c":8,"s":2,"id":11227,"u":"dispelling%20bullet_g%26g","p":140,"h":1,"n":"Dispelling Bullet"},{"c":8,"s":2,"id":11228,"u":"drifter's%20wake_g%26g","p":109,"h":1,"n":"Drifter's Wake"},{"c":8,"s":2,"id":11229,"u":"energy%20shot_g%26g","p":140,"h":1,"n":"Energy Shot"},{"c":8,"s":2,"id":11230,"u":"explode_g%26g","p":19,"h":1,"n":"Explode"},{"c":8,"s":2,"id":11231,"u":"finish%20the%20job_g%26g","p":108,"h":1,"n":"Finish the Job"},{"c":8,"s":2,"id":11232,"u":"ghost%20shot_g%26g","p":110,"h":1,"n":"Ghost Shot"},{"c":8,"s":2,"id":11233,"u":"grim%20swagger_g%26g","p":109,"h":1,"n":"Grim Swagger"},{"c":8,"s":2,"id":11234,"u":"into%20the%20fray_g%26g","p":108,"h":1,"n":"Into the Fray"},{"c":8,"s":2,"id":11235,"u":"living%20fortification_g%26g","p":110,"h":1,"n":"Living Fortification"},{"c":8,"s":2,"id":11236,"u":"one%20shot%2c%20one%20kill_g%26g","p":110,"h":1,"n":"One Shot, One Kill"},{"c":8,"s":2,"id":11237,"u":"overdrive_g%26g","p":16,"h":1,"n":"Overdrive"},{"c":8,"s":2,"id":11238,"u":"pistolero's%20retort_g%26g","p":108,"h":1,"n":"Pistolero's Retort"},{"c":8,"s":2,"id":11239,"u":"raconteur's%20reload_g%26g","p":109,"h":1,"n":"Raconteur's Reload"},{"c":8,"s":2,"id":11240,"u":"recall%20ammunition_g%26g","p":140,"h":1,"n":"Recall Ammunition"},{"c":8,"s":2,"id":11241,"u":"reloading%20strike_g%26g","p":108,"h":1,"n":"Reloading Strike"},{"c":8,"s":2,"id":11242,"u":"siegebreaker_g%26g","p":110,"h":1,"n":"Siegebreaker"},{"c":8,"s":2,"id":11243,"u":"spinning%20crush_g%26g","p":110,"h":1,"n":"Spinning Crush"},{"c":8,"s":2,"id":11244,"u":"ten%20paces_g%26g","p":109,"h":1,"n":"Ten Paces"},{"c":8,"s":2,"id":11245,"u":"thoughtful%20reload_g%26g","p":140,"h":1,"n":"Thoughtful Reload"},{"c":8,"s":2,"id":11246,"u":"vital%20shot_g%26g","p":108,"h":1,"n":"Vital Shot"},{"c":8,"s":1,"id":11247,"u":"change%20shape%20(kitsune)_loag","a":"kitsune","h":1,"n":"Change Shape"},{"c":8,"s":1,"id":11248,"u":"change%20shape%20(beastkin)_loag","p":79,"a":"Beastkin","h":1,"n":"Change Shape"},{"c":8,"s":1,"id":11249,"u":"conduct%20energy_loag","p":139,"h":1,"n":"Conduct Energy"},{"c":8,"s":1,"id":11250,"u":"invigorating%20fear_loag","p":123,"h":1,"n":"Invigorating Fear"},{"c":8,"s":6,"id":11251,"u":"energy%20emanation_locg","p":19,"h":1,"n":"Energy Emanation"},{"c":8,"s":6,"id":11252,"u":"threatening%20approach_locg","p":57,"h":1,"n":"Threatening Approach"},{"c":8,"s":0,"id":11253,"u":"anadi%20venom_lome","p":119,"h":1,"n":"Anadi Venom"},{"c":8,"s":0,"id":11254,"u":"barbed%20quills_lome","p":123,"h":1,"n":"Barbed Quills"},{"c":8,"s":0,"id":11255,"u":"call%20to%20axis_lome","p":107,"h":1,"n":"Call to Axis"},{"c":8,"s":0,"id":11256,"u":"toxic%20skin_lome","p":119,"h":1,"n":"Toxic Skin"},{"c":8,"s":49,"id":11257,"u":"act%20together_som","p":53,"h":1,"n":"Act Together"},{"c":8,"s":49,"id":11258,"u":"affix%20a%20fulu_som","p":158,"h":1,"n":"Affix a Fulu"},{"c":8,"s":49,"id":11259,"u":"arcane%20cascade_som","p":38,"h":1,"n":"Arcane Cascade"},{"c":8,"s":49,"id":11260,"u":"cleanse%20soul%20path_som","p":234,"h":1,"n":"Cleanse Soul Path"},{"c":8,"s":49,"id":11261,"u":"learn%20name_som","p":245,"h":1,"n":"Learn Name"},{"c":8,"s":49,"id":11262,"u":"manifest%20eidolon_som","p":52,"h":1,"n":"Manifest Eidolon"},{"c":8,"s":49,"id":11263,"u":"share%20senses_som","p":53,"h":1,"n":"Share Senses"},{"c":8,"s":49,"id":11264,"u":"spellstrike_som","p":37,"h":1,"n":"Spellstrike"},{"c":8,"s":49,"id":11265,"u":"tap%20ley%20line_som","p":215,"h":1,"n":"Tap Ley Line"},{"c":8,"s":39,"id":11266,"u":"cram_sot1","p":63,"h":1,"n":"Cram"},{"c":8,"s":39,"id":11267,"u":"practical%20research_sot1","p":63,"h":1,"n":"Practical Research"},{"c":8,"s":39,"id":11268,"u":"study_sot1","p":63,"h":1,"n":"Study"},{"c":64,"s":9,"id":11269,"u":"all-around%20vision_bst","p":342,"h":1,"n":"All-Around Vision"},{"c":64,"s":9,"id":11270,"u":"aquatic%20ambush_bst","p":342,"h":1,"n":"Aquatic Ambush"},{"c":64,"s":9,"id":11271,"u":"at-will%20spells_bst","p":342,"h":1,"n":"At-Will Spells"},{"c":64,"s":9,"id":11272,"u":"attack%20of%20opportunity_bst","p":342,"h":1,"n":"Attack of Opportunity"},{"c":64,"s":9,"id":11273,"u":"aura_bst","p":342,"h":1,"n":"Aura"},{"c":64,"s":9,"id":11274,"u":"buck_bst","p":342,"h":1,"n":"Buck"},{"c":64,"s":9,"id":11275,"u":"catch%20rock_bst","p":342,"h":1,"n":"Catch Rock"},{"c":64,"s":9,"id":11276,"u":"change%20shape_bst","p":342,"h":1,"n":"Change Shape"},{"c":64,"s":9,"id":11277,"u":"constant%20spells_bst","p":342,"h":1,"n":"Constant Spells"},{"c":64,"s":9,"id":11278,"u":"constrict_bst","p":342,"h":1,"n":"Constrict"},{"c":64,"s":9,"id":11279,"u":"coven_bst","p":342,"h":1,"n":"Coven"},{"c":64,"s":9,"id":11280,"u":"curse%20of%20the%20werecreature_bst","p":329,"h":1,"n":"Curse of the Werecreature"},{"c":64,"s":9,"id":11281,"u":"darkvision_bst","p":343,"h":1,"n":"Darkvision"},{"c":64,"s":9,"id":11282,"u":"disease_bst","p":343,"h":1,"n":"Disease"},{"c":64,"s":9,"id":11283,"u":"engulf_bst","p":343,"h":1,"n":"Engulf"},{"c":64,"s":9,"id":11284,"u":"fast%20healing_bst","p":343,"h":1,"n":"Fast Healing"},{"c":64,"s":9,"id":11285,"u":"ferocity_bst","p":343,"h":1,"n":"Ferocity"},{"c":64,"s":9,"id":11286,"u":"frightful%20presence_bst","p":343,"h":1,"n":"Frightful Presence"},{"c":64,"s":9,"id":11287,"u":"golem%20antimagic_bst","p":184,"h":1,"n":"Golem Antimagic"},{"c":64,"s":9,"id":11288,"u":"grab_bst","p":343,"h":1,"n":"Grab"},{"c":64,"s":9,"id":11289,"u":"greater%20constrict_bst","p":343,"h":1,"n":"Greater Constrict"},{"c":64,"s":9,"id":11290,"u":"improved%20grab_bst","p":343,"h":1,"n":"Improved Grab"},{"c":64,"s":9,"id":11291,"u":"improved%20knockdown_bst","p":343,"h":1,"n":"Improved Knockdown"},{"c":64,"s":9,"id":11292,"u":"improved%20push_bst","p":343,"h":1,"n":"Improved Push"},{"c":64,"s":9,"id":11293,"u":"knockdown_bst","p":343,"h":1,"n":"Knockdown"},{"c":64,"s":9,"id":11294,"u":"lifesense_bst","p":343,"h":1,"n":"Lifesense"},{"c":64,"s":9,"id":11295,"u":"light%20blindness_bst","p":343,"h":1,"n":"Light Blindness"},{"c":64,"s":9,"id":11296,"u":"low-light%20vision_bst","p":343,"h":1,"n":"Low-Light Vision"},{"c":64,"s":9,"id":11297,"u":"moon%20frenzy_bst","p":329,"h":1,"n":"Moon Frenzy"},{"c":64,"s":9,"id":11298,"u":"poison_bst","p":343,"h":1,"n":"Poison"},{"c":64,"s":9,"id":11299,"u":"push_bst","p":343,"h":1,"n":"Push"},{"c":64,"s":9,"id":11300,"u":"regeneration_bst","p":343,"h":1,"n":"Regeneration"},{"c":64,"s":9,"id":11301,"u":"rend_bst","p":344,"h":1,"n":"Rend"},{"c":64,"s":9,"id":11302,"u":"retributive%20strike_bst","p":344,"h":1,"n":"Retributive Strike"},{"c":64,"s":9,"id":11303,"u":"scent_bst","p":344,"h":1,"n":"Scent"},{"c":64,"s":9,"id":11304,"u":"shield%20block_bst","p":344,"h":1,"n":"Shield Block"},{"c":64,"s":9,"id":11305,"u":"sneak%20attack_bst","p":344,"h":1,"n":"Sneak Attack"},{"c":64,"s":9,"id":11306,"u":"swallow%20whole_bst","p":344,"h":1,"n":"Swallow Whole"},{"c":64,"s":9,"id":11307,"u":"swarm%20mind_bst","p":344,"h":1,"n":"Swarm Mind"},{"c":64,"s":9,"id":11308,"u":"telepathy_bst","p":344,"h":1,"n":"Telepathy"},{"c":64,"s":9,"id":11309,"u":"throw%20rock_bst","p":344,"h":1,"n":"Throw Rock"},{"c":64,"s":9,"id":11310,"u":"trample_bst","p":344,"h":1,"n":"Trample"},{"c":64,"s":9,"id":11311,"u":"tremorsense_bst","p":344,"h":1,"n":"Tremorsense"},{"c":64,"s":9,"id":11312,"u":"wavesense_bst","p":344,"h":1,"n":"Wavesense"},{"c":64,"s":10,"id":11313,"u":"negative%20healing_bst2","p":305,"h":1,"n":"Negative Healing"},{"c":64,"s":12,"id":11314,"u":"butter%20up_gmg","p":204,"h":1,"n":"Butter Up"},{"c":64,"s":12,"id":11315,"u":"call%20your%20bluf_gmg","p":205,"h":1,"n":"Call Your Bluf"},{"c":64,"s":12,"id":11316,"u":"child%20care_gmg","p":205,"h":1,"n":"Child Care"},{"c":64,"s":12,"id":11317,"u":"find%20footing_gmg","p":205,"h":1,"n":"Find Footing"},{"c":64,"s":12,"id":11318,"u":"gone%20fishing_gmg","p":205,"h":1,"n":"Gone Fishing"},{"c":64,"s":12,"id":11319,"u":"local%20lore_gmg","p":205,"h":1,"n":"Local Lore"},{"c":64,"s":12,"id":11320,"u":"quick%20transcription_gmg","p":205,"h":1,"n":"Quick Transcription"},{"c":64,"s":24,"id":11321,"u":"warpwave_aoe6","p":81,"h":1,"n":"Warpwave"},{"c":65,"s":4,"id":11322,"u":"ysoki_apg","p":21,"h":1,"n":"Ysoki"},{"c":65,"s":9,"id":11323,"u":"alghollthu_bst","p":348,"h":1,"n":"Alghollthu"},{"c":65,"s":9,"id":11324,"u":"amurrun_bst","p":348,"h":1,"n":"Amurrun"},{"c":65,"s":9,"id":11325,"u":"arboreal_bst","p":348,"h":1,"n":"Arboreal"},{"c":65,"s":9,"id":11326,"u":"boggard_bst","p":348,"h":1,"n":"Boggard"},{"c":65,"s":9,"id":11327,"u":"caligni_bst","p":348,"h":1,"n":"Caligni"},{"c":65,"s":9,"id":11328,"u":"cyclops_bst","p":348,"h":1,"n":"Cyclops"},{"c":65,"s":9,"id":11329,"u":"daemonic_bst","p":348,"h":1,"n":"Daemonic"},{"c":65,"s":9,"id":11330,"u":"iruxi_bst","p":348,"h":1,"n":"Iruxi"},{"c":65,"s":9,"id":11331,"u":"protean_bst","p":348,"h":1,"n":"Protean"},{"c":65,"s":9,"id":11332,"u":"requian_bst","p":348,"h":1,"n":"Requian"},{"c":65,"s":9,"id":11333,"u":"sphinx_bst","p":348,"h":1,"n":"Sphinx"},{"c":65,"s":9,"id":11334,"u":"tengu_bst","p":310,"h":1,"n":"Tengu"},{"c":65,"s":9,"id":11335,"u":"utopian_bst","p":348,"h":1,"n":"Utopian"},{"c":65,"s":10,"id":11336,"u":"d'ziriak_bst2","p":311,"h":1,"n":"D'ziriak"},{"c":65,"s":10,"id":11337,"u":"destrachan_bst2","p":311,"h":1,"n":"Destrachan"},{"c":65,"s":10,"id":11338,"u":"grippli_bst2","p":311,"h":1,"n":"Grippli"},{"c":65,"s":10,"id":11339,"u":"jistkan_bst2","p":311,"h":1,"n":"Jistkan"},{"c":65,"s":10,"id":11340,"u":"jyoti_bst2","p":311,"h":1,"n":"Jyoti"},{"c":65,"s":11,"id":11341,"u":"adlet_bst3","p":311,"h":1,"n":"Adlet"},{"c":65,"s":11,"id":11342,"u":"girtabrilu_bst3","p":311,"h":1,"n":"Girtabrilu"},{"c":65,"s":11,"id":11343,"u":"grioth_bst3","p":311,"h":1,"n":"Grioth"},{"c":65,"s":11,"id":11344,"u":"kovintal_bst3","p":311,"h":1,"n":"Kovintal"},{"c":65,"s":11,"id":11345,"u":"mi-go_bst3","p":311,"h":1,"n":"Mi-Go"},{"c":65,"s":11,"id":11346,"u":"munavri_bst3","p":311,"h":1,"n":"Munavri"},{"c":65,"s":11,"id":11347,"u":"samsaran_bst3","p":311,"h":1,"n":"Samsaran"},{"c":65,"s":11,"id":11348,"u":"sasquatch_bst3","p":311,"h":1,"n":"Sasquatch"},{"c":65,"s":11,"id":11349,"u":"shae_bst3","p":311,"h":1,"n":"Shae"},{"c":65,"s":11,"id":11350,"u":"vanara_bst3","p":311,"h":1,"n":"Vanara"},{"c":65,"s":11,"id":11351,"u":"vishkanyan_bst3","p":311,"h":1,"n":"Vishkanyan"},{"c":65,"s":11,"id":11352,"u":"yithian_bst3","p":311,"h":1,"n":"Yithian"},{"c":65,"s":5,"id":11353,"u":"abyssal_crb","p":65,"h":1,"n":"Abyssal"},{"c":65,"s":5,"id":11354,"u":"aklo_crb","p":65,"h":1,"n":"Aklo"},{"c":65,"s":5,"id":11355,"u":"aquan_crb","p":65,"h":1,"n":"Aquan"},{"c":65,"s":5,"id":11356,"u":"auran_crb","p":65,"h":1,"n":"Auran"},{"c":65,"s":5,"id":11357,"u":"celestial_crb","p":65,"h":1,"n":"Celestial"},{"c":65,"s":5,"id":11358,"u":"common_crb","p":65,"h":1,"n":"Common"},{"c":65,"s":5,"id":11359,"u":"draconic_crb","p":65,"h":1,"n":"Draconic"},{"c":65,"s":5,"id":11360,"u":"druidic_crb","p":65,"h":1,"n":"Druidic"},{"c":65,"s":5,"id":11361,"u":"dwarven_crb","p":65,"h":1,"n":"Dwarven"},{"c":65,"s":5,"id":11362,"u":"elven_crb","p":65,"h":1,"n":"Elven"},{"c":65,"s":5,"id":11363,"u":"gnoll_crb","p":65,"h":1,"n":"Gnoll"},{"c":65,"s":5,"id":11364,"u":"gnomish_crb","p":65,"h":1,"n":"Gnomish"},{"c":65,"s":5,"id":11365,"u":"goblin_crb","p":65,"h":1,"n":"Goblin"},{"c":65,"s":5,"id":11366,"u":"halfling_crb","p":65,"h":1,"n":"Halfling"},{"c":65,"s":5,"id":11367,"u":"hallit_crb","p":432,"h":1,"n":"Hallit"},{"c":65,"s":5,"id":11368,"u":"ignan_crb","p":65,"h":1,"n":"Ignan"},{"c":65,"s":5,"id":11369,"u":"infernal_crb","p":65,"h":1,"n":"Infernal"},{"c":65,"s":5,"id":11370,"u":"jotun_crb","p":65,"h":1,"n":"Jotun"},{"c":65,"s":5,"id":11371,"u":"kelish_crb","p":432,"h":1,"n":"Kelish"},{"c":65,"s":5,"id":11372,"u":"mwangi_crb","p":432,"h":1,"n":"Mwangi"},{"c":65,"s":5,"id":11373,"u":"necril_crb","p":65,"h":1,"n":"Necril"},{"c":65,"s":5,"id":11374,"u":"orcish_crb","p":65,"h":1,"n":"Orcish"},{"c":65,"s":5,"id":11375,"u":"osiriani_crb","p":432,"h":1,"n":"Osiriani"},{"c":65,"s":5,"id":11376,"u":"shadowtongue_crb","p":65,"h":1,"n":"Shadowtongue"},{"c":65,"s":5,"id":11377,"u":"shoanti_crb","p":432,"h":1,"n":"Shoanti"},{"c":65,"s":5,"id":11378,"u":"skald_crb","p":432,"h":1,"n":"Skald"},{"c":65,"s":5,"id":11379,"u":"sylvan_crb","p":65,"h":1,"n":"Sylvan"},{"c":65,"s":5,"id":11380,"u":"terran_crb","p":65,"h":1,"n":"Terran"},{"c":65,"s":5,"id":11381,"u":"tien_crb","p":432,"h":1,"n":"Tien"},{"c":65,"s":5,"id":11382,"u":"undercommon_crb","p":65,"h":1,"n":"Undercommon"},{"c":65,"s":5,"id":11383,"u":"varisian_crb","p":432,"h":1,"n":"Varisian"},{"c":65,"s":5,"id":11384,"u":"vudrani_crb","p":432,"h":1,"n":"Vudrani"},{"c":65,"s":13,"id":11385,"u":"anadi_aoa1","p":84,"h":1,"n":"Anadi"},{"c":65,"s":15,"id":11386,"u":"strix_aoa3","p":72,"h":1,"n":"Strix"},{"c":65,"s":8,"id":11387,"u":"shoony_ec3","p":72,"h":1,"n":"Shoony"},{"c":65,"s":46,"id":11388,"u":"minatan_frp0","p":11,"h":1,"n":"Minatan"},{"c":65,"s":46,"id":11389,"u":"minkaian_frp0","p":11,"h":1,"n":"Minkaian"},{"c":65,"s":46,"id":11390,"u":"nagaji_frp0","p":11,"h":1,"n":"Nagaji"},{"c":65,"s":46,"id":11391,"u":"senzar_frp0","p":11,"h":1,"n":"Senzar"},{"c":65,"s":46,"id":11392,"u":"wayang_frp0","p":11,"h":1,"n":"Wayang"},{"c":65,"s":34,"id":11393,"u":"anugobu_frp1","p":80,"h":1,"n":"Anugobu"},{"c":65,"s":35,"id":11394,"u":"arcadian_frp2","p":34,"h":1,"n":"Arcadian"},{"c":65,"s":1,"id":11395,"u":"androffan_loag","p":69,"h":1,"n":"Androffan"},{"c":65,"s":0,"id":11396,"u":"calda_lome","p":265,"h":1,"n":"Calda"},{"c":65,"s":0,"id":11397,"u":"ekujae_lome","p":23,"h":1,"n":"Ekujae"},{"c":65,"s":0,"id":11398,"u":"goloma_lome","p":115,"h":1,"n":"Goloma"},{"c":65,"s":0,"id":11399,"u":"kibwani_lome","p":217,"h":1,"n":"Kibwani"},{"c":65,"s":0,"id":11400,"u":"lirgeni_lome","p":217,"h":1,"n":"Lirgeni"},{"c":65,"s":0,"id":11401,"u":"mzunu_lome","p":228,"h":1,"n":"Mzunu"},{"c":65,"s":0,"id":11402,"u":"ocotan_lome","p":23,"h":1,"n":"Ocotan"},{"c":65,"s":0,"id":11403,"u":"rasu_lome","p":23,"h":1,"n":"Rasu"},{"c":65,"s":0,"id":11404,"u":"shisk_lome","p":123,"h":1,"n":"Shisk"},{"c":65,"s":0,"id":11405,"u":"xanmba_lome","p":242,"h":1,"n":"Xanmba"},{"c":65,"s":48,"id":11406,"u":"ancient%20osirion_lowg","p":59,"h":1,"n":"Ancient Osirion"},{"c":65,"s":48,"id":11407,"u":"azlanti_lowg","p":60,"h":1,"n":"Azlanti"},{"c":65,"s":48,"id":11408,"u":"garundi_lowg","p":84,"h":1,"n":"Garundi"},{"c":65,"s":48,"id":11409,"u":"thassilonian_lowg","p":108,"h":1,"n":"Thassilonian"},{"c":4,"s":4,"id":11410,"u":"aasimar","p":266,"h":1,"n":"Aasimar"},{"c":4,"s":4,"id":11411,"u":"cursebound","p":267,"h":1,"n":"Cursebound"},{"c":4,"s":4,"id":11412,"u":"duskwalker","p":267,"h":1,"n":"Duskwalker"},{"c":4,"s":4,"id":11413,"u":"finisher","p":267,"h":1,"n":"Finisher"},{"c":4,"s":4,"id":11414,"u":"hex","p":101,"h":1,"n":"Hex"},{"c":4,"s":4,"id":11415,"u":"investigator","p":268,"h":1,"n":"Investigator"},{"c":4,"s":4,"id":11416,"u":"lineage","p":268,"h":1,"n":"Lineage"},{"c":4,"s":4,"id":11417,"u":"oracle","p":269,"h":1,"n":"Oracle"},{"c":4,"s":4,"id":11418,"u":"swashbuckler","p":270,"h":1,"n":"Swashbuckler"},{"c":4,"s":4,"id":11419,"u":"vigilante","p":271,"h":1,"n":"Vigilante"},{"c":4,"s":4,"id":11420,"u":"witch","p":271,"h":1,"n":"Witch"},{"c":4,"s":9,"id":11421,"u":"%5bmagical%20tradition%5d","p":342,"h":1,"n":"[Magical Tradition]"},{"c":4,"s":9,"id":11422,"u":"aeon","p":345,"h":1,"n":"Aeon"},{"c":4,"s":9,"id":11423,"u":"amphibious","p":345,"h":1,"n":"Amphibious"},{"c":4,"s":9,"id":11424,"u":"any","p":345,"h":1,"n":"Any"},{"c":4,"s":9,"id":11425,"u":"aquatic","p":345,"h":1,"n":"Aquatic"},{"c":4,"s":9,"id":11426,"u":"astral","p":345,"h":1,"n":"Astral"},{"c":4,"s":9,"id":11427,"u":"boggard","p":345,"h":1,"n":"Boggard"},{"c":4,"s":9,"id":11428,"u":"caligni","p":345,"h":1,"n":"Caligni"},{"c":4,"s":9,"id":11429,"u":"catfolk","p":345,"h":1,"n":"Catfolk"},{"c":4,"s":9,"id":11430,"u":"ce","p":345,"h":1,"n":"CE"},{"c":4,"s":9,"id":11431,"u":"cg","p":345,"h":1,"n":"CG"},{"c":4,"s":9,"id":11432,"u":"changeling","p":123,"h":1,"n":"Changeling"},{"c":4,"s":9,"id":11433,"u":"charm","p":77,"h":1,"n":"Charm"},{"c":4,"s":9,"id":11434,"u":"cn","p":345,"h":1,"n":"CN"},{"c":4,"s":9,"id":11435,"u":"daemon","p":346,"h":1,"n":"Daemon"},{"c":4,"s":9,"id":11436,"u":"dero","p":346,"h":1,"n":"Dero"},{"c":4,"s":9,"id":11437,"u":"dhampir","p":346,"h":1,"n":"Dhampir"},{"c":4,"s":9,"id":11438,"u":"fungus","p":345,"h":1,"n":"Fungus"},{"c":4,"s":9,"id":11439,"u":"gargantuan","p":345,"h":1,"n":"Gargantuan"},{"c":4,"s":9,"id":11440,"u":"genie","p":346,"h":1,"n":"Genie"},{"c":4,"s":9,"id":11441,"u":"ghost","p":346,"h":1,"n":"Ghost"},{"c":4,"s":9,"id":11442,"u":"ghoul","p":346,"h":1,"n":"Ghoul"},{"c":4,"s":9,"id":11443,"u":"gnoll","p":346,"h":1,"n":"Gnoll"},{"c":4,"s":9,"id":11444,"u":"golem","p":346,"h":1,"n":"Golem"},{"c":4,"s":9,"id":11445,"u":"gremlin","p":346,"h":1,"n":"Gremlin"},{"c":4,"s":9,"id":11446,"u":"huge","p":345,"h":1,"n":"Huge"},{"c":4,"s":9,"id":11447,"u":"incorporeal","p":346,"h":1,"n":"Incorporeal"},{"c":4,"s":9,"id":11448,"u":"inevitable","p":347,"h":1,"n":"Inevitable"},{"c":4,"s":9,"id":11449,"u":"kobold","p":347,"h":1,"n":"Kobold"},{"c":4,"s":9,"id":11450,"u":"large","p":345,"h":1,"n":"Large"},{"c":4,"s":9,"id":11451,"u":"le","p":345,"h":1,"n":"LE"},{"c":4,"s":9,"id":11452,"u":"leshy","p":347,"h":1,"n":"Leshy"},{"c":4,"s":9,"id":11453,"u":"lg","p":345,"h":1,"n":"LG"},{"c":4,"s":9,"id":11454,"u":"lizardfolk","p":347,"h":1,"n":"Lizardfolk"},{"c":4,"s":9,"id":11455,"u":"ln","p":345,"h":1,"n":"LN"},{"c":4,"s":9,"id":11456,"u":"medium","p":345,"h":1,"n":"Medium"},{"c":4,"s":9,"id":11457,"u":"merfolk","p":347,"h":1,"n":"Merfolk"},{"c":4,"s":9,"id":11458,"u":"mummy","p":347,"h":1,"n":"Mummy"},{"c":4,"s":9,"id":11459,"u":"mutant","p":347,"h":1,"n":"Mutant"},{"c":4,"s":9,"id":11460,"u":"n","p":345,"h":1,"n":"N"},{"c":4,"s":9,"id":11461,"u":"ne","p":345,"h":1,"n":"NE"},{"c":4,"s":9,"id":11462,"u":"ng","p":345,"h":1,"n":"NG"},{"c":4,"s":9,"id":11463,"u":"nymph","p":347,"h":1,"n":"Nymph"},{"c":4,"s":9,"id":11464,"u":"olfactory","p":168,"h":1,"n":"Olfactory"},{"c":4,"s":9,"id":11465,"u":"protean","p":347,"h":1,"n":"Protean"},{"c":4,"s":9,"id":11466,"u":"psychopomp","p":347,"h":1,"n":"Psychopomp"},{"c":4,"s":9,"id":11467,"u":"rakshasa","p":347,"h":1,"n":"Rakshasa"},{"c":4,"s":9,"id":11468,"u":"ranged%20trip","p":85,"h":1,"n":"Ranged Trip"},{"c":4,"s":9,"id":11469,"u":"ratfolk","p":347,"h":1,"n":"Ratfolk"},{"c":4,"s":9,"id":11470,"u":"sea%20devil","p":347,"h":1,"n":"Sea Devil"},{"c":4,"s":9,"id":11471,"u":"skeleton","p":347,"h":1,"n":"Skeleton"},{"c":4,"s":9,"id":11472,"u":"small","p":345,"h":1,"n":"Small"},{"c":4,"s":9,"id":11473,"u":"soulbound","p":347,"h":1,"n":"Soulbound"},{"c":4,"s":9,"id":11474,"u":"sprite","p":347,"h":1,"n":"Sprite"},{"c":4,"s":9,"id":11475,"u":"swarm","p":347,"h":1,"n":"Swarm"},{"c":4,"s":9,"id":11476,"u":"tengu","p":270,"h":1,"n":"Tengu"},{"c":4,"s":9,"id":11477,"u":"tethered","p":85,"h":1,"n":"Tethered"},{"c":4,"s":9,"id":11478,"u":"tiefling","p":270,"h":1,"n":"Tiefling"},{"c":4,"s":9,"id":11479,"u":"tiny","p":345,"h":1,"n":"Tiny"},{"c":4,"s":9,"id":11480,"u":"troll","p":347,"h":1,"n":"Troll"},{"c":4,"s":9,"id":11481,"u":"vampire","p":347,"h":1,"n":"Vampire"},{"c":4,"s":9,"id":11482,"u":"werecreature","p":347,"h":1,"n":"Werecreature"},{"c":4,"s":9,"id":11483,"u":"wight","p":332,"h":1,"n":"Wight"},{"c":4,"s":9,"id":11484,"u":"wraith","p":335,"h":1,"n":"Wraith"},{"c":4,"s":9,"id":11485,"u":"xulgath","p":347,"h":1,"n":"Xulgath"},{"c":4,"s":9,"id":11486,"u":"zombie","p":347,"h":1,"n":"Zombie"},{"c":4,"s":10,"id":11487,"u":"brutal","p":310,"h":1,"n":"Brutal"},{"c":4,"s":10,"id":11488,"u":"couatl","p":308,"h":1,"n":"Couatl"},{"c":4,"s":10,"id":11489,"u":"dream","p":308,"h":1,"n":"Dream"},{"c":4,"s":10,"id":11490,"u":"fetchling","p":308,"h":1,"n":"Fetchling"},{"c":4,"s":10,"id":11491,"u":"grippli","p":309,"h":1,"n":"Grippli"},{"c":4,"s":10,"id":11492,"u":"ifrit","p":308,"h":1,"n":"Ifrit"},{"c":4,"s":10,"id":11493,"u":"morlock","p":308,"h":1,"n":"Morlock"},{"c":4,"s":10,"id":11494,"u":"oni","p":309,"h":1,"n":"Oni"},{"c":4,"s":10,"id":11495,"u":"oread","p":309,"h":1,"n":"Oread"},{"c":4,"s":10,"id":11496,"u":"petitioner","p":309,"h":1,"n":"Petitioner"},{"c":4,"s":10,"id":11497,"u":"qlippoth","p":309,"h":1,"n":"Qlippoth"},{"c":4,"s":10,"id":11498,"u":"serpentfolk","p":309,"h":1,"n":"Serpentfolk"},{"c":4,"s":10,"id":11499,"u":"skulk","p":309,"h":1,"n":"Skulk"},{"c":4,"s":10,"id":11500,"u":"spriggan","p":310,"h":1,"n":"Spriggan"},{"c":4,"s":10,"id":11501,"u":"suli","p":310,"h":1,"n":"Suli"},{"c":4,"s":10,"id":11502,"u":"sylph","p":309,"h":1,"n":"Sylph"},{"c":4,"s":10,"id":11503,"u":"tane","p":310,"h":1,"n":"Tane"},{"c":4,"s":10,"id":11504,"u":"time","p":310,"h":1,"n":"Time"},{"c":4,"s":10,"id":11505,"u":"undine","p":310,"h":1,"n":"Undine"},{"c":4,"s":10,"id":11506,"u":"urdefhan","p":310,"h":1,"n":"Urdefhan"},{"c":4,"s":10,"id":11507,"u":"velstrac","p":310,"h":1,"n":"Velstrac"},{"c":4,"s":5,"id":11508,"u":"aberration","p":266,"h":1,"n":"Aberration"},{"c":4,"s":5,"id":11509,"u":"abjuration","p":628,"h":1,"n":"Abjuration"},{"c":4,"s":5,"id":11510,"u":"acid","p":628,"h":1,"n":"Acid"},{"c":4,"s":5,"id":11511,"u":"additive","p":75,"h":1,"n":"Additive"},{"c":4,"s":5,"id":11512,"u":"agile","p":282,"h":1,"n":"Agile"},{"c":4,"s":5,"id":11513,"u":"air","p":628,"h":1,"n":"Air"},{"c":4,"s":5,"id":11514,"u":"alchemical","p":628,"h":1,"n":"Alchemical"},{"c":4,"s":5,"id":11515,"u":"alchemist","p":628,"h":1,"n":"Alchemist"},{"c":4,"s":5,"id":11516,"u":"angel","p":628,"h":1,"n":"Angel"},{"c":4,"s":5,"id":11517,"u":"animal","p":628,"h":1,"n":"Animal"},{"c":4,"s":5,"id":11518,"u":"apex","p":628,"h":1,"n":"Apex"},{"c":4,"s":5,"id":11519,"u":"arcane","p":628,"h":1,"n":"Arcane"},{"c":4,"s":5,"id":11520,"u":"archetype","p":628,"h":1,"n":"Archetype"},{"c":4,"s":5,"id":11521,"u":"archon","p":628,"h":1,"n":"Archon"},{"c":4,"s":5,"id":11522,"u":"attached","p":282,"h":1,"n":"Attached"},{"c":4,"s":5,"id":11523,"u":"attack","p":629,"h":1,"n":"Attack"},{"c":4,"s":5,"id":11524,"u":"auditory","p":629,"h":1,"n":"Auditory"},{"c":4,"s":5,"id":11525,"u":"aura","p":629,"h":1,"n":"Aura"},{"c":4,"s":5,"id":11526,"u":"azata","p":629,"h":1,"n":"Azata"},{"c":4,"s":5,"id":11527,"u":"backstabber","p":282,"h":1,"n":"Backstabber"},{"c":4,"s":5,"id":11528,"u":"backswing","p":282,"h":1,"n":"Backswing"},{"c":4,"s":5,"id":11529,"u":"barbarian","p":629,"h":1,"n":"Barbarian"},{"c":4,"s":5,"id":11530,"u":"bard","p":629,"h":1,"n":"Bard"},{"c":4,"s":5,"id":11531,"u":"beast","p":629,"h":1,"n":"Beast"},{"c":4,"s":5,"id":11532,"u":"bomb","p":629,"h":1,"n":"Bomb"},{"c":4,"s":5,"id":11533,"u":"bulwark","p":274,"h":1,"n":"Bulwark"},{"c":4,"s":5,"id":11534,"u":"cantrip","p":629,"h":1,"n":"Cantrip"},{"c":4,"s":5,"id":11535,"u":"celestial","p":629,"h":1,"n":"Celestial"},{"c":4,"s":5,"id":11536,"u":"champion","p":629,"h":1,"n":"Champion"},{"c":4,"s":5,"id":11537,"u":"chaotic","p":629,"h":1,"n":"Chaotic"},{"c":4,"s":5,"id":11538,"u":"cleric","p":629,"h":1,"n":"Cleric"},{"c":4,"s":5,"id":11539,"u":"cold","p":629,"h":1,"n":"Cold"},{"c":4,"s":5,"id":11540,"u":"comfort","p":275,"h":1,"n":"Comfort"},{"c":4,"s":5,"id":11541,"u":"common","p":629,"h":1,"n":"Common"},{"c":4,"s":5,"id":11542,"u":"companion","p":629,"h":1,"n":"Companion"},{"c":4,"s":5,"id":11543,"u":"complex","p":629,"h":1,"n":"Complex"},{"c":4,"s":5,"id":11544,"u":"composition","p":629,"h":1,"n":"Composition"},{"c":4,"s":5,"id":11545,"u":"concentrate","p":630,"h":1,"n":"Concentrate"},{"c":4,"s":5,"id":11546,"u":"conjuration","p":630,"h":1,"n":"Conjuration"},{"c":4,"s":5,"id":11547,"u":"consecration","p":630,"h":1,"n":"Consecration"},{"c":4,"s":5,"id":11548,"u":"construct","p":630,"h":1,"n":"Construct"},{"c":4,"s":5,"id":11549,"u":"consumable","p":630,"h":1,"n":"Consumable"},{"c":4,"s":5,"id":11550,"u":"contact","p":550,"h":1,"n":"Contact"},{"c":4,"s":5,"id":11551,"u":"curse","p":630,"h":1,"n":"Curse"},{"c":4,"s":5,"id":11552,"u":"darkness","p":630,"h":1,"n":"Darkness"},{"c":4,"s":5,"id":11553,"u":"deadly","p":282,"h":1,"n":"Deadly"},{"c":4,"s":5,"id":11554,"u":"death","p":630,"h":1,"n":"Death"},{"c":4,"s":5,"id":11555,"u":"dedication","p":630,"h":1,"n":"Dedication"},{"c":4,"s":5,"id":11556,"u":"demon","p":630,"h":1,"n":"Demon"},{"c":4,"s":5,"id":11557,"u":"detection","p":630,"h":1,"n":"Detection"},{"c":4,"s":5,"id":11558,"u":"devil","p":630,"h":1,"n":"Devil"},{"c":4,"s":5,"id":11559,"u":"dinosaur","p":630,"h":1,"n":"Dinosaur"},{"c":4,"s":5,"id":11560,"u":"disarm","p":282,"h":1,"n":"Disarm"},{"c":4,"s":5,"id":11561,"u":"disease","p":631,"h":1,"n":"Disease"},{"c":4,"s":5,"id":11562,"u":"divination","p":631,"h":1,"n":"Divination"},{"c":4,"s":5,"id":11563,"u":"divine","p":631,"h":1,"n":"Divine"},{"c":4,"s":5,"id":11564,"u":"downtime","p":631,"h":1,"n":"Downtime"},{"c":4,"s":5,"id":11565,"u":"dragon","p":631,"h":1,"n":"Dragon"},{"c":4,"s":5,"id":11566,"u":"drow","p":631,"h":1,"n":"Drow"},{"c":4,"s":5,"id":11567,"u":"druid","p":631,"h":1,"n":"Druid"},{"c":4,"s":5,"id":11568,"u":"duergar","p":631,"h":1,"n":"Duergar"},{"c":4,"s":5,"id":11569,"u":"dwarf","p":631,"h":1,"n":"Dwarf"},{"c":4,"s":5,"id":11570,"u":"earth","p":631,"h":1,"n":"Earth"},{"c":4,"s":5,"id":11571,"u":"electricity","p":631,"h":1,"n":"Electricity"},{"c":4,"s":5,"id":11572,"u":"elemental","p":631,"h":1,"n":"Elemental"},{"c":4,"s":5,"id":11573,"u":"elf","p":631,"h":1,"n":"Elf"},{"c":4,"s":5,"id":11574,"u":"elixir","p":631,"h":1,"n":"Elixir"},{"c":4,"s":5,"id":11575,"u":"emotion","p":631,"h":1,"n":"Emotion"},{"c":4,"s":5,"id":11576,"u":"enchantment","p":631,"h":1,"n":"Enchantment"},{"c":4,"s":5,"id":11577,"u":"environmental","p":631,"h":1,"n":"Environmental"},{"c":4,"s":5,"id":11578,"u":"ethereal","p":631,"h":1,"n":"Ethereal"},{"c":4,"s":5,"id":11579,"u":"evil","p":631,"h":1,"n":"Evil"},{"c":4,"s":5,"id":11580,"u":"evocation","p":634,"h":1,"n":"Evocation"},{"c":4,"s":5,"id":11581,"u":"exploration","p":631,"h":1,"n":"Exploration"},{"c":4,"s":5,"id":11582,"u":"extradimensional","p":631,"h":1,"n":"Extradimensional"},{"c":4,"s":5,"id":11583,"u":"fatal","p":282,"h":1,"n":"Fatal"},{"c":4,"s":5,"id":11584,"u":"fear","p":631,"h":1,"n":"Fear"},{"c":4,"s":5,"id":11585,"u":"fey","p":631,"h":1,"n":"Fey"},{"c":4,"s":5,"id":11586,"u":"fiend","p":631,"h":1,"n":"Fiend"},{"c":4,"s":5,"id":11587,"u":"fighter","p":632,"h":1,"n":"Fighter"},{"c":4,"s":5,"id":11588,"u":"finesse","p":282,"h":1,"n":"Finesse"},{"c":4,"s":5,"id":11589,"u":"fire","p":632,"h":1,"n":"Fire"},{"c":4,"s":5,"id":11590,"u":"flexible","p":275,"h":1,"n":"Flexible"},{"c":4,"s":5,"id":11591,"u":"flourish","p":632,"h":1,"n":"Flourish"},{"c":4,"s":5,"id":11592,"u":"focused","p":632,"h":1,"n":"Focused"},{"c":4,"s":5,"id":11593,"u":"force","p":632,"h":1,"n":"Force"},{"c":4,"s":5,"id":11594,"u":"forceful","p":282,"h":1,"n":"Forceful"},{"c":4,"s":5,"id":11595,"u":"fortune","p":632,"h":1,"n":"Fortune"},{"c":4,"s":5,"id":11596,"u":"free-hand","p":282,"h":1,"n":"Free-Hand"},{"c":4,"s":5,"id":11597,"u":"general","p":632,"h":1,"n":"General"},{"c":4,"s":5,"id":11598,"u":"giant","p":632,"h":1,"n":"Giant"},{"c":4,"s":5,"id":11599,"u":"gnome","p":632,"h":1,"n":"Gnome"},{"c":4,"s":5,"id":11600,"u":"goblin","p":632,"h":1,"n":"Goblin"},{"c":4,"s":5,"id":11601,"u":"good","p":632,"h":1,"n":"Good"},{"c":4,"s":5,"id":11602,"u":"grapple","p":283,"h":1,"n":"Grapple"},{"c":4,"s":5,"id":11603,"u":"hag","p":632,"h":1,"n":"Hag"},{"c":4,"s":5,"id":11604,"u":"half-elf","p":632,"h":1,"n":"Half-Elf"},{"c":4,"s":5,"id":11605,"u":"half-orc","p":632,"h":1,"n":"Half-Orc"},{"c":4,"s":5,"id":11606,"u":"halfling","p":632,"h":1,"n":"Halfling"},{"c":4,"s":5,"id":11607,"u":"haunt","p":632,"h":1,"n":"Haunt"},{"c":4,"s":5,"id":11608,"u":"healing","p":632,"h":1,"n":"Healing"},{"c":4,"s":5,"id":11609,"u":"human","p":633,"h":1,"n":"Human"},{"c":4,"s":5,"id":11610,"u":"humanoid","p":633,"h":1,"n":"Humanoid"},{"c":4,"s":5,"id":11611,"u":"illusion","p":633,"h":1,"n":"Illusion"},{"c":4,"s":5,"id":11612,"u":"incapacitation","p":633,"h":1,"n":"Incapacitation"},{"c":4,"s":5,"id":11613,"u":"infused","p":75,"h":1,"n":"Infused"},{"c":4,"s":5,"id":11614,"u":"ingested","p":550,"h":1,"n":"Ingested"},{"c":4,"s":5,"id":11615,"u":"inhaled","p":550,"h":1,"n":"Inhaled"},{"c":4,"s":5,"id":11616,"u":"injury","p":550,"h":1,"n":"Injury"},{"c":4,"s":5,"id":11617,"u":"instinct","p":87,"h":1,"n":"Instinct"},{"c":4,"s":5,"id":11618,"u":"invested","p":633,"h":1,"n":"Invested"},{"c":4,"s":5,"id":11619,"u":"jousting","p":283,"h":1,"n":"Jousting"},{"c":4,"s":5,"id":11620,"u":"lawful","p":633,"h":1,"n":"Lawful"},{"c":4,"s":5,"id":11621,"u":"light","p":633,"h":1,"n":"Light"},{"c":4,"s":5,"id":11622,"u":"linguistic","p":633,"h":1,"n":"Linguistic"},{"c":4,"s":5,"id":11623,"u":"litany","p":633,"h":1,"n":"Litany"},{"c":4,"s":5,"id":11624,"u":"magical","p":633,"h":1,"n":"Magical"},{"c":4,"s":5,"id":11625,"u":"manipulate","p":633,"h":1,"n":"Manipulate"},{"c":4,"s":5,"id":11626,"u":"mechanical","p":634,"h":1,"n":"Mechanical"},{"c":4,"s":5,"id":11627,"u":"mental","p":634,"h":1,"n":"Mental"},{"c":4,"s":5,"id":11628,"u":"metamagic","p":634,"h":1,"n":"Metamagic"},{"c":4,"s":5,"id":11629,"u":"mindless","p":634,"h":1,"n":"Mindless"},{"c":4,"s":5,"id":11630,"u":"minion","p":634,"h":1,"n":"Minion"},{"c":4,"s":5,"id":11631,"u":"misfortune","p":634,"h":1,"n":"Misfortune"},{"c":4,"s":5,"id":11632,"u":"monitor","p":634,"h":1,"n":"Monitor"},{"c":4,"s":5,"id":11633,"u":"monk","p":634,"h":1,"n":"Monk"},{"c":4,"s":5,"id":11634,"u":"morph","p":634,"h":1,"n":"Morph"},{"c":4,"s":5,"id":11635,"u":"move","p":634,"h":1,"n":"Move"},{"c":4,"s":5,"id":11636,"u":"multiclass","p":635,"h":1,"n":"Multiclass"},{"c":4,"s":5,"id":11637,"u":"mutagen","p":634,"h":1,"n":"Mutagen"},{"c":4,"s":5,"id":11638,"u":"necromancy","p":634,"h":1,"n":"Necromancy"},{"c":4,"s":5,"id":11639,"u":"negative","p":630,"h":1,"n":"Negative"},{"c":4,"s":5,"id":11640,"u":"noisy","p":275,"h":1,"n":"Noisy"},{"c":4,"s":5,"id":11641,"u":"nonlethal","p":283,"h":1,"n":"Nonlethal"},{"c":4,"s":5,"id":11642,"u":"oath","p":109,"h":1,"n":"Oath"},{"c":4,"s":5,"id":11643,"u":"occult","p":634,"h":1,"n":"Occult"},{"c":4,"s":5,"id":11644,"u":"oil","p":634,"h":1,"n":"Oil"},{"c":4,"s":5,"id":11645,"u":"ooze","p":634,"h":1,"n":"Ooze"},{"c":4,"s":5,"id":11646,"u":"open","p":634,"h":1,"n":"Open"},{"c":4,"s":5,"id":11647,"u":"orc","p":634,"h":1,"n":"Orc"},{"c":4,"s":5,"id":11648,"u":"parry","p":283,"h":1,"n":"Parry"},{"c":4,"s":5,"id":11649,"u":"plant","p":635,"h":1,"n":"Plant"},{"c":4,"s":5,"id":11650,"u":"poison","p":635,"h":1,"n":"Poison"},{"c":4,"s":5,"id":11651,"u":"polymorph","p":635,"h":1,"n":"Polymorph"},{"c":4,"s":5,"id":11652,"u":"positive","p":635,"h":1,"n":"Positive"},{"c":4,"s":5,"id":11653,"u":"possession","p":635,"h":1,"n":"Possession"},{"c":4,"s":5,"id":11654,"u":"potion","p":635,"h":1,"n":"Potion"},{"c":4,"s":5,"id":11655,"u":"precious","p":635,"h":1,"n":"Precious"},{"c":4,"s":5,"id":11656,"u":"prediction","p":635,"h":1,"n":"Prediction"},{"c":4,"s":5,"id":11657,"u":"press","p":635,"h":1,"n":"Press"},{"c":4,"s":5,"id":11658,"u":"primal","p":635,"h":1,"n":"Primal"},{"c":4,"s":5,"id":11659,"u":"propulsive","p":283,"h":1,"n":"Propulsive"},{"c":4,"s":5,"id":11660,"u":"rage","p":87,"h":1,"n":"Rage"},{"c":4,"s":5,"id":11661,"u":"ranger","p":635,"h":1,"n":"Ranger"},{"c":4,"s":5,"id":11662,"u":"rare","p":635,"h":1,"n":"Rare"},{"c":4,"s":5,"id":11663,"u":"reach","p":283,"h":1,"n":"Reach"},{"c":4,"s":5,"id":11664,"u":"revelation","p":635,"h":1,"n":"Revelation"},{"c":4,"s":5,"id":11665,"u":"rogue","p":635,"h":1,"n":"Rogue"},{"c":4,"s":5,"id":11666,"u":"scroll","p":636,"h":1,"n":"Scroll"},{"c":4,"s":5,"id":11667,"u":"scrying","p":636,"h":1,"n":"Scrying"},{"c":4,"s":5,"id":11668,"u":"secret","p":636,"h":1,"n":"Secret"},{"c":4,"s":5,"id":11669,"u":"shadow","p":636,"h":1,"n":"Shadow"},{"c":4,"s":5,"id":11670,"u":"shove","p":283,"h":1,"n":"Shove"},{"c":4,"s":5,"id":11671,"u":"skill","p":636,"h":1,"n":"Skill"},{"c":4,"s":5,"id":11672,"u":"sleep","p":636,"h":1,"n":"Sleep"},{"c":4,"s":5,"id":11673,"u":"snare","p":636,"h":1,"n":"Snare"},{"c":4,"s":5,"id":11674,"u":"sonic","p":636,"h":1,"n":"Sonic"},{"c":4,"s":5,"id":11675,"u":"sorcerer","p":636,"h":1,"n":"Sorcerer"},{"c":4,"s":5,"id":11676,"u":"spirit","p":636,"h":1,"n":"Spirit"},{"c":4,"s":5,"id":11677,"u":"splash","p":637,"h":1,"n":"Splash"},{"c":4,"s":5,"id":11678,"u":"staff","p":637,"h":1,"n":"Staff"},{"c":4,"s":5,"id":11679,"u":"stance","p":637,"h":1,"n":"Stance"},{"c":4,"s":5,"id":11680,"u":"structure","p":596,"h":1,"n":"Structure"},{"c":4,"s":5,"id":11681,"u":"summoned","p":637,"h":1,"n":"Summoned"},{"c":4,"s":5,"id":11682,"u":"sweep","p":283,"h":1,"n":"Sweep"},{"c":4,"s":5,"id":11683,"u":"talisman","p":637,"h":1,"n":"Talisman"},{"c":4,"s":5,"id":11684,"u":"teleportation","p":637,"h":1,"n":"Teleportation"},{"c":4,"s":5,"id":11685,"u":"thrown","p":283,"h":1,"n":"Thrown"},{"c":4,"s":5,"id":11686,"u":"transmutation","p":637,"h":1,"n":"Transmutation"},{"c":4,"s":5,"id":11687,"u":"trap","p":637,"h":1,"n":"Trap"},{"c":4,"s":5,"id":11688,"u":"trip","p":283,"h":1,"n":"Trip"},{"c":4,"s":5,"id":11689,"u":"twin","p":283,"h":1,"n":"Twin"},{"c":4,"s":5,"id":11690,"u":"two-hand","p":283,"h":1,"n":"Two-Hand"},{"c":4,"s":5,"id":11691,"u":"unarmed","p":283,"h":1,"n":"Unarmed"},{"c":4,"s":5,"id":11692,"u":"uncommon","p":637,"h":1,"n":"Uncommon"},{"c":4,"s":5,"id":11693,"u":"undead","p":283,"h":1,"n":"Undead"},{"c":4,"s":5,"id":11694,"u":"unique","p":637,"h":1,"n":"Unique"},{"c":4,"s":5,"id":11695,"u":"versatile","p":283,"h":1,"n":"Versatile"},{"c":4,"s":5,"id":11696,"u":"virulent","p":638,"h":1,"n":"Virulent"},{"c":4,"s":5,"id":11697,"u":"visual","p":638,"h":1,"n":"Visual"},{"c":4,"s":5,"id":11698,"u":"volley","p":283,"h":1,"n":"Volley"},{"c":4,"s":5,"id":11699,"u":"wand","p":638,"h":1,"n":"Wand"},{"c":4,"s":5,"id":11700,"u":"water","p":638,"h":1,"n":"Water"},{"c":4,"s":5,"id":11701,"u":"wizard","p":638,"h":1,"n":"Wizard"},{"c":4,"s":12,"id":11702,"u":"artifact","p":250,"h":1,"n":"Artifact"},{"c":4,"s":12,"id":11703,"u":"city","p":250,"h":1,"n":"City"},{"c":4,"s":12,"id":11704,"u":"cursed","p":251,"h":1,"n":"Cursed"},{"c":4,"s":12,"id":11705,"u":"drug","p":251,"h":1,"n":"Drug"},{"c":4,"s":12,"id":11706,"u":"erratic","p":251,"h":1,"n":"Erratic"},{"c":4,"s":12,"id":11707,"u":"finite","p":251,"h":1,"n":"Finite"},{"c":4,"s":12,"id":11708,"u":"flowing","p":251,"h":1,"n":"Flowing"},{"c":4,"s":12,"id":11709,"u":"high%20gravity","p":252,"h":1,"n":"High Gravity"},{"c":4,"s":12,"id":11710,"u":"immeasurable","p":252,"h":1,"n":"Immeasurable"},{"c":4,"s":12,"id":11711,"u":"intelligent","p":252,"h":1,"n":"Intelligent"},{"c":4,"s":12,"id":11712,"u":"low%20gravity","p":252,"h":1,"n":"Low Gravity"},{"c":4,"s":12,"id":11713,"u":"metamorphic","p":253,"h":1,"n":"Metamorphic"},{"c":4,"s":12,"id":11714,"u":"metropolis","p":253,"h":1,"n":"Metropolis"},{"c":4,"s":12,"id":11715,"u":"microgravity","p":253,"h":1,"n":"Microgravity"},{"c":4,"s":12,"id":11716,"u":"reckless","p":254,"h":1,"n":"Reckless"},{"c":4,"s":12,"id":11717,"u":"sentient","p":254,"h":1,"n":"Sentient"},{"c":4,"s":12,"id":11718,"u":"static","p":254,"h":1,"n":"Static"},{"c":4,"s":12,"id":11719,"u":"strange%20gravity","p":254,"h":1,"n":"Strange Gravity"},{"c":4,"s":12,"id":11720,"u":"subjective%20gravity","p":254,"h":1,"n":"Subjective Gravity"},{"c":4,"s":12,"id":11721,"u":"timeless","p":254,"h":1,"n":"Timeless"},{"c":4,"s":12,"id":11722,"u":"town","p":254,"h":1,"n":"Town"},{"c":4,"s":12,"id":11723,"u":"unbounded","p":255,"h":1,"n":"Unbounded"},{"c":4,"s":12,"id":11724,"u":"village","p":255,"h":1,"n":"Village"},{"c":4,"s":8,"id":11725,"u":"shoony","p":82,"h":1,"n":"Shoony"},{"c":4,"s":35,"id":11726,"u":"kaiju","p":89,"h":1,"n":"Kaiju"},{"c":4,"s":2,"id":11727,"u":"automaton","p":230,"h":1,"n":"Automaton"},{"c":4,"s":2,"id":11728,"u":"capacity","p":150,"h":1,"n":"Capacity"},{"c":4,"s":2,"id":11729,"u":"clockwork","p":231,"h":1,"n":"Clockwork"},{"c":4,"s":2,"id":11730,"u":"cobbled","p":231,"h":1,"n":"Cobbled"},{"c":4,"s":2,"id":11731,"u":"combination","p":231,"h":1,"n":"Combination"},{"c":4,"s":2,"id":11732,"u":"concealable","p":231,"h":1,"n":"Concealable"},{"c":4,"s":2,"id":11733,"u":"concussive","p":231,"h":1,"n":"Concussive"},{"c":4,"s":2,"id":11734,"u":"critical%20fusion","p":231,"h":1,"n":"Critical Fusion"},{"c":4,"s":2,"id":11735,"u":"double%20barrel","p":232,"h":1,"n":"Double Barrel"},{"c":4,"s":2,"id":11736,"u":"fatal%20aim","p":150,"h":1,"n":"Fatal Aim"},{"c":4,"s":2,"id":11737,"u":"gadget","p":233,"h":1,"n":"Gadget"},{"c":4,"s":2,"id":11738,"u":"gunslinger","p":108,"h":1,"n":"Gunslinger"},{"c":4,"s":2,"id":11739,"u":"injection","p":233,"h":1,"n":"Injection"},{"c":4,"s":2,"id":11740,"u":"inventor","p":16,"h":1,"n":"Inventor"},{"c":4,"s":2,"id":11741,"u":"kickback","p":234,"h":1,"n":"Kickback"},{"c":4,"s":2,"id":11742,"u":"modification","p":234,"h":1,"n":"Modification"},{"c":4,"s":2,"id":11743,"u":"mounted","p":234,"h":1,"n":"Mounted"},{"c":4,"s":2,"id":11744,"u":"portable","p":235,"h":1,"n":"Portable"},{"c":4,"s":2,"id":11745,"u":"repeating","p":62,"h":1,"n":"Repeating"},{"c":4,"s":2,"id":11746,"u":"scatter","p":235,"h":1,"n":"Scatter"},{"c":4,"s":2,"id":11747,"u":"steam","p":236,"h":1,"n":"Steam"},{"c":4,"s":2,"id":11748,"u":"unstable","p":236,"h":1,"n":"Unstable"},{"c":4,"s":1,"id":11749,"u":"android","p":140,"h":1,"n":"Android"},{"c":4,"s":1,"id":11750,"u":"aphorite","p":140,"h":1,"n":"Aphorite"},{"c":4,"s":1,"id":11751,"u":"azarketi","p":140,"h":1,"n":"Azarketi"},{"c":4,"s":1,"id":11752,"u":"beastkin","p":140,"h":1,"n":"Beastkin"},{"c":4,"s":1,"id":11753,"u":"conrasu","p":138,"h":1,"n":"Conrasu"},{"c":4,"s":1,"id":11754,"u":"energy","p":139,"h":1,"n":"Energy"},{"c":4,"s":1,"id":11755,"u":"fleshwarp","p":141,"h":1,"n":"Fleshwarp"},{"c":4,"s":1,"id":11756,"u":"ganzi","p":141,"h":1,"n":"Ganzi"},{"c":4,"s":1,"id":11757,"u":"geniekin","p":138,"h":1,"n":"Geniekin"},{"c":4,"s":1,"id":11758,"u":"hampering","p":139,"h":1,"n":"Hampering"},{"c":4,"s":1,"id":11759,"u":"kitsune","p":141,"h":1,"n":"Kitsune"},{"c":4,"s":1,"id":11760,"u":"resonant","p":139,"h":1,"n":"Resonant"},{"c":4,"s":1,"id":11761,"u":"strix","p":142,"h":1,"n":"Strix"},{"c":4,"s":6,"id":11762,"u":"academic","p":132,"h":1,"n":"Academic"},{"c":4,"s":6,"id":11763,"u":"hellknight","p":133,"h":1,"n":"Hellknight"},{"c":4,"s":6,"id":11764,"u":"hobgoblin","p":133,"h":1,"n":"Hobgoblin"},{"c":4,"s":6,"id":11765,"u":"militaristic","p":133,"h":1,"n":"Militaristic"},{"c":4,"s":6,"id":11766,"u":"militaristic","p":133,"h":1,"n":"Militaristic"},{"c":4,"s":6,"id":11767,"u":"revolutionary","p":134,"h":1,"n":"Revolutionary"},{"c":4,"s":6,"id":11768,"u":"wayfaring","p":135,"h":1,"n":"Wayfaring"},{"c":4,"s":6,"id":11769,"u":"wayfaring","p":135,"h":1,"n":"Wayfaring"},{"c":4,"s":51,"id":11770,"u":"modular","p":120,"h":1,"n":"Modular"},{"c":4,"s":52,"id":11771,"u":"contract","p":126,"h":1,"n":"Contract"},{"c":4,"s":0,"id":11772,"u":"anadi","p":308,"h":1,"n":"Anadi"},{"c":4,"s":0,"id":11773,"u":"goloma","p":309,"h":1,"n":"Goloma"},{"c":4,"s":0,"id":11774,"u":"shisk","p":310,"h":1,"n":"Shisk"},{"c":4,"s":7,"id":11775,"u":"adjustment","p":133,"h":1,"n":"Adjustment"},{"c":4,"s":7,"id":11776,"u":"poppet","p":134,"h":1,"n":"Poppet"},{"c":4,"s":7,"id":11777,"u":"tattoo","p":135,"h":1,"n":"Tattoo"},{"c":4,"s":48,"id":11778,"u":"tattoo","p":124,"h":1,"n":"Tattoo"},{"c":4,"s":49,"id":11779,"u":"%5bclass%5d","p":219,"h":1,"n":"[Class]"},{"c":4,"s":49,"id":11780,"u":"catalyst","p":168,"h":1,"n":"Catalyst"},{"c":4,"s":49,"id":11781,"u":"class","p":193,"h":1,"n":"Class"},{"c":4,"s":49,"id":11782,"u":"contingency","p":252,"h":1,"n":"Contingency"},{"c":4,"s":49,"id":11783,"u":"eidolon","p":57,"h":1,"n":"Eidolon"},{"c":4,"s":49,"id":11784,"u":"evolution","p":57,"h":1,"n":"Evolution"},{"c":4,"s":49,"id":11785,"u":"fulu","p":253,"h":1,"n":"Fulu"},{"c":4,"s":49,"id":11786,"u":"grimoire","p":162,"h":1,"n":"Grimoire"},{"c":4,"s":49,"id":11787,"u":"incarnate","p":132,"h":1,"n":"Incarnate"},{"c":4,"s":49,"id":11788,"u":"magus","p":253,"h":1,"n":"Magus"},{"c":4,"s":49,"id":11789,"u":"pervasive%20magic","p":218,"h":1,"n":"Pervasive Magic"},{"c":4,"s":49,"id":11790,"u":"phantom","p":254,"h":1,"n":"Phantom"},{"c":4,"s":49,"id":11791,"u":"spellheart","p":170,"h":1,"n":"Spellheart"},{"c":4,"s":49,"id":11792,"u":"summoner","p":254,"h":1,"n":"Summoner"},{"c":4,"s":49,"id":11793,"u":"tandem","p":57,"h":1,"n":"Tandem"},{"c":4,"s":49,"id":11794,"u":"true%20name","p":244,"h":1,"n":"True Name"},{"c":26,"s":4,"id":11795,"u":"ape_apg","p":144,"h":1,"n":"Ape"},{"c":26,"s":4,"id":11796,"u":"arboreal%20sapling_apg","p":144,"h":1,"n":"Arboreal Sapling"},{"c":26,"s":4,"id":11797,"u":"bat_apg","p":144,"h":1,"n":"Bat"},{"c":26,"s":4,"id":11798,"u":"boar_apg","p":144,"h":1,"n":"Boar"},{"c":26,"s":4,"id":11799,"u":"crocodile_apg","p":145,"h":1,"n":"Crocodile"},{"c":26,"s":4,"id":11800,"u":"riding%20drake_apg","p":145,"h":1,"n":"Riding Drake"},{"c":26,"s":4,"id":11801,"u":"scorpion_apg","p":145,"h":1,"n":"Scorpion"},{"c":26,"s":4,"id":11802,"u":"shark_apg","p":145,"h":1,"n":"Shark"},{"c":26,"s":5,"id":11803,"u":"badger_crb","p":215,"h":1,"n":"Badger"},{"c":26,"s":5,"id":11804,"u":"bear_crb","p":215,"h":1,"n":"Bear"},{"c":26,"s":5,"id":11805,"u":"bird_crb","p":215,"h":1,"n":"Bird"},{"c":26,"s":5,"id":11806,"u":"cat_crb","p":215,"h":1,"n":"Cat"},{"c":26,"s":5,"id":11807,"u":"dromaeosaur_crb","p":216,"h":1,"n":"Dromaeosaur"},{"c":26,"s":5,"id":11808,"u":"horse_crb","p":216,"h":1,"n":"Horse"},{"c":26,"s":5,"id":11809,"u":"snake_crb","p":216,"h":1,"n":"Snake"},{"c":26,"s":5,"id":11810,"u":"wolf_crb","p":216,"h":1,"n":"Wolf"},{"c":26,"s":17,"id":11811,"u":"camel_aoa5","p":80,"h":1,"n":"Camel"},{"c":26,"s":17,"id":11812,"u":"hyena_aoa5","p":80,"h":1,"n":"Hyena"},{"c":26,"s":17,"id":11813,"u":"vulture_aoa5","p":80,"h":1,"n":"Vulture"},{"c":26,"s":30,"id":11814,"u":"cave%20gecko_ec4","p":73,"h":1,"n":"Cave Gecko"},{"c":26,"s":30,"id":11815,"u":"cave%20pterosaur_ec4","p":74,"h":1,"n":"Cave Pterosaur"},{"c":26,"s":30,"id":11816,"u":"monitor%20lizard_ec4","p":73,"h":1,"n":"Monitor Lizard"},{"c":26,"s":7,"id":11817,"u":"beetle_lotgb","p":54,"h":1,"n":"Beetle"},{"c":26,"s":7,"id":11818,"u":"capybara_lotgb","p":54,"h":1,"n":"Capybara"},{"c":26,"s":7,"id":11819,"u":"moth_lotgb","p":54,"h":1,"n":"Moth"},{"c":26,"s":7,"id":11820,"u":"pangolin_lotgb","p":55,"h":1,"n":"Pangolin"},{"c":26,"s":7,"id":11821,"u":"terror%20bird_lotgb","p":55,"h":1,"n":"Terror Bird"},{"c":26,"s":49,"id":11822,"u":"shadow%20hound_som","p":228,"h":1,"n":"Shadow Hound"},{"c":27,"s":4,"id":11823,"u":"faerie%20dragon_apg","p":147,"h":1,"n":"Faerie Dragon"},{"c":27,"s":4,"id":11824,"u":"imp_apg","p":147,"h":1,"n":"Imp"},{"c":27,"s":4,"id":11825,"u":"spellslime_apg","p":147,"h":1,"n":"Spellslime"},{"c":27,"s":47,"id":11826,"u":"aeon%20wyrd_lopsg","p":122,"h":1,"n":"Aeon Wyrd"},{"c":27,"s":47,"id":11827,"u":"calligraphy%20wyrm_lopsg","p":122,"h":1,"n":"Calligraphy Wyrm"},{"c":27,"s":47,"id":11828,"u":"dweomercat%20cub_lopsg","p":122,"h":1,"n":"Dweomercat Cub"},{"c":27,"s":47,"id":11829,"u":"poppet_lopsg","p":123,"h":1,"n":"Poppet"},{"c":27,"s":7,"id":11830,"u":"clockwork%20familiar_lotgb","p":23,"h":1,"n":"Clockwork Familiar"},{"c":27,"s":7,"id":11831,"u":"elemental%20wisp_lotgb","p":35,"h":1,"n":"Elemental Wisp"},{"c":27,"s":7,"id":11832,"u":"nosoi_lotgb","p":35,"h":1,"n":"Nosoi"},{"c":27,"s":7,"id":11833,"u":"pipefox_lotgb","p":35,"h":1,"n":"Pipefox"},{"c":27,"s":49,"id":11834,"u":"shadow%20familiar_som","p":229,"h":1,"n":"Shadow Familiar"},{"c":28,"s":49,"id":11835,"u":"angel%20eidolon_som","p":59,"h":1,"n":"Angel Eidolon"},{"c":28,"s":49,"id":11836,"u":"anger%20phantom%20eidolon_som","p":59,"h":1,"n":"Anger Phantom Eidolon"},{"c":28,"s":49,"id":11837,"u":"beast%20eidolon_som","p":61,"h":1,"n":"Beast Eidolon"},{"c":28,"s":49,"id":11838,"u":"construct%20eidolon_som","p":61,"h":1,"n":"Construct Eidolon"},{"c":28,"s":49,"id":11839,"u":"demon%20eidolon_som","p":62,"h":1,"n":"Demon Eidolon"},{"c":28,"s":49,"id":11840,"u":"devotion%20phantom%20eidolon_som","p":63,"h":1,"n":"Devotion Phantom Eidolon"},{"c":28,"s":49,"id":11841,"u":"dragon%20eidolon_som","p":63,"h":1,"n":"Dragon Eidolon"},{"c":28,"s":49,"id":11842,"u":"fey%20eidolon_som","p":64,"h":1,"n":"Fey Eidolon"},{"c":28,"s":49,"id":11843,"u":"plant%20eidolon_som","p":65,"h":1,"n":"Plant Eidolon"},{"c":28,"s":49,"id":11844,"u":"psychopomp%20eidolon_som","p":66,"h":1,"n":"Psychopomp Eidolon"},{"c":50,"s":59,"id":11845,"u":"id","n":"ID: Adventure"},{"c":70,"s":4,"id":11846,"u":"astral%20projection_apg","p":240,"h":1,"n":"Astral Projection"},{"c":70,"s":4,"id":11847,"u":"clone_apg","p":240,"h":1,"n":"Clone"},{"c":70,"s":4,"id":11848,"u":"create%20demiplane_apg","p":241,"h":1,"n":"Create Demiplane"},{"c":70,"s":4,"id":11849,"u":"fantastic%20fa%c3%a7ade_apg","p":240,"h":1,"n":"Fantastic Façade"},{"c":70,"s":4,"id":11850,"u":"heartbond_apg","p":311,"h":1,"n":"Heartbond"},{"c":70,"s":4,"id":11851,"u":"heroes'%20feast_apg","p":242,"h":1,"n":"Heroes' Feast"},{"c":70,"s":4,"id":11852,"u":"reincarnate_apg","p":242,"h":1,"n":"Reincarnate"},{"c":70,"s":4,"id":11853,"u":"rest%20eternal_apg","p":244,"h":1,"n":"Rest Eternal"},{"c":70,"s":4,"id":11854,"u":"simulacrum_apg","p":244,"h":1,"n":"Simulacrum"},{"c":70,"s":4,"id":11855,"u":"teleportation%20circle_apg","p":244,"h":1,"n":"Teleportation Circle"},{"c":70,"s":4,"id":11856,"u":"unseen%20custodians_apg","p":245,"h":1,"n":"Unseen Custodians"},{"c":70,"s":4,"id":11857,"u":"ward%20domain_apg","p":245,"h":1,"n":"Ward Domain"},{"c":70,"s":4,"id":11858,"u":"word%20of%20recall_apg","p":245,"h":1,"n":"Word of Recall"},{"c":70,"s":9,"id":11859,"u":"abyssal%20pact_bst","p":347,"h":1,"n":"Abyssal Pact"},{"c":70,"s":9,"id":11860,"u":"angelic%20messenger_bst","p":348,"h":1,"n":"Angelic Messenger"},{"c":70,"s":9,"id":11861,"u":"infernal%20pact_bst","p":348,"h":1,"n":"Infernal Pact"},{"c":70,"s":10,"id":11862,"u":"daemonic%20pact_bst2","p":311,"h":1,"n":"Daemonic Pact"},{"c":70,"s":10,"id":11863,"u":"ravenous%20reanimation_bst2","p":223,"h":1,"n":"Ravenous Reanimation"},{"c":70,"s":11,"id":11864,"u":"div%20pact_bst3","p":311,"h":1,"n":"Div Pact"},{"c":70,"s":11,"id":11865,"u":"owb%20pact_bst3","p":41,"h":1,"n":"Owb Pact"},{"c":70,"s":5,"id":11866,"u":"animate%20object_crb","p":409,"h":1,"n":"Animate Object"},{"c":70,"s":5,"id":11867,"u":"atone_crb","p":409,"h":1,"n":"Atone"},{"c":70,"s":5,"id":11868,"u":"awaken%20animal_crb","p":409,"h":1,"n":"Awaken Animal"},{"c":70,"s":5,"id":11869,"u":"blight_crb","p":410,"h":1,"n":"Blight"},{"c":70,"s":5,"id":11870,"u":"call%20spirit_crb","p":410,"h":1,"n":"Call Spirit"},{"c":70,"s":5,"id":11871,"u":"commune_crb","p":410,"h":1,"n":"Commune"},{"c":70,"s":5,"id":11872,"u":"commune%20with%20nature_crb","p":410,"h":1,"n":"Commune With Nature"},{"c":70,"s":5,"id":11873,"u":"consecrate_crb","p":410,"h":1,"n":"Consecrate"},{"c":70,"s":5,"id":11874,"u":"control%20weather_crb","p":411,"h":1,"n":"Control Weather"},{"c":70,"s":5,"id":11875,"u":"create%20undead_crb","p":411,"h":1,"n":"Create Undead"},{"c":70,"s":5,"id":11876,"u":"freedom_crb","p":411,"h":1,"n":"Freedom"},{"c":70,"s":5,"id":11877,"u":"geas_crb","p":412,"h":1,"n":"Geas"},{"c":70,"s":5,"id":11878,"u":"imprisonment_crb","p":412,"h":1,"n":"Imprisonment"},{"c":70,"s":5,"id":11879,"u":"inveigle_crb","p":413,"h":1,"n":"Inveigle"},{"c":70,"s":5,"id":11880,"u":"legend%20lore_crb","p":413,"h":1,"n":"Legend Lore"},{"c":70,"s":5,"id":11881,"u":"planar%20ally_crb","p":413,"h":1,"n":"Planar Ally"},{"c":70,"s":5,"id":11882,"u":"planar%20binding_crb","p":414,"h":1,"n":"Planar Binding"},{"c":70,"s":5,"id":11883,"u":"plant%20growth_crb","p":415,"h":1,"n":"Plant Growth"},{"c":70,"s":5,"id":11884,"u":"primal%20call_crb","p":415,"h":1,"n":"Primal Call"},{"c":70,"s":5,"id":11885,"u":"resurrect_crb","p":415,"h":1,"n":"Resurrect"},{"c":70,"s":18,"id":11886,"u":"anima%20invocation%20(modified)_aoa6","p":75,"h":1,"n":"Anima Invocation (Modified)"},{"c":70,"s":20,"id":11887,"u":"create%20skinstitch_aoe2","p":76,"h":1,"n":"Create Skinstitch"},{"c":70,"s":23,"id":11888,"u":"unfettered%20mark_aoe5","p":80,"h":1,"n":"Unfettered Mark"},{"c":70,"s":25,"id":11889,"u":"awaken%20portal_av1","p":79,"h":1,"n":"Awaken Portal"},{"c":70,"s":30,"id":11890,"u":"statuette_ec4","p":75,"h":1,"n":"Statuette"},{"c":70,"s":31,"id":11891,"u":"terminate%20bloodline_ec5","p":74,"h":1,"n":"Terminate Bloodline"},{"c":70,"s":49,"id":11892,"u":"asmodean%20wager_som","p":147,"h":1,"n":"Asmodean Wager"},{"c":70,"s":49,"id":11893,"u":"awaken%20object_som","p":147,"h":1,"n":"Awaken Object"},{"c":70,"s":49,"id":11894,"u":"bathe%20in%20blood_som","p":148,"h":1,"n":"Bathe In Blood"},{"c":70,"s":49,"id":11895,"u":"concealment's%20curtain_som","p":148,"h":1,"n":"Concealment's Curtain"},{"c":70,"s":49,"id":11896,"u":"dread%20ambience_som","p":149,"h":1,"n":"Dread Ambience"},{"c":70,"s":49,"id":11897,"u":"elemental%20sentinel_som","p":150,"h":1,"n":"Elemental Sentinel"},{"c":70,"s":49,"id":11898,"u":"empower%20ley%20line_som","p":216,"h":1,"n":"Empower Ley Line"},{"c":70,"s":49,"id":11899,"u":"establish%20nexus_som","p":217,"h":1,"n":"Establish Nexus"},{"c":70,"s":49,"id":11900,"u":"garden%20of%20death_som","p":150,"h":1,"n":"Garden Of Death"},{"c":70,"s":49,"id":11901,"u":"guardian's%20aegis_som","p":150,"h":1,"n":"Guardian's Aegis"},{"c":70,"s":49,"id":11902,"u":"ideal%20mimicry_som","p":151,"h":1,"n":"Ideal Mimicry"},{"c":70,"s":49,"id":11903,"u":"mind%20swap_som","p":151,"h":1,"n":"Mind Swap"},{"c":70,"s":49,"id":11904,"u":"mystic%20carriage_som","p":152,"h":1,"n":"Mystic Carriage"},{"c":70,"s":49,"id":11905,"u":"portrait%20of%20spite_som","p":153,"h":1,"n":"Portrait Of Spite"},{"c":70,"s":49,"id":11906,"u":"purify%20soul%20path_som","p":234,"h":1,"n":"Purify Soul Path"},{"c":70,"s":49,"id":11907,"u":"the%20world's%20a%20stage_som","p":153,"h":1,"n":"The World's A Stage"},{"c":70,"s":39,"id":11908,"u":"arcane%20weaving_sot1","p":79,"h":1,"n":"Arcane Weaving"},{"c":70,"s":39,"id":11909,"u":"fey%20abeyance_sot1","p":23,"h":1,"n":"Fey Abeyance"},{"c":70,"s":39,"id":11910,"u":"tattoo%20whispers_sot1","p":38,"h":1,"n":"Tattoo Whispers"},{"c":70,"s":40,"id":11911,"u":"community%20repair_sot2","p":75,"h":1,"n":"Community Repair"},{"c":30,"s":2,"id":11922,"u":"accelerated%20mobility_g%26g","p":17,"h":1,"n":"Accelerated Mobility"},{"c":30,"s":2,"id":11923,"u":"advanced%20rangefinder_g%26g","p":21,"h":1,"n":"Advanced Rangefinder"},{"c":30,"s":2,"id":11924,"u":"advanced%20weaponry_g%26g","p":21,"h":1,"n":"Advanced Weaponry"},{"c":30,"s":2,"id":11925,"u":"aerodynamic%20construction_g%26g","p":21,"h":1,"n":"Aerodynamic Construction"},{"c":30,"s":2,"id":11926,"u":"amphibious%20construction_g%26g","p":17,"h":1,"n":"Amphibious Construction"},{"c":30,"s":2,"id":11927,"u":"antimagic%20construction_g%26g","p":21,"h":1,"n":"Antimagic Construction"},{"c":30,"s":2,"id":11928,"u":"antimagic%20plating_g%26g","p":20,"h":1,"n":"Antimagic Plating"},{"c":30,"s":2,"id":11929,"u":"attack%20refiner_g%26g","p":23,"h":1,"n":"Attack Refiner"},{"c":30,"s":2,"id":11930,"u":"automated%20impediments_g%26g","p":23,"h":1,"n":"Automated Impediments"},{"c":30,"s":2,"id":11931,"u":"blunt%20shot_g%26g","p":17,"h":1,"n":"Blunt Shot"},{"c":30,"s":2,"id":11932,"u":"camouflage%20pigmentation_g%26g","p":20,"h":1,"n":"Camouflage Pigmentation"},{"c":30,"s":2,"id":11933,"u":"climbing%20limbs_g%26g","p":21,"h":1,"n":"Climbing Limbs"},{"c":30,"s":2,"id":11934,"u":"complex%20simplicity_g%26g","p":17,"h":1,"n":"Complex Simplicity"},{"c":30,"s":2,"id":11935,"u":"deadly%20strike_g%26g","p":23,"h":1,"n":"Deadly Strike"},{"c":30,"s":2,"id":11936,"u":"dense%20plating_g%26g","p":20,"h":1,"n":"Dense Plating"},{"c":30,"s":2,"id":11937,"u":"durable%20construction_g%26g","p":21,"h":1,"n":"Durable Construction"},{"c":30,"s":2,"id":11938,"u":"dynamic%20weighting_g%26g","p":17,"h":1,"n":"Dynamic Weighting"},{"c":30,"s":2,"id":11939,"u":"energy%20barrier_g%26g","p":23,"h":1,"n":"Energy Barrier"},{"c":30,"s":2,"id":11940,"u":"enhanced%20damage_g%26g","p":23,"h":1,"n":"Enhanced Damage"},{"c":30,"s":2,"id":11941,"u":"enhanced%20resistance_g%26g","p":20,"h":1,"n":"Enhanced Resistance"},{"c":30,"s":2,"id":11942,"u":"entangling%20form_g%26g","p":17,"h":1,"n":"Entangling Form"},{"c":30,"s":2,"id":11943,"u":"extensible%20weapon_g%26g","p":23,"h":1,"n":"Extensible Weapon"},{"c":30,"s":2,"id":11944,"u":"flight%20chassis_g%26g","p":23,"h":1,"n":"Flight Chassis"},{"c":30,"s":2,"id":11945,"u":"hampering%20spikes_g%26g","p":17,"h":1,"n":"Hampering Spikes"},{"c":30,"s":2,"id":11946,"u":"harmonic%20oscillator_g%26g","p":16,"h":1,"n":"Harmonic Oscillator"},{"c":30,"s":2,"id":11947,"u":"heavy%20construction_g%26g","p":20,"h":1,"n":"Heavy Construction"},{"c":30,"s":2,"id":11948,"u":"hefty%20composition_g%26g","p":17,"h":1,"n":"Hefty Composition"},{"c":30,"s":2,"id":11949,"u":"hyper%20boosters_g%26g","p":20,"h":1,"n":"Hyper Boosters"},{"c":30,"s":2,"id":11950,"u":"impossible%20alloy_g%26g","p":23,"h":1,"n":"Impossible Alloy"},{"c":30,"s":2,"id":11951,"u":"inconspicuous%20appearance_g%26g","p":21,"h":1,"n":"Inconspicuous Appearance"},{"c":30,"s":2,"id":11952,"u":"increased%20size_g%26g","p":17,"h":1,"n":"Increased Size"},{"c":30,"s":2,"id":11953,"u":"incredible%20resistance_g%26g","p":23,"h":1,"n":"Incredible Resistance"},{"c":30,"s":2,"id":11954,"u":"integrated%20gauntlet_g%26g","p":21,"h":1,"n":"Integrated Gauntlet"},{"c":30,"s":2,"id":11955,"u":"layered%20mesh_g%26g","p":20,"h":1,"n":"Layered Mesh"},{"c":30,"s":2,"id":11956,"u":"manifold%20alloy_g%26g","p":21,"h":1,"n":"Manifold Alloy"},{"c":30,"s":2,"id":11957,"u":"manual%20dexterity_g%26g","p":17,"h":1,"n":"Manual Dexterity"},{"c":30,"s":2,"id":11958,"u":"marvelous%20gears_g%26g","p":21,"h":1,"n":"Marvelous Gears"},{"c":30,"s":2,"id":11959,"u":"metallic%20reactance_g%26g","p":16,"h":1,"n":"Metallic Reactance"},{"c":30,"s":2,"id":11960,"u":"miracle%20gears_g%26g","p":23,"h":1,"n":"Miracle Gears"},{"c":30,"s":2,"id":11961,"u":"modular%20head_g%26g","p":17,"h":1,"n":"Modular Head"},{"c":30,"s":2,"id":11962,"u":"momentum%20retainer_g%26g","p":23,"h":1,"n":"Momentum Retainer"},{"c":30,"s":2,"id":11963,"u":"multisensory%20mask_g%26g","p":23,"h":1,"n":"Multisensory Mask"},{"c":30,"s":2,"id":11964,"u":"muscular%20exoskeleton_g%26g","p":16,"h":1,"n":"Muscular Exoskeleton"},{"c":30,"s":2,"id":11965,"u":"omnirange%20stabilizers_g%26g","p":23,"h":1,"n":"Omnirange Stabilizers"},{"c":30,"s":2,"id":11966,"u":"otherworldly%20protection_g%26g","p":16,"h":1,"n":"Otherworldly Protection"},{"c":30,"s":2,"id":11967,"u":"pacification%20tools_g%26g","p":17,"h":1,"n":"Pacification Tools"},{"c":30,"s":2,"id":11968,"u":"perfect%20fortification_g%26g","p":23,"h":1,"n":"Perfect Fortification"},{"c":30,"s":2,"id":11969,"u":"phlogistonic%20regulator_g%26g","p":16,"h":1,"n":"Phlogistonic Regulator"},{"c":30,"s":2,"id":11970,"u":"physical%20protections_g%26g","p":23,"h":1,"n":"Physical Protections"},{"c":30,"s":2,"id":11971,"u":"projectile%20launcher_g%26g","p":17,"h":1,"n":"Projectile Launcher"},{"c":30,"s":2,"id":11972,"u":"razor%20prongs_g%26g","p":17,"h":1,"n":"Razor Prongs"},{"c":30,"s":2,"id":11973,"u":"resistant%20coating_g%26g","p":23,"h":1,"n":"Resistant Coating"},{"c":30,"s":2,"id":11974,"u":"rope%20shot_g%26g","p":21,"h":1,"n":"Rope Shot"},{"c":30,"s":2,"id":11975,"u":"rune%20capacity_g%26g","p":23,"h":1,"n":"Rune Capacity"},{"c":30,"s":2,"id":11976,"u":"rune%20capacity_g%26g","p":23,"h":1,"n":"Rune Capacity"},{"c":30,"s":2,"id":11977,"u":"runic%20keystone_g%26g","p":23,"h":1,"n":"Runic Keystone"},{"c":30,"s":2,"id":11978,"u":"segmented%20frame_g%26g","p":17,"h":1,"n":"Segmented Frame"},{"c":30,"s":2,"id":11979,"u":"sensory%20array_g%26g","p":17,"h":1,"n":"Sensory Array"},{"c":30,"s":2,"id":11980,"u":"speed%20boosters_g%26g","p":16,"h":1,"n":"Speed Boosters"},{"c":30,"s":2,"id":11981,"u":"subtle%20dampeners_g%26g","p":16,"h":1,"n":"Subtle Dampeners"},{"c":30,"s":2,"id":11982,"u":"tangle%20line_g%26g","p":21,"h":1,"n":"Tangle Line"},{"c":30,"s":2,"id":11983,"u":"tensile%20absorption_g%26g","p":20,"h":1,"n":"Tensile Absorption"},{"c":30,"s":2,"id":11984,"u":"turret%20configuration_g%26g","p":21,"h":1,"n":"Turret Configuration"},{"c":30,"s":2,"id":11985,"u":"wall%20configuration_g%26g","p":23,"h":1,"n":"Wall Configuration"},{"c":30,"s":2,"id":11986,"u":"wonder%20gears_g%26g","p":17,"h":1,"n":"Wonder Gears"},{"c":30,"s":4,"id":11989,"u":"lesson%20of%20death_apg","p":100,"h":1,"n":"Lesson of Death"},{"c":30,"s":4,"id":11990,"u":"lesson%20of%20dreams_apg","p":100,"h":1,"n":"Lesson of Dreams"},{"c":30,"s":4,"id":11991,"u":"lesson%20of%20life_apg","p":100,"h":1,"n":"Lesson of Life"},{"c":30,"s":4,"id":11992,"u":"lesson%20of%20mischief_apg","p":100,"h":1,"n":"Lesson of Mischief"},{"c":30,"s":4,"id":11993,"u":"lesson%20of%20protection_apg","p":100,"h":1,"n":"Lesson of Protection"},{"c":30,"s":4,"id":11994,"u":"lesson%20of%20renewal_apg","p":100,"h":1,"n":"Lesson of Renewal"},{"c":30,"s":4,"id":11995,"u":"lesson%20of%20shadow_apg","p":100,"h":1,"n":"Lesson of Shadow"},{"c":30,"s":4,"id":11996,"u":"lesson%20of%20snow_apg","p":100,"h":1,"n":"Lesson of Snow"},{"c":30,"s":4,"id":11997,"u":"lesson%20of%20the%20elements_apg","p":100,"h":1,"n":"Lesson of the Elements"},{"c":30,"s":4,"id":11998,"u":"lesson%20of%20vengeance_apg","p":100,"h":1,"n":"Lesson of Vengeance"},{"c":30,"s":52,"id":12064,"u":"lesson%20of%20the%20frozen%20queen_lol","p":32,"h":1,"n":"Lesson of the Frozen Queen"},{"c":30,"s":39,"id":12065,"u":"lesson%20of%20calamity_sot1","p":100,"h":1,"n":"Lesson of Calamity"},{"n":"Bestiary","c":99,"u":"bestiary.html","id":12066},{"n":"Spells","c":99,"u":"spells.html","id":12067},{"n":"Backgrounds","c":99,"u":"backgrounds.html","id":12068},{"n":"Items","c":99,"u":"items.html","id":12069},{"n":"Classes","c":99,"u":"classes.html","id":12070},{"n":"Conditions","c":99,"u":"conditions.html","id":12071},{"n":"Afflictions","c":99,"u":"afflictions.html","id":12072},{"n":"Feats","c":99,"u":"feats.html","id":12073},{"n":"Companions and Familiars","c":99,"u":"companionsfamiliars.html","id":12074},{"n":"Ancestries","c":99,"u":"ancestries.html","id":12075},{"n":"Archetypes","c":99,"u":"archetypes.html","id":12076},{"n":"Variant Rules","c":99,"u":"variantrules.html","id":12077},{"n":"Adventures","c":99,"u":"adventures.html","id":12078},{"n":"Books","c":99,"u":"books.html","id":12079},{"n":"Deities","c":99,"u":"deities.html","id":12080},{"n":"Hazards","c":99,"u":"hazards.html","id":12081},{"n":"Quick Reference","c":99,"u":"quickreference.html","id":12082},{"n":"Homebrew Manager","c":99,"u":"managebrew.html","id":12083},{"n":"Renderer Demo","c":99,"u":"renderdemo.html","id":12084},{"n":"Tables","c":99,"u":"tables.html","id":12085},{"n":"Organizations","c":99,"u":"organizations.html","id":12086},{"n":"Actions","c":99,"u":"actions.html","id":12087},{"n":"Creature Abilities","c":99,"u":"abilities.html","id":12088},{"n":"Languages","c":99,"u":"languages.html","id":12089},{"n":"GM Screen","c":99,"u":"gmscreen.html","id":12090},{"n":"Changelog","c":99,"u":"changelog.html","id":12091},{"n":"Planes and Places","c":99,"u":"places.html","id":12092},{"n":"Optional Features","c":99,"u":"optionalfeatures.html","id":12093}],"m":{"s":{"LOME":0,"LOAG":1,"G&G":2,"AAWS":3,"APG":4,"CRB":5,"LOCG":6,"LOTGB":7,"EC3":8,"Bst":9,"Bst2":10,"Bst3":11,"GMG":12,"AoA1":13,"AoA2":14,"AoA3":15,"AoA4":16,"AoA5":17,"AoA6":18,"AoE1":19,"AoE2":20,"AoE3":21,"AoE4":22,"AoE5":23,"AoE6":24,"AV1":25,"AV2":26,"AV3":27,"EC1":28,"EC2":29,"EC4":30,"EC5":31,"EC6":32,"FoP":33,"FRP1":34,"FRP2":35,"FRP3":36,"LTiBA":37,"Sli":38,"SoT1":39,"SoT2":40,"TiO":41,"AoA0":42,"AoE0":43,"AV0":44,"EC0":45,"FRP0":46,"LOPSG":47,"LOWG":48,"SoM":49,"SoT0":50,"LOGM":51,"LOL":52,"AOA5":53,"AOE1":54,"AOE3":55,"NGD":56,"SOT2":57,"undefined":58,"ID":59}}} \ No newline at end of file +{"x":[{"c":20,"s":0,"id":0,"u":"anadi_lome","p":102,"h":1,"n":"Anadi"},{"c":20,"s":1,"id":1,"u":"android_loag","p":68,"h":1,"n":"Android"},{"c":20,"s":2,"id":2,"u":"automaton_g%26g","p":36,"h":1,"n":"Automaton"},{"c":20,"s":3,"id":3,"u":"azarketi_aaws","p":2,"h":1,"n":"Azarketi"},{"c":20,"s":4,"id":4,"u":"catfolk_apg","p":8,"h":1,"n":"Catfolk"},{"c":20,"s":0,"id":5,"u":"conrasu_lome","p":106,"h":1,"n":"Conrasu"},{"c":20,"s":5,"id":6,"u":"dwarf_crb","p":34,"h":1,"n":"Dwarf"},{"c":20,"s":5,"id":7,"u":"elf_crb","p":39,"h":1,"n":"Elf"},{"c":20,"s":1,"id":8,"u":"fetchling_loag","p":82,"h":1,"n":"Fetchling"},{"c":20,"s":1,"id":9,"u":"fleshwarp_loag","p":88,"h":1,"n":"Fleshwarp"},{"c":20,"s":0,"id":10,"u":"gnoll_lome","p":110,"h":1,"n":"Gnoll"},{"c":20,"s":5,"id":11,"u":"gnome_crb","p":42,"h":1,"n":"Gnome"},{"c":20,"s":5,"id":12,"u":"goblin_crb","p":46,"h":1,"n":"Goblin"},{"c":20,"s":0,"id":13,"u":"goloma_lome","p":114,"h":1,"n":"Goloma"},{"c":20,"s":0,"id":14,"u":"grippli_lome","p":118,"h":1,"n":"Grippli"},{"c":20,"s":5,"id":15,"u":"halfling_crb","p":50,"h":1,"n":"Halfling"},{"c":20,"s":6,"id":16,"u":"hobgoblin_locg","p":48,"h":1,"n":"Hobgoblin"},{"c":20,"s":5,"id":17,"u":"human_crb","p":54,"h":1,"n":"Human"},{"c":20,"s":1,"id":18,"u":"kitsune_loag","p":120,"h":1,"n":"Kitsune"},{"c":20,"s":4,"id":19,"u":"kobold_apg","p":12,"h":1,"n":"Kobold"},{"c":20,"s":6,"id":20,"u":"leshy_locg","p":52,"h":1,"n":"Leshy"},{"c":20,"s":6,"id":21,"u":"lizardfolk_locg","p":56,"h":1,"n":"Lizardfolk"},{"c":20,"s":4,"id":22,"u":"orc_apg","p":16,"h":1,"n":"Orc"},{"c":20,"s":7,"id":23,"u":"poppet_lotgb","p":60,"h":1,"n":"Poppet"},{"c":20,"s":4,"id":24,"u":"ratfolk_apg","p":20,"h":1,"n":"Ratfolk"},{"c":20,"s":0,"id":25,"u":"shisk_lome","p":122,"h":1,"n":"Shisk"},{"c":20,"s":8,"id":26,"u":"shoony_ec3","p":72,"h":1,"n":"Shoony"},{"c":20,"s":1,"id":27,"u":"sprite_loag","p":126,"h":1,"n":"Sprite"},{"c":20,"s":1,"id":28,"u":"strix_loag","p":132,"h":1,"n":"Strix"},{"c":20,"s":4,"id":29,"u":"tengu_apg","p":24,"h":1,"n":"Tengu"},{"c":21,"s":0,"id":31,"u":"anadi_lome,state:h-adaptive-lome=b1","p":103,"b":"Adaptive Anadi","n":"Adaptive Anadi (Anadi)"},{"c":21,"s":0,"id":32,"u":"anadi_lome,state:h-polychromatic-lome=b1","p":103,"b":"Polychromatic Anadi","n":"Polychromatic Anadi (Anadi)"},{"c":21,"s":0,"id":33,"u":"anadi_lome,state:h-snaring-lome=b1","p":103,"b":"Snaring Anadi","n":"Snaring Anadi (Anadi)"},{"c":21,"s":0,"id":34,"u":"anadi_lome,state:h-spindly-lome=b1","p":103,"b":"Spindly Anadi","n":"Spindly Anadi (Anadi)"},{"c":21,"s":0,"id":35,"u":"anadi_lome,state:h-venomous-lome=b1","p":103,"b":"Venomous Anadi","n":"Venomous Anadi (Anadi)"},{"c":21,"s":1,"id":37,"u":"android_loag,state:h-artisan-loag=b1","p":71,"b":"Artisan Android","n":"Artisan Android (Android)"},{"c":21,"s":1,"id":38,"u":"android_loag,state:h-impersonator-loag=b1","p":71,"b":"Impersonator Android","n":"Impersonator Android (Android)"},{"c":21,"s":1,"id":39,"u":"android_loag,state:h-laborer-loag=b1","p":71,"b":"Laborer Android","n":"Laborer Android (Android)"},{"c":21,"s":1,"id":40,"u":"android_loag,state:h-polyglot-loag=b1","p":71,"b":"Polyglot Android","n":"Polyglot Android (Android)"},{"c":21,"s":1,"id":41,"u":"android_loag,state:h-warrior-loag=b1","p":71,"b":"Warrior Android","n":"Warrior Android (Android)"},{"c":21,"s":2,"id":43,"u":"automaton_g%26g,state:h-hunter-gg=b1","p":39,"b":"Hunter Automaton","n":"Hunter Automaton (Automaton)"},{"c":21,"s":2,"id":44,"u":"automaton_g%26g,state:h-mage-gg=b1","p":39,"b":"Mage Automaton","n":"Mage Automaton (Automaton)"},{"c":21,"s":2,"id":45,"u":"automaton_g%26g,state:h-warrior-gg=b1","p":39,"b":"Warrior Automaton","n":"Warrior Automaton (Automaton)"},{"c":21,"s":2,"id":46,"u":"automaton_g%26g,state:h-sharpshooter-gg=b1","p":39,"b":"Sharpshooter Automaton","n":"Sharpshooter Automaton (Automaton)"},{"c":21,"s":3,"id":48,"u":"azarketi_aaws,state:h-ancient-scale-aaws=b1","p":3,"b":"Ancient Scale Azarketi","n":"Ancient Scale Azarketi (Azarketi)"},{"c":21,"s":3,"id":49,"u":"azarketi_aaws,state:h-benthic-aaws=b1","p":3,"b":"Benthic Azarketi","n":"Benthic Azarketi (Azarketi)"},{"c":21,"s":3,"id":50,"u":"azarketi_aaws,state:h-mistbreath-aaws=b1","p":3,"b":"Mistbreath Azarketi","n":"Mistbreath Azarketi (Azarketi)"},{"c":21,"s":3,"id":51,"u":"azarketi_aaws,state:h-river-aaws=b1","p":3,"b":"River Azarketi","n":"River Azarketi (Azarketi)"},{"c":21,"s":3,"id":52,"u":"azarketi_aaws,state:h-thalassic-aaws=b1","p":4,"b":"Thalassic Azarketi","n":"Thalassic Azarketi (Azarketi)"},{"c":21,"s":1,"id":53,"u":"azarketi_aaws,state:h-inured-loag=b1","p":13,"b":"Inured Azarketi","n":"Inured Azarketi (Azarketi)"},{"c":21,"s":1,"id":54,"u":"azarketi_aaws,state:h-murkeyed-loag=b1","p":13,"b":"Murkeyed Azarketi","n":"Murkeyed Azarketi (Azarketi)"},{"c":21,"s":1,"id":55,"u":"azarketi_aaws,state:h-spined-loag=b1","p":13,"b":"Spined Azarketi","n":"Spined Azarketi (Azarketi)"},{"c":21,"s":1,"id":56,"u":"azarketi_aaws,state:h-tactile-loag=b1","p":13,"b":"Tactile Azarketi","n":"Tactile Azarketi (Azarketi)"},{"c":21,"s":4,"id":58,"u":"catfolk_apg,state:h-clawed-apg=b1","p":9,"b":"Clawed Catfolk","n":"Clawed Catfolk (Catfolk)"},{"c":21,"s":4,"id":59,"u":"catfolk_apg,state:h-hunting-apg=b1","p":9,"b":"Hunting Catfolk","n":"Hunting Catfolk (Catfolk)"},{"c":21,"s":4,"id":60,"u":"catfolk_apg,state:h-jungle-apg=b1","p":10,"b":"Jungle Catfolk","n":"Jungle Catfolk (Catfolk)"},{"c":21,"s":4,"id":61,"u":"catfolk_apg,state:h-nine-lives-apg=b1","p":10,"b":"Nine Lives Catfolk","n":"Nine Lives Catfolk (Catfolk)"},{"c":21,"s":4,"id":62,"u":"catfolk_apg,state:h-winter-apg=b1","p":10,"b":"Winter Catfolk","n":"Winter Catfolk (Catfolk)"},{"c":21,"s":1,"id":63,"u":"catfolk_apg,state:h-flexible-loag=b1","p":17,"b":"Flexible Catfolk","n":"Flexible Catfolk (Catfolk)"},{"c":21,"s":1,"id":64,"u":"catfolk_apg,state:h-liminal-loag=b1","p":17,"b":"Liminal Catfolk","n":"Liminal Catfolk (Catfolk)"},{"c":21,"s":1,"id":65,"u":"catfolk_apg,state:h-sharpeared-loag=b1","p":17,"b":"Sharp-Eared Catfolk","n":"Sharp-Eared Catfolk (Catfolk)"},{"c":21,"s":0,"id":67,"u":"conrasu_lome,state:h-knowing-lome=b1","p":107,"b":"Rite of Knowing","n":"Rite of Knowing (Conrasu)"},{"c":21,"s":0,"id":68,"u":"conrasu_lome,state:h-light-lome=b1","p":107,"b":"Rite of Light","n":"Rite of Light (Conrasu)"},{"c":21,"s":0,"id":69,"u":"conrasu_lome,state:h-passage-lome=b1","p":107,"b":"Rite of Passage","n":"Rite of Passage (Conrasu)"},{"c":21,"s":0,"id":70,"u":"conrasu_lome,state:h-reinforcement-lome=b1","p":107,"b":"Rite of Reinforcement","n":"Rite of Reinforcement (Conrasu)"},{"c":21,"s":0,"id":71,"u":"conrasu_lome,state:h-invocation-lome=b1","p":108,"b":"Rite of Invocation","n":"Rite of Invocation (Conrasu)"},{"c":21,"s":5,"id":73,"u":"dwarf_crb,state:h-ancientblooded-crb=b1","p":35,"b":"Ancient-Blooded Dwarf","n":"Ancient-Blooded Dwarf (Dwarf)"},{"c":21,"s":5,"id":74,"u":"dwarf_crb,state:h-death-warden-crb=b1","p":35,"b":"Death Warden Dwarf","n":"Death Warden Dwarf (Dwarf)"},{"c":21,"s":5,"id":75,"u":"dwarf_crb,state:h-forge-crb=b1","p":35,"b":"Forge Dwarf","n":"Forge Dwarf (Dwarf)"},{"c":21,"s":5,"id":76,"u":"dwarf_crb,state:h-rock-crb=b1","p":36,"b":"Rock Dwarf","n":"Rock Dwarf (Dwarf)"},{"c":21,"s":5,"id":77,"u":"dwarf_crb,state:h-strongblooded-crb=b1","p":36,"b":"Strong-Blooded Dwarf","n":"Strong-Blooded Dwarf (Dwarf)"},{"c":21,"s":6,"id":78,"u":"dwarf_crb,state:h-anvil-locg=b1","p":19,"b":"Anvil Dwarf","n":"Anvil Dwarf (Dwarf)"},{"c":21,"s":6,"id":79,"u":"dwarf_crb,state:h-elemental-heart-locg=b1","p":19,"b":"Elemental Heart Dwarf","n":"Elemental Heart Dwarf (Dwarf)"},{"c":21,"s":6,"id":80,"u":"dwarf_crb,state:h-oathkeeper-locg=b1","p":19,"b":"Oathkeeper Dwarf","n":"Oathkeeper Dwarf (Dwarf)"},{"c":21,"s":5,"id":82,"u":"elf_crb,state:h-arctic-crb=b1","p":39,"b":"Arctic Elf","n":"Arctic Elf (Elf)"},{"c":21,"s":5,"id":83,"u":"elf_crb,state:h-cavern-crb=b1","p":39,"b":"Cavern Elf","n":"Cavern Elf (Elf)"},{"c":21,"s":5,"id":84,"u":"elf_crb,state:h-seer-crb=b1","p":40,"b":"Seer Elf","n":"Seer Elf (Elf)"},{"c":21,"s":5,"id":85,"u":"elf_crb,state:h-whisper-crb=b1","p":40,"b":"Whisper Elf","n":"Whisper Elf (Elf)"},{"c":21,"s":5,"id":86,"u":"elf_crb,state:h-woodland-crb=b1","p":40,"b":"Woodland Elf","n":"Woodland Elf (Elf)"},{"c":21,"s":6,"id":87,"u":"elf_crb,state:h-ancient-locg=b1","p":25,"b":"Ancient Elf","n":"Ancient Elf (Elf)"},{"c":21,"s":6,"id":88,"u":"elf_crb,state:h-desert-locg=b1","p":25,"b":"Desert Elf","n":"Desert Elf (Elf)"},{"c":21,"s":1,"id":90,"u":"fetchling_loag,state:h-bright-loag=b1","p":85,"b":"Bright Fetchling","n":"Bright Fetchling (Fetchling)"},{"c":21,"s":1,"id":91,"u":"fetchling_loag,state:h-deep-loag=b1","p":85,"b":"Deep Fetchling","n":"Deep Fetchling (Fetchling)"},{"c":21,"s":1,"id":92,"u":"fetchling_loag,state:h-liminal-loag=b1","p":85,"b":"Liminal Fetchling","n":"Liminal Fetchling (Fetchling)"},{"c":21,"s":1,"id":93,"u":"fetchling_loag,state:h-resolute-loag=b1","p":85,"b":"Resolute Fetchling","n":"Resolute Fetchling (Fetchling)"},{"c":21,"s":1,"id":94,"u":"fetchling_loag,state:h-wisp-loag=b1","p":85,"b":"Wisp Fetchling","n":"Wisp Fetchling (Fetchling)"},{"c":21,"s":1,"id":96,"u":"fleshwarp_loag,state:h-created-loag=b1","p":91,"b":"Created Fleshwarp","n":"Created Fleshwarp (Fleshwarp)"},{"c":21,"s":1,"id":97,"u":"fleshwarp_loag,state:h-mutated-loag=b1","p":91,"b":"Mutated Fleshwarp","n":"Mutated Fleshwarp (Fleshwarp)"},{"c":21,"s":1,"id":98,"u":"fleshwarp_loag,state:h-shapewrought-loag=b1","p":91,"b":"Shapewrought Fleshwarp","n":"Shapewrought Fleshwarp (Fleshwarp)"},{"c":21,"s":1,"id":99,"u":"fleshwarp_loag,state:h-technological-loag=b1","p":91,"b":"Technological Fleshwarp","n":"Technological Fleshwarp (Fleshwarp)"},{"c":21,"s":0,"id":101,"u":"gnoll_lome,state:h-ant-lome=b1","p":111,"b":"Ant Gnoll","n":"Ant Gnoll (Gnoll)"},{"c":21,"s":0,"id":102,"u":"gnoll_lome,state:h-great-lome=b1","p":111,"b":"Great Gnoll","n":"Great Gnoll (Gnoll)"},{"c":21,"s":0,"id":103,"u":"gnoll_lome,state:h-sweetbreath-lome=b1","p":111,"b":"Sweetbreath Gnoll","n":"Sweetbreath Gnoll (Gnoll)"},{"c":21,"s":0,"id":104,"u":"gnoll_lome,state:h-witch-lome=b1","p":112,"b":"Witch Gnoll","n":"Witch Gnoll (Gnoll)"},{"c":21,"s":5,"id":106,"u":"gnome_crb,state:h-chameleon-crb=b1","p":43,"b":"Chameleon Gnome","n":"Chameleon Gnome (Gnome)"},{"c":21,"s":5,"id":107,"u":"gnome_crb,state:h-feytouched-crb=b1","p":43,"b":"Fey-Touched Gnome","n":"Fey-Touched Gnome (Gnome)"},{"c":21,"s":5,"id":108,"u":"gnome_crb,state:h-sensate-crb=b1","p":44,"b":"Sensate Gnome","n":"Sensate Gnome (Gnome)"},{"c":21,"s":5,"id":109,"u":"gnome_crb,state:h-umbral-crb=b1","p":44,"b":"Umbral Gnome","n":"Umbral Gnome (Gnome)"},{"c":21,"s":5,"id":110,"u":"gnome_crb,state:h-wellspring-crb=b1","p":44,"b":"Wellspring Gnome","n":"Wellspring Gnome (Gnome)"},{"c":21,"s":6,"id":111,"u":"gnome_crb,state:h-vivacious-locg=b1","p":31,"b":"Vivacious Gnome","n":"Vivacious Gnome (Gnome)"},{"c":21,"s":5,"id":113,"u":"goblin_crb,state:h-charhide-crb=b1","p":47,"b":"Charhide Goblin","n":"Charhide Goblin (Goblin)"},{"c":21,"s":5,"id":114,"u":"goblin_crb,state:h-irongut-crb=b1","p":47,"b":"Irongut Goblin","n":"Irongut Goblin (Goblin)"},{"c":21,"s":5,"id":115,"u":"goblin_crb,state:h-razortooth-crb=b1","p":48,"b":"Razortooth Goblin","n":"Razortooth Goblin (Goblin)"},{"c":21,"s":5,"id":116,"u":"goblin_crb,state:h-snow-crb=b1","p":48,"b":"Snow Goblin","n":"Snow Goblin (Goblin)"},{"c":21,"s":5,"id":117,"u":"goblin_crb,state:h-unbreakable-crb=b1","p":48,"b":"Unbreakable Goblin","n":"Unbreakable Goblin (Goblin)"},{"c":21,"s":6,"id":118,"u":"goblin_crb,state:h-tailed-locg=b1","p":37,"b":"Tailed Goblin","n":"Tailed Goblin (Goblin)"},{"c":21,"s":6,"id":119,"u":"goblin_crb,state:h-treedweller-locg=b1","p":37,"b":"Treedweller Goblin","n":"Treedweller Goblin (Goblin)"},{"c":21,"s":0,"id":121,"u":"goloma_lome,state:h-farsight-lome=b1","p":115,"b":"Farsight Goloma","n":"Farsight Goloma (Goloma)"},{"c":21,"s":0,"id":122,"u":"goloma_lome,state:h-frightful-lome=b1","p":115,"b":"Frightful Goloma","n":"Frightful Goloma (Goloma)"},{"c":21,"s":0,"id":123,"u":"goloma_lome,state:h-insightful-lome=b1","p":115,"b":"Insightful Goloma","n":"Insightful Goloma (Goloma)"},{"c":21,"s":0,"id":124,"u":"goloma_lome,state:h-vicious-lome=b1","p":115,"b":"Vicious Goloma","n":"Vicious Goloma (Goloma)"},{"c":21,"s":0,"id":125,"u":"goloma_lome,state:h-vigilant-lome=b1","p":115,"b":"Vigilant Goloma","n":"Vigilant Goloma (Goloma)"},{"c":21,"s":0,"id":127,"u":"grippli_lome,state:h-poisonhide-lome=b1","p":119,"b":"Poisonhide Grippli","n":"Poisonhide Grippli (Grippli)"},{"c":21,"s":0,"id":128,"u":"grippli_lome,state:h-snaptongue-lome=b1","p":119,"b":"Snaptongue Grippli","n":"Snaptongue Grippli (Grippli)"},{"c":21,"s":0,"id":129,"u":"grippli_lome,state:h-stickytoe-lome=b1","p":119,"b":"Stickytoe Grippli","n":"Stickytoe Grippli (Grippli)"},{"c":21,"s":0,"id":130,"u":"grippli_lome,state:h-windweb-lome=b1","p":119,"b":"Windweb Grippli","n":"Windweb Grippli (Grippli)"},{"c":21,"s":5,"id":132,"u":"halfling_crb,state:h-gutsy-crb=b1","p":51,"b":"Gutsy Halfling","n":"Gutsy Halfling (Halfling)"},{"c":21,"s":5,"id":133,"u":"halfling_crb,state:h-hillock-crb=b1","p":51,"b":"Hillock Halfling","n":"Hillock Halfling (Halfling)"},{"c":21,"s":5,"id":134,"u":"halfling_crb,state:h-nomadic-crb=b1","p":52,"b":"Nomadic Halfling","n":"Nomadic Halfling (Halfling)"},{"c":21,"s":5,"id":135,"u":"halfling_crb,state:h-twilight-crb=b1","p":52,"b":"Twilight Halfling","n":"Twilight Halfling (Halfling)"},{"c":21,"s":5,"id":136,"u":"halfling_crb,state:h-wildwood-crb=b1","p":52,"b":"Wildwood Halfling","n":"Wildwood Halfling (Halfling)"},{"c":21,"s":6,"id":137,"u":"halfling_crb,state:h-observant-locg=b1","p":43,"b":"Observant Halfling","n":"Observant Halfling (Halfling)"},{"c":21,"s":6,"id":139,"u":"hobgoblin_locg,state:h-elfbane-locg=b1","p":49,"b":"Elfbane Hobgoblin","n":"Elfbane Hobgoblin (Hobgoblin)"},{"c":21,"s":6,"id":140,"u":"hobgoblin_locg,state:h-runtboss-locg=b1","p":49,"b":"Runtboss Hobgoblin","n":"Runtboss Hobgoblin (Hobgoblin)"},{"c":21,"s":6,"id":141,"u":"hobgoblin_locg,state:h-smokeworker-locg=b1","p":49,"b":"Smokeworker Hobgoblin","n":"Smokeworker Hobgoblin (Hobgoblin)"},{"c":21,"s":6,"id":142,"u":"hobgoblin_locg,state:h-warmarch-locg=b1","p":49,"b":"Warmarch Hobgoblin","n":"Warmarch Hobgoblin (Hobgoblin)"},{"c":21,"s":6,"id":143,"u":"hobgoblin_locg,state:h-warrenbred-locg=b1","p":49,"b":"Warrenbred Hobgoblin","n":"Warrenbred Hobgoblin (Hobgoblin)"},{"c":21,"s":5,"id":145,"u":"human_crb,state:h-halfelf-crb=b1","p":56,"b":"Half-Elf","n":"Half-Elf (Human)"},{"c":21,"s":5,"id":146,"u":"human_crb,state:h-halforc-crb=b1","p":56,"b":"Half-Orc","n":"Half-Orc (Human)"},{"c":21,"s":5,"id":147,"u":"human_crb,state:h-skilled-crb=b1","p":56,"b":"Skilled Heritage","n":"Skilled Heritage (Human)"},{"c":21,"s":5,"id":148,"u":"human_crb,state:h-versatile-crb=b1","p":56,"b":"Versatile Heritage","n":"Versatile Heritage (Human)"},{"c":21,"s":6,"id":149,"u":"human_crb,state:h-wintertouched-locg=b1","p":11,"b":"Wintertouched Heritage","n":"Wintertouched Heritage (Human)"},{"c":21,"s":1,"id":151,"u":"kitsune_loag,state:h-celestial-envoy-loag=b1","p":123,"b":"Celestial Envoy Kitsune","n":"Celestial Envoy Kitsune (Kitsune)"},{"c":21,"s":1,"id":152,"u":"kitsune_loag,state:h-dark-fields-loag=b1","p":123,"b":"Dark Fields Kitsune","n":"Dark Fields Kitsune (Kitsune)"},{"c":21,"s":1,"id":153,"u":"kitsune_loag,state:h-earthly-wilds-loag=b1","p":123,"b":"Earthly Wilds Kitsune","n":"Earthly Wilds Kitsune (Kitsune)"},{"c":21,"s":1,"id":154,"u":"kitsune_loag,state:h-empty-sky-loag=b1","p":123,"b":"Empty Sky Kitsune","n":"Empty Sky Kitsune (Kitsune)"},{"c":21,"s":1,"id":155,"u":"kitsune_loag,state:h-frozen-wind-loag=b1","p":123,"b":"Frozen Wind Kitsune","n":"Frozen Wind Kitsune (Kitsune)"},{"c":21,"s":4,"id":157,"u":"kobold_apg,state:h-cavern-apg=b1","p":13,"b":"Cavern Kobold","n":"Cavern Kobold (Kobold)"},{"c":21,"s":4,"id":158,"u":"kobold_apg,state:h-dragonscaled-apg=b1","p":13,"b":"Dragonscaled Kobold","n":"Dragonscaled Kobold (Kobold)"},{"c":21,"s":4,"id":159,"u":"kobold_apg,state:h-spellscale-apg=b1","p":14,"b":"Spellscale Kobold","n":"Spellscale Kobold (Kobold)"},{"c":21,"s":4,"id":160,"u":"kobold_apg,state:h-strongjaw-apg=b1","p":14,"b":"Strongjaw Kobold","n":"Strongjaw Kobold (Kobold)"},{"c":21,"s":4,"id":161,"u":"kobold_apg,state:h-venomtail-apg=b1","p":14,"b":"Venomtail Kobold","n":"Venomtail Kobold (Kobold)"},{"c":21,"s":1,"id":162,"u":"kobold_apg,state:h-caveclimber-loag=b1","p":37,"b":"Caveclimber Kobold","n":"Caveclimber Kobold (Kobold)"},{"c":21,"s":1,"id":163,"u":"kobold_apg,state:h-tunnelflood-loag=b1","p":37,"b":"Tunnelflood Kobold","n":"Tunnelflood Kobold (Kobold)"},{"c":21,"s":1,"id":165,"u":"leshy_locg,state:h-cactus-loag=b1","p":41,"b":"Cactus Leshy","n":"Cactus Leshy (Leshy)"},{"c":21,"s":1,"id":166,"u":"leshy_locg,state:h-fruit-loag=b1","p":42,"b":"Fruit Leshy","n":"Fruit Leshy (Leshy)"},{"c":21,"s":1,"id":167,"u":"leshy_locg,state:h-lotus-loag=b1","p":42,"b":"Lotus Leshy","n":"Lotus Leshy (Leshy)"},{"c":21,"s":1,"id":168,"u":"leshy_locg,state:h-root-loag=b1","p":42,"b":"Root Leshy","n":"Root Leshy (Leshy)"},{"c":21,"s":1,"id":169,"u":"leshy_locg,state:h-seaweed-loag=b1","p":42,"b":"Seaweed Leshy","n":"Seaweed Leshy (Leshy)"},{"c":21,"s":6,"id":170,"u":"leshy_locg,state:h-fungus-locg=b1","p":53,"b":"Fungus Leshy","n":"Fungus Leshy (Leshy)"},{"c":21,"s":6,"id":171,"u":"leshy_locg,state:h-gourd-locg=b1","p":53,"b":"Gourd Leshy","n":"Gourd Leshy (Leshy)"},{"c":21,"s":6,"id":172,"u":"leshy_locg,state:h-leaf-locg=b1","p":53,"b":"Leaf Leshy","n":"Leaf Leshy (Leshy)"},{"c":21,"s":6,"id":173,"u":"leshy_locg,state:h-vine-locg=b1","p":53,"b":"Vine Leshy","n":"Vine Leshy (Leshy)"},{"c":21,"s":6,"id":175,"u":"lizardfolk_locg,state:h-cliffscale-locg=b1","p":57,"b":"Cliffscale Lizardfolk","n":"Cliffscale Lizardfolk (Lizardfolk)"},{"c":21,"s":6,"id":176,"u":"lizardfolk_locg,state:h-frilled-locg=b1","p":57,"b":"Frilled Lizardfolk","n":"Frilled Lizardfolk (Lizardfolk)"},{"c":21,"s":6,"id":177,"u":"lizardfolk_locg,state:h-sandstrider-locg=b1","p":57,"b":"Sandstrider Lizardfolk","n":"Sandstrider Lizardfolk (Lizardfolk)"},{"c":21,"s":6,"id":178,"u":"lizardfolk_locg,state:h-unseen-locg=b1","p":57,"b":"Unseen Lizardfolk","n":"Unseen Lizardfolk (Lizardfolk)"},{"c":21,"s":6,"id":179,"u":"lizardfolk_locg,state:h-wetlander-locg=b1","p":57,"b":"Wetlander Lizardfolk","n":"Wetlander Lizardfolk (Lizardfolk)"},{"c":21,"s":1,"id":180,"u":"lizardfolk_locg,state:h-cloudleaper-loag=b1","p":45,"b":"Cloudleaper Lizardfolk","n":"Cloudleaper Lizardfolk (Lizardfolk)"},{"c":21,"s":1,"id":181,"u":"lizardfolk_locg,state:h-woodstalker-loag=b1","p":45,"b":"Woodstalker Lizardfolk","n":"Woodstalker Lizardfolk (Lizardfolk)"},{"c":21,"s":4,"id":183,"u":"orc_apg,state:h-badlands-apg=b1","p":18,"b":"Badlands Orc","n":"Badlands Orc (Orc)"},{"c":21,"s":4,"id":184,"u":"orc_apg,state:h-deep-apg=b1","p":18,"b":"Deep Orc","n":"Deep Orc (Orc)"},{"c":21,"s":4,"id":185,"u":"orc_apg,state:h-holdscarred-apg=b1","p":18,"b":"Hold-Scarred Orc","n":"Hold-Scarred Orc (Orc)"},{"c":21,"s":4,"id":186,"u":"orc_apg,state:h-rainfall-apg=b1","p":18,"b":"Rainfall Orc","n":"Rainfall Orc (Orc)"},{"c":21,"s":1,"id":187,"u":"orc_apg,state:h-battleready-loag=b1","p":49,"b":"Battle-Ready Orc","n":"Battle-Ready Orc (Orc)"},{"c":21,"s":1,"id":188,"u":"orc_apg,state:h-grave-loag=b1","p":50,"b":"Grave Orc","n":"Grave Orc (Orc)"},{"c":21,"s":1,"id":189,"u":"orc_apg,state:h-winter-loag=b1","p":50,"b":"Winter Orc","n":"Winter Orc (Orc)"},{"c":21,"s":7,"id":191,"u":"poppet_lotgb,state:h-ghost-lotgb=b1","p":62,"b":"Ghost Poppet","n":"Ghost Poppet (Poppet)"},{"c":21,"s":7,"id":192,"u":"poppet_lotgb,state:h-stuffed-lotgb=b1","p":62,"b":"Stuffed Poppet","n":"Stuffed Poppet (Poppet)"},{"c":21,"s":7,"id":193,"u":"poppet_lotgb,state:h-toy-lotgb=b1","p":63,"b":"Toy Poppet","n":"Toy Poppet (Poppet)"},{"c":21,"s":7,"id":194,"u":"poppet_lotgb,state:h-windup-lotgb=b1","p":63,"b":"Windup Poppet","n":"Windup Poppet (Poppet)"},{"c":21,"s":7,"id":195,"u":"poppet_lotgb,state:h-wishborn-lotgb=b1","p":63,"b":"Wishborn Poppet","n":"Wishborn Poppet (Poppet)"},{"c":21,"s":4,"id":197,"u":"ratfolk_apg,state:h-deep-apg=b1","p":21,"b":"Deep Rat","n":"Deep Rat (Ratfolk)"},{"c":21,"s":4,"id":198,"u":"ratfolk_apg,state:h-desert-apg=b1","p":21,"b":"Desert Rat","n":"Desert Rat (Ratfolk)"},{"c":21,"s":4,"id":199,"u":"ratfolk_apg,state:h-longsnout-apg=b1","p":21,"b":"Longsnout Rat","n":"Longsnout Rat (Ratfolk)"},{"c":21,"s":4,"id":200,"u":"ratfolk_apg,state:h-sewer-apg=b1","p":22,"b":"Sewer Rat","n":"Sewer Rat (Ratfolk)"},{"c":21,"s":4,"id":201,"u":"ratfolk_apg,state:h-shadow-apg=b1","p":22,"b":"Shadow Rat","n":"Shadow Rat (Ratfolk)"},{"c":21,"s":1,"id":202,"u":"ratfolk_apg,state:h-snow-loag=b1","p":22,"b":"Snow Rat","n":"Snow Rat (Ratfolk)"},{"c":21,"s":1,"id":203,"u":"ratfolk_apg,state:h-tunnel-loag=b1","p":22,"b":"Tunnel Rat","n":"Tunnel Rat (Ratfolk)"},{"c":21,"s":0,"id":205,"u":"shisk_lome,state:h-lorekeeper-lome=b1","p":123,"b":"Lorekeeper Shisk","n":"Lorekeeper Shisk (Shisk)"},{"c":21,"s":0,"id":206,"u":"shisk_lome,state:h-quillcoat-lome=b1","p":123,"b":"Quillcoat Shisk","n":"Quillcoat Shisk (Shisk)"},{"c":21,"s":0,"id":207,"u":"shisk_lome,state:h-spellkeeper-lome=b1","p":123,"b":"Spellkeeper Shisk","n":"Spellkeeper Shisk (Shisk)"},{"c":21,"s":0,"id":208,"u":"shisk_lome,state:h-stronggut-lome=b1","p":123,"b":"Stronggut Shisk","n":"Stronggut Shisk (Shisk)"},{"c":21,"s":0,"id":209,"u":"shisk_lome,state:h-stonestep-lome=b1","p":124,"b":"Stonestep Shisk","n":"Stonestep Shisk (Shisk)"},{"c":21,"s":8,"id":211,"u":"shoony_ec3,state:h-bloodhound-ec3=b1","p":71,"b":"Bloodhound Shoony","n":"Bloodhound Shoony (Shoony)"},{"c":21,"s":8,"id":212,"u":"shoony_ec3,state:h-fishseeker-ec3=b1","p":71,"b":"Fishseeker Shoony","n":"Fishseeker Shoony (Shoony)"},{"c":21,"s":8,"id":213,"u":"shoony_ec3,state:h-paddler-ec3=b1","p":71,"b":"Paddler Shoony","n":"Paddler Shoony (Shoony)"},{"c":21,"s":8,"id":214,"u":"shoony_ec3,state:h-thickcoat-ec3=b1","p":71,"b":"Thickcoat Shoony","n":"Thickcoat Shoony (Shoony)"},{"c":21,"s":1,"id":216,"u":"sprite_loag,state:h-draxie-loag=b1","p":129,"b":"Draxie","n":"Draxie (Sprite)"},{"c":21,"s":1,"id":217,"u":"sprite_loag,state:h-grig-loag=b1","p":129,"b":"Grig","n":"Grig (Sprite)"},{"c":21,"s":1,"id":218,"u":"sprite_loag,state:h-luminous-loag=b1","p":129,"b":"Luminous Sprite","n":"Luminous Sprite (Sprite)"},{"c":21,"s":1,"id":219,"u":"sprite_loag,state:h-melixie-loag=b1","p":129,"b":"Melixie","n":"Melixie (Sprite)"},{"c":21,"s":1,"id":220,"u":"sprite_loag,state:h-nyktera-loag=b1","p":129,"b":"Nyktera","n":"Nyktera (Sprite)"},{"c":21,"s":1,"id":221,"u":"sprite_loag,state:h-pixie-loag=b1","p":129,"b":"Pixie","n":"Pixie (Sprite)"},{"c":21,"s":1,"id":223,"u":"strix_loag,state:h-nightglider-loag=b1","p":135,"b":"Nightglider Strix","n":"Nightglider Strix (Strix)"},{"c":21,"s":1,"id":224,"u":"strix_loag,state:h-predator-loag=b1","p":135,"b":"Predator Strix","n":"Predator Strix (Strix)"},{"c":21,"s":1,"id":225,"u":"strix_loag,state:h-scavenger-loag=b1","p":135,"b":"Scavenger Strix","n":"Scavenger Strix (Strix)"},{"c":21,"s":1,"id":226,"u":"strix_loag,state:h-shoreline-loag=b1","p":135,"b":"Shoreline Strix","n":"Shoreline Strix (Strix)"},{"c":21,"s":1,"id":227,"u":"strix_loag,state:h-songbird-loag=b1","p":135,"b":"Songbird Strix","n":"Songbird Strix (Strix)"},{"c":21,"s":4,"id":229,"u":"tengu_apg,state:h-jinxed-apg=b1","p":25,"b":"Jinxed Tengu","n":"Jinxed Tengu (Tengu)"},{"c":21,"s":4,"id":230,"u":"tengu_apg,state:h-mountainkeeper-apg=b1","p":25,"b":"Mountainkeeper Tengu","n":"Mountainkeeper Tengu (Tengu)"},{"c":21,"s":4,"id":231,"u":"tengu_apg,state:h-skyborn-apg=b1","p":26,"b":"Skyborn Tengu","n":"Skyborn Tengu (Tengu)"},{"c":21,"s":4,"id":232,"u":"tengu_apg,state:h-stormtossed-apg=b1","p":26,"b":"Stormtossed Tengu","n":"Stormtossed Tengu (Tengu)"},{"c":21,"s":4,"id":233,"u":"tengu_apg,state:h-taloned-apg=b1","p":26,"b":"Taloned Tengu","n":"Taloned Tengu (Tengu)"},{"c":21,"s":1,"id":234,"u":"tengu_apg,state:h-dogtooth-loag=b1","p":57,"b":"Dogtooth Tengu","n":"Dogtooth Tengu (Tengu)"},{"c":21,"s":1,"id":235,"u":"tengu_apg,state:h-wavediver-loag=b1","p":57,"b":"Wavediver Tengu","n":"Wavediver Tengu (Tengu)"},{"c":22,"s":4,"id":236,"u":"blankhash,state:h-aasimar-apg=b1","p":34,"n":"Aasimar"},{"c":22,"s":1,"id":237,"u":"blankhash,state:h-aphorite-loag=b1","p":74,"n":"Aphorite"},{"c":22,"s":1,"id":238,"u":"blankhash,state:h-beastkin-loag=b1","p":78,"n":"Beastkin"},{"c":22,"s":4,"id":239,"u":"blankhash,state:h-changeling-apg=b1","p":30,"n":"Changeling"},{"c":22,"s":4,"id":240,"u":"blankhash,state:h-dhampir-apg=b1","p":32,"n":"Dhampir"},{"c":22,"s":4,"id":241,"u":"blankhash,state:h-duskwalker-apg=b1","p":37,"n":"Duskwalker"},{"c":22,"s":1,"id":242,"u":"blankhash,state:h-ganzi-loag=b1","p":94,"n":"Ganzi"},{"c":22,"s":1,"id":243,"u":"blankhash,state:h-ifrit-loag=b1","p":100,"n":"Ifrit"},{"c":22,"s":1,"id":244,"u":"blankhash,state:h-oread-loag=b1","p":104,"n":"Oread"},{"c":22,"s":1,"id":245,"u":"blankhash,state:h-suli-loag=b1","p":108,"n":"Suli"},{"c":22,"s":1,"id":246,"u":"blankhash,state:h-sylph-loag=b1","p":112,"n":"Sylph"},{"c":22,"s":4,"id":247,"u":"blankhash,state:h-tiefling-apg=b1","p":39,"n":"Tiefling"},{"c":22,"s":1,"id":248,"u":"blankhash,state:h-undine-loag=b1","p":116,"n":"Undine"},{"c":1,"s":9,"id":249,"u":"aasimar%20redeemer_bst","p":263,"h":1,"n":"Aasimar Redeemer"},{"c":1,"s":9,"id":250,"u":"adamantine%20golem_bst","p":189,"h":1,"n":"Adamantine Golem"},{"c":1,"s":9,"id":251,"u":"adult%20black%20dragon_bst","p":105,"h":1,"n":"Adult Black Dragon"},{"c":1,"s":9,"id":252,"u":"adult%20blue%20dragon_bst","p":108,"h":1,"n":"Adult Blue Dragon"},{"c":1,"s":9,"id":253,"u":"adult%20brass%20dragon_bst","p":118,"h":1,"n":"Adult Brass Dragon"},{"c":1,"s":9,"id":254,"u":"adult%20bronze%20dragon_bst","p":120,"h":1,"n":"Adult Bronze Dragon"},{"c":1,"s":9,"id":255,"u":"adult%20copper%20dragon_bst","p":122,"h":1,"n":"Adult Copper Dragon"},{"c":1,"s":9,"id":256,"u":"adult%20gold%20dragon_bst","p":124,"h":1,"n":"Adult Gold Dragon"},{"c":1,"s":9,"id":257,"u":"adult%20green%20dragon_bst","p":110,"h":1,"n":"Adult Green Dragon"},{"c":1,"s":9,"id":258,"u":"adult%20red%20dragon_bst","p":112,"h":1,"n":"Adult Red Dragon"},{"c":1,"s":9,"id":259,"u":"adult%20silver%20dragon_bst","p":126,"h":1,"n":"Adult Silver Dragon"},{"c":1,"s":9,"id":260,"u":"adult%20white%20dragon_bst","p":114,"h":1,"n":"Adult White Dragon"},{"c":1,"s":9,"id":261,"u":"air%20mephit_bst","p":150,"h":1,"n":"Air Mephit"},{"c":1,"s":9,"id":262,"u":"alchemical%20golem_bst","p":185,"h":1,"n":"Alchemical Golem"},{"c":1,"s":9,"id":263,"u":"alghollthu%20master_bst","p":14,"h":1,"n":"Alghollthu Master"},{"c":1,"s":9,"id":264,"u":"ancient%20black%20dragon_bst","p":106,"h":1,"n":"Ancient Black Dragon"},{"c":1,"s":9,"id":265,"u":"ancient%20blue%20dragon_bst","p":108,"h":1,"n":"Ancient Blue Dragon"},{"c":1,"s":9,"id":266,"u":"ancient%20brass%20dragon_bst","p":118,"h":1,"n":"Ancient Brass Dragon"},{"c":1,"s":9,"id":267,"u":"ancient%20bronze%20dragon_bst","p":120,"h":1,"n":"Ancient Bronze Dragon"},{"c":1,"s":9,"id":268,"u":"ancient%20copper%20dragon_bst","p":122,"h":1,"n":"Ancient Copper Dragon"},{"c":1,"s":9,"id":269,"u":"ancient%20gold%20dragon_bst","p":125,"h":1,"n":"Ancient Gold Dragon"},{"c":1,"s":9,"id":270,"u":"ancient%20green%20dragon_bst","p":110,"h":1,"n":"Ancient Green Dragon"},{"c":1,"s":9,"id":271,"u":"ancient%20red%20dragon_bst","p":112,"h":1,"n":"Ancient Red Dragon"},{"c":1,"s":9,"id":272,"u":"ancient%20silver%20dragon_bst","p":127,"h":1,"n":"Ancient Silver Dragon"},{"c":1,"s":9,"id":273,"u":"ancient%20white%20dragon_bst","p":115,"h":1,"n":"Ancient White Dragon"},{"c":1,"s":9,"id":274,"u":"animated%20armor_bst","p":20,"h":1,"n":"Animated Armor"},{"c":1,"s":9,"id":275,"u":"animated%20broom_bst","p":20,"h":1,"n":"Animated Broom"},{"c":1,"s":9,"id":276,"u":"animated%20statue_bst","p":21,"h":1,"n":"Animated Statue"},{"c":1,"s":9,"id":277,"u":"ankhrav_bst","p":22,"h":1,"n":"Ankhrav"},{"c":1,"s":9,"id":278,"u":"ankylosaurus_bst","p":97,"h":1,"n":"Ankylosaurus"},{"c":1,"s":9,"id":279,"u":"annis%20hag_bst","p":202,"h":1,"n":"Annis Hag"},{"c":1,"s":9,"id":280,"u":"arbiter_bst","p":8,"h":1,"n":"Arbiter"},{"c":1,"s":9,"id":281,"u":"arboreal%20regent_bst","p":25,"h":1,"n":"Arboreal Regent"},{"c":1,"s":9,"id":282,"u":"arboreal%20warden_bst","p":24,"h":1,"n":"Arboreal Warden"},{"c":1,"s":9,"id":283,"u":"astradaemon_bst","p":73,"h":1,"n":"Astradaemon"},{"c":1,"s":9,"id":284,"u":"astral%20deva_bst","p":19,"h":1,"n":"Astral Deva"},{"c":1,"s":9,"id":285,"u":"awakened%20tree_bst","p":25,"h":1,"n":"Awakened Tree"},{"c":1,"s":9,"id":286,"u":"axiomite_bst","p":9,"h":1,"n":"Axiomite"},{"c":1,"s":9,"id":287,"u":"azure%20worm_bst","p":57,"h":1,"n":"Azure Worm"},{"c":1,"s":9,"id":288,"u":"balisse_bst","p":18,"h":1,"n":"Balisse"},{"c":1,"s":9,"id":289,"u":"ball%20python_bst","p":302,"h":1,"n":"Ball Python"},{"c":1,"s":9,"id":290,"u":"balor_bst","p":83,"h":1,"n":"Balor"},{"c":1,"s":9,"id":291,"u":"banshee_bst","p":34,"h":1,"n":"Banshee"},{"c":1,"s":9,"id":292,"u":"baomal_bst","p":35,"h":1,"n":"Baomal"},{"c":1,"s":9,"id":293,"u":"barbazu_bst","p":88,"h":1,"n":"Barbazu"},{"c":1,"s":9,"id":294,"u":"barghest_bst","p":36,"h":1,"n":"Barghest"},{"c":1,"s":9,"id":295,"u":"basilisk_bst","p":38,"h":1,"n":"Basilisk"},{"c":1,"s":9,"id":296,"u":"black%20pudding_bst","p":255,"h":1,"n":"Black Pudding"},{"c":1,"s":9,"id":297,"u":"bloodseeker_bst","p":42,"h":1,"n":"Bloodseeker"},{"c":1,"s":9,"id":298,"u":"boar_bst","p":43,"h":1,"n":"Boar"},{"c":1,"s":9,"id":299,"u":"boggard%20scout_bst","p":44,"h":1,"n":"Boggard Scout"},{"c":1,"s":9,"id":300,"u":"boggard%20swampseer_bst","p":45,"h":1,"n":"Boggard Swampseer"},{"c":1,"s":9,"id":301,"u":"boggard%20warrior_bst","p":44,"h":1,"n":"Boggard Warrior"},{"c":1,"s":9,"id":302,"u":"brain%20collector_bst","p":46,"h":1,"n":"Brain Collector"},{"c":1,"s":9,"id":303,"u":"brine%20shark_bst","p":152,"h":1,"n":"Brine Shark"},{"c":1,"s":9,"id":304,"u":"brontosaurus_bst","p":100,"h":1,"n":"Brontosaurus"},{"c":1,"s":9,"id":305,"u":"bugbear%20thug_bst","p":47,"h":1,"n":"Bugbear Thug"},{"c":1,"s":9,"id":306,"u":"bugbear%20tormentor_bst","p":47,"h":1,"n":"Bugbear Tormentor"},{"c":1,"s":9,"id":307,"u":"bulette_bst","p":48,"h":1,"n":"Bulette"},{"c":1,"s":9,"id":308,"u":"bunyip_bst","p":49,"h":1,"n":"Bunyip"},{"c":1,"s":9,"id":309,"u":"cacodaemon_bst","p":70,"h":1,"n":"Cacodaemon"},{"c":1,"s":9,"id":310,"u":"caligni%20creeper_bst","p":50,"h":1,"n":"Caligni Creeper"},{"c":1,"s":9,"id":311,"u":"caligni%20dancer_bst","p":50,"h":1,"n":"Caligni Dancer"},{"c":1,"s":9,"id":312,"u":"caligni%20stalker_bst","p":51,"h":1,"n":"Caligni Stalker"},{"c":1,"s":9,"id":313,"u":"cassisian_bst","p":16,"h":1,"n":"Cassisian"},{"c":1,"s":9,"id":314,"u":"catfolk%20pouncer_bst","p":54,"h":1,"n":"Catfolk Pouncer"},{"c":1,"s":9,"id":315,"u":"cauthooj_bst","p":55,"h":1,"n":"Cauthooj"},{"c":1,"s":9,"id":316,"u":"cave%20bear_bst","p":40,"h":1,"n":"Cave Bear"},{"c":1,"s":9,"id":317,"u":"centaur_bst","p":60,"h":1,"n":"Centaur"},{"c":1,"s":9,"id":318,"u":"centipede%20swarm_bst","p":61,"h":1,"n":"Centipede Swarm"},{"c":1,"s":9,"id":319,"u":"ceustodaemon_bst","p":71,"h":1,"n":"Ceustodaemon"},{"c":1,"s":9,"id":320,"u":"changeling%20exile_bst","p":62,"h":1,"n":"Changeling Exile"},{"c":1,"s":9,"id":321,"u":"chimera_bst","p":63,"h":1,"n":"Chimera"},{"c":1,"s":9,"id":322,"u":"choral_bst","p":17,"h":1,"n":"Choral"},{"c":1,"s":9,"id":323,"u":"chuul_bst","p":64,"h":1,"n":"Chuul"},{"c":1,"s":9,"id":324,"u":"cinder%20rat_bst","p":148,"h":1,"n":"Cinder Rat"},{"c":1,"s":9,"id":325,"u":"clay%20golem_bst","p":186,"h":1,"n":"Clay Golem"},{"c":1,"s":9,"id":326,"u":"cloaker_bst","p":65,"h":1,"n":"Cloaker"},{"c":1,"s":9,"id":327,"u":"cloud%20giant_bst","p":173,"h":1,"n":"Cloud Giant"},{"c":1,"s":9,"id":328,"u":"cockatrice_bst","p":66,"h":1,"n":"Cockatrice"},{"c":1,"s":9,"id":329,"u":"crag%20linnorm_bst","p":224,"h":1,"n":"Crag Linnorm"},{"c":1,"s":9,"id":330,"u":"crimson%20worm_bst","p":59,"h":1,"n":"Crimson Worm"},{"c":1,"s":9,"id":331,"u":"crocodile_bst","p":67,"h":1,"n":"Crocodile"},{"c":1,"s":9,"id":332,"u":"cyclops_bst","p":68,"h":1,"n":"Cyclops"},{"c":1,"s":9,"id":333,"u":"daeodon_bst","p":43,"h":1,"n":"Daeodon"},{"c":1,"s":9,"id":334,"u":"dandasuka_bst","p":274,"h":1,"n":"Dandasuka"},{"c":1,"s":9,"id":335,"u":"dark%20naga_bst","p":242,"h":1,"n":"Dark Naga"},{"c":1,"s":9,"id":336,"u":"deadly%20mantis_bst","p":233,"h":1,"n":"Deadly Mantis"},{"c":1,"s":9,"id":337,"u":"deep%20gnome%20rockwarden_bst","p":75,"h":1,"n":"Deep Gnome Rockwarden"},{"c":1,"s":9,"id":338,"u":"deep%20gnome%20scout_bst","p":74,"h":1,"n":"Deep Gnome Scout"},{"c":1,"s":9,"id":339,"u":"deep%20gnome%20warrior_bst","p":75,"h":1,"n":"Deep Gnome Warrior"},{"c":1,"s":9,"id":340,"u":"deinonychus_bst","p":97,"h":1,"n":"Deinonychus"},{"c":1,"s":9,"id":341,"u":"deinosuchus_bst","p":67,"h":1,"n":"Deinosuchus"},{"c":1,"s":9,"id":342,"u":"demilich_bst","p":222,"h":1,"n":"Demilich"},{"c":1,"s":9,"id":343,"u":"dero%20magister_bst","p":85,"h":1,"n":"Dero Magister"},{"c":1,"s":9,"id":344,"u":"dero%20stalker_bst","p":84,"h":1,"n":"Dero Stalker"},{"c":1,"s":9,"id":345,"u":"dero%20strangler_bst","p":84,"h":1,"n":"Dero Strangler"},{"c":1,"s":9,"id":346,"u":"desert%20drake_bst","p":135,"h":1,"n":"Desert Drake"},{"c":1,"s":9,"id":347,"u":"dezullon_bst","p":94,"h":1,"n":"Dezullon"},{"c":1,"s":9,"id":348,"u":"dhampir%20wizard_bst","p":95,"h":1,"n":"Dhampir Wizard"},{"c":1,"s":9,"id":349,"u":"dire%20wolf_bst","p":334,"h":1,"n":"Dire Wolf"},{"c":1,"s":9,"id":350,"u":"djinni_bst","p":163,"h":1,"n":"Djinni"},{"c":1,"s":9,"id":351,"u":"doppelganger_bst","p":103,"h":1,"n":"Doppelganger"},{"c":1,"s":9,"id":352,"u":"dragon%20turtle_bst","p":128,"h":1,"n":"Dragon Turtle"},{"c":1,"s":9,"id":353,"u":"drakauthix_bst","p":129,"h":1,"n":"Drakauthix"},{"c":1,"s":9,"id":354,"u":"drider_bst","p":159,"h":1,"n":"Drider"},{"c":1,"s":9,"id":355,"u":"drow%20fighter_bst","p":136,"h":1,"n":"Drow Fighter"},{"c":1,"s":9,"id":356,"u":"drow%20priestess_bst","p":137,"h":1,"n":"Drow Priestess"},{"c":1,"s":9,"id":357,"u":"drow%20rogue_bst","p":137,"h":1,"n":"Drow Rogue"},{"c":1,"s":9,"id":358,"u":"dryad_bst","p":246,"h":1,"n":"Dryad"},{"c":1,"s":9,"id":359,"u":"dryad%20queen_bst","p":249,"h":1,"n":"Dryad Queen"},{"c":1,"s":9,"id":360,"u":"duergar%20bombardier_bst","p":139,"h":1,"n":"Duergar Bombardier"},{"c":1,"s":9,"id":361,"u":"duergar%20sharpshooter_bst","p":138,"h":1,"n":"Duergar Sharpshooter"},{"c":1,"s":9,"id":362,"u":"duergar%20taskmaster_bst","p":139,"h":1,"n":"Duergar Taskmaster"},{"c":1,"s":9,"id":363,"u":"dullahan_bst","p":140,"h":1,"n":"Dullahan"},{"c":1,"s":9,"id":364,"u":"duskwalker%20ghost%20hunter_bst","p":262,"h":1,"n":"Duskwalker Ghost Hunter"},{"c":1,"s":9,"id":365,"u":"eagle_bst","p":141,"h":1,"n":"Eagle"},{"c":1,"s":9,"id":366,"u":"earth%20mephit_bst","p":150,"h":1,"n":"Earth Mephit"},{"c":1,"s":9,"id":367,"u":"efreeti_bst","p":164,"h":1,"n":"Efreeti"},{"c":1,"s":9,"id":368,"u":"elananx_bst","p":143,"h":1,"n":"Elananx"},{"c":1,"s":9,"id":369,"u":"electric%20eel_bst","p":142,"h":1,"n":"Electric Eel"},{"c":1,"s":9,"id":370,"u":"elemental%20avalanche_bst","p":147,"h":1,"n":"Elemental Avalanche"},{"c":1,"s":9,"id":371,"u":"elemental%20hurricane_bst","p":145,"h":1,"n":"Elemental Hurricane"},{"c":1,"s":9,"id":372,"u":"elemental%20inferno_bst","p":149,"h":1,"n":"Elemental Inferno"},{"c":1,"s":9,"id":373,"u":"elemental%20tsunami_bst","p":153,"h":1,"n":"Elemental Tsunami"},{"c":1,"s":9,"id":374,"u":"elephant_bst","p":154,"h":1,"n":"Elephant"},{"c":1,"s":9,"id":375,"u":"erinys_bst","p":89,"h":1,"n":"Erinys"},{"c":1,"s":9,"id":376,"u":"ether%20spider_bst","p":155,"h":1,"n":"Ether Spider"},{"c":1,"s":9,"id":377,"u":"ettin_bst","p":156,"h":1,"n":"Ettin"},{"c":1,"s":9,"id":378,"u":"faceless%20stalker_bst","p":13,"h":1,"n":"Faceless Stalker"},{"c":1,"s":9,"id":379,"u":"faerie%20dragon_bst","p":157,"h":1,"n":"Faerie Dragon"},{"c":1,"s":9,"id":380,"u":"fire%20giant_bst","p":172,"h":1,"n":"Fire Giant"},{"c":1,"s":9,"id":381,"u":"fire%20mephit_bst","p":151,"h":1,"n":"Fire Mephit"},{"c":1,"s":9,"id":382,"u":"firewyrm_bst","p":149,"h":1,"n":"Firewyrm"},{"c":1,"s":9,"id":383,"u":"flame%20drake_bst","p":131,"h":1,"n":"Flame Drake"},{"c":1,"s":9,"id":384,"u":"flash%20beetle_bst","p":41,"h":1,"n":"Flash Beetle"},{"c":1,"s":9,"id":385,"u":"flesh%20golem_bst","p":185,"h":1,"n":"Flesh Golem"},{"c":1,"s":9,"id":386,"u":"frost%20drake_bst","p":134,"h":1,"n":"Frost Drake"},{"c":1,"s":9,"id":387,"u":"frost%20giant_bst","p":171,"h":1,"n":"Frost Giant"},{"c":1,"s":9,"id":388,"u":"fungus%20leshy_bst","p":219,"h":1,"n":"Fungus Leshy"},{"c":1,"s":9,"id":389,"u":"gancanagh_bst","p":31,"h":1,"n":"Gancanagh"},{"c":1,"s":9,"id":390,"u":"gargoyle_bst","p":161,"h":1,"n":"Gargoyle"},{"c":1,"s":9,"id":391,"u":"gelatinous%20cube_bst","p":254,"h":1,"n":"Gelatinous Cube"},{"c":1,"s":9,"id":392,"u":"gelugon_bst","p":91,"h":1,"n":"Gelugon"},{"c":1,"s":9,"id":393,"u":"ghaele_bst","p":33,"h":1,"n":"Ghaele"},{"c":1,"s":9,"id":394,"u":"ghast_bst","p":169,"h":1,"n":"Ghast"},{"c":1,"s":9,"id":395,"u":"ghost%20commoner_bst","p":167,"h":1,"n":"Ghost Commoner"},{"c":1,"s":9,"id":396,"u":"ghost%20mage_bst","p":167,"h":1,"n":"Ghost Mage"},{"c":1,"s":9,"id":397,"u":"ghoul_bst","p":169,"h":1,"n":"Ghoul"},{"c":1,"s":9,"id":398,"u":"giant%20anaconda_bst","p":303,"h":1,"n":"Giant Anaconda"},{"c":1,"s":9,"id":399,"u":"giant%20animated%20statue_bst","p":21,"h":1,"n":"Giant Animated Statue"},{"c":1,"s":9,"id":400,"u":"giant%20bat_bst","p":39,"h":1,"n":"Giant Bat"},{"c":1,"s":9,"id":401,"u":"giant%20centipede_bst","p":61,"h":1,"n":"Giant Centipede"},{"c":1,"s":9,"id":402,"u":"giant%20eagle_bst","p":141,"h":1,"n":"Giant Eagle"},{"c":1,"s":9,"id":403,"u":"giant%20flytrap_bst","p":160,"h":1,"n":"Giant Flytrap"},{"c":1,"s":9,"id":404,"u":"giant%20frilled%20lizard_bst","p":229,"h":1,"n":"Giant Frilled Lizard"},{"c":1,"s":9,"id":405,"u":"giant%20gecko_bst","p":228,"h":1,"n":"Giant Gecko"},{"c":1,"s":9,"id":406,"u":"giant%20mantis_bst","p":233,"h":1,"n":"Giant Mantis"},{"c":1,"s":9,"id":407,"u":"giant%20monitor%20lizard_bst","p":229,"h":1,"n":"Giant Monitor Lizard"},{"c":1,"s":9,"id":408,"u":"giant%20moray%20eel_bst","p":142,"h":1,"n":"Giant Moray Eel"},{"c":1,"s":9,"id":409,"u":"giant%20octopus_bst","p":250,"h":1,"n":"Giant Octopus"},{"c":1,"s":9,"id":410,"u":"giant%20rat_bst","p":276,"h":1,"n":"Giant Rat"},{"c":1,"s":9,"id":411,"u":"giant%20scorpion_bst","p":285,"h":1,"n":"Giant Scorpion"},{"c":1,"s":9,"id":412,"u":"giant%20stag%20beetle_bst","p":41,"h":1,"n":"Giant Stag Beetle"},{"c":1,"s":9,"id":413,"u":"giant%20tarantula_bst","p":307,"h":1,"n":"Giant Tarantula"},{"c":1,"s":9,"id":414,"u":"giant%20viper_bst","p":303,"h":1,"n":"Giant Viper"},{"c":1,"s":9,"id":415,"u":"giant%20wasp_bst","p":324,"h":1,"n":"Giant Wasp"},{"c":1,"s":9,"id":416,"u":"gibbering%20mouther_bst","p":176,"h":1,"n":"Gibbering Mouther"},{"c":1,"s":9,"id":417,"u":"gimmerling_bst","p":177,"h":1,"n":"Gimmerling"},{"c":1,"s":9,"id":418,"u":"glabrezu_bst","p":79,"h":1,"n":"Glabrezu"},{"c":1,"s":9,"id":419,"u":"gnoll%20cultist_bst","p":179,"h":1,"n":"Gnoll Cultist"},{"c":1,"s":9,"id":420,"u":"gnoll%20hunter_bst","p":178,"h":1,"n":"Gnoll Hunter"},{"c":1,"s":9,"id":421,"u":"gnoll%20sergeant_bst","p":179,"h":1,"n":"Gnoll Sergeant"},{"c":1,"s":9,"id":422,"u":"goblin%20commando_bst","p":180,"h":1,"n":"Goblin Commando"},{"c":1,"s":9,"id":423,"u":"goblin%20dog_bst","p":182,"h":1,"n":"Goblin Dog"},{"c":1,"s":9,"id":424,"u":"goblin%20pyro_bst","p":181,"h":1,"n":"Goblin Pyro"},{"c":1,"s":9,"id":425,"u":"goblin%20war%20chanter_bst","p":181,"h":1,"n":"Goblin War Chanter"},{"c":1,"s":9,"id":426,"u":"goblin%20warrior_bst","p":180,"h":1,"n":"Goblin Warrior"},{"c":1,"s":9,"id":427,"u":"gogiteth_bst","p":183,"h":1,"n":"Gogiteth"},{"c":1,"s":9,"id":428,"u":"goliath%20spider_bst","p":307,"h":1,"n":"Goliath Spider"},{"c":1,"s":9,"id":429,"u":"gorilla_bst","p":23,"h":1,"n":"Gorilla"},{"c":1,"s":9,"id":430,"u":"gourd%20leshy_bst","p":218,"h":1,"n":"Gourd Leshy"},{"c":1,"s":9,"id":431,"u":"great%20cyclops_bst","p":69,"h":1,"n":"Great Cyclops"},{"c":1,"s":9,"id":432,"u":"great%20white%20shark_bst","p":291,"h":1,"n":"Great White Shark"},{"c":1,"s":9,"id":433,"u":"greater%20barghest_bst","p":37,"h":1,"n":"Greater Barghest"},{"c":1,"s":9,"id":434,"u":"greater%20nightmare_bst","p":244,"h":1,"n":"Greater Nightmare"},{"c":1,"s":9,"id":435,"u":"greater%20shadow_bst","p":289,"h":1,"n":"Greater Shadow"},{"c":1,"s":9,"id":436,"u":"green%20hag_bst","p":201,"h":1,"n":"Green Hag"},{"c":1,"s":9,"id":437,"u":"griffon_bst","p":194,"h":1,"n":"Griffon"},{"c":1,"s":9,"id":438,"u":"grig_bst","p":308,"h":1,"n":"Grig"},{"c":1,"s":9,"id":439,"u":"grikkitog_bst","p":195,"h":1,"n":"Grikkitog"},{"c":1,"s":9,"id":440,"u":"grim%20reaper_bst","p":196,"h":1,"n":"Grim Reaper"},{"c":1,"s":9,"id":441,"u":"grizzly%20bear_bst","p":40,"h":1,"n":"Grizzly Bear"},{"c":1,"s":9,"id":442,"u":"grothlut_bst","p":158,"h":1,"n":"Grothlut"},{"c":1,"s":9,"id":443,"u":"guard%20dog_bst","p":102,"h":1,"n":"Guard Dog"},{"c":1,"s":9,"id":444,"u":"guardian%20naga_bst","p":243,"h":1,"n":"Guardian Naga"},{"c":1,"s":9,"id":445,"u":"gug_bst","p":198,"h":1,"n":"Gug"},{"c":1,"s":9,"id":446,"u":"guthallath_bst","p":199,"h":1,"n":"Guthallath"},{"c":1,"s":9,"id":447,"u":"harpy_bst","p":204,"h":1,"n":"Harpy"},{"c":1,"s":9,"id":448,"u":"hell%20hound_bst","p":205,"h":1,"n":"Hell Hound"},{"c":1,"s":9,"id":449,"u":"hill%20giant_bst","p":170,"h":1,"n":"Hill Giant"},{"c":1,"s":9,"id":450,"u":"hive%20mother_bst","p":22,"h":1,"n":"Hive Mother"},{"c":1,"s":9,"id":451,"u":"hobgoblin%20archer_bst","p":207,"h":1,"n":"Hobgoblin Archer"},{"c":1,"s":9,"id":452,"u":"hobgoblin%20general_bst","p":207,"h":1,"n":"Hobgoblin General"},{"c":1,"s":9,"id":453,"u":"hobgoblin%20soldier_bst","p":206,"h":1,"n":"Hobgoblin Soldier"},{"c":1,"s":9,"id":454,"u":"homunculus_bst","p":208,"h":1,"n":"Homunculus"},{"c":1,"s":9,"id":455,"u":"horned%20archon_bst","p":27,"h":1,"n":"Horned Archon"},{"c":1,"s":9,"id":456,"u":"hunting%20spider_bst","p":306,"h":1,"n":"Hunting Spider"},{"c":1,"s":9,"id":457,"u":"hyaenodon_bst","p":211,"h":1,"n":"Hyaenodon"},{"c":1,"s":9,"id":458,"u":"hydra_bst","p":210,"h":1,"n":"Hydra"},{"c":1,"s":9,"id":459,"u":"hyena_bst","p":211,"h":1,"n":"Hyena"},{"c":1,"s":9,"id":460,"u":"ice%20linnorm_bst","p":225,"h":1,"n":"Ice Linnorm"},{"c":1,"s":9,"id":461,"u":"imp_bst","p":87,"h":1,"n":"Imp"},{"c":1,"s":9,"id":462,"u":"invisible%20stalker_bst","p":144,"h":1,"n":"Invisible Stalker"},{"c":1,"s":9,"id":463,"u":"iron%20golem_bst","p":188,"h":1,"n":"Iron Golem"},{"c":1,"s":9,"id":464,"u":"janni_bst","p":162,"h":1,"n":"Janni"},{"c":1,"s":9,"id":465,"u":"jinkin_bst","p":193,"h":1,"n":"Jinkin"},{"c":1,"s":9,"id":466,"u":"jungle%20drake_bst","p":132,"h":1,"n":"Jungle Drake"},{"c":1,"s":9,"id":467,"u":"keketar_bst","p":269,"h":1,"n":"Keketar"},{"c":1,"s":9,"id":468,"u":"kobold%20dragon%20mage_bst","p":213,"h":1,"n":"Kobold Dragon Mage"},{"c":1,"s":9,"id":469,"u":"kobold%20scout_bst","p":213,"h":1,"n":"Kobold Scout"},{"c":1,"s":9,"id":470,"u":"kobold%20warrior_bst","p":212,"h":1,"n":"Kobold Warrior"},{"c":1,"s":9,"id":471,"u":"kolyarut_bst","p":10,"h":1,"n":"Kolyarut"},{"c":1,"s":9,"id":472,"u":"kraken_bst","p":214,"h":1,"n":"Kraken"},{"c":1,"s":9,"id":473,"u":"krooth_bst","p":215,"h":1,"n":"Krooth"},{"c":1,"s":9,"id":474,"u":"lamia_bst","p":216,"h":1,"n":"Lamia"},{"c":1,"s":9,"id":475,"u":"lamia%20matriarch_bst","p":217,"h":1,"n":"Lamia Matriarch"},{"c":1,"s":9,"id":476,"u":"lantern%20archon_bst","p":26,"h":1,"n":"Lantern Archon"},{"c":1,"s":9,"id":477,"u":"leaf%20leshy_bst","p":218,"h":1,"n":"Leaf Leshy"},{"c":1,"s":9,"id":478,"u":"legion%20archon_bst","p":28,"h":1,"n":"Legion Archon"},{"c":1,"s":9,"id":479,"u":"lemure_bst","p":86,"h":1,"n":"Lemure"},{"c":1,"s":9,"id":480,"u":"leopard_bst","p":52,"h":1,"n":"Leopard"},{"c":1,"s":9,"id":481,"u":"lesser%20death_bst","p":197,"h":1,"n":"Lesser Death"},{"c":1,"s":9,"id":482,"u":"leukodaemon_bst","p":72,"h":1,"n":"Leukodaemon"},{"c":1,"s":9,"id":483,"u":"lich_bst","p":221,"h":1,"n":"Lich"},{"c":1,"s":9,"id":484,"u":"lillend_bst","p":32,"h":1,"n":"Lillend"},{"c":1,"s":9,"id":485,"u":"lion_bst","p":52,"h":1,"n":"Lion"},{"c":1,"s":9,"id":486,"u":"living%20landslide_bst","p":146,"h":1,"n":"Living Landslide"},{"c":1,"s":9,"id":487,"u":"living%20waterfall_bst","p":152,"h":1,"n":"Living Waterfall"},{"c":1,"s":9,"id":488,"u":"living%20whirlwind_bst","p":144,"h":1,"n":"Living Whirlwind"},{"c":1,"s":9,"id":489,"u":"living%20wildfire_bst","p":148,"h":1,"n":"Living Wildfire"},{"c":1,"s":9,"id":490,"u":"lizardfolk%20defender_bst","p":230,"h":1,"n":"Lizardfolk Defender"},{"c":1,"s":9,"id":491,"u":"lizardfolk%20scout_bst","p":231,"h":1,"n":"Lizardfolk Scout"},{"c":1,"s":9,"id":492,"u":"lizardfolk%20stargazer_bst","p":231,"h":1,"n":"Lizardfolk Stargazer"},{"c":1,"s":9,"id":493,"u":"lyrakien_bst","p":30,"h":1,"n":"Lyrakien"},{"c":1,"s":9,"id":494,"u":"mammoth_bst","p":154,"h":1,"n":"Mammoth"},{"c":1,"s":9,"id":495,"u":"manticore_bst","p":232,"h":1,"n":"Manticore"},{"c":1,"s":9,"id":496,"u":"marid_bst","p":165,"h":1,"n":"Marid"},{"c":1,"s":9,"id":497,"u":"marilith_bst","p":81,"h":1,"n":"Marilith"},{"c":1,"s":9,"id":498,"u":"medusa_bst","p":234,"h":1,"n":"Medusa"},{"c":1,"s":9,"id":499,"u":"megalodon_bst","p":291,"h":1,"n":"Megalodon"},{"c":1,"s":9,"id":500,"u":"megaprimatus_bst","p":23,"h":1,"n":"Megaprimatus"},{"c":1,"s":9,"id":501,"u":"merfolk%20warrior_bst","p":235,"h":1,"n":"Merfolk Warrior"},{"c":1,"s":9,"id":502,"u":"merfolk%20wavecaller_bst","p":235,"h":1,"n":"Merfolk Wavecaller"},{"c":1,"s":9,"id":503,"u":"mimic_bst","p":236,"h":1,"n":"Mimic"},{"c":1,"s":9,"id":504,"u":"minotaur_bst","p":237,"h":1,"n":"Minotaur"},{"c":1,"s":9,"id":505,"u":"mitflit_bst","p":192,"h":1,"n":"Mitflit"},{"c":1,"s":9,"id":506,"u":"morrigna_bst","p":271,"h":1,"n":"Morrigna"},{"c":1,"s":9,"id":507,"u":"mu%20spore_bst","p":238,"h":1,"n":"Mu Spore"},{"c":1,"s":9,"id":508,"u":"mukradi_bst","p":239,"h":1,"n":"Mukradi"},{"c":1,"s":9,"id":509,"u":"mummy%20guardian_bst","p":240,"h":1,"n":"Mummy Guardian"},{"c":1,"s":9,"id":510,"u":"mummy%20pharaoh_bst","p":241,"h":1,"n":"Mummy Pharaoh"},{"c":1,"s":9,"id":511,"u":"naiad_bst","p":246,"h":1,"n":"Naiad"},{"c":1,"s":9,"id":512,"u":"naiad%20queen_bst","p":248,"h":1,"n":"Naiad Queen"},{"c":1,"s":9,"id":513,"u":"naunet_bst","p":267,"h":1,"n":"Naunet"},{"c":1,"s":9,"id":514,"u":"nessian%20warhound_bst","p":205,"h":1,"n":"Nessian Warhound"},{"c":1,"s":9,"id":515,"u":"night%20hag_bst","p":202,"h":1,"n":"Night Hag"},{"c":1,"s":9,"id":516,"u":"nightmare_bst","p":244,"h":1,"n":"Nightmare"},{"c":1,"s":9,"id":517,"u":"nilith_bst","p":245,"h":1,"n":"Nilith"},{"c":1,"s":9,"id":518,"u":"nosoi_bst","p":270,"h":1,"n":"Nosoi"},{"c":1,"s":9,"id":519,"u":"ochre%20jelly_bst","p":255,"h":1,"n":"Ochre Jelly"},{"c":1,"s":9,"id":520,"u":"ofalth_bst","p":251,"h":1,"n":"Ofalth"},{"c":1,"s":9,"id":521,"u":"ogre%20boss_bst","p":253,"h":1,"n":"Ogre Boss"},{"c":1,"s":9,"id":522,"u":"ogre%20glutton_bst","p":253,"h":1,"n":"Ogre Glutton"},{"c":1,"s":9,"id":523,"u":"ogre%20warrior_bst","p":252,"h":1,"n":"Ogre Warrior"},{"c":1,"s":9,"id":524,"u":"orc%20brute_bst","p":256,"h":1,"n":"Orc Brute"},{"c":1,"s":9,"id":525,"u":"orc%20warchief_bst","p":257,"h":1,"n":"Orc Warchief"},{"c":1,"s":9,"id":526,"u":"orc%20warrior_bst","p":257,"h":1,"n":"Orc Warrior"},{"c":1,"s":9,"id":527,"u":"otyugh_bst","p":258,"h":1,"n":"Otyugh"},{"c":1,"s":9,"id":528,"u":"owlbear_bst","p":259,"h":1,"n":"Owlbear"},{"c":1,"s":9,"id":529,"u":"pegasus_bst","p":260,"h":1,"n":"Pegasus"},{"c":1,"s":9,"id":530,"u":"phistophilus_bst","p":90,"h":1,"n":"Phistophilus"},{"c":1,"s":9,"id":531,"u":"phoenix_bst","p":261,"h":1,"n":"Phoenix"},{"c":1,"s":9,"id":532,"u":"pit%20fiend_bst","p":92,"h":1,"n":"Pit Fiend"},{"c":1,"s":9,"id":533,"u":"pixie_bst","p":309,"h":1,"n":"Pixie"},{"c":1,"s":9,"id":534,"u":"plague%20zombie_bst","p":340,"h":1,"n":"Plague Zombie"},{"c":1,"s":9,"id":535,"u":"pleroma_bst","p":10,"h":1,"n":"Pleroma"},{"c":1,"s":9,"id":536,"u":"poltergeist_bst","p":264,"h":1,"n":"Poltergeist"},{"c":1,"s":9,"id":537,"u":"poracha_bst","p":265,"h":1,"n":"Poracha"},{"c":1,"s":9,"id":538,"u":"pteranodon_bst","p":272,"h":1,"n":"Pteranodon"},{"c":1,"s":9,"id":539,"u":"pugwampi_bst","p":193,"h":1,"n":"Pugwampi"},{"c":1,"s":9,"id":540,"u":"purple%20worm_bst","p":56,"h":1,"n":"Purple Worm"},{"c":1,"s":9,"id":541,"u":"quasit_bst","p":76,"h":1,"n":"Quasit"},{"c":1,"s":9,"id":542,"u":"quatoid_bst","p":153,"h":1,"n":"Quatoid"},{"c":1,"s":9,"id":543,"u":"quelaunt_bst","p":273,"h":1,"n":"Quelaunt"},{"c":1,"s":9,"id":544,"u":"quetzalcoatlus_bst","p":272,"h":1,"n":"Quetzalcoatlus"},{"c":1,"s":9,"id":545,"u":"raja%20rakshasa_bst","p":275,"h":1,"n":"Raja Rakshasa"},{"c":1,"s":9,"id":546,"u":"rat%20swarm_bst","p":276,"h":1,"n":"Rat Swarm"},{"c":1,"s":9,"id":547,"u":"ratfolk%20grenadier_bst","p":277,"h":1,"n":"Ratfolk Grenadier"},{"c":1,"s":9,"id":548,"u":"redcap_bst","p":278,"h":1,"n":"Redcap"},{"c":1,"s":9,"id":549,"u":"reefclaw_bst","p":279,"h":1,"n":"Reefclaw"},{"c":1,"s":9,"id":550,"u":"remorhaz_bst","p":280,"h":1,"n":"Remorhaz"},{"c":1,"s":9,"id":551,"u":"riding%20dog_bst","p":102,"h":1,"n":"Riding Dog"},{"c":1,"s":9,"id":552,"u":"riding%20horse_bst","p":209,"h":1,"n":"Riding Horse"},{"c":1,"s":9,"id":553,"u":"riding%20pony_bst","p":209,"h":1,"n":"Riding Pony"},{"c":1,"s":9,"id":554,"u":"river%20drake_bst","p":131,"h":1,"n":"River Drake"},{"c":1,"s":9,"id":555,"u":"roc_bst","p":281,"h":1,"n":"Roc"},{"c":1,"s":9,"id":556,"u":"roper_bst","p":282,"h":1,"n":"Roper"},{"c":1,"s":9,"id":557,"u":"rune%20giant_bst","p":175,"h":1,"n":"Rune Giant"},{"c":1,"s":9,"id":558,"u":"rust%20monster_bst","p":283,"h":1,"n":"Rust Monster"},{"c":1,"s":9,"id":559,"u":"salamander_bst","p":148,"h":1,"n":"Salamander"},{"c":1,"s":9,"id":560,"u":"satyr_bst","p":284,"h":1,"n":"Satyr"},{"c":1,"s":9,"id":561,"u":"scorpion%20swarm_bst","p":285,"h":1,"n":"Scorpion Swarm"},{"c":1,"s":9,"id":562,"u":"sea%20devil%20baron_bst","p":287,"h":1,"n":"Sea Devil Baron"},{"c":1,"s":9,"id":563,"u":"sea%20devil%20brute_bst","p":287,"h":1,"n":"Sea Devil Brute"},{"c":1,"s":9,"id":564,"u":"sea%20devil%20scout_bst","p":286,"h":1,"n":"Sea Devil Scout"},{"c":1,"s":9,"id":565,"u":"sea%20hag_bst","p":200,"h":1,"n":"Sea Hag"},{"c":1,"s":9,"id":566,"u":"sea%20serpent_bst","p":288,"h":1,"n":"Sea Serpent"},{"c":1,"s":9,"id":567,"u":"sewer%20ooze_bst","p":254,"h":1,"n":"Sewer Ooze"},{"c":1,"s":9,"id":568,"u":"shadow_bst","p":289,"h":1,"n":"Shadow"},{"c":1,"s":9,"id":569,"u":"shaitan_bst","p":164,"h":1,"n":"Shaitan"},{"c":1,"s":9,"id":570,"u":"shambler_bst","p":290,"h":1,"n":"Shambler"},{"c":1,"s":9,"id":571,"u":"shemhazian_bst","p":80,"h":1,"n":"Shemhazian"},{"c":1,"s":9,"id":572,"u":"shield%20archon_bst","p":29,"h":1,"n":"Shield Archon"},{"c":1,"s":9,"id":573,"u":"shining%20child_bst","p":292,"h":1,"n":"Shining Child"},{"c":1,"s":9,"id":574,"u":"shoggoth_bst","p":293,"h":1,"n":"Shoggoth"},{"c":1,"s":9,"id":575,"u":"shuln_bst","p":294,"h":1,"n":"Shuln"},{"c":1,"s":9,"id":576,"u":"sinspawn_bst","p":297,"h":1,"n":"Sinspawn"},{"c":1,"s":9,"id":577,"u":"skeletal%20champion_bst","p":298,"h":1,"n":"Skeletal Champion"},{"c":1,"s":9,"id":578,"u":"skeletal%20giant_bst","p":299,"h":1,"n":"Skeletal Giant"},{"c":1,"s":9,"id":579,"u":"skeletal%20horse_bst","p":299,"h":1,"n":"Skeletal Horse"},{"c":1,"s":9,"id":580,"u":"skeletal%20hulk_bst","p":299,"h":1,"n":"Skeletal Hulk"},{"c":1,"s":9,"id":581,"u":"skeleton%20guard_bst","p":298,"h":1,"n":"Skeleton Guard"},{"c":1,"s":9,"id":582,"u":"skulltaker_bst","p":300,"h":1,"n":"Skulltaker"},{"c":1,"s":9,"id":583,"u":"skum_bst","p":12,"h":1,"n":"Skum"},{"c":1,"s":9,"id":584,"u":"slurk_bst","p":301,"h":1,"n":"Slurk"},{"c":1,"s":9,"id":585,"u":"smilodon_bst","p":53,"h":1,"n":"Smilodon"},{"c":1,"s":9,"id":586,"u":"snapping%20flytrap_bst","p":160,"h":1,"n":"Snapping Flytrap"},{"c":1,"s":9,"id":587,"u":"sod%20hound_bst","p":146,"h":1,"n":"Sod Hound"},{"c":1,"s":9,"id":588,"u":"soulbound%20doll_bst","p":304,"h":1,"n":"Soulbound Doll"},{"c":1,"s":9,"id":589,"u":"sphinx_bst","p":305,"h":1,"n":"Sphinx"},{"c":1,"s":9,"id":590,"u":"spider%20swarm_bst","p":306,"h":1,"n":"Spider Swarm"},{"c":1,"s":9,"id":591,"u":"sprite_bst","p":308,"h":1,"n":"Sprite"},{"c":1,"s":9,"id":592,"u":"stegosaurus_bst","p":98,"h":1,"n":"Stegosaurus"},{"c":1,"s":9,"id":593,"u":"stone%20giant_bst","p":170,"h":1,"n":"Stone Giant"},{"c":1,"s":9,"id":594,"u":"stone%20golem_bst","p":187,"h":1,"n":"Stone Golem"},{"c":1,"s":9,"id":595,"u":"stone%20mauler_bst","p":147,"h":1,"n":"Stone Mauler"},{"c":1,"s":9,"id":596,"u":"storm%20giant_bst","p":174,"h":1,"n":"Storm Giant"},{"c":1,"s":9,"id":597,"u":"storm%20lord_bst","p":145,"h":1,"n":"Storm Lord"},{"c":1,"s":9,"id":598,"u":"succubus_bst","p":77,"h":1,"n":"Succubus"},{"c":1,"s":9,"id":599,"u":"tarn%20linnorm_bst","p":226,"h":1,"n":"Tarn Linnorm"},{"c":1,"s":9,"id":600,"u":"tengu%20sneak_bst","p":310,"h":1,"n":"Tengu Sneak"},{"c":1,"s":9,"id":601,"u":"terotricus_bst","p":311,"h":1,"n":"Terotricus"},{"c":1,"s":9,"id":602,"u":"tidal%20master_bst","p":153,"h":1,"n":"Tidal Master"},{"c":1,"s":9,"id":603,"u":"tiefling%20adept_bst","p":262,"h":1,"n":"Tiefling Adept"},{"c":1,"s":9,"id":604,"u":"tiger_bst","p":53,"h":1,"n":"Tiger"},{"c":1,"s":9,"id":605,"u":"tor%20linnorm_bst","p":227,"h":1,"n":"Tor Linnorm"},{"c":1,"s":9,"id":606,"u":"treerazer_bst","p":312,"h":1,"n":"Treerazer"},{"c":1,"s":9,"id":607,"u":"triceratops_bst","p":99,"h":1,"n":"Triceratops"},{"c":1,"s":9,"id":608,"u":"troll_bst","p":314,"h":1,"n":"Troll"},{"c":1,"s":9,"id":609,"u":"troll%20king_bst","p":315,"h":1,"n":"Troll King"},{"c":1,"s":9,"id":610,"u":"tyrannosaurus_bst","p":101,"h":1,"n":"Tyrannosaurus"},{"c":1,"s":9,"id":611,"u":"unicorn_bst","p":316,"h":1,"n":"Unicorn"},{"c":1,"s":9,"id":612,"u":"uthul_bst","p":317,"h":1,"n":"Uthul"},{"c":1,"s":9,"id":613,"u":"vampire%20bat%20swarm_bst","p":39,"h":1,"n":"Vampire Bat Swarm"},{"c":1,"s":9,"id":614,"u":"vampire%20count_bst","p":320,"h":1,"n":"Vampire Count"},{"c":1,"s":9,"id":615,"u":"vampire%20mastermind_bst","p":321,"h":1,"n":"Vampire Mastermind"},{"c":1,"s":9,"id":616,"u":"vampire%20spawn%20rogue_bst","p":320,"h":1,"n":"Vampire Spawn Rogue"},{"c":1,"s":9,"id":617,"u":"veiled%20master_bst","p":15,"h":1,"n":"Veiled Master"},{"c":1,"s":9,"id":618,"u":"velociraptor_bst","p":96,"h":1,"n":"Velociraptor"},{"c":1,"s":9,"id":619,"u":"viper_bst","p":302,"h":1,"n":"Viper"},{"c":1,"s":9,"id":620,"u":"voidworm_bst","p":266,"h":1,"n":"Voidworm"},{"c":1,"s":9,"id":621,"u":"vrock_bst","p":78,"h":1,"n":"Vrock"},{"c":1,"s":9,"id":622,"u":"war%20horse_bst","p":209,"h":1,"n":"War Horse"},{"c":1,"s":9,"id":623,"u":"war%20pony_bst","p":209,"h":1,"n":"War Pony"},{"c":1,"s":9,"id":624,"u":"warg_bst","p":322,"h":1,"n":"Warg"},{"c":1,"s":9,"id":625,"u":"warsworn_bst","p":323,"h":1,"n":"Warsworn"},{"c":1,"s":9,"id":626,"u":"wasp%20swarm_bst","p":324,"h":1,"n":"Wasp Swarm"},{"c":1,"s":9,"id":627,"u":"water%20mephit_bst","p":151,"h":1,"n":"Water Mephit"},{"c":1,"s":9,"id":628,"u":"web%20lurker_bst","p":325,"h":1,"n":"Web Lurker"},{"c":1,"s":9,"id":629,"u":"wemmuth_bst","p":326,"h":1,"n":"Wemmuth"},{"c":1,"s":9,"id":630,"u":"wendigo_bst","p":327,"h":1,"n":"Wendigo"},{"c":1,"s":9,"id":631,"u":"werebear_bst","p":331,"h":1,"n":"Werebear"},{"c":1,"s":9,"id":632,"u":"wererat_bst","p":329,"h":1,"n":"Wererat"},{"c":1,"s":9,"id":633,"u":"werewolf_bst","p":330,"h":1,"n":"Werewolf"},{"c":1,"s":9,"id":634,"u":"wight_bst","p":332,"h":1,"n":"Wight"},{"c":1,"s":9,"id":635,"u":"will-o'-wisp_bst","p":333,"h":1,"n":"Will-o'-wisp"},{"c":1,"s":9,"id":636,"u":"winter%20wolf_bst","p":322,"h":1,"n":"Winter Wolf"},{"c":1,"s":9,"id":637,"u":"wolf_bst","p":334,"h":1,"n":"Wolf"},{"c":1,"s":9,"id":638,"u":"wraith_bst","p":335,"h":1,"n":"Wraith"},{"c":1,"s":9,"id":639,"u":"wyvern_bst","p":133,"h":1,"n":"Wyvern"},{"c":1,"s":9,"id":640,"u":"xorn_bst","p":146,"h":1,"n":"Xorn"},{"c":1,"s":9,"id":641,"u":"xulgath%20leader_bst","p":337,"h":1,"n":"Xulgath Leader"},{"c":1,"s":9,"id":642,"u":"xulgath%20skulker_bst","p":337,"h":1,"n":"Xulgath Skulker"},{"c":1,"s":9,"id":643,"u":"xulgath%20warrior_bst","p":336,"h":1,"n":"Xulgath Warrior"},{"c":1,"s":9,"id":644,"u":"yeti_bst","p":338,"h":1,"n":"Yeti"},{"c":1,"s":9,"id":645,"u":"young%20black%20dragon_bst","p":105,"h":1,"n":"Young Black Dragon"},{"c":1,"s":9,"id":646,"u":"young%20blue%20dragon_bst","p":107,"h":1,"n":"Young Blue Dragon"},{"c":1,"s":9,"id":647,"u":"young%20brass%20dragon_bst","p":117,"h":1,"n":"Young Brass Dragon"},{"c":1,"s":9,"id":648,"u":"young%20bronze%20dragon_bst","p":119,"h":1,"n":"Young Bronze Dragon"},{"c":1,"s":9,"id":649,"u":"young%20copper%20dragon_bst","p":121,"h":1,"n":"Young Copper Dragon"},{"c":1,"s":9,"id":650,"u":"young%20gold%20dragon_bst","p":124,"h":1,"n":"Young Gold Dragon"},{"c":1,"s":9,"id":651,"u":"young%20green%20dragon_bst","p":109,"h":1,"n":"Young Green Dragon"},{"c":1,"s":9,"id":652,"u":"young%20red%20dragon_bst","p":112,"h":1,"n":"Young Red Dragon"},{"c":1,"s":9,"id":653,"u":"young%20silver%20dragon_bst","p":126,"h":1,"n":"Young Silver Dragon"},{"c":1,"s":9,"id":654,"u":"young%20white%20dragon_bst","p":113,"h":1,"n":"Young White Dragon"},{"c":1,"s":9,"id":655,"u":"zaramuun_bst","p":339,"h":1,"n":"Zaramuun"},{"c":1,"s":9,"id":656,"u":"zephyr%20hawk_bst","p":144,"h":1,"n":"Zephyr Hawk"},{"c":1,"s":9,"id":657,"u":"zombie%20brute_bst","p":341,"h":1,"n":"Zombie Brute"},{"c":1,"s":9,"id":658,"u":"zombie%20hulk_bst","p":341,"h":1,"n":"Zombie Hulk"},{"c":1,"s":9,"id":659,"u":"zombie%20shambler_bst","p":340,"h":1,"n":"Zombie Shambler"},{"c":1,"s":10,"id":660,"u":"aapoph%20serpentfolk_bst2","p":238,"h":1,"n":"Aapoph Serpentfolk"},{"c":1,"s":10,"id":661,"u":"adult%20brine%20dragon_bst2","p":87,"h":1,"n":"Adult Brine Dragon"},{"c":1,"s":10,"id":662,"u":"adult%20cloud%20dragon_bst2","p":90,"h":1,"n":"Adult Cloud Dragon"},{"c":1,"s":10,"id":663,"u":"adult%20crystal%20dragon_bst2","p":92,"h":1,"n":"Adult Crystal Dragon"},{"c":1,"s":10,"id":664,"u":"adult%20magma%20dragon_bst2","p":94,"h":1,"n":"Adult Magma Dragon"},{"c":1,"s":10,"id":665,"u":"adult%20umbral%20dragon_bst2","p":96,"h":1,"n":"Adult Umbral Dragon"},{"c":1,"s":10,"id":666,"u":"ahuizotl_bst2","p":12,"h":1,"n":"Ahuizotl"},{"c":1,"s":10,"id":667,"u":"akata_bst2","p":13,"h":1,"n":"Akata"},{"c":1,"s":10,"id":668,"u":"akizendri_bst2","p":204,"h":1,"n":"Akizendri"},{"c":1,"s":10,"id":669,"u":"amoeba%20swarm_bst2","p":192,"h":1,"n":"Amoeba Swarm"},{"c":1,"s":10,"id":670,"u":"anancus_bst2","p":116,"h":1,"n":"Anancus"},{"c":1,"s":10,"id":671,"u":"ancient%20brine%20dragon_bst2","p":88,"h":1,"n":"Ancient Brine Dragon"},{"c":1,"s":10,"id":672,"u":"ancient%20cloud%20dragon_bst2","p":90,"h":1,"n":"Ancient Cloud Dragon"},{"c":1,"s":10,"id":673,"u":"ancient%20crystal%20dragon_bst2","p":92,"h":1,"n":"Ancient Crystal Dragon"},{"c":1,"s":10,"id":674,"u":"ancient%20magma%20dragon_bst2","p":95,"h":1,"n":"Ancient Magma Dragon"},{"c":1,"s":10,"id":675,"u":"ancient%20umbral%20dragon_bst2","p":97,"h":1,"n":"Ancient Umbral Dragon"},{"c":1,"s":10,"id":676,"u":"animate%20dream_bst2","p":18,"h":1,"n":"Animate Dream"},{"c":1,"s":10,"id":677,"u":"ankou_bst2","p":19,"h":1,"n":"Ankou"},{"c":1,"s":10,"id":678,"u":"aolaz_bst2","p":21,"h":1,"n":"Aolaz"},{"c":1,"s":10,"id":679,"u":"army%20ant%20swarm_bst2","p":20,"h":1,"n":"Army Ant Swarm"},{"c":1,"s":10,"id":680,"u":"assassin%20vine_bst2","p":26,"h":1,"n":"Assassin Vine"},{"c":1,"s":10,"id":681,"u":"athach_bst2","p":27,"h":1,"n":"Athach"},{"c":1,"s":10,"id":682,"u":"attic%20whisperer_bst2","p":28,"h":1,"n":"Attic Whisperer"},{"c":1,"s":10,"id":683,"u":"augnagar_bst2","p":216,"h":1,"n":"Augnagar"},{"c":1,"s":10,"id":684,"u":"augur_bst2","p":280,"h":1,"n":"Augur"},{"c":1,"s":10,"id":685,"u":"aurumvorax_bst2","p":29,"h":1,"n":"Aurumvorax"},{"c":1,"s":10,"id":686,"u":"azuretzi_bst2","p":206,"h":1,"n":"Azuretzi"},{"c":1,"s":10,"id":687,"u":"babau_bst2","p":64,"h":1,"n":"Babau"},{"c":1,"s":10,"id":688,"u":"badger_bst2","p":32,"h":1,"n":"Badger"},{"c":1,"s":10,"id":689,"u":"baobhan%20sith_bst2","p":33,"h":1,"n":"Baobhan Sith"},{"c":1,"s":10,"id":690,"u":"basidirond_bst2","p":34,"h":1,"n":"Basidirond"},{"c":1,"s":10,"id":691,"u":"bastion%20archon_bst2","p":25,"h":1,"n":"Bastion Archon"},{"c":1,"s":10,"id":692,"u":"bebilith_bst2","p":37,"h":1,"n":"Bebilith"},{"c":1,"s":10,"id":693,"u":"behemoth%20hippopotamus_bst2","p":144,"h":1,"n":"Behemoth Hippopotamus"},{"c":1,"s":10,"id":694,"u":"behir_bst2","p":38,"h":1,"n":"Behir"},{"c":1,"s":10,"id":695,"u":"belker_bst2","p":106,"h":1,"n":"Belker"},{"c":1,"s":10,"id":696,"u":"black%20bear_bst2","p":36,"h":1,"n":"Black Bear"},{"c":1,"s":10,"id":697,"u":"black%20scorpion_bst2","p":234,"h":1,"n":"Black Scorpion"},{"c":1,"s":10,"id":698,"u":"blindheim_bst2","p":39,"h":1,"n":"Blindheim"},{"c":1,"s":10,"id":699,"u":"blink%20dog_bst2","p":40,"h":1,"n":"Blink Dog"},{"c":1,"s":10,"id":700,"u":"blizzardborn_bst2","p":115,"h":1,"n":"Blizzardborn"},{"c":1,"s":10,"id":701,"u":"blodeuwedd_bst2","p":41,"h":1,"n":"Blodeuwedd"},{"c":1,"s":10,"id":702,"u":"blue-ringed%20octopus_bst2","p":187,"h":1,"n":"Blue-ringed Octopus"},{"c":1,"s":10,"id":703,"u":"bodak_bst2","p":42,"h":1,"n":"Bodak"},{"c":1,"s":10,"id":704,"u":"bog%20mummy_bst2","p":177,"h":1,"n":"Bog Mummy"},{"c":1,"s":10,"id":705,"u":"bog%20strider_bst2","p":43,"h":1,"n":"Bog Strider"},{"c":1,"s":10,"id":706,"u":"bone%20prophet_bst2","p":239,"h":1,"n":"Bone Prophet"},{"c":1,"s":10,"id":707,"u":"bottlenose%20dolphin_bst2","p":84,"h":1,"n":"Bottlenose Dolphin"},{"c":1,"s":10,"id":708,"u":"bralani_bst2","p":30,"h":1,"n":"Bralani"},{"c":1,"s":10,"id":709,"u":"brood%20leech%20swarm_bst2","p":156,"h":1,"n":"Brood Leech Swarm"},{"c":1,"s":10,"id":710,"u":"brownie_bst2","p":44,"h":1,"n":"Brownie"},{"c":1,"s":10,"id":711,"u":"bythos_bst2","p":11,"h":1,"n":"Bythos"},{"c":1,"s":10,"id":712,"u":"cairn%20linnorm_bst2","p":166,"h":1,"n":"Cairn Linnorm"},{"c":1,"s":10,"id":713,"u":"cairn%20wight_bst2","p":292,"h":1,"n":"Cairn Wight"},{"c":1,"s":10,"id":714,"u":"calathgar_bst2","p":45,"h":1,"n":"Calathgar"},{"c":1,"s":10,"id":715,"u":"caligni%20slayer_bst2","p":46,"h":1,"n":"Caligni Slayer"},{"c":1,"s":10,"id":716,"u":"carbuncle_bst2","p":47,"h":1,"n":"Carbuncle"},{"c":1,"s":10,"id":717,"u":"carnivorous%20blob_bst2","p":195,"h":1,"n":"Carnivorous Blob"},{"c":1,"s":10,"id":718,"u":"carrion%20golem_bst2","p":128,"h":1,"n":"Carrion Golem"},{"c":1,"s":10,"id":719,"u":"catoblepas_bst2","p":48,"h":1,"n":"Catoblepas"},{"c":1,"s":10,"id":720,"u":"catrina_bst2","p":209,"h":1,"n":"Catrina"},{"c":1,"s":10,"id":721,"u":"cave%20fisher_bst2","p":49,"h":1,"n":"Cave Fisher"},{"c":1,"s":10,"id":722,"u":"cave%20scorpion_bst2","p":234,"h":1,"n":"Cave Scorpion"},{"c":1,"s":10,"id":723,"u":"cavern%20troll_bst2","p":265,"h":1,"n":"Cavern Troll"},{"c":1,"s":10,"id":724,"u":"chernobue_bst2","p":214,"h":1,"n":"Chernobue"},{"c":1,"s":10,"id":725,"u":"choker_bst2","p":51,"h":1,"n":"Choker"},{"c":1,"s":10,"id":726,"u":"chupacabra_bst2","p":52,"h":1,"n":"Chupacabra"},{"c":1,"s":10,"id":727,"u":"cockroach%20swarm_bst2","p":53,"h":1,"n":"Cockroach Swarm"},{"c":1,"s":10,"id":728,"u":"coil%20spy_bst2","p":238,"h":1,"n":"Coil Spy"},{"c":1,"s":10,"id":729,"u":"compsognathus_bst2","p":80,"h":1,"n":"Compsognathus"},{"c":1,"s":10,"id":730,"u":"cornugon_bst2","p":77,"h":1,"n":"Cornugon"},{"c":1,"s":10,"id":731,"u":"crawling%20hand_bst2","p":56,"h":1,"n":"Crawling Hand"},{"c":1,"s":10,"id":732,"u":"culdewen_bst2","p":57,"h":1,"n":"Culdewen"},{"c":1,"s":10,"id":733,"u":"cythnigot_bst2","p":212,"h":1,"n":"Cythnigot"},{"c":1,"s":10,"id":734,"u":"d'ziriak_bst2","p":104,"h":1,"n":"D'ziriak"},{"c":1,"s":10,"id":735,"u":"denizen%20of%20leng_bst2","p":70,"h":1,"n":"Denizen Of Leng"},{"c":1,"s":10,"id":736,"u":"derghodaemon_bst2","p":60,"h":1,"n":"Derghodaemon"},{"c":1,"s":10,"id":737,"u":"destrachan_bst2","p":71,"h":1,"n":"Destrachan"},{"c":1,"s":10,"id":738,"u":"devourer_bst2","p":78,"h":1,"n":"Devourer"},{"c":1,"s":10,"id":739,"u":"dig-widget_bst2","p":79,"h":1,"n":"Dig-widget"},{"c":1,"s":10,"id":740,"u":"doprillu_bst2","p":85,"h":1,"n":"Doprillu"},{"c":1,"s":10,"id":741,"u":"dracolisk_bst2","p":35,"h":1,"n":"Dracolisk"},{"c":1,"s":10,"id":742,"u":"drainberry%20bush_bst2","p":99,"h":1,"n":"Drainberry Bush"},{"c":1,"s":10,"id":743,"u":"draugr_bst2","p":102,"h":1,"n":"Draugr"},{"c":1,"s":10,"id":744,"u":"dread%20wraith_bst2","p":298,"h":1,"n":"Dread Wraith"},{"c":1,"s":10,"id":745,"u":"dream%20spider_bst2","p":249,"h":1,"n":"Dream Spider"},{"c":1,"s":10,"id":746,"u":"duneshaker%20solifugid_bst2","p":246,"h":1,"n":"Duneshaker Solifugid"},{"c":1,"s":10,"id":747,"u":"dust%20mephit_bst2","p":112,"h":1,"n":"Dust Mephit"},{"c":1,"s":10,"id":748,"u":"dweomercat_bst2","p":103,"h":1,"n":"Dweomercat"},{"c":1,"s":10,"id":749,"u":"earthen%20destrier_bst2","p":108,"h":1,"n":"Earthen Destrier"},{"c":1,"s":10,"id":750,"u":"elasmosaurus_bst2","p":105,"h":1,"n":"Elasmosaurus"},{"c":1,"s":10,"id":751,"u":"ember%20fox_bst2","p":110,"h":1,"n":"Ember Fox"},{"c":1,"s":10,"id":752,"u":"emperor%20cobra_bst2","p":245,"h":1,"n":"Emperor Cobra"},{"c":1,"s":10,"id":753,"u":"eremite_bst2","p":285,"h":1,"n":"Eremite"},{"c":1,"s":10,"id":754,"u":"esobok_bst2","p":208,"h":1,"n":"Esobok"},{"c":1,"s":10,"id":755,"u":"evangelist_bst2","p":282,"h":1,"n":"Evangelist"},{"c":1,"s":10,"id":756,"u":"fen%20mosquito%20swarm_bst2","p":175,"h":1,"n":"Fen Mosquito Swarm"},{"c":1,"s":10,"id":757,"u":"fetchling%20scout_bst2","p":117,"h":1,"n":"Fetchling Scout"},{"c":1,"s":10,"id":758,"u":"filth%20fire_bst2","p":110,"h":1,"n":"Filth Fire"},{"c":1,"s":10,"id":759,"u":"fire%20jellyfish%20swarm_bst2","p":152,"h":1,"n":"Fire Jellyfish Swarm"},{"c":1,"s":10,"id":760,"u":"fire%20yai_bst2","p":190,"h":1,"n":"Fire Yai"},{"c":1,"s":10,"id":761,"u":"fjord%20linnorm_bst2","p":165,"h":1,"n":"Fjord Linnorm"},{"c":1,"s":10,"id":762,"u":"flytrap%20leshy_bst2","p":161,"h":1,"n":"Flytrap Leshy"},{"c":1,"s":10,"id":763,"u":"froghemoth_bst2","p":122,"h":1,"n":"Froghemoth"},{"c":1,"s":10,"id":764,"u":"frost%20troll_bst2","p":264,"h":1,"n":"Frost Troll"},{"c":1,"s":10,"id":765,"u":"frost%20worm_bst2","p":123,"h":1,"n":"Frost Worm"},{"c":1,"s":10,"id":766,"u":"ghonhatine_bst2","p":119,"h":1,"n":"Ghonhatine"},{"c":1,"s":10,"id":767,"u":"giant%20amoeba_bst2","p":192,"h":1,"n":"Giant Amoeba"},{"c":1,"s":10,"id":768,"u":"giant%20ant_bst2","p":20,"h":1,"n":"Giant Ant"},{"c":1,"s":10,"id":769,"u":"giant%20badger_bst2","p":32,"h":1,"n":"Giant Badger"},{"c":1,"s":10,"id":770,"u":"giant%20chameleon_bst2","p":168,"h":1,"n":"Giant Chameleon"},{"c":1,"s":10,"id":771,"u":"giant%20cockroach_bst2","p":53,"h":1,"n":"Giant Cockroach"},{"c":1,"s":10,"id":772,"u":"giant%20crab_bst2","p":55,"h":1,"n":"Giant Crab"},{"c":1,"s":10,"id":773,"u":"giant%20crawling%20hand_bst2","p":56,"h":1,"n":"Giant Crawling Hand"},{"c":1,"s":10,"id":774,"u":"giant%20dragonfly_bst2","p":98,"h":1,"n":"Giant Dragonfly"},{"c":1,"s":10,"id":775,"u":"giant%20dragonfly%20nymph_bst2","p":98,"h":1,"n":"Giant Dragonfly Nymph"},{"c":1,"s":10,"id":776,"u":"giant%20fly_bst2","p":120,"h":1,"n":"Giant Fly"},{"c":1,"s":10,"id":777,"u":"giant%20frog_bst2","p":121,"h":1,"n":"Giant Frog"},{"c":1,"s":10,"id":778,"u":"giant%20hippocampus_bst2","p":142,"h":1,"n":"Giant Hippocampus"},{"c":1,"s":10,"id":779,"u":"giant%20jellyfish_bst2","p":152,"h":1,"n":"Giant Jellyfish"},{"c":1,"s":10,"id":780,"u":"giant%20leech_bst2","p":156,"h":1,"n":"Giant Leech"},{"c":1,"s":10,"id":781,"u":"giant%20maggot_bst2","p":120,"h":1,"n":"Giant Maggot"},{"c":1,"s":10,"id":782,"u":"giant%20mosquito_bst2","p":175,"h":1,"n":"Giant Mosquito"},{"c":1,"s":10,"id":783,"u":"giant%20slug_bst2","p":244,"h":1,"n":"Giant Slug"},{"c":1,"s":10,"id":784,"u":"giant%20snapping%20turtle_bst2","p":269,"h":1,"n":"Giant Snapping Turtle"},{"c":1,"s":10,"id":785,"u":"giant%20solifugid_bst2","p":246,"h":1,"n":"Giant Solifugid"},{"c":1,"s":10,"id":786,"u":"giant%20squid_bst2","p":254,"h":1,"n":"Giant Squid"},{"c":1,"s":10,"id":787,"u":"giant%20tick_bst2","p":260,"h":1,"n":"Giant Tick"},{"c":1,"s":10,"id":788,"u":"giant%20toad_bst2","p":261,"h":1,"n":"Giant Toad"},{"c":1,"s":10,"id":789,"u":"giant%20whiptail%20centipede_bst2","p":50,"h":1,"n":"Giant Whiptail Centipede"},{"c":1,"s":10,"id":790,"u":"giant%20wolverine_bst2","p":295,"h":1,"n":"Giant Wolverine"},{"c":1,"s":10,"id":791,"u":"glass%20golem_bst2","p":131,"h":1,"n":"Glass Golem"},{"c":1,"s":10,"id":792,"u":"gorgon_bst2","p":132,"h":1,"n":"Gorgon"},{"c":1,"s":10,"id":793,"u":"gosreg_bst2","p":133,"h":1,"n":"Gosreg"},{"c":1,"s":10,"id":794,"u":"granite%20glyptodont_bst2","p":109,"h":1,"n":"Granite Glyptodont"},{"c":1,"s":10,"id":795,"u":"gray%20ooze_bst2","p":194,"h":1,"n":"Gray Ooze"},{"c":1,"s":10,"id":796,"u":"grendel_bst2","p":136,"h":1,"n":"Grendel"},{"c":1,"s":10,"id":797,"u":"grimstalker_bst2","p":137,"h":1,"n":"Grimstalker"},{"c":1,"s":10,"id":798,"u":"grindylow_bst2","p":138,"h":1,"n":"Grindylow"},{"c":1,"s":10,"id":799,"u":"grippli%20scout_bst2","p":139,"h":1,"n":"Grippli Scout"},{"c":1,"s":10,"id":800,"u":"grodair_bst2","p":140,"h":1,"n":"Grodair"},{"c":1,"s":10,"id":801,"u":"gylou_bst2","p":76,"h":1,"n":"Gylou"},{"c":1,"s":10,"id":802,"u":"hadrosaurid_bst2","p":82,"h":1,"n":"Hadrosaurid"},{"c":1,"s":10,"id":803,"u":"hamatula_bst2","p":74,"h":1,"n":"Hamatula"},{"c":1,"s":10,"id":804,"u":"hellcat_bst2","p":141,"h":1,"n":"Hellcat"},{"c":1,"s":10,"id":805,"u":"hezrou_bst2","p":67,"h":1,"n":"Hezrou"},{"c":1,"s":10,"id":806,"u":"hippocampus_bst2","p":142,"h":1,"n":"Hippocampus"},{"c":1,"s":10,"id":807,"u":"hippogriff_bst2","p":143,"h":1,"n":"Hippogriff"},{"c":1,"s":10,"id":808,"u":"hippopotamus_bst2","p":144,"h":1,"n":"Hippopotamus"},{"c":1,"s":10,"id":809,"u":"hodag_bst2","p":145,"h":1,"n":"Hodag"},{"c":1,"s":10,"id":810,"u":"hound%20archon_bst2","p":22,"h":1,"n":"Hound Archon"},{"c":1,"s":10,"id":811,"u":"hound%20of%20tindalos_bst2","p":146,"h":1,"n":"Hound Of Tindalos"},{"c":1,"s":10,"id":812,"u":"ice%20golem_bst2","p":129,"h":1,"n":"Ice Golem"},{"c":1,"s":10,"id":813,"u":"ice%20mephit_bst2","p":112,"h":1,"n":"Ice Mephit"},{"c":1,"s":10,"id":814,"u":"ice%20yai_bst2","p":189,"h":1,"n":"Ice Yai"},{"c":1,"s":10,"id":815,"u":"icewyrm_bst2","p":115,"h":1,"n":"Icewyrm"},{"c":1,"s":10,"id":816,"u":"icicle%20snake_bst2","p":114,"h":1,"n":"Icicle Snake"},{"c":1,"s":10,"id":817,"u":"ifrit%20pyrochemist_bst2","p":200,"h":1,"n":"Ifrit Pyrochemist"},{"c":1,"s":10,"id":818,"u":"iguanodon_bst2","p":82,"h":1,"n":"Iguanodon"},{"c":1,"s":10,"id":819,"u":"imentesh_bst2","p":207,"h":1,"n":"Imentesh"},{"c":1,"s":10,"id":820,"u":"intellect%20devourer_bst2","p":147,"h":1,"n":"Intellect Devourer"},{"c":1,"s":10,"id":821,"u":"interlocutor_bst2","p":284,"h":1,"n":"Interlocutor"},{"c":1,"s":10,"id":822,"u":"invidiak_bst2","p":65,"h":1,"n":"Invidiak"},{"c":1,"s":10,"id":823,"u":"irlgaunt_bst2","p":148,"h":1,"n":"Irlgaunt"},{"c":1,"s":10,"id":824,"u":"irnakurse_bst2","p":118,"h":1,"n":"Irnakurse"},{"c":1,"s":10,"id":825,"u":"isqulug_bst2","p":149,"h":1,"n":"Isqulug"},{"c":1,"s":10,"id":826,"u":"jabberwock_bst2","p":151,"h":1,"n":"Jabberwock"},{"c":1,"s":10,"id":827,"u":"jotund%20troll_bst2","p":267,"h":1,"n":"Jotund Troll"},{"c":1,"s":10,"id":828,"u":"jyoti_bst2","p":153,"h":1,"n":"Jyoti"},{"c":1,"s":10,"id":829,"u":"kelpie_bst2","p":154,"h":1,"n":"Kelpie"},{"c":1,"s":10,"id":830,"u":"korred_bst2","p":155,"h":1,"n":"Korred"},{"c":1,"s":10,"id":831,"u":"leng%20spider_bst2","p":157,"h":1,"n":"Leng Spider"},{"c":1,"s":10,"id":832,"u":"leprechaun_bst2","p":158,"h":1,"n":"Leprechaun"},{"c":1,"s":10,"id":833,"u":"lerritan_bst2","p":159,"h":1,"n":"Lerritan"},{"c":1,"s":10,"id":834,"u":"leucrotta_bst2","p":162,"h":1,"n":"Leucrotta"},{"c":1,"s":10,"id":835,"u":"leydroth_bst2","p":163,"h":1,"n":"Leydroth"},{"c":1,"s":10,"id":836,"u":"living%20boulder_bst2","p":108,"h":1,"n":"Living Boulder"},{"c":1,"s":10,"id":837,"u":"living%20thunderclap_bst2","p":106,"h":1,"n":"Living Thunderclap"},{"c":1,"s":10,"id":838,"u":"lunar%20naga_bst2","p":178,"h":1,"n":"Lunar Naga"},{"c":1,"s":10,"id":839,"u":"lurker%20in%20light_bst2","p":169,"h":1,"n":"Lurker In Light"},{"c":1,"s":10,"id":840,"u":"magma%20scorpion_bst2","p":111,"h":1,"n":"Magma Scorpion"},{"c":1,"s":10,"id":841,"u":"mandragora_bst2","p":170,"h":1,"n":"Mandragora"},{"c":1,"s":10,"id":842,"u":"manta%20ray_bst2","p":226,"h":1,"n":"Manta Ray"},{"c":1,"s":10,"id":843,"u":"marrmora_bst2","p":171,"h":1,"n":"Marrmora"},{"c":1,"s":10,"id":844,"u":"marsh%20giant_bst2","p":125,"h":1,"n":"Marsh Giant"},{"c":1,"s":10,"id":845,"u":"marut_bst2","p":10,"h":1,"n":"Marut"},{"c":1,"s":10,"id":846,"u":"mastodon_bst2","p":116,"h":1,"n":"Mastodon"},{"c":1,"s":10,"id":847,"u":"megalania_bst2","p":168,"h":1,"n":"Megalania"},{"c":1,"s":10,"id":848,"u":"meladaemon_bst2","p":59,"h":1,"n":"Meladaemon"},{"c":1,"s":10,"id":849,"u":"melody%20on%20the%20wind_bst2","p":107,"h":1,"n":"Melody On The Wind"},{"c":1,"s":10,"id":850,"u":"mist%20stalker_bst2","p":114,"h":1,"n":"Mist Stalker"},{"c":1,"s":10,"id":851,"u":"mohrg_bst2","p":172,"h":1,"n":"Mohrg"},{"c":1,"s":10,"id":852,"u":"monadic%20deva_bst2","p":15,"h":1,"n":"Monadic Deva"},{"c":1,"s":10,"id":853,"u":"moonflower_bst2","p":173,"h":1,"n":"Moonflower"},{"c":1,"s":10,"id":854,"u":"morlock_bst2","p":174,"h":1,"n":"Morlock"},{"c":1,"s":10,"id":855,"u":"movanic%20deva_bst2","p":14,"h":1,"n":"Movanic Deva"},{"c":1,"s":10,"id":856,"u":"mudwretch_bst2","p":176,"h":1,"n":"Mudwretch"},{"c":1,"s":10,"id":857,"u":"nabasu_bst2","p":66,"h":1,"n":"Nabasu"},{"c":1,"s":10,"id":858,"u":"nalfeshnee_bst2","p":68,"h":1,"n":"Nalfeshnee"},{"c":1,"s":10,"id":859,"u":"necrophidius_bst2","p":180,"h":1,"n":"Necrophidius"},{"c":1,"s":10,"id":860,"u":"neothelid_bst2","p":181,"h":1,"n":"Neothelid"},{"c":1,"s":10,"id":861,"u":"nereid_bst2","p":182,"h":1,"n":"Nereid"},{"c":1,"s":10,"id":862,"u":"nixie_bst2","p":183,"h":1,"n":"Nixie"},{"c":1,"s":10,"id":863,"u":"norn_bst2","p":184,"h":1,"n":"Norn"},{"c":1,"s":10,"id":864,"u":"nuckelavee_bst2","p":186,"h":1,"n":"Nuckelavee"},{"c":1,"s":10,"id":865,"u":"nuglub_bst2","p":135,"h":1,"n":"Nuglub"},{"c":1,"s":10,"id":866,"u":"nyogoth_bst2","p":214,"h":1,"n":"Nyogoth"},{"c":1,"s":10,"id":867,"u":"ogre%20spider_bst2","p":249,"h":1,"n":"Ogre Spider"},{"c":1,"s":10,"id":868,"u":"olethrodaemon_bst2","p":63,"h":1,"n":"Olethrodaemon"},{"c":1,"s":10,"id":869,"u":"onidoshi_bst2","p":188,"h":1,"n":"Onidoshi"},{"c":1,"s":10,"id":870,"u":"ooze%20mephit_bst2","p":113,"h":1,"n":"Ooze Mephit"},{"c":1,"s":10,"id":871,"u":"orca_bst2","p":84,"h":1,"n":"Orca"},{"c":1,"s":10,"id":872,"u":"oread%20guard_bst2","p":201,"h":1,"n":"Oread Guard"},{"c":1,"s":10,"id":873,"u":"ostiarius_bst2","p":281,"h":1,"n":"Ostiarius"},{"c":1,"s":10,"id":874,"u":"osyluth_bst2","p":74,"h":1,"n":"Osyluth"},{"c":1,"s":10,"id":875,"u":"pachycephalosaurus_bst2","p":81,"h":1,"n":"Pachycephalosaurus"},{"c":1,"s":10,"id":876,"u":"peluda_bst2","p":196,"h":1,"n":"Peluda"},{"c":1,"s":10,"id":877,"u":"peryton_bst2","p":197,"h":1,"n":"Peryton"},{"c":1,"s":10,"id":878,"u":"petitioner_bst2","p":198,"h":1,"n":"Petitioner"},{"c":1,"s":10,"id":879,"u":"piscodaemon_bst2","p":58,"h":1,"n":"Piscodaemon"},{"c":1,"s":10,"id":880,"u":"planetar_bst2","p":16,"h":1,"n":"Planetar"},{"c":1,"s":10,"id":881,"u":"polar%20bear_bst2","p":36,"h":1,"n":"Polar Bear"},{"c":1,"s":10,"id":882,"u":"purrodaemon_bst2","p":62,"h":1,"n":"Purrodaemon"},{"c":1,"s":10,"id":883,"u":"quetz%20couatl_bst2","p":54,"h":1,"n":"Quetz Couatl"},{"c":1,"s":10,"id":884,"u":"quickling_bst2","p":218,"h":1,"n":"Quickling"},{"c":1,"s":10,"id":885,"u":"quoppopak_bst2","p":219,"h":1,"n":"Quoppopak"},{"c":1,"s":10,"id":886,"u":"radiant%20warden_bst2","p":220,"h":1,"n":"Radiant Warden"},{"c":1,"s":10,"id":887,"u":"raven_bst2","p":221,"h":1,"n":"Raven"},{"c":1,"s":10,"id":888,"u":"raven%20swarm_bst2","p":221,"h":1,"n":"Raven Swarm"},{"c":1,"s":10,"id":889,"u":"ravener_bst2","p":224,"h":1,"n":"Ravener"},{"c":1,"s":10,"id":890,"u":"ravener%20husk_bst2","p":224,"h":1,"n":"Ravener Husk"},{"c":1,"s":10,"id":891,"u":"reef%20octopus_bst2","p":187,"h":1,"n":"Reef Octopus"},{"c":1,"s":10,"id":892,"u":"revenant_bst2","p":227,"h":1,"n":"Revenant"},{"c":1,"s":10,"id":893,"u":"rhinoceros_bst2","p":228,"h":1,"n":"Rhinoceros"},{"c":1,"s":10,"id":894,"u":"rusalka_bst2","p":229,"h":1,"n":"Rusalka"},{"c":1,"s":10,"id":895,"u":"sacristan_bst2","p":283,"h":1,"n":"Sacristan"},{"c":1,"s":10,"id":896,"u":"sand%20sentry_bst2","p":109,"h":1,"n":"Sand Sentry"},{"c":1,"s":10,"id":897,"u":"sandpoint%20devil_bst2","p":230,"h":1,"n":"Sandpoint Devil"},{"c":1,"s":10,"id":898,"u":"sard_bst2","p":231,"h":1,"n":"Sard"},{"c":1,"s":10,"id":899,"u":"sarglagon_bst2","p":73,"h":1,"n":"Sarglagon"},{"c":1,"s":10,"id":900,"u":"scarecrow_bst2","p":232,"h":1,"n":"Scarecrow"},{"c":1,"s":10,"id":901,"u":"sceaduinar_bst2","p":233,"h":1,"n":"Sceaduinar"},{"c":1,"s":10,"id":902,"u":"scythe%20tree_bst2","p":235,"h":1,"n":"Scythe Tree"},{"c":1,"s":10,"id":903,"u":"sea%20drake_bst2","p":101,"h":1,"n":"Sea Drake"},{"c":1,"s":10,"id":904,"u":"sea%20snake_bst2","p":245,"h":1,"n":"Sea Snake"},{"c":1,"s":10,"id":905,"u":"shadow%20drake_bst2","p":100,"h":1,"n":"Shadow Drake"},{"c":1,"s":10,"id":906,"u":"shadow%20giant_bst2","p":127,"h":1,"n":"Shadow Giant"},{"c":1,"s":10,"id":907,"u":"shoal%20linnorm_bst2","p":164,"h":1,"n":"Shoal Linnorm"},{"c":1,"s":10,"id":908,"u":"shocker%20lizard_bst2","p":240,"h":1,"n":"Shocker Lizard"},{"c":1,"s":10,"id":909,"u":"shoggti_bst2","p":213,"h":1,"n":"Shoggti"},{"c":1,"s":10,"id":910,"u":"skaveling_bst2","p":241,"h":1,"n":"Skaveling"},{"c":1,"s":10,"id":911,"u":"skrik%20nettle_bst2","p":242,"h":1,"n":"Skrik Nettle"},{"c":1,"s":10,"id":912,"u":"skulk_bst2","p":243,"h":1,"n":"Skulk"},{"c":1,"s":10,"id":913,"u":"slime%20mold_bst2","p":193,"h":1,"n":"Slime Mold"},{"c":1,"s":10,"id":914,"u":"snapping%20turtle_bst2","p":269,"h":1,"n":"Snapping Turtle"},{"c":1,"s":10,"id":915,"u":"solar_bst2","p":16,"h":1,"n":"Solar"},{"c":1,"s":10,"id":916,"u":"soul%20eater_bst2","p":247,"h":1,"n":"Soul Eater"},{"c":1,"s":10,"id":917,"u":"spark%20bat_bst2","p":106,"h":1,"n":"Spark Bat"},{"c":1,"s":10,"id":918,"u":"spear%20frog_bst2","p":121,"h":1,"n":"Spear Frog"},{"c":1,"s":10,"id":919,"u":"specter_bst2","p":248,"h":1,"n":"Specter"},{"c":1,"s":10,"id":920,"u":"spinosaurus_bst2","p":83,"h":1,"n":"Spinosaurus"},{"c":1,"s":10,"id":921,"u":"spiral%20centurion_bst2","p":250,"h":1,"n":"Spiral Centurion"},{"c":1,"s":10,"id":922,"u":"spirit%20naga_bst2","p":179,"h":1,"n":"Spirit Naga"},{"c":1,"s":10,"id":923,"u":"sportlebore%20swarm_bst2","p":251,"h":1,"n":"Sportlebore Swarm"},{"c":1,"s":10,"id":924,"u":"spriggan%20bully_bst2","p":252,"h":1,"n":"Spriggan Bully"},{"c":1,"s":10,"id":925,"u":"spriggan%20warlord_bst2","p":253,"h":1,"n":"Spriggan Warlord"},{"c":1,"s":10,"id":926,"u":"star%20archon_bst2","p":24,"h":1,"n":"Star Archon"},{"c":1,"s":10,"id":927,"u":"steam%20mephit_bst2","p":113,"h":1,"n":"Steam Mephit"},{"c":1,"s":10,"id":928,"u":"stingray_bst2","p":226,"h":1,"n":"Stingray"},{"c":1,"s":10,"id":929,"u":"striding%20fire_bst2","p":111,"h":1,"n":"Striding Fire"},{"c":1,"s":10,"id":930,"u":"stygira_bst2","p":255,"h":1,"n":"Stygira"},{"c":1,"s":10,"id":931,"u":"suli%20dune%20dancer_bst2","p":202,"h":1,"n":"Suli Dune Dancer"},{"c":1,"s":10,"id":932,"u":"sunflower%20leshy_bst2","p":160,"h":1,"n":"Sunflower Leshy"},{"c":1,"s":10,"id":933,"u":"sylph%20sneak_bst2","p":202,"h":1,"n":"Sylph Sneak"},{"c":1,"s":10,"id":934,"u":"taiga%20giant_bst2","p":126,"h":1,"n":"Taiga Giant"},{"c":1,"s":10,"id":935,"u":"taiga%20linnorm_bst2","p":167,"h":1,"n":"Taiga Linnorm"},{"c":1,"s":10,"id":936,"u":"tatzlwyrm_bst2","p":256,"h":1,"n":"Tatzlwyrm"},{"c":1,"s":10,"id":937,"u":"tendriculos_bst2","p":257,"h":1,"n":"Tendriculos"},{"c":1,"s":10,"id":938,"u":"thanadaemon_bst2","p":61,"h":1,"n":"Thanadaemon"},{"c":1,"s":10,"id":939,"u":"theletos_bst2","p":8,"h":1,"n":"Theletos"},{"c":1,"s":10,"id":940,"u":"thrasfyr_bst2","p":258,"h":1,"n":"Thrasfyr"},{"c":1,"s":10,"id":941,"u":"thulgant_bst2","p":217,"h":1,"n":"Thulgant"},{"c":1,"s":10,"id":942,"u":"thunderbird_bst2","p":259,"h":1,"n":"Thunderbird"},{"c":1,"s":10,"id":943,"u":"tick%20swarm_bst2","p":260,"h":1,"n":"Tick Swarm"},{"c":1,"s":10,"id":944,"u":"titan%20centipede_bst2","p":50,"h":1,"n":"Titan Centipede"},{"c":1,"s":10,"id":945,"u":"totenmaske_bst2","p":262,"h":1,"n":"Totenmaske"},{"c":1,"s":10,"id":946,"u":"triton_bst2","p":263,"h":1,"n":"Triton"},{"c":1,"s":10,"id":947,"u":"trollhound_bst2","p":268,"h":1,"n":"Trollhound"},{"c":1,"s":10,"id":948,"u":"trumpet%20archon_bst2","p":23,"h":1,"n":"Trumpet Archon"},{"c":1,"s":10,"id":949,"u":"twigjack_bst2","p":270,"h":1,"n":"Twigjack"},{"c":1,"s":10,"id":950,"u":"two-headed%20troll_bst2","p":266,"h":1,"n":"Two-headed Troll"},{"c":1,"s":10,"id":951,"u":"umonlee_bst2","p":271,"h":1,"n":"Umonlee"},{"c":1,"s":10,"id":952,"u":"undine%20hydromancer_bst2","p":203,"h":1,"n":"Undine Hydromancer"},{"c":1,"s":10,"id":953,"u":"urdefhan%20tormentor_bst2","p":273,"h":1,"n":"Urdefhan Tormentor"},{"c":1,"s":10,"id":954,"u":"urdefhan%20warrior_bst2","p":272,"h":1,"n":"Urdefhan Warrior"},{"c":1,"s":10,"id":955,"u":"vampire%20squid_bst2","p":254,"h":1,"n":"Vampire Squid"},{"c":1,"s":10,"id":956,"u":"vampiric%20mist_bst2","p":278,"h":1,"n":"Vampiric Mist"},{"c":1,"s":10,"id":957,"u":"vanth_bst2","p":210,"h":1,"n":"Vanth"},{"c":1,"s":10,"id":958,"u":"vaspercham_bst2","p":279,"h":1,"n":"Vaspercham"},{"c":1,"s":10,"id":959,"u":"veranallia_bst2","p":31,"h":1,"n":"Veranallia"},{"c":1,"s":10,"id":960,"u":"verdurous%20ooze_bst2","p":194,"h":1,"n":"Verdurous Ooze"},{"c":1,"s":10,"id":961,"u":"vexgit_bst2","p":134,"h":1,"n":"Vexgit"},{"c":1,"s":10,"id":962,"u":"violet%20fungus_bst2","p":286,"h":1,"n":"Violet Fungus"},{"c":1,"s":10,"id":963,"u":"viper%20vine_bst2","p":287,"h":1,"n":"Viper Vine"},{"c":1,"s":10,"id":964,"u":"void%20zombie_bst2","p":288,"h":1,"n":"Void Zombie"},{"c":1,"s":10,"id":965,"u":"vrolikai_bst2","p":69,"h":1,"n":"Vrolikai"},{"c":1,"s":10,"id":966,"u":"vrykolakas%20ancient_bst2","p":277,"h":1,"n":"Vrykolakas Ancient"},{"c":1,"s":10,"id":967,"u":"vrykolakas%20master_bst2","p":276,"h":1,"n":"Vrykolakas Master"},{"c":1,"s":10,"id":968,"u":"vrykolakas%20spawn_bst2","p":276,"h":1,"n":"Vrykolakas Spawn"},{"c":1,"s":10,"id":969,"u":"water%20orm_bst2","p":289,"h":1,"n":"Water Orm"},{"c":1,"s":10,"id":970,"u":"water%20yai_bst2","p":191,"h":1,"n":"Water Yai"},{"c":1,"s":10,"id":971,"u":"wereboar_bst2","p":290,"h":1,"n":"Wereboar"},{"c":1,"s":10,"id":972,"u":"weretiger_bst2","p":291,"h":1,"n":"Weretiger"},{"c":1,"s":10,"id":973,"u":"witchfire_bst2","p":293,"h":1,"n":"Witchfire"},{"c":1,"s":10,"id":974,"u":"witchwyrd_bst2","p":294,"h":1,"n":"Witchwyrd"},{"c":1,"s":10,"id":975,"u":"wolverine_bst2","p":295,"h":1,"n":"Wolverine"},{"c":1,"s":10,"id":976,"u":"wood%20giant_bst2","p":124,"h":1,"n":"Wood Giant"},{"c":1,"s":10,"id":977,"u":"wood%20golem_bst2","p":130,"h":1,"n":"Wood Golem"},{"c":1,"s":10,"id":978,"u":"woolly%20rhinoceros_bst2","p":228,"h":1,"n":"Woolly Rhinoceros"},{"c":1,"s":10,"id":979,"u":"worm%20that%20walks%20cultist_bst2","p":297,"h":1,"n":"Worm That Walks Cultist"},{"c":1,"s":10,"id":980,"u":"xill_bst2","p":299,"h":1,"n":"Xill"},{"c":1,"s":10,"id":981,"u":"yamaraj_bst2","p":211,"h":1,"n":"Yamaraj"},{"c":1,"s":10,"id":982,"u":"yellow%20musk%20brute_bst2","p":301,"h":1,"n":"Yellow Musk Brute"},{"c":1,"s":10,"id":983,"u":"yellow%20musk%20creeper_bst2","p":300,"h":1,"n":"Yellow Musk Creeper"},{"c":1,"s":10,"id":984,"u":"yellow%20musk%20thrall_bst2","p":301,"h":1,"n":"Yellow Musk Thrall"},{"c":1,"s":10,"id":985,"u":"yeth%20hound_bst2","p":302,"h":1,"n":"Yeth Hound"},{"c":1,"s":10,"id":986,"u":"young%20brine%20dragon_bst2","p":87,"h":1,"n":"Young Brine Dragon"},{"c":1,"s":10,"id":987,"u":"young%20cloud%20dragon_bst2","p":89,"h":1,"n":"Young Cloud Dragon"},{"c":1,"s":10,"id":988,"u":"young%20crystal%20dragon_bst2","p":91,"h":1,"n":"Young Crystal Dragon"},{"c":1,"s":10,"id":989,"u":"young%20magma%20dragon_bst2","p":94,"h":1,"n":"Young Magma Dragon"},{"c":1,"s":10,"id":990,"u":"young%20umbral%20dragon_bst2","p":96,"h":1,"n":"Young Umbral Dragon"},{"c":1,"s":10,"id":991,"u":"zebub_bst2","p":72,"h":1,"n":"Zebub"},{"c":1,"s":10,"id":992,"u":"zelekhut_bst2","p":9,"h":1,"n":"Zelekhut"},{"c":1,"s":10,"id":993,"u":"zomok_bst2","p":303,"h":1,"n":"Zomok"},{"c":1,"s":10,"id":994,"u":"zyss%20serpentfolk_bst2","p":237,"h":1,"n":"Zyss Serpentfolk"},{"c":1,"s":11,"id":995,"u":"abandoned%20zealot_bst3","p":8,"h":1,"n":"Abandoned Zealot"},{"c":1,"s":11,"id":996,"u":"abrikandilu_bst3","p":61,"h":1,"n":"Abrikandilu"},{"c":1,"s":11,"id":997,"u":"adachros_bst3","p":95,"h":1,"n":"Adachros"},{"c":1,"s":11,"id":998,"u":"adhukait_bst3","p":23,"h":1,"n":"Adhukait"},{"c":1,"s":11,"id":999,"u":"adlet_bst3","p":9,"h":1,"n":"Adlet"},{"c":1,"s":11,"id":1000,"u":"adult%20forest%20dragon_bst3","p":75,"h":1,"n":"Adult Forest Dragon"},{"c":1,"s":11,"id":1001,"u":"adult%20sea%20dragon_bst3","p":78,"h":1,"n":"Adult Sea Dragon"},{"c":1,"s":11,"id":1002,"u":"adult%20sky%20dragon_bst3","p":80,"h":1,"n":"Adult Sky Dragon"},{"c":1,"s":11,"id":1003,"u":"adult%20sovereign%20dragon_bst3","p":82,"h":1,"n":"Adult Sovereign Dragon"},{"c":1,"s":11,"id":1004,"u":"adult%20underworld%20dragon_bst3","p":84,"h":1,"n":"Adult Underworld Dragon"},{"c":1,"s":11,"id":1005,"u":"aghash_bst3","p":69,"h":1,"n":"Aghash"},{"c":1,"s":11,"id":1006,"u":"air%20wisp_bst3","p":90,"h":1,"n":"Air Wisp"},{"c":1,"s":11,"id":1007,"u":"amalgamite_bst3","p":14,"h":1,"n":"Amalgamite"},{"c":1,"s":11,"id":1008,"u":"amphisbaena_bst3","p":15,"h":1,"n":"Amphisbaena"},{"c":1,"s":11,"id":1009,"u":"ancient%20forest%20dragon_bst3","p":76,"h":1,"n":"Ancient Forest Dragon"},{"c":1,"s":11,"id":1010,"u":"ancient%20sea%20dragon_bst3","p":78,"h":1,"n":"Ancient Sea Dragon"},{"c":1,"s":11,"id":1011,"u":"ancient%20sky%20dragon_bst3","p":80,"h":1,"n":"Ancient Sky Dragon"},{"c":1,"s":11,"id":1012,"u":"ancient%20sovereign%20dragon_bst3","p":83,"h":1,"n":"Ancient Sovereign Dragon"},{"c":1,"s":11,"id":1013,"u":"ancient%20underworld%20dragon_bst3","p":85,"h":1,"n":"Ancient Underworld Dragon"},{"c":1,"s":11,"id":1014,"u":"android%20infiltrator_bst3","p":16,"h":1,"n":"Android Infiltrator"},{"c":1,"s":11,"id":1015,"u":"angazhani_bst3","p":17,"h":1,"n":"Angazhani"},{"c":1,"s":11,"id":1016,"u":"angheuvore%20flesh-gnawer_bst3","p":174,"h":1,"n":"Angheuvore Flesh-gnawer"},{"c":1,"s":11,"id":1017,"u":"animated%20colossus_bst3","p":19,"h":1,"n":"Animated Colossus"},{"c":1,"s":11,"id":1018,"u":"animated%20furnace_bst3","p":18,"h":1,"n":"Animated Furnace"},{"c":1,"s":11,"id":1019,"u":"animated%20silverware%20swarm_bst3","p":18,"h":1,"n":"Animated Silverware Swarm"},{"c":1,"s":11,"id":1020,"u":"animated%20trebuchet_bst3","p":19,"h":1,"n":"Animated Trebuchet"},{"c":1,"s":11,"id":1021,"u":"aphorite%20sharpshooter_bst3","p":204,"h":1,"n":"Aphorite Sharpshooter"},{"c":1,"s":11,"id":1022,"u":"arboreal%20archive_bst3","p":21,"h":1,"n":"Arboreal Archive"},{"c":1,"s":11,"id":1023,"u":"arboreal%20reaper_bst3","p":20,"h":1,"n":"Arboreal Reaper"},{"c":1,"s":11,"id":1024,"u":"arcane%20living%20rune_bst3","p":163,"h":1,"n":"Arcane Living Rune"},{"c":1,"s":11,"id":1025,"u":"azarketi%20explorer_bst3","p":26,"h":1,"n":"Azarketi Explorer"},{"c":1,"s":11,"id":1026,"u":"azer_bst3","p":27,"h":1,"n":"Azer"},{"c":1,"s":11,"id":1027,"u":"bauble%20beast_bst3","p":28,"h":1,"n":"Bauble Beast"},{"c":1,"s":11,"id":1028,"u":"baykok_bst3","p":29,"h":1,"n":"Baykok"},{"c":1,"s":11,"id":1029,"u":"betobeto-san_bst3","p":31,"h":1,"n":"Betobeto-san"},{"c":1,"s":11,"id":1030,"u":"bison_bst3","p":32,"h":1,"n":"Bison"},{"c":1,"s":11,"id":1031,"u":"blood%20hag_bst3","p":130,"h":1,"n":"Blood Hag"},{"c":1,"s":11,"id":1032,"u":"blood%20painter_bst3","p":33,"h":1,"n":"Blood Painter"},{"c":1,"s":11,"id":1033,"u":"bone%20ship_bst3","p":34,"h":1,"n":"Bone Ship"},{"c":1,"s":11,"id":1034,"u":"bore%20worm%20swarm_bst3","p":36,"h":1,"n":"Bore Worm Swarm"},{"c":1,"s":11,"id":1035,"u":"brainchild_bst3","p":38,"h":1,"n":"Brainchild"},{"c":1,"s":11,"id":1036,"u":"brimorak_bst3","p":62,"h":1,"n":"Brimorak"},{"c":1,"s":11,"id":1037,"u":"buso%20farmer_bst3","p":39,"h":1,"n":"Buso Farmer"},{"c":1,"s":11,"id":1038,"u":"cactus%20leshy_bst3","p":160,"h":1,"n":"Cactus Leshy"},{"c":1,"s":11,"id":1039,"u":"caligni%20caller_bst3","p":41,"h":1,"n":"Caligni Caller"},{"c":1,"s":11,"id":1040,"u":"caligni%20vanguard_bst3","p":40,"h":1,"n":"Caligni Vanguard"},{"c":1,"s":11,"id":1041,"u":"calikang_bst3","p":42,"h":1,"n":"Calikang"},{"c":1,"s":11,"id":1042,"u":"camel_bst3","p":43,"h":1,"n":"Camel"},{"c":1,"s":11,"id":1043,"u":"caulborn_bst3","p":94,"h":1,"n":"Caulborn"},{"c":1,"s":11,"id":1044,"u":"cave%20giant_bst3","p":108,"h":1,"n":"Cave Giant"},{"c":1,"s":11,"id":1045,"u":"cecaelia%20trapper_bst3","p":45,"h":1,"n":"Cecaelia Trapper"},{"c":1,"s":11,"id":1046,"u":"chouchin-obake_bst3","p":277,"h":1,"n":"Chouchin-obake"},{"c":1,"s":11,"id":1047,"u":"chyzaedu_bst3","p":46,"h":1,"n":"Chyzaedu"},{"c":1,"s":11,"id":1048,"u":"city%20guard%20squadron_bst3","p":47,"h":1,"n":"City Guard Squadron"},{"c":1,"s":11,"id":1049,"u":"clacking%20skull%20swarm_bst3","p":244,"h":1,"n":"Clacking Skull Swarm"},{"c":1,"s":11,"id":1050,"u":"clockwork%20dragon_bst3","p":51,"h":1,"n":"Clockwork Dragon"},{"c":1,"s":11,"id":1051,"u":"clockwork%20mage_bst3","p":50,"h":1,"n":"Clockwork Mage"},{"c":1,"s":11,"id":1052,"u":"clockwork%20soldier_bst3","p":49,"h":1,"n":"Clockwork Soldier"},{"c":1,"s":11,"id":1053,"u":"clockwork%20spy_bst3","p":48,"h":1,"n":"Clockwork Spy"},{"c":1,"s":11,"id":1054,"u":"cobbleswarm_bst3","p":52,"h":1,"n":"Cobbleswarm"},{"c":1,"s":11,"id":1055,"u":"common%20eurypterid_bst3","p":97,"h":1,"n":"Common Eurypterid"},{"c":1,"s":11,"id":1056,"u":"consonite%20choir_bst3","p":53,"h":1,"n":"Consonite Choir"},{"c":1,"s":11,"id":1057,"u":"coral%20capuchin_bst3","p":54,"h":1,"n":"Coral Capuchin"},{"c":1,"s":11,"id":1058,"u":"corrupted%20relic_bst3","p":55,"h":1,"n":"Corrupted Relic"},{"c":1,"s":11,"id":1059,"u":"crossroads%20guardian_bst3","p":59,"h":1,"n":"Crossroads Guardian"},{"c":1,"s":11,"id":1060,"u":"cunning%20fox_bst3","p":252,"h":1,"n":"Cunning Fox"},{"c":1,"s":11,"id":1061,"u":"danava%20titan_bst3","p":270,"h":1,"n":"Danava Titan"},{"c":1,"s":11,"id":1062,"u":"deimavigga_bst3","p":66,"h":1,"n":"Deimavigga"},{"c":1,"s":11,"id":1063,"u":"desert%20giant_bst3","p":109,"h":1,"n":"Desert Giant"},{"c":1,"s":11,"id":1064,"u":"divine%20warden%20of%20nethys_bst3","p":73,"h":1,"n":"Divine Warden Of Nethys"},{"c":1,"s":11,"id":1065,"u":"domovoi_bst3","p":136,"h":1,"n":"Domovoi"},{"c":1,"s":11,"id":1066,"u":"doru_bst3","p":68,"h":1,"n":"Doru"},{"c":1,"s":11,"id":1067,"u":"draconal_bst3","p":13,"h":1,"n":"Draconal"},{"c":1,"s":11,"id":1068,"u":"dramofir_bst3","p":86,"h":1,"n":"Dramofir"},{"c":1,"s":11,"id":1069,"u":"draxie_bst3","p":255,"h":1,"n":"Draxie"},{"c":1,"s":11,"id":1070,"u":"dretch_bst3","p":60,"h":1,"n":"Dretch"},{"c":1,"s":11,"id":1071,"u":"duende_bst3","p":87,"h":1,"n":"Duende"},{"c":1,"s":11,"id":1072,"u":"dvorovoi_bst3","p":137,"h":1,"n":"Dvorovoi"},{"c":1,"s":11,"id":1073,"u":"dybbuk_bst3","p":88,"h":1,"n":"Dybbuk"},{"c":1,"s":11,"id":1074,"u":"earth%20wisp_bst3","p":91,"h":1,"n":"Earth Wisp"},{"c":1,"s":11,"id":1075,"u":"einherji_bst3","p":89,"h":1,"n":"Einherji"},{"c":1,"s":11,"id":1076,"u":"elder%20sphinx_bst3","p":250,"h":1,"n":"Elder Sphinx"},{"c":1,"s":11,"id":1077,"u":"elder%20wyrmwraith_bst3","p":297,"h":1,"n":"Elder Wyrmwraith"},{"c":1,"s":11,"id":1078,"u":"elysian%20titan_bst3","p":268,"h":1,"n":"Elysian Titan"},{"c":1,"s":11,"id":1079,"u":"empress%20bore%20worm_bst3","p":37,"h":1,"n":"Empress Bore Worm"},{"c":1,"s":11,"id":1080,"u":"esipil_bst3","p":218,"h":1,"n":"Esipil"},{"c":1,"s":11,"id":1081,"u":"etioling%20blightmage_bst3","p":177,"h":1,"n":"Etioling Blightmage"},{"c":1,"s":11,"id":1082,"u":"eunemvro_bst3","p":96,"h":1,"n":"Eunemvro"},{"c":1,"s":11,"id":1083,"u":"fading%20fox_bst3","p":102,"h":1,"n":"Fading Fox"},{"c":1,"s":11,"id":1084,"u":"feathered%20bear_bst3","p":253,"h":1,"n":"Feathered Bear"},{"c":1,"s":11,"id":1085,"u":"feral%20skull%20swarm_bst3","p":244,"h":1,"n":"Feral Skull Swarm"},{"c":1,"s":11,"id":1086,"u":"festrog_bst3","p":98,"h":1,"n":"Festrog"},{"c":1,"s":11,"id":1087,"u":"fire%20wisp_bst3","p":91,"h":1,"n":"Fire Wisp"},{"c":1,"s":11,"id":1088,"u":"flaming%20skull_bst3","p":30,"h":1,"n":"Flaming Skull"},{"c":1,"s":11,"id":1089,"u":"flumph_bst3","p":100,"h":1,"n":"Flumph"},{"c":1,"s":11,"id":1090,"u":"fortune%20eater_bst3","p":101,"h":1,"n":"Fortune Eater"},{"c":1,"s":11,"id":1091,"u":"fossil%20golem_bst3","p":116,"h":1,"n":"Fossil Golem"},{"c":1,"s":11,"id":1092,"u":"fuath_bst3","p":121,"h":1,"n":"Fuath"},{"c":1,"s":11,"id":1093,"u":"galvo_bst3","p":103,"h":1,"n":"Galvo"},{"c":1,"s":11,"id":1094,"u":"ganzi%20martial%20artist_bst3","p":205,"h":1,"n":"Ganzi Martial Artist"},{"c":1,"s":11,"id":1095,"u":"garuda_bst3","p":104,"h":1,"n":"Garuda"},{"c":1,"s":11,"id":1096,"u":"gathlain%20wanderer_bst3","p":105,"h":1,"n":"Gathlain Wanderer"},{"c":1,"s":11,"id":1097,"u":"ghoran%20manipulator_bst3","p":106,"h":1,"n":"Ghoran Manipulator"},{"c":1,"s":11,"id":1098,"u":"giant%20flying%20squirrel_bst3","p":257,"h":1,"n":"Giant Flying Squirrel"},{"c":1,"s":11,"id":1099,"u":"giant%20hermit%20crab_bst3","p":58,"h":1,"n":"Giant Hermit Crab"},{"c":1,"s":11,"id":1100,"u":"giant%20opossum_bst3","p":192,"h":1,"n":"Giant Opossum"},{"c":1,"s":11,"id":1101,"u":"giant%20pangolin_bst3","p":199,"h":1,"n":"Giant Pangolin"},{"c":1,"s":11,"id":1102,"u":"giant%20porcupine_bst3","p":207,"h":1,"n":"Giant Porcupine"},{"c":1,"s":11,"id":1103,"u":"giant%20seahorse_bst3","p":227,"h":1,"n":"Giant Seahorse"},{"c":1,"s":11,"id":1104,"u":"giant%20skunk_bst3","p":246,"h":1,"n":"Giant Skunk"},{"c":1,"s":11,"id":1105,"u":"giant%20vulture_bst3","p":289,"h":1,"n":"Giant Vulture"},{"c":1,"s":11,"id":1106,"u":"girtablilu%20seer_bst3","p":113,"h":1,"n":"Girtablilu Seer"},{"c":1,"s":11,"id":1107,"u":"girtablilu%20sentry_bst3","p":112,"h":1,"n":"Girtablilu Sentry"},{"c":1,"s":11,"id":1108,"u":"gliminal_bst3","p":114,"h":1,"n":"Gliminal"},{"c":1,"s":11,"id":1109,"u":"globster_bst3","p":115,"h":1,"n":"Globster"},{"c":1,"s":11,"id":1110,"u":"green%20man_bst3","p":118,"h":1,"n":"Green Man"},{"c":1,"s":11,"id":1111,"u":"grimple_bst3","p":120,"h":1,"n":"Grimple"},{"c":1,"s":11,"id":1112,"u":"grioth%20cultist_bst3","p":123,"h":1,"n":"Grioth Cultist"},{"c":1,"s":11,"id":1113,"u":"grioth%20scout_bst3","p":122,"h":1,"n":"Grioth Scout"},{"c":1,"s":11,"id":1114,"u":"guecubu_bst3","p":126,"h":1,"n":"Guecubu"},{"c":1,"s":11,"id":1115,"u":"gurgist%20mauler_bst3","p":175,"h":1,"n":"Gurgist Mauler"},{"c":1,"s":11,"id":1116,"u":"hadrinnex_bst3","p":127,"h":1,"n":"Hadrinnex"},{"c":1,"s":11,"id":1117,"u":"haniver_bst3","p":120,"h":1,"n":"Haniver"},{"c":1,"s":11,"id":1118,"u":"harmona_bst3","p":132,"h":1,"n":"Harmona"},{"c":1,"s":11,"id":1119,"u":"harpy%20skeleton_bst3","p":236,"h":1,"n":"Harpy Skeleton"},{"c":1,"s":11,"id":1120,"u":"hatred%20siktempora_bst3","p":235,"h":1,"n":"Hatred Siktempora"},{"c":1,"s":11,"id":1121,"u":"hekatonkheires%20titan_bst3","p":271,"h":1,"n":"Hekatonkheires Titan"},{"c":1,"s":11,"id":1122,"u":"hellbound%20attorney_bst3","p":64,"h":1,"n":"Hellbound Attorney"},{"c":1,"s":11,"id":1123,"u":"hellknight%20cavalry%20brigade_bst3","p":44,"h":1,"n":"Hellknight Cavalry Brigade"},{"c":1,"s":11,"id":1124,"u":"hellwasp%20swarm_bst3","p":133,"h":1,"n":"Hellwasp Swarm"},{"c":1,"s":11,"id":1125,"u":"herexen_bst3","p":134,"h":1,"n":"Herexen"},{"c":1,"s":11,"id":1126,"u":"hermit%20crab%20swarm_bst3","p":58,"h":1,"n":"Hermit Crab Swarm"},{"c":1,"s":11,"id":1127,"u":"hesperid_bst3","p":189,"h":1,"n":"Hesperid"},{"c":1,"s":11,"id":1128,"u":"hesperid%20queen_bst3","p":191,"h":1,"n":"Hesperid Queen"},{"c":1,"s":11,"id":1129,"u":"hieracosphinx_bst3","p":250,"h":1,"n":"Hieracosphinx"},{"c":1,"s":11,"id":1130,"u":"house%20drake_bst3","p":135,"h":1,"n":"House Drake"},{"c":1,"s":11,"id":1131,"u":"huldra_bst3","p":138,"h":1,"n":"Huldra"},{"c":1,"s":11,"id":1132,"u":"hyakume_bst3","p":139,"h":1,"n":"Hyakume"},{"c":1,"s":11,"id":1133,"u":"incutilis_bst3","p":140,"h":1,"n":"Incutilis"},{"c":1,"s":11,"id":1134,"u":"ioton_bst3","p":92,"h":1,"n":"Ioton"},{"c":1,"s":11,"id":1135,"u":"ittan-momen_bst3","p":276,"h":1,"n":"Ittan-momen"},{"c":1,"s":11,"id":1136,"u":"japalisura_bst3","p":23,"h":1,"n":"Japalisura"},{"c":1,"s":11,"id":1137,"u":"jorogumo_bst3","p":141,"h":1,"n":"Jorogumo"},{"c":1,"s":11,"id":1138,"u":"kangaroo_bst3","p":146,"h":1,"n":"Kangaroo"},{"c":1,"s":11,"id":1139,"u":"kappa_bst3","p":147,"h":1,"n":"Kappa"},{"c":1,"s":11,"id":1140,"u":"kasa-obake_bst3","p":277,"h":1,"n":"Kasa-obake"},{"c":1,"s":11,"id":1141,"u":"khravgodon_bst3","p":192,"h":1,"n":"Khravgodon"},{"c":1,"s":11,"id":1142,"u":"kimenhul_bst3","p":222,"h":1,"n":"Kimenhul"},{"c":1,"s":11,"id":1143,"u":"kirin_bst3","p":148,"h":1,"n":"Kirin"},{"c":1,"s":11,"id":1144,"u":"kishi_bst3","p":149,"h":1,"n":"Kishi"},{"c":1,"s":11,"id":1145,"u":"kitsune%20trickster_bst3","p":150,"h":1,"n":"Kitsune Trickster"},{"c":1,"s":11,"id":1146,"u":"kodama_bst3","p":143,"h":1,"n":"Kodama"},{"c":1,"s":11,"id":1147,"u":"kokogiak_bst3","p":151,"h":1,"n":"Kokogiak"},{"c":1,"s":11,"id":1148,"u":"kongamato_bst3","p":152,"h":1,"n":"Kongamato"},{"c":1,"s":11,"id":1149,"u":"kovintus%20geomancer_bst3","p":153,"h":1,"n":"Kovintus Geomancer"},{"c":1,"s":11,"id":1150,"u":"krampus_bst3","p":154,"h":1,"n":"Krampus"},{"c":1,"s":11,"id":1151,"u":"kuchisake-onna_bst3","p":156,"h":1,"n":"Kuchisake-onna"},{"c":1,"s":11,"id":1152,"u":"kurobozu_bst3","p":157,"h":1,"n":"Kurobozu"},{"c":1,"s":11,"id":1153,"u":"kushtaka_bst3","p":158,"h":1,"n":"Kushtaka"},{"c":1,"s":11,"id":1154,"u":"lampad_bst3","p":188,"h":1,"n":"Lampad"},{"c":1,"s":11,"id":1155,"u":"lampad%20queen_bst3","p":189,"h":1,"n":"Lampad Queen"},{"c":1,"s":11,"id":1156,"u":"ledalusca_bst3","p":159,"h":1,"n":"Ledalusca"},{"c":1,"s":11,"id":1157,"u":"leng%20ghoul_bst3","p":107,"h":1,"n":"Leng Ghoul"},{"c":1,"s":11,"id":1158,"u":"levaloch_bst3","p":65,"h":1,"n":"Levaloch"},{"c":1,"s":11,"id":1159,"u":"lifeleecher%20brawler_bst3","p":176,"h":1,"n":"Lifeleecher Brawler"},{"c":1,"s":11,"id":1160,"u":"locathah%20hunter_bst3","p":164,"h":1,"n":"Locathah Hunter"},{"c":1,"s":11,"id":1161,"u":"love%20siktempora_bst3","p":234,"h":1,"n":"Love Siktempora"},{"c":1,"s":11,"id":1162,"u":"lovelorn_bst3","p":165,"h":1,"n":"Lovelorn"},{"c":1,"s":11,"id":1163,"u":"maftet%20guardian_bst3","p":166,"h":1,"n":"Maftet Guardian"},{"c":1,"s":11,"id":1164,"u":"maharaja_bst3","p":211,"h":1,"n":"Maharaja"},{"c":1,"s":11,"id":1165,"u":"manticore%20paaridar_bst3","p":198,"h":1,"n":"Manticore Paaridar"},{"c":1,"s":11,"id":1166,"u":"megalictis_bst3","p":291,"h":1,"n":"Megalictis"},{"c":1,"s":11,"id":1167,"u":"megatherium_bst3","p":248,"h":1,"n":"Megatherium"},{"c":1,"s":11,"id":1168,"u":"melixie_bst3","p":255,"h":1,"n":"Melixie"},{"c":1,"s":11,"id":1169,"u":"mezlan_bst3","p":167,"h":1,"n":"Mezlan"},{"c":1,"s":11,"id":1170,"u":"mi-go_bst3","p":168,"h":1,"n":"Mi-Go"},{"c":1,"s":11,"id":1171,"u":"millindemalion_bst3","p":169,"h":1,"n":"Millindemalion"},{"c":1,"s":11,"id":1172,"u":"misery%20siktempora_bst3","p":232,"h":1,"n":"Misery Siktempora"},{"c":1,"s":11,"id":1173,"u":"mithral%20golem_bst3","p":117,"h":1,"n":"Mithral Golem"},{"c":1,"s":11,"id":1174,"u":"mix%20couatl_bst3","p":56,"h":1,"n":"Mix Couatl"},{"c":1,"s":11,"id":1175,"u":"mobogo_bst3","p":170,"h":1,"n":"Mobogo"},{"c":1,"s":11,"id":1176,"u":"mokele-mbembe_bst3","p":171,"h":1,"n":"Mokele-mbembe"},{"c":1,"s":11,"id":1177,"u":"monkey_bst3","p":172,"h":1,"n":"Monkey"},{"c":1,"s":11,"id":1178,"u":"monkey%20swarm_bst3","p":172,"h":1,"n":"Monkey Swarm"},{"c":1,"s":11,"id":1179,"u":"moon%20hag_bst3","p":131,"h":1,"n":"Moon Hag"},{"c":1,"s":11,"id":1180,"u":"moose_bst3","p":173,"h":1,"n":"Moose"},{"c":1,"s":11,"id":1181,"u":"mothman_bst3","p":179,"h":1,"n":"Mothman"},{"c":1,"s":11,"id":1182,"u":"munagola_bst3","p":66,"h":1,"n":"Munagola"},{"c":1,"s":11,"id":1183,"u":"munavri%20spellblade_bst3","p":180,"h":1,"n":"Munavri Spellblade"},{"c":1,"s":11,"id":1184,"u":"myceloid_bst3","p":181,"h":1,"n":"Myceloid"},{"c":1,"s":11,"id":1185,"u":"nagaji%20soldier_bst3","p":182,"h":1,"n":"Nagaji Soldier"},{"c":1,"s":11,"id":1186,"u":"namorrodor_bst3","p":183,"h":1,"n":"Namorrodor"},{"c":1,"s":11,"id":1187,"u":"narwhal_bst3","p":184,"h":1,"n":"Narwhal"},{"c":1,"s":11,"id":1188,"u":"nemhaith_bst3","p":185,"h":1,"n":"Nemhaith"},{"c":1,"s":11,"id":1189,"u":"nightgaunt_bst3","p":186,"h":1,"n":"Nightgaunt"},{"c":1,"s":11,"id":1190,"u":"nightmarchers_bst3","p":187,"h":1,"n":"Nightmarchers"},{"c":1,"s":11,"id":1191,"u":"nikaramsa_bst3","p":25,"h":1,"n":"Nikaramsa"},{"c":1,"s":11,"id":1192,"u":"nosferatu%20malefactor_bst3","p":285,"h":1,"n":"Nosferatu Malefactor"},{"c":1,"s":11,"id":1193,"u":"nosferatu%20overlord_bst3","p":285,"h":1,"n":"Nosferatu Overlord"},{"c":1,"s":11,"id":1194,"u":"nosferatu%20thrall_bst3","p":284,"h":1,"n":"Nosferatu Thrall"},{"c":1,"s":11,"id":1195,"u":"nucol_bst3","p":220,"h":1,"n":"Nucol"},{"c":1,"s":11,"id":1196,"u":"nyktera_bst3","p":254,"h":1,"n":"Nyktera"},{"c":1,"s":11,"id":1197,"u":"oil%20living%20graffiti_bst3","p":162,"h":1,"n":"Oil Living Graffiti"},{"c":1,"s":11,"id":1198,"u":"omox_bst3","p":63,"h":1,"n":"Omox"},{"c":1,"s":11,"id":1199,"u":"ostovite_bst3","p":193,"h":1,"n":"Ostovite"},{"c":1,"s":11,"id":1200,"u":"ouroboros_bst3","p":194,"h":1,"n":"Ouroboros"},{"c":1,"s":11,"id":1201,"u":"ovinnik_bst3","p":137,"h":1,"n":"Ovinnik"},{"c":1,"s":11,"id":1202,"u":"owb_bst3","p":196,"h":1,"n":"Owb"},{"c":1,"s":11,"id":1203,"u":"owb%20prophet_bst3","p":197,"h":1,"n":"Owb Prophet"},{"c":1,"s":11,"id":1204,"u":"pairaka_bst3","p":70,"h":1,"n":"Pairaka"},{"c":1,"s":11,"id":1205,"u":"pakalchi_bst3","p":220,"h":1,"n":"Pakalchi"},{"c":1,"s":11,"id":1206,"u":"palace%20skelm_bst3","p":240,"h":1,"n":"Palace Skelm"},{"c":1,"s":11,"id":1207,"u":"penanggalan_bst3","p":200,"h":1,"n":"Penanggalan"},{"c":1,"s":11,"id":1208,"u":"peri_bst3","p":201,"h":1,"n":"Peri"},{"c":1,"s":11,"id":1209,"u":"phantom%20beast_bst3","p":203,"h":1,"n":"Phantom Beast"},{"c":1,"s":11,"id":1210,"u":"phantom%20knight_bst3","p":202,"h":1,"n":"Phantom Knight"},{"c":1,"s":11,"id":1211,"u":"piranha%20swarm_bst3","p":99,"h":1,"n":"Piranha Swarm"},{"c":1,"s":11,"id":1212,"u":"plague%20giant_bst3","p":111,"h":1,"n":"Plague Giant"},{"c":1,"s":11,"id":1213,"u":"platecarpus_bst3","p":178,"h":1,"n":"Platecarpus"},{"c":1,"s":11,"id":1214,"u":"popobawa_bst3","p":206,"h":1,"n":"Popobawa"},{"c":1,"s":11,"id":1215,"u":"procyal_bst3","p":12,"h":1,"n":"Procyal"},{"c":1,"s":11,"id":1216,"u":"pufferfish_bst3","p":99,"h":1,"n":"Pufferfish"},{"c":1,"s":11,"id":1217,"u":"pukwudgie_bst3","p":208,"h":1,"n":"Pukwudgie"},{"c":1,"s":11,"id":1218,"u":"quintessivore_bst3","p":209,"h":1,"n":"Quintessivore"},{"c":1,"s":11,"id":1219,"u":"raktavarna_bst3","p":210,"h":1,"n":"Raktavarna"},{"c":1,"s":11,"id":1220,"u":"rancorous%20priesthood_bst3","p":213,"h":1,"n":"Rancorous Priesthood"},{"c":1,"s":11,"id":1221,"u":"rat%20snake%20swarm_bst3","p":249,"h":1,"n":"Rat Snake Swarm"},{"c":1,"s":11,"id":1222,"u":"red%20fox_bst3","p":102,"h":1,"n":"Red Fox"},{"c":1,"s":11,"id":1223,"u":"rhu-chalik_bst3","p":214,"h":1,"n":"Rhu-chalik"},{"c":1,"s":11,"id":1224,"u":"ringhorn%20ram_bst3","p":212,"h":1,"n":"Ringhorn Ram"},{"c":1,"s":11,"id":1225,"u":"roiling%20incant_bst3","p":215,"h":1,"n":"Roiling Incant"},{"c":1,"s":11,"id":1226,"u":"rokurokubi_bst3","p":216,"h":1,"n":"Rokurokubi"},{"c":1,"s":11,"id":1227,"u":"rosethorn%20ram_bst3","p":212,"h":1,"n":"Rosethorn Ram"},{"c":1,"s":11,"id":1228,"u":"sabosan_bst3","p":217,"h":1,"n":"Sabosan"},{"c":1,"s":11,"id":1229,"u":"samsaran%20anchorite_bst3","p":224,"h":1,"n":"Samsaran Anchorite"},{"c":1,"s":11,"id":1230,"u":"sasquatch_bst3","p":225,"h":1,"n":"Sasquatch"},{"c":1,"s":11,"id":1231,"u":"scalescribe_bst3","p":226,"h":1,"n":"Scalescribe"},{"c":1,"s":11,"id":1232,"u":"seaweed%20leshy_bst3","p":161,"h":1,"n":"Seaweed Leshy"},{"c":1,"s":11,"id":1233,"u":"seething%20spirit_bst3","p":228,"h":1,"n":"Seething Spirit"},{"c":1,"s":11,"id":1234,"u":"sepid_bst3","p":71,"h":1,"n":"Sepid"},{"c":1,"s":11,"id":1235,"u":"severed%20head_bst3","p":30,"h":1,"n":"Severed Head"},{"c":1,"s":11,"id":1236,"u":"shabti%20redeemer_bst3","p":229,"h":1,"n":"Shabti Redeemer"},{"c":1,"s":11,"id":1237,"u":"shae_bst3","p":230,"h":1,"n":"Shae"},{"c":1,"s":11,"id":1238,"u":"shambler%20troop_bst3","p":302,"h":1,"n":"Shambler Troop"},{"c":1,"s":11,"id":1239,"u":"shantak_bst3","p":231,"h":1,"n":"Shantak"},{"c":1,"s":11,"id":1240,"u":"shaukeen_bst3","p":22,"h":1,"n":"Shaukeen"},{"c":1,"s":11,"id":1241,"u":"shikigami_bst3","p":142,"h":1,"n":"Shikigami"},{"c":1,"s":11,"id":1242,"u":"shrine%20skelm_bst3","p":239,"h":1,"n":"Shrine Skelm"},{"c":1,"s":11,"id":1243,"u":"shulsaga_bst3","p":93,"h":1,"n":"Shulsaga"},{"c":1,"s":11,"id":1244,"u":"silvanshee_bst3","p":10,"h":1,"n":"Silvanshee"},{"c":1,"s":11,"id":1245,"u":"skeleton%20infantry_bst3","p":237,"h":1,"n":"Skeleton Infantry"},{"c":1,"s":11,"id":1246,"u":"skinstitch_bst3","p":242,"h":1,"n":"Skinstitch"},{"c":1,"s":11,"id":1247,"u":"skull%20peeler_bst3","p":243,"h":1,"n":"Skull Peeler"},{"c":1,"s":11,"id":1248,"u":"skunk_bst3","p":246,"h":1,"n":"Skunk"},{"c":1,"s":11,"id":1249,"u":"slithering%20pit_bst3","p":247,"h":1,"n":"Slithering Pit"},{"c":1,"s":11,"id":1250,"u":"sorcerous%20skull%20swarm_bst3","p":245,"h":1,"n":"Sorcerous Skull Swarm"},{"c":1,"s":11,"id":1251,"u":"soul%20skelm_bst3","p":241,"h":1,"n":"Soul Skelm"},{"c":1,"s":11,"id":1252,"u":"spiny%20eurypterid_bst3","p":97,"h":1,"n":"Spiny Eurypterid"},{"c":1,"s":11,"id":1253,"u":"squirming%20swill_bst3","p":256,"h":1,"n":"Squirming Swill"},{"c":1,"s":11,"id":1254,"u":"squirrel%20swarm_bst3","p":257,"h":1,"n":"Squirrel Swarm"},{"c":1,"s":11,"id":1255,"u":"stheno%20harpist_bst3","p":258,"h":1,"n":"Stheno Harpist"},{"c":1,"s":11,"id":1256,"u":"stone%20lion_bst3","p":125,"h":1,"n":"Stone Lion"},{"c":1,"s":11,"id":1257,"u":"stone%20lion%20cub_bst3","p":124,"h":1,"n":"Stone Lion Cub"},{"c":1,"s":11,"id":1258,"u":"storm%20hag_bst3","p":128,"h":1,"n":"Storm Hag"},{"c":1,"s":11,"id":1259,"u":"street%20skelm_bst3","p":238,"h":1,"n":"Street Skelm"},{"c":1,"s":11,"id":1260,"u":"strix%20kinmate_bst3","p":259,"h":1,"n":"Strix Kinmate"},{"c":1,"s":11,"id":1261,"u":"sturzstromer_bst3","p":52,"h":1,"n":"Sturzstromer"},{"c":1,"s":11,"id":1262,"u":"sulfur%20zombie_bst3","p":303,"h":1,"n":"Sulfur Zombie"},{"c":1,"s":11,"id":1263,"u":"sumbreiva_bst3","p":260,"h":1,"n":"Sumbreiva"},{"c":1,"s":11,"id":1264,"u":"swordkeeper_bst3","p":261,"h":1,"n":"Swordkeeper"},{"c":1,"s":11,"id":1265,"u":"tattoo%20guardian_bst3","p":262,"h":1,"n":"Tattoo Guardian"},{"c":1,"s":11,"id":1266,"u":"terra-cotta%20garrison_bst3","p":263,"h":1,"n":"Terra-cotta Garrison"},{"c":1,"s":11,"id":1267,"u":"terra-cotta%20soldier_bst3","p":263,"h":1,"n":"Terra-cotta Soldier"},{"c":1,"s":11,"id":1268,"u":"terror%20bird_bst3","p":264,"h":1,"n":"Terror Bird"},{"c":1,"s":11,"id":1269,"u":"terror%20shrike_bst3","p":264,"h":1,"n":"Terror Shrike"},{"c":1,"s":11,"id":1270,"u":"thanatotic%20titan_bst3","p":269,"h":1,"n":"Thanatotic Titan"},{"c":1,"s":11,"id":1271,"u":"three-toed%20sloth_bst3","p":248,"h":1,"n":"Three-toed Sloth"},{"c":1,"s":11,"id":1272,"u":"tiddalik_bst3","p":265,"h":1,"n":"Tiddalik"},{"c":1,"s":11,"id":1273,"u":"tidehawk_bst3","p":266,"h":1,"n":"Tidehawk"},{"c":1,"s":11,"id":1274,"u":"tikbalang_bst3","p":267,"h":1,"n":"Tikbalang"},{"c":1,"s":11,"id":1275,"u":"tolokand_bst3","p":272,"h":1,"n":"Tolokand"},{"c":1,"s":11,"id":1276,"u":"tomb%20giant_bst3","p":110,"h":1,"n":"Tomb Giant"},{"c":1,"s":11,"id":1277,"u":"tooth%20fairy_bst3","p":273,"h":1,"n":"Tooth Fairy"},{"c":1,"s":11,"id":1278,"u":"tooth%20fairy%20swarm_bst3","p":273,"h":1,"n":"Tooth Fairy Swarm"},{"c":1,"s":11,"id":1279,"u":"toshigami_bst3","p":145,"h":1,"n":"Toshigami"},{"c":1,"s":11,"id":1280,"u":"trailgaunt_bst3","p":274,"h":1,"n":"Trailgaunt"},{"c":1,"s":11,"id":1281,"u":"trilobite_bst3","p":275,"h":1,"n":"Trilobite"},{"c":1,"s":11,"id":1282,"u":"trilobite%20swarm_bst3","p":275,"h":1,"n":"Trilobite Swarm"},{"c":1,"s":11,"id":1283,"u":"triumph%20siktempora_bst3","p":233,"h":1,"n":"Triumph Siktempora"},{"c":1,"s":11,"id":1284,"u":"tupilaq_bst3","p":278,"h":1,"n":"Tupilaq"},{"c":1,"s":11,"id":1285,"u":"tylosaurus_bst3","p":178,"h":1,"n":"Tylosaurus"},{"c":1,"s":11,"id":1286,"u":"tyrannosaurus%20skeleton_bst3","p":236,"h":1,"n":"Tyrannosaurus Skeleton"},{"c":1,"s":11,"id":1287,"u":"tzitzimitl_bst3","p":279,"h":1,"n":"Tzitzimitl"},{"c":1,"s":11,"id":1288,"u":"umasi_bst3","p":280,"h":1,"n":"Umasi"},{"c":1,"s":11,"id":1289,"u":"valkyrie_bst3","p":281,"h":1,"n":"Valkyrie"},{"c":1,"s":11,"id":1290,"u":"vanara%20disciple_bst3","p":286,"h":1,"n":"Vanara Disciple"},{"c":1,"s":11,"id":1291,"u":"vilderavn_bst3","p":287,"h":1,"n":"Vilderavn"},{"c":1,"s":11,"id":1292,"u":"vine%20leshy_bst3","p":160,"h":1,"n":"Vine Leshy"},{"c":1,"s":11,"id":1293,"u":"viper%20swarm_bst3","p":249,"h":1,"n":"Viper Swarm"},{"c":1,"s":11,"id":1294,"u":"vishkanya%20infiltrator_bst3","p":288,"h":1,"n":"Vishkanya Infiltrator"},{"c":1,"s":11,"id":1295,"u":"vulpinal_bst3","p":11,"h":1,"n":"Vulpinal"},{"c":1,"s":11,"id":1296,"u":"water%20wisp_bst3","p":91,"h":1,"n":"Water Wisp"},{"c":1,"s":11,"id":1297,"u":"wayang%20whisperblade_bst3","p":290,"h":1,"n":"Wayang Whisperblade"},{"c":1,"s":11,"id":1298,"u":"weasel_bst3","p":291,"h":1,"n":"Weasel"},{"c":1,"s":11,"id":1299,"u":"werebat_bst3","p":293,"h":1,"n":"Werebat"},{"c":1,"s":11,"id":1300,"u":"werecrocodile_bst3","p":293,"h":1,"n":"Werecrocodile"},{"c":1,"s":11,"id":1301,"u":"wihsaak_bst3","p":220,"h":1,"n":"Wihsaak"},{"c":1,"s":11,"id":1302,"u":"winter%20hag_bst3","p":129,"h":1,"n":"Winter Hag"},{"c":1,"s":11,"id":1303,"u":"wizard%20sponge_bst3","p":294,"h":1,"n":"Wizard Sponge"},{"c":1,"s":11,"id":1304,"u":"wolliped_bst3","p":295,"h":1,"n":"Wolliped"},{"c":1,"s":11,"id":1305,"u":"wyrmwraith_bst3","p":296,"h":1,"n":"Wyrmwraith"},{"c":1,"s":11,"id":1306,"u":"wyrwood%20sneak_bst3","p":298,"h":1,"n":"Wyrwood Sneak"},{"c":1,"s":11,"id":1307,"u":"ximtal_bst3","p":222,"h":1,"n":"Ximtal"},{"c":1,"s":11,"id":1308,"u":"xiuh%20couatl_bst3","p":57,"h":1,"n":"Xiuh Couatl"},{"c":1,"s":11,"id":1309,"u":"yithian_bst3","p":299,"h":1,"n":"Yithian"},{"c":1,"s":11,"id":1310,"u":"young%20forest%20dragon_bst3","p":74,"h":1,"n":"Young Forest Dragon"},{"c":1,"s":11,"id":1311,"u":"young%20sea%20dragon_bst3","p":77,"h":1,"n":"Young Sea Dragon"},{"c":1,"s":11,"id":1312,"u":"young%20sky%20dragon_bst3","p":79,"h":1,"n":"Young Sky Dragon"},{"c":1,"s":11,"id":1313,"u":"young%20sovereign%20dragon_bst3","p":81,"h":1,"n":"Young Sovereign Dragon"},{"c":1,"s":11,"id":1314,"u":"young%20underworld%20dragon_bst3","p":83,"h":1,"n":"Young Underworld Dragon"},{"c":1,"s":11,"id":1315,"u":"yzobu_bst3","p":300,"h":1,"n":"Yzobu"},{"c":1,"s":11,"id":1316,"u":"zetogeki_bst3","p":301,"h":1,"n":"Zetogeki"},{"c":1,"s":11,"id":1317,"u":"zombie%20dragon_bst3","p":303,"h":1,"n":"Zombie Dragon"},{"c":1,"s":11,"id":1318,"u":"zuishin_bst3","p":144,"h":1,"n":"Zuishin"},{"c":1,"s":5,"id":1319,"u":"unseen%20servant_crb","p":380,"h":1,"n":"Unseen Servant"},{"c":1,"s":12,"id":1320,"u":"acolyte%20of%20nethys_gmg","p":212,"h":1,"n":"Acolyte Of Nethys"},{"c":1,"s":12,"id":1321,"u":"acrobat_gmg","p":237,"h":1,"n":"Acrobat"},{"c":1,"s":12,"id":1322,"u":"adept_gmg","p":228,"h":1,"n":"Adept"},{"c":1,"s":12,"id":1323,"u":"advisor_gmg","p":208,"h":1,"n":"Advisor"},{"c":1,"s":12,"id":1324,"u":"antipaladin_gmg","p":247,"h":1,"n":"Antipaladin"},{"c":1,"s":12,"id":1325,"u":"apothecary_gmg","p":221,"h":1,"n":"Apothecary"},{"c":1,"s":12,"id":1326,"u":"apprentice_gmg","p":244,"h":1,"n":"Apprentice"},{"c":1,"s":12,"id":1327,"u":"archer%20sentry_gmg","p":234,"h":1,"n":"Archer Sentry"},{"c":1,"s":12,"id":1328,"u":"assassin_gmg","p":212,"h":1,"n":"Assassin"},{"c":1,"s":12,"id":1329,"u":"astronomer_gmg","p":241,"h":1,"n":"Astronomer"},{"c":1,"s":12,"id":1330,"u":"bandit_gmg","p":209,"h":1,"n":"Bandit"},{"c":1,"s":12,"id":1331,"u":"barkeep_gmg","p":238,"h":1,"n":"Barkeep"},{"c":1,"s":12,"id":1332,"u":"barrister_gmg","p":233,"h":1,"n":"Barrister"},{"c":1,"s":12,"id":1333,"u":"beast%20tamer_gmg","p":238,"h":1,"n":"Beast Tamer"},{"c":1,"s":12,"id":1334,"u":"beggar_gmg","p":214,"h":1,"n":"Beggar"},{"c":1,"s":12,"id":1335,"u":"bodyguard_gmg","p":226,"h":1,"n":"Bodyguard"},{"c":1,"s":12,"id":1336,"u":"bosun_gmg","p":243,"h":1,"n":"Bosun"},{"c":1,"s":12,"id":1337,"u":"bounty%20hunter_gmg","p":227,"h":1,"n":"Bounty Hunter"},{"c":1,"s":12,"id":1338,"u":"burglar_gmg","p":212,"h":1,"n":"Burglar"},{"c":1,"s":12,"id":1339,"u":"captain%20of%20the%20guard_gmg","p":236,"h":1,"n":"Captain Of The Guard"},{"c":1,"s":12,"id":1340,"u":"charlatan_gmg","p":210,"h":1,"n":"Charlatan"},{"c":1,"s":12,"id":1341,"u":"chronicler_gmg","p":216,"h":1,"n":"Chronicler"},{"c":1,"s":12,"id":1342,"u":"commoner_gmg","p":214,"h":1,"n":"Commoner"},{"c":1,"s":12,"id":1343,"u":"cult%20leader_gmg","p":231,"h":1,"n":"Cult Leader"},{"c":1,"s":12,"id":1344,"u":"cultist_gmg","p":229,"h":1,"n":"Cultist"},{"c":1,"s":12,"id":1345,"u":"dancer_gmg","p":237,"h":1,"n":"Dancer"},{"c":1,"s":12,"id":1346,"u":"demonologist_gmg","p":231,"h":1,"n":"Demonologist"},{"c":1,"s":12,"id":1347,"u":"despot_gmg","p":249,"h":1,"n":"Despot"},{"c":1,"s":12,"id":1348,"u":"dockhand_gmg","p":224,"h":1,"n":"Dockhand"},{"c":1,"s":12,"id":1349,"u":"drunkard_gmg","p":239,"h":1,"n":"Drunkard"},{"c":1,"s":12,"id":1350,"u":"executioner_gmg","p":236,"h":1,"n":"Executioner"},{"c":1,"s":12,"id":1351,"u":"false%20priest_gmg","p":229,"h":1,"n":"False Priest"},{"c":1,"s":12,"id":1352,"u":"farmer_gmg","p":224,"h":1,"n":"Farmer"},{"c":1,"s":12,"id":1353,"u":"fence_gmg","p":212,"h":1,"n":"Fence"},{"c":1,"s":12,"id":1354,"u":"gang%20leader_gmg","p":249,"h":1,"n":"Gang Leader"},{"c":1,"s":12,"id":1355,"u":"grave%20robber_gmg","p":209,"h":1,"n":"Grave Robber"},{"c":1,"s":12,"id":1356,"u":"gravedigger_gmg","p":224,"h":1,"n":"Gravedigger"},{"c":1,"s":12,"id":1357,"u":"guard_gmg","p":233,"h":1,"n":"Guard"},{"c":1,"s":12,"id":1358,"u":"guide_gmg","p":217,"h":1,"n":"Guide"},{"c":1,"s":12,"id":1359,"u":"guildmaster_gmg","p":245,"h":1,"n":"Guildmaster"},{"c":1,"s":12,"id":1360,"u":"harbormaster_gmg","p":225,"h":1,"n":"Harbormaster"},{"c":1,"s":12,"id":1361,"u":"harrow%20reader_gmg","p":228,"h":1,"n":"Harrow Reader"},{"c":1,"s":12,"id":1362,"u":"hunter_gmg","p":220,"h":1,"n":"Hunter"},{"c":1,"s":12,"id":1363,"u":"innkeeper_gmg","p":239,"h":1,"n":"Innkeeper"},{"c":1,"s":12,"id":1364,"u":"jailer_gmg","p":234,"h":1,"n":"Jailer"},{"c":1,"s":12,"id":1365,"u":"judge_gmg","p":224,"h":1,"n":"Judge"},{"c":1,"s":12,"id":1366,"u":"librarian_gmg","p":240,"h":1,"n":"Librarian"},{"c":1,"s":12,"id":1367,"u":"mage%20for%20hire_gmg","p":226,"h":1,"n":"Mage For Hire"},{"c":1,"s":12,"id":1368,"u":"mastermind_gmg","p":247,"h":1,"n":"Mastermind"},{"c":1,"s":12,"id":1369,"u":"merchant_gmg","p":244,"h":1,"n":"Merchant"},{"c":1,"s":12,"id":1370,"u":"miner_gmg","p":224,"h":1,"n":"Miner"},{"c":1,"s":12,"id":1371,"u":"monster%20hunter_gmg","p":227,"h":1,"n":"Monster Hunter"},{"c":1,"s":12,"id":1372,"u":"navigator_gmg","p":242,"h":1,"n":"Navigator"},{"c":1,"s":12,"id":1373,"u":"necromancer_gmg","p":231,"h":1,"n":"Necromancer"},{"c":1,"s":12,"id":1374,"u":"noble_gmg","p":207,"h":1,"n":"Noble"},{"c":1,"s":12,"id":1375,"u":"palace%20guard_gmg","p":207,"h":1,"n":"Palace Guard"},{"c":1,"s":12,"id":1376,"u":"physician_gmg","p":221,"h":1,"n":"Physician"},{"c":1,"s":12,"id":1377,"u":"pirate_gmg","p":242,"h":1,"n":"Pirate"},{"c":1,"s":12,"id":1378,"u":"plague%20doctor_gmg","p":222,"h":1,"n":"Plague Doctor"},{"c":1,"s":12,"id":1379,"u":"poacher_gmg","p":219,"h":1,"n":"Poacher"},{"c":1,"s":12,"id":1380,"u":"priest%20of%20pharasma_gmg","p":213,"h":1,"n":"Priest Of Pharasma"},{"c":1,"s":12,"id":1381,"u":"prisoner_gmg","p":215,"h":1,"n":"Prisoner"},{"c":1,"s":12,"id":1382,"u":"prophet_gmg","p":212,"h":1,"n":"Prophet"},{"c":1,"s":12,"id":1383,"u":"reckless%20scientist_gmg","p":249,"h":1,"n":"Reckless Scientist"},{"c":1,"s":12,"id":1384,"u":"ruffian_gmg","p":210,"h":1,"n":"Ruffian"},{"c":1,"s":12,"id":1385,"u":"saboteur_gmg","p":247,"h":1,"n":"Saboteur"},{"c":1,"s":12,"id":1386,"u":"sage_gmg","p":241,"h":1,"n":"Sage"},{"c":1,"s":12,"id":1387,"u":"servant_gmg","p":224,"h":1,"n":"Servant"},{"c":1,"s":12,"id":1388,"u":"server_gmg","p":238,"h":1,"n":"Server"},{"c":1,"s":12,"id":1389,"u":"ship%20captain_gmg","p":243,"h":1,"n":"Ship Captain"},{"c":1,"s":12,"id":1390,"u":"smith_gmg","p":245,"h":1,"n":"Smith"},{"c":1,"s":12,"id":1391,"u":"spy_gmg","p":208,"h":1,"n":"Spy"},{"c":1,"s":12,"id":1392,"u":"surgeon_gmg","p":222,"h":1,"n":"Surgeon"},{"c":1,"s":12,"id":1393,"u":"tax%20collector_gmg","p":224,"h":1,"n":"Tax Collector"},{"c":1,"s":12,"id":1394,"u":"teacher_gmg","p":240,"h":1,"n":"Teacher"},{"c":1,"s":12,"id":1395,"u":"tomb%20raider_gmg","p":217,"h":1,"n":"Tomb Raider"},{"c":1,"s":12,"id":1396,"u":"torchbearer_gmg","p":216,"h":1,"n":"Torchbearer"},{"c":1,"s":12,"id":1397,"u":"tracker_gmg","p":220,"h":1,"n":"Tracker"},{"c":1,"s":12,"id":1398,"u":"troubadour_gmg","p":238,"h":1,"n":"Troubadour"},{"c":1,"s":12,"id":1399,"u":"urchin_gmg","p":215,"h":1,"n":"Urchin"},{"c":1,"s":12,"id":1400,"u":"warden_gmg","p":225,"h":1,"n":"Warden"},{"c":1,"s":12,"id":1401,"u":"watch%20officer_gmg","p":236,"h":1,"n":"Watch Officer"},{"c":1,"s":12,"id":1402,"u":"zealot%20of%20asmodeus_gmg","p":213,"h":1,"n":"Zealot Of Asmodeus"},{"c":1,"s":13,"id":1403,"u":"alak%20stagram_aoa1","p":19,"h":1,"n":"Alak Stagram"},{"c":1,"s":13,"id":1404,"u":"anadi%20elder_aoa1","p":85,"h":1,"n":"Anadi Elder"},{"c":1,"s":13,"id":1405,"u":"anadi%20hunter_aoa1","p":84,"h":1,"n":"Anadi Hunter"},{"c":1,"s":13,"id":1406,"u":"anadi%20sage_aoa1","p":85,"h":1,"n":"Anadi Sage"},{"c":1,"s":13,"id":1407,"u":"bloody%20blade%20mercenary_aoa1","p":50,"h":1,"n":"Bloody Blade Mercenary"},{"c":1,"s":13,"id":1408,"u":"calmont_aoa1","p":27,"h":1,"n":"Calmont"},{"c":1,"s":13,"id":1409,"u":"dmiri%20yoltosha_aoa1","p":51,"h":1,"n":"Dmiri Yoltosha"},{"c":1,"s":13,"id":1410,"u":"doorwarden_aoa1","p":86,"h":1,"n":"Doorwarden"},{"c":1,"s":13,"id":1411,"u":"emperor%20bird_aoa1","p":87,"h":1,"n":"Emperor Bird"},{"c":1,"s":13,"id":1412,"u":"grauladon_aoa1","p":88,"h":1,"n":"Grauladon"},{"c":1,"s":13,"id":1413,"u":"graveshell_aoa1","p":89,"h":1,"n":"Graveshell"},{"c":1,"s":13,"id":1414,"u":"hellcrown_aoa1","p":90,"h":1,"n":"Hellcrown"},{"c":1,"s":13,"id":1415,"u":"malarunk_aoa1","p":58,"h":1,"n":"Malarunk"},{"c":1,"s":13,"id":1416,"u":"renali_aoa1","p":79,"h":1,"n":"Renali"},{"c":1,"s":13,"id":1417,"u":"skeletal%20hellknight_aoa1","p":40,"h":1,"n":"Skeletal Hellknight"},{"c":1,"s":13,"id":1418,"u":"skorp%20and%20venak_aoa1","p":37,"h":1,"n":"Skorp And Venak"},{"c":1,"s":13,"id":1419,"u":"tixitog_aoa1","p":91,"h":1,"n":"Tixitog"},{"c":1,"s":13,"id":1420,"u":"voz%20lirayne_aoa1","p":81,"h":1,"n":"Voz Lirayne"},{"c":1,"s":13,"id":1421,"u":"warbal%20bumblebrasher_aoa1","p":83,"h":1,"n":"Warbal Bumblebrasher"},{"c":1,"s":14,"id":1422,"u":"asanbosam_aoa2","p":80,"h":1,"n":"Asanbosam"},{"c":1,"s":14,"id":1423,"u":"belmazog_aoa2","p":77,"h":1,"n":"Belmazog"},{"c":1,"s":14,"id":1424,"u":"bida_aoa2","p":81,"h":1,"n":"Bida"},{"c":1,"s":14,"id":1425,"u":"biloko%20veteran_aoa2","p":83,"h":1,"n":"Biloko Veteran"},{"c":1,"s":14,"id":1426,"u":"biloko%20warrior_aoa2","p":82,"h":1,"n":"Biloko Warrior"},{"c":1,"s":14,"id":1427,"u":"charau-ka%20acolyte%20of%20angazhan_aoa2","p":85,"h":1,"n":"Charau-ka Acolyte Of Angazhan"},{"c":1,"s":14,"id":1428,"u":"charau-ka%20butcher_aoa2","p":85,"h":1,"n":"Charau-ka Butcher"},{"c":1,"s":14,"id":1429,"u":"charau-ka%20dragon%20priest_aoa2","p":59,"h":1,"n":"Charau-ka Dragon Priest"},{"c":1,"s":14,"id":1430,"u":"charau-ka%20warrior_aoa2","p":84,"h":1,"n":"Charau-ka Warrior"},{"c":1,"s":14,"id":1431,"u":"ekujae%20guardian_aoa2","p":11,"h":1,"n":"Ekujae Guardian"},{"c":1,"s":14,"id":1432,"u":"eloko_aoa2","p":83,"h":1,"n":"Eloko"},{"c":1,"s":14,"id":1433,"u":"gerhard%20pendergrast_aoa2","p":37,"h":1,"n":"Gerhard Pendergrast"},{"c":1,"s":14,"id":1434,"u":"grippli%20archer_aoa2","p":87,"h":1,"n":"Grippli Archer"},{"c":1,"s":14,"id":1435,"u":"grippli%20greenspeaker_aoa2","p":87,"h":1,"n":"Grippli Greenspeaker"},{"c":1,"s":14,"id":1436,"u":"grippli%20scout_aoa2","p":86,"h":1,"n":"Grippli Scout"},{"c":1,"s":14,"id":1437,"u":"hezle_aoa2","p":50,"h":1,"n":"Hezle"},{"c":1,"s":14,"id":1438,"u":"jahsi_aoa2","p":11,"h":1,"n":"Jahsi"},{"c":1,"s":14,"id":1439,"u":"kishi_aoa2","p":88,"h":1,"n":"Kishi"},{"c":1,"s":14,"id":1440,"u":"living%20sap_aoa2","p":89,"h":1,"n":"Living Sap"},{"c":1,"s":14,"id":1441,"u":"mokele-mbembe_aoa2","p":90,"h":1,"n":"Mokele-mbembe"},{"c":1,"s":14,"id":1442,"u":"nketiah_aoa2","p":79,"h":1,"n":"Nketiah"},{"c":1,"s":14,"id":1443,"u":"racharak_aoa2","p":34,"h":1,"n":"Racharak"},{"c":1,"s":14,"id":1444,"u":"sabosan_aoa2","p":91,"h":1,"n":"Sabosan"},{"c":1,"s":15,"id":1445,"u":"augur_aoa3","p":82,"h":1,"n":"Augur"},{"c":1,"s":15,"id":1446,"u":"barushak%20il-varashma_aoa3","p":44,"h":1,"n":"Barushak Il-varashma"},{"c":1,"s":15,"id":1447,"u":"blood%20boar_aoa3","p":76,"h":1,"n":"Blood Boar"},{"c":1,"s":15,"id":1448,"u":"evangelist_aoa3","p":83,"h":1,"n":"Evangelist"},{"c":1,"s":15,"id":1449,"u":"ghastly%20bear_aoa3","p":50,"h":1,"n":"Ghastly Bear"},{"c":1,"s":15,"id":1450,"u":"heuberk%20thropp_aoa3","p":7,"h":1,"n":"Heuberk Thropp"},{"c":1,"s":15,"id":1451,"u":"interlocutor_aoa3","p":84,"h":1,"n":"Interlocutor"},{"c":1,"s":15,"id":1452,"u":"kalavakus_aoa3","p":77,"h":1,"n":"Kalavakus"},{"c":1,"s":15,"id":1453,"u":"laslunn_aoa3","p":87,"h":1,"n":"Laslunn"},{"c":1,"s":15,"id":1454,"u":"mercenary%20sailor_aoa3","p":18,"h":1,"n":"Mercenary Sailor"},{"c":1,"s":15,"id":1455,"u":"mialari%20docur_aoa3","p":89,"h":1,"n":"Mialari Docur"},{"c":1,"s":15,"id":1456,"u":"nolly%20peltry_aoa3","p":91,"h":1,"n":"Nolly Peltry"},{"c":1,"s":15,"id":1457,"u":"one-eye%20amnin_aoa3","p":23,"h":1,"n":"One-eye Amnin"},{"c":1,"s":15,"id":1458,"u":"osyluth_aoa3","p":78,"h":1,"n":"Osyluth"},{"c":1,"s":15,"id":1459,"u":"precentor_aoa3","p":85,"h":1,"n":"Precentor"},{"c":1,"s":15,"id":1460,"u":"remnant%20of%20barzillai_aoa3","p":80,"h":1,"n":"Remnant Of Barzillai"},{"c":1,"s":15,"id":1461,"u":"rusalka_aoa3","p":81,"h":1,"n":"Rusalka"},{"c":1,"s":15,"id":1462,"u":"rusty%20mae_aoa3","p":14,"h":1,"n":"Rusty Mae"},{"c":1,"s":15,"id":1463,"u":"scarlet%20triad%20poisoner_aoa3","p":41,"h":1,"n":"Scarlet Triad Poisoner"},{"c":1,"s":15,"id":1464,"u":"scarlet%20triad%20sneak_aoa3","p":8,"h":1,"n":"Scarlet Triad Sneak"},{"c":1,"s":15,"id":1465,"u":"scarlet%20triad%20sniper_aoa3","p":56,"h":1,"n":"Scarlet Triad Sniper"},{"c":1,"s":15,"id":1466,"u":"scarlet%20triad%20thug_aoa3","p":16,"h":1,"n":"Scarlet Triad Thug"},{"c":1,"s":15,"id":1467,"u":"shadow%20giant_aoa3","p":79,"h":1,"n":"Shadow Giant"},{"c":1,"s":15,"id":1468,"u":"vaklish_aoa3","p":54,"h":1,"n":"Vaklish"},{"c":1,"s":16,"id":1469,"u":"accursed%20forge-spurned_aoa4","p":32,"h":1,"n":"Accursed Forge-spurned"},{"c":1,"s":16,"id":1470,"u":"adult%20magma%20dragon_aoa4","p":80,"h":1,"n":"Adult Magma Dragon"},{"c":1,"s":16,"id":1471,"u":"ancient%20magma%20dragon_aoa4","p":81,"h":1,"n":"Ancient Magma Dragon"},{"c":1,"s":16,"id":1472,"u":"carnivorous%20crystal_aoa4","p":76,"h":1,"n":"Carnivorous Crystal"},{"c":1,"s":16,"id":1473,"u":"corrupt%20guard_aoa4","p":27,"h":1,"n":"Corrupt Guard"},{"c":1,"s":16,"id":1474,"u":"dalos_aoa4","p":77,"h":1,"n":"Dalos"},{"c":1,"s":16,"id":1475,"u":"deculi_aoa4","p":78,"h":1,"n":"Deculi"},{"c":1,"s":16,"id":1476,"u":"devourer_aoa4","p":79,"h":1,"n":"Devourer"},{"c":1,"s":16,"id":1477,"u":"dragonscarred%20dead_aoa4","p":82,"h":1,"n":"Dragonscarred Dead"},{"c":1,"s":16,"id":1478,"u":"duergar%20slave%20lord_aoa4","p":50,"h":1,"n":"Duergar Slave Lord"},{"c":1,"s":16,"id":1479,"u":"falrok_aoa4","p":46,"h":1,"n":"Falrok"},{"c":1,"s":16,"id":1480,"u":"forge-spurned_aoa4","p":83,"h":1,"n":"Forge-spurned"},{"c":1,"s":16,"id":1481,"u":"gashadokuro_aoa4","p":84,"h":1,"n":"Gashadokuro"},{"c":1,"s":16,"id":1482,"u":"ilssrah%20embermead_aoa4","p":89,"h":1,"n":"Ilssrah Embermead"},{"c":1,"s":16,"id":1483,"u":"kelda%20halrig_aoa4","p":87,"h":1,"n":"Kelda Halrig"},{"c":1,"s":16,"id":1484,"u":"king%20harral_aoa4","p":42,"h":1,"n":"King Harral"},{"c":1,"s":16,"id":1485,"u":"kralgurn_aoa4","p":31,"h":1,"n":"Kralgurn"},{"c":1,"s":16,"id":1486,"u":"lazurite-infused%20stone%20golem_aoa4","p":45,"h":1,"n":"Lazurite-infused Stone Golem"},{"c":1,"s":16,"id":1487,"u":"saggorak%20poltergeist_aoa4","p":43,"h":1,"n":"Saggorak Poltergeist"},{"c":1,"s":16,"id":1488,"u":"soulbound%20ruin_aoa4","p":85,"h":1,"n":"Soulbound Ruin"},{"c":1,"s":16,"id":1489,"u":"talamira_aoa4","p":8,"h":1,"n":"Talamira"},{"c":1,"s":16,"id":1490,"u":"thea_aoa4","p":31,"h":1,"n":"Thea"},{"c":1,"s":16,"id":1491,"u":"veshumirix_aoa4","p":91,"h":1,"n":"Veshumirix"},{"c":1,"s":16,"id":1492,"u":"xevalorg_aoa4","p":14,"h":1,"n":"Xevalorg"},{"c":1,"s":16,"id":1493,"u":"young%20magma%20dragon_aoa4","p":80,"h":1,"n":"Young Magma Dragon"},{"c":1,"s":16,"id":1494,"u":"zuferian_aoa4","p":37,"h":1,"n":"Zuferian"},{"c":1,"s":17,"id":1495,"u":"aluum%20enforcer_aoa5","p":82,"h":1,"n":"Aluum Enforcer"},{"c":1,"s":17,"id":1496,"u":"calikang_aoa5","p":84,"h":1,"n":"Calikang"},{"c":1,"s":17,"id":1497,"u":"cornugon_aoa5","p":87,"h":1,"n":"Cornugon"},{"c":1,"s":17,"id":1498,"u":"crucidaemon_aoa5","p":85,"h":1,"n":"Crucidaemon"},{"c":1,"s":17,"id":1499,"u":"duneshaker%20solifugid_aoa5","p":89,"h":1,"n":"Duneshaker Solifugid"},{"c":1,"s":17,"id":1500,"u":"giant%20solifugid_aoa5","p":89,"h":1,"n":"Giant Solifugid"},{"c":1,"s":17,"id":1501,"u":"immortal%20ichor_aoa5","p":88,"h":1,"n":"Immortal Ichor"},{"c":1,"s":17,"id":1502,"u":"ishti_aoa5","p":47,"h":1,"n":"Ishti"},{"c":1,"s":17,"id":1503,"u":"nalfeshnee_aoa5","p":86,"h":1,"n":"Nalfeshnee"},{"c":1,"s":17,"id":1504,"u":"scarlet%20triad%20boss_aoa5","p":57,"h":1,"n":"Scarlet Triad Boss"},{"c":1,"s":17,"id":1505,"u":"scarlet%20triad%20enforcer_aoa5","p":41,"h":1,"n":"Scarlet Triad Enforcer"},{"c":1,"s":17,"id":1506,"u":"scarlet%20triad%20mage_aoa5","p":57,"h":1,"n":"Scarlet Triad Mage"},{"c":1,"s":17,"id":1507,"u":"shak_aoa5","p":34,"h":1,"n":"Shak"},{"c":1,"s":17,"id":1508,"u":"spiritbound%20aluum_aoa5","p":83,"h":1,"n":"Spiritbound Aluum"},{"c":1,"s":17,"id":1509,"u":"teyam%20ishtori_aoa5","p":61,"h":1,"n":"Teyam Ishtori"},{"c":1,"s":17,"id":1510,"u":"uri%20zandivar_aoa5","p":93,"h":1,"n":"Uri Zandivar"},{"c":1,"s":17,"id":1511,"u":"witchwyrd_aoa5","p":90,"h":1,"n":"Witchwyrd"},{"c":1,"s":17,"id":1512,"u":"xotanispawn_aoa5","p":91,"h":1,"n":"Xotanispawn"},{"c":1,"s":17,"id":1513,"u":"zephyr%20guard_aoa5","p":51,"h":1,"n":"Zephyr Guard"},{"c":1,"s":18,"id":1514,"u":"aiudara%20wraith_aoa6","p":78,"h":1,"n":"Aiudara Wraith"},{"c":1,"s":18,"id":1515,"u":"animated%20dragonstorm_aoa6","p":10,"h":1,"n":"Animated Dragonstorm"},{"c":1,"s":18,"id":1516,"u":"candlaron's%20echo_aoa6","p":56,"h":1,"n":"Candlaron's Echo"},{"c":1,"s":18,"id":1517,"u":"dragonshard%20guardian_aoa6","p":79,"h":1,"n":"Dragonshard Guardian"},{"c":1,"s":18,"id":1518,"u":"dragonstorm%20fire%20giant_aoa6","p":14,"h":1,"n":"Dragonstorm Fire Giant"},{"c":1,"s":18,"id":1519,"u":"elder%20wyrmwraith_aoa6","p":85,"h":1,"n":"Elder Wyrmwraith"},{"c":1,"s":18,"id":1520,"u":"emaliza%20zandivar_aoa6","p":87,"h":1,"n":"Emaliza Zandivar"},{"c":1,"s":18,"id":1521,"u":"hermean%20mutant_aoa6","p":40,"h":1,"n":"Hermean Mutant"},{"c":1,"s":18,"id":1522,"u":"ilgreth_aoa6","p":57,"h":1,"n":"Ilgreth"},{"c":1,"s":18,"id":1523,"u":"ingnovim%20tluss_aoa6","p":39,"h":1,"n":"Ingnovim Tluss"},{"c":1,"s":18,"id":1524,"u":"ingnovim's%20assistant_aoa6","p":40,"h":1,"n":"Ingnovim's Assistant"},{"c":1,"s":18,"id":1525,"u":"inizra%20arumelo_aoa6","p":89,"h":1,"n":"Inizra Arumelo"},{"c":1,"s":18,"id":1526,"u":"lesser%20manifestation%20of%20dahak_aoa6","p":16,"h":1,"n":"Lesser Manifestation Of Dahak"},{"c":1,"s":18,"id":1527,"u":"manifestation%20of%20dahak_aoa6","p":63,"h":1,"n":"Manifestation Of Dahak"},{"c":1,"s":18,"id":1528,"u":"mengkare_aoa6","p":90,"h":1,"n":"Mengkare"},{"c":1,"s":18,"id":1529,"u":"promise%20guard_aoa6","p":29,"h":1,"n":"Promise Guard"},{"c":1,"s":18,"id":1530,"u":"rinnarv%20bontimar_aoa6","p":24,"h":1,"n":"Rinnarv Bontimar"},{"c":1,"s":18,"id":1531,"u":"tarrasque_aoa6","p":80,"h":1,"n":"Tarrasque"},{"c":1,"s":18,"id":1532,"u":"tzitzimitl_aoa6","p":82,"h":1,"n":"Tzitzimitl"},{"c":1,"s":18,"id":1533,"u":"vazgorlu_aoa6","p":83,"h":1,"n":"Vazgorlu"},{"c":1,"s":18,"id":1534,"u":"wyrmwraith_aoa6","p":84,"h":1,"n":"Wyrmwraith"},{"c":1,"s":18,"id":1535,"u":"xotani_aoa6","p":81,"h":1,"n":"Xotani"},{"c":1,"s":19,"id":1536,"u":"almiraj_aoe1","p":16,"h":1,"n":"Almiraj"},{"c":1,"s":19,"id":1537,"u":"antaro%20boldblade_aoe1","p":8,"h":1,"n":"Antaro Boldblade"},{"c":1,"s":19,"id":1538,"u":"battle%20leader%20rekarek_aoe1","p":27,"h":1,"n":"Battle Leader Rekarek"},{"c":1,"s":19,"id":1539,"u":"binumir_aoe1","p":82,"h":1,"n":"Binumir"},{"c":1,"s":19,"id":1540,"u":"bolar%20of%20stonemoor_aoe1","p":8,"h":1,"n":"Bolar Of Stonemoor"},{"c":1,"s":19,"id":1541,"u":"cobbleswarm_aoe1","p":83,"h":1,"n":"Cobbleswarm"},{"c":1,"s":19,"id":1542,"u":"eunice_aoe1","p":12,"h":1,"n":"Eunice"},{"c":1,"s":19,"id":1543,"u":"gref_aoe1","p":34,"h":1,"n":"Gref"},{"c":1,"s":19,"id":1544,"u":"grick_aoe1","p":35,"h":1,"n":"Grick"},{"c":1,"s":19,"id":1545,"u":"grospek%20lavarsus_aoe1","p":87,"h":1,"n":"Grospek Lavarsus"},{"c":1,"s":19,"id":1546,"u":"hendrid%20pratchett_aoe1","p":89,"h":1,"n":"Hendrid Pratchett"},{"c":1,"s":19,"id":1547,"u":"kekker_aoe1","p":34,"h":1,"n":"Kekker"},{"c":1,"s":19,"id":1548,"u":"kemeneles_aoe1","p":53,"h":1,"n":"Kemeneles"},{"c":1,"s":19,"id":1549,"u":"lyrma%20swampwalker_aoe1","p":54,"h":1,"n":"Lyrma Swampwalker"},{"c":1,"s":19,"id":1550,"u":"miriel%20grayleaf_aoe1","p":7,"h":1,"n":"Miriel Grayleaf"},{"c":1,"s":19,"id":1551,"u":"pickled%20punk_aoe1","p":59,"h":1,"n":"Pickled Punk"},{"c":1,"s":19,"id":1552,"u":"ralso_aoe1","p":91,"h":1,"n":"Ralso"},{"c":1,"s":19,"id":1553,"u":"shredskin_aoe1","p":60,"h":1,"n":"Shredskin"},{"c":1,"s":19,"id":1554,"u":"siege%20shard_aoe1","p":84,"h":1,"n":"Siege Shard"},{"c":1,"s":19,"id":1555,"u":"skebs_aoe1","p":8,"h":1,"n":"Skebs"},{"c":1,"s":19,"id":1556,"u":"vargouille_aoe1","p":35,"h":1,"n":"Vargouille"},{"c":1,"s":19,"id":1557,"u":"zrukbat_aoe1","p":85,"h":1,"n":"Zrukbat"},{"c":1,"s":20,"id":1558,"u":"bone%20skipper%20swarm_aoe2","p":80,"h":1,"n":"Bone Skipper Swarm"},{"c":1,"s":20,"id":1559,"u":"copper%20hand%20illusionist_aoe2","p":23,"h":1,"n":"Copper Hand Illusionist"},{"c":1,"s":20,"id":1560,"u":"copper%20hand%20rogue_aoe2","p":16,"h":1,"n":"Copper Hand Rogue"},{"c":1,"s":20,"id":1561,"u":"dreadsong%20dancer_aoe2","p":81,"h":1,"n":"Dreadsong Dancer"},{"c":1,"s":20,"id":1562,"u":"excorion_aoe2","p":82,"h":1,"n":"Excorion"},{"c":1,"s":20,"id":1563,"u":"fayati%20alummur_aoe2","p":26,"h":1,"n":"Fayati Alummur"},{"c":1,"s":20,"id":1564,"u":"frefferth_aoe2","p":35,"h":1,"n":"Frefferth"},{"c":1,"s":20,"id":1565,"u":"giant%20bone%20skipper_aoe2","p":80,"h":1,"n":"Giant Bone Skipper"},{"c":1,"s":20,"id":1566,"u":"kolo%20harvan_aoe2","p":17,"h":1,"n":"Kolo Harvan"},{"c":1,"s":20,"id":1567,"u":"najra%20lizard_aoe2","p":83,"h":1,"n":"Najra Lizard"},{"c":1,"s":20,"id":1568,"u":"ofalth%20zombie_aoe2","p":47,"h":1,"n":"Ofalth Zombie"},{"c":1,"s":20,"id":1569,"u":"shristi%20melipdra_aoe2","p":91,"h":1,"n":"Shristi Melipdra"},{"c":1,"s":20,"id":1570,"u":"skinsaw%20murderer_aoe2","p":50,"h":1,"n":"Skinsaw Murderer"},{"c":1,"s":20,"id":1571,"u":"skinsaw%20seamer_aoe2","p":51,"h":1,"n":"Skinsaw Seamer"},{"c":1,"s":20,"id":1572,"u":"skinstitch_aoe2","p":84,"h":1,"n":"Skinstitch"},{"c":1,"s":20,"id":1573,"u":"tenome_aoe2","p":85,"h":1,"n":"Tenome"},{"c":1,"s":20,"id":1574,"u":"teraphant_aoe2","p":86,"h":1,"n":"Teraphant"},{"c":1,"s":20,"id":1575,"u":"vaultbreaker%20ooze_aoe2","p":87,"h":1,"n":"Vaultbreaker Ooze"},{"c":1,"s":20,"id":1576,"u":"wrent%20dicaspiron_aoe2","p":89,"h":1,"n":"Wrent Dicaspiron"},{"c":1,"s":21,"id":1577,"u":"avarek_aoe3","p":80,"h":1,"n":"Avarek"},{"c":1,"s":21,"id":1578,"u":"barnacle%20ghoul_aoe3","p":83,"h":1,"n":"Barnacle Ghoul"},{"c":1,"s":21,"id":1579,"u":"bloody%20berleth_aoe3","p":21,"h":1,"n":"Bloody Berleth"},{"c":1,"s":21,"id":1580,"u":"bregdi_aoe3","p":81,"h":1,"n":"Bregdi"},{"c":1,"s":21,"id":1581,"u":"casino%20bouncer_aoe3","p":24,"h":1,"n":"Casino Bouncer"},{"c":1,"s":21,"id":1582,"u":"diobel%20sweeper%20tough_aoe3","p":8,"h":1,"n":"Diobel Sweeper Tough"},{"c":1,"s":21,"id":1583,"u":"eberark_aoe3","p":82,"h":1,"n":"Eberark"},{"c":1,"s":21,"id":1584,"u":"franca%20laurentz_aoe3","p":87,"h":1,"n":"Franca Laurentz"},{"c":1,"s":21,"id":1585,"u":"gage%20carlyle_aoe3","p":89,"h":1,"n":"Gage Carlyle"},{"c":1,"s":21,"id":1586,"u":"iroran%20skeleton_aoe3","p":52,"h":1,"n":"Iroran Skeleton"},{"c":1,"s":21,"id":1587,"u":"maurrisa%20jonne_aoe3","p":91,"h":1,"n":"Maurrisa Jonne"},{"c":1,"s":21,"id":1588,"u":"ravenile%20rager_aoe3","p":84,"h":1,"n":"Ravenile Rager"},{"c":1,"s":21,"id":1589,"u":"scathka_aoe3","p":43,"h":1,"n":"Scathka"},{"c":1,"s":21,"id":1590,"u":"shikwashim%20mercenary_aoe3","p":52,"h":1,"n":"Shikwashim Mercenary"},{"c":1,"s":21,"id":1591,"u":"svartalfar%20killer_aoe3","p":85,"h":1,"n":"Svartalfar Killer"},{"c":1,"s":21,"id":1592,"u":"tonla%20and%20yvelle_aoe3","p":17,"h":1,"n":"Tonla And Yvelle"},{"c":1,"s":21,"id":1593,"u":"washboard%20dog%20tough_aoe3","p":8,"h":1,"n":"Washboard Dog Tough"},{"c":1,"s":22,"id":1594,"u":"amateur%20chemist_aoe4","p":12,"h":1,"n":"Amateur Chemist"},{"c":1,"s":22,"id":1595,"u":"blackfingers%20acolyte_aoe4","p":13,"h":1,"n":"Blackfingers Acolyte"},{"c":1,"s":22,"id":1596,"u":"clockwork%20assassin_aoe4","p":82,"h":1,"n":"Clockwork Assassin"},{"c":1,"s":22,"id":1597,"u":"gloaming%20will-o'-wisp_aoe4","p":59,"h":1,"n":"Gloaming Will-o'-wisp"},{"c":1,"s":22,"id":1598,"u":"grabble%20forden_aoe4","p":45,"h":1,"n":"Grabble Forden"},{"c":1,"s":22,"id":1599,"u":"japu%20thalenger_aoe4","p":14,"h":1,"n":"Japu Thalenger"},{"c":1,"s":22,"id":1600,"u":"jonis%20flakfatter_aoe4","p":87,"h":1,"n":"Jonis Flakfatter"},{"c":1,"s":22,"id":1601,"u":"jorogumo_aoe4","p":83,"h":1,"n":"Jorogumo"},{"c":1,"s":22,"id":1602,"u":"kalyn%20pounch_aoe4","p":14,"h":1,"n":"Kalyn Pounch"},{"c":1,"s":22,"id":1603,"u":"morgrat%20and%20fillick_aoe4","p":29,"h":1,"n":"Morgrat And Fillick"},{"c":1,"s":22,"id":1604,"u":"norgorberite%20poisoner_aoe4","p":6,"h":1,"n":"Norgorberite Poisoner"},{"c":1,"s":22,"id":1605,"u":"poison%20eater_aoe4","p":23,"h":1,"n":"Poison Eater"},{"c":1,"s":22,"id":1606,"u":"shatterling_aoe4","p":84,"h":1,"n":"Shatterling"},{"c":1,"s":22,"id":1607,"u":"sleepless%20sun%20veteran_aoe4","p":37,"h":1,"n":"Sleepless Sun Veteran"},{"c":1,"s":22,"id":1608,"u":"the%20rabbit%20prince_aoe4","p":89,"h":1,"n":"The Rabbit Prince"},{"c":1,"s":22,"id":1609,"u":"the%20stabbing%20beast_aoe4","p":85,"h":1,"n":"The Stabbing Beast"},{"c":1,"s":22,"id":1610,"u":"velberi%20jallist_aoe4","p":22,"h":1,"n":"Velberi Jallist"},{"c":1,"s":22,"id":1611,"u":"wynsal%20starborn_aoe4","p":91,"h":1,"n":"Wynsal Starborn"},{"c":1,"s":23,"id":1612,"u":"black%20whale%20guard_aoe5","p":35,"h":1,"n":"Black Whale Guard"},{"c":1,"s":23,"id":1613,"u":"bloody%20barber%20goon_aoe5","p":21,"h":1,"n":"Bloody Barber Goon"},{"c":1,"s":23,"id":1614,"u":"calennia_aoe5","p":32,"h":1,"n":"Calennia"},{"c":1,"s":23,"id":1615,"u":"child%20of%20venom_aoe5","p":16,"h":1,"n":"Child Of Venom"},{"c":1,"s":23,"id":1616,"u":"clockwork%20amalgam_aoe5","p":81,"h":1,"n":"Clockwork Amalgam"},{"c":1,"s":23,"id":1617,"u":"clockwork%20assassin_aoe5","p":50,"h":1,"n":"Clockwork Assassin"},{"c":1,"s":23,"id":1618,"u":"garrote%20master%20assassin_aoe5","p":14,"h":1,"n":"Garrote Master Assassin"},{"c":1,"s":23,"id":1619,"u":"graem%20and%20grinlowe_aoe5","p":40,"h":1,"n":"Graem And Grinlowe"},{"c":1,"s":23,"id":1620,"u":"grimwold_aoe5","p":7,"h":1,"n":"Grimwold"},{"c":1,"s":23,"id":1621,"u":"ixusoth_aoe5","p":50,"h":1,"n":"Ixusoth"},{"c":1,"s":23,"id":1622,"u":"kapral_aoe5","p":7,"h":1,"n":"Kapral"},{"c":1,"s":23,"id":1623,"u":"lord%20guirden_aoe5","p":37,"h":1,"n":"Lord Guirden"},{"c":1,"s":23,"id":1624,"u":"lusca_aoe5","p":83,"h":1,"n":"Lusca"},{"c":1,"s":23,"id":1625,"u":"minchgorm_aoe5","p":84,"h":1,"n":"Minchgorm"},{"c":1,"s":23,"id":1626,"u":"miogimo_aoe5","p":89,"h":1,"n":"Miogimo"},{"c":1,"s":23,"id":1627,"u":"mother%20venom_aoe5","p":19,"h":1,"n":"Mother Venom"},{"c":1,"s":23,"id":1628,"u":"myrna%20rath_aoe5","p":39,"h":1,"n":"Myrna Rath"},{"c":1,"s":23,"id":1629,"u":"myrucarx_aoe5","p":85,"h":1,"n":"Myrucarx"},{"c":1,"s":23,"id":1630,"u":"obrousian_aoe5","p":86,"h":1,"n":"Obrousian"},{"c":1,"s":23,"id":1631,"u":"reginald%20vancaskerkin_aoe5","p":91,"h":1,"n":"Reginald Vancaskerkin"},{"c":1,"s":23,"id":1632,"u":"starwatch%20commando_aoe5","p":26,"h":1,"n":"Starwatch Commando"},{"c":1,"s":23,"id":1633,"u":"tiderunner%20aquamancer_aoe5","p":41,"h":1,"n":"Tiderunner Aquamancer"},{"c":1,"s":23,"id":1634,"u":"twisted%20jack_aoe5","p":22,"h":1,"n":"Twisted Jack"},{"c":1,"s":23,"id":1635,"u":"water_aoe5","p":82,"h":1,"n":"Water"},{"c":1,"s":23,"id":1636,"u":"zeal-damned%20ghoul_aoe5","p":9,"h":1,"n":"Zeal-damned Ghoul"},{"c":1,"s":23,"id":1637,"u":"zealborn_aoe5","p":87,"h":1,"n":"Zealborn"},{"c":1,"s":24,"id":1638,"u":"agent%20of%20the%20gray%20queen_aoe6","p":21,"h":1,"n":"Agent Of The Gray Queen"},{"c":1,"s":24,"id":1639,"u":"agradaemon_aoe6","p":79,"h":1,"n":"Agradaemon"},{"c":1,"s":24,"id":1640,"u":"alchemical%20horror_aoe6","p":55,"h":1,"n":"Alchemical Horror"},{"c":1,"s":24,"id":1641,"u":"avsheros%20the%20betrayer_aoe6","p":42,"h":1,"n":"Avsheros The Betrayer"},{"c":1,"s":24,"id":1642,"u":"baatamidar_aoe6","p":76,"h":1,"n":"Baatamidar"},{"c":1,"s":24,"id":1643,"u":"blune%20bandersworth_aoe6","p":87,"h":1,"n":"Blune Bandersworth"},{"c":1,"s":24,"id":1644,"u":"blune's%20illusory%20toady_aoe6","p":13,"h":1,"n":"Blune's Illusory Toady"},{"c":1,"s":24,"id":1645,"u":"camarach_aoe6","p":77,"h":1,"n":"Camarach"},{"c":1,"s":24,"id":1646,"u":"chaos%20gulgamodh_aoe6","p":45,"h":1,"n":"Chaos Gulgamodh"},{"c":1,"s":24,"id":1647,"u":"daemonic%20infector_aoe6","p":56,"h":1,"n":"Daemonic Infector"},{"c":1,"s":24,"id":1648,"u":"daemonic%20rumormonger_aoe6","p":53,"h":1,"n":"Daemonic Rumormonger"},{"c":1,"s":24,"id":1649,"u":"daemonic%20skinner_aoe6","p":51,"h":1,"n":"Daemonic Skinner"},{"c":1,"s":24,"id":1650,"u":"excorion%20paragon_aoe6","p":50,"h":1,"n":"Excorion Paragon"},{"c":1,"s":24,"id":1651,"u":"ghaele%20of%20kharnas_aoe6","p":32,"h":1,"n":"Ghaele Of Kharnas"},{"c":1,"s":24,"id":1652,"u":"graveknight%20of%20kharnas_aoe6","p":36,"h":1,"n":"Graveknight Of Kharnas"},{"c":1,"s":24,"id":1653,"u":"hegessik_aoe6","p":80,"h":1,"n":"Hegessik"},{"c":1,"s":24,"id":1654,"u":"hestriviniaas_aoe6","p":15,"h":1,"n":"Hestriviniaas"},{"c":1,"s":24,"id":1655,"u":"hundun%20chaos%20mage_aoe6","p":17,"h":1,"n":"Hundun Chaos Mage"},{"c":1,"s":24,"id":1656,"u":"il'setsya%20wyrmtouched_aoe6","p":89,"h":1,"n":"Il'setsya Wyrmtouched"},{"c":1,"s":24,"id":1657,"u":"izfiitar_aoe6","p":81,"h":1,"n":"Izfiitar"},{"c":1,"s":24,"id":1658,"u":"living%20mural_aoe6","p":31,"h":1,"n":"Living Mural"},{"c":1,"s":24,"id":1659,"u":"nenchuuj_aoe6","p":85,"h":1,"n":"Nenchuuj"},{"c":1,"s":24,"id":1660,"u":"olansa%20terimor_aoe6","p":91,"h":1,"n":"Olansa Terimor"},{"c":1,"s":24,"id":1661,"u":"overdrive%20imentesh_aoe6","p":9,"h":1,"n":"Overdrive Imentesh"},{"c":1,"s":24,"id":1662,"u":"penqual_aoe6","p":84,"h":1,"n":"Penqual"},{"c":1,"s":24,"id":1663,"u":"rhevanna_aoe6","p":83,"h":1,"n":"Rhevanna"},{"c":1,"s":24,"id":1664,"u":"slithering%20rift_aoe6","p":27,"h":1,"n":"Slithering Rift"},{"c":1,"s":24,"id":1665,"u":"sordesdaemon_aoe6","p":78,"h":1,"n":"Sordesdaemon"},{"c":1,"s":24,"id":1666,"u":"ulressia%20the%20blessed_aoe6","p":39,"h":1,"n":"Ulressia The Blessed"},{"c":1,"s":24,"id":1667,"u":"veksciralenix_aoe6","p":7,"h":1,"n":"Veksciralenix"},{"c":1,"s":25,"id":1668,"u":"aller%20rosk_av1","p":43,"h":1,"n":"Aller Rosk"},{"c":1,"s":25,"id":1669,"u":"augrael_av1","p":35,"h":1,"n":"Augrael"},{"c":1,"s":25,"id":1670,"u":"bloodsiphon_av1","p":23,"h":1,"n":"Bloodsiphon"},{"c":1,"s":25,"id":1671,"u":"boss%20skrawng_av1","p":11,"h":1,"n":"Boss Skrawng"},{"c":1,"s":25,"id":1672,"u":"canker%20cultist_av1","p":41,"h":1,"n":"Canker Cultist"},{"c":1,"s":25,"id":1673,"u":"chandriu%20invisar_av1","p":50,"h":1,"n":"Chandriu Invisar"},{"c":1,"s":25,"id":1674,"u":"corpselight_av1","p":82,"h":1,"n":"Corpselight"},{"c":1,"s":25,"id":1675,"u":"flickerwisp_av1","p":83,"h":1,"n":"Flickerwisp"},{"c":1,"s":25,"id":1676,"u":"jarelle%20kaldrian_av1","p":40,"h":1,"n":"Jarelle Kaldrian"},{"c":1,"s":25,"id":1677,"u":"jaul%20mezmin_av1","p":59,"h":1,"n":"Jaul Mezmin"},{"c":1,"s":25,"id":1678,"u":"jaul's%20wolf_av1","p":60,"h":1,"n":"Jaul's Wolf"},{"c":1,"s":25,"id":1679,"u":"morlock%20cultist_av1","p":85,"h":1,"n":"Morlock Cultist"},{"c":1,"s":25,"id":1680,"u":"morlock%20engineer_av1","p":84,"h":1,"n":"Morlock Engineer"},{"c":1,"s":25,"id":1681,"u":"morlock%20scavenger_av1","p":84,"h":1,"n":"Morlock Scavenger"},{"c":1,"s":25,"id":1682,"u":"nhakazarin_av1","p":48,"h":1,"n":"Nhakazarin"},{"c":1,"s":25,"id":1683,"u":"otari%20ilvashti_av1","p":89,"h":1,"n":"Otari Ilvashti"},{"c":1,"s":25,"id":1684,"u":"scalathrax_av1","p":86,"h":1,"n":"Scalathrax"},{"c":1,"s":25,"id":1685,"u":"voidglutton_av1","p":87,"h":1,"n":"Voidglutton"},{"c":1,"s":25,"id":1686,"u":"volluk%20azrinae_av1","p":54,"h":1,"n":"Volluk Azrinae"},{"c":1,"s":25,"id":1687,"u":"wrin%20sivinxi_av1","p":90,"h":1,"n":"Wrin Sivinxi"},{"c":1,"s":26,"id":1688,"u":"carman%20rajani_av2","p":87,"h":1,"n":"Carman Rajani"},{"c":1,"s":26,"id":1689,"u":"chafkhem_av2","p":19,"h":1,"n":"Chafkhem"},{"c":1,"s":26,"id":1690,"u":"dreshkan_av2","p":78,"h":1,"n":"Dreshkan"},{"c":1,"s":26,"id":1691,"u":"gibtanius_av2","p":81,"h":1,"n":"Gibtanius"},{"c":1,"s":26,"id":1692,"u":"gibtas%20bounder_av2","p":80,"h":1,"n":"Gibtas Bounder"},{"c":1,"s":26,"id":1693,"u":"gibtas%20spawn%20swarm_av2","p":80,"h":1,"n":"Gibtas Spawn Swarm"},{"c":1,"s":26,"id":1694,"u":"gulzash_av2","p":35,"h":1,"n":"Gulzash"},{"c":1,"s":26,"id":1695,"u":"jafaki_av2","p":88,"h":1,"n":"Jafaki"},{"c":1,"s":26,"id":1696,"u":"kragala_av2","p":35,"h":1,"n":"Kragala"},{"c":1,"s":26,"id":1697,"u":"mulventok_av2","p":79,"h":1,"n":"Mulventok"},{"c":1,"s":26,"id":1698,"u":"murschen_av2","p":39,"h":1,"n":"Murschen"},{"c":1,"s":26,"id":1699,"u":"nox_av2","p":36,"h":1,"n":"Nox"},{"c":1,"s":26,"id":1700,"u":"ryta_av2","p":36,"h":1,"n":"Ryta"},{"c":1,"s":26,"id":1701,"u":"sacuishu_av2","p":57,"h":1,"n":"Sacuishu"},{"c":1,"s":26,"id":1702,"u":"seugathi%20reality%20warper_av2","p":83,"h":1,"n":"Seugathi Reality Warper"},{"c":1,"s":26,"id":1703,"u":"seugathi%20servant_av2","p":82,"h":1,"n":"Seugathi Servant"},{"c":1,"s":26,"id":1704,"u":"shanrigol%20behemoth_av2","p":85,"h":1,"n":"Shanrigol Behemoth"},{"c":1,"s":26,"id":1705,"u":"shanrigol%20heap_av2","p":84,"h":1,"n":"Shanrigol Heap"},{"c":1,"s":26,"id":1706,"u":"urevian_av2","p":90,"h":1,"n":"Urevian"},{"c":1,"s":26,"id":1707,"u":"vischari_av2","p":34,"h":1,"n":"Vischari"},{"c":1,"s":27,"id":1708,"u":"belcorra%20haruvex_av3","p":87,"h":1,"n":"Belcorra Haruvex"},{"c":1,"s":27,"id":1709,"u":"bhazrade%20and%20klathor_av3","p":33,"h":1,"n":"Bhazrade And Klathor"},{"c":1,"s":27,"id":1710,"u":"bright%20walker_av3","p":78,"h":1,"n":"Bright Walker"},{"c":1,"s":27,"id":1711,"u":"caligni%20defender_av3","p":35,"h":1,"n":"Caligni Defender"},{"c":1,"s":27,"id":1712,"u":"deepwater%20dhuthorex_av3","p":80,"h":1,"n":"Deepwater Dhuthorex"},{"c":1,"s":27,"id":1713,"u":"dragon's%20blood%20puffball_av3","p":79,"h":1,"n":"Dragon's Blood Puffball"},{"c":1,"s":27,"id":1714,"u":"dread%20dhuthorex_av3","p":80,"h":1,"n":"Dread Dhuthorex"},{"c":1,"s":27,"id":1715,"u":"dread%20wisp_av3","p":81,"h":1,"n":"Dread Wisp"},{"c":1,"s":27,"id":1716,"u":"drow%20hunter_av3","p":82,"h":1,"n":"Drow Hunter"},{"c":1,"s":27,"id":1717,"u":"drow%20shootist_av3","p":83,"h":1,"n":"Drow Shootist"},{"c":1,"s":27,"id":1718,"u":"drow%20warden_av3","p":82,"h":1,"n":"Drow Warden"},{"c":1,"s":27,"id":1719,"u":"dulac_av3","p":9,"h":1,"n":"Dulac"},{"c":1,"s":27,"id":1720,"u":"elder%20child%20of%20belcorra_av3","p":14,"h":1,"n":"Elder Child Of Belcorra"},{"c":1,"s":27,"id":1721,"u":"galudu_av3","p":36,"h":1,"n":"Galudu"},{"c":1,"s":27,"id":1722,"u":"khurfel_av3","p":89,"h":1,"n":"Khurfel"},{"c":1,"s":27,"id":1723,"u":"lady's%20whisper_av3","p":49,"h":1,"n":"Lady's Whisper"},{"c":1,"s":27,"id":1724,"u":"padli_av3","p":7,"h":1,"n":"Padli"},{"c":1,"s":27,"id":1725,"u":"quara%20orshendiel_av3","p":91,"h":1,"n":"Quara Orshendiel"},{"c":1,"s":27,"id":1726,"u":"reaper%20skull%20puffball_av3","p":79,"h":1,"n":"Reaper Skull Puffball"},{"c":1,"s":27,"id":1727,"u":"salaisa%20malthulas_av3","p":30,"h":1,"n":"Salaisa Malthulas"},{"c":1,"s":27,"id":1728,"u":"urdefhan%20blood%20mage_av3","p":85,"h":1,"n":"Urdefhan Blood Mage"},{"c":1,"s":27,"id":1729,"u":"urdefhan%20death%20scout_av3","p":84,"h":1,"n":"Urdefhan Death Scout"},{"c":1,"s":27,"id":1730,"u":"urdefhan%20lasher_av3","p":84,"h":1,"n":"Urdefhan Lasher"},{"c":1,"s":27,"id":1731,"u":"voidbracken%20chuul_av3","p":57,"h":1,"n":"Voidbracken Chuul"},{"c":1,"s":28,"id":1732,"u":"abberton%20ruffians_ec1","p":9,"h":1,"n":"Abberton Ruffians"},{"c":1,"s":28,"id":1733,"u":"abrikandilu_ec1","p":81,"h":1,"n":"Abrikandilu"},{"c":1,"s":28,"id":1734,"u":"blood%20wolf_ec1","p":43,"h":1,"n":"Blood Wolf"},{"c":1,"s":28,"id":1735,"u":"bone%20croupier_ec1","p":80,"h":1,"n":"Bone Croupier"},{"c":1,"s":28,"id":1736,"u":"cavnakash_ec1","p":89,"h":1,"n":"Cavnakash"},{"c":1,"s":28,"id":1737,"u":"corrosive%20lizard_ec1","p":45,"h":1,"n":"Corrosive Lizard"},{"c":1,"s":28,"id":1738,"u":"corrupted%20priest_ec1","p":39,"h":1,"n":"Corrupted Priest"},{"c":1,"s":28,"id":1739,"u":"corrupted%20retainer_ec1","p":35,"h":1,"n":"Corrupted Retainer"},{"c":1,"s":28,"id":1740,"u":"daring%20danika_ec1","p":28,"h":1,"n":"Daring Danika"},{"c":1,"s":28,"id":1741,"u":"flea%20swarm_ec1","p":83,"h":1,"n":"Flea Swarm"},{"c":1,"s":28,"id":1742,"u":"giant%20flea_ec1","p":83,"h":1,"n":"Giant Flea"},{"c":1,"s":28,"id":1743,"u":"jaleen%20and%20rhovo_ec1","p":9,"h":1,"n":"Jaleen And Rhovo"},{"c":1,"s":28,"id":1744,"u":"jellico%20bounce-bounce_ec1","p":28,"h":1,"n":"Jellico Bounce-bounce"},{"c":1,"s":28,"id":1745,"u":"juvenile%20boar_ec1","p":20,"h":1,"n":"Juvenile Boar"},{"c":1,"s":28,"id":1746,"u":"luminous%20ooze_ec1","p":85,"h":1,"n":"Luminous Ooze"},{"c":1,"s":28,"id":1747,"u":"mechanical%20carny_ec1","p":86,"h":1,"n":"Mechanical Carny"},{"c":1,"s":28,"id":1748,"u":"nemmia%20bramblecloak_ec1","p":91,"h":1,"n":"Nemmia Bramblecloak"},{"c":1,"s":28,"id":1749,"u":"oil%20living%20graffiti_ec1","p":84,"h":1,"n":"Oil Living Graffiti"},{"c":1,"s":28,"id":1750,"u":"pinacosaurus_ec1","p":50,"h":1,"n":"Pinacosaurus"},{"c":1,"s":28,"id":1751,"u":"pruana%20two-punch_ec1","p":22,"h":1,"n":"Pruana Two-punch"},{"c":1,"s":28,"id":1752,"u":"smiler_ec1","p":38,"h":1,"n":"Smiler"},{"c":1,"s":28,"id":1753,"u":"smoldering%20leopard_ec1","p":44,"h":1,"n":"Smoldering Leopard"},{"c":1,"s":28,"id":1754,"u":"vermlek_ec1","p":82,"h":1,"n":"Vermlek"},{"c":1,"s":28,"id":1755,"u":"viktor%20volkano_ec1","p":29,"h":1,"n":"Viktor Volkano"},{"c":1,"s":28,"id":1756,"u":"violet_ec1","p":22,"h":1,"n":"Violet"},{"c":1,"s":28,"id":1757,"u":"xulgath%20bilebearer_ec1","p":87,"h":1,"n":"Xulgath Bilebearer"},{"c":1,"s":29,"id":1758,"u":"aives%20the%20smoke%20dragon_ec2","p":16,"h":1,"n":"Aives The Smoke Dragon"},{"c":1,"s":29,"id":1759,"u":"andera%20paldreen_ec2","p":87,"h":1,"n":"Andera Paldreen"},{"c":1,"s":29,"id":1760,"u":"bogey_ec2","p":78,"h":1,"n":"Bogey"},{"c":1,"s":29,"id":1761,"u":"bogeyman_ec2","p":79,"h":1,"n":"Bogeyman"},{"c":1,"s":29,"id":1762,"u":"bugaboo_ec2","p":78,"h":1,"n":"Bugaboo"},{"c":1,"s":29,"id":1763,"u":"celestial%20menagerie%20bruiser_ec2","p":47,"h":1,"n":"Celestial Menagerie Bruiser"},{"c":1,"s":29,"id":1764,"u":"chimpanzee%20visitant_ec2","p":83,"h":1,"n":"Chimpanzee Visitant"},{"c":1,"s":29,"id":1765,"u":"darricus%20stallit_ec2","p":57,"h":1,"n":"Darricus Stallit"},{"c":1,"s":29,"id":1766,"u":"delamar%20gianvin_ec2","p":16,"h":1,"n":"Delamar Gianvin"},{"c":1,"s":29,"id":1767,"u":"evora%20yarket_ec2","p":52,"h":1,"n":"Evora Yarket"},{"c":1,"s":29,"id":1768,"u":"gluttondark%20babau_ec2","p":23,"h":1,"n":"Gluttondark Babau"},{"c":1,"s":29,"id":1769,"u":"iridescent%20elephant_ec2","p":80,"h":1,"n":"Iridescent Elephant"},{"c":1,"s":29,"id":1770,"u":"lion%20visitant_ec2","p":83,"h":1,"n":"Lion Visitant"},{"c":1,"s":29,"id":1771,"u":"mistress%20dusklight_ec2","p":89,"h":1,"n":"Mistress Dusklight"},{"c":1,"s":29,"id":1772,"u":"muse%20phantom_ec2","p":81,"h":1,"n":"Muse Phantom"},{"c":1,"s":29,"id":1773,"u":"ruanna%20nyamma_ec2","p":17,"h":1,"n":"Ruanna Nyamma"},{"c":1,"s":29,"id":1774,"u":"ulthadar_ec2","p":91,"h":1,"n":"Ulthadar"},{"c":1,"s":29,"id":1775,"u":"xulgath%20spinesnapper_ec2","p":84,"h":1,"n":"Xulgath Spinesnapper"},{"c":1,"s":29,"id":1776,"u":"yaashka_ec2","p":26,"h":1,"n":"Yaashka"},{"c":1,"s":29,"id":1777,"u":"zuipnyrn_ec2","p":85,"h":1,"n":"Zuipnyrn"},{"c":1,"s":29,"id":1778,"u":"zunkri_ec2","p":27,"h":1,"n":"Zunkri"},{"c":1,"s":8,"id":1779,"u":"bitter%20truth%20bandit_ec3","p":17,"h":1,"n":"Bitter Truth Bandit"},{"c":1,"s":8,"id":1780,"u":"bugul%20noz_ec3","p":76,"h":1,"n":"Bugul Noz"},{"c":1,"s":8,"id":1781,"u":"cat%20sith_ec3","p":77,"h":1,"n":"Cat Sith"},{"c":1,"s":8,"id":1782,"u":"counteflora_ec3","p":78,"h":1,"n":"Counteflora"},{"c":1,"s":8,"id":1783,"u":"cu%20sith_ec3","p":79,"h":1,"n":"Cu Sith"},{"c":1,"s":8,"id":1784,"u":"ginjana%20mindkeeper_ec3","p":87,"h":1,"n":"Ginjana Mindkeeper"},{"c":1,"s":8,"id":1785,"u":"headless%20xulgath_ec3","p":50,"h":1,"n":"Headless Xulgath"},{"c":1,"s":8,"id":1786,"u":"herecite%20of%20zevgavizeb_ec3","p":80,"h":1,"n":"Herecite Of Zevgavizeb"},{"c":1,"s":8,"id":1787,"u":"hooklimb%20xulgath_ec3","p":55,"h":1,"n":"Hooklimb Xulgath"},{"c":1,"s":8,"id":1788,"u":"pin%20tingwheely_ec3","p":20,"h":1,"n":"Pin Tingwheely"},{"c":1,"s":8,"id":1789,"u":"resin-seep%20xulgath_ec3","p":51,"h":1,"n":"Resin-seep Xulgath"},{"c":1,"s":8,"id":1790,"u":"shoony%20hierarch_ec3","p":83,"h":1,"n":"Shoony Hierarch"},{"c":1,"s":8,"id":1791,"u":"shoony%20militia%20member_ec3","p":83,"h":1,"n":"Shoony Militia Member"},{"c":1,"s":8,"id":1792,"u":"shoony%20tiller_ec3","p":82,"h":1,"n":"Shoony Tiller"},{"c":1,"s":8,"id":1793,"u":"skarja_ec3","p":88,"h":1,"n":"Skarja"},{"c":1,"s":8,"id":1794,"u":"swardlands%20delinquent_ec3","p":15,"h":1,"n":"Swardlands Delinquent"},{"c":1,"s":8,"id":1795,"u":"tanessa%20fleer_ec3","p":16,"h":1,"n":"Tanessa Fleer"},{"c":1,"s":8,"id":1796,"u":"thessekka_ec3","p":91,"h":1,"n":"Thessekka"},{"c":1,"s":8,"id":1797,"u":"xulgath%20bomber_ec3","p":28,"h":1,"n":"Xulgath Bomber"},{"c":1,"s":8,"id":1798,"u":"xulgath%20skirmisher_ec3","p":27,"h":1,"n":"Xulgath Skirmisher"},{"c":1,"s":8,"id":1799,"u":"xulgath%20stoneliege_ec3","p":84,"h":1,"n":"Xulgath Stoneliege"},{"c":1,"s":8,"id":1800,"u":"yaganty_ec3","p":85,"h":1,"n":"Yaganty"},{"c":1,"s":30,"id":1801,"u":"arskuva%20the%20gnasher_ec4","p":55,"h":1,"n":"Arskuva The Gnasher"},{"c":1,"s":30,"id":1802,"u":"aukashungi%20swarm_ec4","p":50,"h":1,"n":"Aukashungi Swarm"},{"c":1,"s":30,"id":1803,"u":"brughadatch_ec4","p":78,"h":1,"n":"Brughadatch"},{"c":1,"s":30,"id":1804,"u":"doblagub_ec4","p":79,"h":1,"n":"Doblagub"},{"c":1,"s":30,"id":1805,"u":"faceless%20butcher_ec4","p":80,"h":1,"n":"Faceless Butcher"},{"c":1,"s":30,"id":1806,"u":"gahlepod_ec4","p":78,"h":1,"n":"Gahlepod"},{"c":1,"s":30,"id":1807,"u":"giant%20aukashungi_ec4","p":77,"h":1,"n":"Giant Aukashungi"},{"c":1,"s":30,"id":1808,"u":"harrow%20doll_ec4","p":81,"h":1,"n":"Harrow Doll"},{"c":1,"s":30,"id":1809,"u":"helg%20eats-the-eaters_ec4","p":87,"h":1,"n":"Helg Eats-the-eaters"},{"c":1,"s":30,"id":1810,"u":"ledorick%20banyan_ec4","p":89,"h":1,"n":"Ledorick Banyan"},{"c":1,"s":30,"id":1811,"u":"lyrt%20cozurn_ec4","p":40,"h":1,"n":"Lyrt Cozurn"},{"c":1,"s":30,"id":1812,"u":"qurashith_ec4","p":82,"h":1,"n":"Qurashith"},{"c":1,"s":30,"id":1813,"u":"sodden%20sentinels_ec4","p":32,"h":1,"n":"Sodden Sentinels"},{"c":1,"s":30,"id":1814,"u":"starved%20staff_ec4","p":16,"h":1,"n":"Starved Staff"},{"c":1,"s":30,"id":1815,"u":"stirvyn%20banyan_ec4","p":39,"h":1,"n":"Stirvyn Banyan"},{"c":1,"s":30,"id":1816,"u":"tallow%20ooze_ec4","p":83,"h":1,"n":"Tallow Ooze"},{"c":1,"s":30,"id":1817,"u":"tashlock%20banyan_ec4","p":39,"h":1,"n":"Tashlock Banyan"},{"c":1,"s":30,"id":1818,"u":"the%20vanish%20man_ec4","p":47,"h":1,"n":"The Vanish Man"},{"c":1,"s":30,"id":1819,"u":"war%20sauropelta_ec4","p":46,"h":1,"n":"War Sauropelta"},{"c":1,"s":30,"id":1820,"u":"wight%20cultist_ec4","p":34,"h":1,"n":"Wight Cultist"},{"c":1,"s":30,"id":1821,"u":"xilvirek_ec4","p":84,"h":1,"n":"Xilvirek"},{"c":1,"s":30,"id":1822,"u":"xulgath%20gutrager_ec4","p":85,"h":1,"n":"Xulgath Gutrager"},{"c":1,"s":30,"id":1823,"u":"xulgath%20hardscale_ec4","p":53,"h":1,"n":"Xulgath Hardscale"},{"c":1,"s":30,"id":1824,"u":"xulgath%20herd-tender_ec4","p":10,"h":1,"n":"Xulgath Herd-tender"},{"c":1,"s":30,"id":1825,"u":"xulgath%20roughrider_ec4","p":23,"h":1,"n":"Xulgath Roughrider"},{"c":1,"s":30,"id":1826,"u":"zashathal%20head-taker_ec4","p":90,"h":1,"n":"Zashathal Head-taker"},{"c":1,"s":31,"id":1827,"u":"ammut_ec5","p":77,"h":1,"n":"Ammut"},{"c":1,"s":31,"id":1828,"u":"ararda_ec5","p":79,"h":1,"n":"Ararda"},{"c":1,"s":31,"id":1829,"u":"death%20drider_ec5","p":35,"h":1,"n":"Death Drider"},{"c":1,"s":31,"id":1830,"u":"dyzallin%20shraen_ec5","p":86,"h":1,"n":"Dyzallin Shraen"},{"c":1,"s":31,"id":1831,"u":"hollow%20hush_ec5","p":39,"h":1,"n":"Hollow Hush"},{"c":1,"s":31,"id":1832,"u":"iffdahsil_ec5","p":81,"h":1,"n":"Iffdahsil"},{"c":1,"s":31,"id":1833,"u":"kharostan_ec5","p":88,"h":1,"n":"Kharostan"},{"c":1,"s":31,"id":1834,"u":"muurfeli_ec5","p":78,"h":1,"n":"Muurfeli"},{"c":1,"s":31,"id":1835,"u":"obsidian%20golem_ec5","p":80,"h":1,"n":"Obsidian Golem"},{"c":1,"s":31,"id":1836,"u":"qormintur_ec5","p":91,"h":1,"n":"Qormintur"},{"c":1,"s":31,"id":1837,"u":"raptor%20guard%20wight_ec5","p":32,"h":1,"n":"Raptor Guard Wight"},{"c":1,"s":31,"id":1838,"u":"shraen%20graveknight_ec5","p":52,"h":1,"n":"Shraen Graveknight"},{"c":1,"s":31,"id":1839,"u":"urdefhan%20dominator_ec5","p":83,"h":1,"n":"Urdefhan Dominator"},{"c":1,"s":31,"id":1840,"u":"urdefhan%20high%20tormentor_ec5","p":82,"h":1,"n":"Urdefhan High Tormentor"},{"c":1,"s":31,"id":1841,"u":"urdefhan%20hunter_ec5","p":82,"h":1,"n":"Urdefhan Hunter"},{"c":1,"s":31,"id":1842,"u":"vitalia_ec5","p":84,"h":1,"n":"Vitalia"},{"c":1,"s":31,"id":1843,"u":"xulgath%20deepmouth_ec5","p":85,"h":1,"n":"Xulgath Deepmouth"},{"c":1,"s":31,"id":1844,"u":"zinogyvaz_ec5","p":35,"h":1,"n":"Zinogyvaz"},{"c":1,"s":32,"id":1845,"u":"barking%20stag_ec6","p":40,"h":1,"n":"Barking Stag"},{"c":1,"s":32,"id":1846,"u":"convergent%20giant%20eagle_ec6","p":12,"h":1,"n":"Convergent Giant Eagle"},{"c":1,"s":32,"id":1847,"u":"convergent%20kendley%20nathrael_ec6","p":87,"h":1,"n":"Convergent Kendley Nathrael"},{"c":1,"s":32,"id":1848,"u":"convergent%20soldier_ec6","p":14,"h":1,"n":"Convergent Soldier"},{"c":1,"s":32,"id":1849,"u":"elysian%20sheep_ec6","p":32,"h":1,"n":"Elysian Sheep"},{"c":1,"s":32,"id":1850,"u":"elysian%20titan_ec6","p":82,"h":1,"n":"Elysian Titan"},{"c":1,"s":32,"id":1851,"u":"kimilekki_ec6","p":17,"h":1,"n":"Kimilekki"},{"c":1,"s":32,"id":1852,"u":"kirosthrek_ec6","p":89,"h":1,"n":"Kirosthrek"},{"c":1,"s":32,"id":1853,"u":"sarvel%20ever-hunger_ec6","p":90,"h":1,"n":"Sarvel Ever-hunger"},{"c":1,"s":32,"id":1854,"u":"saurian%20warmonger_ec6","p":80,"h":1,"n":"Saurian Warmonger"},{"c":1,"s":32,"id":1855,"u":"saurian%20worldwatcher_ec6","p":81,"h":1,"n":"Saurian Worldwatcher"},{"c":1,"s":32,"id":1856,"u":"thanatotic%20titan_ec6","p":83,"h":1,"n":"Thanatotic Titan"},{"c":1,"s":32,"id":1857,"u":"vavakia_ec6","p":79,"h":1,"n":"Vavakia"},{"c":1,"s":32,"id":1858,"u":"viskithrel_ec6","p":84,"h":1,"n":"Viskithrel"},{"c":1,"s":32,"id":1859,"u":"xulgath%20thoughtmaw_ec6","p":85,"h":1,"n":"Xulgath Thoughtmaw"},{"c":1,"s":33,"id":1860,"u":"bee%20swarm_fop","p":11,"h":1,"n":"Bee Swarm"},{"c":1,"s":33,"id":1861,"u":"blood%20ooze_fop","p":63,"h":1,"n":"Blood Ooze"},{"c":1,"s":33,"id":1862,"u":"bloodlash%20bush_fop","p":62,"h":1,"n":"Bloodlash Bush"},{"c":1,"s":33,"id":1863,"u":"caustic%20wolf_fop","p":5,"h":1,"n":"Caustic Wolf"},{"c":1,"s":33,"id":1864,"u":"drunken%20farmer_fop","p":8,"h":1,"n":"Drunken Farmer"},{"c":1,"s":33,"id":1865,"u":"fiery%20leopard_fop","p":31,"h":1,"n":"Fiery Leopard"},{"c":1,"s":33,"id":1866,"u":"giant%20lightning%20serpent_fop","p":20,"h":1,"n":"Giant Lightning Serpent"},{"c":1,"s":33,"id":1867,"u":"graytusk_fop","p":40,"h":1,"n":"Graytusk"},{"c":1,"s":33,"id":1868,"u":"hallod_fop","p":21,"h":1,"n":"Hallod"},{"c":1,"s":33,"id":1869,"u":"icy%20rats_fop","p":31,"h":1,"n":"Icy Rats"},{"c":1,"s":33,"id":1870,"u":"lord%20nar_fop","p":38,"h":1,"n":"Lord Nar"},{"c":1,"s":33,"id":1871,"u":"mangy%20wolves_fop","p":5,"h":1,"n":"Mangy Wolves"},{"c":1,"s":33,"id":1872,"u":"mutant%20wolves_fop","p":27,"h":1,"n":"Mutant Wolves"},{"c":1,"s":33,"id":1873,"u":"stone%20horse_fop","p":30,"h":1,"n":"Stone Horse"},{"c":1,"s":33,"id":1874,"u":"the%20amalgam_fop","p":44,"h":1,"n":"The Amalgam"},{"c":1,"s":33,"id":1875,"u":"the%20behemoth_fop","p":47,"h":1,"n":"The Behemoth"},{"c":1,"s":33,"id":1876,"u":"the%20sculptor_fop","p":34,"h":1,"n":"The Sculptor"},{"c":1,"s":33,"id":1877,"u":"vilree_fop","p":47,"h":1,"n":"Vilree"},{"c":1,"s":33,"id":1878,"u":"vine%20lasher_fop","p":62,"h":1,"n":"Vine Lasher"},{"c":1,"s":34,"id":1879,"u":"agile%20warrior_frp1","p":23,"h":1,"n":"Agile Warrior"},{"c":1,"s":34,"id":1880,"u":"anugobu%20apprentice_frp1","p":80,"h":1,"n":"Anugobu Apprentice"},{"c":1,"s":34,"id":1881,"u":"anugobu%20wondercrafter_frp1","p":81,"h":1,"n":"Anugobu Wondercrafter"},{"c":1,"s":34,"id":1882,"u":"archery%20specialist_frp1","p":24,"h":1,"n":"Archery Specialist"},{"c":1,"s":34,"id":1883,"u":"berberoka_frp1","p":82,"h":1,"n":"Berberoka"},{"c":1,"s":34,"id":1884,"u":"blue%20viper_frp1","p":63,"h":1,"n":"Blue Viper"},{"c":1,"s":34,"id":1885,"u":"butterfly%20blade%20warrior_frp1","p":60,"h":1,"n":"Butterfly Blade Warrior"},{"c":1,"s":34,"id":1886,"u":"caustic%20monitor_frp1","p":86,"h":1,"n":"Caustic Monitor"},{"c":1,"s":34,"id":1887,"u":"dread%20roc_frp1","p":30,"h":1,"n":"Dread Roc"},{"c":1,"s":34,"id":1888,"u":"dromornis_frp1","p":83,"h":1,"n":"Dromornis"},{"c":1,"s":34,"id":1889,"u":"elder%20cauthooj_frp1","p":49,"h":1,"n":"Elder Cauthooj"},{"c":1,"s":34,"id":1890,"u":"ghost%20monk_frp1","p":15,"h":1,"n":"Ghost Monk"},{"c":1,"s":34,"id":1891,"u":"gomwai_frp1","p":48,"h":1,"n":"Gomwai"},{"c":1,"s":34,"id":1892,"u":"grave%20spinosaurus_frp1","p":32,"h":1,"n":"Grave Spinosaurus"},{"c":1,"s":34,"id":1893,"u":"hana's%20hundreds_frp1","p":51,"h":1,"n":"Hana's Hundreds"},{"c":1,"s":34,"id":1894,"u":"hantu%20belian_frp1","p":85,"h":1,"n":"Hantu Belian"},{"c":1,"s":34,"id":1895,"u":"hantu%20denai_frp1","p":84,"h":1,"n":"Hantu Denai"},{"c":1,"s":34,"id":1896,"u":"jaiban_frp1","p":41,"h":1,"n":"Jaiban"},{"c":1,"s":34,"id":1897,"u":"kannitri_frp1","p":19,"h":1,"n":"Kannitri"},{"c":1,"s":34,"id":1898,"u":"ki%20adept_frp1","p":24,"h":1,"n":"Ki Adept"},{"c":1,"s":34,"id":1899,"u":"koto%20zekora_frp1","p":55,"h":1,"n":"Koto Zekora"},{"c":1,"s":34,"id":1900,"u":"mage%20of%20many%20styles_frp1","p":25,"h":1,"n":"Mage Of Many Styles"},{"c":1,"s":34,"id":1901,"u":"mammoth%20turtle_frp1","p":31,"h":1,"n":"Mammoth Turtle"},{"c":1,"s":34,"id":1902,"u":"manananggal_frp1","p":87,"h":1,"n":"Manananggal"},{"c":1,"s":34,"id":1903,"u":"muckish%20creep_frp1","p":88,"h":1,"n":"Muckish Creep"},{"c":1,"s":34,"id":1904,"u":"nai%20yan%20fei_frp1","p":91,"h":1,"n":"Nai Yan Fei"},{"c":1,"s":34,"id":1905,"u":"old%20man%20statue_frp1","p":21,"h":1,"n":"Old Man Statue"},{"c":1,"s":34,"id":1906,"u":"planar%20terra-cotta%20soldier_frp1","p":52,"h":1,"n":"Planar Terra-cotta Soldier"},{"c":1,"s":34,"id":1907,"u":"planar%20terra-cotta%20squadron_frp1","p":53,"h":1,"n":"Planar Terra-cotta Squadron"},{"c":1,"s":34,"id":1908,"u":"ran-to_frp1","p":64,"h":1,"n":"Ran-to"},{"c":1,"s":34,"id":1909,"u":"shino%20hakusa_frp1","p":63,"h":1,"n":"Shino Hakusa"},{"c":1,"s":34,"id":1910,"u":"sigbin_frp1","p":89,"h":1,"n":"Sigbin"},{"c":1,"s":34,"id":1911,"u":"syu%20tak-nwa_frp1","p":63,"h":1,"n":"Syu Tak-nwa"},{"c":1,"s":34,"id":1912,"u":"takatorra_frp1","p":11,"h":1,"n":"Takatorra"},{"c":1,"s":34,"id":1913,"u":"tamikan_frp1","p":39,"h":1,"n":"Tamikan"},{"c":1,"s":34,"id":1914,"u":"tino_frp1","p":10,"h":1,"n":"Tino"},{"c":1,"s":34,"id":1915,"u":"tyrannosaurus%20imperator_frp1","p":31,"h":1,"n":"Tyrannosaurus Imperator"},{"c":1,"s":34,"id":1916,"u":"watchtower%20poltergeist_frp1","p":35,"h":1,"n":"Watchtower Poltergeist"},{"c":1,"s":34,"id":1917,"u":"watchtower%20shadow_frp1","p":36,"h":1,"n":"Watchtower Shadow"},{"c":1,"s":34,"id":1918,"u":"watchtower%20wraith_frp1","p":36,"h":1,"n":"Watchtower Wraith"},{"c":1,"s":34,"id":1919,"u":"weapon%20master_frp1","p":23,"h":1,"n":"Weapon Master"},{"c":1,"s":34,"id":1920,"u":"yabin%20the%20just_frp1","p":11,"h":1,"n":"Yabin The Just"},{"c":1,"s":34,"id":1921,"u":"yook_frp1","p":11,"h":1,"n":"Yook"},{"c":1,"s":35,"id":1922,"u":"akila%20stormheel_frp2","p":38,"h":1,"n":"Akila Stormheel"},{"c":1,"s":35,"id":1923,"u":"amihan_frp2","p":40,"h":1,"n":"Amihan"},{"c":1,"s":35,"id":1924,"u":"angoyang_frp2","p":78,"h":1,"n":"Angoyang"},{"c":1,"s":35,"id":1925,"u":"arm%20of%20balance_frp2","p":33,"h":1,"n":"Arm Of Balance"},{"c":1,"s":35,"id":1926,"u":"artus%20rodrivan_frp2","p":35,"h":1,"n":"Artus Rodrivan"},{"c":1,"s":35,"id":1927,"u":"blue%20viper_frp2","p":36,"h":1,"n":"Blue Viper"},{"c":1,"s":35,"id":1928,"u":"drake%20courser_frp2","p":13,"h":1,"n":"Drake Courser"},{"c":1,"s":35,"id":1929,"u":"grandfather%20mantis_frp2","p":35,"h":1,"n":"Grandfather Mantis"},{"c":1,"s":35,"id":1930,"u":"halspin%20the%20stung_frp2","p":41,"h":1,"n":"Halspin The Stung"},{"c":1,"s":35,"id":1931,"u":"huldrin%20skolsdottir_frp2","p":42,"h":1,"n":"Huldrin Skolsdottir"},{"c":1,"s":35,"id":1932,"u":"hummingbird_frp2","p":39,"h":1,"n":"Hummingbird"},{"c":1,"s":35,"id":1933,"u":"ji-yook_frp2","p":27,"h":1,"n":"Ji-yook"},{"c":1,"s":35,"id":1934,"u":"joon-seo_frp2","p":41,"h":1,"n":"Joon-seo"},{"c":1,"s":35,"id":1935,"u":"juspix%20rammel_frp2","p":42,"h":1,"n":"Juspix Rammel"},{"c":1,"s":35,"id":1936,"u":"kas%20xi%20rai_frp2","p":23,"h":1,"n":"Kas Xi Rai"},{"c":1,"s":35,"id":1937,"u":"kun_frp2","p":79,"h":1,"n":"Kun"},{"c":1,"s":35,"id":1938,"u":"lantondo_frp2","p":35,"h":1,"n":"Lantondo"},{"c":1,"s":35,"id":1939,"u":"maalya_frp2","p":40,"h":1,"n":"Maalya"},{"c":1,"s":35,"id":1940,"u":"mafika%20ayuwari_frp2","p":38,"h":1,"n":"Mafika Ayuwari"},{"c":1,"s":35,"id":1941,"u":"master%20xun_frp2","p":23,"h":1,"n":"Master Xun"},{"c":1,"s":35,"id":1942,"u":"melodic%20squall_frp2","p":57,"h":1,"n":"Melodic Squall"},{"c":1,"s":35,"id":1943,"u":"minister%20of%20tumult_frp2","p":87,"h":1,"n":"Minister Of Tumult"},{"c":1,"s":35,"id":1944,"u":"peng_frp2","p":82,"h":1,"n":"Peng"},{"c":1,"s":35,"id":1945,"u":"phuthi_frp2","p":39,"h":1,"n":"Phuthi"},{"c":1,"s":35,"id":1946,"u":"portal%20eater_frp2","p":56,"h":1,"n":"Portal Eater"},{"c":1,"s":35,"id":1947,"u":"provincial%20jiang-shi_frp2","p":86,"h":1,"n":"Provincial Jiang-shi"},{"c":1,"s":35,"id":1948,"u":"ran-to_frp2","p":37,"h":1,"n":"Ran-to"},{"c":1,"s":35,"id":1949,"u":"razu_frp2","p":91,"h":1,"n":"Razu"},{"c":1,"s":35,"id":1950,"u":"rivka_frp2","p":83,"h":1,"n":"Rivka"},{"c":1,"s":35,"id":1951,"u":"shadow%20yai_frp2","p":80,"h":1,"n":"Shadow Yai"},{"c":1,"s":35,"id":1952,"u":"shino%20hakusa_frp2","p":36,"h":1,"n":"Shino Hakusa"},{"c":1,"s":35,"id":1953,"u":"sixth%20pillar%20student_frp2","p":14,"h":1,"n":"Sixth Pillar Student"},{"c":1,"s":35,"id":1954,"u":"surjit%20hamelan_frp2","p":39,"h":1,"n":"Surjit Hamelan"},{"c":1,"s":35,"id":1955,"u":"syu%20tak-nwa_frp2","p":35,"h":1,"n":"Syu Tak-nwa"},{"c":1,"s":35,"id":1956,"u":"taiga%20yai_frp2","p":81,"h":1,"n":"Taiga Yai"},{"c":1,"s":35,"id":1957,"u":"takatorra_frp2","p":27,"h":1,"n":"Takatorra"},{"c":1,"s":35,"id":1958,"u":"tino%20tung_frp2","p":26,"h":1,"n":"Tino Tung"},{"c":1,"s":35,"id":1959,"u":"troff%20frostknuckles_frp2","p":43,"h":1,"n":"Troff Frostknuckles"},{"c":1,"s":35,"id":1960,"u":"umbasi_frp2","p":40,"h":1,"n":"Umbasi"},{"c":1,"s":35,"id":1961,"u":"urnak%20lostwind_frp2","p":41,"h":1,"n":"Urnak Lostwind"},{"c":1,"s":35,"id":1962,"u":"yabin%20the%20just_frp2","p":27,"h":1,"n":"Yabin The Just"},{"c":1,"s":35,"id":1963,"u":"yarrika%20mulandez_frp2","p":34,"h":1,"n":"Yarrika Mulandez"},{"c":1,"s":36,"id":1964,"u":"abbot%20tsujon_frp3","p":15,"h":1,"n":"Abbot Tsujon"},{"c":1,"s":36,"id":1965,"u":"blue%20viper_frp3","p":54,"h":1,"n":"Blue Viper"},{"c":1,"s":36,"id":1966,"u":"bul-gae_frp3","p":79,"h":1,"n":"Bul-gae"},{"c":1,"s":36,"id":1967,"u":"canopy%20elder_frp3","p":78,"h":1,"n":"Canopy Elder"},{"c":1,"s":36,"id":1968,"u":"cloudsplitter_frp3","p":19,"h":1,"n":"Cloudsplitter"},{"c":1,"s":36,"id":1969,"u":"dancing%20night%20parade_frp3","p":41,"h":1,"n":"Dancing Night Parade"},{"c":1,"s":36,"id":1970,"u":"desecrated%20guardian_frp3","p":80,"h":1,"n":"Desecrated Guardian"},{"c":1,"s":36,"id":1971,"u":"flying%20mountain%20kaminari_frp3","p":23,"h":1,"n":"Flying Mountain Kaminari"},{"c":1,"s":36,"id":1972,"u":"gumiho_frp3","p":81,"h":1,"n":"Gumiho"},{"c":1,"s":36,"id":1973,"u":"inmyeonjo_frp3","p":82,"h":1,"n":"Inmyeonjo"},{"c":1,"s":36,"id":1974,"u":"jin-hae_frp3","p":18,"h":1,"n":"Jin-hae"},{"c":1,"s":36,"id":1975,"u":"laruhao_frp3","p":41,"h":1,"n":"Laruhao"},{"c":1,"s":36,"id":1976,"u":"lophiithu_frp3","p":83,"h":1,"n":"Lophiithu"},{"c":1,"s":36,"id":1977,"u":"orochi_frp3","p":84,"h":1,"n":"Orochi"},{"c":1,"s":36,"id":1978,"u":"rai%20sho%20disciple_frp3","p":14,"h":1,"n":"Rai Sho Disciple"},{"c":1,"s":36,"id":1979,"u":"rai%20sho%20postulant_frp3","p":13,"h":1,"n":"Rai Sho Postulant"},{"c":1,"s":36,"id":1980,"u":"ran-to_frp3","p":54,"h":1,"n":"Ran-to"},{"c":1,"s":36,"id":1981,"u":"sanzuwu_frp3","p":85,"h":1,"n":"Sanzuwu"},{"c":1,"s":36,"id":1982,"u":"shino%20hakusa_frp3","p":53,"h":1,"n":"Shino Hakusa"},{"c":1,"s":36,"id":1983,"u":"spinel%20leviathan%20syndara_frp3","p":58,"h":1,"n":"Spinel Leviathan Syndara"},{"c":1,"s":36,"id":1984,"u":"spirit%20turtle_frp3","p":86,"h":1,"n":"Spirit Turtle"},{"c":1,"s":36,"id":1985,"u":"sthira_frp3","p":87,"h":1,"n":"Sthira"},{"c":1,"s":36,"id":1986,"u":"syndara%20the%20sculptor_frp3","p":88,"h":1,"n":"Syndara The Sculptor"},{"c":1,"s":36,"id":1987,"u":"syu%20tak-nwa_frp3","p":52,"h":1,"n":"Syu Tak-nwa"},{"c":1,"s":36,"id":1988,"u":"yoh%20souran_frp3","p":91,"h":1,"n":"Yoh Souran"},{"c":1,"s":0,"id":1989,"u":"aigamuxa_lome","p":293,"h":1,"n":"Aigamuxa"},{"c":1,"s":0,"id":1990,"u":"anadi%20elder_lome","p":292,"h":1,"n":"Anadi Elder"},{"c":1,"s":0,"id":1991,"u":"anadi%20hunter_lome","p":291,"h":1,"n":"Anadi Hunter"},{"c":1,"s":0,"id":1992,"u":"anadi%20sage_lome","p":292,"h":1,"n":"Anadi Sage"},{"c":1,"s":0,"id":1993,"u":"asanbosam_lome","p":294,"h":1,"n":"Asanbosam"},{"c":1,"s":0,"id":1994,"u":"biloko%20veteran_lome","p":296,"h":1,"n":"Biloko Veteran"},{"c":1,"s":0,"id":1995,"u":"biloko%20warrior_lome","p":296,"h":1,"n":"Biloko Warrior"},{"c":1,"s":0,"id":1996,"u":"charau-ka%20acolyte%20of%20angazhan_lome","p":298,"h":1,"n":"Charau-ka Acolyte Of Angazhan"},{"c":1,"s":0,"id":1997,"u":"charau-ka%20butcher_lome","p":298,"h":1,"n":"Charau-ka Butcher"},{"c":1,"s":0,"id":1998,"u":"charau-ka%20warrior_lome","p":229977,"h":1,"n":"Charau-ka Warrior"},{"c":1,"s":0,"id":1999,"u":"eloko_lome","p":296,"h":1,"n":"Eloko"},{"c":1,"s":0,"id":2000,"u":"grootslang_lome","p":298,"h":1,"n":"Grootslang"},{"c":1,"s":0,"id":2001,"u":"k'nonna_lome","p":300,"h":1,"n":"K'nonna"},{"c":1,"s":0,"id":2002,"u":"kaava%20stalker_lome","p":301,"h":1,"n":"Kaava Stalker"},{"c":1,"s":0,"id":2003,"u":"karina_lome","p":302,"h":1,"n":"Karina"},{"c":1,"s":0,"id":2004,"u":"maliadi_lome","p":302,"h":1,"n":"Maliadi"},{"c":1,"s":0,"id":2005,"u":"mamlambo_lome","p":304,"h":1,"n":"Mamlambo"},{"c":1,"s":0,"id":2006,"u":"pygmy%20kaava_lome","p":301,"h":1,"n":"Pygmy Kaava"},{"c":1,"s":0,"id":2007,"u":"rompo_lome","p":305,"h":1,"n":"Rompo"},{"c":1,"s":0,"id":2008,"u":"si%c3%a9%20goluo_lome","p":306,"h":1,"n":"Sié Goluo"},{"c":1,"s":0,"id":2009,"u":"solar%20ibis_lome","p":307,"h":1,"n":"Solar Ibis"},{"c":1,"s":0,"id":2010,"u":"zinba_lome","p":308,"h":1,"n":"Zinba"},{"c":1,"s":37,"id":2011,"u":"princess%20sunset_ltiba","p":5,"h":1,"n":"Princess Sunset"},{"c":1,"s":38,"id":2012,"u":"ahvothian_sli","p":62,"h":1,"n":"Ahvothian"},{"c":1,"s":38,"id":2013,"u":"angazhani%20cultist_sli","p":30,"h":1,"n":"Angazhani Cultist"},{"c":1,"s":38,"id":2014,"u":"aspis%20guard_sli","p":44,"h":1,"n":"Aspis Guard"},{"c":1,"s":38,"id":2015,"u":"aspis%20technician_sli","p":45,"h":1,"n":"Aspis Technician"},{"c":1,"s":38,"id":2016,"u":"croakchief%20globblit%20skink-eater_sli","p":22,"h":1,"n":"Croakchief Globblit Skink-eater"},{"c":1,"s":38,"id":2017,"u":"cursebreaker_sli","p":38,"h":1,"n":"Cursebreaker"},{"c":1,"s":38,"id":2018,"u":"fuming%20sludge_sli","p":63,"h":1,"n":"Fuming Sludge"},{"c":1,"s":38,"id":2019,"u":"nyamat%20mshwe_sli","p":33,"h":1,"n":"Nyamat Mshwe"},{"c":1,"s":38,"id":2020,"u":"paga%20nikohian_sli","p":51,"h":1,"n":"Paga Nikohian"},{"c":1,"s":39,"id":2021,"u":"anadi%20fateweaver_sot1","p":79,"h":1,"n":"Anadi Fateweaver"},{"c":1,"s":39,"id":2022,"u":"anadi%20lurker_sot1","p":78,"h":1,"n":"Anadi Lurker"},{"c":1,"s":39,"id":2023,"u":"anadi%20seeker_sot1","p":78,"h":1,"n":"Anadi Seeker"},{"c":1,"s":39,"id":2024,"u":"binji_sot1","p":53,"h":1,"n":"Binji"},{"c":1,"s":39,"id":2025,"u":"bramble%20champion%20construct_sot1","p":41,"h":1,"n":"Bramble Champion Construct"},{"c":1,"s":39,"id":2026,"u":"giant%20mining%20bee_sot1","p":80,"h":1,"n":"Giant Mining Bee"},{"c":1,"s":39,"id":2027,"u":"giant%20silverfish_sot1","p":84,"h":1,"n":"Giant Silverfish"},{"c":1,"s":39,"id":2028,"u":"giant%20tsetse%20fly_sot1","p":81,"h":1,"n":"Giant Tsetse Fly"},{"c":1,"s":39,"id":2029,"u":"giant%20worker%20bee_sot1","p":80,"h":1,"n":"Giant Worker Bee"},{"c":1,"s":39,"id":2030,"u":"gnagrif_sot1","p":83,"h":1,"n":"Gnagrif"},{"c":1,"s":39,"id":2031,"u":"kurshkin_sot1","p":87,"h":1,"n":"Kurshkin"},{"c":1,"s":39,"id":2032,"u":"scrit_sot1","p":82,"h":1,"n":"Scrit"},{"c":1,"s":39,"id":2033,"u":"shieldbearer%20construct_sot1","p":40,"h":1,"n":"Shieldbearer Construct"},{"c":1,"s":39,"id":2034,"u":"sicklehand%20construct_sot1","p":41,"h":1,"n":"Sicklehand Construct"},{"c":1,"s":39,"id":2035,"u":"silverfish%20swarm_sot1","p":84,"h":1,"n":"Silverfish Swarm"},{"c":1,"s":39,"id":2036,"u":"spellskein_sot1","p":85,"h":1,"n":"Spellskein"},{"c":1,"s":39,"id":2037,"u":"stone%20ghost_sot1","p":89,"h":1,"n":"Stone Ghost"},{"c":1,"s":39,"id":2038,"u":"takulu%20ot_sot1","p":91,"h":1,"n":"Takulu Ot"},{"c":1,"s":39,"id":2039,"u":"umbo_sot1","p":22,"h":1,"n":"Umbo"},{"c":1,"s":39,"id":2040,"u":"urbel_sot1","p":55,"h":1,"n":"Urbel"},{"c":1,"s":40,"id":2041,"u":"damibwa_sot2","p":80,"h":1,"n":"Damibwa"},{"c":1,"s":40,"id":2042,"u":"fire-pot%20ubanu_sot2","p":89,"h":1,"n":"Fire-pot Ubanu"},{"c":1,"s":40,"id":2043,"u":"froglegs_sot2","p":91,"h":1,"n":"Froglegs"},{"c":1,"s":40,"id":2044,"u":"gbahali_sot2","p":81,"h":1,"n":"Gbahali"},{"c":1,"s":40,"id":2045,"u":"great%20grodair_sot2","p":59,"h":1,"n":"Great Grodair"},{"c":1,"s":40,"id":2046,"u":"grippli%20jinxer_sot2","p":83,"h":1,"n":"Grippli Jinxer"},{"c":1,"s":40,"id":2047,"u":"grippli%20skirmisher_sot2","p":82,"h":1,"n":"Grippli Skirmisher"},{"c":1,"s":40,"id":2048,"u":"i'iko%20dragon_sot2","p":84,"h":1,"n":"I'iko Dragon"},{"c":1,"s":40,"id":2049,"u":"kiru_sot2","p":27,"h":1,"n":"Kiru"},{"c":1,"s":40,"id":2050,"u":"kolbo_sot2","p":49,"h":1,"n":"Kolbo"},{"c":1,"s":40,"id":2051,"u":"kreekoss_sot2","p":53,"h":1,"n":"Kreekoss"},{"c":1,"s":40,"id":2052,"u":"loakan_sot2","p":28,"h":1,"n":"Loakan"},{"c":1,"s":40,"id":2053,"u":"mashkudu%20the%20bully_sot2","p":27,"h":1,"n":"Mashkudu The Bully"},{"c":1,"s":40,"id":2054,"u":"mpeshi_sot2","p":85,"h":1,"n":"Mpeshi"},{"c":1,"s":40,"id":2055,"u":"mutated%20sewer%20ooze_sot2","p":37,"h":1,"n":"Mutated Sewer Ooze"},{"c":1,"s":40,"id":2056,"u":"old%20thrasher_sot2","p":40,"h":1,"n":"Old Thrasher"},{"c":1,"s":40,"id":2057,"u":"reth_sot2","p":29,"h":1,"n":"Reth"},{"c":1,"s":40,"id":2058,"u":"salathiss_sot2","p":93,"h":1,"n":"Salathiss"},{"c":1,"s":40,"id":2059,"u":"serpentfolk%20granitescale_sot2","p":86,"h":1,"n":"Serpentfolk Granitescale"},{"c":1,"s":40,"id":2060,"u":"serpentfolk%20venom%20caller_sot2","p":87,"h":1,"n":"Serpentfolk Venom Caller"},{"c":1,"s":41,"id":2061,"u":"basilisk_tio","p":26,"h":1,"n":"Basilisk"},{"c":1,"s":41,"id":2062,"u":"boar_tio","p":8,"h":1,"n":"Boar"},{"c":1,"s":41,"id":2063,"u":"brimstone%20rat_tio","p":37,"h":1,"n":"Brimstone Rat"},{"c":1,"s":41,"id":2064,"u":"bugbear%20marauder_tio","p":30,"h":1,"n":"Bugbear Marauder"},{"c":1,"s":41,"id":2065,"u":"crocodile_tio","p":11,"h":1,"n":"Crocodile"},{"c":1,"s":41,"id":2066,"u":"gargoyle%20guardian_tio","p":35,"h":1,"n":"Gargoyle Guardian"},{"c":1,"s":41,"id":2067,"u":"ghost%20commoner_tio","p":20,"h":1,"n":"Ghost Commoner"},{"c":1,"s":41,"id":2068,"u":"giant%20centipede_tio","p":12,"h":1,"n":"Giant Centipede"},{"c":1,"s":41,"id":2069,"u":"giant%20rat_tio","p":14,"h":1,"n":"Giant Rat"},{"c":1,"s":41,"id":2070,"u":"giant%20spider_tio","p":16,"h":1,"n":"Giant Spider"},{"c":1,"s":41,"id":2071,"u":"hargrit%20leadbuster_tio","p":36,"h":1,"n":"Hargrit Leadbuster"},{"c":1,"s":41,"id":2072,"u":"harpies_tio","p":48,"h":1,"n":"Harpies"},{"c":1,"s":41,"id":2073,"u":"hell%20hound_tio","p":24,"h":1,"n":"Hell Hound"},{"c":1,"s":41,"id":2074,"u":"karstin%20star-hand%2c%20shadow_tio","p":29,"h":1,"n":"Karstin Star-Hand, Shadow"},{"c":1,"s":41,"id":2075,"u":"kobold%20dragon%20mage_tio","p":26,"h":1,"n":"Kobold Dragon Mage"},{"c":1,"s":41,"id":2076,"u":"kobold%20scout_tio","p":26,"h":1,"n":"Kobold Scout"},{"c":1,"s":41,"id":2077,"u":"kobold%20scout_tio","p":45,"h":1,"n":"Kobold Scout"},{"c":1,"s":41,"id":2078,"u":"kobold%20trapmaster_tio","p":45,"h":1,"n":"Kobold Trapmaster"},{"c":1,"s":41,"id":2079,"u":"kotgar%20leadbuster_tio","p":33,"h":1,"n":"Kotgar Leadbuster"},{"c":1,"s":41,"id":2080,"u":"kurnugian%20jackal_tio","p":61,"h":1,"n":"Kurnugian Jackal"},{"c":1,"s":41,"id":2081,"u":"leopard_tio","p":33,"h":1,"n":"Leopard"},{"c":1,"s":41,"id":2082,"u":"mimic%20prankster_tio","p":49,"h":1,"n":"Mimic Prankster"},{"c":1,"s":41,"id":2083,"u":"morgrym%20leadbuster_tio","p":35,"h":1,"n":"Morgrym Leadbuster"},{"c":1,"s":41,"id":2084,"u":"ogre%20warrior_tio","p":46,"h":1,"n":"Ogre Warrior"},{"c":1,"s":41,"id":2085,"u":"omblin%20leadbuster_tio","p":37,"h":1,"n":"Omblin Leadbuster"},{"c":1,"s":41,"id":2086,"u":"orc%20commander_tio","p":41,"h":1,"n":"Orc Commander"},{"c":1,"s":41,"id":2087,"u":"orc%20scrapper_tio","p":40,"h":1,"n":"Orc Scrapper"},{"c":1,"s":41,"id":2088,"u":"owlbear_tio","p":47,"h":1,"n":"Owlbear"},{"c":1,"s":41,"id":2089,"u":"scalliwing_tio","p":62,"h":1,"n":"Scalliwing"},{"c":1,"s":41,"id":2090,"u":"sewer%20ooze_tio","p":13,"h":1,"n":"Sewer Ooze"},{"c":1,"s":41,"id":2091,"u":"skeleton%20guard_tio","p":28,"h":1,"n":"Skeleton Guard"},{"c":1,"s":41,"id":2092,"u":"stinkweed%20shambler_tio","p":63,"h":1,"n":"Stinkweed Shambler"},{"c":1,"s":41,"id":2093,"u":"troll%20enforcer_tio","p":50,"h":1,"n":"Troll Enforcer"},{"c":1,"s":41,"id":2094,"u":"viper_tio","p":32,"h":1,"n":"Viper"},{"c":1,"s":41,"id":2095,"u":"web%20lurker_tio","p":17,"h":1,"n":"Web Lurker"},{"c":1,"s":41,"id":2096,"u":"wight_tio","p":28,"h":1,"n":"Wight"},{"c":1,"s":41,"id":2097,"u":"wolf_tio","p":24,"h":1,"n":"Wolf"},{"c":1,"s":41,"id":2098,"u":"zombie%20shambler_tio","p":29,"h":1,"n":"Zombie Shambler"},{"c":7,"s":4,"id":2099,"u":"amnesiac_apg","p":50,"h":1,"n":"Amnesiac"},{"c":7,"s":4,"id":2100,"u":"bandit_apg","p":48,"h":1,"n":"Bandit"},{"c":7,"s":4,"id":2101,"u":"barber_apg","p":48,"h":1,"n":"Barber"},{"c":7,"s":4,"id":2102,"u":"blessed_apg","p":50,"h":1,"n":"Blessed"},{"c":7,"s":4,"id":2103,"u":"bookkeeper_apg","p":48,"h":1,"n":"Bookkeeper"},{"c":7,"s":4,"id":2104,"u":"cook_apg","p":48,"h":1,"n":"Cook"},{"c":7,"s":4,"id":2105,"u":"courier_apg","p":48,"h":1,"n":"Courier"},{"c":7,"s":4,"id":2106,"u":"cultist_apg","p":48,"h":1,"n":"Cultist"},{"c":7,"s":4,"id":2107,"u":"cursed_apg","p":50,"h":1,"n":"Cursed"},{"c":7,"s":4,"id":2108,"u":"feral%20child_apg","p":50,"h":1,"n":"Feral Child"},{"c":7,"s":4,"id":2109,"u":"feybound_apg","p":50,"h":1,"n":"Feybound"},{"c":7,"s":4,"id":2110,"u":"haunted_apg","p":51,"h":1,"n":"Haunted"},{"c":7,"s":4,"id":2111,"u":"insurgent_apg","p":48,"h":1,"n":"Insurgent"},{"c":7,"s":4,"id":2112,"u":"outrider_apg","p":48,"h":1,"n":"Outrider"},{"c":7,"s":4,"id":2113,"u":"pilgrim_apg","p":49,"h":1,"n":"Pilgrim"},{"c":7,"s":4,"id":2114,"u":"refugee_apg","p":49,"h":1,"n":"Refugee"},{"c":7,"s":4,"id":2115,"u":"returned_apg","p":51,"h":1,"n":"Returned"},{"c":7,"s":4,"id":2116,"u":"root%20worker_apg","p":49,"h":1,"n":"Root Worker"},{"c":7,"s":4,"id":2117,"u":"royalty_apg","p":51,"h":1,"n":"Royalty"},{"c":7,"s":4,"id":2118,"u":"scavenger_apg","p":49,"h":1,"n":"Scavenger"},{"c":7,"s":4,"id":2119,"u":"servant_apg","p":49,"h":1,"n":"Servant"},{"c":7,"s":4,"id":2120,"u":"squire_apg","p":49,"h":1,"n":"Squire"},{"c":7,"s":4,"id":2121,"u":"tax%20collector_apg","p":49,"h":1,"n":"Tax Collector"},{"c":7,"s":4,"id":2122,"u":"teacher_apg","p":49,"h":1,"n":"Teacher"},{"c":7,"s":4,"id":2123,"u":"ward_apg","p":49,"h":1,"n":"Ward"},{"c":7,"s":5,"id":2124,"u":"acolyte_crb","p":60,"h":1,"n":"Acolyte"},{"c":7,"s":5,"id":2125,"u":"acrobat_crb","p":60,"h":1,"n":"Acrobat"},{"c":7,"s":5,"id":2126,"u":"animal%20whisperer_crb","p":60,"h":1,"n":"Animal Whisperer"},{"c":7,"s":5,"id":2127,"u":"artisan_crb","p":60,"h":1,"n":"Artisan"},{"c":7,"s":5,"id":2128,"u":"artist_crb","p":60,"h":1,"n":"Artist"},{"c":7,"s":5,"id":2129,"u":"barkeep_crb","p":60,"h":1,"n":"Barkeep"},{"c":7,"s":5,"id":2130,"u":"barrister_crb","p":60,"h":1,"n":"Barrister"},{"c":7,"s":5,"id":2131,"u":"bounty%20hunter_crb","p":61,"h":1,"n":"Bounty Hunter"},{"c":7,"s":5,"id":2132,"u":"charlatan_crb","p":61,"h":1,"n":"Charlatan"},{"c":7,"s":5,"id":2133,"u":"criminal_crb","p":61,"h":1,"n":"Criminal"},{"c":7,"s":5,"id":2134,"u":"detective_crb","p":61,"h":1,"n":"Detective"},{"c":7,"s":5,"id":2135,"u":"emissary_crb","p":61,"h":1,"n":"Emissary"},{"c":7,"s":5,"id":2136,"u":"entertainer_crb","p":61,"h":1,"n":"Entertainer"},{"c":7,"s":5,"id":2137,"u":"farmhand_crb","p":62,"h":1,"n":"Farmhand"},{"c":7,"s":5,"id":2138,"u":"field%20medic_crb","p":62,"h":1,"n":"Field Medic"},{"c":7,"s":5,"id":2139,"u":"fortune%20teller_crb","p":62,"h":1,"n":"Fortune Teller"},{"c":7,"s":5,"id":2140,"u":"gambler_crb","p":62,"h":1,"n":"Gambler"},{"c":7,"s":5,"id":2141,"u":"gladiator_crb","p":62,"h":1,"n":"Gladiator"},{"c":7,"s":5,"id":2142,"u":"guard_crb","p":62,"h":1,"n":"Guard"},{"c":7,"s":5,"id":2143,"u":"herbalist_crb","p":62,"h":1,"n":"Herbalist"},{"c":7,"s":5,"id":2144,"u":"hermit_crb","p":62,"h":1,"n":"Hermit"},{"c":7,"s":5,"id":2145,"u":"hunter_crb","p":62,"h":1,"n":"Hunter"},{"c":7,"s":5,"id":2146,"u":"laborer_crb","p":62,"h":1,"n":"Laborer"},{"c":7,"s":5,"id":2147,"u":"martial%20disciple_crb","p":63,"h":1,"n":"Martial Disciple"},{"c":7,"s":5,"id":2148,"u":"merchant_crb","p":63,"h":1,"n":"Merchant"},{"c":7,"s":5,"id":2149,"u":"miner_crb","p":63,"h":1,"n":"Miner"},{"c":7,"s":5,"id":2150,"u":"noble_crb","p":63,"h":1,"n":"Noble"},{"c":7,"s":5,"id":2151,"u":"nomad_crb","p":63,"h":1,"n":"Nomad"},{"c":7,"s":5,"id":2152,"u":"prisoner_crb","p":63,"h":1,"n":"Prisoner"},{"c":7,"s":5,"id":2153,"u":"sailor_crb","p":63,"h":1,"n":"Sailor"},{"c":7,"s":5,"id":2154,"u":"scholar_crb","p":63,"h":1,"n":"Scholar"},{"c":7,"s":5,"id":2155,"u":"scout_crb","p":64,"h":1,"n":"Scout"},{"c":7,"s":5,"id":2156,"u":"street%20urchin_crb","p":64,"h":1,"n":"Street Urchin"},{"c":7,"s":5,"id":2157,"u":"tinker_crb","p":64,"h":1,"n":"Tinker"},{"c":7,"s":5,"id":2158,"u":"warrior_crb","p":64,"h":1,"n":"Warrior"},{"c":7,"s":42,"id":2159,"u":"dragon%20scholar_aoa0","p":4,"h":1,"n":"Dragon Scholar"},{"c":7,"s":42,"id":2160,"u":"emancipated_aoa0","p":4,"h":1,"n":"Emancipated"},{"c":7,"s":42,"id":2161,"u":"haunting%20vision_aoa0","p":4,"h":1,"n":"Haunting Vision"},{"c":7,"s":42,"id":2162,"u":"hellknight%20historian_aoa0","p":5,"h":1,"n":"Hellknight Historian"},{"c":7,"s":42,"id":2163,"u":"local%20scion_aoa0","p":5,"h":1,"n":"Local Scion"},{"c":7,"s":42,"id":2164,"u":"out-of-towner_aoa0","p":5,"h":1,"n":"Out-of-towner"},{"c":7,"s":42,"id":2165,"u":"reputation%20seeker_aoa0","p":5,"h":1,"n":"Reputation Seeker"},{"c":7,"s":42,"id":2166,"u":"returning%20descendant_aoa0","p":5,"h":1,"n":"Returning Descendant"},{"c":7,"s":42,"id":2167,"u":"truth%20seeker_aoa0","p":6,"h":1,"n":"Truth Seeker"},{"c":7,"s":16,"id":2168,"u":"droskari%20disciple_aoa4","p":63,"h":1,"n":"Droskari Disciple"},{"c":7,"s":18,"id":2169,"u":"aiudara%20seeker_aoa6","p":73,"h":1,"n":"Aiudara Seeker"},{"c":7,"s":18,"id":2170,"u":"hermean%20heritor_aoa6","p":73,"h":1,"n":"Hermean Heritor"},{"c":7,"s":18,"id":2171,"u":"legendary%20parents_aoa6","p":73,"h":1,"n":"Legendary Parents"},{"c":7,"s":18,"id":2172,"u":"touched%20by%20dahak_aoa6","p":73,"h":1,"n":"Touched By Dahak"},{"c":7,"s":43,"id":2173,"u":"ex-con%20token%20guard_aoe0","p":6,"h":1,"n":"Ex-con Token Guard"},{"c":7,"s":43,"id":2174,"u":"godless%20graycloak_aoe0","p":6,"h":1,"n":"Godless Graycloak"},{"c":7,"s":43,"id":2175,"u":"grizzled%20muckrucker_aoe0","p":7,"h":1,"n":"Grizzled Muckrucker"},{"c":7,"s":43,"id":2176,"u":"harbor%20guard%20moonlighter_aoe0","p":7,"h":1,"n":"Harbor Guard Moonlighter"},{"c":7,"s":43,"id":2177,"u":"learned%20guard%20prodigy_aoe0","p":7,"h":1,"n":"Learned Guard Prodigy"},{"c":7,"s":43,"id":2178,"u":"political%20scion_aoe0","p":8,"h":1,"n":"Political Scion"},{"c":7,"s":43,"id":2179,"u":"post%20guard%20of%20all%20trades_aoe0","p":8,"h":1,"n":"Post Guard Of All Trades"},{"c":7,"s":43,"id":2180,"u":"sally%20guard%20neophyte_aoe0","p":8,"h":1,"n":"Sally Guard Neophyte"},{"c":7,"s":43,"id":2181,"u":"sleepless%20suns%20star_aoe0","p":9,"h":1,"n":"Sleepless Suns Star"},{"c":7,"s":43,"id":2182,"u":"undercover%20lotus%20guard_aoe0","p":9,"h":1,"n":"Undercover Lotus Guard"},{"c":7,"s":22,"id":2183,"u":"harrow-led_aoe4","p":66,"h":1,"n":"Harrow-led"},{"c":7,"s":44,"id":2184,"u":"bibliophile_av0","p":4,"h":1,"n":"Bibliophile"},{"c":7,"s":44,"id":2185,"u":"eldritch%20anatomist_av0","p":4,"h":1,"n":"Eldritch Anatomist"},{"c":7,"s":44,"id":2186,"u":"fogfen%20tale-teller_av0","p":4,"h":1,"n":"Fogfen Tale-teller"},{"c":7,"s":44,"id":2187,"u":"market%20runner_av0","p":4,"h":1,"n":"Market Runner"},{"c":7,"s":44,"id":2188,"u":"ruin%20delver_av0","p":4,"h":1,"n":"Ruin Delver"},{"c":7,"s":44,"id":2189,"u":"starwatcher_av0","p":4,"h":1,"n":"Starwatcher"},{"c":7,"s":44,"id":2190,"u":"witchlight%20follower_av0","p":5,"h":1,"n":"Witchlight Follower"},{"c":7,"s":45,"id":2191,"u":"aerialist_ec0","p":4,"h":1,"n":"Aerialist"},{"c":7,"s":45,"id":2192,"u":"animal%20wrangler_ec0","p":4,"h":1,"n":"Animal Wrangler"},{"c":7,"s":45,"id":2193,"u":"barker_ec0","p":5,"h":1,"n":"Barker"},{"c":7,"s":45,"id":2194,"u":"blow-in_ec0","p":5,"h":1,"n":"Blow-in"},{"c":7,"s":45,"id":2195,"u":"butcher_ec0","p":5,"h":1,"n":"Butcher"},{"c":7,"s":45,"id":2196,"u":"circus%20born_ec0","p":5,"h":1,"n":"Circus Born"},{"c":7,"s":45,"id":2197,"u":"clown_ec0","p":6,"h":1,"n":"Clown"},{"c":7,"s":45,"id":2198,"u":"mystic%20seer_ec0","p":6,"h":1,"n":"Mystic Seer"},{"c":7,"s":45,"id":2199,"u":"rigger_ec0","p":6,"h":1,"n":"Rigger"},{"c":7,"s":8,"id":2200,"u":"dreamer%20of%20the%20verdant%20moon_ec3","p":67,"h":1,"n":"Dreamer Of The Verdant Moon"},{"c":7,"s":46,"id":2201,"u":"abadar's%20avenger_frp0","p":6,"h":1,"n":"Abadar's Avenger"},{"c":7,"s":46,"id":2202,"u":"attention%20addict_frp0","p":6,"h":1,"n":"Attention Addict"},{"c":7,"s":46,"id":2203,"u":"newcomer%20in%20need_frp0","p":7,"h":1,"n":"Newcomer In Need"},{"c":7,"s":46,"id":2204,"u":"ruby%20phoenix%20fanatic_frp0","p":7,"h":1,"n":"Ruby Phoenix Fanatic"},{"c":7,"s":46,"id":2205,"u":"second%20chance%20champion_frp0","p":7,"h":1,"n":"Second Chance Champion"},{"c":7,"s":46,"id":2206,"u":"undercover%20contender_frp0","p":7,"h":1,"n":"Undercover Contender"},{"c":7,"s":2,"id":2207,"u":"alkenstar%20outlaw_g%26g","p":124,"h":1,"n":"Alkenstar Outlaw"},{"c":7,"s":2,"id":2208,"u":"alkenstar%20sojourner_g%26g","p":124,"h":1,"n":"Alkenstar Sojourner"},{"c":7,"s":2,"id":2209,"u":"anti-tech%20activist_g%26g","p":44,"h":1,"n":"Anti-tech Activist"},{"c":7,"s":2,"id":2210,"u":"back-alley%20doctor_g%26g","p":122,"h":1,"n":"Back-alley Doctor"},{"c":7,"s":2,"id":2211,"u":"cannoneer_g%26g","p":122,"h":1,"n":"Cannoneer"},{"c":7,"s":2,"id":2212,"u":"circuit%20judge_g%26g","p":124,"h":1,"n":"Circuit Judge"},{"c":7,"s":2,"id":2213,"u":"clockfighter_g%26g","p":44,"h":1,"n":"Clockfighter"},{"c":7,"s":2,"id":2214,"u":"clockwork%20researcher_g%26g","p":44,"h":1,"n":"Clockwork Researcher"},{"c":7,"s":2,"id":2215,"u":"codebreaker_g%26g","p":44,"h":1,"n":"Codebreaker"},{"c":7,"s":2,"id":2216,"u":"deputy_g%26g","p":122,"h":1,"n":"Deputy"},{"c":7,"s":2,"id":2217,"u":"discarded%20duplicate_g%26g","p":46,"h":1,"n":"Discarded Duplicate"},{"c":7,"s":2,"id":2218,"u":"disciple%20of%20the%20gear_g%26g","p":45,"h":1,"n":"Disciple Of The Gear"},{"c":7,"s":2,"id":2219,"u":"driver_g%26g","p":45,"h":1,"n":"Driver"},{"c":7,"s":2,"id":2220,"u":"farmsteader_g%26g","p":123,"h":1,"n":"Farmsteader"},{"c":7,"s":2,"id":2221,"u":"fireworks%20performer_g%26g","p":122,"h":1,"n":"Fireworks Performer"},{"c":7,"s":2,"id":2222,"u":"goldhand%20arms%20dealer_g%26g","p":124,"h":1,"n":"Goldhand Arms Dealer"},{"c":7,"s":2,"id":2223,"u":"gunsmith_g%26g","p":122,"h":1,"n":"Gunsmith"},{"c":7,"s":2,"id":2224,"u":"hired%20killer_g%26g","p":122,"h":1,"n":"Hired Killer"},{"c":7,"s":2,"id":2225,"u":"hounded%20thief_g%26g","p":45,"h":1,"n":"Hounded Thief"},{"c":7,"s":2,"id":2226,"u":"junk%20collector_g%26g","p":123,"h":1,"n":"Junk Collector"},{"c":7,"s":2,"id":2227,"u":"junker_g%26g","p":45,"h":1,"n":"Junker"},{"c":7,"s":2,"id":2228,"u":"mechanic_g%26g","p":45,"h":1,"n":"Mechanic"},{"c":7,"s":2,"id":2229,"u":"mechanical%20symbiosis_g%26g","p":46,"h":1,"n":"Mechanical Symbiosis"},{"c":7,"s":2,"id":2230,"u":"medicinal%20clocksmith_g%26g","p":45,"h":1,"n":"Medicinal Clocksmith"},{"c":7,"s":2,"id":2231,"u":"otherworldly%20mission_g%26g","p":125,"h":1,"n":"Otherworldly Mission"},{"c":7,"s":2,"id":2232,"u":"press-ganged_g%26g","p":124,"h":1,"n":"Press-ganged"},{"c":7,"s":2,"id":2233,"u":"printer_g%26g","p":45,"h":1,"n":"Printer"},{"c":7,"s":2,"id":2234,"u":"revenant_g%26g","p":125,"h":1,"n":"Revenant"},{"c":7,"s":2,"id":2235,"u":"saboteur_g%26g","p":45,"h":1,"n":"Saboteur"},{"c":7,"s":2,"id":2236,"u":"saloon%20entertainer_g%26g","p":123,"h":1,"n":"Saloon Entertainer"},{"c":7,"s":2,"id":2237,"u":"saved%20by%20clockwork_g%26g","p":47,"h":1,"n":"Saved By Clockwork"},{"c":7,"s":2,"id":2238,"u":"sheriff_g%26g","p":124,"h":1,"n":"Sheriff"},{"c":7,"s":2,"id":2239,"u":"spotter_g%26g","p":123,"h":1,"n":"Spotter"},{"c":7,"s":2,"id":2240,"u":"tall%20tale_g%26g","p":125,"h":1,"n":"Tall Tale"},{"c":7,"s":2,"id":2241,"u":"tech-reliant_g%26g","p":47,"h":1,"n":"Tech-reliant"},{"c":7,"s":2,"id":2242,"u":"toymaker_g%26g","p":45,"h":1,"n":"Toymaker"},{"c":7,"s":2,"id":2243,"u":"undertaker_g%26g","p":123,"h":1,"n":"Undertaker"},{"c":7,"s":2,"id":2244,"u":"wandering%20preacher_g%26g","p":123,"h":1,"n":"Wandering Preacher"},{"c":7,"s":2,"id":2245,"u":"waste%20walker_g%26g","p":123,"h":1,"n":"Waste Walker"},{"c":7,"s":2,"id":2246,"u":"wished%20alive_g%26g","p":47,"h":1,"n":"Wished Alive"},{"c":7,"s":47,"id":2247,"u":"archaeologist_lopsg","p":8,"h":1,"n":"Archaeologist"},{"c":7,"s":47,"id":2248,"u":"pathfinder%20recruiter_lopsg","p":8,"h":1,"n":"Pathfinder Recruiter"},{"c":7,"s":47,"id":2249,"u":"spell%20seeker_lopsg","p":8,"h":1,"n":"Spell Seeker"},{"c":7,"s":47,"id":2250,"u":"trailblazer_lopsg","p":8,"h":1,"n":"Trailblazer"},{"c":7,"s":47,"id":2251,"u":"translator_lopsg","p":8,"h":1,"n":"Translator"},{"c":7,"s":48,"id":2252,"u":"alkenstar%20tinker_lowg","p":82,"h":1,"n":"Alkenstar Tinker"},{"c":7,"s":48,"id":2253,"u":"aspiring%20free%20captain_lowg","p":70,"h":1,"n":"Aspiring Free Captain"},{"c":7,"s":48,"id":2254,"u":"aspiring%20river%20monarch_lowg","p":34,"h":1,"n":"Aspiring River Monarch"},{"c":7,"s":48,"id":2255,"u":"atteran%20rancher_lowg","p":106,"h":1,"n":"Atteran Rancher"},{"c":7,"s":48,"id":2256,"u":"bekyar%20restorer_lowg","p":94,"h":1,"n":"Bekyar Restorer"},{"c":7,"s":48,"id":2257,"u":"belkzen%20slayer_lowg","p":46,"h":1,"n":"Belkzen Slayer"},{"c":7,"s":48,"id":2258,"u":"bellflower%20agent_lowg","p":106,"h":1,"n":"Bellflower Agent"},{"c":7,"s":48,"id":2259,"u":"black%20market%20smuggler_lowg","p":58,"h":1,"n":"Black Market Smuggler"},{"c":7,"s":48,"id":2260,"u":"bonuwat%20wavetouched_lowg","p":94,"h":1,"n":"Bonuwat Wavetouched"},{"c":7,"s":48,"id":2261,"u":"bright%20lion_lowg","p":94,"h":1,"n":"Bright Lion"},{"c":7,"s":48,"id":2262,"u":"chelish%20rebel_lowg","p":106,"h":1,"n":"Chelish Rebel"},{"c":7,"s":48,"id":2263,"u":"child%20of%20the%20puddles_lowg","p":22,"h":1,"n":"Child Of The Puddles"},{"c":7,"s":48,"id":2264,"u":"child%20of%20westcrown_lowg","p":106,"h":1,"n":"Child Of Westcrown"},{"c":7,"s":48,"id":2265,"u":"cursed%20family_lowg","p":46,"h":1,"n":"Cursed Family"},{"c":7,"s":48,"id":2266,"u":"desert%20tracker_lowg","p":58,"h":1,"n":"Desert Tracker"},{"c":7,"s":48,"id":2267,"u":"diobel%20pearl%20diver_lowg","p":22,"h":1,"n":"Diobel Pearl Diver"},{"c":7,"s":48,"id":2268,"u":"final%20blade%20survivor_lowg","p":130,"h":1,"n":"Final Blade Survivor"},{"c":7,"s":48,"id":2269,"u":"freed%20slave%20of%20absalom_lowg","p":22,"h":1,"n":"Freed Slave Of Absalom"},{"c":7,"s":48,"id":2270,"u":"geb%20crusader_lowg","p":82,"h":1,"n":"Geb Crusader"},{"c":7,"s":48,"id":2271,"u":"goblinblood%20orphan_lowg","p":106,"h":1,"n":"Goblinblood Orphan"},{"c":7,"s":48,"id":2272,"u":"grand%20council%20bureaucrat_lowg","p":22,"h":1,"n":"Grand Council Bureaucrat"},{"c":7,"s":48,"id":2273,"u":"hermean%20expatriate_lowg","p":70,"h":1,"n":"Hermean Expatriate"},{"c":7,"s":48,"id":2274,"u":"inlander_lowg","p":22,"h":1,"n":"Inlander"},{"c":7,"s":48,"id":2275,"u":"issian%20partisan_lowg","p":34,"h":1,"n":"Issian Partisan"},{"c":7,"s":48,"id":2276,"u":"kalistrade%20follower_lowg","p":130,"h":1,"n":"Kalistrade Follower"},{"c":7,"s":48,"id":2277,"u":"kyonin%20emissary_lowg","p":130,"h":1,"n":"Kyonin Emissary"},{"c":7,"s":48,"id":2278,"u":"lastwall%20survivor_lowg","p":46,"h":1,"n":"Lastwall Survivor"},{"c":7,"s":48,"id":2279,"u":"lumber%20consortium%20laborer_lowg","p":130,"h":1,"n":"Lumber Consortium Laborer"},{"c":7,"s":48,"id":2280,"u":"magaambya%20academic_lowg","p":94,"h":1,"n":"Magaambya Academic"},{"c":7,"s":48,"id":2281,"u":"mammoth%20speaker_lowg","p":118,"h":1,"n":"Mammoth Speaker"},{"c":7,"s":48,"id":2282,"u":"mana%20wastes%20refugee_lowg","p":82,"h":1,"n":"Mana Wastes Refugee"},{"c":7,"s":48,"id":2283,"u":"mantis%20scion_lowg","p":70,"h":1,"n":"Mantis Scion"},{"c":7,"s":48,"id":2284,"u":"menagerie%20dung%20sweeper_lowg","p":22,"h":1,"n":"Menagerie Dung Sweeper"},{"c":7,"s":48,"id":2285,"u":"merabite%20prodigy_lowg","p":58,"h":1,"n":"Merabite Prodigy"},{"c":7,"s":48,"id":2286,"u":"molthuni%20mercenary_lowg","p":46,"h":1,"n":"Molthuni Mercenary"},{"c":7,"s":48,"id":2287,"u":"nexian%20mystic_lowg","p":82,"h":1,"n":"Nexian Mystic"},{"c":7,"s":48,"id":2288,"u":"nirmathi%20guerrilla_lowg","p":46,"h":1,"n":"Nirmathi Guerrilla"},{"c":7,"s":48,"id":2289,"u":"oenopion%20ooze-tender_lowg","p":82,"h":1,"n":"Oenopion Ooze-tender"},{"c":7,"s":48,"id":2290,"u":"onyx%20trader_lowg","p":46,"h":1,"n":"Onyx Trader"},{"c":7,"s":48,"id":2291,"u":"osirionologist_lowg","p":58,"h":1,"n":"Osirionologist"},{"c":7,"s":48,"id":2292,"u":"pathfinder%20hopeful_lowg","p":22,"h":1,"n":"Pathfinder Hopeful"},{"c":7,"s":48,"id":2293,"u":"perfection%20seeker_lowg","p":82,"h":1,"n":"Perfection Seeker"},{"c":7,"s":48,"id":2294,"u":"press-ganged_lowg","p":70,"h":1,"n":"Press-ganged"},{"c":7,"s":48,"id":2295,"u":"purveyor%20of%20the%20bizarre_lowg","p":58,"h":1,"n":"Purveyor Of The Bizarre"},{"c":7,"s":48,"id":2296,"u":"quick_lowg","p":82,"h":1,"n":"Quick"},{"c":7,"s":48,"id":2297,"u":"razmiran%20faithful_lowg","p":34,"h":1,"n":"Razmiran Faithful"},{"c":7,"s":48,"id":2298,"u":"rivethun%20adherent_lowg","p":130,"h":1,"n":"Rivethun Adherent"},{"c":7,"s":48,"id":2299,"u":"rostland%20partisan_lowg","p":34,"h":1,"n":"Rostland Partisan"},{"c":7,"s":48,"id":2300,"u":"sarkorian%20reclaimer_lowg","p":34,"h":1,"n":"Sarkorian Reclaimer"},{"c":7,"s":48,"id":2301,"u":"sarkorian%20survivor_lowg","p":34,"h":1,"n":"Sarkorian Survivor"},{"c":7,"s":48,"id":2302,"u":"scholar%20of%20the%20ancients_lowg","p":70,"h":1,"n":"Scholar Of The Ancients"},{"c":7,"s":48,"id":2303,"u":"secular%20medic_lowg","p":58,"h":1,"n":"Secular Medic"},{"c":7,"s":48,"id":2304,"u":"senghor%20sailor_lowg","p":94,"h":1,"n":"Senghor Sailor"},{"c":7,"s":48,"id":2305,"u":"shadow%20haunted_lowg","p":106,"h":1,"n":"Shadow Haunted"},{"c":7,"s":48,"id":2306,"u":"shoanti%20name-bearer_lowg","p":118,"h":1,"n":"Shoanti Name-bearer"},{"c":7,"s":48,"id":2307,"u":"shory%20seeker_lowg","p":94,"h":1,"n":"Shory Seeker"},{"c":7,"s":48,"id":2308,"u":"sodden%20scavenger_lowg","p":94,"h":1,"n":"Sodden Scavenger"},{"c":7,"s":48,"id":2309,"u":"storm%20survivor_lowg","p":70,"h":1,"n":"Storm Survivor"},{"c":7,"s":48,"id":2310,"u":"taldan%20schemer_lowg","p":130,"h":1,"n":"Taldan Schemer"},{"c":7,"s":48,"id":2311,"u":"thassilonian%20traveler_lowg","p":118,"h":1,"n":"Thassilonian Traveler"},{"c":7,"s":48,"id":2312,"u":"thrune%20loyalist_lowg","p":106,"h":1,"n":"Thrune Loyalist"},{"c":7,"s":48,"id":2313,"u":"thuvian%20unifier_lowg","p":58,"h":1,"n":"Thuvian Unifier"},{"c":7,"s":48,"id":2314,"u":"trade%20consortium%20underling_lowg","p":22,"h":1,"n":"Trade Consortium Underling"},{"c":7,"s":48,"id":2315,"u":"ulfen%20raider_lowg","p":118,"h":1,"n":"Ulfen Raider"},{"c":7,"s":48,"id":2316,"u":"undersea%20enthusiast_lowg","p":70,"h":1,"n":"Undersea Enthusiast"},{"c":7,"s":48,"id":2317,"u":"ustalavic%20academic_lowg","p":46,"h":1,"n":"Ustalavic Academic"},{"c":7,"s":48,"id":2318,"u":"varisian%20wanderer_lowg","p":118,"h":1,"n":"Varisian Wanderer"},{"c":7,"s":48,"id":2319,"u":"vidrian%20reformer_lowg","p":94,"h":1,"n":"Vidrian Reformer"},{"c":7,"s":48,"id":2320,"u":"whispering%20way%20scion_lowg","p":46,"h":1,"n":"Whispering Way Scion"},{"c":7,"s":48,"id":2321,"u":"wildwood%20local_lowg","p":130,"h":1,"n":"Wildwood Local"},{"c":7,"s":48,"id":2322,"u":"winter's%20child_lowg","p":118,"h":1,"n":"Winter's Child"},{"c":7,"s":48,"id":2323,"u":"witch%20wary_lowg","p":118,"h":1,"n":"Witch Wary"},{"c":7,"s":48,"id":2324,"u":"wonder%20taster_lowg","p":34,"h":1,"n":"Wonder Taster"},{"c":7,"s":49,"id":2325,"u":"academy%20dropout_som","p":28,"h":1,"n":"Academy Dropout"},{"c":7,"s":49,"id":2326,"u":"anti-magical_som","p":30,"h":1,"n":"Anti-magical"},{"c":7,"s":49,"id":2327,"u":"astrologer_som","p":28,"h":1,"n":"Astrologer"},{"c":7,"s":49,"id":2328,"u":"chosen%20one_som","p":30,"h":1,"n":"Chosen One"},{"c":7,"s":49,"id":2329,"u":"eidolon%20contact_som","p":28,"h":1,"n":"Eidolon Contact"},{"c":7,"s":49,"id":2330,"u":"energy%20scarred_som","p":219,"h":1,"n":"Energy Scarred"},{"c":7,"s":49,"id":2331,"u":"false%20medium_som","p":28,"h":1,"n":"False Medium"},{"c":7,"s":49,"id":2332,"u":"genie-blessed_som","p":30,"h":1,"n":"Genie-blessed"},{"c":7,"s":49,"id":2333,"u":"magical%20experiment_som","p":30,"h":1,"n":"Magical Experiment"},{"c":7,"s":49,"id":2334,"u":"magical%20merchant_som","p":29,"h":1,"n":"Magical Merchant"},{"c":7,"s":49,"id":2335,"u":"magical%20misfit_som","p":29,"h":1,"n":"Magical Misfit"},{"c":7,"s":49,"id":2336,"u":"musical%20prodigy_som","p":29,"h":1,"n":"Musical Prodigy"},{"c":7,"s":49,"id":2337,"u":"mystic%20tutor_som","p":219,"h":1,"n":"Mystic Tutor"},{"c":7,"s":49,"id":2338,"u":"occult%20librarian_som","p":29,"h":1,"n":"Occult Librarian"},{"c":7,"s":49,"id":2339,"u":"plant%20whisperer_som","p":29,"h":1,"n":"Plant Whisperer"},{"c":7,"s":49,"id":2340,"u":"seer%20of%20the%20dead_som","p":31,"h":1,"n":"Seer Of The Dead"},{"c":7,"s":49,"id":2341,"u":"song%20of%20the%20deep_som","p":31,"h":1,"n":"Song Of The Deep"},{"c":7,"s":49,"id":2342,"u":"street%20preacher_som","p":29,"h":1,"n":"Street Preacher"},{"c":7,"s":49,"id":2343,"u":"student%20of%20magic_som","p":29,"h":1,"n":"Student Of Magic"},{"c":7,"s":49,"id":2344,"u":"surge%20investigator_som","p":219,"h":1,"n":"Surge Investigator"},{"c":7,"s":49,"id":2345,"u":"time%20traveler_som","p":31,"h":1,"n":"Time Traveler"},{"c":7,"s":50,"id":2346,"u":"sponsored%20by%20a%20stranger_sot0","p":6,"h":1,"n":"Sponsored By A Stranger"},{"c":7,"s":50,"id":2347,"u":"sponsored%20by%20a%20village_sot0","p":7,"h":1,"n":"Sponsored By A Village"},{"c":7,"s":50,"id":2348,"u":"sponsored%20by%20family_sot0","p":6,"h":1,"n":"Sponsored By Family"},{"c":7,"s":50,"id":2349,"u":"sponsored%20by%20teacher%20ot_sot0","p":6,"h":1,"n":"Sponsored By Teacher Ot"},{"c":7,"s":50,"id":2350,"u":"unsponsored_sot0","p":7,"h":1,"n":"Unsponsored"},{"c":0,"s":4,"id":2351,"u":"a%20home%20in%20every%20port_apg","p":202,"h":1,"n":"A Home In Every Port"},{"c":0,"s":4,"id":2352,"u":"aasimar's%20mercy_apg","p":36,"h":1,"n":"Aasimar's Mercy"},{"c":0,"s":4,"id":2353,"u":"accelerating%20touch_apg","p":119,"h":1,"n":"Accelerating Touch"},{"c":0,"s":4,"id":2354,"u":"acclimatization_apg","p":177,"h":1,"n":"Acclimatization"},{"c":0,"s":4,"id":2355,"u":"accompany_apg","p":113,"h":1,"n":"Accompany"},{"c":0,"s":4,"id":2356,"u":"accurate%20flurry_apg","p":133,"h":1,"n":"Accurate Flurry"},{"c":0,"s":4,"id":2357,"u":"accursed%20claws_apg","p":31,"h":1,"n":"Accursed Claws"},{"c":0,"s":4,"id":2358,"u":"acquired%20tolerance_apg","p":186,"h":1,"n":"Acquired Tolerance"},{"c":0,"s":4,"id":2359,"u":"acrobat%20dedication_apg","p":155,"h":1,"n":"Acrobat Dedication"},{"c":0,"s":4,"id":2360,"u":"acrobatic%20performer_apg","p":202,"h":1,"n":"Acrobatic Performer"},{"c":0,"s":4,"id":2361,"u":"additional%20companion_apg","p":160,"h":1,"n":"Additional Companion"},{"c":0,"s":4,"id":2362,"u":"additional%20recollection_apg","p":132,"h":1,"n":"Additional Recollection"},{"c":0,"s":4,"id":2363,"u":"additional%20shadow%20magic_apg","p":192,"h":1,"n":"Additional Shadow Magic"},{"c":0,"s":4,"id":2364,"u":"adrenaline%20rush_apg","p":108,"h":1,"n":"Adrenaline Rush"},{"c":0,"s":4,"id":2365,"u":"advanced%20bow%20training_apg","p":157,"h":1,"n":"Advanced Bow Training"},{"c":0,"s":4,"id":2366,"u":"advanced%20deduction_apg","p":151,"h":1,"n":"Advanced Deduction"},{"c":0,"s":4,"id":2367,"u":"advanced%20first%20aid_apg","p":202,"h":1,"n":"Advanced First Aid"},{"c":0,"s":4,"id":2368,"u":"advanced%20flair_apg","p":153,"h":1,"n":"Advanced Flair"},{"c":0,"s":4,"id":2369,"u":"advanced%20general%20training_apg","p":47,"h":1,"n":"Advanced General Training"},{"c":0,"s":4,"id":2370,"u":"advanced%20mysteries_apg","p":152,"h":1,"n":"Advanced Mysteries"},{"c":0,"s":4,"id":2371,"u":"advanced%20revelation_apg","p":79,"h":1,"n":"Advanced Revelation"},{"c":0,"s":4,"id":2372,"u":"advanced%20witchcraft_apg","p":154,"h":1,"n":"Advanced Witchcraft"},{"c":0,"s":4,"id":2373,"u":"aerobatics%20mastery_apg","p":202,"h":1,"n":"Aerobatics Mastery"},{"c":0,"s":4,"id":2374,"u":"after%20you_apg","p":88,"h":1,"n":"After You"},{"c":0,"s":4,"id":2375,"u":"aggravating%20scratch_apg","p":10,"h":1,"n":"Aggravating Scratch"},{"c":0,"s":4,"id":2376,"u":"agile%20maneuvers_apg","p":90,"h":1,"n":"Agile Maneuvers"},{"c":0,"s":4,"id":2377,"u":"alchemical%20discoveries_apg","p":61,"h":1,"n":"Alchemical Discoveries"},{"c":0,"s":4,"id":2378,"u":"align%20ki_apg","p":129,"h":1,"n":"Align Ki"},{"c":0,"s":4,"id":2379,"u":"all%20in%20my%20head_apg","p":115,"h":1,"n":"All In My Head"},{"c":0,"s":4,"id":2380,"u":"ally's%20shelter_apg","p":14,"h":1,"n":"Ally's Shelter"},{"c":0,"s":4,"id":2381,"u":"amplifying%20touch_apg","p":120,"h":1,"n":"Amplifying Touch"},{"c":0,"s":4,"id":2382,"u":"analyze%20idiolect_apg","p":178,"h":1,"n":"Analyze Idiolect"},{"c":0,"s":4,"id":2383,"u":"analyze%20weakness_apg","p":135,"h":1,"n":"Analyze Weakness"},{"c":0,"s":4,"id":2384,"u":"ancestral%20blood%20magic_apg","p":139,"h":1,"n":"Ancestral Blood Magic"},{"c":0,"s":4,"id":2385,"u":"ancestral%20linguistics_apg","p":43,"h":1,"n":"Ancestral Linguistics"},{"c":0,"s":4,"id":2386,"u":"ancestral%20mage_apg","p":140,"h":1,"n":"Ancestral Mage"},{"c":0,"s":4,"id":2387,"u":"ancestral%20suspicion_apg","p":43,"h":1,"n":"Ancestral Suspicion"},{"c":0,"s":4,"id":2388,"u":"ancestral%20weaponry_apg","p":128,"h":1,"n":"Ancestral Weaponry"},{"c":0,"s":4,"id":2389,"u":"angel%20of%20death_apg","p":158,"h":1,"n":"Angel Of Death"},{"c":0,"s":4,"id":2390,"u":"angelic%20magic_apg","p":36,"h":1,"n":"Angelic Magic"},{"c":0,"s":4,"id":2391,"u":"angelkin_apg","p":35,"h":1,"n":"Angelkin"},{"c":0,"s":4,"id":2392,"u":"animal%20feature_apg","p":132,"h":1,"n":"Animal Feature"},{"c":0,"s":4,"id":2393,"u":"annotate%20composition_apg","p":113,"h":1,"n":"Annotate Composition"},{"c":0,"s":4,"id":2394,"u":"anoint%20ally_apg","p":139,"h":1,"n":"Anoint Ally"},{"c":0,"s":4,"id":2395,"u":"antagonize_apg","p":88,"h":1,"n":"Antagonize"},{"c":0,"s":4,"id":2396,"u":"anticipate%20ambush_apg","p":135,"h":1,"n":"Anticipate Ambush"},{"c":0,"s":4,"id":2397,"u":"archaeologist%20dedication_apg","p":156,"h":1,"n":"Archaeologist Dedication"},{"c":0,"s":4,"id":2398,"u":"archaeologist's%20luck_apg","p":156,"h":1,"n":"Archaeologist's Luck"},{"c":0,"s":4,"id":2399,"u":"archer%20dedication_apg","p":157,"h":1,"n":"Archer Dedication"},{"c":0,"s":4,"id":2400,"u":"archer's%20aim_apg","p":157,"h":1,"n":"Archer's Aim"},{"c":0,"s":4,"id":2401,"u":"archon%20magic_apg","p":36,"h":1,"n":"Archon Magic"},{"c":0,"s":4,"id":2402,"u":"armor%20assist_apg","p":203,"h":1,"n":"Armor Assist"},{"c":0,"s":4,"id":2403,"u":"armor%20specialist_apg","p":191,"h":1,"n":"Armor Specialist"},{"c":0,"s":4,"id":2404,"u":"armored%20rebuff_apg","p":191,"h":1,"n":"Armored Rebuff"},{"c":0,"s":4,"id":2405,"u":"armored%20stealth_apg","p":203,"h":1,"n":"Armored Stealth"},{"c":0,"s":4,"id":2406,"u":"arrow%20of%20death_apg","p":173,"h":1,"n":"Arrow Of Death"},{"c":0,"s":4,"id":2407,"u":"assassin%20dedication_apg","p":158,"h":1,"n":"Assassin Dedication"},{"c":0,"s":4,"id":2408,"u":"assassinate_apg","p":158,"h":1,"n":"Assassinate"},{"c":0,"s":4,"id":2409,"u":"assured%20identification_apg","p":203,"h":1,"n":"Assured Identification"},{"c":0,"s":4,"id":2410,"u":"assured%20knowledge_apg","p":113,"h":1,"n":"Assured Knowledge"},{"c":0,"s":4,"id":2411,"u":"assured%20ritualist_apg","p":187,"h":1,"n":"Assured Ritualist"},{"c":0,"s":4,"id":2412,"u":"athletic%20might_apg","p":18,"h":1,"n":"Athletic Might"},{"c":0,"s":4,"id":2413,"u":"athletic%20strategist_apg","p":60,"h":1,"n":"Athletic Strategist"},{"c":0,"s":4,"id":2414,"u":"attack%20of%20opportunity%20(swashbuckler)_apg","p":91,"a":"Swashbuckler","h":1,"n":"Attack Of Opportunity"},{"c":0,"s":4,"id":2415,"u":"aura%20of%20despair_apg","p":119,"h":1,"n":"Aura Of Despair"},{"c":0,"s":4,"id":2416,"u":"aura%20of%20preservation_apg","p":121,"h":1,"n":"Aura Of Preservation"},{"c":0,"s":4,"id":2417,"u":"avalanche%20strike_apg","p":183,"h":1,"n":"Avalanche Strike"},{"c":0,"s":4,"id":2418,"u":"avenge%20ally_apg","p":43,"h":1,"n":"Avenge Ally"},{"c":0,"s":4,"id":2419,"u":"azata%20magic_apg","p":36,"h":1,"n":"Azata Magic"},{"c":0,"s":4,"id":2420,"u":"back%20to%20back_apg","p":181,"h":1,"n":"Back To Back"},{"c":0,"s":4,"id":2421,"u":"barreling%20charge%20(barbarian)_apg","p":108,"a":"Barbarian","h":1,"n":"Barreling Charge"},{"c":0,"s":4,"id":2422,"u":"barreling%20charge%20(fighter)_apg","p":126,"a":"Fighter","h":1,"n":"Barreling Charge"},{"c":0,"s":4,"id":2423,"u":"bashing%20charge_apg","p":108,"h":1,"n":"Bashing Charge"},{"c":0,"s":4,"id":2424,"u":"basic%20deduction_apg","p":151,"h":1,"n":"Basic Deduction"},{"c":0,"s":4,"id":2425,"u":"basic%20eldritch%20archer%20spellcasting_apg","p":172,"h":1,"n":"Basic Eldritch Archer Spellcasting"},{"c":0,"s":4,"id":2426,"u":"basic%20flair_apg","p":153,"h":1,"n":"Basic Flair"},{"c":0,"s":4,"id":2427,"u":"basic%20lesson_apg","p":101,"h":1,"n":"Basic Lesson"},{"c":0,"s":4,"id":2428,"u":"basic%20mysteries_apg","p":152,"h":1,"n":"Basic Mysteries"},{"c":0,"s":4,"id":2429,"u":"basic%20oracle%20spellcasting_apg","p":152,"h":1,"n":"Basic Oracle Spellcasting"},{"c":0,"s":4,"id":2430,"u":"basic%20scroll%20cache_apg","p":189,"h":1,"n":"Basic Scroll Cache"},{"c":0,"s":4,"id":2431,"u":"basic%20witch%20spellcasting_apg","p":154,"h":1,"n":"Basic Witch Spellcasting"},{"c":0,"s":4,"id":2432,"u":"basic%20witchcraft_apg","p":154,"h":1,"n":"Basic Witchcraft"},{"c":0,"s":4,"id":2433,"u":"bastion%20dedication_apg","p":159,"h":1,"n":"Bastion Dedication"},{"c":0,"s":4,"id":2434,"u":"battle%20planner_apg","p":203,"h":1,"n":"Battle Planner"},{"c":0,"s":4,"id":2435,"u":"beast%20trainer_apg","p":18,"h":1,"n":"Beast Trainer"},{"c":0,"s":4,"id":2436,"u":"beastmaster%20bond_apg","p":160,"h":1,"n":"Beastmaster Bond"},{"c":0,"s":4,"id":2437,"u":"beastmaster%20dedication_apg","p":160,"h":1,"n":"Beastmaster Dedication"},{"c":0,"s":4,"id":2438,"u":"beastmaster's%20call_apg","p":161,"h":1,"n":"Beastmaster's Call"},{"c":0,"s":4,"id":2439,"u":"beastmaster's%20trance_apg","p":160,"h":1,"n":"Beastmaster's Trance"},{"c":0,"s":4,"id":2440,"u":"bespell%20weapon_apg","p":79,"h":1,"n":"Bespell Weapon"},{"c":0,"s":4,"id":2441,"u":"between%20the%20scales_apg","p":15,"h":1,"n":"Between The Scales"},{"c":0,"s":4,"id":2442,"u":"big%20mouth_apg","p":23,"h":1,"n":"Big Mouth"},{"c":0,"s":4,"id":2443,"u":"biographical%20eye_apg","p":203,"h":1,"n":"Biographical Eye"},{"c":0,"s":4,"id":2444,"u":"black%20cat%20curse_apg","p":11,"h":1,"n":"Black Cat Curse"},{"c":0,"s":4,"id":2445,"u":"blaze%20of%20revelation_apg","p":81,"h":1,"n":"Blaze Of Revelation"},{"c":0,"s":4,"id":2446,"u":"bleeding%20finisher_apg","p":91,"h":1,"n":"Bleeding Finisher"},{"c":0,"s":4,"id":2447,"u":"blessed%20blood_apg","p":36,"h":1,"n":"Blessed Blood"},{"c":0,"s":4,"id":2448,"u":"blessed%20denial_apg","p":162,"h":1,"n":"Blessed Denial"},{"c":0,"s":4,"id":2449,"u":"blessed%20one%20dedication_apg","p":162,"h":1,"n":"Blessed One Dedication"},{"c":0,"s":4,"id":2450,"u":"blessed%20sacrifice_apg","p":162,"h":1,"n":"Blessed Sacrifice"},{"c":0,"s":4,"id":2451,"u":"blessed%20spell_apg","p":162,"h":1,"n":"Blessed Spell"},{"c":0,"s":4,"id":2452,"u":"blind-fight%20(investigator)_apg","p":63,"a":"Investigator","h":1,"n":"Blind-fight"},{"c":0,"s":4,"id":2453,"u":"blood%20component%20substitution_apg","p":140,"h":1,"n":"Blood Component Substitution"},{"c":0,"s":4,"id":2454,"u":"bloodletting%20fangs_apg","p":33,"h":1,"n":"Bloodletting Fangs"},{"c":0,"s":4,"id":2455,"u":"bloodline%20mutation_apg","p":141,"h":1,"n":"Bloodline Mutation"},{"c":0,"s":4,"id":2456,"u":"bloody%20blows_apg","p":18,"h":1,"n":"Bloody Blows"},{"c":0,"s":4,"id":2457,"u":"bloody%20debilitation_apg","p":136,"h":1,"n":"Bloody Debilitation"},{"c":0,"s":4,"id":2458,"u":"bon%20mot_apg","p":203,"h":1,"n":"Bon Mot"},{"c":0,"s":4,"id":2459,"u":"boneyard's%20call_apg","p":38,"h":1,"n":"Boneyard's Call"},{"c":0,"s":4,"id":2460,"u":"bounce%20back_apg","p":47,"h":1,"n":"Bounce Back"},{"c":0,"s":4,"id":2461,"u":"bounty%20hunter%20dedication_apg","p":163,"h":1,"n":"Bounty Hunter Dedication"},{"c":0,"s":4,"id":2462,"u":"breath%20of%20the%20dragon_apg","p":169,"h":1,"n":"Breath Of The Dragon"},{"c":0,"s":4,"id":2463,"u":"brine%20may_apg","p":31,"h":1,"n":"Brine May"},{"c":0,"s":4,"id":2464,"u":"buckler%20dance_apg","p":91,"h":1,"n":"Buckler Dance"},{"c":0,"s":4,"id":2465,"u":"buckler%20expertise_apg","p":88,"h":1,"n":"Buckler Expertise"},{"c":0,"s":4,"id":2466,"u":"bullseye_apg","p":136,"h":1,"n":"Bullseye"},{"c":0,"s":4,"id":2467,"u":"cackle_apg","p":100,"h":1,"n":"Cackle"},{"c":0,"s":4,"id":2468,"u":"cadence%20call_apg","p":180,"h":1,"n":"Cadence Call"},{"c":0,"s":4,"id":2469,"u":"call%20and%20response_apg","p":113,"h":1,"n":"Call And Response"},{"c":0,"s":4,"id":2470,"u":"call%20bonded%20item_apg","p":142,"h":1,"n":"Call Bonded Item"},{"c":0,"s":4,"id":2471,"u":"call%20your%20shot_apg","p":175,"h":1,"n":"Call Your Shot"},{"c":0,"s":4,"id":2472,"u":"called_apg","p":31,"h":1,"n":"Called"},{"c":0,"s":4,"id":2473,"u":"callow%20may_apg","p":31,"h":1,"n":"Callow May"},{"c":0,"s":4,"id":2474,"u":"cantrip%20expansion%20(oracle)_apg","p":79,"a":"Oracle","h":1,"n":"Cantrip Expansion"},{"c":0,"s":4,"id":2475,"u":"cantrip%20expansion%20(witch)_apg","p":101,"a":"Witch","h":1,"n":"Cantrip Expansion"},{"c":0,"s":4,"id":2476,"u":"caravan%20leader_apg","p":204,"h":1,"n":"Caravan Leader"},{"c":0,"s":4,"id":2477,"u":"cat's%20luck_apg","p":10,"h":1,"n":"Cat's Luck"},{"c":0,"s":4,"id":2478,"u":"caterwaul_apg","p":11,"h":1,"n":"Caterwaul"},{"c":0,"s":4,"id":2479,"u":"catfolk%20lore_apg","p":10,"h":1,"n":"Catfolk Lore"},{"c":0,"s":4,"id":2480,"u":"catfolk%20weapon%20expertise_apg","p":11,"h":1,"n":"Catfolk Weapon Expertise"},{"c":0,"s":4,"id":2481,"u":"catfolk%20weapon%20familiarity_apg","p":10,"h":1,"n":"Catfolk Weapon Familiarity"},{"c":0,"s":4,"id":2482,"u":"catfolk%20weapon%20rake_apg","p":10,"h":1,"n":"Catfolk Weapon Rake"},{"c":0,"s":4,"id":2483,"u":"cauldron_apg","p":100,"h":1,"n":"Cauldron"},{"c":0,"s":4,"id":2484,"u":"cautious%20curiosity_apg","p":44,"h":1,"n":"Cautious Curiosity"},{"c":0,"s":4,"id":2485,"u":"cavalier%20dedication_apg","p":164,"h":1,"n":"Cavalier Dedication"},{"c":0,"s":4,"id":2486,"u":"cavalier's%20banner_apg","p":164,"h":1,"n":"Cavalier's Banner"},{"c":0,"s":4,"id":2487,"u":"cavalier's%20charge_apg","p":164,"h":1,"n":"Cavalier's Charge"},{"c":0,"s":4,"id":2488,"u":"celebrity%20dedication_apg","p":166,"h":1,"n":"Celebrity Dedication"},{"c":0,"s":4,"id":2489,"u":"celestial%20eyes_apg","p":35,"h":1,"n":"Celestial Eyes"},{"c":0,"s":4,"id":2490,"u":"celestial%20lore_apg","p":35,"h":1,"n":"Celestial Lore"},{"c":0,"s":4,"id":2491,"u":"celestial%20resistance_apg","p":36,"h":1,"n":"Celestial Resistance"},{"c":0,"s":4,"id":2492,"u":"celestial%20strikes_apg","p":36,"h":1,"n":"Celestial Strikes"},{"c":0,"s":4,"id":2493,"u":"celestial%20wings_apg","p":36,"h":1,"n":"Celestial Wings"},{"c":0,"s":4,"id":2494,"u":"celestial%20word_apg","p":36,"h":1,"n":"Celestial Word"},{"c":0,"s":4,"id":2495,"u":"changeling%20lore_apg","p":31,"h":1,"n":"Changeling Lore"},{"c":0,"s":4,"id":2496,"u":"charmed%20life_apg","p":89,"h":1,"n":"Charmed Life"},{"c":0,"s":4,"id":2497,"u":"cheat%20death_apg","p":92,"h":1,"n":"Cheat Death"},{"c":0,"s":4,"id":2498,"u":"cheek%20pouches_apg","p":22,"h":1,"n":"Cheek Pouches"},{"c":0,"s":4,"id":2499,"u":"chemical%20contagion_apg","p":107,"h":1,"n":"Chemical Contagion"},{"c":0,"s":4,"id":2500,"u":"claws%20of%20the%20dragon_apg","p":168,"h":1,"n":"Claws Of The Dragon"},{"c":0,"s":4,"id":2501,"u":"clear%20the%20way_apg","p":183,"h":1,"n":"Clear The Way"},{"c":0,"s":4,"id":2502,"u":"clever%20gambit_apg","p":134,"h":1,"n":"Clever Gambit"},{"c":0,"s":4,"id":2503,"u":"climbing%20claws_apg","p":10,"h":1,"n":"Climbing Claws"},{"c":0,"s":4,"id":2504,"u":"cling_apg","p":45,"h":1,"n":"Cling"},{"c":0,"s":4,"id":2505,"u":"clinging%20shadows%20initiate_apg","p":129,"h":1,"n":"Clinging Shadows Initiate"},{"c":0,"s":4,"id":2506,"u":"clue%20them%20all%20in_apg","p":63,"h":1,"n":"Clue Them All In"},{"c":0,"s":4,"id":2507,"u":"cobra%20envenom_apg","p":129,"h":1,"n":"Cobra Envenom"},{"c":0,"s":4,"id":2508,"u":"cobra%20stance_apg","p":128,"h":1,"n":"Cobra Stance"},{"c":0,"s":4,"id":2509,"u":"combat%20assessment_apg","p":126,"h":1,"n":"Combat Assessment"},{"c":0,"s":4,"id":2510,"u":"combat%20reading_apg","p":112,"h":1,"n":"Combat Reading"},{"c":0,"s":4,"id":2511,"u":"combination%20finisher_apg","p":91,"h":1,"n":"Combination Finisher"},{"c":0,"s":4,"id":2512,"u":"command%20attention_apg","p":166,"h":1,"n":"Command Attention"},{"c":0,"s":4,"id":2513,"u":"conceal%20spell_apg","p":101,"h":1,"n":"Conceal Spell"},{"c":0,"s":4,"id":2514,"u":"concealing%20legerdemain_apg","p":204,"h":1,"n":"Concealing Legerdemain"},{"c":0,"s":4,"id":2515,"u":"conceited%20mindset_apg","p":118,"h":1,"n":"Conceited Mindset"},{"c":0,"s":4,"id":2516,"u":"connect%20the%20dots_apg","p":62,"h":1,"n":"Connect The Dots"},{"c":0,"s":4,"id":2517,"u":"consult%20the%20spirits_apg","p":204,"h":1,"n":"Consult The Spirits"},{"c":0,"s":4,"id":2518,"u":"consume%20spell_apg","p":141,"h":1,"n":"Consume Spell"},{"c":0,"s":4,"id":2519,"u":"contortionist_apg","p":155,"h":1,"n":"Contortionist"},{"c":0,"s":4,"id":2520,"u":"convincing%20illusion_apg","p":142,"h":1,"n":"Convincing Illusion"},{"c":0,"s":4,"id":2521,"u":"coordinated%20charge_apg","p":181,"h":1,"n":"Coordinated Charge"},{"c":0,"s":4,"id":2522,"u":"corrupted%20shield_apg","p":119,"h":1,"n":"Corrupted Shield"},{"c":0,"s":4,"id":2523,"u":"counterspell%20(witch)_apg","p":100,"a":"Witch","h":1,"n":"Counterspell"},{"c":0,"s":4,"id":2524,"u":"courageous%20advance_apg","p":112,"h":1,"n":"Courageous Advance"},{"c":0,"s":4,"id":2525,"u":"courageous%20assault_apg","p":114,"h":1,"n":"Courageous Assault"},{"c":0,"s":4,"id":2526,"u":"courageous%20onslaught_apg","p":115,"h":1,"n":"Courageous Onslaught"},{"c":0,"s":4,"id":2527,"u":"courageous%20opportunity_apg","p":113,"h":1,"n":"Courageous Opportunity"},{"c":0,"s":4,"id":2528,"u":"crafter's%20appraisal_apg","p":204,"h":1,"n":"Crafter's Appraisal"},{"c":0,"s":4,"id":2529,"u":"criminal%20connections_apg","p":204,"h":1,"n":"Criminal Connections"},{"c":0,"s":4,"id":2530,"u":"cringe_apg","p":14,"h":1,"n":"Cringe"},{"c":0,"s":4,"id":2531,"u":"crossbow%20terror_apg","p":157,"h":1,"n":"Crossbow Terror"},{"c":0,"s":4,"id":2532,"u":"crude%20communication_apg","p":178,"h":1,"n":"Crude Communication"},{"c":0,"s":4,"id":2533,"u":"cruelty_apg","p":119,"h":1,"n":"Cruelty"},{"c":0,"s":4,"id":2534,"u":"current%20spell_apg","p":124,"h":1,"n":"Current Spell"},{"c":0,"s":4,"id":2535,"u":"cut%20from%20the%20air_apg","p":127,"h":1,"n":"Cut From The Air"},{"c":0,"s":4,"id":2536,"u":"daemon%20magic_apg","p":40,"h":1,"n":"Daemon Magic"},{"c":0,"s":4,"id":2537,"u":"dance%20underfoot_apg","p":46,"h":1,"n":"Dance Underfoot"},{"c":0,"s":4,"id":2538,"u":"dandy%20dedication_apg","p":167,"h":1,"n":"Dandy Dedication"},{"c":0,"s":4,"id":2539,"u":"dazing%20blow_apg","p":126,"h":1,"n":"Dazing Blow"},{"c":0,"s":4,"id":2540,"u":"deadly%20grace_apg","p":93,"h":1,"n":"Deadly Grace"},{"c":0,"s":4,"id":2541,"u":"deadly%20strikes_apg","p":131,"h":1,"n":"Deadly Strikes"},{"c":0,"s":4,"id":2542,"u":"death's%20drums_apg","p":19,"h":1,"n":"Death's Drums"},{"c":0,"s":4,"id":2543,"u":"debilitating%20dichotomy_apg","p":80,"h":1,"n":"Debilitating Dichotomy"},{"c":0,"s":4,"id":2544,"u":"deceptive%20worship_apg","p":204,"h":1,"n":"Deceptive Worship"},{"c":0,"s":4,"id":2545,"u":"deeper%20dabbler_apg","p":195,"h":1,"n":"Deeper Dabbler"},{"c":0,"s":4,"id":2546,"u":"defend%20mount_apg","p":164,"h":1,"n":"Defend Mount"},{"c":0,"s":4,"id":2547,"u":"defensive%20coordination_apg","p":113,"h":1,"n":"Defensive Coordination"},{"c":0,"s":4,"id":2548,"u":"defy%20the%20darkness_apg","p":42,"h":1,"n":"Defy The Darkness"},{"c":0,"s":4,"id":2549,"u":"deimatic%20display_apg","p":124,"h":1,"n":"Deimatic Display"},{"c":0,"s":4,"id":2550,"u":"demolition%20charge_apg","p":106,"h":1,"n":"Demolition Charge"},{"c":0,"s":4,"id":2551,"u":"demon%20magic_apg","p":40,"h":1,"n":"Demon Magic"},{"c":0,"s":4,"id":2552,"u":"derring-do_apg","p":91,"h":1,"n":"Derring-do"},{"c":0,"s":4,"id":2553,"u":"desperate%20prayer_apg","p":118,"h":1,"n":"Desperate Prayer"},{"c":0,"s":4,"id":2554,"u":"destructive%20block_apg","p":159,"h":1,"n":"Destructive Block"},{"c":0,"s":4,"id":2555,"u":"detective's%20readiness_apg","p":61,"h":1,"n":"Detective's Readiness"},{"c":0,"s":4,"id":2556,"u":"determined%20dash_apg","p":110,"h":1,"n":"Determined Dash"},{"c":0,"s":4,"id":2557,"u":"devil%20magic_apg","p":41,"h":1,"n":"Devil Magic"},{"c":0,"s":4,"id":2558,"u":"didactic%20strike_apg","p":65,"h":1,"n":"Didactic Strike"},{"c":0,"s":4,"id":2559,"u":"directed%20audience_apg","p":112,"h":1,"n":"Directed Audience"},{"c":0,"s":4,"id":2560,"u":"disarming%20assault_apg","p":110,"h":1,"n":"Disarming Assault"},{"c":0,"s":4,"id":2561,"u":"disarming%20block_apg","p":159,"h":1,"n":"Disarming Block"},{"c":0,"s":4,"id":2562,"u":"disarming%20flair_apg","p":88,"h":1,"n":"Disarming Flair"},{"c":0,"s":4,"id":2563,"u":"disciple's%20breath_apg","p":169,"h":1,"n":"Disciple's Breath"},{"c":0,"s":4,"id":2564,"u":"discordant%20voice_apg","p":115,"h":1,"n":"Discordant Voice"},{"c":0,"s":4,"id":2565,"u":"discreet%20inquiry_apg","p":204,"h":1,"n":"Discreet Inquiry"},{"c":0,"s":4,"id":2566,"u":"disorienting%20opening_apg","p":126,"h":1,"n":"Disorienting Opening"},{"c":0,"s":4,"id":2567,"u":"distracting%20flattery_apg","p":167,"h":1,"n":"Distracting Flattery"},{"c":0,"s":4,"id":2568,"u":"distracting%20performance_apg","p":205,"h":1,"n":"Distracting Performance"},{"c":0,"s":4,"id":2569,"u":"disturbing%20knowledge_apg","p":205,"h":1,"n":"Disturbing Knowledge"},{"c":0,"s":4,"id":2570,"u":"diverse%20mystery_apg","p":81,"h":1,"n":"Diverse Mystery"},{"c":0,"s":4,"id":2571,"u":"diverting%20vortex_apg","p":139,"h":1,"n":"Diverting Vortex"},{"c":0,"s":4,"id":2572,"u":"divine%20access_apg","p":79,"h":1,"n":"Divine Access"},{"c":0,"s":4,"id":2573,"u":"divine%20aegis_apg","p":79,"h":1,"n":"Divine Aegis"},{"c":0,"s":4,"id":2574,"u":"divine%20countermeasures_apg","p":36,"h":1,"n":"Divine Countermeasures"},{"c":0,"s":4,"id":2575,"u":"divine%20effusion_apg","p":81,"h":1,"n":"Divine Effusion"},{"c":0,"s":4,"id":2576,"u":"diviner%20sense_apg","p":143,"h":1,"n":"Diviner Sense"},{"c":0,"s":4,"id":2577,"u":"doctor's%20visitation_apg","p":184,"h":1,"n":"Doctor's Visitation"},{"c":0,"s":4,"id":2578,"u":"dodge%20away_apg","p":155,"h":1,"n":"Dodge Away"},{"c":0,"s":4,"id":2579,"u":"dodging%20roll_apg","p":130,"h":1,"n":"Dodging Roll"},{"c":0,"s":4,"id":2580,"u":"domain%20acumen_apg","p":79,"h":1,"n":"Domain Acumen"},{"c":0,"s":4,"id":2581,"u":"domain%20fluency_apg","p":80,"h":1,"n":"Domain Fluency"},{"c":0,"s":4,"id":2582,"u":"doublespeak_apg","p":205,"h":1,"n":"Doublespeak"},{"c":0,"s":4,"id":2583,"u":"dracomancer_apg","p":15,"h":1,"n":"Dracomancer"},{"c":0,"s":4,"id":2584,"u":"draconic%20arrogance_apg","p":108,"h":1,"n":"Draconic Arrogance"},{"c":0,"s":4,"id":2585,"u":"draconic%20scent_apg","p":168,"h":1,"n":"Draconic Scent"},{"c":0,"s":4,"id":2586,"u":"dragging%20strike_apg","p":126,"h":1,"n":"Dragging Strike"},{"c":0,"s":4,"id":2587,"u":"dragon%20arcana_apg","p":168,"h":1,"n":"Dragon Arcana"},{"c":0,"s":4,"id":2588,"u":"dragon%20disciple%20dedication_apg","p":168,"h":1,"n":"Dragon Disciple Dedication"},{"c":0,"s":4,"id":2589,"u":"dragon's%20breath_apg","p":15,"h":1,"n":"Dragon's Breath"},{"c":0,"s":4,"id":2590,"u":"dragon's%20presence_apg","p":14,"h":1,"n":"Dragon's Presence"},{"c":0,"s":4,"id":2591,"u":"dread%20marshal%20stance_apg","p":180,"h":1,"n":"Dread Marshal Stance"},{"c":0,"s":4,"id":2592,"u":"dream%20may_apg","p":31,"h":1,"n":"Dream May"},{"c":0,"s":4,"id":2593,"u":"dual%20finisher_apg","p":91,"h":1,"n":"Dual Finisher"},{"c":0,"s":4,"id":2594,"u":"dual%20onslaught_apg","p":170,"h":1,"n":"Dual Onslaught"},{"c":0,"s":4,"id":2595,"u":"dual%20thrower_apg","p":170,"h":1,"n":"Dual Thrower"},{"c":0,"s":4,"id":2596,"u":"dual-weapon%20blitz_apg","p":170,"h":1,"n":"Dual-Weapon Blitz"},{"c":0,"s":4,"id":2597,"u":"dual-weapon%20reload_apg","p":170,"h":1,"n":"Dual-Weapon Reload"},{"c":0,"s":4,"id":2598,"u":"dual-weapon%20warrior%20dedication_apg","p":170,"h":1,"n":"Dual-Weapon Warrior Dedication"},{"c":0,"s":4,"id":2599,"u":"dueling%20dance_apg","p":92,"h":1,"n":"Dueling Dance"},{"c":0,"s":4,"id":2600,"u":"dueling%20parry_apg","p":88,"h":1,"n":"Dueling Parry"},{"c":0,"s":4,"id":2601,"u":"duelist%20dedication_apg","p":171,"h":1,"n":"Duelist Dedication"},{"c":0,"s":4,"id":2602,"u":"duelist's%20challenge_apg","p":171,"h":1,"n":"Duelist's Challenge"},{"c":0,"s":4,"id":2603,"u":"duskwalker%20lore_apg","p":38,"h":1,"n":"Duskwalker Lore"},{"c":0,"s":4,"id":2604,"u":"duskwalker%20magic_apg","p":38,"h":1,"n":"Duskwalker Magic"},{"c":0,"s":4,"id":2605,"u":"dwarven%20doughtiness_apg","p":42,"h":1,"n":"Dwarven Doughtiness"},{"c":0,"s":4,"id":2606,"u":"dwarven%20reinforcement_apg","p":42,"h":1,"n":"Dwarven Reinforcement"},{"c":0,"s":4,"id":2607,"u":"earned%20glory_apg","p":47,"h":1,"n":"Earned Glory"},{"c":0,"s":4,"id":2608,"u":"earworm_apg","p":114,"h":1,"n":"Earworm"},{"c":0,"s":4,"id":2609,"u":"eat%20fortune_apg","p":26,"h":1,"n":"Eat Fortune"},{"c":0,"s":4,"id":2610,"u":"ebb%20and%20flow_apg","p":123,"h":1,"n":"Ebb And Flow"},{"c":0,"s":4,"id":2611,"u":"echoes%20in%20stone_apg","p":42,"h":1,"n":"Echoes In Stone"},{"c":0,"s":4,"id":2612,"u":"echoing%20spell_apg","p":141,"h":1,"n":"Echoing Spell"},{"c":0,"s":4,"id":2613,"u":"eclectic%20sword%20training_apg","p":27,"h":1,"n":"Eclectic Sword Training"},{"c":0,"s":4,"id":2614,"u":"educate%20allies_apg","p":113,"h":1,"n":"Educate Allies"},{"c":0,"s":4,"id":2615,"u":"efficient%20rituals_apg","p":187,"h":1,"n":"Efficient Rituals"},{"c":0,"s":4,"id":2616,"u":"effortless%20concentration_apg","p":105,"h":1,"n":"Effortless Concentration"},{"c":0,"s":4,"id":2617,"u":"elaborate%20flourish_apg","p":139,"h":1,"n":"Elaborate Flourish"},{"c":0,"s":4,"id":2618,"u":"eldritch%20archer%20dedication_apg","p":172,"h":1,"n":"Eldritch Archer Dedication"},{"c":0,"s":4,"id":2619,"u":"eldritch%20debilitations_apg","p":136,"h":1,"n":"Eldritch Debilitations"},{"c":0,"s":4,"id":2620,"u":"eldritch%20nails_apg","p":102,"h":1,"n":"Eldritch Nails"},{"c":0,"s":4,"id":2621,"u":"elemental%20summons_apg","p":124,"h":1,"n":"Elemental Summons"},{"c":0,"s":4,"id":2622,"u":"elite%20dracomancer_apg","p":15,"h":1,"n":"Elite Dracomancer"},{"c":0,"s":4,"id":2623,"u":"elucidating%20mercy_apg","p":120,"h":1,"n":"Elucidating Mercy"},{"c":0,"s":4,"id":2624,"u":"elven%20aloofness_apg","p":43,"h":1,"n":"Elven Aloofness"},{"c":0,"s":4,"id":2625,"u":"embrace%20the%20pain_apg","p":111,"h":1,"n":"Embrace The Pain"},{"c":0,"s":4,"id":2626,"u":"empathetic%20plea_apg","p":44,"h":1,"n":"Empathetic Plea"},{"c":0,"s":4,"id":2627,"u":"empyreal%20blessing_apg","p":36,"h":1,"n":"Empyreal Blessing"},{"c":0,"s":4,"id":2628,"u":"enchanting%20arrow_apg","p":173,"h":1,"n":"Enchanting Arrow"},{"c":0,"s":4,"id":2629,"u":"endemic%20herbs_apg","p":176,"h":1,"n":"Endemic Herbs"},{"c":0,"s":4,"id":2630,"u":"energetic%20resonance_apg","p":139,"h":1,"n":"Energetic Resonance"},{"c":0,"s":4,"id":2631,"u":"energy%20ablation_apg","p":142,"h":1,"n":"Energy Ablation"},{"c":0,"s":4,"id":2632,"u":"energy%20fusion_apg","p":140,"h":1,"n":"Energy Fusion"},{"c":0,"s":4,"id":2633,"u":"energy%20ward_apg","p":140,"h":1,"n":"Energy Ward"},{"c":0,"s":4,"id":2634,"u":"enforce%20oath_apg","p":120,"h":1,"n":"Enforce Oath"},{"c":0,"s":4,"id":2635,"u":"enhanced%20familiar%20(witch)_apg","p":102,"a":"Witch","h":1,"n":"Enhanced Familiar"},{"c":0,"s":4,"id":2636,"u":"enigma's%20knowledge_apg","p":114,"h":1,"n":"Enigma's Knowledge"},{"c":0,"s":4,"id":2637,"u":"enlarge%20companion_apg","p":132,"h":1,"n":"Enlarge Companion"},{"c":0,"s":4,"id":2638,"u":"enthralling%20allure_apg","p":33,"h":1,"n":"Enthralling Allure"},{"c":0,"s":4,"id":2639,"u":"entreat%20with%20forebears_apg","p":139,"h":1,"n":"Entreat With Forebears"},{"c":0,"s":4,"id":2640,"u":"ephemeral%20tracking_apg","p":132,"h":1,"n":"Ephemeral Tracking"},{"c":0,"s":4,"id":2641,"u":"esoteric%20oath_apg","p":118,"h":1,"n":"Esoteric Oath"},{"c":0,"s":4,"id":2642,"u":"eternal%20wings_apg","p":36,"h":1,"n":"Eternal Wings"},{"c":0,"s":4,"id":2643,"u":"evasiveness_apg","p":153,"h":1,"n":"Evasiveness"},{"c":0,"s":4,"id":2644,"u":"everyone's%20a%20suspect_apg","p":65,"h":1,"n":"Everyone's A Suspect"},{"c":0,"s":4,"id":2645,"u":"exhort%20the%20faithful_apg","p":205,"h":1,"n":"Exhort The Faithful"},{"c":0,"s":4,"id":2646,"u":"expand%20aura_apg","p":121,"h":1,"n":"Expand Aura"},{"c":0,"s":4,"id":2647,"u":"expanded%20luck_apg","p":10,"h":1,"n":"Expanded Luck"},{"c":0,"s":4,"id":2648,"u":"expert%20backstabber_apg","p":158,"h":1,"n":"Expert Backstabber"},{"c":0,"s":4,"id":2649,"u":"expert%20disassembly_apg","p":190,"h":1,"n":"Expert Disassembly"},{"c":0,"s":4,"id":2650,"u":"expert%20eldritch%20archer%20spellcasting_apg","p":173,"h":1,"n":"Expert Eldritch Archer Spellcasting"},{"c":0,"s":4,"id":2651,"u":"expert%20herbalism_apg","p":176,"h":1,"n":"Expert Herbalism"},{"c":0,"s":4,"id":2652,"u":"expert%20oracle%20spellcasting_apg","p":152,"h":1,"n":"Expert Oracle Spellcasting"},{"c":0,"s":4,"id":2653,"u":"expert%20poisoner_apg","p":186,"h":1,"n":"Expert Poisoner"},{"c":0,"s":4,"id":2654,"u":"expert%20scroll%20cache_apg","p":189,"h":1,"n":"Expert Scroll Cache"},{"c":0,"s":4,"id":2655,"u":"expert%20witch%20spellcasting_apg","p":154,"h":1,"n":"Expert Witch Spellcasting"},{"c":0,"s":4,"id":2656,"u":"express%20rider_apg","p":206,"h":1,"n":"Express Rider"},{"c":0,"s":4,"id":2657,"u":"extra%20squishy_apg","p":45,"h":1,"n":"Extra Squishy"},{"c":0,"s":4,"id":2658,"u":"eye%20for%20numbers_apg","p":206,"h":1,"n":"Eye For Numbers"},{"c":0,"s":4,"id":2659,"u":"eye%20for%20treasure_apg","p":42,"h":1,"n":"Eye For Treasure"},{"c":0,"s":4,"id":2660,"u":"eyes%20of%20night_apg","p":33,"h":1,"n":"Eyes Of Night"},{"c":0,"s":4,"id":2661,"u":"fabricated%20connections_apg","p":167,"h":1,"n":"Fabricated Connections"},{"c":0,"s":4,"id":2662,"u":"familiar%20conduit_apg","p":174,"h":1,"n":"Familiar Conduit"},{"c":0,"s":4,"id":2663,"u":"familiar%20mascot_apg","p":174,"h":1,"n":"Familiar Mascot"},{"c":0,"s":4,"id":2664,"u":"familiar%20master%20dedication_apg","p":174,"h":1,"n":"Familiar Master Dedication"},{"c":0,"s":4,"id":2665,"u":"familiar's%20eyes_apg","p":104,"h":1,"n":"Familiar's Eyes"},{"c":0,"s":4,"id":2666,"u":"familiar's%20language_apg","p":102,"h":1,"n":"Familiar's Language"},{"c":0,"s":4,"id":2667,"u":"fancy%20moves_apg","p":175,"h":1,"n":"Fancy Moves"},{"c":0,"s":4,"id":2668,"u":"fangs_apg","p":33,"h":1,"n":"Fangs"},{"c":0,"s":4,"id":2669,"u":"far%20throw_apg","p":135,"h":1,"n":"Far Throw"},{"c":0,"s":4,"id":2670,"u":"felicitous%20riposte_apg","p":93,"h":1,"n":"Felicitous Riposte"},{"c":0,"s":4,"id":2671,"u":"ferocious%20beasts_apg","p":19,"h":1,"n":"Ferocious Beasts"},{"c":0,"s":4,"id":2672,"u":"fiend's%20door_apg","p":41,"h":1,"n":"Fiend's Door"},{"c":0,"s":4,"id":2673,"u":"fiendish%20eyes_apg","p":39,"h":1,"n":"Fiendish Eyes"},{"c":0,"s":4,"id":2674,"u":"fiendish%20form_apg","p":121,"h":1,"n":"Fiendish Form"},{"c":0,"s":4,"id":2675,"u":"fiendish%20lore_apg","p":39,"h":1,"n":"Fiendish Lore"},{"c":0,"s":4,"id":2676,"u":"fiendish%20mount_apg","p":121,"h":1,"n":"Fiendish Mount"},{"c":0,"s":4,"id":2677,"u":"fiendish%20resistance_apg","p":40,"h":1,"n":"Fiendish Resistance"},{"c":0,"s":4,"id":2678,"u":"fiendish%20strikes_apg","p":41,"h":1,"n":"Fiendish Strikes"},{"c":0,"s":4,"id":2679,"u":"fiendish%20wings_apg","p":41,"h":1,"n":"Fiendish Wings"},{"c":0,"s":4,"id":2680,"u":"fiendish%20word_apg","p":41,"h":1,"n":"Fiendish Word"},{"c":0,"s":4,"id":2681,"u":"finishing%20follow-through_apg","p":89,"h":1,"n":"Finishing Follow-through"},{"c":0,"s":4,"id":2682,"u":"finishing%20precision_apg","p":153,"h":1,"n":"Finishing Precision"},{"c":0,"s":4,"id":2683,"u":"first%20revelation_apg","p":152,"h":1,"n":"First Revelation"},{"c":0,"s":4,"id":2684,"u":"flamboyant%20athlete_apg","p":89,"h":1,"n":"Flamboyant Athlete"},{"c":0,"s":4,"id":2685,"u":"flamboyant%20leap_apg","p":92,"h":1,"n":"Flamboyant Leap"},{"c":0,"s":4,"id":2686,"u":"fleeting%20shadow_apg","p":188,"h":1,"n":"Fleeting Shadow"},{"c":0,"s":4,"id":2687,"u":"flensing%20slice_apg","p":170,"h":1,"n":"Flensing Slice"},{"c":0,"s":4,"id":2688,"u":"flexible%20ritualist_apg","p":187,"h":1,"n":"Flexible Ritualist"},{"c":0,"s":4,"id":2689,"u":"flexible%20studies_apg","p":60,"h":1,"n":"Flexible Studies"},{"c":0,"s":4,"id":2690,"u":"flinging%20blow_apg","p":130,"h":1,"n":"Flinging Blow"},{"c":0,"s":4,"id":2691,"u":"flying%20blade_apg","p":88,"h":1,"n":"Flying Blade"},{"c":0,"s":4,"id":2692,"u":"focused%20fascination_apg","p":88,"h":1,"n":"Focused Fascination"},{"c":0,"s":4,"id":2693,"u":"focused%20shot_apg","p":130,"h":1,"n":"Focused Shot"},{"c":0,"s":4,"id":2694,"u":"folksy%20patter_apg","p":46,"h":1,"n":"Folksy Patter"},{"c":0,"s":4,"id":2695,"u":"follow-up%20assault_apg","p":110,"h":1,"n":"Follow-up Assault"},{"c":0,"s":4,"id":2696,"u":"follow-up%20strike_apg","p":182,"h":1,"n":"Follow-up Strike"},{"c":0,"s":4,"id":2697,"u":"forcible%20energy_apg","p":143,"h":1,"n":"Forcible Energy"},{"c":0,"s":4,"id":2698,"u":"forensic%20acumen_apg","p":206,"h":1,"n":"Forensic Acumen"},{"c":0,"s":4,"id":2699,"u":"foresee%20danger_apg","p":64,"h":1,"n":"Foresee Danger"},{"c":0,"s":4,"id":2700,"u":"forestall%20curse_apg","p":80,"h":1,"n":"Forestall Curse"},{"c":0,"s":4,"id":2701,"u":"form%20lock_apg","p":130,"h":1,"n":"Form Lock"},{"c":0,"s":4,"id":2702,"u":"form%20of%20the%20bat_apg","p":33,"h":1,"n":"Form Of The Bat"},{"c":0,"s":4,"id":2703,"u":"form%20of%20the%20fiend_apg","p":40,"h":1,"n":"Form Of The Fiend"},{"c":0,"s":4,"id":2704,"u":"form%20retention_apg","p":142,"h":1,"n":"Form Retention"},{"c":0,"s":4,"id":2705,"u":"fresh%20ingredients_apg","p":176,"h":1,"n":"Fresh Ingredients"},{"c":0,"s":4,"id":2706,"u":"friendly%20toss_apg","p":110,"h":1,"n":"Friendly Toss"},{"c":0,"s":4,"id":2707,"u":"frightening%20appearance_apg","p":197,"h":1,"n":"Frightening Appearance"},{"c":0,"s":4,"id":2708,"u":"furious%20vengeance_apg","p":111,"h":1,"n":"Furious Vengeance"},{"c":0,"s":4,"id":2709,"u":"ghost%20hunter_apg","p":38,"h":1,"n":"Ghost Hunter"},{"c":0,"s":4,"id":2710,"u":"giant%20snare_apg","p":194,"h":1,"n":"Giant Snare"},{"c":0,"s":4,"id":2711,"u":"gladiator%20dedication_apg","p":175,"h":1,"n":"Gladiator Dedication"},{"c":0,"s":4,"id":2712,"u":"glean%20contents_apg","p":206,"h":1,"n":"Glean Contents"},{"c":0,"s":4,"id":2713,"u":"glean%20lore_apg","p":78,"h":1,"n":"Glean Lore"},{"c":0,"s":4,"id":2714,"u":"goading%20feint_apg","p":88,"h":1,"n":"Goading Feint"},{"c":0,"s":4,"id":2715,"u":"gorilla%20pound_apg","p":129,"h":1,"n":"Gorilla Pound"},{"c":0,"s":4,"id":2716,"u":"gorilla%20stance_apg","p":128,"h":1,"n":"Gorilla Stance"},{"c":0,"s":4,"id":2717,"u":"gossip%20lore_apg","p":167,"h":1,"n":"Gossip Lore"},{"c":0,"s":4,"id":2718,"u":"graceful%20leaper_apg","p":155,"h":1,"n":"Graceful Leaper"},{"c":0,"s":4,"id":2719,"u":"gravesight_apg","p":38,"h":1,"n":"Gravesight"},{"c":0,"s":4,"id":2720,"u":"gravity%20weapon_apg","p":132,"h":1,"n":"Gravity Weapon"},{"c":0,"s":4,"id":2721,"u":"great%20tengu%20form_apg","p":27,"h":1,"n":"Great Tengu Form"},{"c":0,"s":4,"id":2722,"u":"greater%20cruelty_apg","p":120,"h":1,"n":"Greater Cruelty"},{"c":0,"s":4,"id":2723,"u":"greater%20interpose_apg","p":121,"h":1,"n":"Greater Interpose"},{"c":0,"s":4,"id":2724,"u":"greater%20lesson_apg","p":102,"h":1,"n":"Greater Lesson"},{"c":0,"s":4,"id":2725,"u":"greater%20magical%20edification_apg","p":179,"h":1,"n":"Greater Magical Edification"},{"c":0,"s":4,"id":2726,"u":"greater%20magical%20scholastics_apg","p":156,"h":1,"n":"Greater Magical Scholastics"},{"c":0,"s":4,"id":2727,"u":"greater%20physical%20evolution_apg","p":141,"h":1,"n":"Greater Physical Evolution"},{"c":0,"s":4,"id":2728,"u":"greater%20revelation_apg","p":80,"h":1,"n":"Greater Revelation"},{"c":0,"s":4,"id":2729,"u":"greater%20spiritual%20evolution_apg","p":141,"h":1,"n":"Greater Spiritual Evolution"},{"c":0,"s":4,"id":2730,"u":"grievous%20blow_apg","p":182,"h":1,"n":"Grievous Blow"},{"c":0,"s":4,"id":2731,"u":"grimspawn_apg","p":40,"h":1,"n":"Grimspawn"},{"c":0,"s":4,"id":2732,"u":"group%20aid_apg","p":47,"h":1,"n":"Group Aid"},{"c":0,"s":4,"id":2733,"u":"grovel_apg","p":14,"h":1,"n":"Grovel"},{"c":0,"s":4,"id":2734,"u":"gruesome%20strike_apg","p":120,"h":1,"n":"Gruesome Strike"},{"c":0,"s":4,"id":2735,"u":"guardian's%20deflection_apg","p":89,"h":1,"n":"Guardian's Deflection"},{"c":0,"s":4,"id":2736,"u":"hag%20claws_apg","p":31,"h":1,"n":"Hag Claws"},{"c":0,"s":4,"id":2737,"u":"hag%20magic_apg","p":31,"h":1,"n":"Hag Magic"},{"c":0,"s":4,"id":2738,"u":"hag's%20sight_apg","p":31,"h":1,"n":"Hag's Sight"},{"c":0,"s":4,"id":2739,"u":"halo_apg","p":35,"h":1,"n":"Halo"},{"c":0,"s":4,"id":2740,"u":"hammer%20quake_apg","p":183,"h":1,"n":"Hammer Quake"},{"c":0,"s":4,"id":2741,"u":"hardy%20traveler_apg","p":47,"h":1,"n":"Hardy Traveler"},{"c":0,"s":4,"id":2742,"u":"head%20stomp_apg","p":135,"h":1,"n":"Head Stomp"},{"c":0,"s":4,"id":2743,"u":"heal%20animal_apg","p":160,"h":1,"n":"Heal Animal"},{"c":0,"s":4,"id":2744,"u":"heal%20companion_apg","p":132,"h":1,"n":"Heal Companion"},{"c":0,"s":4,"id":2745,"u":"healing%20bomb_apg","p":107,"h":1,"n":"Healing Bomb"},{"c":0,"s":4,"id":2746,"u":"hellspawn_apg","p":40,"h":1,"n":"Hellspawn"},{"c":0,"s":4,"id":2747,"u":"herbalist%20dedication_apg","p":176,"h":1,"n":"Herbalist Dedication"},{"c":0,"s":4,"id":2748,"u":"heroic%20presence_apg","p":47,"h":1,"n":"Heroic Presence"},{"c":0,"s":4,"id":2749,"u":"hex%20focus_apg","p":104,"h":1,"n":"Hex Focus"},{"c":0,"s":4,"id":2750,"u":"hex%20master_apg","p":105,"h":1,"n":"Hex Master"},{"c":0,"s":4,"id":2751,"u":"hex%20wellspring_apg","p":105,"h":1,"n":"Hex Wellspring"},{"c":0,"s":4,"id":2752,"u":"hidden%20magic_apg","p":196,"h":1,"n":"Hidden Magic"},{"c":0,"s":4,"id":2753,"u":"high-quality%20scrounger_apg","p":190,"h":1,"n":"High-quality Scrounger"},{"c":0,"s":4,"id":2754,"u":"hireling%20manager_apg","p":206,"h":1,"n":"Hireling Manager"},{"c":0,"s":4,"id":2755,"u":"hold%20mark_apg","p":18,"h":1,"n":"Hold Mark"},{"c":0,"s":4,"id":2756,"u":"holistic%20care_apg","p":184,"h":1,"n":"Holistic Care"},{"c":0,"s":4,"id":2757,"u":"homeward%20bound_apg","p":44,"h":1,"n":"Homeward Bound"},{"c":0,"s":4,"id":2758,"u":"horizon%20walker%20dedication_apg","p":177,"h":1,"n":"Horizon Walker Dedication"},{"c":0,"s":4,"id":2759,"u":"hunter's%20luck_apg","p":132,"h":1,"n":"Hunter's Luck"},{"c":0,"s":4,"id":2760,"u":"hunter's%20vision_apg","p":132,"h":1,"n":"Hunter's Vision"},{"c":0,"s":4,"id":2761,"u":"hurling%20charge_apg","p":198,"h":1,"n":"Hurling Charge"},{"c":0,"s":4,"id":2762,"u":"hymn%20of%20healing_apg","p":112,"h":1,"n":"Hymn Of Healing"},{"c":0,"s":4,"id":2763,"u":"impaling%20finisher_apg","p":90,"h":1,"n":"Impaling Finisher"},{"c":0,"s":4,"id":2764,"u":"impaling%20thrust_apg","p":111,"h":1,"n":"Impaling Thrust"},{"c":0,"s":4,"id":2765,"u":"implausible%20purchase%20(investigator)_apg","p":65,"a":"Investigator","h":1,"n":"Implausible Purchase"},{"c":0,"s":4,"id":2766,"u":"implausible%20purchase%20(rogue)_apg","p":137,"a":"Rogue","h":1,"n":"Implausible Purchase"},{"c":0,"s":4,"id":2767,"u":"impossible%20riposte_apg","p":93,"h":1,"n":"Impossible Riposte"},{"c":0,"s":4,"id":2768,"u":"impossible%20snares_apg","p":133,"h":1,"n":"Impossible Snares"},{"c":0,"s":4,"id":2769,"u":"impressive%20landing_apg","p":110,"h":1,"n":"Impressive Landing"},{"c":0,"s":4,"id":2770,"u":"impressive%20mount_apg","p":164,"h":1,"n":"Impressive Mount"},{"c":0,"s":4,"id":2771,"u":"improved%20familiar%20(witch)_apg","p":102,"a":"Witch","h":1,"n":"Improved Familiar"},{"c":0,"s":4,"id":2772,"u":"improved%20familiar_apg","p":174,"h":1,"n":"Improved Familiar"},{"c":0,"s":4,"id":2773,"u":"improvise%20tool_apg","p":206,"h":1,"n":"Improvise Tool"},{"c":0,"s":4,"id":2774,"u":"improvised%20critical_apg","p":199,"h":1,"n":"Improvised Critical"},{"c":0,"s":4,"id":2775,"u":"improvised%20pummel_apg","p":199,"h":1,"n":"Improvised Pummel"},{"c":0,"s":4,"id":2776,"u":"improvised%20repair_apg","p":206,"h":1,"n":"Improvised Repair"},{"c":0,"s":4,"id":2777,"u":"incredible%20beastmaster%20companion_apg","p":160,"h":1,"n":"Incredible Beastmaster Companion"},{"c":0,"s":4,"id":2778,"u":"incredible%20familiar%20(witch)_apg","p":103,"a":"Witch","h":1,"n":"Incredible Familiar"},{"c":0,"s":4,"id":2779,"u":"incredible%20familiar%20(familiar%20master)_apg","p":174,"a":"Familiar Master","h":1,"n":"Incredible Familiar"},{"c":0,"s":4,"id":2780,"u":"incredible%20luck_apg","p":93,"h":1,"n":"Incredible Luck"},{"c":0,"s":4,"id":2781,"u":"incredible%20mount_apg","p":165,"h":1,"n":"Incredible Mount"},{"c":0,"s":4,"id":2782,"u":"incredible%20scout_apg","p":206,"h":1,"n":"Incredible Scout"},{"c":0,"s":4,"id":2783,"u":"inexhaustible%20countermoves_apg","p":93,"h":1,"n":"Inexhaustible Countermoves"},{"c":0,"s":4,"id":2784,"u":"influence%20nature_apg","p":207,"h":1,"n":"Influence Nature"},{"c":0,"s":4,"id":2785,"u":"inner%20strength_apg","p":109,"h":1,"n":"Inner Strength"},{"c":0,"s":4,"id":2786,"u":"inoculation_apg","p":207,"h":1,"n":"Inoculation"},{"c":0,"s":4,"id":2787,"u":"inspired%20stratagem_apg","p":136,"h":1,"n":"Inspired Stratagem"},{"c":0,"s":4,"id":2788,"u":"inspiring%20marshal%20stance_apg","p":180,"h":1,"n":"Inspiring Marshal Stance"},{"c":0,"s":4,"id":2789,"u":"instinctive%20obfuscation_apg","p":44,"h":1,"n":"Instinctive Obfuscation"},{"c":0,"s":4,"id":2790,"u":"instinctive%20strike_apg","p":110,"h":1,"n":"Instinctive Strike"},{"c":0,"s":4,"id":2791,"u":"instrument%20of%20slaughter_apg","p":121,"h":1,"n":"Instrument Of Slaughter"},{"c":0,"s":4,"id":2792,"u":"investigator%20dedication_apg","p":151,"h":1,"n":"Investigator Dedication"},{"c":0,"s":4,"id":2793,"u":"investigator's%20stratagem_apg","p":151,"h":1,"n":"Investigator's Stratagem"},{"c":0,"s":4,"id":2794,"u":"invigorating%20mercy_apg","p":119,"h":1,"n":"Invigorating Mercy"},{"c":0,"s":4,"id":2795,"u":"iron%20fists_apg","p":18,"h":1,"n":"Iron Fists"},{"c":0,"s":4,"id":2796,"u":"iron%20repercussions_apg","p":118,"h":1,"n":"Iron Repercussions"},{"c":0,"s":4,"id":2797,"u":"just%20one%20more%20thing_apg","p":63,"h":1,"n":"Just One More Thing"},{"c":0,"s":4,"id":2798,"u":"just%20the%20facts_apg","p":65,"h":1,"n":"Just The Facts"},{"c":0,"s":4,"id":2799,"u":"keen%20follower_apg","p":207,"h":1,"n":"Keen Follower"},{"c":0,"s":4,"id":2800,"u":"keen%20recollection_apg","p":151,"h":1,"n":"Keen Recollection"},{"c":0,"s":4,"id":2801,"u":"keep%20pace_apg","p":163,"h":1,"n":"Keep Pace"},{"c":0,"s":4,"id":2802,"u":"ki%20center_apg","p":131,"h":1,"n":"Ki Center"},{"c":0,"s":4,"id":2803,"u":"ki%20form_apg","p":131,"h":1,"n":"Ki Form"},{"c":0,"s":4,"id":2804,"u":"kneecap_apg","p":45,"h":1,"n":"Kneecap"},{"c":0,"s":4,"id":2805,"u":"know%20your%20own_apg","p":43,"h":1,"n":"Know Your Own"},{"c":0,"s":4,"id":2806,"u":"known%20weaknesses_apg","p":60,"h":1,"n":"Known Weaknesses"},{"c":0,"s":4,"id":2807,"u":"kobold%20breath_apg","p":14,"h":1,"n":"Kobold Breath"},{"c":0,"s":4,"id":2808,"u":"kobold%20lore_apg","p":14,"h":1,"n":"Kobold Lore"},{"c":0,"s":4,"id":2809,"u":"lab%20rat_apg","p":23,"h":1,"n":"Lab Rat"},{"c":0,"s":4,"id":2810,"u":"lawbringer_apg","p":35,"h":1,"n":"Lawbringer"},{"c":0,"s":4,"id":2811,"u":"lead%20climber_apg","p":207,"h":1,"n":"Lead Climber"},{"c":0,"s":4,"id":2812,"u":"lead%20investigator_apg","p":65,"h":1,"n":"Lead Investigator"},{"c":0,"s":4,"id":2813,"u":"lead%20the%20pack_apg","p":161,"h":1,"n":"Lead The Pack"},{"c":0,"s":4,"id":2814,"u":"leading%20dance_apg","p":90,"h":1,"n":"Leading Dance"},{"c":0,"s":4,"id":2815,"u":"legendary%20guide_apg","p":207,"h":1,"n":"Legendary Guide"},{"c":0,"s":4,"id":2816,"u":"legendary%20rider_apg","p":165,"h":1,"n":"Legendary Rider"},{"c":0,"s":4,"id":2817,"u":"leshy%20familiar%20secrets_apg","p":124,"h":1,"n":"Leshy Familiar Secrets"},{"c":0,"s":4,"id":2818,"u":"lethal%20finisher_apg","p":93,"h":1,"n":"Lethal Finisher"},{"c":0,"s":4,"id":2819,"u":"life%20leap_apg","p":44,"h":1,"n":"Life Leap"},{"c":0,"s":4,"id":2820,"u":"lifesense_apg","p":38,"h":1,"n":"Lifesense"},{"c":0,"s":4,"id":2821,"u":"light%20from%20darkness_apg","p":41,"h":1,"n":"Light From Darkness"},{"c":0,"s":4,"id":2822,"u":"light%20paws_apg","p":10,"h":1,"n":"Light Paws"},{"c":0,"s":4,"id":2823,"u":"lightslayer%20oath_apg","p":118,"h":1,"n":"Lightslayer Oath"},{"c":0,"s":4,"id":2824,"u":"linguist%20dedication_apg","p":178,"h":1,"n":"Linguist Dedication"},{"c":0,"s":4,"id":2825,"u":"litany%20of%20depravity_apg","p":121,"h":1,"n":"Litany Of Depravity"},{"c":0,"s":4,"id":2826,"u":"litany%20of%20self-interest_apg","p":120,"h":1,"n":"Litany Of Self-interest"},{"c":0,"s":4,"id":2827,"u":"living%20hair_apg","p":102,"h":1,"n":"Living Hair"},{"c":0,"s":4,"id":2828,"u":"loaner%20spell_apg","p":136,"h":1,"n":"Loaner Spell"},{"c":0,"s":4,"id":2829,"u":"long-nosed%20form_apg","p":26,"h":1,"n":"Long-nosed Form"},{"c":0,"s":4,"id":2830,"u":"loremaster%20dedication_apg","p":179,"h":1,"n":"Loremaster Dedication"},{"c":0,"s":4,"id":2831,"u":"loud%20singer_apg","p":45,"h":1,"n":"Loud Singer"},{"c":0,"s":4,"id":2832,"u":"mage%20hunter_apg","p":109,"h":1,"n":"Mage Hunter"},{"c":0,"s":4,"id":2833,"u":"magic%20arrow_apg","p":173,"h":1,"n":"Magic Arrow"},{"c":0,"s":4,"id":2834,"u":"magic%20hands_apg","p":122,"h":1,"n":"Magic Hands"},{"c":0,"s":4,"id":2835,"u":"magic%20hide_apg","p":132,"h":1,"n":"Magic Hide"},{"c":0,"s":4,"id":2836,"u":"magic%20rider_apg","p":43,"h":1,"n":"Magic Rider"},{"c":0,"s":4,"id":2837,"u":"magic%20sense_apg","p":80,"h":1,"n":"Magic Sense"},{"c":0,"s":4,"id":2838,"u":"magical%20adaptation_apg","p":177,"h":1,"n":"Magical Adaptation"},{"c":0,"s":4,"id":2839,"u":"magical%20edification_apg","p":179,"h":1,"n":"Magical Edification"},{"c":0,"s":4,"id":2840,"u":"magical%20scholastics_apg","p":156,"h":1,"n":"Magical Scholastics"},{"c":0,"s":4,"id":2841,"u":"major%20lesson_apg","p":103,"h":1,"n":"Major Lesson"},{"c":0,"s":4,"id":2842,"u":"makeshift%20strike_apg","p":199,"h":1,"n":"Makeshift Strike"},{"c":0,"s":4,"id":2843,"u":"malicious%20bane_apg","p":40,"h":1,"n":"Malicious Bane"},{"c":0,"s":4,"id":2844,"u":"many%20guises_apg","p":197,"h":1,"n":"Many Guises"},{"c":0,"s":4,"id":2845,"u":"marshal%20dedication_apg","p":180,"h":1,"n":"Marshal Dedication"},{"c":0,"s":4,"id":2846,"u":"martial%20artist%20dedication_apg","p":182,"h":1,"n":"Martial Artist Dedication"},{"c":0,"s":4,"id":2847,"u":"martial%20experience_apg","p":43,"h":1,"n":"Martial Experience"},{"c":0,"s":4,"id":2848,"u":"martial%20performance_apg","p":112,"h":1,"n":"Martial Performance"},{"c":0,"s":4,"id":2849,"u":"martyr_apg","p":122,"h":1,"n":"Martyr"},{"c":0,"s":4,"id":2850,"u":"master%20eldritch%20archer%20spellcasting_apg","p":173,"h":1,"n":"Master Eldritch Archer Spellcasting"},{"c":0,"s":4,"id":2851,"u":"master%20oracle%20spellcasting_apg","p":152,"h":1,"n":"Master Oracle Spellcasting"},{"c":0,"s":4,"id":2852,"u":"master%20scroll%20cache_apg","p":189,"h":1,"n":"Master Scroll Cache"},{"c":0,"s":4,"id":2853,"u":"master%20spotter_apg","p":151,"h":1,"n":"Master Spotter"},{"c":0,"s":4,"id":2854,"u":"master%20witch%20spellcasting_apg","p":154,"h":1,"n":"Master Witch Spellcasting"},{"c":0,"s":4,"id":2855,"u":"mature%20beastmaster%20companion_apg","p":160,"h":1,"n":"Mature Beastmaster Companion"},{"c":0,"s":4,"id":2856,"u":"mauler%20dedication_apg","p":183,"h":1,"n":"Mauler Dedication"},{"c":0,"s":4,"id":2857,"u":"medic%20dedication_apg","p":184,"h":1,"n":"Medic Dedication"},{"c":0,"s":4,"id":2858,"u":"medusa's%20wrath_apg","p":130,"h":1,"n":"Medusa's Wrath"},{"c":0,"s":4,"id":2859,"u":"mesmerizing%20gaze_apg","p":166,"h":1,"n":"Mesmerizing Gaze"},{"c":0,"s":4,"id":2860,"u":"methodical%20debilitations_apg","p":136,"h":1,"n":"Methodical Debilitations"},{"c":0,"s":4,"id":2861,"u":"mighty%20bulwark_apg","p":191,"h":1,"n":"Mighty Bulwark"},{"c":0,"s":4,"id":2862,"u":"mighty%20dragon%20shape_apg","p":169,"h":1,"n":"Mighty Dragon Shape"},{"c":0,"s":4,"id":2863,"u":"minion%20guise_apg","p":196,"h":1,"n":"Minion Guise"},{"c":0,"s":4,"id":2864,"u":"miraculous%20possibility_apg","p":123,"h":1,"n":"Miraculous Possibility"},{"c":0,"s":4,"id":2865,"u":"mist%20child_apg","p":31,"h":1,"n":"Mist Child"},{"c":0,"s":4,"id":2866,"u":"mobile%20finisher_apg","p":92,"h":1,"n":"Mobile Finisher"},{"c":0,"s":4,"id":2867,"u":"monastic%20archer%20stance_apg","p":128,"h":1,"n":"Monastic Archer Stance"},{"c":0,"s":4,"id":2868,"u":"mounted%20shield_apg","p":164,"h":1,"n":"Mounted Shield"},{"c":0,"s":4,"id":2869,"u":"mug_apg","p":135,"h":1,"n":"Mug"},{"c":0,"s":4,"id":2870,"u":"multilingual%20cipher_apg","p":178,"h":1,"n":"Multilingual Cipher"},{"c":0,"s":4,"id":2871,"u":"murksight_apg","p":103,"h":1,"n":"Murksight"},{"c":0,"s":4,"id":2872,"u":"musetouched_apg","p":35,"h":1,"n":"Musetouched"},{"c":0,"s":4,"id":2873,"u":"mutable%20familiar_apg","p":174,"h":1,"n":"Mutable Familiar"},{"c":0,"s":4,"id":2874,"u":"mysterious%20breadth_apg","p":152,"h":1,"n":"Mysterious Breadth"},{"c":0,"s":4,"id":2875,"u":"mysterious%20repertoire_apg","p":81,"h":1,"n":"Mysterious Repertoire"},{"c":0,"s":4,"id":2876,"u":"mystery%20conduit_apg","p":81,"h":1,"n":"Mystery Conduit"},{"c":0,"s":4,"id":2877,"u":"necromantic%20physiology_apg","p":33,"h":1,"n":"Necromantic Physiology"},{"c":0,"s":4,"id":2878,"u":"never%20tire_apg","p":166,"h":1,"n":"Never Tire"},{"c":0,"s":4,"id":2879,"u":"night%20magic_apg","p":33,"h":1,"n":"Night Magic"},{"c":0,"s":4,"id":2880,"u":"nimble%20dodge_apg","p":88,"h":1,"n":"Nimble Dodge"},{"c":0,"s":4,"id":2881,"u":"nimble%20hooves_apg","p":40,"h":1,"n":"Nimble Hooves"},{"c":0,"s":4,"id":2882,"u":"nimble%20roll_apg","p":91,"h":1,"n":"Nimble Roll"},{"c":0,"s":4,"id":2883,"u":"nimble%20shield%20hand_apg","p":159,"h":1,"n":"Nimble Shield Hand"},{"c":0,"s":4,"id":2884,"u":"no%20cause%20for%20alarm_apg","p":208,"h":1,"n":"No Cause For Alarm"},{"c":0,"s":4,"id":2885,"u":"nocturnal%20sense_apg","p":110,"h":1,"n":"Nocturnal Sense"},{"c":0,"s":4,"id":2886,"u":"nonlethal%20spell_apg","p":142,"h":1,"n":"Nonlethal Spell"},{"c":0,"s":4,"id":2887,"u":"occult%20resistance_apg","p":31,"h":1,"n":"Occult Resistance"},{"c":0,"s":4,"id":2888,"u":"ode%20to%20ouroboros_apg","p":114,"h":1,"n":"Ode To Ouroboros"},{"c":0,"s":4,"id":2889,"u":"one%20for%20all_apg","p":88,"h":1,"n":"One For All"},{"c":0,"s":4,"id":2890,"u":"one-inch%20punch_apg","p":129,"h":1,"n":"One-inch Punch"},{"c":0,"s":4,"id":2891,"u":"one-millimeter%20punch_apg","p":131,"h":1,"n":"One-millimeter Punch"},{"c":0,"s":4,"id":2892,"u":"one-toed%20hop_apg","p":27,"h":1,"n":"One-toed Hop"},{"c":0,"s":4,"id":2893,"u":"ongoing%20investigation_apg","p":62,"h":1,"n":"Ongoing Investigation"},{"c":0,"s":4,"id":2894,"u":"ongoing%20selfishness_apg","p":118,"h":1,"n":"Ongoing Selfishness"},{"c":0,"s":4,"id":2895,"u":"ongoing%20strategy_apg","p":63,"h":1,"n":"Ongoing Strategy"},{"c":0,"s":4,"id":2896,"u":"opportunistic%20grapple_apg","p":163,"h":1,"n":"Opportunistic Grapple"},{"c":0,"s":4,"id":2897,"u":"oracle%20dedication_apg","p":152,"h":1,"n":"Oracle Dedication"},{"c":0,"s":4,"id":2898,"u":"oracular%20providence_apg","p":81,"h":1,"n":"Oracular Providence"},{"c":0,"s":4,"id":2899,"u":"oracular%20warning_apg","p":80,"h":1,"n":"Oracular Warning"},{"c":0,"s":4,"id":2900,"u":"orc%20lore_apg","p":18,"h":1,"n":"Orc Lore"},{"c":0,"s":4,"id":2901,"u":"orthographic%20mastery_apg","p":179,"h":1,"n":"Orthographic Mastery"},{"c":0,"s":4,"id":2902,"u":"otherworldly%20acumen_apg","p":43,"h":1,"n":"Otherworldly Acumen"},{"c":0,"s":4,"id":2903,"u":"overcrowd_apg","p":23,"h":1,"n":"Overcrowd"},{"c":0,"s":4,"id":2904,"u":"overextending%20feint_apg","p":134,"h":1,"n":"Overextending Feint"},{"c":0,"s":4,"id":2905,"u":"overpowering%20charge%20(barbarian)_apg","p":110,"a":"Barbarian","h":1,"n":"Overpowering Charge"},{"c":0,"s":4,"id":2906,"u":"overpowering%20charge%20(fighter)_apg","p":127,"a":"Fighter","h":1,"n":"Overpowering Charge"},{"c":0,"s":4,"id":2907,"u":"oversized%20throw_apg","p":109,"h":1,"n":"Oversized Throw"},{"c":0,"s":4,"id":2908,"u":"overwhelming%20blow_apg","p":127,"h":1,"n":"Overwhelming Blow"},{"c":0,"s":4,"id":2909,"u":"overwhelming%20breath_apg","p":130,"h":1,"n":"Overwhelming Breath"},{"c":0,"s":4,"id":2910,"u":"pack%20rat_apg","p":22,"h":1,"n":"Pack Rat"},{"c":0,"s":4,"id":2911,"u":"pale%20horse_apg","p":121,"h":1,"n":"Pale Horse"},{"c":0,"s":4,"id":2912,"u":"panache%20paragon_apg","p":93,"h":1,"n":"Panache Paragon"},{"c":0,"s":4,"id":2913,"u":"paradoxical%20mystery_apg","p":81,"h":1,"n":"Paradoxical Mystery"},{"c":0,"s":4,"id":2914,"u":"parry%20and%20riposte_apg","p":93,"h":1,"n":"Parry And Riposte"},{"c":0,"s":4,"id":2915,"u":"parting%20shot_apg","p":126,"h":1,"n":"Parting Shot"},{"c":0,"s":4,"id":2916,"u":"party%20crasher_apg","p":167,"h":1,"n":"Party Crasher"},{"c":0,"s":4,"id":2917,"u":"path%20of%20iron_apg","p":182,"h":1,"n":"Path Of Iron"},{"c":0,"s":4,"id":2918,"u":"patron's%20breadth_apg","p":154,"h":1,"n":"Patron's Breadth"},{"c":0,"s":4,"id":2919,"u":"patron's%20truth_apg","p":105,"h":1,"n":"Patron's Truth"},{"c":0,"s":4,"id":2920,"u":"peafowl%20stance_apg","p":128,"h":1,"n":"Peafowl Stance"},{"c":0,"s":4,"id":2921,"u":"peafowl%20strut_apg","p":129,"h":1,"n":"Peafowl Strut"},{"c":0,"s":4,"id":2922,"u":"penetrating%20projectile_apg","p":111,"h":1,"n":"Penetrating Projectile"},{"c":0,"s":4,"id":2923,"u":"perfect%20finisher_apg","p":93,"h":1,"n":"Perfect Finisher"},{"c":0,"s":4,"id":2924,"u":"performative%20weapons%20training_apg","p":175,"h":1,"n":"Performative Weapons Training"},{"c":0,"s":4,"id":2925,"u":"perpetual%20breadth_apg","p":107,"h":1,"n":"Perpetual Breadth"},{"c":0,"s":4,"id":2926,"u":"perpetual%20scout_apg","p":177,"h":1,"n":"Perpetual Scout"},{"c":0,"s":4,"id":2927,"u":"phase%20arrow_apg","p":173,"h":1,"n":"Phase Arrow"},{"c":0,"s":4,"id":2928,"u":"phonetic%20training_apg","p":178,"h":1,"n":"Phonetic Training"},{"c":0,"s":4,"id":2929,"u":"pick%20up%20the%20pace_apg","p":208,"h":1,"n":"Pick Up The Pace"},{"c":0,"s":4,"id":2930,"u":"pied%20piping_apg","p":115,"h":1,"n":"Pied Piping"},{"c":0,"s":4,"id":2931,"u":"pilgrim's%20token_apg","p":208,"h":1,"n":"Pilgrim's Token"},{"c":0,"s":4,"id":2932,"u":"pinch%20time_apg","p":47,"h":1,"n":"Pinch Time"},{"c":0,"s":4,"id":2933,"u":"pinning%20fire_apg","p":129,"h":1,"n":"Pinning Fire"},{"c":0,"s":4,"id":2934,"u":"pinpoint%20poisoner_apg","p":107,"h":1,"n":"Pinpoint Poisoner"},{"c":0,"s":4,"id":2935,"u":"pirate%20dedication_apg","p":185,"h":1,"n":"Pirate Dedication"},{"c":0,"s":4,"id":2936,"u":"pirate%20weapon%20training_apg","p":185,"h":1,"n":"Pirate Weapon Training"},{"c":0,"s":4,"id":2937,"u":"pitborn_apg","p":40,"h":1,"n":"Pitborn"},{"c":0,"s":4,"id":2938,"u":"plant%20evidence_apg","p":134,"h":1,"n":"Plant Evidence"},{"c":0,"s":4,"id":2939,"u":"play%20to%20the%20crowd_apg","p":175,"h":1,"n":"Play To The Crowd"},{"c":0,"s":4,"id":2940,"u":"plentiful%20snares_apg","p":194,"h":1,"n":"Plentiful Snares"},{"c":0,"s":4,"id":2941,"u":"plot%20the%20future_apg","p":64,"h":1,"n":"Plot The Future"},{"c":0,"s":4,"id":2942,"u":"poison%20coat_apg","p":186,"h":1,"n":"Poison Coat"},{"c":0,"s":4,"id":2943,"u":"poisoner%20dedication_apg","p":186,"h":1,"n":"Poisoner Dedication"},{"c":0,"s":4,"id":2944,"u":"poisoner's%20twist_apg","p":186,"h":1,"n":"Poisoner's Twist"},{"c":0,"s":4,"id":2945,"u":"portentous%20spell_apg","p":81,"h":1,"n":"Portentous Spell"},{"c":0,"s":4,"id":2946,"u":"posse_apg","p":163,"h":1,"n":"Posse"},{"c":0,"s":4,"id":2947,"u":"poultice%20preparation_apg","p":176,"h":1,"n":"Poultice Preparation"},{"c":0,"s":4,"id":2948,"u":"prairie%20rider_apg","p":46,"h":1,"n":"Prairie Rider"},{"c":0,"s":4,"id":2949,"u":"precious%20arrow_apg","p":173,"h":1,"n":"Precious Arrow"},{"c":0,"s":4,"id":2950,"u":"precise%20finisher_apg","p":91,"h":1,"n":"Precise Finisher"},{"c":0,"s":4,"id":2951,"u":"predictable!_apg","p":135,"h":1,"n":"Predictable!"},{"c":0,"s":4,"id":2952,"u":"predictive%20purchase%20(investigator)_apg","p":63,"a":"Investigator","h":1,"n":"Predictive Purchase"},{"c":0,"s":4,"id":2953,"u":"predictive%20purchase%20(rogue)_apg","p":136,"a":"Rogue","h":1,"n":"Predictive Purchase"},{"c":0,"s":4,"id":2954,"u":"premonition%20of%20avoidance_apg","p":122,"h":1,"n":"Premonition Of Avoidance"},{"c":0,"s":4,"id":2955,"u":"premonition%20of%20clarity_apg","p":123,"h":1,"n":"Premonition Of Clarity"},{"c":0,"s":4,"id":2956,"u":"preparation_apg","p":136,"h":1,"n":"Preparation"},{"c":0,"s":4,"id":2957,"u":"prescient%20consumable_apg","p":208,"h":1,"n":"Prescient Consumable"},{"c":0,"s":4,"id":2958,"u":"prescient%20planner_apg","p":208,"h":1,"n":"Prescient Planner"},{"c":0,"s":4,"id":2959,"u":"prevailing%20position_apg","p":130,"h":1,"n":"Prevailing Position"},{"c":0,"s":4,"id":2960,"u":"primal%20aegis_apg","p":125,"h":1,"n":"Primal Aegis"},{"c":0,"s":4,"id":2961,"u":"pristine%20weapon_apg","p":124,"h":1,"n":"Pristine Weapon"},{"c":0,"s":4,"id":2962,"u":"project%20persona_apg","p":44,"h":1,"n":"Project Persona"},{"c":0,"s":4,"id":2963,"u":"quick%20change_apg","p":197,"h":1,"n":"Quick Change"},{"c":0,"s":4,"id":2964,"u":"quick%20contacts_apg","p":208,"h":1,"n":"Quick Contacts"},{"c":0,"s":4,"id":2965,"u":"quick%20fix_apg","p":195,"h":1,"n":"Quick Fix"},{"c":0,"s":4,"id":2966,"u":"quick%20mount_apg","p":164,"h":1,"n":"Quick Mount"},{"c":0,"s":4,"id":2967,"u":"quick%20shot_apg","p":157,"h":1,"n":"Quick Shot"},{"c":0,"s":4,"id":2968,"u":"quick%20stow_apg","p":23,"h":1,"n":"Quick Stow"},{"c":0,"s":4,"id":2969,"u":"quick%20study_apg","p":179,"h":1,"n":"Quick Study"},{"c":0,"s":4,"id":2970,"u":"quickened%20casting%20(oracle)_apg","p":80,"a":"Oracle","h":1,"n":"Quickened Casting"},{"c":0,"s":4,"id":2971,"u":"quickened%20casting%20(witch)_apg","p":103,"a":"Witch","h":1,"n":"Quickened Casting"},{"c":0,"s":4,"id":2972,"u":"radiant%20infusion_apg","p":122,"h":1,"n":"Radiant Infusion"},{"c":0,"s":4,"id":2973,"u":"rallying%20charge_apg","p":180,"h":1,"n":"Rallying Charge"},{"c":0,"s":4,"id":2974,"u":"rampaging%20ferocity_apg","p":19,"h":1,"n":"Rampaging Ferocity"},{"c":0,"s":4,"id":2975,"u":"ranger's%20bramble_apg","p":132,"h":1,"n":"Ranger's Bramble"},{"c":0,"s":4,"id":2976,"u":"rapid%20affixture_apg","p":208,"h":1,"n":"Rapid Affixture"},{"c":0,"s":4,"id":2977,"u":"rapid%20response_apg","p":122,"h":1,"n":"Rapid Response"},{"c":0,"s":4,"id":2978,"u":"rat%20familiar_apg","p":22,"h":1,"n":"Rat Familiar"},{"c":0,"s":4,"id":2979,"u":"rat%20form_apg","p":23,"h":1,"n":"Rat Form"},{"c":0,"s":4,"id":2980,"u":"rat%20magic_apg","p":23,"h":1,"n":"Rat Magic"},{"c":0,"s":4,"id":2981,"u":"ratfolk%20lore_apg","p":22,"h":1,"n":"Ratfolk Lore"},{"c":0,"s":4,"id":2982,"u":"ratspeak_apg","p":22,"h":1,"n":"Ratspeak"},{"c":0,"s":4,"id":2983,"u":"razzle-dazzle_apg","p":44,"h":1,"n":"Razzle-dazzle"},{"c":0,"s":4,"id":2984,"u":"reach%20spell%20(oracle)_apg","p":79,"a":"Oracle","h":1,"n":"Reach Spell"},{"c":0,"s":4,"id":2985,"u":"reach%20spell%20(witch)_apg","p":101,"a":"Witch","h":1,"n":"Reach Spell"},{"c":0,"s":4,"id":2986,"u":"reactive%20transformation_apg","p":125,"h":1,"n":"Reactive Transformation"},{"c":0,"s":4,"id":2987,"u":"read%20disaster_apg","p":80,"h":1,"n":"Read Disaster"},{"c":0,"s":4,"id":2988,"u":"read%20shibboleths_apg","p":178,"h":1,"n":"Read Shibboleths"},{"c":0,"s":4,"id":2989,"u":"reason%20rapidly_apg","p":64,"h":1,"n":"Reason Rapidly"},{"c":0,"s":4,"id":2990,"u":"rebounding%20toss_apg","p":126,"h":1,"n":"Rebounding Toss"},{"c":0,"s":4,"id":2991,"u":"reckless%20abandon%20(goblin)_apg","p":45,"a":"Goblin","h":1,"n":"Reckless Abandon"},{"c":0,"s":4,"id":2992,"u":"reconstruct%20the%20scene%20(investigator)_apg","p":65,"a":"Investigator","h":1,"n":"Reconstruct The Scene"},{"c":0,"s":4,"id":2993,"u":"reconstruct%20the%20scene%20(rogue)_apg","p":137,"a":"Rogue","h":1,"n":"Reconstruct The Scene"},{"c":0,"s":4,"id":2994,"u":"red%20herring_apg","p":61,"h":1,"n":"Red Herring"},{"c":0,"s":4,"id":2995,"u":"reflect%20spell%20(witch)_apg","p":104,"a":"Witch","h":1,"n":"Reflect Spell"},{"c":0,"s":4,"id":2996,"u":"reflexive%20riposte_apg","p":92,"h":1,"n":"Reflexive Riposte"},{"c":0,"s":4,"id":2997,"u":"rejuvenating%20touch_apg","p":121,"h":1,"n":"Rejuvenating Touch"},{"c":0,"s":4,"id":2998,"u":"relentless%20wings_apg","p":41,"h":1,"n":"Relentless Wings"},{"c":0,"s":4,"id":2999,"u":"reliable%20luck_apg","p":11,"h":1,"n":"Reliable Luck"},{"c":0,"s":4,"id":3000,"u":"remediate_apg","p":123,"h":1,"n":"Remediate"},{"c":0,"s":4,"id":3001,"u":"remote%20trigger_apg","p":194,"h":1,"n":"Remote Trigger"},{"c":0,"s":4,"id":3002,"u":"resilient%20touch_apg","p":120,"h":1,"n":"Resilient Touch"},{"c":0,"s":4,"id":3003,"u":"resist%20ruin_apg","p":38,"h":1,"n":"Resist Ruin"},{"c":0,"s":4,"id":3004,"u":"resounding%20blow_apg","p":110,"h":1,"n":"Resounding Blow"},{"c":0,"s":4,"id":3005,"u":"resounding%20bravery_apg","p":127,"h":1,"n":"Resounding Bravery"},{"c":0,"s":4,"id":3006,"u":"resounding%20finale_apg","p":115,"h":1,"n":"Resounding Finale"},{"c":0,"s":4,"id":3007,"u":"resourceful%20ritualist_apg","p":187,"h":1,"n":"Resourceful Ritualist"},{"c":0,"s":4,"id":3008,"u":"resuscitate_apg","p":184,"h":1,"n":"Resuscitate"},{"c":0,"s":4,"id":3009,"u":"return%20fire_apg","p":129,"h":1,"n":"Return Fire"},{"c":0,"s":4,"id":3010,"u":"returning%20throw_apg","p":42,"h":1,"n":"Returning Throw"},{"c":0,"s":4,"id":3011,"u":"reverberate_apg","p":114,"h":1,"n":"Reverberate"},{"c":0,"s":4,"id":3012,"u":"reverse%20engineering_apg","p":190,"h":1,"n":"Reverse Engineering"},{"c":0,"s":4,"id":3013,"u":"ricochet%20feint_apg","p":136,"h":1,"n":"Ricochet Feint"},{"c":0,"s":4,"id":3014,"u":"ricochet%20stance%20(fighter)_apg","p":126,"a":"Fighter","h":1,"n":"Ricochet Stance"},{"c":0,"s":4,"id":3015,"u":"ricochet%20stance%20(rogue)_apg","p":136,"a":"Rogue","h":1,"n":"Ricochet Stance"},{"c":0,"s":4,"id":3016,"u":"risky%20surgery_apg","p":208,"h":1,"n":"Risky Surgery"},{"c":0,"s":4,"id":3017,"u":"rites%20of%20convocation_apg","p":102,"h":1,"n":"Rites Of Convocation"},{"c":0,"s":4,"id":3018,"u":"rites%20of%20transfiguration_apg","p":105,"h":1,"n":"Rites Of Transfiguration"},{"c":0,"s":4,"id":3019,"u":"ritual%20researcher_apg","p":112,"h":1,"n":"Ritual Researcher"},{"c":0,"s":4,"id":3020,"u":"ritualist%20dedication_apg","p":187,"h":1,"n":"Ritualist Dedication"},{"c":0,"s":4,"id":3021,"u":"root%20magic_apg","p":208,"h":1,"n":"Root Magic"},{"c":0,"s":4,"id":3022,"u":"rope%20runner_apg","p":185,"h":1,"n":"Rope Runner"},{"c":0,"s":4,"id":3023,"u":"sacred%20defender_apg","p":121,"h":1,"n":"Sacred Defender"},{"c":0,"s":4,"id":3024,"u":"sacrifice%20armor_apg","p":120,"h":1,"n":"Sacrifice Armor"},{"c":0,"s":4,"id":3025,"u":"safe%20house_apg","p":196,"h":1,"n":"Safe House"},{"c":0,"s":4,"id":3026,"u":"safeguarded%20spell_apg","p":139,"h":1,"n":"Safeguarded Spell"},{"c":0,"s":4,"id":3027,"u":"sample%20investigator%20lie%20detector_apg","p":62,"h":1,"n":"Sample Investigator Lie Detector"},{"c":0,"s":4,"id":3028,"u":"scales%20of%20the%20dragon_apg","p":169,"h":1,"n":"Scales Of The Dragon"},{"c":0,"s":4,"id":3029,"u":"scalpel's%20point_apg","p":62,"h":1,"n":"Scalpel's Point"},{"c":0,"s":4,"id":3030,"u":"scamper_apg","p":14,"h":1,"n":"Scamper"},{"c":0,"s":4,"id":3031,"u":"scavenger's%20search_apg","p":26,"h":1,"n":"Scavenger's Search"},{"c":0,"s":4,"id":3032,"u":"scholastic%20identification_apg","p":156,"h":1,"n":"Scholastic Identification"},{"c":0,"s":4,"id":3033,"u":"schooled%20in%20secrets_apg","p":208,"h":1,"n":"Schooled In Secrets"},{"c":0,"s":4,"id":3034,"u":"scintillating%20spell_apg","p":141,"h":1,"n":"Scintillating Spell"},{"c":0,"s":4,"id":3035,"u":"scouring%20rage_apg","p":110,"h":1,"n":"Scouring Rage"},{"c":0,"s":4,"id":3036,"u":"scout%20dedication_apg","p":188,"h":1,"n":"Scout Dedication"},{"c":0,"s":4,"id":3037,"u":"scout's%20charge_apg","p":188,"h":1,"n":"Scout's Charge"},{"c":0,"s":4,"id":3038,"u":"scout's%20pounce_apg","p":188,"h":1,"n":"Scout's Pounce"},{"c":0,"s":4,"id":3039,"u":"scout's%20speed_apg","p":188,"h":1,"n":"Scout's Speed"},{"c":0,"s":4,"id":3040,"u":"scroll%20trickster%20dedication_apg","p":189,"h":1,"n":"Scroll Trickster Dedication"},{"c":0,"s":4,"id":3041,"u":"scrounger%20dedication_apg","p":190,"h":1,"n":"Scrounger Dedication"},{"c":0,"s":4,"id":3042,"u":"seasoned_apg","p":209,"h":1,"n":"Seasoned"},{"c":0,"s":4,"id":3043,"u":"second%20chance%20spell_apg","p":143,"h":1,"n":"Second Chance Spell"},{"c":0,"s":4,"id":3044,"u":"second%20shield_apg","p":198,"h":1,"n":"Second Shield"},{"c":0,"s":4,"id":3045,"u":"seeker%20arrow_apg","p":173,"h":1,"n":"Seeker Arrow"},{"c":0,"s":4,"id":3046,"u":"selfless%20parry_apg","p":171,"h":1,"n":"Selfless Parry"},{"c":0,"s":4,"id":3047,"u":"sense%20allies_apg","p":47,"h":1,"n":"Sense Allies"},{"c":0,"s":4,"id":3048,"u":"sense%20good_apg","p":120,"h":1,"n":"Sense Good"},{"c":0,"s":4,"id":3049,"u":"sense%20the%20unseen_apg","p":64,"h":1,"n":"Sense The Unseen"},{"c":0,"s":4,"id":3050,"u":"sentinel%20dedication_apg","p":191,"h":1,"n":"Sentinel Dedication"},{"c":0,"s":4,"id":3051,"u":"settlement%20scholastics_apg","p":156,"h":1,"n":"Settlement Scholastics"},{"c":0,"s":4,"id":3052,"u":"shadow%20illusion_apg","p":192,"h":1,"n":"Shadow Illusion"},{"c":0,"s":4,"id":3053,"u":"shadow%20magic_apg","p":192,"h":1,"n":"Shadow Magic"},{"c":0,"s":4,"id":3054,"u":"shadow%20mark_apg","p":209,"h":1,"n":"Shadow Mark"},{"c":0,"s":4,"id":3055,"u":"shadow%20master_apg","p":192,"h":1,"n":"Shadow Master"},{"c":0,"s":4,"id":3056,"u":"shadow%20power_apg","p":192,"h":1,"n":"Shadow Power"},{"c":0,"s":4,"id":3057,"u":"shadow%20self_apg","p":46,"h":1,"n":"Shadow Self"},{"c":0,"s":4,"id":3058,"u":"shadow%20sneak%20attack_apg","p":192,"h":1,"n":"Shadow Sneak Attack"},{"c":0,"s":4,"id":3059,"u":"shadow's%20web_apg","p":130,"h":1,"n":"Shadow's Web"},{"c":0,"s":4,"id":3060,"u":"shadowdancer%20dedication_apg","p":192,"h":1,"n":"Shadowdancer Dedication"},{"c":0,"s":4,"id":3061,"u":"shape%20of%20the%20dragon_apg","p":169,"h":1,"n":"Shape Of The Dragon"},{"c":0,"s":4,"id":3062,"u":"shared%20assault_apg","p":114,"h":1,"n":"Shared Assault"},{"c":0,"s":4,"id":3063,"u":"shared%20avoidance_apg","p":122,"h":1,"n":"Shared Avoidance"},{"c":0,"s":4,"id":3064,"u":"shared%20clarity_apg","p":123,"h":1,"n":"Shared Clarity"},{"c":0,"s":4,"id":3065,"u":"shared%20luck_apg","p":11,"h":1,"n":"Shared Luck"},{"c":0,"s":4,"id":3066,"u":"shared%20stratagem_apg","p":61,"h":1,"n":"Shared Stratagem"},{"c":0,"s":4,"id":3067,"u":"shattering%20blows_apg","p":111,"h":1,"n":"Shattering Blows"},{"c":0,"s":4,"id":3068,"u":"shattering%20strike_apg","p":199,"h":1,"n":"Shattering Strike"},{"c":0,"s":4,"id":3069,"u":"sheltering%20slab_apg","p":42,"h":1,"n":"Sheltering Slab"},{"c":0,"s":4,"id":3070,"u":"shield%20of%20faith_apg","p":122,"h":1,"n":"Shield Of Faith"},{"c":0,"s":4,"id":3071,"u":"shield%20salvation_apg","p":159,"h":1,"n":"Shield Salvation"},{"c":0,"s":4,"id":3072,"u":"shooting%20stars%20stance_apg","p":128,"h":1,"n":"Shooting Stars Stance"},{"c":0,"s":4,"id":3073,"u":"shove%20down_apg","p":135,"h":1,"n":"Shove Down"},{"c":0,"s":4,"id":3074,"u":"shoving%20sweep_apg","p":183,"h":1,"n":"Shoving Sweep"},{"c":0,"s":4,"id":3075,"u":"signature%20spell%20expansion_apg","p":140,"h":1,"n":"Signature Spell Expansion"},{"c":0,"s":4,"id":3076,"u":"silencing%20strike_apg","p":110,"h":1,"n":"Silencing Strike"},{"c":0,"s":4,"id":3077,"u":"siphon%20power_apg","p":105,"h":1,"n":"Siphon Power"},{"c":0,"s":4,"id":3078,"u":"skill%20mastery_apg","p":151,"h":1,"n":"Skill Mastery"},{"c":0,"s":4,"id":3079,"u":"skillful%20tail_apg","p":40,"h":1,"n":"Skillful Tail"},{"c":0,"s":4,"id":3080,"u":"skim%20scroll_apg","p":189,"h":1,"n":"Skim Scroll"},{"c":0,"s":4,"id":3081,"u":"skitter_apg","p":209,"h":1,"n":"Skitter"},{"c":0,"s":4,"id":3082,"u":"slag%20may_apg","p":31,"h":1,"n":"Slag May"},{"c":0,"s":4,"id":3083,"u":"smash%20from%20the%20air_apg","p":127,"h":1,"n":"Smash From The Air"},{"c":0,"s":4,"id":3084,"u":"smite%20good_apg","p":119,"h":1,"n":"Smite Good"},{"c":0,"s":4,"id":3085,"u":"snap%20out%20of%20it!_apg","p":180,"h":1,"n":"Snap Out Of It!"},{"c":0,"s":4,"id":3086,"u":"snare%20genius_apg","p":15,"h":1,"n":"Snare Genius"},{"c":0,"s":4,"id":3087,"u":"snare%20hopping_apg","p":132,"h":1,"n":"Snare Hopping"},{"c":0,"s":4,"id":3088,"u":"snare%20setter_apg","p":14,"h":1,"n":"Snare Setter"},{"c":0,"s":4,"id":3089,"u":"snarecrafter%20dedication_apg","p":194,"h":1,"n":"Snarecrafter Dedication"},{"c":0,"s":4,"id":3090,"u":"soaring%20flight_apg","p":27,"h":1,"n":"Soaring Flight"},{"c":0,"s":4,"id":3091,"u":"social%20purview_apg","p":196,"h":1,"n":"Social Purview"},{"c":0,"s":4,"id":3092,"u":"solid%20lead_apg","p":61,"h":1,"n":"Solid Lead"},{"c":0,"s":4,"id":3093,"u":"song%20of%20marching_apg","p":113,"h":1,"n":"Song Of Marching"},{"c":0,"s":4,"id":3094,"u":"song%20of%20strength_apg","p":112,"h":1,"n":"Song Of Strength"},{"c":0,"s":4,"id":3095,"u":"soothing%20mist_apg","p":132,"h":1,"n":"Soothing Mist"},{"c":0,"s":4,"id":3096,"u":"soulsight%20(bard)_apg","p":113,"a":"Bard","h":1,"n":"Soulsight"},{"c":0,"s":4,"id":3097,"u":"soulsight%20(sorcerer)_apg","p":139,"a":"Sorcerer","h":1,"n":"Soulsight"},{"c":0,"s":4,"id":3098,"u":"sow%20spell_apg","p":125,"h":1,"n":"Sow Spell"},{"c":0,"s":4,"id":3099,"u":"specialized%20beastmaster%20companion_apg","p":161,"h":1,"n":"Specialized Beastmaster Companion"},{"c":0,"s":4,"id":3100,"u":"specialized%20mount_apg","p":165,"h":1,"n":"Specialized Mount"},{"c":0,"s":4,"id":3101,"u":"speedy%20rituals_apg","p":187,"h":1,"n":"Speedy Rituals"},{"c":0,"s":4,"id":3102,"u":"spell%20devourer_apg","p":19,"h":1,"n":"Spell Devourer"},{"c":0,"s":4,"id":3103,"u":"spell%20mastery_apg","p":143,"h":1,"n":"Spell Mastery"},{"c":0,"s":4,"id":3104,"u":"spell%20relay_apg","p":139,"h":1,"n":"Spell Relay"},{"c":0,"s":4,"id":3105,"u":"spell%20shroud_apg","p":141,"h":1,"n":"Spell Shroud"},{"c":0,"s":4,"id":3106,"u":"spellbook%20prodigy_apg","p":142,"h":1,"n":"Spellbook Prodigy"},{"c":0,"s":4,"id":3107,"u":"spirit%20soother_apg","p":38,"h":1,"n":"Spirit Soother"},{"c":0,"s":4,"id":3108,"u":"spirit%20strikes_apg","p":38,"h":1,"n":"Spirit Strikes"},{"c":0,"s":4,"id":3109,"u":"spiritual%20guides_apg","p":109,"h":1,"n":"Spiritual Guides"},{"c":0,"s":4,"id":3110,"u":"spiritual%20sense_apg","p":79,"h":1,"n":"Spiritual Sense"},{"c":0,"s":4,"id":3111,"u":"split%20hex_apg","p":105,"h":1,"n":"Split Hex"},{"c":0,"s":4,"id":3112,"u":"split%20shot_apg","p":139,"h":1,"n":"Split Shot"},{"c":0,"s":4,"id":3113,"u":"split%20slot_apg","p":142,"h":1,"n":"Split Slot"},{"c":0,"s":4,"id":3114,"u":"spot%20translate_apg","p":178,"h":1,"n":"Spot Translate"},{"c":0,"s":4,"id":3115,"u":"springing%20leaper_apg","p":10,"h":1,"n":"Springing Leaper"},{"c":0,"s":4,"id":3116,"u":"squawk!_apg","p":26,"h":1,"n":"Squawk!"},{"c":0,"s":4,"id":3117,"u":"stage%20fighting_apg","p":175,"h":1,"n":"Stage Fighting"},{"c":0,"s":4,"id":3118,"u":"startling%20appearance_apg","p":197,"h":1,"n":"Startling Appearance"},{"c":0,"s":4,"id":3119,"u":"stay%20down!_apg","p":137,"h":1,"n":"Stay Down!"},{"c":0,"s":4,"id":3120,"u":"steady%20spellcasting%20(oracle)_apg","p":80,"a":"Oracle","h":1,"n":"Steady Spellcasting"},{"c":0,"s":4,"id":3121,"u":"steady%20spellcasting%20(witch)_apg","p":102,"a":"Witch","h":1,"n":"Steady Spellcasting"},{"c":0,"s":4,"id":3122,"u":"steal%20spell_apg","p":137,"h":1,"n":"Steal Spell"},{"c":0,"s":4,"id":3123,"u":"steel%20skin_apg","p":191,"h":1,"n":"Steel Skin"},{"c":0,"s":4,"id":3124,"u":"steel%20yourself!_apg","p":180,"h":1,"n":"Steel Yourself!"},{"c":0,"s":4,"id":3125,"u":"step%20lively_apg","p":46,"h":1,"n":"Step Lively"},{"c":0,"s":4,"id":3126,"u":"sticky%20poison_apg","p":107,"h":1,"n":"Sticky Poison"},{"c":0,"s":4,"id":3127,"u":"stone%20bones_apg","p":42,"h":1,"n":"Stone Bones"},{"c":0,"s":4,"id":3128,"u":"stonegate_apg","p":42,"h":1,"n":"Stonegate"},{"c":0,"s":4,"id":3129,"u":"storm's%20lash_apg","p":26,"h":1,"n":"Storm's Lash"},{"c":0,"s":4,"id":3130,"u":"strategic%20assessment_apg","p":62,"h":1,"n":"Strategic Assessment"},{"c":0,"s":4,"id":3131,"u":"strategic%20bypass_apg","p":65,"h":1,"n":"Strategic Bypass"},{"c":0,"s":4,"id":3132,"u":"straveika_apg","p":33,"h":1,"n":"Straveika"},{"c":0,"s":4,"id":3133,"u":"strong%20arm_apg","p":134,"h":1,"n":"Strong Arm"},{"c":0,"s":4,"id":3134,"u":"stubborn%20persistence_apg","p":47,"h":1,"n":"Stubborn Persistence"},{"c":0,"s":4,"id":3135,"u":"student%20of%20the%20dueling%20arts_apg","p":171,"h":1,"n":"Student Of The Dueling Arts"},{"c":0,"s":4,"id":3136,"u":"stumbling%20feint_apg","p":129,"h":1,"n":"Stumbling Feint"},{"c":0,"s":4,"id":3137,"u":"stumbling%20stance_apg","p":128,"h":1,"n":"Stumbling Stance"},{"c":0,"s":4,"id":3138,"u":"stunning%20appearance_apg","p":197,"h":1,"n":"Stunning Appearance"},{"c":0,"s":4,"id":3139,"u":"stunning%20finisher_apg","p":91,"h":1,"n":"Stunning Finisher"},{"c":0,"s":4,"id":3140,"u":"subjective%20truth_apg","p":197,"h":1,"n":"Subjective Truth"},{"c":0,"s":4,"id":3141,"u":"subtle%20delivery_apg","p":106,"h":1,"n":"Subtle Delivery"},{"c":0,"s":4,"id":3142,"u":"summon%20celestial%20kin_apg","p":36,"h":1,"n":"Summon Celestial Kin"},{"c":0,"s":4,"id":3143,"u":"summon%20fiendish%20kin_apg","p":41,"h":1,"n":"Summon Fiendish Kin"},{"c":0,"s":4,"id":3144,"u":"sunder%20enchantment_apg","p":111,"h":1,"n":"Sunder Enchantment"},{"c":0,"s":4,"id":3145,"u":"sunder%20spell_apg","p":111,"h":1,"n":"Sunder Spell"},{"c":0,"s":4,"id":3146,"u":"supernatural%20senses_apg","p":109,"h":1,"n":"Supernatural Senses"},{"c":0,"s":4,"id":3147,"u":"supertaster_apg","p":209,"h":1,"n":"Supertaster"},{"c":0,"s":4,"id":3148,"u":"sure%20foot_apg","p":177,"h":1,"n":"Sure Foot"},{"c":0,"s":4,"id":3149,"u":"surging%20focus_apg","p":122,"h":1,"n":"Surging Focus"},{"c":0,"s":4,"id":3150,"u":"surging%20might_apg","p":80,"h":1,"n":"Surging Might"},{"c":0,"s":4,"id":3151,"u":"surprise%20attack_apg","p":158,"h":1,"n":"Surprise Attack"},{"c":0,"s":4,"id":3152,"u":"surprise%20snare_apg","p":194,"h":1,"n":"Surprise Snare"},{"c":0,"s":4,"id":3153,"u":"surprise%20strike_apg","p":199,"h":1,"n":"Surprise Strike"},{"c":0,"s":4,"id":3154,"u":"suspect%20of%20opportunity_apg","p":63,"h":1,"n":"Suspect Of Opportunity"},{"c":0,"s":4,"id":3155,"u":"svetocher_apg","p":33,"h":1,"n":"Svetocher"},{"c":0,"s":4,"id":3156,"u":"swaggering%20initiative_apg","p":90,"h":1,"n":"Swaggering Initiative"},{"c":0,"s":4,"id":3157,"u":"swashbuckler%20dedication_apg","p":153,"h":1,"n":"Swashbuckler Dedication"},{"c":0,"s":4,"id":3158,"u":"swashbuckler's%20riposte_apg","p":153,"h":1,"n":"Swashbuckler's Riposte"},{"c":0,"s":4,"id":3159,"u":"swashbuckler's%20speed_apg","p":153,"h":1,"n":"Swashbuckler's Speed"},{"c":0,"s":4,"id":3160,"u":"swift%20elusion_apg","p":137,"h":1,"n":"Swift Elusion"},{"c":0,"s":4,"id":3161,"u":"symphony%20of%20blood_apg","p":33,"h":1,"n":"Symphony Of Blood"},{"c":0,"s":4,"id":3162,"u":"symphony%20of%20the%20unfettered%20heart_apg","p":114,"h":1,"n":"Symphony Of The Unfettered Heart"},{"c":0,"s":4,"id":3163,"u":"tactical%20cadence_apg","p":181,"h":1,"n":"Tactical Cadence"},{"c":0,"s":4,"id":3164,"u":"tactical%20entry_apg","p":136,"h":1,"n":"Tactical Entry"},{"c":0,"s":4,"id":3165,"u":"takedown%20expert_apg","p":60,"h":1,"n":"Takedown Expert"},{"c":0,"s":4,"id":3166,"u":"talisman%20dabbler%20dedication_apg","p":195,"h":1,"n":"Talisman Dabbler Dedication"},{"c":0,"s":4,"id":3167,"u":"talismanic%20sage_apg","p":195,"h":1,"n":"Talismanic Sage"},{"c":0,"s":4,"id":3168,"u":"tangle%20of%20battle_apg","p":111,"h":1,"n":"Tangle Of Battle"},{"c":0,"s":4,"id":3169,"u":"target%20of%20opportunity_apg","p":181,"h":1,"n":"Target Of Opportunity"},{"c":0,"s":4,"id":3170,"u":"targeting%20finisher_apg","p":92,"h":1,"n":"Targeting Finisher"},{"c":0,"s":4,"id":3171,"u":"telluric%20power_apg","p":42,"h":1,"n":"Telluric Power"},{"c":0,"s":4,"id":3172,"u":"temporary%20potions_apg","p":104,"h":1,"n":"Temporary Potions"},{"c":0,"s":4,"id":3173,"u":"tenacious%20toxins_apg","p":107,"h":1,"n":"Tenacious Toxins"},{"c":0,"s":4,"id":3174,"u":"tengu%20lore_apg","p":26,"h":1,"n":"Tengu Lore"},{"c":0,"s":4,"id":3175,"u":"tengu%20weapon%20expertise_apg","p":27,"h":1,"n":"Tengu Weapon Expertise"},{"c":0,"s":4,"id":3176,"u":"tengu%20weapon%20familiarity_apg","p":26,"h":1,"n":"Tengu Weapon Familiarity"},{"c":0,"s":4,"id":3177,"u":"tengu%20weapon%20study_apg","p":27,"h":1,"n":"Tengu Weapon Study"},{"c":0,"s":4,"id":3178,"u":"terraforming%20spell_apg","p":141,"h":1,"n":"Terraforming Spell"},{"c":0,"s":4,"id":3179,"u":"terrain%20scout_apg","p":188,"h":1,"n":"Terrain Scout"},{"c":0,"s":4,"id":3180,"u":"terrain%20transposition_apg","p":133,"h":1,"n":"Terrain Transposition"},{"c":0,"s":4,"id":3181,"u":"terrifying%20resistance_apg","p":209,"h":1,"n":"Terrifying Resistance"},{"c":0,"s":4,"id":3182,"u":"that's%20odd_apg","p":60,"h":1,"n":"That's Odd"},{"c":0,"s":4,"id":3183,"u":"the%20harder%20they%20fall_apg","p":135,"h":1,"n":"The Harder They Fall"},{"c":0,"s":4,"id":3184,"u":"thorough%20research_apg","p":63,"h":1,"n":"Thorough Research"},{"c":0,"s":4,"id":3185,"u":"thorough%20search_apg","p":209,"h":1,"n":"Thorough Search"},{"c":0,"s":4,"id":3186,"u":"through%20spell_apg","p":122,"h":1,"n":"Through Spell"},{"c":0,"s":4,"id":3187,"u":"tinkering%20fingers_apg","p":22,"h":1,"n":"Tinkering Fingers"},{"c":0,"s":4,"id":3188,"u":"to%20battle!_apg","p":181,"h":1,"n":"To Battle!"},{"c":0,"s":4,"id":3189,"u":"tools%20of%20the%20trade_apg","p":163,"h":1,"n":"Tools Of The Trade"},{"c":0,"s":4,"id":3190,"u":"topple%20foe_apg","p":181,"h":1,"n":"Topple Foe"},{"c":0,"s":4,"id":3191,"u":"toppling%20dance_apg","p":46,"h":1,"n":"Toppling Dance"},{"c":0,"s":4,"id":3192,"u":"trampling%20charge_apg","p":165,"h":1,"n":"Trampling Charge"},{"c":0,"s":4,"id":3193,"u":"trap%20finder_apg","p":60,"h":1,"n":"Trap Finder"},{"c":0,"s":4,"id":3194,"u":"treat%20condition_apg","p":184,"h":1,"n":"Treat Condition"},{"c":0,"s":4,"id":3195,"u":"tree%20climber_apg","p":43,"h":1,"n":"Tree Climber"},{"c":0,"s":4,"id":3196,"u":"triangle%20shot_apg","p":131,"h":1,"n":"Triangle Shot"},{"c":0,"s":4,"id":3197,"u":"trickster's%20ace_apg","p":65,"h":1,"n":"Trickster's Ace"},{"c":0,"s":4,"id":3198,"u":"triumphant%20inspiration_apg","p":114,"h":1,"n":"Triumphant Inspiration"},{"c":0,"s":4,"id":3199,"u":"true%20perception_apg","p":209,"h":1,"n":"True Perception"},{"c":0,"s":4,"id":3200,"u":"tumble%20behind%20(swashbuckler)_apg","p":89,"a":"Swashbuckler","h":1,"n":"Tumble Behind"},{"c":0,"s":4,"id":3201,"u":"tumble%20behind%20(rogue)_apg","p":134,"a":"Rogue","h":1,"n":"Tumble Behind"},{"c":0,"s":4,"id":3202,"u":"tumbling%20opportunist_apg","p":155,"h":1,"n":"Tumbling Opportunist"},{"c":0,"s":4,"id":3203,"u":"tumbling%20strike_apg","p":155,"h":1,"n":"Tumbling Strike"},{"c":0,"s":4,"id":3204,"u":"tusks_apg","p":18,"h":1,"n":"Tusks"},{"c":0,"s":4,"id":3205,"u":"twin%20distraction_apg","p":135,"h":1,"n":"Twin Distraction"},{"c":0,"s":4,"id":3206,"u":"twin%20parry%20(swashbuckler)_apg","p":90,"a":"Swashbuckler","h":1,"n":"Twin Parry"},{"c":0,"s":4,"id":3207,"u":"twinned%20defense%20(swashbuckler)_apg","p":93,"a":"Swashbuckler","h":1,"n":"Twinned Defense"},{"c":0,"s":4,"id":3208,"u":"twitchy_apg","p":45,"h":1,"n":"Twitchy"},{"c":0,"s":4,"id":3209,"u":"ultimate%20flexibility_apg","p":127,"h":1,"n":"Ultimate Flexibility"},{"c":0,"s":4,"id":3210,"u":"ultimate%20polymath_apg","p":115,"h":1,"n":"Ultimate Polymath"},{"c":0,"s":4,"id":3211,"u":"unbalancing%20finisher_apg","p":89,"h":1,"n":"Unbalancing Finisher"},{"c":0,"s":4,"id":3212,"u":"unbalancing%20sweep_apg","p":111,"h":1,"n":"Unbalancing Sweep"},{"c":0,"s":4,"id":3213,"u":"undead%20slayer_apg","p":33,"h":1,"n":"Undead Slayer"},{"c":0,"s":4,"id":3214,"u":"underground%20network_apg","p":209,"h":1,"n":"Underground Network"},{"c":0,"s":4,"id":3215,"u":"underhanded%20assault_apg","p":134,"h":1,"n":"Underhanded Assault"},{"c":0,"s":4,"id":3216,"u":"underworld%20investigator_apg","p":60,"h":1,"n":"Underworld Investigator"},{"c":0,"s":4,"id":3217,"u":"undying%20ferocity_apg","p":19,"h":1,"n":"Undying Ferocity"},{"c":0,"s":4,"id":3218,"u":"unhampered%20passage_apg","p":46,"h":1,"n":"Unhampered Passage"},{"c":0,"s":4,"id":3219,"u":"unseat_apg","p":165,"h":1,"n":"Unseat"},{"c":0,"s":4,"id":3220,"u":"unstable%20concoction_apg","p":107,"h":1,"n":"Unstable Concoction"},{"c":0,"s":4,"id":3221,"u":"unstoppable%20juggernaut_apg","p":111,"h":1,"n":"Unstoppable Juggernaut"},{"c":0,"s":4,"id":3222,"u":"vampire%20lore_apg","p":33,"h":1,"n":"Vampire Lore"},{"c":0,"s":4,"id":3223,"u":"vandal_apg","p":45,"h":1,"n":"Vandal"},{"c":0,"s":4,"id":3224,"u":"verdant%20weapon_apg","p":124,"h":1,"n":"Verdant Weapon"},{"c":0,"s":4,"id":3225,"u":"vexing%20tumble_apg","p":91,"h":1,"n":"Vexing Tumble"},{"c":0,"s":4,"id":3226,"u":"vicious%20incisors_apg","p":22,"h":1,"n":"Vicious Incisors"},{"c":0,"s":4,"id":3227,"u":"vicious%20vengeance_apg","p":118,"h":1,"n":"Vicious Vengeance"},{"c":0,"s":4,"id":3228,"u":"vigilante%20dedication_apg","p":196,"h":1,"n":"Vigilante Dedication"},{"c":0,"s":4,"id":3229,"u":"vigorous%20inspiration_apg","p":115,"h":1,"n":"Vigorous Inspiration"},{"c":0,"s":4,"id":3230,"u":"viking%20dedication_apg","p":198,"h":1,"n":"Viking Dedication"},{"c":0,"s":4,"id":3231,"u":"viking%20weapon%20familiarity_apg","p":198,"h":1,"n":"Viking Weapon Familiarity"},{"c":0,"s":4,"id":3232,"u":"viking%20weapon%20specialist_apg","p":198,"h":1,"n":"Viking Weapon Specialist"},{"c":0,"s":4,"id":3233,"u":"vile%20desecration_apg","p":122,"h":1,"n":"Vile Desecration"},{"c":0,"s":4,"id":3234,"u":"vision%20of%20weakness_apg","p":79,"h":1,"n":"Vision Of Weakness"},{"c":0,"s":4,"id":3235,"u":"vivacious%20bravado_apg","p":91,"h":1,"n":"Vivacious Bravado"},{"c":0,"s":4,"id":3236,"u":"voice%20of%20the%20night_apg","p":33,"h":1,"n":"Voice Of The Night"},{"c":0,"s":4,"id":3237,"u":"walk%20the%20plank_apg","p":185,"h":1,"n":"Walk The Plank"},{"c":0,"s":4,"id":3238,"u":"wandering%20oasis_apg","p":125,"h":1,"n":"Wandering Oasis"},{"c":0,"s":4,"id":3239,"u":"ward%20against%20corruption_apg","p":38,"h":1,"n":"Ward Against Corruption"},{"c":0,"s":4,"id":3240,"u":"warden's%20focus_apg","p":133,"h":1,"n":"Warden's Focus"},{"c":0,"s":4,"id":3241,"u":"warden's%20wellspring_apg","p":133,"h":1,"n":"Warden's Wellspring"},{"c":0,"s":4,"id":3242,"u":"warren%20digger_apg","p":23,"h":1,"n":"Warren Digger"},{"c":0,"s":4,"id":3243,"u":"warren%20navigator_apg","p":22,"h":1,"n":"Warren Navigator"},{"c":0,"s":4,"id":3244,"u":"wary%20skulker_apg","p":11,"h":1,"n":"Wary Skulker"},{"c":0,"s":4,"id":3245,"u":"watch%20your%20back_apg","p":135,"h":1,"n":"Watch Your Back"},{"c":0,"s":4,"id":3246,"u":"water%20sprint_apg","p":209,"h":1,"n":"Water Sprint"},{"c":0,"s":4,"id":3247,"u":"weapon%20improviser%20dedication_apg","p":199,"h":1,"n":"Weapon Improviser Dedication"},{"c":0,"s":4,"id":3248,"u":"well-groomed_apg","p":11,"h":1,"n":"Well-groomed"},{"c":0,"s":4,"id":3249,"u":"well-met%20traveler_apg","p":10,"h":1,"n":"Well-met Traveler"},{"c":0,"s":4,"id":3250,"u":"well-versed_apg","p":112,"h":1,"n":"Well-versed"},{"c":0,"s":4,"id":3251,"u":"whirling%20blade%20stance_apg","p":130,"h":1,"n":"Whirling Blade Stance"},{"c":0,"s":4,"id":3252,"u":"whodunnit%3f_apg","p":63,"h":1,"n":"Whodunnit?"},{"c":0,"s":4,"id":3253,"u":"widen%20spell%20(oracle)_apg","p":79,"a":"Oracle","h":1,"n":"Widen Spell"},{"c":0,"s":4,"id":3254,"u":"widen%20spell%20(witch)_apg","p":101,"a":"Witch","h":1,"n":"Widen Spell"},{"c":0,"s":4,"id":3255,"u":"wild%20strider_apg","p":177,"h":1,"n":"Wild Strider"},{"c":0,"s":4,"id":3256,"u":"wings%20of%20the%20dragon_apg","p":169,"h":1,"n":"Wings Of The Dragon"},{"c":0,"s":4,"id":3257,"u":"witch%20dedication_apg","p":154,"h":1,"n":"Witch Dedication"},{"c":0,"s":4,"id":3258,"u":"witch's%20bottle_apg","p":103,"h":1,"n":"Witch's Bottle"},{"c":0,"s":4,"id":3259,"u":"witch's%20charge_apg","p":102,"h":1,"n":"Witch's Charge"},{"c":0,"s":4,"id":3260,"u":"witch's%20communion_apg","p":104,"h":1,"n":"Witch's Communion"},{"c":0,"s":4,"id":3261,"u":"witch's%20hut_apg","p":105,"h":1,"n":"Witch's Hut"},{"c":0,"s":4,"id":3262,"u":"wortwitch_apg","p":101,"h":1,"n":"Wortwitch"},{"c":0,"s":4,"id":3263,"u":"you're%20next%20(swashbuckler)_apg","p":88,"a":"Swashbuckler","h":1,"n":"You're Next"},{"c":0,"s":5,"id":3264,"u":"abundant%20step_crb","p":160,"h":1,"n":"Abundant Step"},{"c":0,"s":5,"id":3265,"u":"acute%20scent_crb","p":88,"h":1,"n":"Acute Scent"},{"c":0,"s":5,"id":3266,"u":"acute%20vision_crb","p":88,"h":1,"n":"Acute Vision"},{"c":0,"s":5,"id":3267,"u":"adapted%20cantrip_crb","p":57,"h":1,"n":"Adapted Cantrip"},{"c":0,"s":5,"id":3268,"u":"adaptive%20adept_crb","p":57,"h":1,"n":"Adaptive Adept"},{"c":0,"s":5,"id":3269,"u":"additional%20lore_crb","p":258,"h":1,"n":"Additional Lore"},{"c":0,"s":5,"id":3270,"u":"adopted%20ancestry_crb","p":258,"h":1,"n":"Adopted Ancestry"},{"c":0,"s":5,"id":3271,"u":"advanced%20arcana_crb","p":231,"h":1,"n":"Advanced Arcana"},{"c":0,"s":5,"id":3272,"u":"advanced%20blood%20potency_crb","p":230,"h":1,"n":"Advanced Blood Potency"},{"c":0,"s":5,"id":3273,"u":"advanced%20bloodline_crb","p":200,"h":1,"n":"Advanced Bloodline"},{"c":0,"s":5,"id":3274,"u":"advanced%20concoction_crb","p":220,"h":1,"n":"Advanced Concoction"},{"c":0,"s":5,"id":3275,"u":"advanced%20deity's%20domain_crb","p":112,"h":1,"n":"Advanced Deity's Domain"},{"c":0,"s":5,"id":3276,"u":"advanced%20devotion_crb","p":223,"h":1,"n":"Advanced Devotion"},{"c":0,"s":5,"id":3277,"u":"advanced%20dogma_crb","p":224,"h":1,"n":"Advanced Dogma"},{"c":0,"s":5,"id":3278,"u":"advanced%20domain_crb","p":123,"h":1,"n":"Advanced Domain"},{"c":0,"s":5,"id":3279,"u":"advanced%20fury_crb","p":221,"h":1,"n":"Advanced Fury"},{"c":0,"s":5,"id":3280,"u":"advanced%20hunter's%20trick_crb","p":228,"h":1,"n":"Advanced Hunter's Trick"},{"c":0,"s":5,"id":3281,"u":"advanced%20kata_crb","p":227,"h":1,"n":"Advanced Kata"},{"c":0,"s":5,"id":3282,"u":"advanced%20maneuver_crb","p":226,"h":1,"n":"Advanced Maneuver"},{"c":0,"s":5,"id":3283,"u":"advanced%20muse's%20whispers_crb","p":222,"h":1,"n":"Advanced Muse's Whispers"},{"c":0,"s":5,"id":3284,"u":"advanced%20school%20spell_crb","p":211,"h":1,"n":"Advanced School Spell"},{"c":0,"s":5,"id":3285,"u":"advanced%20trickery_crb","p":229,"h":1,"n":"Advanced Trickery"},{"c":0,"s":5,"id":3286,"u":"advanced%20weapon%20training_crb","p":147,"h":1,"n":"Advanced Weapon Training"},{"c":0,"s":5,"id":3287,"u":"advanced%20wilding_crb","p":225,"h":1,"n":"Advanced Wilding"},{"c":0,"s":5,"id":3288,"u":"advantageous%20assault_crb","p":147,"h":1,"n":"Advantageous Assault"},{"c":0,"s":5,"id":3289,"u":"affliction%20mercy_crb","p":113,"h":1,"n":"Affliction Mercy"},{"c":0,"s":5,"id":3290,"u":"ageless%20patience_crb","p":40,"h":1,"n":"Ageless Patience"},{"c":0,"s":5,"id":3291,"u":"aggressive%20block_crb","p":145,"h":1,"n":"Aggressive Block"},{"c":0,"s":5,"id":3292,"u":"agile%20grace_crb","p":150,"h":1,"n":"Agile Grace"},{"c":0,"s":5,"id":3293,"u":"alchemical%20crafting_crb","p":258,"h":1,"n":"Alchemical Crafting"},{"c":0,"s":5,"id":3294,"u":"alchemical%20familiar_crb","p":76,"h":1,"n":"Alchemical Familiar"},{"c":0,"s":5,"id":3295,"u":"alchemical%20savant_crb","p":76,"h":1,"n":"Alchemical Savant"},{"c":0,"s":5,"id":3296,"u":"alchemist%20dedication_crb","p":220,"h":1,"n":"Alchemist Dedication"},{"c":0,"s":5,"id":3297,"u":"align%20armament_crb","p":124,"h":1,"n":"Align Armament"},{"c":0,"s":5,"id":3298,"u":"allegro_crb","p":103,"h":1,"n":"Allegro"},{"c":0,"s":5,"id":3299,"u":"ancestral%20longevity_crb","p":40,"h":1,"n":"Ancestral Longevity"},{"c":0,"s":5,"id":3300,"u":"ancestral%20paragon_crb","p":258,"h":1,"n":"Ancestral Paragon"},{"c":0,"s":5,"id":3301,"u":"anchoring%20aura_crb","p":114,"h":1,"n":"Anchoring Aura"},{"c":0,"s":5,"id":3302,"u":"animal%20accomplice_crb","p":44,"h":1,"n":"Animal Accomplice"},{"c":0,"s":5,"id":3303,"u":"animal%20companion%20(druid)_crb","p":133,"a":"Druid","h":1,"n":"Animal Companion"},{"c":0,"s":5,"id":3304,"u":"animal%20companion%20(ranger)_crb","p":170,"a":"Ranger","h":1,"n":"Animal Companion"},{"c":0,"s":5,"id":3305,"u":"animal%20elocutionist_crb","p":45,"h":1,"n":"Animal Elocutionist"},{"c":0,"s":5,"id":3306,"u":"animal%20rage_crb","p":91,"h":1,"n":"Animal Rage"},{"c":0,"s":5,"id":3307,"u":"animal%20skin_crb","p":90,"h":1,"n":"Animal Skin"},{"c":0,"s":5,"id":3308,"u":"arcane%20breadth_crb","p":231,"h":1,"n":"Arcane Breadth"},{"c":0,"s":5,"id":3309,"u":"arcane%20evolution_crb","p":199,"h":1,"n":"Arcane Evolution"},{"c":0,"s":5,"id":3310,"u":"arcane%20school%20spell_crb","p":231,"h":1,"n":"Arcane School Spell"},{"c":0,"s":5,"id":3311,"u":"arcane%20sense_crb","p":258,"h":1,"n":"Arcane Sense"},{"c":0,"s":5,"id":3312,"u":"archwizard's%20might_crb","p":213,"h":1,"n":"Archwizard's Might"},{"c":0,"s":5,"id":3313,"u":"armor%20proficiency_crb","p":258,"h":1,"n":"Armor Proficiency"},{"c":0,"s":5,"id":3314,"u":"arrow%20snatching_crb","p":162,"h":1,"n":"Arrow Snatching"},{"c":0,"s":5,"id":3315,"u":"assisting%20shot_crb","p":145,"h":1,"n":"Assisting Shot"},{"c":0,"s":5,"id":3316,"u":"assurance_crb","p":258,"h":1,"n":"Assurance"},{"c":0,"s":5,"id":3317,"u":"attack%20of%20opportunity%20(barbarian)_crb","p":90,"a":"Barbarian","h":1,"n":"Attack Of Opportunity"},{"c":0,"s":5,"id":3318,"u":"attack%20of%20opportunity%20(champion)_crb","p":111,"a":"Champion","h":1,"n":"Attack Of Opportunity"},{"c":0,"s":5,"id":3319,"u":"aura%20of%20courage_crb","p":111,"h":1,"n":"Aura Of Courage"},{"c":0,"s":5,"id":3320,"u":"aura%20of%20faith_crb","p":113,"h":1,"n":"Aura Of Faith"},{"c":0,"s":5,"id":3321,"u":"aura%20of%20life_crb","p":114,"h":1,"n":"Aura Of Life"},{"c":0,"s":5,"id":3322,"u":"aura%20of%20righteousness_crb","p":114,"h":1,"n":"Aura Of Righteousness"},{"c":0,"s":5,"id":3323,"u":"aura%20of%20vengeance_crb","p":114,"h":1,"n":"Aura Of Vengeance"},{"c":0,"s":5,"id":3324,"u":"auspicious%20mount_crb","p":115,"h":1,"n":"Auspicious Mount"},{"c":0,"s":5,"id":3325,"u":"automatic%20knowledge_crb","p":258,"h":1,"n":"Automatic Knowledge"},{"c":0,"s":5,"id":3326,"u":"avatar's%20audience_crb","p":127,"h":1,"n":"Avatar's Audience"},{"c":0,"s":5,"id":3327,"u":"awesome%20blow_crb","p":93,"h":1,"n":"Awesome Blow"},{"c":0,"s":5,"id":3328,"u":"barbarian%20dedication_crb","p":221,"h":1,"n":"Barbarian Dedication"},{"c":0,"s":5,"id":3329,"u":"barbarian%20resiliency_crb","p":221,"h":1,"n":"Barbarian Resiliency"},{"c":0,"s":5,"id":3330,"u":"bard%20dedication_crb","p":222,"h":1,"n":"Bard Dedication"},{"c":0,"s":5,"id":3331,"u":"bardic%20lore_crb","p":99,"h":1,"n":"Bardic Lore"},{"c":0,"s":5,"id":3332,"u":"bargain%20hunter_crb","p":258,"h":1,"n":"Bargain Hunter"},{"c":0,"s":5,"id":3333,"u":"basic%20arcana_crb","p":231,"h":1,"n":"Basic Arcana"},{"c":0,"s":5,"id":3334,"u":"basic%20bard%20spellcasting_crb","p":222,"h":1,"n":"Basic Bard Spellcasting"},{"c":0,"s":5,"id":3335,"u":"basic%20blood%20potency_crb","p":230,"h":1,"n":"Basic Blood Potency"},{"c":0,"s":5,"id":3336,"u":"basic%20bloodline%20spell_crb","p":230,"h":1,"n":"Basic Bloodline Spell"},{"c":0,"s":5,"id":3337,"u":"basic%20cleric%20spellcasting_crb","p":224,"h":1,"n":"Basic Cleric Spellcasting"},{"c":0,"s":5,"id":3338,"u":"basic%20concoction_crb","p":220,"h":1,"n":"Basic Concoction"},{"c":0,"s":5,"id":3339,"u":"basic%20devotion_crb","p":223,"h":1,"n":"Basic Devotion"},{"c":0,"s":5,"id":3340,"u":"basic%20dogma_crb","p":224,"h":1,"n":"Basic Dogma"},{"c":0,"s":5,"id":3341,"u":"basic%20druid%20spellcasting_crb","p":225,"h":1,"n":"Basic Druid Spellcasting"},{"c":0,"s":5,"id":3342,"u":"basic%20fury_crb","p":221,"h":1,"n":"Basic Fury"},{"c":0,"s":5,"id":3343,"u":"basic%20hunter's%20trick_crb","p":228,"h":1,"n":"Basic Hunter's Trick"},{"c":0,"s":5,"id":3344,"u":"basic%20kata_crb","p":227,"h":1,"n":"Basic Kata"},{"c":0,"s":5,"id":3345,"u":"basic%20maneuver_crb","p":226,"h":1,"n":"Basic Maneuver"},{"c":0,"s":5,"id":3346,"u":"basic%20muse's%20whispers_crb","p":222,"h":1,"n":"Basic Muse's Whispers"},{"c":0,"s":5,"id":3347,"u":"basic%20sorcerer%20spellcasting_crb","p":230,"h":1,"n":"Basic Sorcerer Spellcasting"},{"c":0,"s":5,"id":3348,"u":"basic%20trickery_crb","p":229,"h":1,"n":"Basic Trickery"},{"c":0,"s":5,"id":3349,"u":"basic%20wilding_crb","p":225,"h":1,"n":"Basic Wilding"},{"c":0,"s":5,"id":3350,"u":"basic%20wizard%20spellcasting_crb","p":231,"h":1,"n":"Basic Wizard Spellcasting"},{"c":0,"s":5,"id":3351,"u":"battle%20assessment_crb","p":184,"h":1,"n":"Battle Assessment"},{"c":0,"s":5,"id":3352,"u":"battle%20cry_crb","p":258,"h":1,"n":"Battle Cry"},{"c":0,"s":5,"id":3353,"u":"battle%20medicine_crb","p":258,"h":1,"n":"Battle Medicine"},{"c":0,"s":5,"id":3354,"u":"bespell%20weapon%20(sorcerer)_crb","p":199,"a":"Sorcerer","h":1,"n":"Bespell Weapon"},{"c":0,"s":5,"id":3355,"u":"bespell%20weapon%20(wizard)_crb","p":210,"a":"Wizard","h":1,"n":"Bespell Weapon"},{"c":0,"s":5,"id":3356,"u":"bizarre%20magic_crb","p":258,"h":1,"n":"Bizarre Magic"},{"c":0,"s":5,"id":3357,"u":"blade%20of%20justice_crb","p":113,"h":1,"n":"Blade Of Justice"},{"c":0,"s":5,"id":3358,"u":"blank%20slate_crb","p":188,"h":1,"n":"Blank Slate"},{"c":0,"s":5,"id":3359,"u":"blind-fight%20(fighter)_crb","p":149,"a":"Fighter","h":1,"n":"Blind-fight"},{"c":0,"s":5,"id":3360,"u":"blind-fight%20(ranger)_crb","p":173,"a":"Ranger","h":1,"n":"Blind-fight"},{"c":0,"s":5,"id":3361,"u":"blind-fight%20(rogue)_crb","p":186,"a":"Rogue","h":1,"n":"Blind-fight"},{"c":0,"s":5,"id":3362,"u":"bloodline%20breadth_crb","p":230,"h":1,"n":"Bloodline Breadth"},{"c":0,"s":5,"id":3363,"u":"bloodline%20conduit_crb","p":201,"h":1,"n":"Bloodline Conduit"},{"c":0,"s":5,"id":3364,"u":"bloodline%20focus_crb","p":201,"h":1,"n":"Bloodline Focus"},{"c":0,"s":5,"id":3365,"u":"bloodline%20perfection_crb","p":201,"h":1,"n":"Bloodline Perfection"},{"c":0,"s":5,"id":3366,"u":"bloodline%20resistance_crb","p":200,"h":1,"n":"Bloodline Resistance"},{"c":0,"s":5,"id":3367,"u":"bloodline%20wellspring_crb","p":201,"h":1,"n":"Bloodline Wellspring"},{"c":0,"s":5,"id":3368,"u":"bond%20conservation_crb","p":211,"h":1,"n":"Bond Conservation"},{"c":0,"s":5,"id":3369,"u":"bonded%20animal_crb","p":259,"h":1,"n":"Bonded Animal"},{"c":0,"s":5,"id":3370,"u":"bonded%20focus_crb","p":212,"h":1,"n":"Bonded Focus"},{"c":0,"s":5,"id":3371,"u":"boulder%20roll_crb","p":36,"h":1,"n":"Boulder Roll"},{"c":0,"s":5,"id":3372,"u":"boundless%20reprisals_crb","p":153,"h":1,"n":"Boundless Reprisals"},{"c":0,"s":5,"id":3373,"u":"brawling%20focus_crb","p":160,"h":1,"n":"Brawling Focus"},{"c":0,"s":5,"id":3374,"u":"breath%20control_crb","p":259,"h":1,"n":"Breath Control"},{"c":0,"s":5,"id":3375,"u":"brutal%20beating_crb","p":183,"h":1,"n":"Brutal Beating"},{"c":0,"s":5,"id":3376,"u":"brutal%20bully_crb","p":90,"h":1,"n":"Brutal Bully"},{"c":0,"s":5,"id":3377,"u":"brutal%20critical_crb","p":93,"h":1,"n":"Brutal Critical"},{"c":0,"s":5,"id":3378,"u":"brutal%20finish_crb","p":151,"h":1,"n":"Brutal Finish"},{"c":0,"s":5,"id":3379,"u":"brutish%20shove_crb","p":145,"h":1,"n":"Brutish Shove"},{"c":0,"s":5,"id":3380,"u":"burn%20it!_crb","p":48,"h":1,"n":"Burn It!"},{"c":0,"s":5,"id":3381,"u":"burrow%20elocutionist_crb","p":44,"h":1,"n":"Burrow Elocutionist"},{"c":0,"s":5,"id":3382,"u":"calculated%20splash_crb","p":77,"h":1,"n":"Calculated Splash"},{"c":0,"s":5,"id":3383,"u":"call%20of%20the%20wild_crb","p":134,"h":1,"n":"Call Of The Wild"},{"c":0,"s":5,"id":3384,"u":"camouflage_crb","p":174,"h":1,"n":"Camouflage"},{"c":0,"s":5,"id":3385,"u":"canny%20acumen_crb","p":259,"h":1,"n":"Canny Acumen"},{"c":0,"s":5,"id":3386,"u":"cantrip%20expansion%20(bard)_crb","p":100,"a":"Bard","h":1,"n":"Cantrip Expansion"},{"c":0,"s":5,"id":3387,"u":"cantrip%20expansion%20(cleric)_crb","p":122,"a":"Cleric","h":1,"n":"Cantrip Expansion"},{"c":0,"s":5,"id":3388,"u":"cantrip%20expansion%20(sorcerer)_crb","p":198,"a":"Sorcerer","h":1,"n":"Cantrip Expansion"},{"c":0,"s":5,"id":3389,"u":"cantrip%20expansion%20(wizard)_crb","p":210,"a":"Wizard","h":1,"n":"Cantrip Expansion"},{"c":0,"s":5,"id":3390,"u":"cast%20down_crb","p":123,"h":1,"n":"Cast Down"},{"c":0,"s":5,"id":3391,"u":"castigating%20weapon_crb","p":125,"h":1,"n":"Castigating Weapon"},{"c":0,"s":5,"id":3392,"u":"cat%20fall_crb","p":259,"h":1,"n":"Cat Fall"},{"c":0,"s":5,"id":3393,"u":"cave%20climber_crb","p":49,"h":1,"n":"Cave Climber"},{"c":0,"s":5,"id":3394,"u":"ceaseless%20shadows_crb","p":53,"h":1,"n":"Ceaseless Shadows"},{"c":0,"s":5,"id":3395,"u":"celestial%20form_crb","p":115,"h":1,"n":"Celestial Form"},{"c":0,"s":5,"id":3396,"u":"celestial%20mount_crb","p":115,"h":1,"n":"Celestial Mount"},{"c":0,"s":5,"id":3397,"u":"certain%20strike_crb","p":150,"h":1,"n":"Certain Strike"},{"c":0,"s":5,"id":3398,"u":"champion%20dedication_crb","p":223,"h":1,"n":"Champion Dedication"},{"c":0,"s":5,"id":3399,"u":"champion%20resiliency_crb","p":223,"h":1,"n":"Champion Resiliency"},{"c":0,"s":5,"id":3400,"u":"champion's%20reaction_crb","p":223,"h":1,"n":"Champion's Reaction"},{"c":0,"s":5,"id":3401,"u":"champion's%20sacrifice_crb","p":114,"h":1,"n":"Champion's Sacrifice"},{"c":0,"s":5,"id":3402,"u":"channel%20smite_crb","p":122,"h":1,"n":"Channel Smite"},{"c":0,"s":5,"id":3403,"u":"channeled%20succor_crb","p":124,"h":1,"n":"Channeled Succor"},{"c":0,"s":5,"id":3404,"u":"charming%20liar_crb","p":259,"h":1,"n":"Charming Liar"},{"c":0,"s":5,"id":3405,"u":"city%20scavenger_crb","p":48,"h":1,"n":"City Scavenger"},{"c":0,"s":5,"id":3406,"u":"cleave_crb","p":90,"h":1,"n":"Cleave"},{"c":0,"s":5,"id":3407,"u":"cleric%20dedication_crb","p":224,"h":1,"n":"Cleric Dedication"},{"c":0,"s":5,"id":3408,"u":"clever%20counterspell_crb","p":212,"h":1,"n":"Clever Counterspell"},{"c":0,"s":5,"id":3409,"u":"clever%20improviser_crb","p":57,"h":1,"n":"Clever Improviser"},{"c":0,"s":5,"id":3410,"u":"cloud%20jump_crb","p":260,"h":1,"n":"Cloud Jump"},{"c":0,"s":5,"id":3411,"u":"cloud%20step_crb","p":188,"h":1,"n":"Cloud Step"},{"c":0,"s":5,"id":3412,"u":"cognitive%20loophole_crb","p":188,"h":1,"n":"Cognitive Loophole"},{"c":0,"s":5,"id":3413,"u":"collateral%20thrash_crb","p":93,"h":1,"n":"Collateral Thrash"},{"c":0,"s":5,"id":3414,"u":"combat%20climber_crb","p":260,"h":1,"n":"Combat Climber"},{"c":0,"s":5,"id":3415,"u":"combat%20grab_crb","p":146,"h":1,"n":"Combat Grab"},{"c":0,"s":5,"id":3416,"u":"combat%20reflexes_crb","p":150,"h":1,"n":"Combat Reflexes"},{"c":0,"s":5,"id":3417,"u":"combine%20elixirs_crb","p":78,"h":1,"n":"Combine Elixirs"},{"c":0,"s":5,"id":3418,"u":"come%20and%20get%20me_crb","p":91,"h":1,"n":"Come And Get Me"},{"c":0,"s":5,"id":3419,"u":"command%20undead_crb","p":123,"h":1,"n":"Command Undead"},{"c":0,"s":5,"id":3420,"u":"communal%20healing_crb","p":122,"h":1,"n":"Communal Healing"},{"c":0,"s":5,"id":3421,"u":"companion's%20cry_crb","p":172,"h":1,"n":"Companion's Cry"},{"c":0,"s":5,"id":3422,"u":"conceal%20spell_crb","p":210,"h":1,"n":"Conceal Spell"},{"c":0,"s":5,"id":3423,"u":"confabulator_crb","p":260,"h":1,"n":"Confabulator"},{"c":0,"s":5,"id":3424,"u":"connections_crb","p":260,"h":1,"n":"Connections"},{"c":0,"s":5,"id":3425,"u":"contagious%20rage_crb","p":93,"h":1,"n":"Contagious Rage"},{"c":0,"s":5,"id":3426,"u":"continual%20recovery_crb","p":260,"h":1,"n":"Continual Recovery"},{"c":0,"s":5,"id":3427,"u":"cooperative%20nature_crb","p":57,"h":1,"n":"Cooperative Nature"},{"c":0,"s":5,"id":3428,"u":"cooperative%20soul_crb","p":57,"h":1,"n":"Cooperative Soul"},{"c":0,"s":5,"id":3429,"u":"counter%20perform_crb","p":222,"h":1,"n":"Counter Perform"},{"c":0,"s":5,"id":3430,"u":"counterspell%20(sorcerer)_crb","p":198,"a":"Sorcerer","h":1,"n":"Counterspell"},{"c":0,"s":5,"id":3431,"u":"counterspell%20(wizard)_crb","p":209,"a":"Wizard","h":1,"n":"Counterspell"},{"c":0,"s":5,"id":3432,"u":"courtly%20graces_crb","p":260,"h":1,"n":"Courtly Graces"},{"c":0,"s":5,"id":3433,"u":"craft%20anything_crb","p":260,"h":1,"n":"Craft Anything"},{"c":0,"s":5,"id":3434,"u":"craft%20philosopher's%20stone_crb","p":81,"h":1,"n":"Craft Philosopher's Stone"},{"c":0,"s":5,"id":3435,"u":"crane%20flutter_crb","p":161,"h":1,"n":"Crane Flutter"},{"c":0,"s":5,"id":3436,"u":"crane%20stance_crb","p":158,"h":1,"n":"Crane Stance"},{"c":0,"s":5,"id":3437,"u":"cremate%20undead_crb","p":124,"h":1,"n":"Cremate Undead"},{"c":0,"s":5,"id":3438,"u":"critical%20debilitation_crb","p":187,"h":1,"n":"Critical Debilitation"},{"c":0,"s":5,"id":3439,"u":"crossblooded%20evolution_crb","p":200,"h":1,"n":"Crossblooded Evolution"},{"c":0,"s":5,"id":3440,"u":"crossbow%20ace_crb","p":171,"h":1,"n":"Crossbow Ace"},{"c":0,"s":5,"id":3441,"u":"crushing%20grab_crb","p":160,"h":1,"n":"Crushing Grab"},{"c":0,"s":5,"id":3442,"u":"cultural%20adaptability_crb","p":53,"h":1,"n":"Cultural Adaptability"},{"c":0,"s":5,"id":3443,"u":"dancing%20leaf_crb","p":160,"h":1,"n":"Dancing Leaf"},{"c":0,"s":5,"id":3444,"u":"dangerous%20sorcery_crb","p":198,"h":1,"n":"Dangerous Sorcery"},{"c":0,"s":5,"id":3445,"u":"deadly%20aim_crb","p":174,"h":1,"n":"Deadly Aim"},{"c":0,"s":5,"id":3446,"u":"deadly%20simplicity_crb","p":121,"h":1,"n":"Deadly Simplicity"},{"c":0,"s":5,"id":3447,"u":"debilitating%20bomb_crb","p":78,"h":1,"n":"Debilitating Bomb"},{"c":0,"s":5,"id":3448,"u":"debilitating%20shot_crb","p":150,"h":1,"n":"Debilitating Shot"},{"c":0,"s":5,"id":3449,"u":"deep%20lore_crb","p":103,"h":1,"n":"Deep Lore"},{"c":0,"s":5,"id":3450,"u":"defensive%20recovery_crb","p":125,"h":1,"n":"Defensive Recovery"},{"c":0,"s":5,"id":3451,"u":"defensive%20roll_crb","p":187,"h":1,"n":"Defensive Roll"},{"c":0,"s":5,"id":3452,"u":"deflect%20arrow_crb","p":160,"h":1,"n":"Deflect Arrow"},{"c":0,"s":5,"id":3453,"u":"deity's%20domain_crb","p":109,"h":1,"n":"Deity's Domain"},{"c":0,"s":5,"id":3454,"u":"deity's%20protection_crb","p":125,"h":1,"n":"Deity's Protection"},{"c":0,"s":5,"id":3455,"u":"delay%20trap_crb","p":186,"h":1,"n":"Delay Trap"},{"c":0,"s":5,"id":3456,"u":"desperate%20finisher_crb","p":152,"h":1,"n":"Desperate Finisher"},{"c":0,"s":5,"id":3457,"u":"determination_crb","p":152,"h":1,"n":"Determination"},{"c":0,"s":5,"id":3458,"u":"devoted%20focus_crb","p":113,"h":1,"n":"Devoted Focus"},{"c":0,"s":5,"id":3459,"u":"diamond%20fists_crb","p":165,"h":1,"n":"Diamond Fists"},{"c":0,"s":5,"id":3460,"u":"diamond%20soul_crb","p":163,"h":1,"n":"Diamond Soul"},{"c":0,"s":5,"id":3461,"u":"diehard_crb","p":260,"h":1,"n":"Diehard"},{"c":0,"s":5,"id":3462,"u":"directed%20channel_crb","p":123,"h":1,"n":"Directed Channel"},{"c":0,"s":5,"id":3463,"u":"directional%20bombs_crb","p":78,"h":1,"n":"Directional Bombs"},{"c":0,"s":5,"id":3464,"u":"dirge%20of%20doom_crb","p":101,"h":1,"n":"Dirge Of Doom"},{"c":0,"s":5,"id":3465,"u":"disarming%20stance_crb","p":147,"h":1,"n":"Disarming Stance"},{"c":0,"s":5,"id":3466,"u":"disarming%20twist_crb","p":150,"h":1,"n":"Disarming Twist"},{"c":0,"s":5,"id":3467,"u":"dispelling%20slice_crb","p":189,"h":1,"n":"Dispelling Slice"},{"c":0,"s":5,"id":3468,"u":"disrupt%20ki_crb","p":163,"h":1,"n":"Disrupt Ki"},{"c":0,"s":5,"id":3469,"u":"disrupt%20prey_crb","p":172,"h":1,"n":"Disrupt Prey"},{"c":0,"s":5,"id":3470,"u":"disruptive%20stance_crb","p":150,"h":1,"n":"Disruptive Stance"},{"c":0,"s":5,"id":3471,"u":"distracting%20feint_crb","p":183,"h":1,"n":"Distracting Feint"},{"c":0,"s":5,"id":3472,"u":"distracting%20shadows_crb","p":52,"h":1,"n":"Distracting Shadows"},{"c":0,"s":5,"id":3473,"u":"distracting%20shot_crb","p":175,"h":1,"n":"Distracting Shot"},{"c":0,"s":5,"id":3474,"u":"diverse%20armor%20expert_crb","p":223,"h":1,"n":"Diverse Armor Expert"},{"c":0,"s":5,"id":3475,"u":"diverse%20weapon%20expert_crb","p":226,"h":1,"n":"Diverse Weapon Expert"},{"c":0,"s":5,"id":3476,"u":"divine%20ally_crb","p":223,"h":1,"n":"Divine Ally"},{"c":0,"s":5,"id":3477,"u":"divine%20breadth_crb","p":224,"h":1,"n":"Divine Breadth"},{"c":0,"s":5,"id":3478,"u":"divine%20evolution_crb","p":199,"h":1,"n":"Divine Evolution"},{"c":0,"s":5,"id":3479,"u":"divine%20grace_crb","p":110,"h":1,"n":"Divine Grace"},{"c":0,"s":5,"id":3480,"u":"divine%20guidance_crb","p":260,"h":1,"n":"Divine Guidance"},{"c":0,"s":5,"id":3481,"u":"divine%20health_crb","p":111,"h":1,"n":"Divine Health"},{"c":0,"s":5,"id":3482,"u":"divine%20reflexes_crb","p":115,"h":1,"n":"Divine Reflexes"},{"c":0,"s":5,"id":3483,"u":"divine%20wall_crb","p":114,"h":1,"n":"Divine Wall"},{"c":0,"s":5,"id":3484,"u":"divine%20weapon_crb","p":123,"h":1,"n":"Divine Weapon"},{"c":0,"s":5,"id":3485,"u":"domain%20focus_crb","p":125,"h":1,"n":"Domain Focus"},{"c":0,"s":5,"id":3486,"u":"domain%20initiate_crb","p":121,"h":1,"n":"Domain Initiate"},{"c":0,"s":5,"id":3487,"u":"domain%20wellspring_crb","p":126,"h":1,"n":"Domain Wellspring"},{"c":0,"s":5,"id":3488,"u":"double%20prey_crb","p":175,"h":1,"n":"Double Prey"},{"c":0,"s":5,"id":3489,"u":"double%20shot_crb","p":146,"h":1,"n":"Double Shot"},{"c":0,"s":5,"id":3490,"u":"double%20slice_crb","p":144,"h":1,"n":"Double Slice"},{"c":0,"s":5,"id":3491,"u":"dragon%20roar_crb","p":161,"h":1,"n":"Dragon Roar"},{"c":0,"s":5,"id":3492,"u":"dragon%20shape_crb","p":138,"h":1,"n":"Dragon Shape"},{"c":0,"s":5,"id":3493,"u":"dragon%20stance_crb","p":158,"h":1,"n":"Dragon Stance"},{"c":0,"s":5,"id":3494,"u":"dragon%20transformation_crb","p":93,"h":1,"n":"Dragon Transformation"},{"c":0,"s":5,"id":3495,"u":"dragon's%20rage%20breath_crb","p":90,"h":1,"n":"Dragon's Rage Breath"},{"c":0,"s":5,"id":3496,"u":"dragon's%20rage%20wings_crb","p":92,"h":1,"n":"Dragon's Rage Wings"},{"c":0,"s":5,"id":3497,"u":"dragonslayer%20oath_crb","p":110,"h":1,"n":"Dragonslayer Oath"},{"c":0,"s":5,"id":3498,"u":"dread%20striker_crb","p":184,"h":1,"n":"Dread Striker"},{"c":0,"s":5,"id":3499,"u":"druid%20dedication_crb","p":225,"h":1,"n":"Druid Dedication"},{"c":0,"s":5,"id":3500,"u":"dual-handed%20assault_crb","p":146,"h":1,"n":"Dual-handed Assault"},{"c":0,"s":5,"id":3501,"u":"dubious%20knowledge_crb","p":260,"h":1,"n":"Dubious Knowledge"},{"c":0,"s":5,"id":3502,"u":"dueling%20dance_crb","p":151,"h":1,"n":"Dueling Dance"},{"c":0,"s":5,"id":3503,"u":"dueling%20parry_crb","p":146,"h":1,"n":"Dueling Parry"},{"c":0,"s":5,"id":3504,"u":"dueling%20riposte_crb","p":149,"h":1,"n":"Dueling Riposte"},{"c":0,"s":5,"id":3505,"u":"dwarven%20lore_crb","p":36,"h":1,"n":"Dwarven Lore"},{"c":0,"s":5,"id":3506,"u":"dwarven%20weapon%20cunning_crb","p":37,"h":1,"n":"Dwarven Weapon Cunning"},{"c":0,"s":5,"id":3507,"u":"dwarven%20weapon%20expertise_crb","p":37,"h":1,"n":"Dwarven Weapon Expertise"},{"c":0,"s":5,"id":3508,"u":"dwarven%20weapon%20familiarity_crb","p":36,"h":1,"n":"Dwarven Weapon Familiarity"},{"c":0,"s":5,"id":3509,"u":"echoing%20channel_crb","p":127,"h":1,"n":"Echoing Channel"},{"c":0,"s":5,"id":3510,"u":"eclectic%20polymath_crb","p":102,"h":1,"n":"Eclectic Polymath"},{"c":0,"s":5,"id":3511,"u":"eclectic%20skill_crb","p":101,"h":1,"n":"Eclectic Skill"},{"c":0,"s":5,"id":3512,"u":"efficient%20alchemy_crb","p":77,"h":1,"n":"Efficient Alchemy"},{"c":0,"s":5,"id":3513,"u":"effortless%20concentration%20(bard)_crb","p":103,"a":"Bard","h":1,"n":"Effortless Concentration"},{"c":0,"s":5,"id":3514,"u":"effortless%20concentration%20(druid)_crb","p":139,"a":"Druid","h":1,"n":"Effortless Concentration"},{"c":0,"s":5,"id":3515,"u":"effortless%20concentration%20(sorcerer)_crb","p":201,"a":"Sorcerer","h":1,"n":"Effortless Concentration"},{"c":0,"s":5,"id":3516,"u":"effortless%20concentration%20(wizard)_crb","p":213,"a":"Wizard","h":1,"n":"Effortless Concentration"},{"c":0,"s":5,"id":3517,"u":"elastic%20mutagen_crb","p":79,"h":1,"n":"Elastic Mutagen"},{"c":0,"s":5,"id":3518,"u":"elemental%20fist_crb","p":160,"h":1,"n":"Elemental Fist"},{"c":0,"s":5,"id":3519,"u":"elemental%20shape_crb","p":137,"h":1,"n":"Elemental Shape"},{"c":0,"s":5,"id":3520,"u":"elf%20atavism_crb","p":58,"h":1,"n":"Elf Atavism"},{"c":0,"s":5,"id":3521,"u":"elf%20step_crb","p":41,"h":1,"n":"Elf Step"},{"c":0,"s":5,"id":3522,"u":"elven%20lore_crb","p":40,"h":1,"n":"Elven Lore"},{"c":0,"s":5,"id":3523,"u":"elven%20weapon%20elegance_crb","p":41,"h":1,"n":"Elven Weapon Elegance"},{"c":0,"s":5,"id":3524,"u":"elven%20weapon%20expertise_crb","p":41,"h":1,"n":"Elven Weapon Expertise"},{"c":0,"s":5,"id":3525,"u":"elven%20weapon%20familiarity_crb","p":40,"h":1,"n":"Elven Weapon Familiarity"},{"c":0,"s":5,"id":3526,"u":"emblazon%20antimagic_crb","p":125,"h":1,"n":"Emblazon Antimagic"},{"c":0,"s":5,"id":3527,"u":"emblazon%20armament_crb","p":122,"h":1,"n":"Emblazon Armament"},{"c":0,"s":5,"id":3528,"u":"emblazon%20energy_crb","p":124,"h":1,"n":"Emblazon Energy"},{"c":0,"s":5,"id":3529,"u":"empty%20body_crb","p":165,"h":1,"n":"Empty Body"},{"c":0,"s":5,"id":3530,"u":"enduring%20alchemy_crb","p":78,"h":1,"n":"Enduring Alchemy"},{"c":0,"s":5,"id":3531,"u":"enduring%20quickness_crb","p":165,"h":1,"n":"Enduring Quickness"},{"c":0,"s":5,"id":3532,"u":"energized%20font_crb","p":45,"h":1,"n":"Energized Font"},{"c":0,"s":5,"id":3533,"u":"enhanced%20familiar%20(druid)_crb","p":134,"a":"Druid","h":1,"n":"Enhanced Familiar"},{"c":0,"s":5,"id":3534,"u":"enhanced%20familiar%20(sorcerer)_crb","p":198,"a":"Sorcerer","h":1,"n":"Enhanced Familiar"},{"c":0,"s":5,"id":3535,"u":"enhanced%20familiar%20(wizard)_crb","p":210,"a":"Wizard","h":1,"n":"Enhanced Familiar"},{"c":0,"s":5,"id":3536,"u":"enlightened%20presence_crb","p":165,"h":1,"n":"Enlightened Presence"},{"c":0,"s":5,"id":3537,"u":"eschew%20materials_crb","p":209,"h":1,"n":"Eschew Materials"},{"c":0,"s":5,"id":3538,"u":"esoteric%20polymath_crb","p":100,"h":1,"n":"Esoteric Polymath"},{"c":0,"s":5,"id":3539,"u":"eternal%20bane_crb","p":126,"h":1,"n":"Eternal Bane"},{"c":0,"s":5,"id":3540,"u":"eternal%20blessing_crb","p":126,"h":1,"n":"Eternal Blessing"},{"c":0,"s":5,"id":3541,"u":"eternal%20composition_crb","p":103,"h":1,"n":"Eternal Composition"},{"c":0,"s":5,"id":3542,"u":"eternal%20elixir_crb","p":80,"h":1,"n":"Eternal Elixir"},{"c":0,"s":5,"id":3543,"u":"evasiveness_crb","p":229,"h":1,"n":"Evasiveness"},{"c":0,"s":5,"id":3544,"u":"exacting%20strike_crb","p":144,"h":1,"n":"Exacting Strike"},{"c":0,"s":5,"id":3545,"u":"expanded%20splash_crb","p":79,"h":1,"n":"Expanded Splash"},{"c":0,"s":5,"id":3546,"u":"expeditious%20search_crb","p":260,"h":1,"n":"Expeditious Search"},{"c":0,"s":5,"id":3547,"u":"experienced%20professional_crb","p":261,"h":1,"n":"Experienced Professional"},{"c":0,"s":5,"id":3548,"u":"experienced%20smuggler_crb","p":261,"h":1,"n":"Experienced Smuggler"},{"c":0,"s":5,"id":3549,"u":"experienced%20tracker_crb","p":261,"h":1,"n":"Experienced Tracker"},{"c":0,"s":5,"id":3550,"u":"expert%20alchemy_crb","p":220,"h":1,"n":"Expert Alchemy"},{"c":0,"s":5,"id":3551,"u":"expert%20bard%20spellcasting_crb","p":222,"h":1,"n":"Expert Bard Spellcasting"},{"c":0,"s":5,"id":3552,"u":"expert%20cleric%20spellcasting_crb","p":224,"h":1,"n":"Expert Cleric Spellcasting"},{"c":0,"s":5,"id":3553,"u":"expert%20druid%20spellcasting_crb","p":225,"h":1,"n":"Expert Druid Spellcasting"},{"c":0,"s":5,"id":3554,"u":"expert%20longevity_crb","p":41,"h":1,"n":"Expert Longevity"},{"c":0,"s":5,"id":3555,"u":"expert%20sorcerer%20spellcasting_crb","p":230,"h":1,"n":"Expert Sorcerer Spellcasting"},{"c":0,"s":5,"id":3556,"u":"expert%20wizard%20spellcasting_crb","p":231,"h":1,"n":"Expert Wizard Spellcasting"},{"c":0,"s":5,"id":3557,"u":"exploitive%20bomb_crb","p":80,"h":1,"n":"Exploitive Bomb"},{"c":0,"s":5,"id":3558,"u":"extend%20armament%20alignment_crb","p":125,"h":1,"n":"Extend Armament Alignment"},{"c":0,"s":5,"id":3559,"u":"extend%20elixir_crb","p":79,"h":1,"n":"Extend Elixir"},{"c":0,"s":5,"id":3560,"u":"familiar%20(sorcerer)_crb","p":198,"a":"Sorcerer","h":1,"n":"Familiar"},{"c":0,"s":5,"id":3561,"u":"familiar%20(wizard)_crb","p":209,"a":"Wizard","h":1,"n":"Familiar"},{"c":0,"s":5,"id":3562,"u":"fantastic%20leap_crb","p":187,"h":1,"n":"Fantastic Leap"},{"c":0,"s":5,"id":3563,"u":"far%20lobber_crb","p":76,"h":1,"n":"Far Lobber"},{"c":0,"s":5,"id":3564,"u":"far%20shot_crb","p":172,"h":1,"n":"Far Shot"},{"c":0,"s":5,"id":3565,"u":"fascinating%20performance_crb","p":261,"h":1,"n":"Fascinating Performance"},{"c":0,"s":5,"id":3566,"u":"fast%20channel_crb","p":125,"h":1,"n":"Fast Channel"},{"c":0,"s":5,"id":3567,"u":"fast%20movement_crb","p":89,"h":1,"n":"Fast Movement"},{"c":0,"s":5,"id":3568,"u":"fast%20recovery_crb","p":261,"h":1,"n":"Fast Recovery"},{"c":0,"s":5,"id":3569,"u":"fatal%20aria_crb","p":103,"h":1,"n":"Fatal Aria"},{"c":0,"s":5,"id":3570,"u":"favored%20enemy_crb","p":172,"h":1,"n":"Favored Enemy"},{"c":0,"s":5,"id":3571,"u":"favored%20terrain_crb","p":171,"h":1,"n":"Favored Terrain"},{"c":0,"s":5,"id":3572,"u":"fearsome%20brute_crb","p":151,"h":1,"n":"Fearsome Brute"},{"c":0,"s":5,"id":3573,"u":"feather%20step_crb","p":261,"h":1,"n":"Feather Step"},{"c":0,"s":5,"id":3574,"u":"felling%20shot_crb","p":187,"h":1,"n":"Felling Shot"},{"c":0,"s":5,"id":3575,"u":"felling%20strike_crb","p":149,"h":1,"n":"Felling Strike"},{"c":0,"s":5,"id":3576,"u":"feral%20mutagen_crb","p":79,"h":1,"n":"Feral Mutagen"},{"c":0,"s":5,"id":3577,"u":"ferocious%20shape_crb","p":136,"h":1,"n":"Ferocious Shape"},{"c":0,"s":5,"id":3578,"u":"fey%20caller_crb","p":136,"h":1,"n":"Fey Caller"},{"c":0,"s":5,"id":3579,"u":"fey%20fellowship_crb","p":44,"h":1,"n":"Fey Fellowship"},{"c":0,"s":5,"id":3580,"u":"fiendsbane%20oath_crb","p":110,"h":1,"n":"Fiendsbane Oath"},{"c":0,"s":5,"id":3581,"u":"fighter%20dedication_crb","p":226,"h":1,"n":"Fighter Dedication"},{"c":0,"s":5,"id":3582,"u":"fighter%20resiliency_crb","p":226,"h":1,"n":"Fighter Resiliency"},{"c":0,"s":5,"id":3583,"u":"first%20world%20adept_crb","p":45,"h":1,"n":"First World Adept"},{"c":0,"s":5,"id":3584,"u":"first%20world%20magic_crb","p":44,"h":1,"n":"First World Magic"},{"c":0,"s":5,"id":3585,"u":"fleet_crb","p":261,"h":1,"n":"Fleet"},{"c":0,"s":5,"id":3586,"u":"flinging%20shove_crb","p":151,"h":1,"n":"Flinging Shove"},{"c":0,"s":5,"id":3587,"u":"flurry%20of%20maneuvers_crb","p":160,"h":1,"n":"Flurry Of Maneuvers"},{"c":0,"s":5,"id":3588,"u":"flying%20kick_crb","p":160,"h":1,"n":"Flying Kick"},{"c":0,"s":5,"id":3589,"u":"foil%20senses_crb","p":261,"h":1,"n":"Foil Senses"},{"c":0,"s":5,"id":3590,"u":"forager_crb","p":261,"h":1,"n":"Forager"},{"c":0,"s":5,"id":3591,"u":"forlorn_crb","p":40,"h":1,"n":"Forlorn"},{"c":0,"s":5,"id":3592,"u":"form%20control_crb","p":135,"h":1,"n":"Form Control"},{"c":0,"s":5,"id":3593,"u":"furious%20bully_crb","p":91,"h":1,"n":"Furious Bully"},{"c":0,"s":5,"id":3594,"u":"furious%20finish_crb","p":89,"h":1,"n":"Furious Finish"},{"c":0,"s":5,"id":3595,"u":"furious%20focus_crb","p":148,"h":1,"n":"Furious Focus"},{"c":0,"s":5,"id":3596,"u":"furious%20grab_crb","p":92,"h":1,"n":"Furious Grab"},{"c":0,"s":5,"id":3597,"u":"furious%20sprint_crb","p":91,"h":1,"n":"Furious Sprint"},{"c":0,"s":5,"id":3598,"u":"fuse%20stance_crb","p":165,"h":1,"n":"Fuse Stance"},{"c":0,"s":5,"id":3599,"u":"gang%20up_crb","p":186,"h":1,"n":"Gang Up"},{"c":0,"s":5,"id":3600,"u":"general%20training_crb","p":57,"h":1,"n":"General Training"},{"c":0,"s":5,"id":3601,"u":"genius%20mutagen_crb","p":81,"h":1,"n":"Genius Mutagen"},{"c":0,"s":5,"id":3602,"u":"giant's%20lunge_crb","p":93,"h":1,"n":"Giant's Lunge"},{"c":0,"s":5,"id":3603,"u":"giant's%20stature_crb","p":91,"h":1,"n":"Giant's Stature"},{"c":0,"s":5,"id":3604,"u":"glad-hand_crb","p":261,"h":1,"n":"Glad-hand"},{"c":0,"s":5,"id":3605,"u":"glib%20mutagen_crb","p":80,"h":1,"n":"Glib Mutagen"},{"c":0,"s":5,"id":3606,"u":"gnome%20obsession_crb","p":44,"h":1,"n":"Gnome Obsession"},{"c":0,"s":5,"id":3607,"u":"gnome%20weapon%20expertise_crb","p":45,"h":1,"n":"Gnome Weapon Expertise"},{"c":0,"s":5,"id":3608,"u":"gnome%20weapon%20familiarity_crb","p":44,"h":1,"n":"Gnome Weapon Familiarity"},{"c":0,"s":5,"id":3609,"u":"gnome%20weapon%20innovator_crb","p":45,"h":1,"n":"Gnome Weapon Innovator"},{"c":0,"s":5,"id":3610,"u":"goblin%20lore_crb","p":48,"h":1,"n":"Goblin Lore"},{"c":0,"s":5,"id":3611,"u":"goblin%20scuttle_crb","p":48,"h":1,"n":"Goblin Scuttle"},{"c":0,"s":5,"id":3612,"u":"goblin%20song_crb","p":48,"h":1,"n":"Goblin Song"},{"c":0,"s":5,"id":3613,"u":"goblin%20weapon%20expertise_crb","p":49,"h":1,"n":"Goblin Weapon Expertise"},{"c":0,"s":5,"id":3614,"u":"goblin%20weapon%20familiarity_crb","p":48,"h":1,"n":"Goblin Weapon Familiarity"},{"c":0,"s":5,"id":3615,"u":"goblin%20weapon%20frenzy_crb","p":49,"h":1,"n":"Goblin Weapon Frenzy"},{"c":0,"s":5,"id":3616,"u":"graceful%20poise_crb","p":153,"h":1,"n":"Graceful Poise"},{"c":0,"s":5,"id":3617,"u":"great%20cleave_crb","p":91,"h":1,"n":"Great Cleave"},{"c":0,"s":5,"id":3618,"u":"greater%20bloodline_crb","p":200,"h":1,"n":"Greater Bloodline"},{"c":0,"s":5,"id":3619,"u":"greater%20crossblooded%20evolution_crb","p":201,"h":1,"n":"Greater Crossblooded Evolution"},{"c":0,"s":5,"id":3620,"u":"greater%20debilitating%20bomb_crb","p":79,"h":1,"n":"Greater Debilitating Bomb"},{"c":0,"s":5,"id":3621,"u":"greater%20distracting%20shot_crb","p":176,"h":1,"n":"Greater Distracting Shot"},{"c":0,"s":5,"id":3622,"u":"greater%20mental%20evolution_crb","p":201,"h":1,"n":"Greater Mental Evolution"},{"c":0,"s":5,"id":3623,"u":"greater%20merciful%20elixir_crb","p":80,"h":1,"n":"Greater Merciful Elixir"},{"c":0,"s":5,"id":3624,"u":"greater%20mercy_crb","p":112,"h":1,"n":"Greater Mercy"},{"c":0,"s":5,"id":3625,"u":"greater%20vital%20evolution_crb","p":201,"h":1,"n":"Greater Vital Evolution"},{"c":0,"s":5,"id":3626,"u":"green%20empathy_crb","p":136,"h":1,"n":"Green Empathy"},{"c":0,"s":5,"id":3627,"u":"green%20tongue_crb","p":138,"h":1,"n":"Green Tongue"},{"c":0,"s":5,"id":3628,"u":"group%20coercion_crb","p":262,"h":1,"n":"Group Coercion"},{"c":0,"s":5,"id":3629,"u":"group%20impression_crb","p":262,"h":1,"n":"Group Impression"},{"c":0,"s":5,"id":3630,"u":"guarded%20movement_crb","p":160,"h":1,"n":"Guarded Movement"},{"c":0,"s":5,"id":3631,"u":"guardian's%20deflection_crb","p":148,"h":1,"n":"Guardian's Deflection"},{"c":0,"s":5,"id":3632,"u":"guiding%20finish_crb","p":152,"h":1,"n":"Guiding Finish"},{"c":0,"s":5,"id":3633,"u":"guiding%20luck_crb","p":53,"h":1,"n":"Guiding Luck"},{"c":0,"s":5,"id":3634,"u":"guiding%20riposte_crb","p":153,"h":1,"n":"Guiding Riposte"},{"c":0,"s":5,"id":3635,"u":"halfling%20lore_crb","p":52,"h":1,"n":"Halfling Lore"},{"c":0,"s":5,"id":3636,"u":"halfling%20luck_crb","p":52,"h":1,"n":"Halfling Luck"},{"c":0,"s":5,"id":3637,"u":"halfling%20weapon%20expertise_crb","p":53,"h":1,"n":"Halfling Weapon Expertise"},{"c":0,"s":5,"id":3638,"u":"halfling%20weapon%20familiarity_crb","p":52,"h":1,"n":"Halfling Weapon Familiarity"},{"c":0,"s":5,"id":3639,"u":"halfling%20weapon%20trickster_crb","p":53,"h":1,"n":"Halfling Weapon Trickster"},{"c":0,"s":5,"id":3640,"u":"hand%20of%20the%20apprentice_crb","p":209,"h":1,"n":"Hand Of The Apprentice"},{"c":0,"s":5,"id":3641,"u":"harming%20hands_crb","p":121,"h":1,"n":"Harming Hands"},{"c":0,"s":5,"id":3642,"u":"harmonize_crb","p":101,"h":1,"n":"Harmonize"},{"c":0,"s":5,"id":3643,"u":"haughty%20obstinacy_crb","p":57,"h":1,"n":"Haughty Obstinacy"},{"c":0,"s":5,"id":3644,"u":"hazard%20finder_crb","p":174,"h":1,"n":"Hazard Finder"},{"c":0,"s":5,"id":3645,"u":"heal%20mount_crb","p":113,"h":1,"n":"Heal Mount"},{"c":0,"s":5,"id":3646,"u":"healing%20hands_crb","p":121,"h":1,"n":"Healing Hands"},{"c":0,"s":5,"id":3647,"u":"healing%20touch_crb","p":223,"h":1,"n":"Healing Touch"},{"c":0,"s":5,"id":3648,"u":"healing%20transformation_crb","p":137,"h":1,"n":"Healing Transformation"},{"c":0,"s":5,"id":3649,"u":"hefty%20hauler_crb","p":262,"h":1,"n":"Hefty Hauler"},{"c":0,"s":5,"id":3650,"u":"heroic%20recovery_crb","p":125,"h":1,"n":"Heroic Recovery"},{"c":0,"s":5,"id":3651,"u":"hidden%20paragon_crb","p":189,"h":1,"n":"Hidden Paragon"},{"c":0,"s":5,"id":3652,"u":"hierophant's%20power_crb","p":139,"h":1,"n":"Hierophant's Power"},{"c":0,"s":5,"id":3653,"u":"hobnobber_crb","p":262,"h":1,"n":"Hobnobber"},{"c":0,"s":5,"id":3654,"u":"holy%20castigation_crb","p":121,"h":1,"n":"Holy Castigation"},{"c":0,"s":5,"id":3655,"u":"house%20of%20imaginary%20walls_crb","p":102,"h":1,"n":"House Of Imaginary Walls"},{"c":0,"s":5,"id":3656,"u":"hunted%20shot_crb","p":171,"h":1,"n":"Hunted Shot"},{"c":0,"s":5,"id":3657,"u":"hunter's%20aim_crb","p":172,"h":1,"n":"Hunter's Aim"},{"c":0,"s":5,"id":3658,"u":"illusion%20sense_crb","p":44,"h":1,"n":"Illusion Sense"},{"c":0,"s":5,"id":3659,"u":"impaling%20briars_crb","p":139,"h":1,"n":"Impaling Briars"},{"c":0,"s":5,"id":3660,"u":"impeccable%20crafting_crb","p":262,"h":1,"n":"Impeccable Crafting"},{"c":0,"s":5,"id":3661,"u":"implausible%20infiltration_crb","p":189,"h":1,"n":"Implausible Infiltration"},{"c":0,"s":5,"id":3662,"u":"imposing%20destrier_crb","p":113,"h":1,"n":"Imposing Destrier"},{"c":0,"s":5,"id":3663,"u":"impossible%20flurry_crb","p":177,"h":1,"n":"Impossible Flurry"},{"c":0,"s":5,"id":3664,"u":"impossible%20polymath_crb","p":103,"h":1,"n":"Impossible Polymath"},{"c":0,"s":5,"id":3665,"u":"impossible%20striker_crb","p":189,"h":1,"n":"Impossible Striker"},{"c":0,"s":5,"id":3666,"u":"impossible%20technique_crb","p":165,"h":1,"n":"Impossible Technique"},{"c":0,"s":5,"id":3667,"u":"impossible%20volley%20(fighter)_crb","p":153,"a":"Fighter","h":1,"n":"Impossible Volley"},{"c":0,"s":5,"id":3668,"u":"impossible%20volley%20(ranger)_crb","p":177,"a":"Ranger","h":1,"n":"Impossible Volley"},{"c":0,"s":5,"id":3669,"u":"impressive%20performance_crb","p":262,"h":1,"n":"Impressive Performance"},{"c":0,"s":5,"id":3670,"u":"improbable%20elixirs_crb","p":81,"h":1,"n":"Improbable Elixirs"},{"c":0,"s":5,"id":3671,"u":"improved%20command%20undead_crb","p":125,"h":1,"n":"Improved Command Undead"},{"c":0,"s":5,"id":3672,"u":"improved%20communal%20healing_crb","p":123,"h":1,"n":"Improved Communal Healing"},{"c":0,"s":5,"id":3673,"u":"improved%20dueling%20riposte_crb","p":151,"h":1,"n":"Improved Dueling Riposte"},{"c":0,"s":5,"id":3674,"u":"improved%20knockback_crb","p":163,"h":1,"n":"Improved Knockback"},{"c":0,"s":5,"id":3675,"u":"improved%20knockdown_crb","p":151,"h":1,"n":"Improved Knockdown"},{"c":0,"s":5,"id":3676,"u":"improved%20poison%20weapon_crb","p":187,"h":1,"n":"Improved Poison Weapon"},{"c":0,"s":5,"id":3677,"u":"improved%20reflexive%20shield_crb","p":153,"h":1,"n":"Improved Reflexive Shield"},{"c":0,"s":5,"id":3678,"u":"improved%20swift%20banishment_crb","p":127,"h":1,"n":"Improved Swift Banishment"},{"c":0,"s":5,"id":3679,"u":"improved%20twin%20riposte%20(fighter)_crb","p":153,"a":"Fighter","h":1,"n":"Improved Twin Riposte"},{"c":0,"s":5,"id":3680,"u":"improved%20twin%20riposte%20(ranger)_crb","p":176,"a":"Ranger","h":1,"n":"Improved Twin Riposte"},{"c":0,"s":5,"id":3681,"u":"incredible%20aim_crb","p":149,"h":1,"n":"Incredible Aim"},{"c":0,"s":5,"id":3682,"u":"incredible%20companion%20(druid)_crb","p":137,"a":"Druid","h":1,"n":"Incredible Companion"},{"c":0,"s":5,"id":3683,"u":"incredible%20companion%20(ranger)_crb","p":175,"a":"Ranger","h":1,"n":"Incredible Companion"},{"c":0,"s":5,"id":3684,"u":"incredible%20ferocity_crb","p":59,"h":1,"n":"Incredible Ferocity"},{"c":0,"s":5,"id":3685,"u":"incredible%20improvisation_crb","p":57,"h":1,"n":"Incredible Improvisation"},{"c":0,"s":5,"id":3686,"u":"incredible%20initiative_crb","p":262,"h":1,"n":"Incredible Initiative"},{"c":0,"s":5,"id":3687,"u":"incredible%20investiture_crb","p":262,"h":1,"n":"Incredible Investiture"},{"c":0,"s":5,"id":3688,"u":"incredible%20ricochet_crb","p":151,"h":1,"n":"Incredible Ricochet"},{"c":0,"s":5,"id":3689,"u":"infinite%20possibilities_crb","p":213,"h":1,"n":"Infinite Possibilities"},{"c":0,"s":5,"id":3690,"u":"insect%20shape_crb","p":136,"h":1,"n":"Insect Shape"},{"c":0,"s":5,"id":3691,"u":"inspirational%20focus_crb","p":103,"h":1,"n":"Inspirational Focus"},{"c":0,"s":5,"id":3692,"u":"inspirational%20performance_crb","p":222,"h":1,"n":"Inspirational Performance"},{"c":0,"s":5,"id":3693,"u":"inspire%20competence_crb","p":100,"h":1,"n":"Inspire Competence"},{"c":0,"s":5,"id":3694,"u":"inspire%20defense_crb","p":100,"h":1,"n":"Inspire Defense"},{"c":0,"s":5,"id":3695,"u":"inspire%20heroics_crb","p":102,"h":1,"n":"Inspire Heroics"},{"c":0,"s":5,"id":3696,"u":"inspire%20imitation_crb","p":58,"h":1,"n":"Inspire Imitation"},{"c":0,"s":5,"id":3697,"u":"instant%20opening_crb","p":188,"h":1,"n":"Instant Opening"},{"c":0,"s":5,"id":3698,"u":"instinct%20ability_crb","p":221,"h":1,"n":"Instinct Ability"},{"c":0,"s":5,"id":3699,"u":"instrument%20of%20zeal_crb","p":115,"h":1,"n":"Instrument Of Zeal"},{"c":0,"s":5,"id":3700,"u":"interweave%20dispel_crb","p":201,"h":1,"n":"Interweave Dispel"},{"c":0,"s":5,"id":3701,"u":"intimidating%20glare_crb","p":262,"h":1,"n":"Intimidating Glare"},{"c":0,"s":5,"id":3702,"u":"intimidating%20prowess_crb","p":262,"h":1,"n":"Intimidating Prowess"},{"c":0,"s":5,"id":3703,"u":"intimidating%20strike_crb","p":146,"h":1,"n":"Intimidating Strike"},{"c":0,"s":5,"id":3704,"u":"inventor_crb","p":262,"h":1,"n":"Inventor"},{"c":0,"s":5,"id":3705,"u":"invincible%20mutagen_crb","p":79,"h":1,"n":"Invincible Mutagen"},{"c":0,"s":5,"id":3706,"u":"invoke%20disaster_crb","p":139,"h":1,"n":"Invoke Disaster"},{"c":0,"s":5,"id":3707,"u":"ironblood%20stance_crb","p":163,"h":1,"n":"Ironblood Stance"},{"c":0,"s":5,"id":3708,"u":"ironblood%20surge_crb","p":164,"h":1,"n":"Ironblood Surge"},{"c":0,"s":5,"id":3709,"u":"irrepressible_crb","p":53,"h":1,"n":"Irrepressible"},{"c":0,"s":5,"id":3710,"u":"juggernaut's%20fortitude_crb","p":221,"h":1,"n":"Juggernaut's Fortitude"},{"c":0,"s":5,"id":3711,"u":"junk%20tinker_crb","p":48,"h":1,"n":"Junk Tinker"},{"c":0,"s":5,"id":3712,"u":"ki%20blast_crb","p":161,"h":1,"n":"Ki Blast"},{"c":0,"s":5,"id":3713,"u":"ki%20rush_crb","p":158,"h":1,"n":"Ki Rush"},{"c":0,"s":5,"id":3714,"u":"ki%20strike_crb","p":158,"h":1,"n":"Ki Strike"},{"c":0,"s":5,"id":3715,"u":"kip%20up_crb","p":262,"h":1,"n":"Kip Up"},{"c":0,"s":5,"id":3716,"u":"knockback_crb","p":91,"h":1,"n":"Knockback"},{"c":0,"s":5,"id":3717,"u":"knockback%20strike_crb","p":163,"h":1,"n":"Knockback Strike"},{"c":0,"s":5,"id":3718,"u":"knockdown_crb","p":146,"h":1,"n":"Knockdown"},{"c":0,"s":5,"id":3719,"u":"know-it-all_crb","p":102,"h":1,"n":"Know-it-all"},{"c":0,"s":5,"id":3720,"u":"lasting%20coercion_crb","p":262,"h":1,"n":"Lasting Coercion"},{"c":0,"s":5,"id":3721,"u":"lasting%20doubt_crb","p":114,"h":1,"n":"Lasting Doubt"},{"c":0,"s":5,"id":3722,"u":"leave%20an%20opening_crb","p":188,"h":1,"n":"Leave An Opening"},{"c":0,"s":5,"id":3723,"u":"legendary%20codebreaker_crb","p":262,"h":1,"n":"Legendary Codebreaker"},{"c":0,"s":5,"id":3724,"u":"legendary%20linguist_crb","p":263,"h":1,"n":"Legendary Linguist"},{"c":0,"s":5,"id":3725,"u":"legendary%20medic_crb","p":263,"h":1,"n":"Legendary Medic"},{"c":0,"s":5,"id":3726,"u":"legendary%20monster%20hunter_crb","p":176,"h":1,"n":"Legendary Monster Hunter"},{"c":0,"s":5,"id":3727,"u":"legendary%20negotiation_crb","p":263,"h":1,"n":"Legendary Negotiation"},{"c":0,"s":5,"id":3728,"u":"legendary%20performer_crb","p":263,"h":1,"n":"Legendary Performer"},{"c":0,"s":5,"id":3729,"u":"legendary%20professional_crb","p":263,"h":1,"n":"Legendary Professional"},{"c":0,"s":5,"id":3730,"u":"legendary%20shot_crb","p":177,"h":1,"n":"Legendary Shot"},{"c":0,"s":5,"id":3731,"u":"legendary%20sneak_crb","p":263,"h":1,"n":"Legendary Sneak"},{"c":0,"s":5,"id":3732,"u":"legendary%20survivalist_crb","p":263,"h":1,"n":"Legendary Survivalist"},{"c":0,"s":5,"id":3733,"u":"legendary%20thief_crb","p":263,"h":1,"n":"Legendary Thief"},{"c":0,"s":5,"id":3734,"u":"lengthy%20diversion_crb","p":263,"h":1,"n":"Lengthy Diversion"},{"c":0,"s":5,"id":3735,"u":"leshy%20familiar_crb","p":133,"h":1,"n":"Leshy Familiar"},{"c":0,"s":5,"id":3736,"u":"leyline%20conduit_crb","p":139,"h":1,"n":"Leyline Conduit"},{"c":0,"s":5,"id":3737,"u":"liberating%20stride_crb","p":114,"h":1,"n":"Liberating Stride"},{"c":0,"s":5,"id":3738,"u":"lie%20to%20me_crb","p":263,"h":1,"n":"Lie To Me"},{"c":0,"s":5,"id":3739,"u":"light%20step_crb","p":186,"h":1,"n":"Light Step"},{"c":0,"s":5,"id":3740,"u":"lightning%20snares_crb","p":175,"h":1,"n":"Lightning Snares"},{"c":0,"s":5,"id":3741,"u":"lingering%20composition_crb","p":99,"h":1,"n":"Lingering Composition"},{"c":0,"s":5,"id":3742,"u":"linked%20focus_crb","p":210,"h":1,"n":"Linked Focus"},{"c":0,"s":5,"id":3743,"u":"litany%20against%20sloth_crb","p":113,"h":1,"n":"Litany Against Sloth"},{"c":0,"s":5,"id":3744,"u":"litany%20against%20wrath_crb","p":112,"h":1,"n":"Litany Against Wrath"},{"c":0,"s":5,"id":3745,"u":"litany%20of%20righteousness_crb","p":115,"h":1,"n":"Litany Of Righteousness"},{"c":0,"s":5,"id":3746,"u":"loremaster's%20etude_crb","p":100,"h":1,"n":"Loremaster's Etude"},{"c":0,"s":5,"id":3747,"u":"loyal%20warhorse_crb","p":112,"h":1,"n":"Loyal Warhorse"},{"c":0,"s":5,"id":3748,"u":"lunge_crb","p":146,"h":1,"n":"Lunge"},{"c":0,"s":5,"id":3749,"u":"lunging%20stance_crb","p":151,"h":1,"n":"Lunging Stance"},{"c":0,"s":5,"id":3750,"u":"magic%20sense%20(sorcerer)_crb","p":201,"a":"Sorcerer","h":1,"n":"Magic Sense"},{"c":0,"s":5,"id":3751,"u":"magic%20sense%20(wizard)_crb","p":212,"a":"Wizard","h":1,"n":"Magic Sense"},{"c":0,"s":5,"id":3752,"u":"magical%20crafting_crb","p":263,"h":1,"n":"Magical Crafting"},{"c":0,"s":5,"id":3753,"u":"magical%20shorthand_crb","p":264,"h":1,"n":"Magical Shorthand"},{"c":0,"s":5,"id":3754,"u":"magical%20trickster_crb","p":185,"h":1,"n":"Magical Trickster"},{"c":0,"s":5,"id":3755,"u":"maker%20of%20miracles_crb","p":127,"h":1,"n":"Maker Of Miracles"},{"c":0,"s":5,"id":3756,"u":"manifold%20edge_crb","p":177,"h":1,"n":"Manifold Edge"},{"c":0,"s":5,"id":3757,"u":"master%20alchemy_crb","p":220,"h":1,"n":"Master Alchemy"},{"c":0,"s":5,"id":3758,"u":"master%20bard%20spellcasting_crb","p":222,"h":1,"n":"Master Bard Spellcasting"},{"c":0,"s":5,"id":3759,"u":"master%20cleric%20spellcasting_crb","p":224,"h":1,"n":"Master Cleric Spellcasting"},{"c":0,"s":5,"id":3760,"u":"master%20druid%20spellcasting_crb","p":225,"h":1,"n":"Master Druid Spellcasting"},{"c":0,"s":5,"id":3761,"u":"master%20monster%20hunter_crb","p":175,"h":1,"n":"Master Monster Hunter"},{"c":0,"s":5,"id":3762,"u":"master%20of%20many%20styles_crb","p":165,"h":1,"n":"Master Of Many Styles"},{"c":0,"s":5,"id":3763,"u":"master%20sorcerer%20spellcasting_crb","p":230,"h":1,"n":"Master Sorcerer Spellcasting"},{"c":0,"s":5,"id":3764,"u":"master%20spotter_crb","p":228,"h":1,"n":"Master Spotter"},{"c":0,"s":5,"id":3765,"u":"master%20wizard%20spellcasting_crb","p":231,"h":1,"n":"Master Wizard Spellcasting"},{"c":0,"s":5,"id":3766,"u":"masterful%20companion_crb","p":177,"h":1,"n":"Masterful Companion"},{"c":0,"s":5,"id":3767,"u":"mature%20animal%20companion%20(druid)_crb","p":135,"a":"Druid","h":1,"n":"Mature Animal Companion"},{"c":0,"s":5,"id":3768,"u":"mature%20animal%20companion%20(ranger)_crb","p":173,"a":"Ranger","h":1,"n":"Mature Animal Companion"},{"c":0,"s":5,"id":3769,"u":"meditative%20focus_crb","p":164,"h":1,"n":"Meditative Focus"},{"c":0,"s":5,"id":3770,"u":"meditative%20wellspring_crb","p":165,"h":1,"n":"Meditative Wellspring"},{"c":0,"s":5,"id":3771,"u":"mega%20bomb_crb","p":81,"h":1,"n":"Mega Bomb"},{"c":0,"s":5,"id":3772,"u":"melodious%20spell_crb","p":101,"h":1,"n":"Melodious Spell"},{"c":0,"s":5,"id":3773,"u":"merciful%20elixir_crb","p":79,"h":1,"n":"Merciful Elixir"},{"c":0,"s":5,"id":3774,"u":"mercy_crb","p":111,"h":1,"n":"Mercy"},{"c":0,"s":5,"id":3775,"u":"metamagic%20channel_crb","p":127,"h":1,"n":"Metamagic Channel"},{"c":0,"s":5,"id":3776,"u":"metamagic%20mastery%20(sorcerer)_crb","p":201,"a":"Sorcerer","h":1,"n":"Metamagic Mastery"},{"c":0,"s":5,"id":3777,"u":"metamagic%20mastery%20(wizard)_crb","p":213,"a":"Wizard","h":1,"n":"Metamagic Mastery"},{"c":0,"s":5,"id":3778,"u":"mindblank%20mutagen_crb","p":81,"h":1,"n":"Mindblank Mutagen"},{"c":0,"s":5,"id":3779,"u":"minor%20magic_crb","p":184,"h":1,"n":"Minor Magic"},{"c":0,"s":5,"id":3780,"u":"miracle%20worker_crb","p":81,"h":1,"n":"Miracle Worker"},{"c":0,"s":5,"id":3781,"u":"mirror%20shield_crb","p":151,"h":1,"n":"Mirror Shield"},{"c":0,"s":5,"id":3782,"u":"mixed%20maneuver_crb","p":163,"h":1,"n":"Mixed Maneuver"},{"c":0,"s":5,"id":3783,"u":"mobile%20shot%20stance_crb","p":149,"h":1,"n":"Mobile Shot Stance"},{"c":0,"s":5,"id":3784,"u":"mobility_crb","p":184,"h":1,"n":"Mobility"},{"c":0,"s":5,"id":3785,"u":"moment%20of%20clarity_crb","p":88,"h":1,"n":"Moment Of Clarity"},{"c":0,"s":5,"id":3786,"u":"monastic%20weaponry_crb","p":158,"h":1,"n":"Monastic Weaponry"},{"c":0,"s":5,"id":3787,"u":"monk%20dedication_crb","p":227,"h":1,"n":"Monk Dedication"},{"c":0,"s":5,"id":3788,"u":"monk%20moves_crb","p":227,"h":1,"n":"Monk Moves"},{"c":0,"s":5,"id":3789,"u":"monk%20resiliency_crb","p":227,"h":1,"n":"Monk Resiliency"},{"c":0,"s":5,"id":3790,"u":"monk's%20flurry_crb","p":227,"h":1,"n":"Monk's Flurry"},{"c":0,"s":5,"id":3791,"u":"monster%20hunter_crb","p":171,"h":1,"n":"Monster Hunter"},{"c":0,"s":5,"id":3792,"u":"monster%20warden_crb","p":172,"h":1,"n":"Monster Warden"},{"c":0,"s":5,"id":3793,"u":"monstrosity%20shape_crb","p":139,"h":1,"n":"Monstrosity Shape"},{"c":0,"s":5,"id":3794,"u":"monstrous%20peacemaker_crb","p":59,"h":1,"n":"Monstrous Peacemaker"},{"c":0,"s":5,"id":3795,"u":"mountain%20quake_crb","p":164,"h":1,"n":"Mountain Quake"},{"c":0,"s":5,"id":3796,"u":"mountain%20stance_crb","p":159,"h":1,"n":"Mountain Stance"},{"c":0,"s":5,"id":3797,"u":"mountain%20stronghold_crb","p":161,"h":1,"n":"Mountain Stronghold"},{"c":0,"s":5,"id":3798,"u":"mountain's%20stoutness_crb","p":37,"h":1,"n":"Mountain's Stoutness"},{"c":0,"s":5,"id":3799,"u":"multifarious%20muse_crb","p":100,"h":1,"n":"Multifarious Muse"},{"c":0,"s":5,"id":3800,"u":"multilingual_crb","p":264,"h":1,"n":"Multilingual"},{"c":0,"s":5,"id":3801,"u":"multishot%20stance_crb","p":153,"h":1,"n":"Multishot Stance"},{"c":0,"s":5,"id":3802,"u":"multitalented_crb","p":58,"h":1,"n":"Multitalented"},{"c":0,"s":5,"id":3803,"u":"natural%20ambition_crb","p":57,"h":1,"n":"Natural Ambition"},{"c":0,"s":5,"id":3804,"u":"natural%20medicine_crb","p":264,"h":1,"n":"Natural Medicine"},{"c":0,"s":5,"id":3805,"u":"natural%20skill_crb","p":57,"h":1,"n":"Natural Skill"},{"c":0,"s":5,"id":3806,"u":"necrotic%20infusion_crb","p":123,"h":1,"n":"Necrotic Infusion"},{"c":0,"s":5,"id":3807,"u":"nimble%20crawl_crb","p":264,"h":1,"n":"Nimble Crawl"},{"c":0,"s":5,"id":3808,"u":"nimble%20dodge_crb","p":183,"h":1,"n":"Nimble Dodge"},{"c":0,"s":5,"id":3809,"u":"nimble%20elf_crb","p":40,"h":1,"n":"Nimble Elf"},{"c":0,"s":5,"id":3810,"u":"nimble%20roll_crb","p":187,"h":1,"n":"Nimble Roll"},{"c":0,"s":5,"id":3811,"u":"no%20escape_crb","p":89,"h":1,"n":"No Escape"},{"c":0,"s":5,"id":3812,"u":"occult%20breadth_crb","p":222,"h":1,"n":"Occult Breadth"},{"c":0,"s":5,"id":3813,"u":"occult%20evolution_crb","p":199,"h":1,"n":"Occult Evolution"},{"c":0,"s":5,"id":3814,"u":"oddity%20identification_crb","p":264,"h":1,"n":"Oddity Identification"},{"c":0,"s":5,"id":3815,"u":"opportune%20backstab_crb","p":187,"h":1,"n":"Opportune Backstab"},{"c":0,"s":5,"id":3816,"u":"opportunist_crb","p":226,"h":1,"n":"Opportunist"},{"c":0,"s":5,"id":3817,"u":"orc%20ferocity_crb","p":59,"h":1,"n":"Orc Ferocity"},{"c":0,"s":5,"id":3818,"u":"orc%20sight_crb","p":59,"h":1,"n":"Orc Sight"},{"c":0,"s":5,"id":3819,"u":"orc%20superstition_crb","p":59,"h":1,"n":"Orc Superstition"},{"c":0,"s":5,"id":3820,"u":"orc%20weapon%20carnage_crb","p":59,"h":1,"n":"Orc Weapon Carnage"},{"c":0,"s":5,"id":3821,"u":"orc%20weapon%20expertise_crb","p":59,"h":1,"n":"Orc Weapon Expertise"},{"c":0,"s":5,"id":3822,"u":"orc%20weapon%20familiarity_crb","p":59,"h":1,"n":"Orc Weapon Familiarity"},{"c":0,"s":5,"id":3823,"u":"order%20explorer_crb","p":134,"h":1,"n":"Order Explorer"},{"c":0,"s":5,"id":3824,"u":"order%20magic_crb","p":135,"h":1,"n":"Order Magic"},{"c":0,"s":5,"id":3825,"u":"order%20spell_crb","p":225,"h":1,"n":"Order Spell"},{"c":0,"s":5,"id":3826,"u":"otherworldly%20magic_crb","p":40,"h":1,"n":"Otherworldly Magic"},{"c":0,"s":5,"id":3827,"u":"overwhelming%20energy%20(druid)_crb","p":137,"a":"Druid","h":1,"n":"Overwhelming Energy"},{"c":0,"s":5,"id":3828,"u":"overwhelming%20energy%20(sorcerer)_crb","p":200,"a":"Sorcerer","h":1,"n":"Overwhelming Energy"},{"c":0,"s":5,"id":3829,"u":"overwhelming%20energy%20(wizard)_crb","p":211,"a":"Wizard","h":1,"n":"Overwhelming Energy"},{"c":0,"s":5,"id":3830,"u":"paragon's%20guard_crb","p":151,"h":1,"n":"Paragon's Guard"},{"c":0,"s":5,"id":3831,"u":"penetrating%20shot_crb","p":175,"h":1,"n":"Penetrating Shot"},{"c":0,"s":5,"id":3832,"u":"perfect%20clarity_crb","p":93,"h":1,"n":"Perfect Clarity"},{"c":0,"s":5,"id":3833,"u":"perfect%20debilitation_crb","p":81,"h":1,"n":"Perfect Debilitation"},{"c":0,"s":5,"id":3834,"u":"perfect%20distraction_crb","p":189,"h":1,"n":"Perfect Distraction"},{"c":0,"s":5,"id":3835,"u":"perfect%20encore_crb","p":103,"h":1,"n":"Perfect Encore"},{"c":0,"s":5,"id":3836,"u":"perfect%20form%20control_crb","p":139,"h":1,"n":"Perfect Form Control"},{"c":0,"s":5,"id":3837,"u":"perfect%20mutagen_crb","p":81,"h":1,"n":"Perfect Mutagen"},{"c":0,"s":5,"id":3838,"u":"perfect%20shot_crb","p":177,"h":1,"n":"Perfect Shot"},{"c":0,"s":5,"id":3839,"u":"perfection's%20path_crb","p":227,"h":1,"n":"Perfection's Path"},{"c":0,"s":5,"id":3840,"u":"persistent%20mutagen_crb","p":81,"h":1,"n":"Persistent Mutagen"},{"c":0,"s":5,"id":3841,"u":"pervasive%20superstition_crb","p":59,"h":1,"n":"Pervasive Superstition"},{"c":0,"s":5,"id":3842,"u":"pickpocket_crb","p":264,"h":1,"n":"Pickpocket"},{"c":0,"s":5,"id":3843,"u":"planar%20survival_crb","p":264,"h":1,"n":"Planar Survival"},{"c":0,"s":5,"id":3844,"u":"plant%20shape_crb","p":138,"h":1,"n":"Plant Shape"},{"c":0,"s":5,"id":3845,"u":"point-blank%20shot_crb","p":144,"h":1,"n":"Point-blank Shot"},{"c":0,"s":5,"id":3846,"u":"poison%20resistance%20(alchemist)_crb","p":77,"a":"Alchemist","h":1,"n":"Poison Resistance"},{"c":0,"s":5,"id":3847,"u":"poison%20resistance%20(druid)_crb","p":135,"a":"Druid","h":1,"n":"Poison Resistance"},{"c":0,"s":5,"id":3848,"u":"poison%20weapon_crb","p":185,"h":1,"n":"Poison Weapon"},{"c":0,"s":5,"id":3849,"u":"positioning%20assault_crb","p":149,"h":1,"n":"Positioning Assault"},{"c":0,"s":5,"id":3850,"u":"potent%20poisoner_crb","p":79,"h":1,"n":"Potent Poisoner"},{"c":0,"s":5,"id":3851,"u":"power%20attack_crb","p":144,"h":1,"n":"Power Attack"},{"c":0,"s":5,"id":3852,"u":"powerful%20alchemy_crb","p":79,"h":1,"n":"Powerful Alchemy"},{"c":0,"s":5,"id":3853,"u":"powerful%20leap_crb","p":264,"h":1,"n":"Powerful Leap"},{"c":0,"s":5,"id":3854,"u":"powerful%20shove_crb","p":146,"h":1,"n":"Powerful Shove"},{"c":0,"s":5,"id":3855,"u":"powerful%20snares_crb","p":174,"h":1,"n":"Powerful Snares"},{"c":0,"s":5,"id":3856,"u":"powerful%20sneak_crb","p":189,"h":1,"n":"Powerful Sneak"},{"c":0,"s":5,"id":3857,"u":"precise%20debilitations_crb","p":187,"h":1,"n":"Precise Debilitations"},{"c":0,"s":5,"id":3858,"u":"predator's%20pounce_crb","p":92,"h":1,"n":"Predator's Pounce"},{"c":0,"s":5,"id":3859,"u":"primal%20breadth_crb","p":225,"h":1,"n":"Primal Breadth"},{"c":0,"s":5,"id":3860,"u":"primal%20evolution_crb","p":199,"h":1,"n":"Primal Evolution"},{"c":0,"s":5,"id":3861,"u":"primal%20focus_crb","p":138,"h":1,"n":"Primal Focus"},{"c":0,"s":5,"id":3862,"u":"primal%20summons_crb","p":138,"h":1,"n":"Primal Summons"},{"c":0,"s":5,"id":3863,"u":"primal%20wellspring_crb","p":139,"h":1,"n":"Primal Wellspring"},{"c":0,"s":5,"id":3864,"u":"quaking%20stomp_crb","p":93,"h":1,"n":"Quaking Stomp"},{"c":0,"s":5,"id":3865,"u":"quick%20alchemy_crb","p":220,"h":1,"n":"Quick Alchemy"},{"c":0,"s":5,"id":3866,"u":"quick%20block_crb","p":113,"h":1,"n":"Quick Block"},{"c":0,"s":5,"id":3867,"u":"quick%20bomber_crb","p":76,"h":1,"n":"Quick Bomber"},{"c":0,"s":5,"id":3868,"u":"quick%20climb_crb","p":264,"h":1,"n":"Quick Climb"},{"c":0,"s":5,"id":3869,"u":"quick%20coercion_crb","p":264,"h":1,"n":"Quick Coercion"},{"c":0,"s":5,"id":3870,"u":"quick%20disguise_crb","p":264,"h":1,"n":"Quick Disguise"},{"c":0,"s":5,"id":3871,"u":"quick%20draw%20(ranger)_crb","p":172,"a":"Ranger","h":1,"n":"Quick Draw"},{"c":0,"s":5,"id":3872,"u":"quick%20draw%20(rogue)_crb","p":184,"a":"Rogue","h":1,"n":"Quick Draw"},{"c":0,"s":5,"id":3873,"u":"quick%20identification_crb","p":264,"h":1,"n":"Quick Identification"},{"c":0,"s":5,"id":3874,"u":"quick%20jump_crb","p":264,"h":1,"n":"Quick Jump"},{"c":0,"s":5,"id":3875,"u":"quick%20recognition_crb","p":265,"h":1,"n":"Quick Recognition"},{"c":0,"s":5,"id":3876,"u":"quick%20repair_crb","p":265,"h":1,"n":"Quick Repair"},{"c":0,"s":5,"id":3877,"u":"quick%20reversal_crb","p":146,"h":1,"n":"Quick Reversal"},{"c":0,"s":5,"id":3878,"u":"quick%20shield%20block_crb","p":149,"h":1,"n":"Quick Shield Block"},{"c":0,"s":5,"id":3879,"u":"quick%20snares_crb","p":173,"h":1,"n":"Quick Snares"},{"c":0,"s":5,"id":3880,"u":"quick%20squeeze_crb","p":265,"h":1,"n":"Quick Squeeze"},{"c":0,"s":5,"id":3881,"u":"quick%20swim_crb","p":265,"h":1,"n":"Quick Swim"},{"c":0,"s":5,"id":3882,"u":"quick%20unlock_crb","p":265,"h":1,"n":"Quick Unlock"},{"c":0,"s":5,"id":3883,"u":"quickened%20casting%20(bard)_crb","p":102,"a":"Bard","h":1,"n":"Quickened Casting"},{"c":0,"s":5,"id":3884,"u":"quickened%20casting%20(sorcerer)_crb","p":201,"a":"Sorcerer","h":1,"n":"Quickened Casting"},{"c":0,"s":5,"id":3885,"u":"quickened%20casting%20(wizard)_crb","p":211,"a":"Wizard","h":1,"n":"Quickened Casting"},{"c":0,"s":5,"id":3886,"u":"quiet%20allies_crb","p":265,"h":1,"n":"Quiet Allies"},{"c":0,"s":5,"id":3887,"u":"quivering%20palm_crb","p":165,"h":1,"n":"Quivering Palm"},{"c":0,"s":5,"id":3888,"u":"radiant%20blade%20master_crb","p":115,"h":1,"n":"Radiant Blade Master"},{"c":0,"s":5,"id":3889,"u":"radiant%20blade%20spirit_crb","p":113,"h":1,"n":"Radiant Blade Spirit"},{"c":0,"s":5,"id":3890,"u":"raging%20athlete_crb","p":89,"h":1,"n":"Raging Athlete"},{"c":0,"s":5,"id":3891,"u":"raging%20intimidation_crb","p":88,"h":1,"n":"Raging Intimidation"},{"c":0,"s":5,"id":3892,"u":"raging%20thrower_crb","p":88,"h":1,"n":"Raging Thrower"},{"c":0,"s":5,"id":3893,"u":"ranged%20reprisal_crb","p":109,"h":1,"n":"Ranged Reprisal"},{"c":0,"s":5,"id":3894,"u":"ranger%20dedication_crb","p":228,"h":1,"n":"Ranger Dedication"},{"c":0,"s":5,"id":3895,"u":"ranger%20resiliency_crb","p":228,"h":1,"n":"Ranger Resiliency"},{"c":0,"s":5,"id":3896,"u":"rapid%20mantel_crb","p":265,"h":1,"n":"Rapid Mantel"},{"c":0,"s":5,"id":3897,"u":"reach%20spell%20(bard)_crb","p":99,"a":"Bard","h":1,"n":"Reach Spell"},{"c":0,"s":5,"id":3898,"u":"reach%20spell%20(cleric)_crb","p":122,"a":"Cleric","h":1,"n":"Reach Spell"},{"c":0,"s":5,"id":3899,"u":"reach%20spell%20(druid)_crb","p":134,"a":"Druid","h":1,"n":"Reach Spell"},{"c":0,"s":5,"id":3900,"u":"reach%20spell%20(sorcerer)_crb","p":198,"a":"Sorcerer","h":1,"n":"Reach Spell"},{"c":0,"s":5,"id":3901,"u":"reach%20spell%20(wizard)_crb","p":210,"a":"Wizard","h":1,"n":"Reach Spell"},{"c":0,"s":5,"id":3902,"u":"reactive%20distraction_crb","p":189,"h":1,"n":"Reactive Distraction"},{"c":0,"s":5,"id":3903,"u":"reactive%20interference_crb","p":187,"h":1,"n":"Reactive Interference"},{"c":0,"s":5,"id":3904,"u":"reactive%20pursuit_crb","p":185,"h":1,"n":"Reactive Pursuit"},{"c":0,"s":5,"id":3905,"u":"reactive%20shield_crb","p":145,"h":1,"n":"Reactive Shield"},{"c":0,"s":5,"id":3906,"u":"read%20lips_crb","p":265,"h":1,"n":"Read Lips"},{"c":0,"s":5,"id":3907,"u":"reckless%20abandon%20(barbarian)_crb","p":93,"a":"Barbarian","h":1,"n":"Reckless Abandon"},{"c":0,"s":5,"id":3908,"u":"recognize%20spell_crb","p":265,"h":1,"n":"Recognize Spell"},{"c":0,"s":5,"id":3909,"u":"reflect%20spell%20(sorcerer)_crb","p":201,"a":"Sorcerer","h":1,"n":"Reflect Spell"},{"c":0,"s":5,"id":3910,"u":"reflect%20spell%20(wizard)_crb","p":213,"a":"Wizard","h":1,"n":"Reflect Spell"},{"c":0,"s":5,"id":3911,"u":"reflexive%20shield_crb","p":148,"h":1,"n":"Reflexive Shield"},{"c":0,"s":5,"id":3912,"u":"renewed%20vigor_crb","p":91,"h":1,"n":"Renewed Vigor"},{"c":0,"s":5,"id":3913,"u":"replenishment%20of%20war_crb","p":125,"h":1,"n":"Replenishment Of War"},{"c":0,"s":5,"id":3914,"u":"reprepare%20spell_crb","p":213,"h":1,"n":"Reprepare Spell"},{"c":0,"s":5,"id":3915,"u":"resurrectionist_crb","p":126,"h":1,"n":"Resurrectionist"},{"c":0,"s":5,"id":3916,"u":"revealing%20stab_crb","p":148,"h":1,"n":"Revealing Stab"},{"c":0,"s":5,"id":3917,"u":"revivifying%20mutagen_crb","p":77,"h":1,"n":"Revivifying Mutagen"},{"c":0,"s":5,"id":3918,"u":"ride_crb","p":266,"h":1,"n":"Ride"},{"c":0,"s":5,"id":3919,"u":"robust%20recovery_crb","p":266,"h":1,"n":"Robust Recovery"},{"c":0,"s":5,"id":3920,"u":"rock%20runner_crb","p":36,"h":1,"n":"Rock Runner"},{"c":0,"s":5,"id":3921,"u":"rogue%20dedication_crb","p":229,"h":1,"n":"Rogue Dedication"},{"c":0,"s":5,"id":3922,"u":"rough%20rider_crb","p":48,"h":1,"n":"Rough Rider"},{"c":0,"s":5,"id":3923,"u":"running%20reload_crb","p":172,"h":1,"n":"Running Reload"},{"c":0,"s":5,"id":3924,"u":"sabotage_crb","p":185,"h":1,"n":"Sabotage"},{"c":0,"s":5,"id":3925,"u":"sap%20life_crb","p":122,"h":1,"n":"Sap Life"},{"c":0,"s":5,"id":3926,"u":"savage%20critical_crb","p":153,"h":1,"n":"Savage Critical"},{"c":0,"s":5,"id":3927,"u":"scare%20to%20death_crb","p":266,"h":1,"n":"Scare To Death"},{"c":0,"s":5,"id":3928,"u":"scout's%20warning%20(ranger)_crb","p":172,"a":"Ranger","h":1,"n":"Scout's Warning"},{"c":0,"s":5,"id":3929,"u":"scout's%20warning%20(rogue)_crb","p":186,"a":"Rogue","h":1,"n":"Scout's Warning"},{"c":0,"s":5,"id":3930,"u":"scroll%20savant_crb","p":212,"h":1,"n":"Scroll Savant"},{"c":0,"s":5,"id":3931,"u":"second%20ally_crb","p":113,"h":1,"n":"Second Ally"},{"c":0,"s":5,"id":3932,"u":"second%20sting_crb","p":175,"h":1,"n":"Second Sting"},{"c":0,"s":5,"id":3933,"u":"second%20wind_crb","p":89,"h":1,"n":"Second Wind"},{"c":0,"s":5,"id":3934,"u":"selective%20energy_crb","p":123,"h":1,"n":"Selective Energy"},{"c":0,"s":5,"id":3935,"u":"sense%20evil_crb","p":113,"h":1,"n":"Sense Evil"},{"c":0,"s":5,"id":3936,"u":"sense%20the%20unseen%20(ranger)_crb","p":175,"a":"Ranger","h":1,"n":"Sense The Unseen"},{"c":0,"s":5,"id":3937,"u":"sense%20the%20unseen%20(rogue)_crb","p":188,"a":"Rogue","h":1,"n":"Sense The Unseen"},{"c":0,"s":5,"id":3938,"u":"shadow%20hunter_crb","p":177,"h":1,"n":"Shadow Hunter"},{"c":0,"s":5,"id":3939,"u":"shake%20it%20off_crb","p":89,"h":1,"n":"Shake It Off"},{"c":0,"s":5,"id":3940,"u":"shameless%20request_crb","p":266,"h":1,"n":"Shameless Request"},{"c":0,"s":5,"id":3941,"u":"share%20rage_crb","p":91,"h":1,"n":"Share Rage"},{"c":0,"s":5,"id":3942,"u":"shared%20prey_crb","p":175,"h":1,"n":"Shared Prey"},{"c":0,"s":5,"id":3943,"u":"shared%20replenishment_crb","p":125,"h":1,"n":"Shared Replenishment"},{"c":0,"s":5,"id":3944,"u":"shatter%20defenses_crb","p":149,"h":1,"n":"Shatter Defenses"},{"c":0,"s":5,"id":3945,"u":"shattering%20strike_crb","p":165,"h":1,"n":"Shattering Strike"},{"c":0,"s":5,"id":3946,"u":"shield%20block_crb","p":266,"h":1,"n":"Shield Block"},{"c":0,"s":5,"id":3947,"u":"shield%20of%20grace_crb","p":115,"h":1,"n":"Shield Of Grace"},{"c":0,"s":5,"id":3948,"u":"shield%20of%20reckoning_crb","p":113,"h":1,"n":"Shield Of Reckoning"},{"c":0,"s":5,"id":3949,"u":"shield%20paragon_crb","p":115,"h":1,"n":"Shield Paragon"},{"c":0,"s":5,"id":3950,"u":"shield%20warden%20(champion)_crb","p":112,"a":"Champion","h":1,"n":"Shield Warden"},{"c":0,"s":5,"id":3951,"u":"shield%20warden%20(fighter)_crb","p":149,"a":"Fighter","h":1,"n":"Shield Warden"},{"c":0,"s":5,"id":3952,"u":"shielded%20stride_crb","p":146,"h":1,"n":"Shielded Stride"},{"c":0,"s":5,"id":3953,"u":"shining%20oath_crb","p":110,"h":1,"n":"Shining Oath"},{"c":0,"s":5,"id":3954,"u":"side%20by%20side%20(druid)_crb","p":138,"a":"Druid","h":1,"n":"Side By Side"},{"c":0,"s":5,"id":3955,"u":"side%20by%20side%20(ranger)_crb","p":175,"a":"Ranger","h":1,"n":"Side By Side"},{"c":0,"s":5,"id":3956,"u":"sidestep_crb","p":187,"h":1,"n":"Sidestep"},{"c":0,"s":5,"id":3957,"u":"sign%20language_crb","p":266,"h":1,"n":"Sign Language"},{"c":0,"s":5,"id":3958,"u":"silent%20spell_crb","p":210,"h":1,"n":"Silent Spell"},{"c":0,"s":5,"id":3959,"u":"skill%20mastery_crb","p":229,"h":1,"n":"Skill Mastery"},{"c":0,"s":5,"id":3960,"u":"skill%20training_crb","p":266,"h":1,"n":"Skill Training"},{"c":0,"s":5,"id":3961,"u":"skirmish%20strike%20(ranger)_crb","p":173,"a":"Ranger","h":1,"n":"Skirmish Strike"},{"c":0,"s":5,"id":3962,"u":"skirmish%20strike%20(rogue)_crb","p":186,"a":"Rogue","h":1,"n":"Skirmish Strike"},{"c":0,"s":5,"id":3963,"u":"skittering%20scuttle_crb","p":49,"h":1,"n":"Skittering Scuttle"},{"c":0,"s":5,"id":3964,"u":"sleeper%20hold_crb","p":163,"h":1,"n":"Sleeper Hold"},{"c":0,"s":5,"id":3965,"u":"slippery%20secrets_crb","p":266,"h":1,"n":"Slippery Secrets"},{"c":0,"s":5,"id":3966,"u":"sly%20striker_crb","p":187,"h":1,"n":"Sly Striker"},{"c":0,"s":5,"id":3967,"u":"smite%20evil_crb","p":112,"h":1,"n":"Smite Evil"},{"c":0,"s":5,"id":3968,"u":"smoke%20bomb_crb","p":77,"h":1,"n":"Smoke Bomb"},{"c":0,"s":5,"id":3969,"u":"snagging%20strike_crb","p":145,"h":1,"n":"Snagging Strike"},{"c":0,"s":5,"id":3970,"u":"snap%20shot_crb","p":173,"h":1,"n":"Snap Shot"},{"c":0,"s":5,"id":3971,"u":"snare%20crafting_crb","p":266,"h":1,"n":"Snare Crafting"},{"c":0,"s":5,"id":3972,"u":"snare%20specialist_crb","p":172,"h":1,"n":"Snare Specialist"},{"c":0,"s":5,"id":3973,"u":"sneak%20attacker_crb","p":229,"h":1,"n":"Sneak Attacker"},{"c":0,"s":5,"id":3974,"u":"sneak%20savant_crb","p":187,"h":1,"n":"Sneak Savant"},{"c":0,"s":5,"id":3975,"u":"soaring%20shape_crb","p":137,"h":1,"n":"Soaring Shape"},{"c":0,"s":5,"id":3976,"u":"soothing%20ballad_crb","p":103,"h":1,"n":"Soothing Ballad"},{"c":0,"s":5,"id":3977,"u":"sorcerer%20dedication_crb","p":230,"h":1,"n":"Sorcerer Dedication"},{"c":0,"s":5,"id":3978,"u":"specialized%20companion%20(druid)_crb","p":139,"a":"Druid","h":1,"n":"Specialized Companion"},{"c":0,"s":5,"id":3979,"u":"specialized%20companion%20(ranger)_crb","p":176,"a":"Ranger","h":1,"n":"Specialized Companion"},{"c":0,"s":5,"id":3980,"u":"specialty%20crafting_crb","p":266,"h":1,"n":"Specialty Crafting"},{"c":0,"s":5,"id":3981,"u":"spell%20combination_crb","p":213,"h":1,"n":"Spell Combination"},{"c":0,"s":5,"id":3982,"u":"spell%20penetration_crb","p":210,"h":1,"n":"Spell Penetration"},{"c":0,"s":5,"id":3983,"u":"spell%20tinker_crb","p":213,"h":1,"n":"Spell Tinker"},{"c":0,"s":5,"id":3984,"u":"spirit's%20wrath_crb","p":92,"h":1,"n":"Spirit's Wrath"},{"c":0,"s":5,"id":3985,"u":"spirits'%20interference_crb","p":91,"h":1,"n":"Spirits' Interference"},{"c":0,"s":5,"id":3986,"u":"spring%20attack_crb","p":152,"h":1,"n":"Spring Attack"},{"c":0,"s":5,"id":3987,"u":"spring%20from%20the%20shadows_crb","p":187,"h":1,"n":"Spring From The Shadows"},{"c":0,"s":5,"id":3988,"u":"stance%20savant%20(fighter)_crb","p":153,"a":"Fighter","h":1,"n":"Stance Savant"},{"c":0,"s":5,"id":3989,"u":"stance%20savant%20(monk)_crb","p":164,"a":"Monk","h":1,"n":"Stance Savant"},{"c":0,"s":5,"id":3990,"u":"stand%20still_crb","p":160,"h":1,"n":"Stand Still"},{"c":0,"s":5,"id":3991,"u":"steady%20balance_crb","p":267,"h":1,"n":"Steady Balance"},{"c":0,"s":5,"id":3992,"u":"steady%20spellcasting%20(bard)_crb","p":101,"a":"Bard","h":1,"n":"Steady Spellcasting"},{"c":0,"s":5,"id":3993,"u":"steady%20spellcasting%20(cleric)_crb","p":123,"a":"Cleric","h":1,"n":"Steady Spellcasting"},{"c":0,"s":5,"id":3994,"u":"steady%20spellcasting%20(druid)_crb","p":136,"a":"Druid","h":1,"n":"Steady Spellcasting"},{"c":0,"s":5,"id":3995,"u":"steady%20spellcasting%20(sorcerer)_crb","p":200,"a":"Sorcerer","h":1,"n":"Steady Spellcasting"},{"c":0,"s":5,"id":3996,"u":"steady%20spellcasting%20(wizard)_crb","p":211,"a":"Wizard","h":1,"n":"Steady Spellcasting"},{"c":0,"s":5,"id":3997,"u":"stealthy%20companion_crb","p":176,"h":1,"n":"Stealthy Companion"},{"c":0,"s":5,"id":3998,"u":"sticky%20bomb_crb","p":79,"h":1,"n":"Sticky Bomb"},{"c":0,"s":5,"id":3999,"u":"stonecunning_crb","p":36,"h":1,"n":"Stonecunning"},{"c":0,"s":5,"id":4000,"u":"stonewalker_crb","p":37,"h":1,"n":"Stonewalker"},{"c":0,"s":5,"id":4001,"u":"storm%20born_crb","p":134,"h":1,"n":"Storm Born"},{"c":0,"s":5,"id":4002,"u":"storm%20retribution_crb","p":136,"h":1,"n":"Storm Retribution"},{"c":0,"s":5,"id":4003,"u":"streetwise_crb","p":267,"h":1,"n":"Streetwise"},{"c":0,"s":5,"id":4004,"u":"student%20of%20the%20canon_crb","p":267,"h":1,"n":"Student Of The Canon"},{"c":0,"s":5,"id":4005,"u":"studious%20capacity_crb","p":103,"h":1,"n":"Studious Capacity"},{"c":0,"s":5,"id":4006,"u":"stunning%20fist_crb","p":160,"h":1,"n":"Stunning Fist"},{"c":0,"s":5,"id":4007,"u":"subtle%20theft_crb","p":267,"h":1,"n":"Subtle Theft"},{"c":0,"s":5,"id":4008,"u":"sudden%20charge%20(barbarian)_crb","p":88,"a":"Barbarian","h":1,"n":"Sudden Charge"},{"c":0,"s":5,"id":4009,"u":"sudden%20charge%20(fighter)_crb","p":145,"a":"Fighter","h":1,"n":"Sudden Charge"},{"c":0,"s":5,"id":4010,"u":"sudden%20leap%20(barbarian)_crb","p":91,"a":"Barbarian","h":1,"n":"Sudden Leap"},{"c":0,"s":5,"id":4011,"u":"sudden%20leap%20(fighter)_crb","p":149,"a":"Fighter","h":1,"n":"Sudden Leap"},{"c":0,"s":5,"id":4012,"u":"superior%20bond_crb","p":213,"h":1,"n":"Superior Bond"},{"c":0,"s":5,"id":4013,"u":"supernatural%20charm_crb","p":58,"h":1,"n":"Supernatural Charm"},{"c":0,"s":5,"id":4014,"u":"sure%20feet_crb","p":52,"h":1,"n":"Sure Feet"},{"c":0,"s":5,"id":4015,"u":"survey%20wildlife_crb","p":267,"h":1,"n":"Survey Wildlife"},{"c":0,"s":5,"id":4016,"u":"swift%20banishment_crb","p":126,"h":1,"n":"Swift Banishment"},{"c":0,"s":5,"id":4017,"u":"swift%20river_crb","p":165,"h":1,"n":"Swift River"},{"c":0,"s":5,"id":4018,"u":"swift%20sneak_crb","p":267,"h":1,"n":"Swift Sneak"},{"c":0,"s":5,"id":4019,"u":"swift%20tracker_crb","p":173,"h":1,"n":"Swift Tracker"},{"c":0,"s":5,"id":4020,"u":"swipe%20(barbarian)_crb","p":89,"a":"Barbarian","h":1,"n":"Swipe"},{"c":0,"s":5,"id":4021,"u":"swipe%20(fighter)_crb","p":147,"a":"Fighter","h":1,"n":"Swipe"},{"c":0,"s":5,"id":4022,"u":"symphony%20of%20the%20muse_crb","p":103,"h":1,"n":"Symphony Of The Muse"},{"c":0,"s":5,"id":4023,"u":"tactical%20debilitations_crb","p":187,"h":1,"n":"Tactical Debilitations"},{"c":0,"s":5,"id":4024,"u":"tangled%20forest%20rake_crb","p":164,"h":1,"n":"Tangled Forest Rake"},{"c":0,"s":5,"id":4025,"u":"tangled%20forest%20stance_crb","p":163,"h":1,"n":"Tangled Forest Stance"},{"c":0,"s":5,"id":4026,"u":"targeting%20shot_crb","p":176,"h":1,"n":"Targeting Shot"},{"c":0,"s":5,"id":4027,"u":"terrain%20expertise_crb","p":267,"h":1,"n":"Terrain Expertise"},{"c":0,"s":5,"id":4028,"u":"terrain%20master_crb","p":174,"h":1,"n":"Terrain Master"},{"c":0,"s":5,"id":4029,"u":"terrain%20stalker_crb","p":267,"h":1,"n":"Terrain Stalker"},{"c":0,"s":5,"id":4030,"u":"terrified%20retreat_crb","p":268,"h":1,"n":"Terrified Retreat"},{"c":0,"s":5,"id":4031,"u":"terrifying%20howl_crb","p":91,"h":1,"n":"Terrifying Howl"},{"c":0,"s":5,"id":4032,"u":"thousand%20faces_crb","p":135,"h":1,"n":"Thousand Faces"},{"c":0,"s":5,"id":4033,"u":"thrash_crb","p":91,"h":1,"n":"Thrash"},{"c":0,"s":5,"id":4034,"u":"tiger%20slash_crb","p":161,"h":1,"n":"Tiger Slash"},{"c":0,"s":5,"id":4035,"u":"tiger%20stance_crb","p":159,"h":1,"n":"Tiger Stance"},{"c":0,"s":5,"id":4036,"u":"timeless%20body_crb","p":164,"h":1,"n":"Timeless Body"},{"c":0,"s":5,"id":4037,"u":"timeless%20nature_crb","p":139,"h":1,"n":"Timeless Nature"},{"c":0,"s":5,"id":4038,"u":"titan%20slinger_crb","p":52,"h":1,"n":"Titan Slinger"},{"c":0,"s":5,"id":4039,"u":"titan%20wrestler_crb","p":268,"h":1,"n":"Titan Wrestler"},{"c":0,"s":5,"id":4040,"u":"titan's%20stature_crb","p":92,"h":1,"n":"Titan's Stature"},{"c":0,"s":5,"id":4041,"u":"to%20the%20ends%20of%20the%20earth_crb","p":177,"h":1,"n":"To The Ends Of The Earth"},{"c":0,"s":5,"id":4042,"u":"tongue%20of%20sun%20and%20moon_crb","p":165,"h":1,"n":"Tongue Of Sun And Moon"},{"c":0,"s":5,"id":4043,"u":"toughness_crb","p":268,"h":1,"n":"Toughness"},{"c":0,"s":5,"id":4044,"u":"train%20animal_crb","p":268,"h":1,"n":"Train Animal"},{"c":0,"s":5,"id":4045,"u":"trap%20finder_crb","p":183,"h":1,"n":"Trap Finder"},{"c":0,"s":5,"id":4046,"u":"trick%20magic%20item_crb","p":268,"h":1,"n":"Trick Magic Item"},{"c":0,"s":5,"id":4047,"u":"trickster's%20ace_crb","p":189,"h":1,"n":"Trickster's Ace"},{"c":0,"s":5,"id":4048,"u":"triple%20shot_crb","p":149,"h":1,"n":"Triple Shot"},{"c":0,"s":5,"id":4049,"u":"triple%20threat_crb","p":177,"h":1,"n":"Triple Threat"},{"c":0,"s":5,"id":4050,"u":"triple%20time_crb","p":101,"h":1,"n":"Triple Time"},{"c":0,"s":5,"id":4051,"u":"true%20debilitating%20bomb_crb","p":80,"h":1,"n":"True Debilitating Bomb"},{"c":0,"s":5,"id":4052,"u":"true%20hypercognition_crb","p":103,"h":1,"n":"True Hypercognition"},{"c":0,"s":5,"id":4053,"u":"true%20shapeshifter_crb","p":139,"h":1,"n":"True Shapeshifter"},{"c":0,"s":5,"id":4054,"u":"turn%20undead_crb","p":122,"h":1,"n":"Turn Undead"},{"c":0,"s":5,"id":4055,"u":"twin%20feint_crb","p":183,"h":1,"n":"Twin Feint"},{"c":0,"s":5,"id":4056,"u":"twin%20parry%20(fighter)_crb","p":147,"a":"Fighter","h":1,"n":"Twin Parry"},{"c":0,"s":5,"id":4057,"u":"twin%20parry%20(ranger)_crb","p":172,"a":"Ranger","h":1,"n":"Twin Parry"},{"c":0,"s":5,"id":4058,"u":"twin%20riposte%20(fighter)_crb","p":151,"a":"Fighter","h":1,"n":"Twin Riposte"},{"c":0,"s":5,"id":4059,"u":"twin%20riposte%20(ranger)_crb","p":175,"a":"Ranger","h":1,"n":"Twin Riposte"},{"c":0,"s":5,"id":4060,"u":"twin%20takedown_crb","p":171,"h":1,"n":"Twin Takedown"},{"c":0,"s":5,"id":4061,"u":"twinned%20defense%20(fighter)_crb","p":153,"a":"Fighter","h":1,"n":"Twinned Defense"},{"c":0,"s":5,"id":4062,"u":"twist%20the%20knife_crb","p":186,"h":1,"n":"Twist The Knife"},{"c":0,"s":5,"id":4063,"u":"two-weapon%20flurry_crb","p":153,"h":1,"n":"Two-Weapon Flurry"},{"c":0,"s":5,"id":4064,"u":"ubiquitous%20snares_crb","p":177,"h":1,"n":"Ubiquitous Snares"},{"c":0,"s":5,"id":4065,"u":"ultimate%20mercy_crb","p":115,"h":1,"n":"Ultimate Mercy"},{"c":0,"s":5,"id":4066,"u":"ultimate%20skirmisher_crb","p":177,"h":1,"n":"Ultimate Skirmisher"},{"c":0,"s":5,"id":4067,"u":"unbalancing%20blow_crb","p":184,"h":1,"n":"Unbalancing Blow"},{"c":0,"s":5,"id":4068,"u":"unburdened%20iron_crb","p":36,"h":1,"n":"Unburdened Iron"},{"c":0,"s":5,"id":4069,"u":"uncanny%20bombs_crb","p":79,"h":1,"n":"Uncanny Bombs"},{"c":0,"s":5,"id":4070,"u":"uncanny%20dodge_crb","p":229,"h":1,"n":"Uncanny Dodge"},{"c":0,"s":5,"id":4071,"u":"unconventional%20expertise_crb","p":58,"h":1,"n":"Unconventional Expertise"},{"c":0,"s":5,"id":4072,"u":"unconventional%20weaponry_crb","p":57,"h":1,"n":"Unconventional Weaponry"},{"c":0,"s":5,"id":4073,"u":"underwater%20marauder_crb","p":268,"h":1,"n":"Underwater Marauder"},{"c":0,"s":5,"id":4074,"u":"unfettered%20halfling_crb","p":52,"h":1,"n":"Unfettered Halfling"},{"c":0,"s":5,"id":4075,"u":"unified%20theory_crb","p":268,"h":1,"n":"Unified Theory"},{"c":0,"s":5,"id":4076,"u":"unimpeded%20step_crb","p":109,"h":1,"n":"Unimpeded Step"},{"c":0,"s":5,"id":4077,"u":"universal%20longevity_crb","p":41,"h":1,"n":"Universal Longevity"},{"c":0,"s":5,"id":4078,"u":"universal%20versatility_crb","p":211,"h":1,"n":"Universal Versatility"},{"c":0,"s":5,"id":4079,"u":"unmistakable%20lore_crb","p":268,"h":1,"n":"Unmistakable Lore"},{"c":0,"s":5,"id":4080,"u":"untrained%20improvisation_crb","p":268,"h":1,"n":"Untrained Improvisation"},{"c":0,"s":5,"id":4081,"u":"unusual%20composition_crb","p":102,"h":1,"n":"Unusual Composition"},{"c":0,"s":5,"id":4082,"u":"unwavering%20mien_crb","p":40,"h":1,"n":"Unwavering Mien"},{"c":0,"s":5,"id":4083,"u":"vengeful%20hatred_crb","p":36,"h":1,"n":"Vengeful Hatred"},{"c":0,"s":5,"id":4084,"u":"vengeful%20oath_crb","p":111,"h":1,"n":"Vengeful Oath"},{"c":0,"s":5,"id":4085,"u":"vengeful%20strike_crb","p":93,"h":1,"n":"Vengeful Strike"},{"c":0,"s":5,"id":4086,"u":"verdant%20metamorphosis_crb","p":139,"h":1,"n":"Verdant Metamorphosis"},{"c":0,"s":5,"id":4087,"u":"versatile%20font_crb","p":122,"h":1,"n":"Versatile Font"},{"c":0,"s":5,"id":4088,"u":"versatile%20performance_crb","p":100,"h":1,"n":"Versatile Performance"},{"c":0,"s":5,"id":4089,"u":"versatile%20signature_crb","p":101,"h":1,"n":"Versatile Signature"},{"c":0,"s":5,"id":4090,"u":"very%20sneaky_crb","p":49,"h":1,"n":"Very Sneaky"},{"c":0,"s":5,"id":4091,"u":"very%2c%20very%20sneaky_crb","p":49,"h":1,"n":"Very, Very Sneaky"},{"c":0,"s":5,"id":4092,"u":"vicious%20debilitations_crb","p":187,"h":1,"n":"Vicious Debilitations"},{"c":0,"s":5,"id":4093,"u":"vicious%20evisceration_crb","p":93,"h":1,"n":"Vicious Evisceration"},{"c":0,"s":5,"id":4094,"u":"victorious%20vigor_crb","p":59,"h":1,"n":"Victorious Vigor"},{"c":0,"s":5,"id":4095,"u":"virtuosic%20performer_crb","p":268,"h":1,"n":"Virtuosic Performer"},{"c":0,"s":5,"id":4096,"u":"vivacious%20conduit_crb","p":45,"h":1,"n":"Vivacious Conduit"},{"c":0,"s":5,"id":4097,"u":"wall%20jump_crb","p":269,"h":1,"n":"Wall Jump"},{"c":0,"s":5,"id":4098,"u":"wall%20run_crb","p":163,"h":1,"n":"Wall Run"},{"c":0,"s":5,"id":4099,"u":"ward%20medic_crb","p":269,"h":1,"n":"Ward Medic"},{"c":0,"s":5,"id":4100,"u":"warden's%20boon_crb","p":174,"h":1,"n":"Warden's Boon"},{"c":0,"s":5,"id":4101,"u":"warden's%20guidance_crb","p":176,"h":1,"n":"Warden's Guidance"},{"c":0,"s":5,"id":4102,"u":"warden's%20step_crb","p":175,"h":1,"n":"Warden's Step"},{"c":0,"s":5,"id":4103,"u":"wary%20disarmament_crb","p":269,"h":1,"n":"Wary Disarmament"},{"c":0,"s":5,"id":4104,"u":"watchful%20halfling_crb","p":52,"h":1,"n":"Watchful Halfling"},{"c":0,"s":5,"id":4105,"u":"water%20step_crb","p":162,"h":1,"n":"Water Step"},{"c":0,"s":5,"id":4106,"u":"weapon%20proficiency_crb","p":269,"h":1,"n":"Weapon Proficiency"},{"c":0,"s":5,"id":4107,"u":"weapon%20supremacy_crb","p":153,"h":1,"n":"Weapon Supremacy"},{"c":0,"s":5,"id":4108,"u":"weight%20of%20guilt_crb","p":110,"h":1,"n":"Weight Of Guilt"},{"c":0,"s":5,"id":4109,"u":"whirling%20throw_crb","p":162,"h":1,"n":"Whirling Throw"},{"c":0,"s":5,"id":4110,"u":"whirlwind%20strike%20(barbarian)_crb","p":93,"a":"Barbarian","h":1,"n":"Whirlwind Strike"},{"c":0,"s":5,"id":4111,"u":"whirlwind%20strike%20(fighter)_crb","p":153,"a":"Fighter","h":1,"n":"Whirlwind Strike"},{"c":0,"s":5,"id":4112,"u":"wholeness%20of%20body_crb","p":160,"h":1,"n":"Wholeness Of Body"},{"c":0,"s":5,"id":4113,"u":"widen%20spell%20(druid)_crb","p":134,"a":"Druid","h":1,"n":"Widen Spell"},{"c":0,"s":5,"id":4114,"u":"widen%20spell%20(sorcerer)_crb","p":198,"a":"Sorcerer","h":1,"n":"Widen Spell"},{"c":0,"s":5,"id":4115,"u":"widen%20spell%20(wizard)_crb","p":210,"a":"Wizard","h":1,"n":"Widen Spell"},{"c":0,"s":5,"id":4116,"u":"wild%20empathy_crb","p":172,"h":1,"n":"Wild Empathy"},{"c":0,"s":5,"id":4117,"u":"wild%20shape_crb","p":134,"h":1,"n":"Wild Shape"},{"c":0,"s":5,"id":4118,"u":"wild%20winds%20gust_crb","p":165,"h":1,"n":"Wild Winds Gust"},{"c":0,"s":5,"id":4119,"u":"wild%20winds%20initiate_crb","p":163,"h":1,"n":"Wild Winds Initiate"},{"c":0,"s":5,"id":4120,"u":"wind%20caller_crb","p":137,"h":1,"n":"Wind Caller"},{"c":0,"s":5,"id":4121,"u":"wind%20jump_crb","p":163,"h":1,"n":"Wind Jump"},{"c":0,"s":5,"id":4122,"u":"winding%20flow_crb","p":163,"h":1,"n":"Winding Flow"},{"c":0,"s":5,"id":4123,"u":"wizard%20dedication_crb","p":231,"h":1,"n":"Wizard Dedication"},{"c":0,"s":5,"id":4124,"u":"wolf%20drag_crb","p":162,"h":1,"n":"Wolf Drag"},{"c":0,"s":5,"id":4125,"u":"wolf%20stance_crb","p":159,"h":1,"n":"Wolf Stance"},{"c":0,"s":5,"id":4126,"u":"woodland%20stride_crb","p":135,"h":1,"n":"Woodland Stride"},{"c":0,"s":5,"id":4127,"u":"wounded%20rage_crb","p":90,"h":1,"n":"Wounded Rage"},{"c":0,"s":5,"id":4128,"u":"wyrmbane%20aura_crb","p":115,"h":1,"n":"Wyrmbane Aura"},{"c":0,"s":5,"id":4129,"u":"you're%20next%20(rogue)_crb","p":183,"a":"Rogue","h":1,"n":"You're Next"},{"c":0,"s":12,"id":4130,"u":"encouraging%20words_gmg","p":201,"h":1,"n":"Encouraging Words"},{"c":0,"s":12,"id":4131,"u":"steel%20your%20resolve_gmg","p":201,"h":1,"n":"Steel Your Resolve"},{"c":0,"s":15,"id":4132,"u":"bellflower%20dedication_aoa3","p":75,"h":1,"n":"Bellflower Dedication"},{"c":0,"s":15,"id":4133,"u":"cut%20the%20bonds_aoa3","p":75,"h":1,"n":"Cut The Bonds"},{"c":0,"s":15,"id":4134,"u":"different%20worlds_aoa3","p":73,"h":1,"n":"Different Worlds"},{"c":0,"s":15,"id":4135,"u":"garden%20path_aoa3","p":75,"h":1,"n":"Garden Path"},{"c":0,"s":15,"id":4136,"u":"practiced%20guidance_aoa3","p":75,"h":1,"n":"Practiced Guidance"},{"c":0,"s":15,"id":4137,"u":"reveal%20machinations_aoa3","p":73,"h":1,"n":"Reveal Machinations"},{"c":0,"s":15,"id":4138,"u":"scarecrow_aoa3","p":75,"h":1,"n":"Scarecrow"},{"c":0,"s":15,"id":4139,"u":"secret%20speech_aoa3","p":73,"h":1,"n":"Secret Speech"},{"c":0,"s":15,"id":4140,"u":"silver's%20refrain_aoa3","p":73,"h":1,"n":"Silver's Refrain"},{"c":0,"s":15,"id":4141,"u":"tiller's%20aid_aoa3","p":75,"h":1,"n":"Tiller's Aid"},{"c":0,"s":15,"id":4142,"u":"tiller's%20drive_aoa3","p":75,"h":1,"n":"Tiller's Drive"},{"c":0,"s":15,"id":4143,"u":"tweak%20appearances_aoa3","p":73,"h":1,"n":"Tweak Appearances"},{"c":0,"s":16,"id":4144,"u":"armor%20rune%20shifter_aoa4","p":75,"h":1,"n":"Armor Rune Shifter"},{"c":0,"s":16,"id":4145,"u":"crystal%20keeper%20dedication_aoa4","p":74,"h":1,"n":"Crystal Keeper Dedication"},{"c":0,"s":16,"id":4146,"u":"crystal%20ward%20spells_aoa4","p":74,"h":1,"n":"Crystal Ward Spells"},{"c":0,"s":16,"id":4147,"u":"false%20faith_aoa4","p":63,"h":1,"n":"False Faith"},{"c":0,"s":16,"id":4148,"u":"simple%20crystal%20magic_aoa4","p":74,"h":1,"n":"Simple Crystal Magic"},{"c":0,"s":16,"id":4149,"u":"weapon-rune%20shifter_aoa4","p":75,"h":1,"n":"Weapon-rune Shifter"},{"c":0,"s":17,"id":4150,"u":"deadly%20poison%20weapon_aoa5","p":78,"h":1,"n":"Deadly Poison Weapon"},{"c":0,"s":17,"id":4151,"u":"decry%20thief_aoa5","p":81,"h":1,"n":"Decry Thief"},{"c":0,"s":17,"id":4152,"u":"know%20the%20beat_aoa5","p":81,"h":1,"n":"Know The Beat"},{"c":0,"s":17,"id":4153,"u":"pesh%20skin_aoa5","p":78,"h":1,"n":"Pesh Skin"},{"c":0,"s":17,"id":4154,"u":"relentless%20disarm_aoa5","p":81,"h":1,"n":"Relentless Disarm"},{"c":0,"s":17,"id":4155,"u":"shaped%20contaminant_aoa5","p":78,"h":1,"n":"Shaped Contaminant"},{"c":0,"s":17,"id":4156,"u":"unfazed%20assessment_aoa5","p":81,"h":1,"n":"Unfazed Assessment"},{"c":0,"s":17,"id":4157,"u":"zephyr%20guard%20dedication_aoa5","p":81,"h":1,"n":"Zephyr Guard Dedication"},{"c":0,"s":18,"id":4158,"u":"apex%20companion_aoa6","p":76,"h":1,"n":"Apex Companion"},{"c":0,"s":18,"id":4159,"u":"aura%20of%20unbreakable%20virtue_aoa6","p":76,"h":1,"n":"Aura Of Unbreakable Virtue"},{"c":0,"s":18,"id":4160,"u":"bloodline%20metamorphosis_aoa6","p":76,"h":1,"n":"Bloodline Metamorphosis"},{"c":0,"s":18,"id":4161,"u":"efficient%20alchemy_aoa6","p":76,"h":1,"n":"Efficient Alchemy"},{"c":0,"s":18,"id":4162,"u":"emblazon%20divinity_aoa6","p":76,"h":1,"n":"Emblazon Divinity"},{"c":0,"s":18,"id":4163,"u":"enduring%20debilitation_aoa6","p":76,"h":1,"n":"Enduring Debilitation"},{"c":0,"s":18,"id":4164,"u":"golden%20body_aoa6","p":76,"h":1,"n":"Golden Body"},{"c":0,"s":18,"id":4165,"u":"invulnerable%20juggernaut_aoa6","p":76,"h":1,"n":"Invulnerable Juggernaut"},{"c":0,"s":18,"id":4166,"u":"song%20of%20the%20fallen_aoa6","p":76,"h":1,"n":"Song Of The Fallen"},{"c":0,"s":18,"id":4167,"u":"spell%20mastery_aoa6","p":76,"h":1,"n":"Spell Mastery"},{"c":0,"s":18,"id":4168,"u":"superior%20sight_aoa6","p":77,"h":1,"n":"Superior Sight"},{"c":0,"s":18,"id":4169,"u":"ultimate%20flexibility_aoa6","p":77,"h":1,"n":"Ultimate Flexibility"},{"c":0,"s":19,"id":4170,"u":"arcane%20sensitivity_aoe1","p":79,"h":1,"n":"Arcane Sensitivity"},{"c":0,"s":19,"id":4171,"u":"bolera's%20interrogation_aoe1","p":79,"h":1,"n":"Bolera's Interrogation"},{"c":0,"s":19,"id":4172,"u":"edgewatch%20detective%20dedication_aoe1","p":79,"h":1,"n":"Edgewatch Detective Dedication"},{"c":0,"s":19,"id":4173,"u":"sense%20alignment_aoe1","p":79,"h":1,"n":"Sense Alignment"},{"c":0,"s":20,"id":4174,"u":"cross%20the%20final%20horizon_aoe2","p":79,"h":1,"n":"Cross The Final Horizon"},{"c":0,"s":20,"id":4175,"u":"heaven's%20thunder_aoe2","p":78,"h":1,"n":"Heaven's Thunder"},{"c":0,"s":20,"id":4176,"u":"jalmeri%20heavenseeker%20dedication_aoe2","p":78,"h":1,"n":"Jalmeri Heavenseeker Dedication"},{"c":0,"s":20,"id":4177,"u":"sky%20and%20heaven%20stance_aoe2","p":78,"h":1,"n":"Sky And Heaven Stance"},{"c":0,"s":20,"id":4178,"u":"skyseeker_aoe2","p":79,"h":1,"n":"Skyseeker"},{"c":0,"s":20,"id":4179,"u":"speaking%20sky_aoe2","p":79,"h":1,"n":"Speaking Sky"},{"c":0,"s":20,"id":4180,"u":"steal%20the%20sky_aoe2","p":79,"h":1,"n":"Steal The Sky"},{"c":0,"s":21,"id":4181,"u":"ambushing%20knockdown_aoe3","p":75,"h":1,"n":"Ambushing Knockdown"},{"c":0,"s":21,"id":4182,"u":"cartwheel%20dodge_aoe3","p":78,"h":1,"n":"Cartwheel Dodge"},{"c":0,"s":21,"id":4183,"u":"coordinated%20distraction_aoe3","p":75,"h":1,"n":"Coordinated Distraction"},{"c":0,"s":21,"id":4184,"u":"deny%20support_aoe3","p":75,"h":1,"n":"Deny Support"},{"c":0,"s":21,"id":4185,"u":"flourishing%20finish_aoe3","p":78,"h":1,"n":"Flourishing Finish"},{"c":0,"s":21,"id":4186,"u":"murderer's%20circle_aoe3","p":78,"h":1,"n":"Murderer's Circle"},{"c":0,"s":21,"id":4187,"u":"performance%20weapon%20expert_aoe3","p":78,"h":1,"n":"Performance Weapon Expert"},{"c":0,"s":21,"id":4188,"u":"pin%20to%20the%20spot_aoe3","p":78,"h":1,"n":"Pin To The Spot"},{"c":0,"s":21,"id":4189,"u":"provocator%20dedication_aoe3","p":78,"h":1,"n":"Provocator Dedication"},{"c":0,"s":21,"id":4190,"u":"slice%20and%20swipe_aoe3","p":75,"h":1,"n":"Slice And Swipe"},{"c":0,"s":21,"id":4191,"u":"subtle%20shank_aoe3","p":75,"h":1,"n":"Subtle Shank"},{"c":0,"s":25,"id":4192,"u":"ghost%20hunter%20dedication_av1","p":81,"h":1,"n":"Ghost Hunter Dedication"},{"c":0,"s":25,"id":4193,"u":"ghost%20strike_av1","p":81,"h":1,"n":"Ghost Strike"},{"c":0,"s":25,"id":4194,"u":"grave's%20voice_av1","p":81,"h":1,"n":"Grave's Voice"},{"c":0,"s":25,"id":4195,"u":"investigate%20haunting_av1","p":81,"h":1,"n":"Investigate Haunting"},{"c":0,"s":25,"id":4196,"u":"peer%20beyond_av1","p":81,"h":1,"n":"Peer Beyond"},{"c":0,"s":25,"id":4197,"u":"spirit%20spells_av1","p":81,"h":1,"n":"Spirit Spells"},{"c":0,"s":26,"id":4198,"u":"able%20ritualist_av2","p":76,"h":1,"n":"Able Ritualist"},{"c":0,"s":26,"id":4199,"u":"advanced%20seeker%20of%20truths_av2","p":77,"h":1,"n":"Advanced Seeker Of Truths"},{"c":0,"s":26,"id":4200,"u":"eldritch%20researcher%20dedication_av2","p":76,"h":1,"n":"Eldritch Researcher Dedication"},{"c":0,"s":26,"id":4201,"u":"entities%20from%20afar_av2","p":77,"h":1,"n":"Entities From Afar"},{"c":0,"s":26,"id":4202,"u":"incredible%20recollection_av2","p":77,"h":1,"n":"Incredible Recollection"},{"c":0,"s":26,"id":4203,"u":"know%20it%20all_av2","p":76,"h":1,"n":"Know It All"},{"c":0,"s":26,"id":4204,"u":"lorefinder_av2","p":76,"h":1,"n":"Lorefinder"},{"c":0,"s":26,"id":4205,"u":"scholarly%20defense_av2","p":76,"h":1,"n":"Scholarly Defense"},{"c":0,"s":26,"id":4206,"u":"seeker%20of%20truths_av2","p":76,"h":1,"n":"Seeker Of Truths"},{"c":0,"s":26,"id":4207,"u":"strange%20script_av2","p":76,"h":1,"n":"Strange Script"},{"c":0,"s":26,"id":4208,"u":"words%20of%20unraveling_av2","p":77,"h":1,"n":"Words Of Unraveling"},{"c":0,"s":27,"id":4209,"u":"drow%20shootist%20dedication_av3","p":77,"h":1,"n":"Drow Shootist Dedication"},{"c":0,"s":27,"id":4210,"u":"lethargy%20poisoner_av3","p":77,"h":1,"n":"Lethargy Poisoner"},{"c":0,"s":27,"id":4211,"u":"reloading%20trick_av3","p":77,"h":1,"n":"Reloading Trick"},{"c":0,"s":27,"id":4212,"u":"repeating%20hand%20crossbow%20training_av3","p":77,"h":1,"n":"Repeating Hand Crossbow Training"},{"c":0,"s":28,"id":4213,"u":"bullying%20staff_ec1","p":75,"h":1,"n":"Bullying Staff"},{"c":0,"s":28,"id":4214,"u":"focused%20juggler_ec1","p":74,"h":1,"n":"Focused Juggler"},{"c":0,"s":28,"id":4215,"u":"juggle_ec1","p":76,"h":1,"n":"Juggle"},{"c":0,"s":28,"id":4216,"u":"juggler%20dedication_ec1","p":74,"h":1,"n":"Juggler Dedication"},{"c":0,"s":28,"id":4217,"u":"levering%20strike_ec1","p":75,"h":1,"n":"Levering Strike"},{"c":0,"s":28,"id":4218,"u":"lobbed%20attack_ec1","p":74,"h":1,"n":"Lobbed Attack"},{"c":0,"s":28,"id":4219,"u":"opportune%20throw_ec1","p":74,"h":1,"n":"Opportune Throw"},{"c":0,"s":28,"id":4220,"u":"pivot%20strike_ec1","p":75,"h":1,"n":"Pivot Strike"},{"c":0,"s":28,"id":4221,"u":"quick%20juggler_ec1","p":74,"h":1,"n":"Quick Juggler"},{"c":0,"s":28,"id":4222,"u":"reflexive%20catch_ec1","p":74,"h":1,"n":"Reflexive Catch"},{"c":0,"s":28,"id":4223,"u":"staff%20acrobat%20dedication_ec1","p":75,"h":1,"n":"Staff Acrobat Dedication"},{"c":0,"s":28,"id":4224,"u":"staff%20sweep_ec1","p":75,"h":1,"n":"Staff Sweep"},{"c":0,"s":28,"id":4225,"u":"whirlwind%20stance_ec1","p":75,"h":1,"n":"Whirlwind Stance"},{"c":0,"s":29,"id":4226,"u":"animal%20trainer%20dedication_ec2","p":75,"h":1,"n":"Animal Trainer Dedication"},{"c":0,"s":29,"id":4227,"u":"beast%20speaker_ec2","p":75,"h":1,"n":"Beast Speaker"},{"c":0,"s":29,"id":4228,"u":"insistent%20command_ec2","p":75,"h":1,"n":"Insistent Command"},{"c":0,"s":29,"id":4229,"u":"mature%20trained%20companion_ec2","p":75,"h":1,"n":"Mature Trained Companion"},{"c":0,"s":29,"id":4230,"u":"specialized%20companion_ec2","p":75,"h":1,"n":"Specialized Companion"},{"c":0,"s":29,"id":4231,"u":"splendid%20companion_ec2","p":75,"h":1,"n":"Splendid Companion"},{"c":0,"s":8,"id":4232,"u":"accursed%20clay%20fist_ec3","p":74,"h":1,"n":"Accursed Clay Fist"},{"c":0,"s":8,"id":4233,"u":"axe%20climber_ec3","p":75,"h":1,"n":"Axe Climber"},{"c":0,"s":8,"id":4234,"u":"axe%20thrower_ec3","p":75,"h":1,"n":"Axe Thrower"},{"c":0,"s":8,"id":4235,"u":"dig%20quickly_ec3","p":72,"h":1,"n":"Dig Quickly"},{"c":0,"s":8,"id":4236,"u":"esteemed%20visitor_ec3","p":72,"h":1,"n":"Esteemed Visitor"},{"c":0,"s":8,"id":4237,"u":"golem%20grafter%20dedication_ec3","p":74,"h":1,"n":"Golem Grafter Dedication"},{"c":0,"s":8,"id":4238,"u":"handy%20with%20your%20paws_ec3","p":72,"h":1,"n":"Handy With Your Paws"},{"c":0,"s":8,"id":4239,"u":"improvisational%20defender_ec3","p":72,"h":1,"n":"Improvisational Defender"},{"c":0,"s":8,"id":4240,"u":"improvisational%20warrior_ec3","p":73,"h":1,"n":"Improvisational Warrior"},{"c":0,"s":8,"id":4241,"u":"iron%20lung_ec3","p":74,"h":1,"n":"Iron Lung"},{"c":0,"s":8,"id":4242,"u":"legs%20of%20stone_ec3","p":74,"h":1,"n":"Legs Of Stone"},{"c":0,"s":8,"id":4243,"u":"log%20roll_ec3","p":75,"h":1,"n":"Log Roll"},{"c":0,"s":8,"id":4244,"u":"loyal%20empath_ec3","p":73,"h":1,"n":"Loyal Empath"},{"c":0,"s":8,"id":4245,"u":"practiced%20paddler_ec3","p":73,"h":1,"n":"Practiced Paddler"},{"c":0,"s":8,"id":4246,"u":"quicken%20heartbeat_ec3","p":74,"h":1,"n":"Quicken Heartbeat"},{"c":0,"s":8,"id":4247,"u":"ravening's%20desperation_ec3","p":67,"h":1,"n":"Ravening's Desperation"},{"c":0,"s":8,"id":4248,"u":"scamper%20underfoot_ec3","p":72,"h":1,"n":"Scamper Underfoot"},{"c":0,"s":8,"id":4249,"u":"shoony%20lore_ec3","p":72,"h":1,"n":"Shoony Lore"},{"c":0,"s":8,"id":4250,"u":"sodbuster_ec3","p":73,"h":1,"n":"Sodbuster"},{"c":0,"s":8,"id":4251,"u":"steadfast%20ally_ec3","p":73,"h":1,"n":"Steadfast Ally"},{"c":0,"s":8,"id":4252,"u":"tough%20tumbler_ec3","p":73,"h":1,"n":"Tough Tumbler"},{"c":0,"s":8,"id":4253,"u":"turpin%20rowe%20lumberjack%20dedication_ec3","p":75,"h":1,"n":"Turpin Rowe Lumberjack Dedication"},{"c":0,"s":8,"id":4254,"u":"unrivaled%20builder_ec3","p":73,"h":1,"n":"Unrivaled Builder"},{"c":0,"s":8,"id":4255,"u":"widen%20the%20gap_ec3","p":75,"h":1,"n":"Widen The Gap"},{"c":0,"s":32,"id":4256,"u":"annihilating%20swing_ec6","p":72,"h":1,"n":"Annihilating Swing"},{"c":0,"s":32,"id":4257,"u":"astonishing%20explosion_ec6","p":72,"h":1,"n":"Astonishing Explosion"},{"c":0,"s":32,"id":4258,"u":"banishing%20blow_ec6","p":72,"h":1,"n":"Banishing Blow"},{"c":0,"s":32,"id":4259,"u":"denier%20of%20destruction_ec6","p":72,"h":1,"n":"Denier Of Destruction"},{"c":0,"s":32,"id":4260,"u":"endurance%20of%20the%20rooted%20tree_ec6","p":72,"h":1,"n":"Endurance Of The Rooted Tree"},{"c":0,"s":32,"id":4261,"u":"mimic%20protections_ec6","p":72,"h":1,"n":"Mimic Protections"},{"c":0,"s":32,"id":4262,"u":"reclaim%20spell_ec6","p":72,"h":1,"n":"Reclaim Spell"},{"c":0,"s":32,"id":4263,"u":"reflecting%20riposte_ec6","p":72,"h":1,"n":"Reflecting Riposte"},{"c":0,"s":32,"id":4264,"u":"ringmaster's%20introduction_ec6","p":73,"h":1,"n":"Ringmaster's Introduction"},{"c":0,"s":32,"id":4265,"u":"steal%20essence_ec6","p":73,"h":1,"n":"Steal Essence"},{"c":0,"s":32,"id":4266,"u":"tenacious%20blood%20magic_ec6","p":73,"h":1,"n":"Tenacious Blood Magic"},{"c":0,"s":32,"id":4267,"u":"verdant%20presence_ec6","p":73,"h":1,"n":"Verdant Presence"},{"c":0,"s":33,"id":4268,"u":"relentless%20stalker_fop","p":57,"h":1,"n":"Relentless Stalker"},{"c":0,"s":33,"id":4269,"u":"wilderness%20spotter_fop","p":57,"h":1,"n":"Wilderness Spotter"},{"c":0,"s":34,"id":4270,"u":"butterfly%20blade%20dedication_frp1","p":78,"h":1,"n":"Butterfly Blade Dedication"},{"c":0,"s":34,"id":4271,"u":"butterfly's%20kiss_frp1","p":78,"h":1,"n":"Butterfly's Kiss"},{"c":0,"s":34,"id":4272,"u":"butterfly's%20sting_frp1","p":78,"h":1,"n":"Butterfly's Sting"},{"c":0,"s":34,"id":4273,"u":"cross%20the%20threshold_frp1","p":79,"h":1,"n":"Cross The Threshold"},{"c":0,"s":34,"id":4274,"u":"deadly%20butterfly_frp1","p":78,"h":1,"n":"Deadly Butterfly"},{"c":0,"s":34,"id":4275,"u":"disrupting%20strikes_frp1","p":79,"h":1,"n":"Disrupting Strikes"},{"c":0,"s":34,"id":4276,"u":"entwined%20energy%20ki_frp1","p":74,"h":1,"n":"Entwined Energy Ki"},{"c":0,"s":34,"id":4277,"u":"ghost%20eater%20dedication_frp1","p":79,"h":1,"n":"Ghost Eater Dedication"},{"c":0,"s":34,"id":4278,"u":"innocent%20butterfly_frp1","p":78,"h":1,"n":"Innocent Butterfly"},{"c":0,"s":34,"id":4279,"u":"mastermind's%20eye_frp1","p":78,"h":1,"n":"Mastermind's Eye"},{"c":0,"s":34,"id":4280,"u":"reach%20beyond_frp1","p":79,"h":1,"n":"Reach Beyond"},{"c":0,"s":34,"id":4281,"u":"syu%20tak-nwa's%20deadly%20hair_frp1","p":74,"h":1,"n":"Syu Tak-nwa's Deadly Hair"},{"c":0,"s":34,"id":4282,"u":"syu%20tak-nwa's%20hexed%20locks_frp1","p":74,"h":1,"n":"Syu Tak-nwa's Hexed Locks"},{"c":0,"s":34,"id":4283,"u":"syu%20tak-nwa's%20skillful%20tresses_frp1","p":74,"h":1,"n":"Syu Tak-nwa's Skillful Tresses"},{"c":0,"s":34,"id":4284,"u":"wronged%20monk's%20wrath_frp1","p":74,"h":1,"n":"Wronged Monk's Wrath"},{"c":0,"s":35,"id":4285,"u":"beneath%20notice_frp2","p":76,"h":1,"n":"Beneath Notice"},{"c":0,"s":35,"id":4286,"u":"effortless%20reach_frp2","p":75,"h":1,"n":"Effortless Reach"},{"c":0,"s":35,"id":4287,"u":"electric%20counter_frp2","p":75,"h":1,"n":"Electric Counter"},{"c":0,"s":35,"id":4288,"u":"golden%20league%20xun%20dedication_frp2","p":76,"h":1,"n":"Golden League Xun Dedication"},{"c":0,"s":35,"id":4289,"u":"jellyfish%20stance_frp2","p":75,"h":1,"n":"Jellyfish Stance"},{"c":0,"s":35,"id":4290,"u":"maneuvering%20spell_frp2","p":77,"h":1,"n":"Maneuvering Spell"},{"c":0,"s":35,"id":4291,"u":"menacing%20prowess_frp2","p":76,"h":1,"n":"Menacing Prowess"},{"c":0,"s":35,"id":4292,"u":"rope%20mastery_frp2","p":76,"h":1,"n":"Rope Mastery"},{"c":0,"s":35,"id":4293,"u":"sense%20ki_frp2","p":75,"h":1,"n":"Sense Ki"},{"c":0,"s":35,"id":4294,"u":"shift%20spell_frp2","p":75,"h":1,"n":"Shift Spell"},{"c":0,"s":35,"id":4295,"u":"silent%20sting_frp2","p":76,"h":1,"n":"Silent Sting"},{"c":0,"s":35,"id":4296,"u":"six%20pillars%20stance_frp2","p":77,"h":1,"n":"Six Pillars Stance"},{"c":0,"s":35,"id":4297,"u":"sixth%20pillar%20dedication_frp2","p":77,"h":1,"n":"Sixth Pillar Dedication"},{"c":0,"s":35,"id":4298,"u":"sixth%20pillar%20mastery_frp2","p":77,"h":1,"n":"Sixth Pillar Mastery"},{"c":0,"s":35,"id":4299,"u":"touch%20focus_frp2","p":77,"h":1,"n":"Touch Focus"},{"c":0,"s":36,"id":4300,"u":"all%20the%20time%20in%20the%20world_frp3","p":75,"h":1,"n":"All The Time In The World"},{"c":0,"s":36,"id":4301,"u":"dance%20of%20intercession_frp3","p":75,"h":1,"n":"Dance Of Intercession"},{"c":0,"s":36,"id":4302,"u":"demon's%20hair_frp3","p":75,"h":1,"n":"Demon's Hair"},{"c":0,"s":36,"id":4303,"u":"everdistant%20defense_frp3","p":75,"h":1,"n":"Everdistant Defense"},{"c":0,"s":36,"id":4304,"u":"extradimensional%20stash_frp3","p":75,"h":1,"n":"Extradimensional Stash"},{"c":0,"s":36,"id":4305,"u":"head%20of%20the%20night%20parade_frp3","p":75,"h":1,"n":"Head Of The Night Parade"},{"c":0,"s":36,"id":4306,"u":"heart%20of%20the%20kaiju_frp3","p":76,"h":1,"n":"Heart Of The Kaiju"},{"c":0,"s":36,"id":4307,"u":"plum%20deluge_frp3","p":76,"h":1,"n":"Plum Deluge"},{"c":0,"s":36,"id":4308,"u":"ruby%20resurrection_frp3","p":76,"h":1,"n":"Ruby Resurrection"},{"c":0,"s":36,"id":4309,"u":"scapegoat%20parallel%20self_frp3","p":76,"h":1,"n":"Scapegoat Parallel Self"},{"c":0,"s":36,"id":4310,"u":"sever%20space_frp3","p":77,"h":1,"n":"Sever Space"},{"c":0,"s":36,"id":4311,"u":"time%20dilation%20cascade_frp3","p":77,"h":1,"n":"Time Dilation Cascade"},{"c":0,"s":36,"id":4312,"u":"vitality-manipulating%20stance_frp3","p":77,"h":1,"n":"Vitality-manipulating Stance"},{"c":0,"s":36,"id":4313,"u":"vivacious%20afterimage_frp3","p":77,"h":1,"n":"Vivacious Afterimage"},{"c":0,"s":36,"id":4314,"u":"whirlwind%20toss_frp3","p":77,"h":1,"n":"Whirlwind Toss"},{"c":0,"s":36,"id":4315,"u":"worldsphere%20gravity_frp3","p":77,"h":1,"n":"Worldsphere Gravity"},{"c":0,"s":2,"id":4316,"u":"adaptive%20vision_g%26g","p":200,"h":1,"n":"Adaptive Vision"},{"c":0,"s":2,"id":4317,"u":"advanced%20breakthrough_g%26g","p":49,"h":1,"n":"Advanced Breakthrough"},{"c":0,"s":2,"id":4318,"u":"advanced%20construct%20companion_g%26g","p":26,"h":1,"n":"Advanced Construct Companion"},{"c":0,"s":2,"id":4319,"u":"advanced%20shooter_g%26g","p":113,"h":1,"n":"Advanced Shooter"},{"c":0,"s":2,"id":4320,"u":"advanced%20shooting_g%26g","p":127,"h":1,"n":"Advanced Shooting"},{"c":0,"s":2,"id":4321,"u":"alchemical%20shot_g%26g","p":112,"h":1,"n":"Alchemical Shot"},{"c":0,"s":2,"id":4322,"u":"arcane%20camouflage_g%26g","p":41,"h":1,"n":"Arcane Camouflage"},{"c":0,"s":2,"id":4323,"u":"arcane%20communication_g%26g","p":40,"h":1,"n":"Arcane Communication"},{"c":0,"s":2,"id":4324,"u":"arcane%20eye_g%26g","p":40,"h":1,"n":"Arcane Eye"},{"c":0,"s":2,"id":4325,"u":"arcane%20locomotion_g%26g","p":42,"h":1,"n":"Arcane Locomotion"},{"c":0,"s":2,"id":4326,"u":"arcane%20propulsion_g%26g","p":41,"h":1,"n":"Arcane Propulsion"},{"c":0,"s":2,"id":4327,"u":"arcane%20safeguards_g%26g","p":41,"h":1,"n":"Arcane Safeguards"},{"c":0,"s":2,"id":4328,"u":"arcane%20slam_g%26g","p":41,"h":1,"n":"Arcane Slam"},{"c":0,"s":2,"id":4329,"u":"artillerist%20dedication_g%26g","p":128,"h":1,"n":"Artillerist Dedication"},{"c":0,"s":2,"id":4330,"u":"astral%20blink_g%26g","p":42,"h":1,"n":"Astral Blink"},{"c":0,"s":2,"id":4331,"u":"automaton%20armament_g%26g","p":39,"h":1,"n":"Automaton Armament"},{"c":0,"s":2,"id":4332,"u":"automaton%20lore_g%26g","p":40,"h":1,"n":"Automaton Lore"},{"c":0,"s":2,"id":4333,"u":"axial%20recall_g%26g","p":43,"h":1,"n":"Axial Recall"},{"c":0,"s":2,"id":4334,"u":"banshee%20cry%20display_g%26g","p":135,"h":1,"n":"Banshee Cry Display"},{"c":0,"s":2,"id":4335,"u":"basic%20beast%20gunner%20spellcasting_g%26g","p":131,"h":1,"n":"Basic Beast Gunner Spellcasting"},{"c":0,"s":2,"id":4336,"u":"basic%20breakthrough_g%26g","p":49,"h":1,"n":"Basic Breakthrough"},{"c":0,"s":2,"id":4337,"u":"basic%20modification_g%26g","p":49,"h":1,"n":"Basic Modification"},{"c":0,"s":2,"id":4338,"u":"basic%20shooting_g%26g","p":127,"h":1,"n":"Basic Shooting"},{"c":0,"s":2,"id":4339,"u":"beast%20dynamo%20howl_g%26g","p":53,"h":1,"n":"Beast Dynamo Howl"},{"c":0,"s":2,"id":4340,"u":"beast%20gunner%20dedication_g%26g","p":130,"h":1,"n":"Beast Gunner Dedication"},{"c":0,"s":2,"id":4341,"u":"black%20powder%20blaze_g%26g","p":132,"h":1,"n":"Black Powder Blaze"},{"c":0,"s":2,"id":4342,"u":"black%20powder%20boost_g%26g","p":112,"h":1,"n":"Black Powder Boost"},{"c":0,"s":2,"id":4343,"u":"black%20powder%20embodiment_g%26g","p":141,"h":1,"n":"Black Powder Embodiment"},{"c":0,"s":2,"id":4344,"u":"blast%20lock_g%26g","p":111,"h":1,"n":"Blast Lock"},{"c":0,"s":2,"id":4345,"u":"blast%20resistance_g%26g","p":200,"h":1,"n":"Blast Resistance"},{"c":0,"s":2,"id":4346,"u":"blast%20tackle_g%26g","p":117,"h":1,"n":"Blast Tackle"},{"c":0,"s":2,"id":4347,"u":"blood%20in%20the%20air_g%26g","p":116,"h":1,"n":"Blood In The Air"},{"c":0,"s":2,"id":4348,"u":"boost%20modulation_g%26g","p":29,"h":1,"n":"Boost Modulation"},{"c":0,"s":2,"id":4349,"u":"brilliant%20crafter_g%26g","p":49,"h":1,"n":"Brilliant Crafter"},{"c":0,"s":2,"id":4350,"u":"built-in%20tools_g%26g","p":24,"h":1,"n":"Built-in Tools"},{"c":0,"s":2,"id":4351,"u":"bullet%20dancer%20burn_g%26g","p":132,"h":1,"n":"Bullet Dancer Burn"},{"c":0,"s":2,"id":4352,"u":"bullet%20dancer%20dedication_g%26g","p":132,"h":1,"n":"Bullet Dancer Dedication"},{"c":0,"s":2,"id":4353,"u":"bullet%20dancer%20reload_g%26g","p":132,"h":1,"n":"Bullet Dancer Reload"},{"c":0,"s":2,"id":4354,"u":"bullet%20split_g%26g","p":114,"h":1,"n":"Bullet Split"},{"c":0,"s":2,"id":4355,"u":"call%20gun_g%26g","p":141,"h":1,"n":"Call Gun"},{"c":0,"s":2,"id":4356,"u":"called%20shot_g%26g","p":115,"h":1,"n":"Called Shot"},{"c":0,"s":2,"id":4357,"u":"cannon%20corner%20shot_g%26g","p":129,"h":1,"n":"Cannon Corner Shot"},{"c":0,"s":2,"id":4358,"u":"cauterize_g%26g","p":113,"h":1,"n":"Cauterize"},{"c":0,"s":2,"id":4359,"u":"chain%20reaction_g%26g","p":143,"h":1,"n":"Chain Reaction"},{"c":0,"s":2,"id":4360,"u":"clan%20pistol_g%26g","p":200,"h":1,"n":"Clan Pistol"},{"c":0,"s":2,"id":4361,"u":"clockwork%20celerity_g%26g","p":27,"h":1,"n":"Clockwork Celerity"},{"c":0,"s":2,"id":4362,"u":"collapse%20armor_g%26g","p":25,"h":1,"n":"Collapse Armor"},{"c":0,"s":2,"id":4363,"u":"collapse%20construct_g%26g","p":25,"h":1,"n":"Collapse Construct"},{"c":0,"s":2,"id":4364,"u":"collapse%20wall_g%26g","p":133,"h":1,"n":"Collapse Wall"},{"c":0,"s":2,"id":4365,"u":"come%20at%20me!_g%26g","p":117,"h":1,"n":"Come At Me!"},{"c":0,"s":2,"id":4366,"u":"concentrated%20assault_g%26g","p":139,"h":1,"n":"Concentrated Assault"},{"c":0,"s":2,"id":4367,"u":"construct%20shell_g%26g","p":27,"h":1,"n":"Construct Shell"},{"c":0,"s":2,"id":4368,"u":"contingency%20gadgets_g%26g","p":29,"h":1,"n":"Contingency Gadgets"},{"c":0,"s":2,"id":4369,"u":"control%20tower_g%26g","p":51,"h":1,"n":"Control Tower"},{"c":0,"s":2,"id":4370,"u":"controlled%20blast_g%26g","p":133,"h":1,"n":"Controlled Blast"},{"c":0,"s":2,"id":4371,"u":"controlled%20bullet_g%26g","p":131,"h":1,"n":"Controlled Bullet"},{"c":0,"s":2,"id":4372,"u":"converge_g%26g","p":51,"h":1,"n":"Converge"},{"c":0,"s":2,"id":4373,"u":"core%20attunement_g%26g","p":42,"h":1,"n":"Core Attunement"},{"c":0,"s":2,"id":4374,"u":"core%20cannon_g%26g","p":43,"h":1,"n":"Core Cannon"},{"c":0,"s":2,"id":4375,"u":"core%20rejuvenation_g%26g","p":43,"h":1,"n":"Core Rejuvenation"},{"c":0,"s":2,"id":4376,"u":"coughing%20dragon%20display_g%26g","p":135,"h":1,"n":"Coughing Dragon Display"},{"c":0,"s":2,"id":4377,"u":"cover%20fire_g%26g","p":111,"h":1,"n":"Cover Fire"},{"c":0,"s":2,"id":4378,"u":"crafter's%20instinct_g%26g","p":201,"h":1,"n":"Crafter's Instinct"},{"c":0,"s":2,"id":4379,"u":"crossbow%20crack%20shot_g%26g","p":111,"h":1,"n":"Crossbow Crack Shot"},{"c":0,"s":2,"id":4380,"u":"dance%20of%20thunder_g%26g","p":117,"h":1,"n":"Dance Of Thunder"},{"c":0,"s":2,"id":4381,"u":"dazzling%20bullet_g%26g","p":137,"h":1,"n":"Dazzling Bullet"},{"c":0,"s":2,"id":4382,"u":"deadeye_g%26g","p":117,"h":1,"n":"Deadeye"},{"c":0,"s":2,"id":4383,"u":"deep%20freeze_g%26g","p":29,"h":1,"n":"Deep Freeze"},{"c":0,"s":2,"id":4384,"u":"defensive%20armaments_g%26g","p":111,"h":1,"n":"Defensive Armaments"},{"c":0,"s":2,"id":4385,"u":"deflecting%20shot_g%26g","p":115,"h":1,"n":"Deflecting Shot"},{"c":0,"s":2,"id":4386,"u":"demolitionist_g%26g","p":201,"h":1,"n":"Demolitionist"},{"c":0,"s":2,"id":4387,"u":"demolitionist%20dedication_g%26g","p":133,"h":1,"n":"Demolitionist Dedication"},{"c":0,"s":2,"id":4388,"u":"devastating%20weaponry_g%26g","p":31,"h":1,"n":"Devastating Weaponry"},{"c":0,"s":2,"id":4389,"u":"disruptive%20blur_g%26g","p":118,"h":1,"n":"Disruptive Blur"},{"c":0,"s":2,"id":4390,"u":"distracting%20explosion_g%26g","p":28,"h":1,"n":"Distracting Explosion"},{"c":0,"s":2,"id":4391,"u":"diving%20armor_g%26g","p":26,"h":1,"n":"Diving Armor"},{"c":0,"s":2,"id":4392,"u":"dongun%20education_g%26g","p":200,"h":1,"n":"Dongun Education"},{"c":0,"s":2,"id":4393,"u":"drain%20vitality_g%26g","p":131,"h":1,"n":"Drain Vitality"},{"c":0,"s":2,"id":4394,"u":"drifter's%20juke_g%26g","p":113,"h":1,"n":"Drifter's Juke"},{"c":0,"s":2,"id":4395,"u":"drive-by%20attack_g%26g","p":55,"h":1,"n":"Drive-by Attack"},{"c":0,"s":2,"id":4396,"u":"dual-form%20weapon_g%26g","p":26,"h":1,"n":"Dual-form Weapon"},{"c":0,"s":2,"id":4397,"u":"dual-weapon%20reload_g%26g","p":111,"h":1,"n":"Dual-weapon Reload"},{"c":0,"s":2,"id":4398,"u":"duo's%20aim_g%26g","p":139,"h":1,"n":"Duo's Aim"},{"c":0,"s":2,"id":4399,"u":"eagle%20eye_g%26g","p":127,"h":1,"n":"Eagle Eye"},{"c":0,"s":2,"id":4400,"u":"eagle%20eyes_g%26g","p":139,"h":1,"n":"Eagle Eyes"},{"c":0,"s":2,"id":4401,"u":"efficient%20controls_g%26g","p":57,"h":1,"n":"Efficient Controls"},{"c":0,"s":2,"id":4402,"u":"electrify%20armor_g%26g","p":29,"h":1,"n":"Electrify Armor"},{"c":0,"s":2,"id":4403,"u":"energy%20beam_g%26g","p":40,"h":1,"n":"Energy Beam"},{"c":0,"s":2,"id":4404,"u":"engine%20bay_g%26g","p":56,"h":1,"n":"Engine Bay"},{"c":0,"s":2,"id":4405,"u":"engine%20of%20destruction_g%26g","p":31,"h":1,"n":"Engine Of Destruction"},{"c":0,"s":2,"id":4406,"u":"enlarged%20chassis_g%26g","p":43,"h":1,"n":"Enlarged Chassis"},{"c":0,"s":2,"id":4407,"u":"expert%20beast%20gunner%20spellcasting_g%26g","p":131,"h":1,"n":"Expert Beast Gunner Spellcasting"},{"c":0,"s":2,"id":4408,"u":"expert%20fireworks%20crafter_g%26g","p":135,"h":1,"n":"Expert Fireworks Crafter"},{"c":0,"s":2,"id":4409,"u":"exploit%20opening_g%26g","p":138,"h":1,"n":"Exploit Opening"},{"c":0,"s":2,"id":4410,"u":"explosion_g%26g","p":49,"h":1,"n":"Explosion"},{"c":0,"s":2,"id":4411,"u":"explosive%20entry_g%26g","p":133,"h":1,"n":"Explosive Entry"},{"c":0,"s":2,"id":4412,"u":"explosive%20expert_g%26g","p":201,"h":1,"n":"Explosive Expert"},{"c":0,"s":2,"id":4413,"u":"explosive%20leap_g%26g","p":24,"h":1,"n":"Explosive Leap"},{"c":0,"s":2,"id":4414,"u":"explosive%20maneuver_g%26g","p":30,"h":1,"n":"Explosive Maneuver"},{"c":0,"s":2,"id":4415,"u":"explosive%20savant_g%26g","p":200,"h":1,"n":"Explosive Savant"},{"c":0,"s":2,"id":4416,"u":"express%20driver_g%26g","p":55,"h":1,"n":"Express Driver"},{"c":0,"s":2,"id":4417,"u":"fake%20out_g%26g","p":112,"h":1,"n":"Fake Out"},{"c":0,"s":2,"id":4418,"u":"fatal%20bullet_g%26g","p":118,"h":1,"n":"Fatal Bullet"},{"c":0,"s":2,"id":4419,"u":"field%20artillery_g%26g","p":129,"h":1,"n":"Field Artillery"},{"c":0,"s":2,"id":4420,"u":"final%20shot_g%26g","p":119,"h":1,"n":"Final Shot"},{"c":0,"s":2,"id":4421,"u":"finessed%20features_g%26g","p":54,"h":1,"n":"Finessed Features"},{"c":0,"s":2,"id":4422,"u":"fire%20savvy_g%26g","p":200,"h":1,"n":"Fire Savvy"},{"c":0,"s":2,"id":4423,"u":"firearm%20expert_g%26g","p":127,"h":1,"n":"Firearm Expert"},{"c":0,"s":2,"id":4424,"u":"firework%20technician%20dedication_g%26g","p":134,"h":1,"n":"Firework Technician Dedication"},{"c":0,"s":2,"id":4425,"u":"flesh%20wound_g%26g","p":117,"h":1,"n":"Flesh Wound"},{"c":0,"s":2,"id":4426,"u":"forewarn_g%26g","p":51,"h":1,"n":"Forewarn"},{"c":0,"s":2,"id":4427,"u":"forge-blessed%20shot_g%26g","p":201,"h":1,"n":"Forge-blessed Shot"},{"c":0,"s":2,"id":4428,"u":"full%20automation_g%26g","p":32,"h":1,"n":"Full Automation"},{"c":0,"s":2,"id":4429,"u":"fulminating%20shot_g%26g","p":141,"h":1,"n":"Fulminating Shot"},{"c":0,"s":2,"id":4430,"u":"gadget%20specialist_g%26g","p":26,"h":1,"n":"Gadget Specialist"},{"c":0,"s":2,"id":4431,"u":"gear%20gnash_g%26g","p":54,"h":1,"n":"Gear Gnash"},{"c":0,"s":2,"id":4432,"u":"gigaton%20strike_g%26g","p":27,"h":1,"n":"Gigaton Strike"},{"c":0,"s":2,"id":4433,"u":"gigavolt_g%26g","p":30,"h":1,"n":"Gigavolt"},{"c":0,"s":2,"id":4434,"u":"goblin%20jubilee%20display_g%26g","p":135,"h":1,"n":"Goblin Jubilee Display"},{"c":0,"s":2,"id":4435,"u":"golem%20dynamo_g%26g","p":53,"h":1,"n":"Golem Dynamo"},{"c":0,"s":2,"id":4436,"u":"greater%20augmentation_g%26g","p":43,"h":1,"n":"Greater Augmentation"},{"c":0,"s":2,"id":4437,"u":"grit%20and%20tenacity_g%26g","p":115,"h":1,"n":"Grit And Tenacity"},{"c":0,"s":2,"id":4438,"u":"gunpowder%20gauntlet_g%26g","p":136,"h":1,"n":"Gunpowder Gauntlet"},{"c":0,"s":2,"id":4439,"u":"gunslinger%20dedication_g%26g","p":127,"h":1,"n":"Gunslinger Dedication"},{"c":0,"s":2,"id":4440,"u":"hair%20trigger_g%26g","p":118,"h":1,"n":"Hair Trigger"},{"c":0,"s":2,"id":4441,"u":"haphazard%20repair_g%26g","p":25,"h":1,"n":"Haphazard Repair"},{"c":0,"s":2,"id":4442,"u":"headshot_g%26g","p":118,"h":1,"n":"Headshot"},{"c":0,"s":2,"id":4443,"u":"helpful%20tinkering_g%26g","p":29,"h":1,"n":"Helpful Tinkering"},{"c":0,"s":2,"id":4444,"u":"hit%20the%20dirt!_g%26g","p":111,"h":1,"n":"Hit The Dirt!"},{"c":0,"s":2,"id":4445,"u":"hot%20foot_g%26g","p":137,"h":1,"n":"Hot Foot"},{"c":0,"s":2,"id":4446,"u":"i%20meant%20to%20do%20that_g%26g","p":143,"h":1,"n":"I Meant To Do That"},{"c":0,"s":2,"id":4447,"u":"impervious%20vehicle_g%26g","p":57,"h":1,"n":"Impervious Vehicle"},{"c":0,"s":2,"id":4448,"u":"incredible%20construct%20companion_g%26g","p":28,"h":1,"n":"Incredible Construct Companion"},{"c":0,"s":2,"id":4449,"u":"instant%20backup_g%26g","p":112,"h":1,"n":"Instant Backup"},{"c":0,"s":2,"id":4450,"u":"instant%20return_g%26g","p":119,"h":1,"n":"Instant Return"},{"c":0,"s":2,"id":4451,"u":"integrated%20armament_g%26g","p":41,"h":1,"n":"Integrated Armament"},{"c":0,"s":2,"id":4452,"u":"inventor%20dedication_g%26g","p":49,"h":1,"n":"Inventor Dedication"},{"c":0,"s":2,"id":4453,"u":"jumping%20jenny%20display_g%26g","p":135,"h":1,"n":"Jumping Jenny Display"},{"c":0,"s":2,"id":4454,"u":"just%20the%20thing!_g%26g","p":31,"h":1,"n":"Just The Thing!"},{"c":0,"s":2,"id":4455,"u":"leap%20and%20fire_g%26g","p":115,"h":1,"n":"Leap And Fire"},{"c":0,"s":2,"id":4456,"u":"lesser%20augmentation_g%26g","p":42,"h":1,"n":"Lesser Augmentation"},{"c":0,"s":2,"id":4457,"u":"live%20ammunition_g%26g","p":129,"h":1,"n":"Live Ammunition"},{"c":0,"s":2,"id":4458,"u":"lock%20on_g%26g","p":29,"h":1,"n":"Lock On"},{"c":0,"s":2,"id":4459,"u":"lucky%20escape_g%26g","p":142,"h":1,"n":"Lucky Escape"},{"c":0,"s":2,"id":4460,"u":"magical%20resistance_g%26g","p":41,"h":1,"n":"Magical Resistance"},{"c":0,"s":2,"id":4461,"u":"manifold%20modifications_g%26g","p":28,"h":1,"n":"Manifold Modifications"},{"c":0,"s":2,"id":4462,"u":"master%20beast%20gunner%20spellcasting_g%26g","p":131,"h":1,"n":"Master Beast Gunner Spellcasting"},{"c":0,"s":2,"id":4463,"u":"master%20siege%20engineer_g%26g","p":129,"h":1,"n":"Master Siege Engineer"},{"c":0,"s":2,"id":4464,"u":"master%20spotter_g%26g","p":51,"h":1,"n":"Master Spotter"},{"c":0,"s":2,"id":4465,"u":"megaton%20strike_g%26g","p":27,"h":1,"n":"Megaton Strike"},{"c":0,"s":2,"id":4466,"u":"megavolt_g%26g","p":27,"h":1,"n":"Megavolt"},{"c":0,"s":2,"id":4467,"u":"miraculous%20flight_g%26g","p":57,"h":1,"n":"Miraculous Flight"},{"c":0,"s":2,"id":4468,"u":"modular%20dynamo_g%26g","p":53,"h":1,"n":"Modular Dynamo"},{"c":0,"s":2,"id":4469,"u":"munitions%20crafter_g%26g","p":111,"h":1,"n":"Munitions Crafter"},{"c":0,"s":2,"id":4470,"u":"munitions%20machinist_g%26g","p":113,"h":1,"n":"Munitions Machinist"},{"c":0,"s":2,"id":4471,"u":"named%20artillery_g%26g","p":128,"h":1,"n":"Named Artillery"},{"c":0,"s":2,"id":4472,"u":"negate%20damage_g%26g","p":31,"h":1,"n":"Negate Damage"},{"c":0,"s":2,"id":4473,"u":"no%20hard%20feelings_g%26g","p":142,"h":1,"n":"No Hard Feelings"},{"c":0,"s":2,"id":4474,"u":"no!%20no!%20i%20created%20you!_g%26g","p":25,"h":1,"n":"No! No! I Created You!"},{"c":0,"s":2,"id":4475,"u":"overdrive%20ally_g%26g","p":28,"h":1,"n":"Overdrive Ally"},{"c":0,"s":2,"id":4476,"u":"overwatch%20dedication_g%26g","p":50,"h":1,"n":"Overwatch Dedication"},{"c":0,"s":2,"id":4477,"u":"paired%20shots_g%26g","p":112,"h":1,"n":"Paired Shots"},{"c":0,"s":2,"id":4478,"u":"paragon%20companion_g%26g","p":30,"h":1,"n":"Paragon Companion"},{"c":0,"s":2,"id":4479,"u":"patch%20job_g%26g","p":56,"h":1,"n":"Patch Job"},{"c":0,"s":2,"id":4480,"u":"penetrating%20fire_g%26g","p":115,"h":1,"n":"Penetrating Fire"},{"c":0,"s":2,"id":4481,"u":"perfect%20readiness_g%26g","p":119,"h":1,"n":"Perfect Readiness"},{"c":0,"s":2,"id":4482,"u":"persistent%20boost_g%26g","p":31,"h":1,"n":"Persistent Boost"},{"c":0,"s":2,"id":4483,"u":"phalanx%20breaker_g%26g","p":113,"h":1,"n":"Phalanx Breaker"},{"c":0,"s":2,"id":4484,"u":"phase%20bullet_g%26g","p":141,"h":1,"n":"Phase Bullet"},{"c":0,"s":2,"id":4485,"u":"phenom's%20verve_g%26g","p":137,"h":1,"n":"Phenom's Verve"},{"c":0,"s":2,"id":4486,"u":"piercing%20critical_g%26g","p":119,"h":1,"n":"Piercing Critical"},{"c":0,"s":2,"id":4487,"u":"pistol%20phenom%20dedication_g%26g","p":136,"h":1,"n":"Pistol Phenom Dedication"},{"c":0,"s":2,"id":4488,"u":"pistol%20twirl_g%26g","p":112,"h":1,"n":"Pistol Twirl"},{"c":0,"s":2,"id":4489,"u":"pistolero's%20challenge_g%26g","p":114,"h":1,"n":"Pistolero's Challenge"},{"c":0,"s":2,"id":4490,"u":"piston%20punch_g%26g","p":53,"h":1,"n":"Piston Punch"},{"c":0,"s":2,"id":4491,"u":"power%20slide_g%26g","p":55,"h":1,"n":"Power Slide"},{"c":0,"s":2,"id":4492,"u":"practiced%20reloads_g%26g","p":127,"h":1,"n":"Practiced Reloads"},{"c":0,"s":2,"id":4493,"u":"precious%20munitions_g%26g","p":115,"h":1,"n":"Precious Munitions"},{"c":0,"s":2,"id":4494,"u":"propeller%20attachment_g%26g","p":54,"h":1,"n":"Propeller Attachment"},{"c":0,"s":2,"id":4495,"u":"prototype%20companion_g%26g","p":25,"h":1,"n":"Prototype Companion"},{"c":0,"s":2,"id":4496,"u":"push%20it_g%26g","p":55,"h":1,"n":"Push It"},{"c":0,"s":2,"id":4497,"u":"quick%20draw_g%26g","p":112,"h":1,"n":"Quick Draw"},{"c":0,"s":2,"id":4498,"u":"rain%20of%20bolts_g%26g","p":42,"h":1,"n":"Rain Of Bolts"},{"c":0,"s":2,"id":4499,"u":"ranged%20disarm_g%26g","p":132,"h":1,"n":"Ranged Disarm"},{"c":0,"s":2,"id":4500,"u":"reach%20for%20the%20sky_g%26g","p":137,"h":1,"n":"Reach For The Sky"},{"c":0,"s":2,"id":4501,"u":"reach%20for%20the%20stars_g%26g","p":119,"h":1,"n":"Reach For The Stars"},{"c":0,"s":2,"id":4502,"u":"rebounding%20assault_g%26g","p":115,"h":1,"n":"Rebounding Assault"},{"c":0,"s":2,"id":4503,"u":"recycled%20cogwheels_g%26g","p":54,"h":1,"n":"Recycled Cogwheels"},{"c":0,"s":2,"id":4504,"u":"redirecting%20shot_g%26g","p":116,"h":1,"n":"Redirecting Shot"},{"c":0,"s":2,"id":4505,"u":"reinforced%20chassis_g%26g","p":40,"h":1,"n":"Reinforced Chassis"},{"c":0,"s":2,"id":4506,"u":"repurposed%20parts_g%26g","p":54,"h":1,"n":"Repurposed Parts"},{"c":0,"s":2,"id":4507,"u":"reverse%20engineer_g%26g","p":25,"h":1,"n":"Reverse Engineer"},{"c":0,"s":2,"id":4508,"u":"ricochet%20legend_g%26g","p":119,"h":1,"n":"Ricochet Legend"},{"c":0,"s":2,"id":4509,"u":"ricochet%20master_g%26g","p":119,"h":1,"n":"Ricochet Master"},{"c":0,"s":2,"id":4510,"u":"ricochet%20shot_g%26g","p":117,"h":1,"n":"Ricochet Shot"},{"c":0,"s":2,"id":4511,"u":"risky%20reload_g%26g","p":112,"h":1,"n":"Risky Reload"},{"c":0,"s":2,"id":4512,"u":"roadkill_g%26g","p":55,"h":1,"n":"Roadkill"},{"c":0,"s":2,"id":4513,"u":"running%20reload_g%26g","p":112,"h":1,"n":"Running Reload"},{"c":0,"s":2,"id":4514,"u":"safety%20measures_g%26g","p":133,"h":1,"n":"Safety Measures"},{"c":0,"s":2,"id":4515,"u":"scatter%20blast_g%26g","p":114,"h":1,"n":"Scatter Blast"},{"c":0,"s":2,"id":4516,"u":"scrutinizing%20gaze_g%26g","p":201,"h":1,"n":"Scrutinizing Gaze"},{"c":0,"s":2,"id":4517,"u":"searing%20restoration_g%26g","p":26,"h":1,"n":"Searing Restoration"},{"c":0,"s":2,"id":4518,"u":"shared%20overdrive_g%26g","p":30,"h":1,"n":"Shared Overdrive"},{"c":0,"s":2,"id":4519,"u":"shattering%20shot_g%26g","p":117,"h":1,"n":"Shattering Shot"},{"c":0,"s":2,"id":4520,"u":"shooter's%20camouflage_g%26g","p":117,"h":1,"n":"Shooter's Camouflage"},{"c":0,"s":2,"id":4521,"u":"shorthanded_g%26g","p":129,"h":1,"n":"Shorthanded"},{"c":0,"s":2,"id":4522,"u":"showstopper_g%26g","p":118,"h":1,"n":"Showstopper"},{"c":0,"s":2,"id":4523,"u":"slinger's%20readiness_g%26g","p":127,"h":1,"n":"Slinger's Readiness"},{"c":0,"s":2,"id":4524,"u":"slinger's%20reflexes_g%26g","p":119,"h":1,"n":"Slinger's Reflexes"},{"c":0,"s":2,"id":4525,"u":"smoke%20curtain_g%26g","p":115,"h":1,"n":"Smoke Curtain"},{"c":0,"s":2,"id":4526,"u":"smoke%20sight_g%26g","p":201,"h":1,"n":"Smoke Sight"},{"c":0,"s":2,"id":4527,"u":"sniper's%20aim_g%26g","p":114,"h":1,"n":"Sniper's Aim"},{"c":0,"s":2,"id":4528,"u":"sniping%20duo%20dedication_g%26g","p":138,"h":1,"n":"Sniping Duo Dedication"},{"c":0,"s":2,"id":4529,"u":"soaring%20armor_g%26g","p":30,"h":1,"n":"Soaring Armor"},{"c":0,"s":2,"id":4530,"u":"soaring%20dynamo_g%26g","p":53,"h":1,"n":"Soaring Dynamo"},{"c":0,"s":2,"id":4531,"u":"spark%20fist_g%26g","p":200,"h":1,"n":"Spark Fist"},{"c":0,"s":2,"id":4532,"u":"spellshot%20dedication_g%26g","p":140,"h":1,"n":"Spellshot Dedication"},{"c":0,"s":2,"id":4533,"u":"spyglass%20modification_g%26g","p":50,"h":1,"n":"Spyglass Modification"},{"c":0,"s":2,"id":4534,"u":"stab%20and%20blast_g%26g","p":115,"h":1,"n":"Stab And Blast"},{"c":0,"s":2,"id":4535,"u":"stasian%20smash_g%26g","p":53,"h":1,"n":"Stasian Smash"},{"c":0,"s":2,"id":4536,"u":"sterling%20dynamo%20dedication_g%26g","p":52,"h":1,"n":"Sterling Dynamo Dedication"},{"c":0,"s":2,"id":4537,"u":"superior%20propulsion_g%26g","p":57,"h":1,"n":"Superior Propulsion"},{"c":0,"s":2,"id":4538,"u":"swift%20intervention_g%26g","p":50,"h":1,"n":"Swift Intervention"},{"c":0,"s":2,"id":4539,"u":"sword%20and%20pistol_g%26g","p":111,"h":1,"n":"Sword And Pistol"},{"c":0,"s":2,"id":4540,"u":"tag%20team_g%26g","p":139,"h":1,"n":"Tag Team"},{"c":0,"s":2,"id":4541,"u":"take%20the%20wheel_g%26g","p":55,"h":1,"n":"Take The Wheel"},{"c":0,"s":2,"id":4542,"u":"tamper_g%26g","p":25,"h":1,"n":"Tamper"},{"c":0,"s":2,"id":4543,"u":"targeted%20redirection_g%26g","p":138,"h":1,"n":"Targeted Redirection"},{"c":0,"s":2,"id":4544,"u":"that%20was%20a%20close%20one%2c%20huh%3f_g%26g","p":142,"h":1,"n":"That Was A Close One, Huh?"},{"c":0,"s":2,"id":4545,"u":"topple%20giants_g%26g","p":51,"h":1,"n":"Topple Giants"},{"c":0,"s":2,"id":4546,"u":"trapsmith%20dedication_g%26g","p":54,"h":1,"n":"Trapsmith Dedication"},{"c":0,"s":2,"id":4547,"u":"triangulate_g%26g","p":138,"h":1,"n":"Triangulate"},{"c":0,"s":2,"id":4548,"u":"trick%20driver%20dedication_g%26g","p":55,"h":1,"n":"Trick Driver Dedication"},{"c":0,"s":2,"id":4549,"u":"trick%20shot_g%26g","p":116,"h":1,"n":"Trick Shot"},{"c":0,"s":2,"id":4550,"u":"twin%20shot%20knockdown_g%26g","p":116,"h":1,"n":"Twin Shot Knockdown"},{"c":0,"s":2,"id":4551,"u":"two-weapon%20fusillade_g%26g","p":118,"h":1,"n":"Two-weapon Fusillade"},{"c":0,"s":2,"id":4552,"u":"ubiquitous%20gadgets_g%26g","p":28,"h":1,"n":"Ubiquitous Gadgets"},{"c":0,"s":2,"id":4553,"u":"ubiquitous%20overdrive_g%26g","p":32,"h":1,"n":"Ubiquitous Overdrive"},{"c":0,"s":2,"id":4554,"u":"unbelievable%20escape_g%26g","p":143,"h":1,"n":"Unbelievable Escape"},{"c":0,"s":2,"id":4555,"u":"unbelievable%20luck_g%26g","p":143,"h":1,"n":"Unbelievable Luck"},{"c":0,"s":2,"id":4556,"u":"unerring%20shot_g%26g","p":119,"h":1,"n":"Unerring Shot"},{"c":0,"s":2,"id":4557,"u":"unexpected%20sharpshooter%20dedication_g%26g","p":142,"h":1,"n":"Unexpected Sharpshooter Dedication"},{"c":0,"s":2,"id":4558,"u":"unshakable%20grit_g%26g","p":117,"h":1,"n":"Unshakable Grit"},{"c":0,"s":2,"id":4559,"u":"unstable%20redundancies_g%26g","p":31,"h":1,"n":"Unstable Redundancies"},{"c":0,"s":2,"id":4560,"u":"vantage%20shot_g%26g","p":139,"h":1,"n":"Vantage Shot"},{"c":0,"s":2,"id":4561,"u":"variable%20core_g%26g","p":25,"h":1,"n":"Variable Core"},{"c":0,"s":2,"id":4562,"u":"vehicle%20mechanic%20dedication_g%26g","p":56,"h":1,"n":"Vehicle Mechanic Dedication"},{"c":0,"s":2,"id":4563,"u":"visual%20fidelity_g%26g","p":27,"h":1,"n":"Visual Fidelity"},{"c":0,"s":2,"id":4564,"u":"warning%20shot_g%26g","p":112,"h":1,"n":"Warning Shot"},{"c":0,"s":2,"id":4565,"u":"whirling%20knockdown_g%26g","p":137,"h":1,"n":"Whirling Knockdown"},{"c":0,"s":2,"id":4566,"u":"wide%20overwatch_g%26g","p":51,"h":1,"n":"Wide Overwatch"},{"c":0,"s":2,"id":4567,"u":"you%20failed%20to%20account%20for...%20this!_g%26g","p":31,"h":1,"n":"You Failed To Account For... This!"},{"c":0,"s":1,"id":4568,"u":"aberration%20kinship_loag","p":93,"h":1,"n":"Aberration Kinship"},{"c":0,"s":1,"id":4569,"u":"adhyabhau_loag","p":26,"h":1,"n":"Adhyabhau"},{"c":0,"s":1,"id":4570,"u":"advanced%20targeting%20system_loag","p":73,"h":1,"n":"Advanced Targeting System"},{"c":0,"s":1,"id":4571,"u":"agathion%20magic_loag","p":11,"h":1,"n":"Agathion Magic"},{"c":0,"s":1,"id":4572,"u":"ageless%20spirit_loag","p":43,"h":1,"n":"Ageless Spirit"},{"c":0,"s":1,"id":4573,"u":"airy%20step_loag","p":116,"h":1,"n":"Airy Step"},{"c":0,"s":1,"id":4574,"u":"alter%20resistance_loag","p":98,"h":1,"n":"Alter Resistance"},{"c":0,"s":1,"id":4575,"u":"amorphous%20aspect_loag","p":97,"h":1,"n":"Amorphous Aspect"},{"c":0,"s":1,"id":4576,"u":"analyze%20information_loag","p":78,"h":1,"n":"Analyze Information"},{"c":0,"s":1,"id":4577,"u":"anarchic%20arcana_loag","p":98,"h":1,"n":"Anarchic Arcana"},{"c":0,"s":1,"id":4578,"u":"ancestor's%20transformation_loag","p":138,"h":1,"n":"Ancestor's Transformation"},{"c":0,"s":1,"id":4579,"u":"ancestral%20insight_loag","p":14,"h":1,"n":"Ancestral Insight"},{"c":0,"s":1,"id":4580,"u":"anchoring%20roots_loag","p":43,"h":1,"n":"Anchoring Roots"},{"c":0,"s":1,"id":4581,"u":"ancillary%20motes_loag","p":78,"h":1,"n":"Ancillary Motes"},{"c":0,"s":1,"id":4582,"u":"android%20lore_loag","p":72,"h":1,"n":"Android Lore"},{"c":0,"s":1,"id":4583,"u":"animal%20magic_loag","p":81,"h":1,"n":"Animal Magic"},{"c":0,"s":1,"id":4584,"u":"animal%20senses_loag","p":81,"h":1,"n":"Animal Senses"},{"c":0,"s":1,"id":4585,"u":"animal%20shape_loag","p":82,"h":1,"n":"Animal Shape"},{"c":0,"s":1,"id":4586,"u":"animal%20speaker_loag","p":131,"h":1,"n":"Animal Speaker"},{"c":0,"s":1,"id":4587,"u":"animal%20swiftness_loag","p":82,"h":1,"n":"Animal Swiftness"},{"c":0,"s":1,"id":4588,"u":"animalistic%20resistance_loag","p":81,"h":1,"n":"Animalistic Resistance"},{"c":0,"s":1,"id":4589,"u":"aquatic%20adaptation_loag","p":16,"h":1,"n":"Aquatic Adaptation"},{"c":0,"s":1,"id":4590,"u":"aquatic%20camouflage_loag","p":16,"h":1,"n":"Aquatic Camouflage"},{"c":0,"s":1,"id":4591,"u":"aquatic%20conversationalist_loag","p":15,"h":1,"n":"Aquatic Conversationalist"},{"c":0,"s":1,"id":4592,"u":"aquatic%20eyes_loag","p":119,"h":1,"n":"Aquatic Eyes"},{"c":0,"s":1,"id":4593,"u":"arise%2c%20ye%20worthy!_loag","p":98,"h":1,"n":"Arise, Ye Worthy!"},{"c":0,"s":1,"id":4594,"u":"augment%20senses_loag","p":94,"h":1,"n":"Augment Senses"},{"c":0,"s":1,"id":4595,"u":"axiomatic%20lore_loag","p":77,"h":1,"n":"Axiomatic Lore"},{"c":0,"s":1,"id":4596,"u":"azarketi%20purification_loag","p":15,"h":1,"n":"Azarketi Purification"},{"c":0,"s":1,"id":4597,"u":"beastbrood_loag","p":62,"h":1,"n":"Beastbrood"},{"c":0,"s":1,"id":4598,"u":"blazing%20aura_loag","p":104,"h":1,"n":"Blazing Aura"},{"c":0,"s":1,"id":4599,"u":"bone%20caller_loag","p":48,"h":1,"n":"Bone Caller"},{"c":0,"s":1,"id":4600,"u":"bone%20investiture_loag","p":48,"h":1,"n":"Bone Investiture"},{"c":0,"s":1,"id":4601,"u":"bone%20magic_loag","p":46,"h":1,"n":"Bone Magic"},{"c":0,"s":1,"id":4602,"u":"briar%20battler_loag","p":39,"h":1,"n":"Briar Battler"},{"c":0,"s":1,"id":4603,"u":"brightsoul_loag","p":103,"h":1,"n":"Brightsoul"},{"c":0,"s":1,"id":4604,"u":"brinesoul_loag","p":119,"h":1,"n":"Brinesoul"},{"c":0,"s":1,"id":4605,"u":"calaca's%20showstopper_loag","p":32,"h":1,"n":"Calaca's Showstopper"},{"c":0,"s":1,"id":4606,"u":"call%20of%20elysium_loag","p":11,"h":1,"n":"Call Of Elysium"},{"c":0,"s":1,"id":4607,"u":"call%20of%20the%20green%20man_loag","p":44,"h":1,"n":"Call Of The Green Man"},{"c":0,"s":1,"id":4608,"u":"can't%20fall%20here_loag","p":36,"h":1,"n":"Can't Fall Here"},{"c":0,"s":1,"id":4609,"u":"cantorian%20reinforcement_loag","p":35,"h":1,"n":"Cantorian Reinforcement"},{"c":0,"s":1,"id":4610,"u":"cantorian%20rejuvenation_loag","p":35,"h":1,"n":"Cantorian Rejuvenation"},{"c":0,"s":1,"id":4611,"u":"cantorian%20restoration_loag","p":36,"h":1,"n":"Cantorian Restoration"},{"c":0,"s":1,"id":4612,"u":"captivating%20curiosity_loag","p":94,"h":1,"n":"Captivating Curiosity"},{"c":0,"s":1,"id":4613,"u":"cat%20nap_loag","p":19,"h":1,"n":"Cat Nap"},{"c":0,"s":1,"id":4614,"u":"catchy%20tune_loag","p":131,"h":1,"n":"Catchy Tune"},{"c":0,"s":1,"id":4615,"u":"catfolk%20dance_loag","p":19,"h":1,"n":"Catfolk Dance"},{"c":0,"s":1,"id":4616,"u":"catrina's%20presence_loag","p":31,"h":1,"n":"Catrina's Presence"},{"c":0,"s":1,"id":4617,"u":"cel%20rau_loag","p":27,"h":1,"n":"Cel Rau"},{"c":0,"s":1,"id":4618,"u":"chance%20death_loag","p":30,"h":1,"n":"Chance Death"},{"c":0,"s":1,"id":4619,"u":"channel%20the%20godmind_loag","p":78,"h":1,"n":"Channel The Godmind"},{"c":0,"s":1,"id":4620,"u":"charred%20remains_loag","p":104,"h":1,"n":"Charred Remains"},{"c":0,"s":1,"id":4621,"u":"cindersoul_loag","p":103,"h":1,"n":"Cindersoul"},{"c":0,"s":1,"id":4622,"u":"cleansing%20subroutine_loag","p":72,"h":1,"n":"Cleansing Subroutine"},{"c":0,"s":1,"id":4623,"u":"clever%20shadow_loag","p":87,"h":1,"n":"Clever Shadow"},{"c":0,"s":1,"id":4624,"u":"cloak%20of%20poison_loag","p":44,"h":1,"n":"Cloak Of Poison"},{"c":0,"s":1,"id":4625,"u":"close%20quarters_loag","p":39,"h":1,"n":"Close Quarters"},{"c":0,"s":1,"id":4626,"u":"cloud%20gazer_loag","p":115,"h":1,"n":"Cloud Gazer"},{"c":0,"s":1,"id":4627,"u":"coating%20of%20slime_loag","p":94,"h":1,"n":"Coating Of Slime"},{"c":0,"s":1,"id":4628,"u":"consistent%20surge_loag","p":74,"h":1,"n":"Consistent Surge"},{"c":0,"s":1,"id":4629,"u":"consult%20the%20stars_loag","p":47,"h":1,"n":"Consult The Stars"},{"c":0,"s":1,"id":4630,"u":"continuous%20assault_loag","p":112,"h":1,"n":"Continuous Assault"},{"c":0,"s":1,"id":4631,"u":"corgi%20mount_loag","p":130,"h":1,"n":"Corgi Mount"},{"c":0,"s":1,"id":4632,"u":"cornered%20fury_loag","p":55,"h":1,"n":"Cornered Fury"},{"c":0,"s":1,"id":4633,"u":"creative%20prodigy_loag","p":97,"h":1,"n":"Creative Prodigy"},{"c":0,"s":1,"id":4634,"u":"critter%20shape_loag","p":81,"h":1,"n":"Critter Shape"},{"c":0,"s":1,"id":4635,"u":"crone's%20cruelty_loag","p":24,"h":1,"n":"Crone's Cruelty"},{"c":0,"s":1,"id":4636,"u":"crystalline%20cloud_loag","p":78,"h":1,"n":"Crystalline Cloud"},{"c":0,"s":1,"id":4637,"u":"crystalline%20dust_loag","p":77,"h":1,"n":"Crystalline Dust"},{"c":0,"s":1,"id":4638,"u":"cunning%20hair_loag","p":23,"h":1,"n":"Cunning Hair"},{"c":0,"s":1,"id":4639,"u":"dangle_loag","p":48,"h":1,"n":"Dangle"},{"c":0,"s":1,"id":4640,"u":"daywalker_loag","p":28,"h":1,"n":"Daywalker"},{"c":0,"s":1,"id":4641,"u":"deep%20vision_loag","p":93,"h":1,"n":"Deep Vision"},{"c":0,"s":1,"id":4642,"u":"defy%20death_loag","p":51,"h":1,"n":"Defy Death"},{"c":0,"s":1,"id":4643,"u":"deliberate%20death_loag","p":30,"h":1,"n":"Deliberate Death"},{"c":0,"s":1,"id":4644,"u":"devil%20in%20plain%20sight_loag","p":63,"h":1,"n":"Devil In Plain Sight"},{"c":0,"s":1,"id":4645,"u":"devilish%20wiles_loag","p":63,"h":1,"n":"Devilish Wiles"},{"c":0,"s":1,"id":4646,"u":"dire%20form_loag","p":82,"h":1,"n":"Dire Form"},{"c":0,"s":1,"id":4647,"u":"djinni%20magic_loag","p":116,"h":1,"n":"Djinni Magic"},{"c":0,"s":1,"id":4648,"u":"dogfang%20bite_loag","p":59,"h":1,"n":"Dogfang Bite"},{"c":0,"s":1,"id":4649,"u":"draconic%20sycophant_loag","p":38,"h":1,"n":"Draconic Sycophant"},{"c":0,"s":1,"id":4650,"u":"dragon%20grip_loag","p":52,"h":1,"n":"Dragon Grip"},{"c":0,"s":1,"id":4651,"u":"dragonblood%20paragon_loag","p":40,"h":1,"n":"Dragonblood Paragon"},{"c":0,"s":1,"id":4652,"u":"dualborn_loag","p":111,"h":1,"n":"Dualborn"},{"c":0,"s":1,"id":4653,"u":"dustsoul_loag","p":107,"h":1,"n":"Dustsoul"},{"c":0,"s":1,"id":4654,"u":"earthsense_loag","p":108,"h":1,"n":"Earthsense"},{"c":0,"s":1,"id":4655,"u":"eclectic%20sword%20mastery_loag","p":60,"h":1,"n":"Eclectic Sword Mastery"},{"c":0,"s":1,"id":4656,"u":"eerie%20compression_loag","p":94,"h":1,"n":"Eerie Compression"},{"c":0,"s":1,"id":4657,"u":"efreeti%20magic_loag","p":104,"h":1,"n":"Efreeti Magic"},{"c":0,"s":1,"id":4658,"u":"elemental%20assault_loag","p":111,"h":1,"n":"Elemental Assault"},{"c":0,"s":1,"id":4659,"u":"elemental%20bulwark_loag","p":112,"h":1,"n":"Elemental Bulwark"},{"c":0,"s":1,"id":4660,"u":"elemental%20embellish_loag","p":111,"h":1,"n":"Elemental Embellish"},{"c":0,"s":1,"id":4661,"u":"elemental%20eyes_loag","p":100,"h":1,"n":"Elemental Eyes"},{"c":0,"s":1,"id":4662,"u":"elemental%20lore_loag","p":100,"h":1,"n":"Elemental Lore"},{"c":0,"s":1,"id":4663,"u":"elemental%20trade_loag","p":107,"h":1,"n":"Elemental Trade"},{"c":0,"s":1,"id":4664,"u":"elude%20trouble_loag","p":20,"h":1,"n":"Elude Trouble"},{"c":0,"s":1,"id":4665,"u":"ember's%20eyes_loag","p":103,"h":1,"n":"Ember's Eyes"},{"c":0,"s":1,"id":4666,"u":"emberkin_loag","p":10,"h":1,"n":"Emberkin"},{"c":0,"s":1,"id":4667,"u":"emotionless_loag","p":73,"h":1,"n":"Emotionless"},{"c":0,"s":1,"id":4668,"u":"energize%20wings_loag","p":132,"h":1,"n":"Energize Wings"},{"c":0,"s":1,"id":4669,"u":"enforced%20order_loag","p":12,"h":1,"n":"Enforced Order"},{"c":0,"s":1,"id":4670,"u":"eternal%20wings_loag","p":116,"h":1,"n":"Eternal Wings"},{"c":0,"s":1,"id":4671,"u":"evade%20doom_loag","p":20,"h":1,"n":"Evade Doom"},{"c":0,"s":1,"id":4672,"u":"evanescent%20wings_loag","p":131,"h":1,"n":"Evanescent Wings"},{"c":0,"s":1,"id":4673,"u":"extinguish%20light_loag","p":87,"h":1,"n":"Extinguish Light"},{"c":0,"s":1,"id":4674,"u":"favor%20of%20heaven_loag","p":60,"h":1,"n":"Favor Of Heaven"},{"c":0,"s":1,"id":4675,"u":"favorable%20winds_loag","p":24,"h":1,"n":"Favorable Winds"},{"c":0,"s":1,"id":4676,"u":"feathered%20cloak_loag","p":137,"h":1,"n":"Feathered Cloak"},{"c":0,"s":1,"id":4677,"u":"feed%20on%20pain_loag","p":27,"h":1,"n":"Feed On Pain"},{"c":0,"s":1,"id":4678,"u":"fell%20rider_loag","p":36,"h":1,"n":"Fell Rider"},{"c":0,"s":1,"id":4679,"u":"ferocious%20gust_loag","p":138,"h":1,"n":"Ferocious Gust"},{"c":0,"s":1,"id":4680,"u":"fetchling%20lore_loag","p":86,"h":1,"n":"Fetchling Lore"},{"c":0,"s":1,"id":4681,"u":"fey%20cantrips_loag","p":131,"h":1,"n":"Fey Cantrips"},{"c":0,"s":1,"id":4682,"u":"fey%20disguise_loag","p":132,"h":1,"n":"Fey Disguise"},{"c":0,"s":1,"id":4683,"u":"fey%20magic_loag","p":132,"h":1,"n":"Fey Magic"},{"c":0,"s":1,"id":4684,"u":"fey%20skin_loag","p":132,"h":1,"n":"Fey Skin"},{"c":0,"s":1,"id":4685,"u":"final%20form_loag","p":66,"h":1,"n":"Final Form"},{"c":0,"s":1,"id":4686,"u":"finest%20trick_loag","p":66,"h":1,"n":"Finest Trick"},{"c":0,"s":1,"id":4687,"u":"finned%20ridges_loag","p":93,"h":1,"n":"Finned Ridges"},{"c":0,"s":1,"id":4688,"u":"firesight_loag","p":103,"h":1,"n":"Firesight"},{"c":0,"s":1,"id":4689,"u":"flame%20jump_loag","p":12,"h":1,"n":"Flame Jump"},{"c":0,"s":1,"id":4690,"u":"fledgling%20flight_loag","p":137,"h":1,"n":"Fledgling Flight"},{"c":0,"s":1,"id":4691,"u":"flexible%20tail_loag","p":47,"h":1,"n":"Flexible Tail"},{"c":0,"s":1,"id":4692,"u":"flourish%20and%20ruin_loag","p":44,"h":1,"n":"Flourish And Ruin"},{"c":0,"s":1,"id":4693,"u":"fluid%20contortionist_loag","p":120,"h":1,"n":"Fluid Contortionist"},{"c":0,"s":1,"id":4694,"u":"focused%20cat%20nap_loag","p":19,"h":1,"n":"Focused Cat Nap"},{"c":0,"s":1,"id":4695,"u":"fortify%20shield_loag","p":107,"h":1,"n":"Fortify Shield"},{"c":0,"s":1,"id":4696,"u":"fox%20trick_loag","p":126,"h":1,"n":"Fox Trick"},{"c":0,"s":1,"id":4697,"u":"foxfire_loag","p":125,"h":1,"n":"Foxfire"},{"c":0,"s":1,"id":4698,"u":"fully%20flighted_loag","p":138,"h":1,"n":"Fully Flighted"},{"c":0,"s":1,"id":4699,"u":"fumesoul_loag","p":115,"h":1,"n":"Fumesoul"},{"c":0,"s":1,"id":4700,"u":"ganzi%20gaze_loag","p":97,"h":1,"n":"Ganzi Gaze"},{"c":0,"s":1,"id":4701,"u":"gaping%20flesh_loag","p":93,"h":1,"n":"Gaping Flesh"},{"c":0,"s":1,"id":4702,"u":"garuda%20magic_loag","p":11,"h":1,"n":"Garuda Magic"},{"c":0,"s":1,"id":4703,"u":"garuda's%20squall_loag","p":11,"h":1,"n":"Garuda's Squall"},{"c":0,"s":1,"id":4704,"u":"gemsoul_loag","p":107,"h":1,"n":"Gemsoul"},{"c":0,"s":1,"id":4705,"u":"genie%20weapon%20expertise_loag","p":100,"h":1,"n":"Genie Weapon Expertise"},{"c":0,"s":1,"id":4706,"u":"genie%20weapon%20familiarity_loag","p":100,"h":1,"n":"Genie Weapon Familiarity"},{"c":0,"s":1,"id":4707,"u":"genie%20weapon%20flourish_loag","p":100,"h":1,"n":"Genie Weapon Flourish"},{"c":0,"s":1,"id":4708,"u":"gift%20of%20the%20moon_loag","p":82,"h":1,"n":"Gift Of The Moon"},{"c":0,"s":1,"id":4709,"u":"glory%20and%20valor!_loag","p":98,"h":1,"n":"Glory And Valor!"},{"c":0,"s":1,"id":4710,"u":"gnaw_loag","p":55,"h":1,"n":"Gnaw"},{"c":0,"s":1,"id":4711,"u":"graceful%20guidance_loag","p":19,"h":1,"n":"Graceful Guidance"},{"c":0,"s":1,"id":4712,"u":"greater%20animal%20senses_loag","p":81,"h":1,"n":"Greater Animal Senses"},{"c":0,"s":1,"id":4713,"u":"gripping%20limbs_loag","p":94,"h":1,"n":"Gripping Limbs"},{"c":0,"s":1,"id":4714,"u":"guided%20by%20the%20stars_loag","p":47,"h":1,"n":"Guided By The Stars"},{"c":0,"s":1,"id":4715,"u":"harbinger's%20caw_loag","p":60,"h":1,"n":"Harbinger's Caw"},{"c":0,"s":1,"id":4716,"u":"hard%20to%20fool_loag","p":87,"h":1,"n":"Hard To Fool"},{"c":0,"s":1,"id":4717,"u":"hatchling%20flight_loag","p":40,"h":1,"n":"Hatchling Flight"},{"c":0,"s":1,"id":4718,"u":"healer's%20halo_loag","p":11,"h":1,"n":"Healer's Halo"},{"c":0,"s":1,"id":4719,"u":"heat%20wave_loag","p":104,"h":1,"n":"Heat Wave"},{"c":0,"s":1,"id":4720,"u":"hefting%20shadow_loag","p":88,"h":1,"n":"Hefting Shadow"},{"c":0,"s":1,"id":4721,"u":"hero's%20wings_loag","p":132,"h":1,"n":"Hero's Wings"},{"c":0,"s":1,"id":4722,"u":"hopping%20stride_loag","p":27,"h":1,"n":"Hopping Stride"},{"c":0,"s":1,"id":4723,"u":"hurricane%20swing_loag","p":60,"h":1,"n":"Hurricane Swing"},{"c":0,"s":1,"id":4724,"u":"hybrid%20form_loag","p":125,"h":1,"n":"Hybrid Form"},{"c":0,"s":1,"id":4725,"u":"hydraulic%20deflection_loag","p":15,"h":1,"n":"Hydraulic Deflection"},{"c":0,"s":1,"id":4726,"u":"hydraulic%20maneuvers_loag","p":16,"h":1,"n":"Hydraulic Maneuvers"},{"c":0,"s":1,"id":4727,"u":"idyllkin_loag","p":10,"h":1,"n":"Idyllkin"},{"c":0,"s":1,"id":4728,"u":"impose%20order_loag","p":78,"h":1,"n":"Impose Order"},{"c":0,"s":1,"id":4729,"u":"improved%20elemental%20bulwark_loag","p":112,"h":1,"n":"Improved Elemental Bulwark"},{"c":0,"s":1,"id":4730,"u":"inner%20breath_loag","p":116,"h":1,"n":"Inner Breath"},{"c":0,"s":1,"id":4731,"u":"inner%20fire_loag","p":103,"h":1,"n":"Inner Fire"},{"c":0,"s":1,"id":4732,"u":"inoculation%20subroutine_loag","p":73,"h":1,"n":"Inoculation Subroutine"},{"c":0,"s":1,"id":4733,"u":"inspirit%20hazard_loag","p":20,"h":1,"n":"Inspirit Hazard"},{"c":0,"s":1,"id":4734,"u":"intercorporate_loag","p":77,"h":1,"n":"Intercorporate"},{"c":0,"s":1,"id":4735,"u":"internal%20cohesion_loag","p":77,"h":1,"n":"Internal Cohesion"},{"c":0,"s":1,"id":4736,"u":"internal%20compartment_loag","p":73,"h":1,"n":"Internal Compartment"},{"c":0,"s":1,"id":4737,"u":"internal%20respirator_loag","p":74,"h":1,"n":"Internal Respirator"},{"c":0,"s":1,"id":4738,"u":"intuitive%20crafting_loag","p":77,"h":1,"n":"Intuitive Crafting"},{"c":0,"s":1,"id":4739,"u":"invisible%20trickster_loag","p":132,"h":1,"n":"Invisible Trickster"},{"c":0,"s":1,"id":4740,"u":"invoke%20the%20elements_loag","p":24,"h":1,"n":"Invoke The Elements"},{"c":0,"s":1,"id":4741,"u":"irrepressible_loag","p":97,"h":1,"n":"Irrepressible"},{"c":0,"s":1,"id":4742,"u":"iruxi%20glide_loag","p":47,"h":1,"n":"Iruxi Glide"},{"c":0,"s":1,"id":4743,"u":"iruxi%20spirit%20strike_loag","p":48,"h":1,"n":"Iruxi Spirit Strike"},{"c":0,"s":1,"id":4744,"u":"janni%20hospitality_loag","p":112,"h":1,"n":"Janni Hospitality"},{"c":0,"s":1,"id":4745,"u":"janni%20magic_loag","p":112,"h":1,"n":"Janni Magic"},{"c":0,"s":1,"id":4746,"u":"jinx%20glutton_loag","p":60,"h":1,"n":"Jinx Glutton"},{"c":0,"s":1,"id":4747,"u":"juvenile%20flight_loag","p":138,"h":1,"n":"Juvenile Flight"},{"c":0,"s":1,"id":4748,"u":"killing%20stone_loag","p":126,"h":1,"n":"Killing Stone"},{"c":0,"s":1,"id":4749,"u":"kitsune%20lore_loag","p":125,"h":1,"n":"Kitsune Lore"},{"c":0,"s":1,"id":4750,"u":"kitsune%20spell%20expertise_loag","p":126,"h":1,"n":"Kitsune Spell Expertise"},{"c":0,"s":1,"id":4751,"u":"kitsune%20spell%20familiarity_loag","p":125,"h":1,"n":"Kitsune Spell Familiarity"},{"c":0,"s":1,"id":4752,"u":"kitsune%20spell%20mysteries_loag","p":126,"h":1,"n":"Kitsune Spell Mysteries"},{"c":0,"s":1,"id":4753,"u":"kobold%20weapon%20expertise_loag","p":40,"h":1,"n":"Kobold Weapon Expertise"},{"c":0,"s":1,"id":4754,"u":"kobold%20weapon%20familiarity_loag","p":39,"h":1,"n":"Kobold Weapon Familiarity"},{"c":0,"s":1,"id":4755,"u":"kobold%20weapon%20innovator_loag","p":39,"h":1,"n":"Kobold Weapon Innovator"},{"c":0,"s":1,"id":4756,"u":"larcenous%20tail_loag","p":98,"h":1,"n":"Larcenous Tail"},{"c":0,"s":1,"id":4757,"u":"lavasoul_loag","p":103,"h":1,"n":"Lavasoul"},{"c":0,"s":1,"id":4758,"u":"lemma%20of%20vision_loag","p":77,"h":1,"n":"Lemma Of Vision"},{"c":0,"s":1,"id":4759,"u":"lifeblood's%20call_loag","p":52,"h":1,"n":"Lifeblood's Call"},{"c":0,"s":1,"id":4760,"u":"lightless%20litheness_loag","p":87,"h":1,"n":"Lightless Litheness"},{"c":0,"s":1,"id":4761,"u":"lightning%20tongue_loag","p":47,"h":1,"n":"Lightning Tongue"},{"c":0,"s":1,"id":4762,"u":"living%20weapon_loag","p":93,"h":1,"n":"Living Weapon"},{"c":0,"s":1,"id":4763,"u":"lucky%20break_loag","p":19,"h":1,"n":"Lucky Break"},{"c":0,"s":1,"id":4764,"u":"magpie%20snatch_loag","p":59,"h":1,"n":"Magpie Snatch"},{"c":0,"s":1,"id":4765,"u":"maiden's%20mending_loag","p":23,"h":1,"n":"Maiden's Mending"},{"c":0,"s":1,"id":4766,"u":"marid%20magic_loag","p":120,"h":1,"n":"Marid Magic"},{"c":0,"s":1,"id":4767,"u":"marine%20ally_loag","p":15,"h":1,"n":"Marine Ally"},{"c":0,"s":1,"id":4768,"u":"mariner's%20fire_loag","p":58,"h":1,"n":"Mariner's Fire"},{"c":0,"s":1,"id":4769,"u":"mask%20of%20fear_loag","p":52,"h":1,"n":"Mask Of Fear"},{"c":0,"s":1,"id":4770,"u":"mask%20of%20pain_loag","p":52,"h":1,"n":"Mask Of Pain"},{"c":0,"s":1,"id":4771,"u":"mask%20of%20power_loag","p":51,"h":1,"n":"Mask Of Power"},{"c":0,"s":1,"id":4772,"u":"mask%20of%20rejection_loag","p":52,"h":1,"n":"Mask Of Rejection"},{"c":0,"s":1,"id":4773,"u":"metal-veined%20strikes_loag","p":108,"h":1,"n":"Metal-veined Strikes"},{"c":0,"s":1,"id":4774,"u":"miresoul_loag","p":107,"h":1,"n":"Miresoul"},{"c":0,"s":1,"id":4775,"u":"mischievous%20tail_loag","p":98,"h":1,"n":"Mischievous Tail"},{"c":0,"s":1,"id":4776,"u":"mist%20strider_loag","p":16,"h":1,"n":"Mist Strider"},{"c":0,"s":1,"id":4777,"u":"mistsoul_loag","p":119,"h":1,"n":"Mistsoul"},{"c":0,"s":1,"id":4778,"u":"moon%20may_loag","p":23,"h":1,"n":"Moon May"},{"c":0,"s":1,"id":4779,"u":"morrigna's%20spider%20affinity_loag","p":32,"h":1,"n":"Morrigna's Spider Affinity"},{"c":0,"s":1,"id":4780,"u":"mother's%20mindfulness_loag","p":24,"h":1,"n":"Mother's Mindfulness"},{"c":0,"s":1,"id":4781,"u":"mutate%20weapon_loag","p":93,"h":1,"n":"Mutate Weapon"},{"c":0,"s":1,"id":4782,"u":"myriad%20forms_loag","p":126,"h":1,"n":"Myriad Forms"},{"c":0,"s":1,"id":4783,"u":"nanite%20shroud_loag","p":74,"h":1,"n":"Nanite Shroud"},{"c":0,"s":1,"id":4784,"u":"nanite%20surge_loag","p":73,"h":1,"n":"Nanite Surge"},{"c":0,"s":1,"id":4785,"u":"nestling%20fall_loag","p":137,"h":1,"n":"Nestling Fall"},{"c":0,"s":1,"id":4786,"u":"nightvision%20adaptation_loag","p":73,"h":1,"n":"Nightvision Adaptation"},{"c":0,"s":1,"id":4787,"u":"no%20evidence_loag","p":20,"h":1,"n":"No Evidence"},{"c":0,"s":1,"id":4788,"u":"nocturnal%20charm_loag","p":27,"h":1,"n":"Nocturnal Charm"},{"c":0,"s":1,"id":4789,"u":"nosoi's%20mask_loag","p":31,"h":1,"n":"Nosoi's Mask"},{"c":0,"s":1,"id":4790,"u":"offensive%20analysis_loag","p":77,"h":1,"n":"Offensive Analysis"},{"c":0,"s":1,"id":4791,"u":"offensive%20subroutine_loag","p":74,"h":1,"n":"Offensive Subroutine"},{"c":0,"s":1,"id":4792,"u":"old%20soul_loag","p":27,"h":1,"n":"Old Soul"},{"c":0,"s":1,"id":4793,"u":"olethros's%20decree_loag","p":32,"h":1,"n":"Olethros's Decree"},{"c":0,"s":1,"id":4794,"u":"one%20with%20earth_loag","p":108,"h":1,"n":"One With Earth"},{"c":0,"s":1,"id":4795,"u":"orc%20warmask_loag","p":51,"h":1,"n":"Orc Warmask"},{"c":0,"s":1,"id":4796,"u":"pack%20tactics_loag","p":82,"h":1,"n":"Pack Tactics"},{"c":0,"s":1,"id":4797,"u":"pelagic%20aptitude_loag","p":15,"h":1,"n":"Pelagic Aptitude"},{"c":0,"s":1,"id":4798,"u":"peri%20magic_loag","p":11,"h":1,"n":"Peri Magic"},{"c":0,"s":1,"id":4799,"u":"pierce%20the%20light_loag","p":88,"h":1,"n":"Pierce The Light"},{"c":0,"s":1,"id":4800,"u":"plague%20sniffer_loag","p":56,"h":1,"n":"Plague Sniffer"},{"c":0,"s":1,"id":4801,"u":"plumekith_loag","p":11,"h":1,"n":"Plumekith"},{"c":0,"s":1,"id":4802,"u":"powerful%20guts_loag","p":93,"h":1,"n":"Powerful Guts"},{"c":0,"s":1,"id":4803,"u":"predator's%20growl_loag","p":20,"h":1,"n":"Predator's Growl"},{"c":0,"s":1,"id":4804,"u":"preemptive%20reconfiguration_loag","p":78,"h":1,"n":"Preemptive Reconfiguration"},{"c":0,"s":1,"id":4805,"u":"pride%20hunter_loag","p":19,"h":1,"n":"Pride Hunter"},{"c":0,"s":1,"id":4806,"u":"protective%20subroutine_loag","p":74,"h":1,"n":"Protective Subroutine"},{"c":0,"s":1,"id":4807,"u":"proximity%20alert_loag","p":73,"h":1,"n":"Proximity Alert"},{"c":0,"s":1,"id":4808,"u":"purge%20sins_loag","p":12,"h":1,"n":"Purge Sins"},{"c":0,"s":1,"id":4809,"u":"qlippoth%20magic_loag","p":63,"h":1,"n":"Qlippoth Magic"},{"c":0,"s":1,"id":4810,"u":"quick%20change_loag","p":81,"h":1,"n":"Quick Change"},{"c":0,"s":1,"id":4811,"u":"radiant%20burst_loag","p":104,"h":1,"n":"Radiant Burst"},{"c":0,"s":1,"id":4812,"u":"radiant%20circuitry_loag","p":73,"h":1,"n":"Radiant Circuitry"},{"c":0,"s":1,"id":4813,"u":"radiate%20glory_loag","p":12,"h":1,"n":"Radiate Glory"},{"c":0,"s":1,"id":4814,"u":"rakshasa%20magic_loag","p":63,"h":1,"n":"Rakshasa Magic"},{"c":0,"s":1,"id":4815,"u":"rallying%20cry_loag","p":36,"h":1,"n":"Rallying Cry"},{"c":0,"s":1,"id":4816,"u":"rampaging%20form_loag","p":126,"h":1,"n":"Rampaging Form"},{"c":0,"s":1,"id":4817,"u":"ratfolk%20growth_loag","p":56,"h":1,"n":"Ratfolk Growth"},{"c":0,"s":1,"id":4818,"u":"ratfolk%20roll_loag","p":56,"h":1,"n":"Ratfolk Roll"},{"c":0,"s":1,"id":4819,"u":"read%20the%20stars_loag","p":48,"h":1,"n":"Read The Stars"},{"c":0,"s":1,"id":4820,"u":"recognize%20ambush_loag","p":35,"h":1,"n":"Recognize Ambush"},{"c":0,"s":1,"id":4821,"u":"regrowth_loag","p":44,"h":1,"n":"Regrowth"},{"c":0,"s":1,"id":4822,"u":"rehydration_loag","p":16,"h":1,"n":"Rehydration"},{"c":0,"s":1,"id":4823,"u":"repair%20module_loag","p":74,"h":1,"n":"Repair Module"},{"c":0,"s":1,"id":4824,"u":"reptile%20rider_loag","p":47,"h":1,"n":"Reptile Rider"},{"c":0,"s":1,"id":4825,"u":"retractable%20claws_loag","p":125,"h":1,"n":"Retractable Claws"},{"c":0,"s":1,"id":4826,"u":"revivification%20protocol_loag","p":74,"h":1,"n":"Revivification Protocol"},{"c":0,"s":1,"id":4827,"u":"riftmarked_loag","p":63,"h":1,"n":"Riftmarked"},{"c":0,"s":1,"id":4828,"u":"rimesoul_loag","p":119,"h":1,"n":"Rimesoul"},{"c":0,"s":1,"id":4829,"u":"rokoan%20arts_loag","p":138,"h":1,"n":"Rokoan Arts"},{"c":0,"s":1,"id":4830,"u":"ru-shi_loag","p":27,"h":1,"n":"Ru-shi"},{"c":0,"s":1,"id":4831,"u":"runtsage_loag","p":35,"h":1,"n":"Runtsage"},{"c":0,"s":1,"id":4832,"u":"saber%20teeth_loag","p":19,"h":1,"n":"Saber Teeth"},{"c":0,"s":1,"id":4833,"u":"scar-thick%20skin_loag","p":52,"h":1,"n":"Scar-thick Skin"},{"c":0,"s":1,"id":4834,"u":"scholar's%20inheritance_loag","p":111,"h":1,"n":"Scholar's Inheritance"},{"c":0,"s":1,"id":4835,"u":"scion%20transformation_loag","p":48,"h":1,"n":"Scion Transformation"},{"c":0,"s":1,"id":4836,"u":"scorching%20disarm_loag","p":104,"h":1,"n":"Scorching Disarm"},{"c":0,"s":1,"id":4837,"u":"sculpt%20shadows_loag","p":88,"h":1,"n":"Sculpt Shadows"},{"c":0,"s":1,"id":4838,"u":"sense%20for%20trouble_loag","p":20,"h":1,"n":"Sense For Trouble"},{"c":0,"s":1,"id":4839,"u":"shackleborn_loag","p":63,"h":1,"n":"Shackleborn"},{"c":0,"s":1,"id":4840,"u":"shadow%20blending_loag","p":87,"h":1,"n":"Shadow Blending"},{"c":0,"s":1,"id":4841,"u":"shadow%20sight_loag","p":88,"h":1,"n":"Shadow Sight"},{"c":0,"s":1,"id":4842,"u":"shadow's%20assault_loag","p":88,"h":1,"n":"Shadow's Assault"},{"c":0,"s":1,"id":4843,"u":"shadowy%20disguise_loag","p":88,"h":1,"n":"Shadowy Disguise"},{"c":0,"s":1,"id":4844,"u":"shaitan%20magic_loag","p":108,"h":1,"n":"Shaitan Magic"},{"c":0,"s":1,"id":4845,"u":"shaitan%20skin_loag","p":108,"h":1,"n":"Shaitan Skin"},{"c":0,"s":1,"id":4846,"u":"shapechanger's%20intuition_loag","p":125,"h":1,"n":"Shapechanger's Intuition"},{"c":0,"s":1,"id":4847,"u":"shifting%20faces_loag","p":126,"h":1,"n":"Shifting Faces"},{"c":0,"s":1,"id":4848,"u":"shinstabber_loag","p":56,"h":1,"n":"Shinstabber"},{"c":0,"s":1,"id":4849,"u":"shoki's%20argument_loag","p":31,"h":1,"n":"Shoki's Argument"},{"c":0,"s":1,"id":4850,"u":"shrouded%20magic_loag","p":87,"h":1,"n":"Shrouded Magic"},{"c":0,"s":1,"id":4851,"u":"shrouded%20mien_loag","p":87,"h":1,"n":"Shrouded Mien"},{"c":0,"s":1,"id":4852,"u":"silent%20step_loag","p":20,"h":1,"n":"Silent Step"},{"c":0,"s":1,"id":4853,"u":"sinister%20appearance_loag","p":103,"h":1,"n":"Sinister Appearance"},{"c":0,"s":1,"id":4854,"u":"skillful%20tail%20(ganzi)_loag","p":97,"a":"Ganzi","h":1,"n":"Skillful Tail"},{"c":0,"s":1,"id":4855,"u":"skillful%20tail%20(sylph%2cundine%2csuli%2coread%2cifrit)_loag","p":100,"a":["Sylph","Undine","Suli","Oread","Ifrit"],"h":1,"n":"Skillful Tail"},{"c":0,"s":1,"id":4856,"u":"skirt%20the%20light_loag","p":88,"h":1,"n":"Skirt The Light"},{"c":0,"s":1,"id":4857,"u":"skittering%20sneak_loag","p":56,"h":1,"n":"Skittering Sneak"},{"c":0,"s":1,"id":4858,"u":"skull%20creeper_loag","p":55,"h":1,"n":"Skull Creeper"},{"c":0,"s":1,"id":4859,"u":"slink_loag","p":87,"h":1,"n":"Slink"},{"c":0,"s":1,"id":4860,"u":"slip%20into%20shadow_loag","p":28,"h":1,"n":"Slip Into Shadow"},{"c":0,"s":1,"id":4861,"u":"slip%20the%20grasp_loag","p":94,"h":1,"n":"Slip The Grasp"},{"c":0,"s":1,"id":4862,"u":"slip%20with%20the%20breeze_loag","p":116,"h":1,"n":"Slip With The Breeze"},{"c":0,"s":1,"id":4863,"u":"slither_loag","p":39,"h":1,"n":"Slither"},{"c":0,"s":1,"id":4864,"u":"smashing%20tail_loag","p":97,"h":1,"n":"Smashing Tail"},{"c":0,"s":1,"id":4865,"u":"smokesoul_loag","p":115,"h":1,"n":"Smokesoul"},{"c":0,"s":1,"id":4866,"u":"snare%20commando_loag","p":40,"h":1,"n":"Snare Commando"},{"c":0,"s":1,"id":4867,"u":"sneaky_loag","p":35,"h":1,"n":"Sneaky"},{"c":0,"s":1,"id":4868,"u":"snow%20may_loag","p":23,"h":1,"n":"Snow May"},{"c":0,"s":1,"id":4869,"u":"soaring%20form_loag","p":60,"h":1,"n":"Soaring Form"},{"c":0,"s":1,"id":4870,"u":"speak%20with%20bats_loag","p":131,"h":1,"n":"Speak With Bats"},{"c":0,"s":1,"id":4871,"u":"spew%20tentacles_loag","p":94,"h":1,"n":"Spew Tentacles"},{"c":0,"s":1,"id":4872,"u":"spiteful%20rake_loag","p":24,"h":1,"n":"Spiteful Rake"},{"c":0,"s":1,"id":4873,"u":"spore%20cloud_loag","p":44,"h":1,"n":"Spore Cloud"},{"c":0,"s":1,"id":4874,"u":"sprite's%20spark_loag","p":131,"h":1,"n":"Sprite's Spark"},{"c":0,"s":1,"id":4875,"u":"squad%20tactics_loag","p":36,"h":1,"n":"Squad Tactics"},{"c":0,"s":1,"id":4876,"u":"star%20orb_loag","p":125,"h":1,"n":"Star Orb"},{"c":0,"s":1,"id":4877,"u":"startling%20appearance_loag","p":93,"h":1,"n":"Startling Appearance"},{"c":0,"s":1,"id":4878,"u":"steady%20on%20stone_loag","p":107,"h":1,"n":"Steady On Stone"},{"c":0,"s":1,"id":4879,"u":"steam%20spell_loag","p":120,"h":1,"n":"Steam Spell"},{"c":0,"s":1,"id":4880,"u":"stone%20face_loag","p":35,"h":1,"n":"Stone Face"},{"c":0,"s":1,"id":4881,"u":"stone%20form_loag","p":108,"h":1,"n":"Stone Form"},{"c":0,"s":1,"id":4882,"u":"storm%20form_loag","p":116,"h":1,"n":"Storm Form"},{"c":0,"s":1,"id":4883,"u":"stormsoul_loag","p":115,"h":1,"n":"Stormsoul"},{"c":0,"s":1,"id":4884,"u":"stormy%20heart_loag","p":24,"h":1,"n":"Stormy Heart"},{"c":0,"s":1,"id":4885,"u":"story%20crooner_loag","p":137,"h":1,"n":"Story Crooner"},{"c":0,"s":1,"id":4886,"u":"striking%20retribution_loag","p":15,"h":1,"n":"Striking Retribution"},{"c":0,"s":1,"id":4887,"u":"strix%20defender_loag","p":137,"h":1,"n":"Strix Defender"},{"c":0,"s":1,"id":4888,"u":"strix%20lore_loag","p":137,"h":1,"n":"Strix Lore"},{"c":0,"s":1,"id":4889,"u":"strix%20vengeance_loag","p":138,"h":1,"n":"Strix Vengeance"},{"c":0,"s":1,"id":4890,"u":"strong%20swimmer_loag","p":120,"h":1,"n":"Strong Swimmer"},{"c":0,"s":1,"id":4891,"u":"suli%20amir_loag","p":112,"h":1,"n":"Suli Amir"},{"c":0,"s":1,"id":4892,"u":"suli-jann_loag","p":111,"h":1,"n":"Suli-jann"},{"c":0,"s":1,"id":4893,"u":"summon%20air%20elemental_loag","p":116,"h":1,"n":"Summon Air Elemental"},{"c":0,"s":1,"id":4894,"u":"summon%20earth%20elemental_loag","p":108,"h":1,"n":"Summon Earth Elemental"},{"c":0,"s":1,"id":4895,"u":"summon%20fire%20elemental_loag","p":104,"h":1,"n":"Summon Fire Elemental"},{"c":0,"s":1,"id":4896,"u":"summon%20water%20elemental_loag","p":120,"h":1,"n":"Summon Water Elemental"},{"c":0,"s":1,"id":4897,"u":"swift_loag","p":115,"h":1,"n":"Swift"},{"c":0,"s":1,"id":4898,"u":"taste%20blood_loag","p":28,"h":1,"n":"Taste Blood"},{"c":0,"s":1,"id":4899,"u":"ten%20lives_loag","p":20,"h":1,"n":"Ten Lives"},{"c":0,"s":1,"id":4900,"u":"tengu%20feather%20fan_loag","p":59,"h":1,"n":"Tengu Feather Fan"},{"c":0,"s":1,"id":4901,"u":"tetraelemental%20assault_loag","p":112,"h":1,"n":"Tetraelemental Assault"},{"c":0,"s":1,"id":4902,"u":"thorned%20seedpod_loag","p":44,"h":1,"n":"Thorned Seedpod"},{"c":0,"s":1,"id":4903,"u":"thrown%20voice_loag","p":138,"h":1,"n":"Thrown Voice"},{"c":0,"s":1,"id":4904,"u":"thunder%20god's%20fan_loag","p":60,"h":1,"n":"Thunder God's Fan"},{"c":0,"s":1,"id":4905,"u":"tidal%20shield_loag","p":120,"h":1,"n":"Tidal Shield"},{"c":0,"s":1,"id":4906,"u":"tide-hardened_loag","p":119,"h":1,"n":"Tide-hardened"},{"c":0,"s":1,"id":4907,"u":"tongue%20disarm_loag","p":47,"h":1,"n":"Tongue Disarm"},{"c":0,"s":1,"id":4908,"u":"tranquil%20sanctuary_loag","p":11,"h":1,"n":"Tranquil Sanctuary"},{"c":0,"s":1,"id":4909,"u":"translucent%20skin_loag","p":120,"h":1,"n":"Translucent Skin"},{"c":0,"s":1,"id":4910,"u":"treacherous%20earth_loag","p":108,"h":1,"n":"Treacherous Earth"},{"c":0,"s":1,"id":4911,"u":"trickster%20tengu_loag","p":60,"h":1,"n":"Trickster Tengu"},{"c":0,"s":1,"id":4912,"u":"truespeech_loag","p":12,"h":1,"n":"Truespeech"},{"c":0,"s":1,"id":4913,"u":"twist%20healing_loag","p":28,"h":1,"n":"Twist Healing"},{"c":0,"s":1,"id":4914,"u":"uncanny%20agility_loag","p":59,"h":1,"n":"Uncanny Agility"},{"c":0,"s":1,"id":4915,"u":"uncanny%20awareness_loag","p":94,"h":1,"n":"Uncanny Awareness"},{"c":0,"s":1,"id":4916,"u":"uncanny%20cheeks_loag","p":56,"h":1,"n":"Uncanny Cheeks"},{"c":0,"s":1,"id":4917,"u":"undead%20companion_loag","p":28,"h":1,"n":"Undead Companion"},{"c":0,"s":1,"id":4918,"u":"underwater%20volcano_loag","p":16,"h":1,"n":"Underwater Volcano"},{"c":0,"s":1,"id":4919,"u":"vanth's%20weapon%20execution_loag","p":31,"h":1,"n":"Vanth's Weapon Execution"},{"c":0,"s":1,"id":4920,"u":"vanth's%20weapon%20expertise_loag","p":32,"h":1,"n":"Vanth's Weapon Expertise"},{"c":0,"s":1,"id":4921,"u":"vanth's%20weapon%20familiarity_loag","p":31,"h":1,"n":"Vanth's Weapon Familiarity"},{"c":0,"s":1,"id":4922,"u":"veil%20may_loag","p":23,"h":1,"n":"Veil May"},{"c":0,"s":1,"id":4923,"u":"velstrac%20magic_loag","p":66,"h":1,"n":"Velstrac Magic"},{"c":0,"s":1,"id":4924,"u":"vestigial%20wings_loag","p":97,"h":1,"n":"Vestigial Wings"},{"c":0,"s":1,"id":4925,"u":"vicious%20snares_loag","p":40,"h":1,"n":"Vicious Snares"},{"c":0,"s":1,"id":4926,"u":"virga%20may_loag","p":23,"h":1,"n":"Virga May"},{"c":0,"s":1,"id":4927,"u":"war%20conditioning_loag","p":36,"h":1,"n":"War Conditioning"},{"c":0,"s":1,"id":4928,"u":"warren%20friend_loag","p":55,"h":1,"n":"Warren Friend"},{"c":0,"s":1,"id":4929,"u":"water%20conjuration_loag","p":15,"h":1,"n":"Water Conjuration"},{"c":0,"s":1,"id":4930,"u":"water%20dancer_loag","p":15,"h":1,"n":"Water Dancer"},{"c":0,"s":1,"id":4931,"u":"water%20strider_loag","p":16,"h":1,"n":"Water Strider"},{"c":0,"s":1,"id":4932,"u":"waxed%20feathers_loag","p":59,"h":1,"n":"Waxed Feathers"},{"c":0,"s":1,"id":4933,"u":"we%20march%20on_loag","p":36,"h":1,"n":"We March On"},{"c":0,"s":1,"id":4934,"u":"willing%20death_loag","p":31,"h":1,"n":"Willing Death"},{"c":0,"s":1,"id":4935,"u":"wind%20god's%20fan_loag","p":59,"h":1,"n":"Wind God's Fan"},{"c":0,"s":1,"id":4936,"u":"wind%20tempered_loag","p":115,"h":1,"n":"Wind Tempered"},{"c":0,"s":1,"id":4937,"u":"wing%20step_loag","p":138,"h":1,"n":"Wing Step"},{"c":0,"s":1,"id":4938,"u":"winglets_loag","p":39,"h":1,"n":"Winglets"},{"c":0,"s":1,"id":4939,"u":"wings%20of%20air_loag","p":116,"h":1,"n":"Wings Of Air"},{"c":0,"s":1,"id":4940,"u":"winter%20cat%20senses_loag","p":19,"h":1,"n":"Winter Cat Senses"},{"c":0,"s":1,"id":4941,"u":"wyrmling%20flight_loag","p":40,"h":1,"n":"Wyrmling Flight"},{"c":0,"s":1,"id":4942,"u":"yamaraj's%20grandeur_loag","p":32,"h":1,"n":"Yamaraj's Grandeur"},{"c":0,"s":6,"id":4943,"u":"absorb%20spell_locg","p":114,"h":1,"n":"Absorb Spell"},{"c":0,"s":6,"id":4944,"u":"adaptive%20mask%20familiar_locg","p":101,"h":1,"n":"Adaptive Mask Familiar"},{"c":0,"s":6,"id":4945,"u":"adroit%20manipulation_locg","p":44,"h":1,"n":"Adroit Manipulation"},{"c":0,"s":6,"id":4946,"u":"advanced%20order%20training_locg","p":81,"h":1,"n":"Advanced Order Training"},{"c":0,"s":6,"id":4947,"u":"aegis%20of%20arnisant_locg","p":94,"h":1,"n":"Aegis Of Arnisant"},{"c":0,"s":6,"id":4948,"u":"agonizing%20rebuke_locg","p":50,"h":1,"n":"Agonizing Rebuke"},{"c":0,"s":6,"id":4949,"u":"alchemical%20scholar_locg","p":50,"h":1,"n":"Alchemical Scholar"},{"c":0,"s":6,"id":4950,"u":"ankle%20bite_locg","p":38,"h":1,"n":"Ankle Bite"},{"c":0,"s":6,"id":4951,"u":"arcane%20tattoos_locg","p":11,"h":1,"n":"Arcane Tattoos"},{"c":0,"s":6,"id":4952,"u":"avenge%20in%20glory_locg","p":20,"h":1,"n":"Avenge In Glory"},{"c":0,"s":6,"id":4953,"u":"backup%20disguise_locg","p":71,"h":1,"n":"Backup Disguise"},{"c":0,"s":6,"id":4954,"u":"bark%20and%20tendril_locg","p":55,"h":1,"n":"Bark And Tendril"},{"c":0,"s":6,"id":4955,"u":"battleforger_locg","p":21,"h":1,"n":"Battleforger"},{"c":0,"s":6,"id":4956,"u":"blade%20of%20law_locg","p":84,"h":1,"n":"Blade Of Law"},{"c":0,"s":6,"id":4957,"u":"blade%20of%20the%20crimson%20oath_locg","p":95,"h":1,"n":"Blade Of The Crimson Oath"},{"c":0,"s":6,"id":4958,"u":"boaster's%20challenge_locg","p":74,"h":1,"n":"Boaster's Challenge"},{"c":0,"s":6,"id":4959,"u":"bouncy%20goblin_locg","p":37,"h":1,"n":"Bouncy Goblin"},{"c":0,"s":6,"id":4960,"u":"bravo's%20determination_locg","p":75,"h":1,"n":"Bravo's Determination"},{"c":0,"s":6,"id":4961,"u":"brightness%20seeker_locg","p":27,"h":1,"n":"Brightness Seeker"},{"c":0,"s":6,"id":4962,"u":"cascade%20bearers%20flexibility_locg","p":101,"h":1,"n":"Cascade Bearers Flexibility"},{"c":0,"s":6,"id":4963,"u":"cascade%20bearers%20spellcasting_locg","p":103,"h":1,"n":"Cascade Bearers Spellcasting"},{"c":0,"s":6,"id":4964,"u":"charged%20creation_locg","p":104,"h":1,"n":"Charged Creation"},{"c":0,"s":6,"id":4965,"u":"chosen%20of%20lamashtu_locg","p":38,"h":1,"n":"Chosen Of Lamashtu"},{"c":0,"s":6,"id":4966,"u":"clan%20protector_locg","p":20,"h":1,"n":"Clan Protector"},{"c":0,"s":6,"id":4967,"u":"clan's%20edge_locg","p":20,"h":1,"n":"Clan's Edge"},{"c":0,"s":6,"id":4968,"u":"cobble%20dancer_locg","p":45,"h":1,"n":"Cobble Dancer"},{"c":0,"s":6,"id":4969,"u":"courteous%20comeback_locg","p":11,"h":1,"n":"Courteous Comeback"},{"c":0,"s":6,"id":4970,"u":"cunning%20climber_locg","p":45,"h":1,"n":"Cunning Climber"},{"c":0,"s":6,"id":4971,"u":"daredevil's%20gambit_locg","p":75,"h":1,"n":"Daredevil's Gambit"},{"c":0,"s":6,"id":4972,"u":"daring%20act_locg","p":74,"h":1,"n":"Daring Act"},{"c":0,"s":6,"id":4973,"u":"daring%20flourish_locg","p":75,"h":1,"n":"Daring Flourish"},{"c":0,"s":6,"id":4974,"u":"darkseer_locg","p":13,"h":1,"n":"Darkseer"},{"c":0,"s":6,"id":4975,"u":"death's%20door_locg","p":115,"h":1,"n":"Death's Door"},{"c":0,"s":6,"id":4976,"u":"defiance%20unto%20death_locg","p":26,"h":1,"n":"Defiance Unto Death"},{"c":0,"s":6,"id":4977,"u":"demanding%20challenge_locg","p":75,"h":1,"n":"Demanding Challenge"},{"c":0,"s":6,"id":4978,"u":"devil's%20advocate_locg","p":11,"h":1,"n":"Devil's Advocate"},{"c":0,"s":6,"id":4979,"u":"dragon%20prince_locg","p":14,"h":1,"n":"Dragon Prince"},{"c":0,"s":6,"id":4980,"u":"dragon%20spit_locg","p":12,"h":1,"n":"Dragon Spit"},{"c":0,"s":6,"id":4981,"u":"dualistic%20synergy_locg","p":104,"h":1,"n":"Dualistic Synergy"},{"c":0,"s":6,"id":4982,"u":"easily%20dismissed_locg","p":44,"h":1,"n":"Easily Dismissed"},{"c":0,"s":6,"id":4983,"u":"eclectic%20obsession_locg","p":33,"h":1,"n":"Eclectic Obsession"},{"c":0,"s":6,"id":4984,"u":"educated%20assessment_locg","p":112,"h":1,"n":"Educated Assessment"},{"c":0,"s":6,"id":4985,"u":"elemental%20wrath_locg","p":26,"h":1,"n":"Elemental Wrath"},{"c":0,"s":6,"id":4986,"u":"elven%20instincts_locg","p":27,"h":1,"n":"Elven Instincts"},{"c":0,"s":6,"id":4987,"u":"elven%20verve_locg","p":26,"h":1,"n":"Elven Verve"},{"c":0,"s":6,"id":4988,"u":"emerald%20boughs%20accustomation_locg","p":102,"h":1,"n":"Emerald Boughs Accustomation"},{"c":0,"s":6,"id":4989,"u":"emerald%20boughs%20hideaway_locg","p":103,"h":1,"n":"Emerald Boughs Hideaway"},{"c":0,"s":6,"id":4990,"u":"endure%20death's%20touch_locg","p":94,"h":1,"n":"Endure Death's Touch"},{"c":0,"s":6,"id":4991,"u":"energy%20blessed_locg","p":21,"h":1,"n":"Energy Blessed"},{"c":0,"s":6,"id":4992,"u":"entourage_locg","p":72,"h":1,"n":"Entourage"},{"c":0,"s":6,"id":4993,"u":"envenom%20fangs_locg","p":59,"h":1,"n":"Envenom Fangs"},{"c":0,"s":6,"id":4994,"u":"everstand%20stance_locg","p":90,"h":1,"n":"Everstand Stance"},{"c":0,"s":6,"id":4995,"u":"everstand%20strike_locg","p":90,"h":1,"n":"Everstand Strike"},{"c":0,"s":6,"id":4996,"u":"everyone%20duck!_locg","p":112,"h":1,"n":"Everyone Duck!"},{"c":0,"s":6,"id":4997,"u":"expert%20drill%20sergeant_locg","p":51,"h":1,"n":"Expert Drill Sergeant"},{"c":0,"s":6,"id":4998,"u":"fade%20away_locg","p":45,"h":1,"n":"Fade Away"},{"c":0,"s":6,"id":4999,"u":"fang%20sharpener_locg","p":37,"h":1,"n":"Fang Sharpener"},{"c":0,"s":6,"id":5000,"u":"firebrand%20braggart%20dedication_locg","p":74,"h":1,"n":"Firebrand Braggart Dedication"},{"c":0,"s":6,"id":5001,"u":"flexible%20halcyon%20spellcasting_locg","p":105,"h":1,"n":"Flexible Halcyon Spellcasting"},{"c":0,"s":6,"id":5002,"u":"font%20of%20knowledge_locg","p":113,"h":1,"n":"Font Of Knowledge"},{"c":0,"s":6,"id":5003,"u":"forced%20entry_locg","p":112,"h":1,"n":"Forced Entry"},{"c":0,"s":6,"id":5004,"u":"forest%20stealth_locg","p":27,"h":1,"n":"Forest Stealth"},{"c":0,"s":6,"id":5005,"u":"forge-day's%20rest_locg","p":20,"h":1,"n":"Forge-day's Rest"},{"c":0,"s":6,"id":5006,"u":"formation%20master_locg","p":51,"h":1,"n":"Formation Master"},{"c":0,"s":6,"id":5007,"u":"formation%20training_locg","p":51,"h":1,"n":"Formation Training"},{"c":0,"s":6,"id":5008,"u":"fortuitous%20shift_locg","p":33,"h":1,"n":"Fortuitous Shift"},{"c":0,"s":6,"id":5009,"u":"freeze%20it!_locg","p":39,"h":1,"n":"Freeze It!"},{"c":0,"s":6,"id":5010,"u":"fulminating%20synergy_locg","p":105,"h":1,"n":"Fulminating Synergy"},{"c":0,"s":6,"id":5011,"u":"gaze%20of%20veracity_locg","p":85,"h":1,"n":"Gaze Of Veracity"},{"c":0,"s":6,"id":5012,"u":"gecko's%20grip_locg","p":59,"h":1,"n":"Gecko's Grip"},{"c":0,"s":6,"id":5013,"u":"gloomseer_locg","p":12,"h":1,"n":"Gloomseer"},{"c":0,"s":6,"id":5014,"u":"gnome%20polyglot_locg","p":31,"h":1,"n":"Gnome Polyglot"},{"c":0,"s":6,"id":5015,"u":"grasping%20reach_locg","p":54,"h":1,"n":"Grasping Reach"},{"c":0,"s":6,"id":5016,"u":"great%20boaster_locg","p":75,"h":1,"n":"Great Boaster"},{"c":0,"s":6,"id":5017,"u":"grim%20insight_locg","p":32,"h":1,"n":"Grim Insight"},{"c":0,"s":6,"id":5018,"u":"halcyon%20speaker%20dedication_locg","p":104,"h":1,"n":"Halcyon Speaker Dedication"},{"c":0,"s":6,"id":5019,"u":"halcyon%20spellcasting%20adept_locg","p":105,"h":1,"n":"Halcyon Spellcasting Adept"},{"c":0,"s":6,"id":5020,"u":"halcyon%20spellcasting%20initiate_locg","p":104,"h":1,"n":"Halcyon Spellcasting Initiate"},{"c":0,"s":6,"id":5021,"u":"halcyon%20spellcasting%20sage_locg","p":105,"h":1,"n":"Halcyon Spellcasting Sage"},{"c":0,"s":6,"id":5022,"u":"halfling%20ingenuity_locg","p":44,"h":1,"n":"Halfling Ingenuity"},{"c":0,"s":6,"id":5023,"u":"hard%20tail_locg","p":38,"h":1,"n":"Hard Tail"},{"c":0,"s":6,"id":5024,"u":"harmlessly%20cute_locg","p":54,"h":1,"n":"Harmlessly Cute"},{"c":0,"s":6,"id":5025,"u":"harrying%20strike_locg","p":115,"h":1,"n":"Harrying Strike"},{"c":0,"s":6,"id":5026,"u":"heir%20of%20the%20saoc_locg","p":14,"h":1,"n":"Heir Of The Saoc"},{"c":0,"s":6,"id":5027,"u":"hell's%20armaments_locg","p":84,"h":1,"n":"Hell's Armaments"},{"c":0,"s":6,"id":5028,"u":"hellknight%20dedication_locg","p":84,"h":1,"n":"Hellknight Dedication"},{"c":0,"s":6,"id":5029,"u":"hellknight%20order%20cross-training_locg","p":81,"h":1,"n":"Hellknight Order Cross-training"},{"c":0,"s":6,"id":5030,"u":"hellknight%20signifer%20dedication_locg","p":85,"h":1,"n":"Hellknight Signifer Dedication"},{"c":0,"s":6,"id":5031,"u":"helpful%20halfling_locg","p":45,"h":1,"n":"Helpful Halfling"},{"c":0,"s":6,"id":5032,"u":"heroes'%20call_locg","p":21,"h":1,"n":"Heroes' Call"},{"c":0,"s":6,"id":5033,"u":"hobgoblin%20lore_locg","p":50,"h":1,"n":"Hobgoblin Lore"},{"c":0,"s":6,"id":5034,"u":"hobgoblin%20weapon%20discipline_locg","p":51,"h":1,"n":"Hobgoblin Weapon Discipline"},{"c":0,"s":6,"id":5035,"u":"hobgoblin%20weapon%20expertise_locg","p":51,"h":1,"n":"Hobgoblin Weapon Expertise"},{"c":0,"s":6,"id":5036,"u":"hobgoblin%20weapon%20familiarity_locg","p":50,"h":1,"n":"Hobgoblin Weapon Familiarity"},{"c":0,"s":6,"id":5037,"u":"hungry%20goblin_locg","p":39,"h":1,"n":"Hungry Goblin"},{"c":0,"s":6,"id":5038,"u":"impassable%20wall%20stance_locg","p":90,"h":1,"n":"Impassable Wall Stance"},{"c":0,"s":6,"id":5039,"u":"incredible%20luck_locg","p":45,"h":1,"n":"Incredible Luck"},{"c":0,"s":6,"id":5040,"u":"innocuous_locg","p":44,"h":1,"n":"Innocuous"},{"c":0,"s":6,"id":5041,"u":"intuitive%20cooperation_locg","p":44,"h":1,"n":"Intuitive Cooperation"},{"c":0,"s":6,"id":5042,"u":"intuitive%20illusions_locg","p":33,"h":1,"n":"Intuitive Illusions"},{"c":0,"s":6,"id":5043,"u":"inventive%20offensive_locg","p":32,"h":1,"n":"Inventive Offensive"},{"c":0,"s":6,"id":5044,"u":"invoke%20the%20crimson%20oath_locg","p":95,"h":1,"n":"Invoke The Crimson Oath"},{"c":0,"s":6,"id":5045,"u":"irriseni%20ice-witch_locg","p":14,"h":1,"n":"Irriseni Ice-witch"},{"c":0,"s":6,"id":5046,"u":"iruxi%20unarmed%20cunning_locg","p":59,"h":1,"n":"Iruxi Unarmed Cunning"},{"c":0,"s":6,"id":5047,"u":"keep%20up%20appearances_locg","p":12,"h":1,"n":"Keep Up Appearances"},{"c":0,"s":6,"id":5048,"u":"kneel%20for%20no%20god_locg","p":21,"h":1,"n":"Kneel For No God"},{"c":0,"s":6,"id":5049,"u":"knight%20in%20shining%20armor_locg","p":94,"h":1,"n":"Knight In Shining Armor"},{"c":0,"s":6,"id":5050,"u":"knight%20reclaimant%20dedication_locg","p":95,"h":1,"n":"Knight Reclaimant Dedication"},{"c":0,"s":6,"id":5051,"u":"knight%20vigilant_locg","p":94,"h":1,"n":"Knight Vigilant"},{"c":0,"s":6,"id":5052,"u":"know%20oneself_locg","p":12,"h":1,"n":"Know Oneself"},{"c":0,"s":6,"id":5053,"u":"leech-clipper_locg","p":50,"h":1,"n":"Leech-clipper"},{"c":0,"s":6,"id":5054,"u":"leshy%20glide_locg","p":55,"h":1,"n":"Leshy Glide"},{"c":0,"s":6,"id":5055,"u":"leshy%20lore_locg","p":54,"h":1,"n":"Leshy Lore"},{"c":0,"s":6,"id":5056,"u":"leshy%20superstition_locg","p":54,"h":1,"n":"Leshy Superstition"},{"c":0,"s":6,"id":5057,"u":"life-giving%20magic_locg","p":32,"h":1,"n":"Life-giving Magic"},{"c":0,"s":6,"id":5058,"u":"light%20of%20revelation_locg","p":90,"h":1,"n":"Light Of Revelation"},{"c":0,"s":6,"id":5059,"u":"lizardfolk%20lore_locg","p":58,"h":1,"n":"Lizardfolk Lore"},{"c":0,"s":6,"id":5060,"u":"lore%20seeker_locg","p":113,"h":1,"n":"Lore Seeker"},{"c":0,"s":6,"id":5061,"u":"lucky%20keepsake_locg","p":55,"h":1,"n":"Lucky Keepsake"},{"c":0,"s":6,"id":5062,"u":"magaambyan%20attendant%20dedication_locg","p":101,"h":1,"n":"Magaambyan Attendant Dedication"},{"c":0,"s":6,"id":5063,"u":"marsh%20runner_locg","p":58,"h":1,"n":"Marsh Runner"},{"c":0,"s":6,"id":5064,"u":"mask%20familiar_locg","p":101,"h":1,"n":"Mask Familiar"},{"c":0,"s":6,"id":5065,"u":"masked%20casting_locg","p":85,"h":1,"n":"Masked Casting"},{"c":0,"s":6,"id":5066,"u":"natural%20illusionist_locg","p":33,"h":1,"n":"Natural Illusionist"},{"c":0,"s":6,"id":5067,"u":"natural%20performer_locg","p":32,"h":1,"n":"Natural Performer"},{"c":0,"s":6,"id":5068,"u":"order%20training_locg","p":81,"h":1,"n":"Order Training"},{"c":0,"s":6,"id":5069,"u":"ornate%20tattoo_locg","p":13,"h":1,"n":"Ornate Tattoo"},{"c":0,"s":6,"id":5070,"u":"overlooked%20mastermind_locg","p":15,"h":1,"n":"Overlooked Mastermind"},{"c":0,"s":6,"id":5071,"u":"parthenogenic%20hatchling_locg","p":58,"h":1,"n":"Parthenogenic Hatchling"},{"c":0,"s":6,"id":5072,"u":"persistent%20creation_locg","p":104,"h":1,"n":"Persistent Creation"},{"c":0,"s":6,"id":5073,"u":"pride%20in%20arms_locg","p":51,"h":1,"n":"Pride In Arms"},{"c":0,"s":6,"id":5074,"u":"primal%20rampage_locg","h":1,"n":"Primal Rampage"},{"c":0,"s":6,"id":5075,"u":"protective%20sheath_locg","p":21,"h":1,"n":"Protective Sheath"},{"c":0,"s":6,"id":5076,"u":"quah%20bond_locg","p":12,"h":1,"n":"Quah Bond"},{"c":0,"s":6,"id":5077,"u":"rain-scribe%20mobility_locg","p":103,"h":1,"n":"Rain-scribe Mobility"},{"c":0,"s":6,"id":5078,"u":"rain-scribe%20sustenance_locg","p":102,"h":1,"n":"Rain-scribe Sustenance"},{"c":0,"s":6,"id":5079,"u":"razor%20claws_locg","p":58,"h":1,"n":"Razor Claws"},{"c":0,"s":6,"id":5080,"u":"reaper%20of%20repose_locg","p":95,"h":1,"n":"Reaper Of Repose"},{"c":0,"s":6,"id":5081,"u":"recognize%20threat_locg","p":112,"h":1,"n":"Recognize Threat"},{"c":0,"s":6,"id":5082,"u":"remorseless%20lash_locg","p":50,"h":1,"n":"Remorseless Lash"},{"c":0,"s":6,"id":5083,"u":"reptile%20speaker_locg","p":58,"h":1,"n":"Reptile Speaker"},{"c":0,"s":6,"id":5084,"u":"ritual%20reversion_locg","p":55,"h":1,"n":"Ritual Reversion"},{"c":0,"s":6,"id":5085,"u":"roll%20with%20it_locg","p":39,"h":1,"n":"Roll With It"},{"c":0,"s":6,"id":5086,"u":"round%20ears_locg","p":15,"h":1,"n":"Round Ears"},{"c":0,"s":6,"id":5087,"u":"saoc%20astrology_locg","p":12,"h":1,"n":"Saoc Astrology"},{"c":0,"s":6,"id":5088,"u":"scalding%20spit_locg","p":39,"h":1,"n":"Scalding Spit"},{"c":0,"s":6,"id":5089,"u":"scrollmaster%20dedication_locg","p":113,"h":1,"n":"Scrollmaster Dedication"},{"c":0,"s":6,"id":5090,"u":"seedpod_locg","p":54,"h":1,"n":"Seedpod"},{"c":0,"s":6,"id":5091,"u":"sense%20chaos_locg","p":84,"h":1,"n":"Sense Chaos"},{"c":0,"s":6,"id":5092,"u":"sense%20thoughts_locg","p":27,"h":1,"n":"Sense Thoughts"},{"c":0,"s":6,"id":5093,"u":"shadow%20of%20the%20wilds_locg","p":54,"h":1,"n":"Shadow Of The Wilds"},{"c":0,"s":6,"id":5094,"u":"shadow%20pact_locg","p":14,"h":1,"n":"Shadow Pact"},{"c":0,"s":6,"id":5095,"u":"share%20thoughts_locg","p":26,"h":1,"n":"Share Thoughts"},{"c":0,"s":6,"id":5096,"u":"shared%20luck_locg","p":45,"h":1,"n":"Shared Luck"},{"c":0,"s":6,"id":5097,"u":"shared%20synergy_locg","p":104,"h":1,"n":"Shared Synergy"},{"c":0,"s":6,"id":5098,"u":"sharp%20fangs_locg","p":58,"h":1,"n":"Sharp Fangs"},{"c":0,"s":6,"id":5099,"u":"shed%20tail_locg","p":59,"h":1,"n":"Shed Tail"},{"c":0,"s":6,"id":5100,"u":"shory%20aerialist_locg","p":15,"h":1,"n":"Shory Aerialist"},{"c":0,"s":6,"id":5101,"u":"shory%20aeromancer_locg","p":14,"h":1,"n":"Shory Aeromancer"},{"c":0,"s":6,"id":5102,"u":"shoulder%20catastrophe_locg","p":115,"h":1,"n":"Shoulder Catastrophe"},{"c":0,"s":6,"id":5103,"u":"signifer%20armor%20expertise_locg","p":85,"h":1,"n":"Signifer Armor Expertise"},{"c":0,"s":6,"id":5104,"u":"signifer's%20sight_locg","p":85,"h":1,"n":"Signifer's Sight"},{"c":0,"s":6,"id":5105,"u":"sociable_locg","p":15,"h":1,"n":"Sociable"},{"c":0,"s":6,"id":5106,"u":"solar%20rejuvenation_locg","p":55,"h":1,"n":"Solar Rejuvenation"},{"c":0,"s":6,"id":5107,"u":"sow%20rumor_locg","p":71,"h":1,"n":"Sow Rumor"},{"c":0,"s":6,"id":5108,"u":"speak%20with%20kindred_locg","p":55,"h":1,"n":"Speak With Kindred"},{"c":0,"s":6,"id":5109,"u":"spellmaster%20dedication_locg","p":114,"h":1,"n":"Spellmaster Dedication"},{"c":0,"s":6,"id":5110,"u":"spellmaster's%20resilience_locg","p":114,"h":1,"n":"Spellmaster's Resilience"},{"c":0,"s":6,"id":5111,"u":"sun%20blade_locg","p":90,"h":1,"n":"Sun Blade"},{"c":0,"s":6,"id":5112,"u":"surface%20culture_locg","p":20,"h":1,"n":"Surface Culture"},{"c":0,"s":6,"id":5113,"u":"surreptitious%20spellcaster_locg","p":114,"h":1,"n":"Surreptitious Spellcaster"},{"c":0,"s":6,"id":5114,"u":"survivor%20of%20desolation_locg","p":95,"h":1,"n":"Survivor Of Desolation"},{"c":0,"s":6,"id":5115,"u":"swift%20swimmer_locg","p":59,"h":1,"n":"Swift Swimmer"},{"c":0,"s":6,"id":5116,"u":"swordmaster%20dedication_locg","p":115,"h":1,"n":"Swordmaster Dedication"},{"c":0,"s":6,"id":5117,"u":"synergistic%20spell_locg","p":105,"h":1,"n":"Synergistic Spell"},{"c":0,"s":6,"id":5118,"u":"tail%20spin_locg","p":38,"h":1,"n":"Tail Spin"},{"c":0,"s":6,"id":5119,"u":"tail%20whip_locg","p":58,"h":1,"n":"Tail Whip"},{"c":0,"s":6,"id":5120,"u":"tempest-sun%20redirection_locg","p":102,"h":1,"n":"Tempest-sun Redirection"},{"c":0,"s":6,"id":5121,"u":"tempest-sun%20shielding_locg","p":103,"h":1,"n":"Tempest-sun Shielding"},{"c":0,"s":6,"id":5122,"u":"terrain%20advantage_locg","p":59,"h":1,"n":"Terrain Advantage"},{"c":0,"s":6,"id":5123,"u":"theoretical%20acumen_locg","p":32,"h":1,"n":"Theoretical Acumen"},{"c":0,"s":6,"id":5124,"u":"tomb-watcher's%20glare_locg","p":21,"h":1,"n":"Tomb-watcher's Glare"},{"c":0,"s":6,"id":5125,"u":"torch%20goblin_locg","p":38,"h":1,"n":"Torch Goblin"},{"c":0,"s":6,"id":5126,"u":"tree%20climber_locg","p":38,"h":1,"n":"Tree Climber"},{"c":0,"s":6,"id":5127,"u":"tupilaq%20carver_locg","p":13,"h":1,"n":"Tupilaq Carver"},{"c":0,"s":6,"id":5128,"u":"tusks_locg","p":15,"h":1,"n":"Tusks"},{"c":0,"s":6,"id":5129,"u":"unassuming%20dedication_locg","p":44,"h":1,"n":"Unassuming Dedication"},{"c":0,"s":6,"id":5130,"u":"unbreakable-er%20goblin_locg","p":39,"h":1,"n":"Unbreakable-er Goblin"},{"c":0,"s":6,"id":5131,"u":"undaunted_locg","p":54,"h":1,"n":"Undaunted"},{"c":0,"s":6,"id":5132,"u":"unexpected%20shift_locg","p":32,"h":1,"n":"Unexpected Shift"},{"c":0,"s":6,"id":5133,"u":"unravel%20mysteries_locg","p":113,"h":1,"n":"Unravel Mysteries"},{"c":0,"s":6,"id":5134,"u":"unshakable%20idealism_locg","p":94,"h":1,"n":"Unshakable Idealism"},{"c":0,"s":6,"id":5135,"u":"uzunjati%20recollection_locg","p":103,"h":1,"n":"Uzunjati Recollection"},{"c":0,"s":6,"id":5136,"u":"uzunjati%20storytelling_locg","p":102,"h":1,"n":"Uzunjati Storytelling"},{"c":0,"s":6,"id":5137,"u":"vibrant%20display_locg","p":33,"h":1,"n":"Vibrant Display"},{"c":0,"s":6,"id":5138,"u":"vigorous%20health_locg","p":50,"h":1,"n":"Vigorous Health"},{"c":0,"s":6,"id":5139,"u":"viking%20shieldbearer_locg","p":13,"h":1,"n":"Viking Shieldbearer"},{"c":0,"s":6,"id":5140,"u":"virtue-forged%20tattoos_locg","p":14,"h":1,"n":"Virtue-forged Tattoos"},{"c":0,"s":6,"id":5141,"u":"wandering%20heart_locg","p":27,"h":1,"n":"Wandering Heart"},{"c":0,"s":6,"id":5142,"u":"ward%20casting_locg","p":114,"h":1,"n":"Ward Casting"},{"c":0,"s":6,"id":5143,"u":"wavetouched%20paragon_locg","p":13,"h":1,"n":"Wavetouched Paragon"},{"c":0,"s":6,"id":5144,"u":"wildborn%20adept_locg","p":27,"h":1,"n":"Wildborn Adept"},{"c":0,"s":6,"id":5145,"u":"wildborn%20magic_locg","p":26,"h":1,"n":"Wildborn Magic"},{"c":0,"s":6,"id":5146,"u":"witch%20warden_locg","p":13,"h":1,"n":"Witch Warden"},{"c":0,"s":6,"id":5147,"u":"woodcraft_locg","p":26,"h":1,"n":"Woodcraft"},{"c":0,"s":51,"id":5148,"u":"battle%20prayer_logm","p":104,"h":1,"n":"Battle Prayer"},{"c":0,"s":51,"id":5149,"u":"bless%20tonic_logm","p":104,"h":1,"n":"Bless Tonic"},{"c":0,"s":51,"id":5150,"u":"bless%20toxin_logm","p":104,"h":1,"n":"Bless Toxin"},{"c":0,"s":51,"id":5151,"u":"blessed%20blood_logm","p":104,"h":1,"n":"Blessed Blood"},{"c":0,"s":51,"id":5152,"u":"charlatan_logm","p":104,"h":1,"n":"Charlatan"},{"c":0,"s":51,"id":5153,"u":"environmental%20grace_logm","p":105,"h":1,"n":"Environmental Grace"},{"c":0,"s":51,"id":5154,"u":"evangelize_logm","p":105,"h":1,"n":"Evangelize"},{"c":0,"s":51,"id":5155,"u":"expanded%20domain%20initiate_logm","p":8,"h":1,"n":"Expanded Domain Initiate"},{"c":0,"s":51,"id":5156,"u":"mortal%20healing_logm","p":105,"h":1,"n":"Mortal Healing"},{"c":0,"s":51,"id":5157,"u":"numb%20to%20death_logm","p":105,"h":1,"n":"Numb To Death"},{"c":0,"s":51,"id":5158,"u":"sacred%20defense_logm","p":105,"h":1,"n":"Sacred Defense"},{"c":0,"s":51,"id":5159,"u":"sacred%20ki_logm","p":105,"h":1,"n":"Sacred Ki"},{"c":0,"s":51,"id":5160,"u":"sanctify%20water_logm","p":105,"h":1,"n":"Sanctify Water"},{"c":0,"s":51,"id":5161,"u":"splinter%20faith_logm","p":8,"h":1,"n":"Splinter Faith"},{"c":0,"s":51,"id":5162,"u":"syncretism_logm","p":105,"h":1,"n":"Syncretism"},{"c":0,"s":52,"id":5163,"u":"achaekek's%20grip_lol","p":58,"h":1,"n":"Achaekek's Grip"},{"c":0,"s":52,"id":5164,"u":"artokus's%20fire_lol","p":20,"h":1,"n":"Artokus's Fire"},{"c":0,"s":52,"id":5165,"u":"azaersi's%20roads_lol","p":28,"h":1,"n":"Azaersi's Roads"},{"c":0,"s":52,"id":5166,"u":"bright%20lion%20dedication_lol","p":101,"h":1,"n":"Bright Lion Dedication"},{"c":0,"s":52,"id":5167,"u":"elude%20the%20divine_lol","p":101,"h":1,"n":"Elude The Divine"},{"c":0,"s":52,"id":5168,"u":"fading_lol","p":58,"h":1,"n":"Fading"},{"c":0,"s":52,"id":5169,"u":"flamboyant%20cruelty_lol","p":28,"h":1,"n":"Flamboyant Cruelty"},{"c":0,"s":52,"id":5170,"u":"janatimo's%20lessons_lol","p":61,"h":1,"n":"Janatimo's Lessons"},{"c":0,"s":52,"id":5171,"u":"medical%20researcher_lol","p":72,"h":1,"n":"Medical Researcher"},{"c":0,"s":52,"id":5172,"u":"paragon%20battle%20medicine_lol","p":72,"h":1,"n":"Paragon Battle Medicine"},{"c":0,"s":52,"id":5173,"u":"prayer%20attack_lol","p":58,"h":1,"n":"Prayer Attack"},{"c":0,"s":52,"id":5174,"u":"rescuer's%20press_lol","p":68,"h":1,"n":"Rescuer's Press"},{"c":0,"s":52,"id":5175,"u":"shall%20not%20falter%2c%20shall%20not%20rout_lol","p":69,"h":1,"n":"Shall Not Falter, Shall Not Rout"},{"c":0,"s":52,"id":5176,"u":"sun's%20fury_lol","p":101,"h":1,"n":"Sun's Fury"},{"c":0,"s":52,"id":5177,"u":"vernai%20training_lol","p":58,"h":1,"n":"Vernai Training"},{"c":0,"s":52,"id":5178,"u":"vigil's%20walls%20rise%20anew!_lol","p":69,"h":1,"n":"Vigil's Walls Rise Anew!"},{"c":0,"s":52,"id":5179,"u":"warding%20light_lol","p":101,"h":1,"n":"Warding Light"},{"c":0,"s":52,"id":5180,"u":"wish%20alchemy_lol","p":20,"h":1,"n":"Wish Alchemy"},{"c":0,"s":0,"id":5181,"u":"absorb%20toxin_lome","p":122,"h":1,"n":"Absorb Toxin"},{"c":0,"s":0,"id":5182,"u":"ambush%20awareness_lome","p":118,"h":1,"n":"Ambush Awareness"},{"c":0,"s":0,"id":5183,"u":"anadi%20lore_lome","p":106,"h":1,"n":"Anadi Lore"},{"c":0,"s":0,"id":5184,"u":"ancestor's%20rage_lome","p":114,"h":1,"n":"Ancestor's Rage"},{"c":0,"s":0,"id":5185,"u":"arcane%20sight_lome","p":118,"h":1,"n":"Arcane Sight"},{"c":0,"s":0,"id":5186,"u":"bone%20rider_lome","p":205,"h":1,"n":"Bone Rider"},{"c":0,"s":0,"id":5187,"u":"breath%20like%20honey_lome","p":114,"h":1,"n":"Breath Like Honey"},{"c":0,"s":0,"id":5188,"u":"bristle_lome","p":125,"h":1,"n":"Bristle"},{"c":0,"s":0,"id":5189,"u":"catch%20the%20details_lome","p":117,"h":1,"n":"Catch The Details"},{"c":0,"s":0,"id":5190,"u":"ceremony%20of%20aeon's%20guidance_lome","p":110,"h":1,"n":"Ceremony Of Aeon's Guidance"},{"c":0,"s":0,"id":5191,"u":"ceremony%20of%20aeon's%20shield_lome","p":110,"h":1,"n":"Ceremony Of Aeon's Shield"},{"c":0,"s":0,"id":5192,"u":"ceremony%20of%20fortification_lome","p":110,"h":1,"n":"Ceremony Of Fortification"},{"c":0,"s":0,"id":5193,"u":"ceremony%20of%20growth_lome","p":110,"h":1,"n":"Ceremony Of Growth"},{"c":0,"s":0,"id":5194,"u":"ceremony%20of%20knowledge_lome","p":109,"h":1,"n":"Ceremony Of Knowledge"},{"c":0,"s":0,"id":5195,"u":"ceremony%20of%20protection_lome","p":109,"h":1,"n":"Ceremony Of Protection"},{"c":0,"s":0,"id":5196,"u":"ceremony%20of%20sun's%20gift_lome","p":110,"h":1,"n":"Ceremony Of Sun's Gift"},{"c":0,"s":0,"id":5197,"u":"ceremony%20of%20sunlight_lome","p":109,"h":1,"n":"Ceremony Of Sunlight"},{"c":0,"s":0,"id":5198,"u":"ceremony%20of%20the%20evened%20hand_lome","p":109,"h":1,"n":"Ceremony Of The Evened Hand"},{"c":0,"s":0,"id":5199,"u":"ceremony%20of%20the%20strengthened%20hand_lome","p":110,"h":1,"n":"Ceremony Of The Strengthened Hand"},{"c":0,"s":0,"id":5200,"u":"conrasu%20lore_lome","p":109,"h":1,"n":"Conrasu Lore"},{"c":0,"s":0,"id":5201,"u":"conrasu%20weapon%20expertise_lome","p":110,"h":1,"n":"Conrasu Weapon Expertise"},{"c":0,"s":0,"id":5202,"u":"conrasu%20weapon%20familiarity_lome","p":109,"h":1,"n":"Conrasu Weapon Familiarity"},{"c":0,"s":0,"id":5203,"u":"conrasu%20weapon%20understanding_lome","p":110,"h":1,"n":"Conrasu Weapon Understanding"},{"c":0,"s":0,"id":5204,"u":"constant%20gaze_lome","p":118,"h":1,"n":"Constant Gaze"},{"c":0,"s":0,"id":5205,"u":"crunch_lome","p":113,"h":1,"n":"Crunch"},{"c":0,"s":0,"id":5206,"u":"defensive%20instincts_lome","p":118,"h":1,"n":"Defensive Instincts"},{"c":0,"s":0,"id":5207,"u":"delver_lome","p":126,"h":1,"n":"Delver"},{"c":0,"s":0,"id":5208,"u":"demonbane%20warrior_lome","p":60,"h":1,"n":"Demonbane Warrior"},{"c":0,"s":0,"id":5209,"u":"demonblood%20frenzy_lome","p":94,"h":1,"n":"Demonblood Frenzy"},{"c":0,"s":0,"id":5210,"u":"dig%20up%20secrets_lome","p":126,"h":1,"n":"Dig Up Secrets"},{"c":0,"s":0,"id":5211,"u":"disorienting%20venom_lome","p":106,"h":1,"n":"Disorienting Venom"},{"c":0,"s":0,"id":5212,"u":"distant%20cackle_lome","p":113,"h":1,"n":"Distant Cackle"},{"c":0,"s":0,"id":5213,"u":"eidetic%20ear_lome","p":125,"h":1,"n":"Eidetic Ear"},{"c":0,"s":0,"id":5214,"u":"envenomed%20edge_lome","p":122,"h":1,"n":"Envenomed Edge"},{"c":0,"s":0,"id":5215,"u":"fountain%20of%20secrets_lome","p":126,"h":1,"n":"Fountain Of Secrets"},{"c":0,"s":0,"id":5216,"u":"friendform_lome","p":106,"h":1,"n":"Friendform"},{"c":0,"s":0,"id":5217,"u":"gnoll%20lore_lome","p":113,"h":1,"n":"Gnoll Lore"},{"c":0,"s":0,"id":5218,"u":"gnoll%20weapon%20expertise_lome","p":114,"h":1,"n":"Gnoll Weapon Expertise"},{"c":0,"s":0,"id":5219,"u":"gnoll%20weapon%20familiarity_lome","p":113,"h":1,"n":"Gnoll Weapon Familiarity"},{"c":0,"s":0,"id":5220,"u":"gnoll%20weapon%20practicality_lome","p":114,"h":1,"n":"Gnoll Weapon Practicality"},{"c":0,"s":0,"id":5221,"u":"goloma%20courage_lome","p":117,"h":1,"n":"Goloma Courage"},{"c":0,"s":0,"id":5222,"u":"goloma%20lore_lome","p":117,"h":1,"n":"Goloma Lore"},{"c":0,"s":0,"id":5223,"u":"grandmother's%20wisdom_lome","p":114,"h":1,"n":"Grandmother's Wisdom"},{"c":0,"s":0,"id":5224,"u":"grippli%20glide_lome","p":121,"h":1,"n":"Grippli Glide"},{"c":0,"s":0,"id":5225,"u":"grippli%20lore_lome","p":120,"h":1,"n":"Grippli Lore"},{"c":0,"s":0,"id":5226,"u":"grippli%20weapon%20expertise_lome","p":122,"h":1,"n":"Grippli Weapon Expertise"},{"c":0,"s":0,"id":5227,"u":"grippli%20weapon%20familiarity_lome","p":120,"h":1,"n":"Grippli Weapon Familiarity"},{"c":0,"s":0,"id":5228,"u":"grippli%20weapon%20innovator_lome","p":121,"h":1,"n":"Grippli Weapon Innovator"},{"c":0,"s":0,"id":5229,"u":"hunter's%20defense_lome","p":121,"h":1,"n":"Hunter's Defense"},{"c":0,"s":0,"id":5230,"u":"hunter's%20fangs_lome","p":106,"h":1,"n":"Hunter's Fangs"},{"c":0,"s":0,"id":5231,"u":"hybrid%20shape_lome","p":106,"h":1,"n":"Hybrid Shape"},{"c":0,"s":0,"id":5232,"u":"hyena%20familiar_lome","p":113,"h":1,"n":"Hyena Familiar"},{"c":0,"s":0,"id":5233,"u":"inured%20to%20the%20heat_lome","p":125,"h":1,"n":"Inured To The Heat"},{"c":0,"s":0,"id":5234,"u":"jungle%20strider_lome","p":121,"h":1,"n":"Jungle Strider"},{"c":0,"s":0,"id":5235,"u":"laughing%20gnoll_lome","p":114,"h":1,"n":"Laughing Gnoll"},{"c":0,"s":0,"id":5236,"u":"long%20tongue_lome","p":121,"h":1,"n":"Long Tongue"},{"c":0,"s":0,"id":5237,"u":"nocturnal%20grippli_lome","p":121,"h":1,"n":"Nocturnal Grippli"},{"c":0,"s":0,"id":5238,"u":"none%20shall%20know_lome","p":126,"h":1,"n":"None Shall Know"},{"c":0,"s":0,"id":5239,"u":"pack%20hunter_lome","p":113,"h":1,"n":"Pack Hunter"},{"c":0,"s":0,"id":5240,"u":"pack%20stalker_lome","p":114,"h":1,"n":"Pack Stalker"},{"c":0,"s":0,"id":5241,"u":"pierce%20the%20darkness_lome","p":117,"h":1,"n":"Pierce The Darkness"},{"c":0,"s":0,"id":5242,"u":"piercing%20quills_lome","p":126,"h":1,"n":"Piercing Quills"},{"c":0,"s":0,"id":5243,"u":"protective%20claws_lome","p":118,"h":1,"n":"Protective Claws"},{"c":0,"s":0,"id":5244,"u":"quill%20spray_lome","p":126,"h":1,"n":"Quill Spray"},{"c":0,"s":0,"id":5245,"u":"reassuring%20presence_lome","p":106,"h":1,"n":"Reassuring Presence"},{"c":0,"s":0,"id":5246,"u":"renewing%20quills_lome","p":126,"h":1,"n":"Renewing Quills"},{"c":0,"s":0,"id":5247,"u":"ricocheting%20leap_lome","p":122,"h":1,"n":"Ricocheting Leap"},{"c":0,"s":0,"id":5248,"u":"right-hand%20blood_lome","p":114,"h":1,"n":"Right-hand Blood"},{"c":0,"s":0,"id":5249,"u":"secret%20eyes_lome","p":126,"h":1,"n":"Secret Eyes"},{"c":0,"s":0,"id":5250,"u":"see%20the%20unseen_lome","p":118,"h":1,"n":"See The Unseen"},{"c":0,"s":0,"id":5251,"u":"sensitive%20nose_lome","p":113,"h":1,"n":"Sensitive Nose"},{"c":0,"s":0,"id":5252,"u":"shisk%20lore_lome","p":125,"h":1,"n":"Shisk Lore"},{"c":0,"s":0,"id":5253,"u":"skittertalk_lome","p":106,"h":1,"n":"Skittertalk"},{"c":0,"s":0,"id":5254,"u":"spelunker_lome","p":125,"h":1,"n":"Spelunker"},{"c":0,"s":0,"id":5255,"u":"spine%20stabber_lome","p":125,"h":1,"n":"Spine Stabber"},{"c":0,"s":0,"id":5256,"u":"strand%20strider_lome","p":106,"h":1,"n":"Strand Strider"},{"c":0,"s":0,"id":5257,"u":"studious%20adept_lome","p":106,"h":1,"n":"Studious Adept"},{"c":0,"s":0,"id":5258,"u":"studious%20magic_lome","p":106,"h":1,"n":"Studious Magic"},{"c":0,"s":0,"id":5259,"u":"tenacious%20net_lome","p":122,"h":1,"n":"Tenacious Net"},{"c":0,"s":0,"id":5260,"u":"tongue%20tether_lome","p":122,"h":1,"n":"Tongue Tether"},{"c":0,"s":0,"id":5261,"u":"true%20gaze_lome","p":118,"h":1,"n":"True Gaze"},{"c":0,"s":0,"id":5262,"u":"watchful%20gaze_lome","p":117,"h":1,"n":"Watchful Gaze"},{"c":0,"s":0,"id":5263,"u":"web%20hunter_lome","p":106,"h":1,"n":"Web Hunter"},{"c":0,"s":0,"id":5264,"u":"web%20walker_lome","p":106,"h":1,"n":"Web Walker"},{"c":0,"s":0,"id":5265,"u":"web%20weaver_lome","p":106,"h":1,"n":"Web Weaver"},{"c":0,"s":0,"id":5266,"u":"webslinger_lome","p":106,"h":1,"n":"Webslinger"},{"c":0,"s":47,"id":5267,"u":"archaeologist's%20warning_lopsg","p":41,"h":1,"n":"Archaeologist's Warning"},{"c":0,"s":47,"id":5268,"u":"armored%20exercise_lopsg","p":53,"h":1,"n":"Armored Exercise"},{"c":0,"s":47,"id":5269,"u":"armored%20rest_lopsg","p":52,"h":1,"n":"Armored Rest"},{"c":0,"s":47,"id":5270,"u":"bestiary%20scholar_lopsg","p":45,"h":1,"n":"Bestiary Scholar"},{"c":0,"s":47,"id":5271,"u":"blazing%20talon%20surge_lopsg","p":119,"h":1,"n":"Blazing Talon Surge"},{"c":0,"s":47,"id":5272,"u":"cautious%20delver_lopsg","p":45,"h":1,"n":"Cautious Delver"},{"c":0,"s":47,"id":5273,"u":"communal%20sustain_lopsg","p":49,"h":1,"n":"Communal Sustain"},{"c":0,"s":47,"id":5274,"u":"craft%20facsimile_lopsg","p":41,"h":1,"n":"Craft Facsimile"},{"c":0,"s":47,"id":5275,"u":"dead%20reckoning_lopsg","p":41,"h":1,"n":"Dead Reckoning"},{"c":0,"s":47,"id":5276,"u":"determined%20lore%20seeker_lopsg","p":46,"h":1,"n":"Determined Lore Seeker"},{"c":0,"s":47,"id":5277,"u":"discerning%20strike_lopsg","p":120,"h":1,"n":"Discerning Strike"},{"c":0,"s":47,"id":5278,"u":"diverse%20recognition_lopsg","p":41,"h":1,"n":"Diverse Recognition"},{"c":0,"s":47,"id":5279,"u":"eidetic%20memorization_lopsg","p":41,"h":1,"n":"Eidetic Memorization"},{"c":0,"s":47,"id":5280,"u":"emergency%20medical%20assistance_lopsg","p":52,"h":1,"n":"Emergency Medical Assistance"},{"c":0,"s":47,"id":5281,"u":"environmental%20explorer_lopsg","p":41,"h":1,"n":"Environmental Explorer"},{"c":0,"s":47,"id":5282,"u":"explosive%20death%20drop_lopsg","p":119,"h":1,"n":"Explosive Death Drop"},{"c":0,"s":47,"id":5283,"u":"familiar%20form_lopsg","p":49,"h":1,"n":"Familiar Form"},{"c":0,"s":47,"id":5284,"u":"fane's%20escape_lopsg","p":119,"h":1,"n":"Fane's Escape"},{"c":0,"s":47,"id":5285,"u":"fane's%20fourberie_lopsg","p":119,"h":1,"n":"Fane's Fourberie"},{"c":0,"s":47,"id":5286,"u":"farabellus%20flip_lopsg","p":120,"h":1,"n":"Farabellus Flip"},{"c":0,"s":47,"id":5287,"u":"focus%20ally_lopsg","p":53,"h":1,"n":"Focus Ally"},{"c":0,"s":47,"id":5288,"u":"foolproof%20instructions_lopsg","p":45,"h":1,"n":"Foolproof Instructions"},{"c":0,"s":47,"id":5289,"u":"forceful%20shot_lopsg","p":53,"h":1,"n":"Forceful Shot"},{"c":0,"s":47,"id":5290,"u":"glyph%20expert_lopsg","p":49,"h":1,"n":"Glyph Expert"},{"c":0,"s":47,"id":5291,"u":"improvised%20crafting_lopsg","p":52,"h":1,"n":"Improvised Crafting"},{"c":0,"s":47,"id":5292,"u":"innate%20magic%20intuition_lopsg","p":45,"h":1,"n":"Innate Magic Intuition"},{"c":0,"s":47,"id":5293,"u":"kreighton's%20cognitive%20crossover_lopsg","p":120,"h":1,"n":"Kreighton's Cognitive Crossover"},{"c":0,"s":47,"id":5294,"u":"magic%20finder_lopsg","p":45,"h":1,"n":"Magic Finder"},{"c":0,"s":47,"id":5295,"u":"martial%20exercise_lopsg","p":52,"h":1,"n":"Martial Exercise"},{"c":0,"s":47,"id":5296,"u":"master's%20counterspell_lopsg","p":49,"h":1,"n":"Master's Counterspell"},{"c":0,"s":47,"id":5297,"u":"masterful%20obfuscation_lopsg","p":45,"h":1,"n":"Masterful Obfuscation"},{"c":0,"s":47,"id":5298,"u":"mobile%20magical%20combat_lopsg","p":49,"h":1,"n":"Mobile Magical Combat"},{"c":0,"s":47,"id":5299,"u":"observant%20explorer_lopsg","p":41,"h":1,"n":"Observant Explorer"},{"c":0,"s":47,"id":5300,"u":"physical%20training_lopsg","p":52,"h":1,"n":"Physical Training"},{"c":0,"s":47,"id":5301,"u":"practiced%20defender_lopsg","p":52,"h":1,"n":"Practiced Defender"},{"c":0,"s":47,"id":5302,"u":"protect%20ally_lopsg","p":52,"h":1,"n":"Protect Ally"},{"c":0,"s":47,"id":5303,"u":"quick%20stow_lopsg","p":52,"h":1,"n":"Quick Stow"},{"c":0,"s":47,"id":5304,"u":"rain%20of%20embers%20stance_lopsg","p":119,"h":1,"n":"Rain Of Embers Stance"},{"c":0,"s":47,"id":5305,"u":"recollect%20studies_lopsg","p":52,"h":1,"n":"Recollect Studies"},{"c":0,"s":47,"id":5306,"u":"recover%20spell_lopsg","p":49,"h":1,"n":"Recover Spell"},{"c":0,"s":47,"id":5307,"u":"reflexive%20grip_lopsg","p":52,"h":1,"n":"Reflexive Grip"},{"c":0,"s":47,"id":5308,"u":"remember%20your%20training_lopsg","p":41,"h":1,"n":"Remember Your Training"},{"c":0,"s":47,"id":5309,"u":"retain%20absorbed%20spell_lopsg","p":49,"h":1,"n":"Retain Absorbed Spell"},{"c":0,"s":47,"id":5310,"u":"rugged%20survivalist_lopsg","p":52,"h":1,"n":"Rugged Survivalist"},{"c":0,"s":47,"id":5311,"u":"snap%20out%20of%20it!_lopsg","p":41,"h":1,"n":"Snap Out Of It!"},{"c":0,"s":47,"id":5312,"u":"spellmaster's%20tenacity_lopsg","p":49,"h":1,"n":"Spellmaster's Tenacity"},{"c":0,"s":47,"id":5313,"u":"spellmaster's%20ward_lopsg","p":49,"h":1,"n":"Spellmaster's Ward"},{"c":0,"s":47,"id":5314,"u":"spiritual%20explorer_lopsg","p":41,"h":1,"n":"Spiritual Explorer"},{"c":0,"s":47,"id":5315,"u":"stave%20off%20catastrophe_lopsg","p":53,"h":1,"n":"Stave Off Catastrophe"},{"c":0,"s":47,"id":5316,"u":"stella's%20stab%20and%20snag_lopsg","p":119,"h":1,"n":"Stella's Stab And Snag"},{"c":0,"s":47,"id":5317,"u":"swap%20investment_lopsg","p":41,"h":1,"n":"Swap Investment"},{"c":0,"s":47,"id":5318,"u":"tense%20negotiator_lopsg","p":53,"h":1,"n":"Tense Negotiator"},{"c":0,"s":47,"id":5319,"u":"transcribe%20moment_lopsg","p":45,"h":1,"n":"Transcribe Moment"},{"c":0,"s":47,"id":5320,"u":"ward%20mind_lopsg","p":46,"h":1,"n":"Ward Mind"},{"c":0,"s":47,"id":5321,"u":"watch%20and%20learn_lopsg","p":41,"h":1,"n":"Watch And Learn"},{"c":0,"s":47,"id":5322,"u":"wayfinder%20resonance%20infiltrator_lopsg","p":41,"h":1,"n":"Wayfinder Resonance Infiltrator"},{"c":0,"s":47,"id":5323,"u":"westyr's%20wayfinder%20repository_lopsg","p":120,"h":1,"n":"Westyr's Wayfinder Repository"},{"c":0,"s":7,"id":5324,"u":"aerial%20piledriver_lotgb","p":127,"h":1,"n":"Aerial Piledriver"},{"c":0,"s":7,"id":5325,"u":"agile%20hand_lotgb","p":122,"h":1,"n":"Agile Hand"},{"c":0,"s":7,"id":5326,"u":"animate%20net_lotgb","p":123,"h":1,"n":"Animate Net"},{"c":0,"s":7,"id":5327,"u":"barrier%20shield_lotgb","p":122,"h":1,"n":"Barrier Shield"},{"c":0,"s":7,"id":5328,"u":"basic%20captivator%20spellcasting_lotgb","p":120,"h":1,"n":"Basic Captivator Spellcasting"},{"c":0,"s":7,"id":5329,"u":"beacon%20mark_lotgb","p":124,"h":1,"n":"Beacon Mark"},{"c":0,"s":7,"id":5330,"u":"captivating%20intensity_lotgb","p":121,"h":1,"n":"Captivating Intensity"},{"c":0,"s":7,"id":5331,"u":"captivator%20dedication_lotgb","p":120,"h":1,"n":"Captivator Dedication"},{"c":0,"s":7,"id":5332,"u":"choking%20smoke_lotgb","p":125,"h":1,"n":"Choking Smoke"},{"c":0,"s":7,"id":5333,"u":"clinch%20strike_lotgb","p":127,"h":1,"n":"Clinch Strike"},{"c":0,"s":7,"id":5334,"u":"confounding%20image_lotgb","p":123,"h":1,"n":"Confounding Image"},{"c":0,"s":7,"id":5335,"u":"countercharm_lotgb","p":121,"h":1,"n":"Countercharm"},{"c":0,"s":7,"id":5336,"u":"cunning%20tinker_lotgb","p":64,"h":1,"n":"Cunning Tinker"},{"c":0,"s":7,"id":5337,"u":"directed%20poison_lotgb","p":125,"h":1,"n":"Directed Poison"},{"c":0,"s":7,"id":5338,"u":"disengaging%20twist_lotgb","p":126,"h":1,"n":"Disengaging Twist"},{"c":0,"s":7,"id":5339,"u":"disk%20rider_lotgb","p":123,"h":1,"n":"Disk Rider"},{"c":0,"s":7,"id":5340,"u":"drenching%20mist_lotgb","p":123,"h":1,"n":"Drenching Mist"},{"c":0,"s":7,"id":5341,"u":"effortless%20captivation_lotgb","p":121,"h":1,"n":"Effortless Captivation"},{"c":0,"s":7,"id":5342,"u":"elbow%20breaker_lotgb","p":126,"h":1,"n":"Elbow Breaker"},{"c":0,"s":7,"id":5343,"u":"expert%20captivator%20spellcasting_lotgb","p":121,"h":1,"n":"Expert Captivator Spellcasting"},{"c":0,"s":7,"id":5344,"u":"forceful%20push_lotgb","p":122,"h":1,"n":"Forceful Push"},{"c":0,"s":7,"id":5345,"u":"form%20lock_lotgb","p":127,"h":1,"n":"Form Lock"},{"c":0,"s":7,"id":5346,"u":"harmless%20doll_lotgb","p":63,"h":1,"n":"Harmless Doll"},{"c":0,"s":7,"id":5347,"u":"heightened%20captivation_lotgb","p":121,"h":1,"n":"Heightened Captivation"},{"c":0,"s":7,"id":5348,"u":"helpful%20poppet_lotgb","p":63,"h":1,"n":"Helpful Poppet"},{"c":0,"s":7,"id":5349,"u":"histrionic%20injury_lotgb","p":64,"h":1,"n":"Histrionic Injury"},{"c":0,"s":7,"id":5350,"u":"impossible%20gossip_lotgb","p":65,"h":1,"n":"Impossible Gossip"},{"c":0,"s":7,"id":5351,"u":"inescapable%20grasp_lotgb","p":127,"h":1,"n":"Inescapable Grasp"},{"c":0,"s":7,"id":5352,"u":"larcenous%20hand_lotgb","p":124,"h":1,"n":"Larcenous Hand"},{"c":0,"s":7,"id":5353,"u":"lingering%20flames_lotgb","p":124,"h":1,"n":"Lingering Flames"},{"c":0,"s":7,"id":5354,"u":"look%20again_lotgb","p":121,"h":1,"n":"Look Again"},{"c":0,"s":7,"id":5355,"u":"master%20captivator%20spellcasting_lotgb","p":121,"h":1,"n":"Master Captivator Spellcasting"},{"c":0,"s":7,"id":5356,"u":"nothing%20but%20fluff_lotgb","p":64,"h":1,"n":"Nothing But Fluff"},{"c":0,"s":7,"id":5357,"u":"obscured%20terrain_lotgb","p":124,"h":1,"n":"Obscured Terrain"},{"c":0,"s":7,"id":5358,"u":"quadruped_lotgb","p":63,"h":1,"n":"Quadruped"},{"c":0,"s":7,"id":5359,"u":"reactive%20charm_lotgb","p":121,"h":1,"n":"Reactive Charm"},{"c":0,"s":7,"id":5360,"u":"reanimating%20spark_lotgb","p":65,"h":1,"n":"Reanimating Spark"},{"c":0,"s":7,"id":5361,"u":"restitch_lotgb","p":65,"h":1,"n":"Restitch"},{"c":0,"s":7,"id":5362,"u":"running%20tackle_lotgb","p":127,"h":1,"n":"Running Tackle"},{"c":0,"s":7,"id":5363,"u":"scaling%20poppet_lotgb","p":65,"h":1,"n":"Scaling Poppet"},{"c":0,"s":7,"id":5364,"u":"scattered%20fire_lotgb","p":124,"h":1,"n":"Scattered Fire"},{"c":0,"s":7,"id":5365,"u":"sealed%20poppet_lotgb","p":64,"h":1,"n":"Sealed Poppet"},{"c":0,"s":7,"id":5366,"u":"shining%20arms_lotgb","p":122,"h":1,"n":"Shining Arms"},{"c":0,"s":7,"id":5367,"u":"shiny%20button%20eyes_lotgb","p":64,"h":1,"n":"Shiny Button Eyes"},{"c":0,"s":7,"id":5368,"u":"siphoning%20touch_lotgb","p":124,"h":1,"n":"Siphoning Touch"},{"c":0,"s":7,"id":5369,"u":"smoldering%20explosion_lotgb","p":124,"h":1,"n":"Smoldering Explosion"},{"c":0,"s":7,"id":5370,"u":"soaring%20poppet_lotgb","p":65,"h":1,"n":"Soaring Poppet"},{"c":0,"s":7,"id":5371,"u":"spark%20of%20independence_lotgb","p":64,"h":1,"n":"Spark Of Independence"},{"c":0,"s":7,"id":5372,"u":"spell%20trickster%20dedication_lotgb","p":122,"h":1,"n":"Spell Trickster Dedication"},{"c":0,"s":7,"id":5373,"u":"spinebreaker_lotgb","p":127,"h":1,"n":"Spinebreaker"},{"c":0,"s":7,"id":5374,"u":"squirm%20free_lotgb","p":65,"h":1,"n":"Squirm Free"},{"c":0,"s":7,"id":5375,"u":"steal%20vitality_lotgb","p":125,"h":1,"n":"Steal Vitality"},{"c":0,"s":7,"id":5376,"u":"strangle_lotgb","p":127,"h":1,"n":"Strangle"},{"c":0,"s":7,"id":5377,"u":"submission%20hold_lotgb","p":127,"h":1,"n":"Submission Hold"},{"c":0,"s":7,"id":5378,"u":"summon%20ensemble_lotgb","p":123,"h":1,"n":"Summon Ensemble"},{"c":0,"s":7,"id":5379,"u":"suplex_lotgb","p":127,"h":1,"n":"Suplex"},{"c":0,"s":7,"id":5380,"u":"surrounding%20flames_lotgb","p":125,"h":1,"n":"Surrounding Flames"},{"c":0,"s":7,"id":5381,"u":"swimming%20poppet_lotgb","p":65,"h":1,"n":"Swimming Poppet"},{"c":0,"s":7,"id":5382,"u":"toppling%20tentacles_lotgb","p":125,"h":1,"n":"Toppling Tentacles"},{"c":0,"s":7,"id":5383,"u":"tracing%20sigil_lotgb","p":123,"h":1,"n":"Tracing Sigil"},{"c":0,"s":7,"id":5384,"u":"uneasy%20rest_lotgb","p":124,"h":1,"n":"Uneasy Rest"},{"c":0,"s":7,"id":5385,"u":"volatile%20grease_lotgb","p":124,"h":1,"n":"Volatile Grease"},{"c":0,"s":7,"id":5386,"u":"wash%20out_lotgb","p":64,"h":1,"n":"Wash Out"},{"c":0,"s":7,"id":5387,"u":"wheedle%20and%20jig_lotgb","p":65,"h":1,"n":"Wheedle And Jig"},{"c":0,"s":7,"id":5388,"u":"wild%20lights_lotgb","p":123,"h":1,"n":"Wild Lights"},{"c":0,"s":7,"id":5389,"u":"wrestler%20dedication_lotgb","p":126,"h":1,"n":"Wrestler Dedication"},{"c":0,"s":48,"id":5390,"u":"advanced%20red%20mantis%20magic_lowg","p":71,"h":1,"n":"Advanced Red Mantis Magic"},{"c":0,"s":48,"id":5391,"u":"aldori%20duelist%20dedication_lowg","p":35,"h":1,"n":"Aldori Duelist Dedication"},{"c":0,"s":48,"id":5392,"u":"aldori%20parry_lowg","p":35,"h":1,"n":"Aldori Parry"},{"c":0,"s":48,"id":5393,"u":"aldori%20riposte_lowg","p":35,"h":1,"n":"Aldori Riposte"},{"c":0,"s":48,"id":5394,"u":"ardent%20armiger_lowg","p":107,"h":1,"n":"Ardent Armiger"},{"c":0,"s":48,"id":5395,"u":"armiger's%20mobility_lowg","p":107,"h":1,"n":"Armiger's Mobility"},{"c":0,"s":48,"id":5396,"u":"attunement%20to%20stone_lowg","p":59,"h":1,"n":"Attunement To Stone"},{"c":0,"s":48,"id":5397,"u":"basic%20red%20mantis%20magic_lowg","p":71,"h":1,"n":"Basic Red Mantis Magic"},{"c":0,"s":48,"id":5398,"u":"careful%20explorer_lowg","p":23,"h":1,"n":"Careful Explorer"},{"c":0,"s":48,"id":5399,"u":"crimson%20shroud_lowg","p":71,"h":1,"n":"Crimson Shroud"},{"c":0,"s":48,"id":5400,"u":"crowd%20mastery_lowg","p":131,"h":1,"n":"Crowd Mastery"},{"c":0,"s":48,"id":5401,"u":"deft%20cooperation_lowg","p":23,"h":1,"n":"Deft Cooperation"},{"c":0,"s":48,"id":5402,"u":"diabolic%20certitude_lowg","p":107,"h":1,"n":"Diabolic Certitude"},{"c":0,"s":48,"id":5403,"u":"duelist's%20edge_lowg","p":35,"h":1,"n":"Duelist's Edge"},{"c":0,"s":48,"id":5404,"u":"expeditious%20advance_lowg","p":131,"h":1,"n":"Expeditious Advance"},{"c":0,"s":48,"id":5405,"u":"eye%20of%20ozem_lowg","p":47,"h":1,"n":"Eye Of Ozem"},{"c":0,"s":48,"id":5406,"u":"eye%20of%20the%20arclords_lowg","p":81,"h":1,"n":"Eye Of The Arclords"},{"c":0,"s":48,"id":5407,"u":"flicker_lowg","p":131,"h":1,"n":"Flicker"},{"c":0,"s":48,"id":5408,"u":"fortified%20flesh_lowg","p":59,"h":1,"n":"Fortified Flesh"},{"c":0,"s":48,"id":5409,"u":"godless%20healing_lowg","p":57,"h":1,"n":"Godless Healing"},{"c":0,"s":48,"id":5410,"u":"grave%20sense_lowg","p":47,"h":1,"n":"Grave Sense"},{"c":0,"s":48,"id":5411,"u":"greater%20spell%20runes_lowg","p":119,"h":1,"n":"Greater Spell Runes"},{"c":0,"s":48,"id":5412,"u":"hellknight%20armiger%20dedication_lowg","p":107,"h":1,"n":"Hellknight Armiger Dedication"},{"c":0,"s":48,"id":5413,"u":"judgment%20of%20the%20monolith_lowg","p":59,"h":1,"n":"Judgment Of The Monolith"},{"c":0,"s":48,"id":5414,"u":"ka%20stone%20ritual_lowg","p":59,"h":1,"n":"Ka Stone Ritual"},{"c":0,"s":48,"id":5415,"u":"lastwall%20sentry%20dedication_lowg","p":47,"h":1,"n":"Lastwall Sentry Dedication"},{"c":0,"s":48,"id":5416,"u":"lastwall%20warden_lowg","p":47,"h":1,"n":"Lastwall Warden"},{"c":0,"s":48,"id":5417,"u":"lion%20blade%20dedication_lowg","p":131,"h":1,"n":"Lion Blade Dedication"},{"c":0,"s":48,"id":5418,"u":"living%20monolith%20dedication_lowg","p":59,"h":1,"n":"Living Monolith Dedication"},{"c":0,"s":48,"id":5419,"u":"living%20rune_lowg","p":119,"h":1,"n":"Living Rune"},{"c":0,"s":48,"id":5420,"u":"lost%20in%20the%20crowd_lowg","p":131,"h":1,"n":"Lost In The Crowd"},{"c":0,"s":48,"id":5421,"u":"magic%20warrior%20aspect_lowg","p":95,"h":1,"n":"Magic Warrior Aspect"},{"c":0,"s":48,"id":5422,"u":"magic%20warrior%20dedication_lowg","p":95,"h":1,"n":"Magic Warrior Dedication"},{"c":0,"s":48,"id":5423,"u":"magic%20warrior%20transformation_lowg","p":95,"h":1,"n":"Magic Warrior Transformation"},{"c":0,"s":48,"id":5424,"u":"mantis%20form_lowg","p":71,"h":1,"n":"Mantis Form"},{"c":0,"s":48,"id":5425,"u":"mortification_lowg","p":107,"h":1,"n":"Mortification"},{"c":0,"s":48,"id":5426,"u":"nameless%20anonymity_lowg","p":95,"h":1,"n":"Nameless Anonymity"},{"c":0,"s":48,"id":5427,"u":"necromantic%20resistance_lowg","p":47,"h":1,"n":"Necromantic Resistance"},{"c":0,"s":48,"id":5428,"u":"necromantic%20tenacity_lowg","p":47,"h":1,"n":"Necromantic Tenacity"},{"c":0,"s":48,"id":5429,"u":"pathfinder%20agent%20dedication_lowg","p":23,"h":1,"n":"Pathfinder Agent Dedication"},{"c":0,"s":48,"id":5430,"u":"perfect%20ki%20adept_lowg","p":83,"h":1,"n":"Perfect Ki Adept"},{"c":0,"s":48,"id":5431,"u":"perfect%20strike_lowg","p":83,"h":1,"n":"Perfect Strike"},{"c":0,"s":48,"id":5432,"u":"red%20mantis%20assassin%20dedication_lowg","p":71,"h":1,"n":"Red Mantis Assassin Dedication"},{"c":0,"s":48,"id":5433,"u":"runescarred%20dedication_lowg","p":119,"h":1,"n":"Runescarred Dedication"},{"c":0,"s":48,"id":5434,"u":"saving%20slash_lowg","p":35,"h":1,"n":"Saving Slash"},{"c":0,"s":48,"id":5435,"u":"spell%20runes_lowg","p":119,"h":1,"n":"Spell Runes"},{"c":0,"s":48,"id":5436,"u":"spy's%20countermeasures_lowg","p":131,"h":1,"n":"Spy's Countermeasures"},{"c":0,"s":48,"id":5437,"u":"stone%20blood_lowg","p":59,"h":1,"n":"Stone Blood"},{"c":0,"s":48,"id":5438,"u":"stone%20communion_lowg","p":59,"h":1,"n":"Stone Communion"},{"c":0,"s":48,"id":5439,"u":"student%20of%20perfection%20dedication_lowg","p":83,"h":1,"n":"Student of Perfection Dedication"},{"c":0,"s":48,"id":5440,"u":"thorough%20reports_lowg","p":23,"h":1,"n":"Thorough Reports"},{"c":0,"s":48,"id":5441,"u":"unnerving%20prowess_lowg","p":35,"h":1,"n":"Unnerving Prowess"},{"c":0,"s":48,"id":5442,"u":"warding%20rune_lowg","p":119,"h":1,"n":"Warding Rune"},{"c":0,"s":48,"id":5443,"u":"wayfinder%20resonance%20tinkerer_lowg","p":23,"h":1,"n":"Wayfinder Resonance Tinkerer"},{"c":0,"s":37,"id":5444,"u":"cringe_ltiba","p":10,"h":1,"n":"Cringe"},{"c":0,"s":37,"id":5445,"u":"kobold%20lore_ltiba","p":10,"h":1,"n":"Kobold Lore"},{"c":0,"s":37,"id":5446,"u":"scamper_ltiba","p":10,"h":1,"n":"Scamper"},{"c":0,"s":38,"id":5447,"u":"disturbing%20defense_sli","p":59,"h":1,"n":"Disturbing Defense"},{"c":0,"s":38,"id":5448,"u":"hideous%20ululation_sli","p":59,"h":1,"n":"Hideous Ululation"},{"c":0,"s":38,"id":5449,"u":"ooze%20empathy_sli","p":59,"h":1,"n":"Ooze Empathy"},{"c":0,"s":38,"id":5450,"u":"oozemorph%20dedication_sli","p":59,"h":1,"n":"Oozemorph Dedication"},{"c":0,"s":38,"id":5451,"u":"peculiar%20anatomy_sli","p":60,"h":1,"n":"Peculiar Anatomy"},{"c":0,"s":38,"id":5452,"u":"rubbery%20skin_sli","p":59,"h":1,"n":"Rubbery Skin"},{"c":0,"s":38,"id":5453,"u":"uncanny%20suction_sli","p":60,"h":1,"n":"Uncanny Suction"},{"c":0,"s":38,"id":5454,"u":"vacate%20vision_sli","p":59,"h":1,"n":"Vacate Vision"},{"c":0,"s":49,"id":5455,"u":"advanced%20elemental%20spell_som","p":199,"h":1,"n":"Advanced Elemental Spell"},{"c":0,"s":49,"id":5456,"u":"advanced%20martial%20magic_som","p":75,"h":1,"n":"Advanced Martial Magic"},{"c":0,"s":49,"id":5457,"u":"advanced%20synergy_som","p":77,"h":1,"n":"Advanced Synergy"},{"c":0,"s":49,"id":5458,"u":"advanced%20weaponry_som","p":67,"h":1,"n":"Advanced Weaponry"},{"c":0,"s":49,"id":5459,"u":"aeon%20resonance_som","p":240,"h":1,"n":"Aeon Resonance"},{"c":0,"s":49,"id":5460,"u":"airborne%20form_som","p":72,"h":1,"n":"Airborne Form"},{"c":0,"s":49,"id":5461,"u":"alacritous%20action_som","p":68,"h":1,"n":"Alacritous Action"},{"c":0,"s":49,"id":5462,"u":"amphibious%20form_som","p":68,"h":1,"n":"Amphibious Form"},{"c":0,"s":49,"id":5463,"u":"arcane%20fists_som","p":42,"h":1,"n":"Arcane Fists"},{"c":0,"s":49,"id":5464,"u":"arcane%20shroud_som","p":48,"h":1,"n":"Arcane Shroud"},{"c":0,"s":49,"id":5465,"u":"attack%20of%20opportunity_som","p":45,"h":1,"n":"Attack Of Opportunity"},{"c":0,"s":49,"id":5466,"u":"attuned%20stride_som","p":213,"h":1,"n":"Attuned Stride"},{"c":0,"s":49,"id":5467,"u":"attunement%20shift_som","p":212,"h":1,"n":"Attunement Shift"},{"c":0,"s":49,"id":5468,"u":"basic%20cathartic%20spellcasting_som","p":195,"h":1,"n":"Basic Cathartic Spellcasting"},{"c":0,"s":49,"id":5469,"u":"basic%20magus%20spellcasting_som","p":75,"h":1,"n":"Basic Magus Spellcasting"},{"c":0,"s":49,"id":5470,"u":"basic%20martial%20magic_som","p":75,"h":1,"n":"Basic Martial Magic"},{"c":0,"s":49,"id":5471,"u":"basic%20spellcasting_som","p":219,"h":1,"n":"Basic Spellcasting"},{"c":0,"s":49,"id":5472,"u":"basic%20summoner%20spellcasting_som","p":77,"h":1,"n":"Basic Summoner Spellcasting"},{"c":0,"s":49,"id":5473,"u":"basic%20synergy_som","p":76,"h":1,"n":"Basic Synergy"},{"c":0,"s":49,"id":5474,"u":"blazing%20streak_som","p":202,"h":1,"n":"Blazing Streak"},{"c":0,"s":49,"id":5475,"u":"blood%20frenzy_som","p":69,"h":1,"n":"Blood Frenzy"},{"c":0,"s":49,"id":5476,"u":"bloodletting%20claws_som","p":68,"h":1,"n":"Bloodletting Claws"},{"c":0,"s":49,"id":5477,"u":"boost%20summons_som","p":70,"h":1,"n":"Boost Summons"},{"c":0,"s":49,"id":5478,"u":"burning%20spell_som","p":207,"h":1,"n":"Burning Spell"},{"c":0,"s":49,"id":5479,"u":"burrowing%20form_som","p":71,"h":1,"n":"Burrowing Form"},{"c":0,"s":49,"id":5480,"u":"cantrip%20casting_som","p":219,"h":1,"n":"Cantrip Casting"},{"c":0,"s":49,"id":5481,"u":"cantrip%20expansion_som","p":42,"h":1,"n":"Cantrip Expansion"},{"c":0,"s":49,"id":5482,"u":"capture%20magic_som","p":45,"h":1,"n":"Capture Magic"},{"c":0,"s":49,"id":5483,"u":"cascade%20countermeasure_som","p":45,"h":1,"n":"Cascade Countermeasure"},{"c":0,"s":49,"id":5484,"u":"cascading%20ray_som","p":47,"h":1,"n":"Cascading Ray"},{"c":0,"s":49,"id":5485,"u":"cathartic%20focus%20spell_som","p":195,"h":1,"n":"Cathartic Focus Spell"},{"c":0,"s":49,"id":5486,"u":"cathartic%20mage%20dedication_som","p":194,"h":1,"n":"Cathartic Mage Dedication"},{"c":0,"s":49,"id":5487,"u":"conflux%20focus_som","p":48,"h":1,"n":"Conflux Focus"},{"c":0,"s":49,"id":5488,"u":"conflux%20wellspring_som","p":49,"h":1,"n":"Conflux Wellspring"},{"c":0,"s":49,"id":5489,"u":"constricting%20hold_som","p":70,"h":1,"n":"Constricting Hold"},{"c":0,"s":49,"id":5490,"u":"dazzling%20block_som","p":47,"h":1,"n":"Dazzling Block"},{"c":0,"s":49,"id":5491,"u":"defend%20summoner_som","p":69,"h":1,"n":"Defend Summoner"},{"c":0,"s":49,"id":5492,"u":"devastating%20spellstrike_som","p":44,"h":1,"n":"Devastating Spellstrike"},{"c":0,"s":49,"id":5493,"u":"dimensional%20disappearance_som","p":47,"h":1,"n":"Dimensional Disappearance"},{"c":0,"s":49,"id":5494,"u":"disciple%20of%20shade_som","p":226,"h":1,"n":"Disciple Of Shade"},{"c":0,"s":49,"id":5495,"u":"dispelling%20spellstrike_som","p":49,"h":1,"n":"Dispelling Spellstrike"},{"c":0,"s":49,"id":5496,"u":"distracting%20spellstrike_som","p":44,"h":1,"n":"Distracting Spellstrike"},{"c":0,"s":49,"id":5497,"u":"dousing%20spell_som","p":206,"h":1,"n":"Dousing Spell"},{"c":0,"s":49,"id":5498,"u":"draw%20from%20the%20land_som","p":213,"h":1,"n":"Draw From The Land"},{"c":0,"s":49,"id":5499,"u":"dual%20energy%20heart_som","p":69,"h":1,"n":"Dual Energy Heart"},{"c":0,"s":49,"id":5500,"u":"dual%20studies_som","p":67,"h":1,"n":"Dual Studies"},{"c":0,"s":49,"id":5501,"u":"effortless%20concentration_som","p":72,"h":1,"n":"Effortless Concentration"},{"c":0,"s":49,"id":5502,"u":"eidolon's%20opportunity_som","p":69,"h":1,"n":"Eidolon's Opportunity"},{"c":0,"s":49,"id":5503,"u":"eidolon's%20wrath_som","p":69,"h":1,"n":"Eidolon's Wrath"},{"c":0,"s":49,"id":5504,"u":"elemental%20familiar_som","p":206,"h":1,"n":"Elemental Familiar"},{"c":0,"s":49,"id":5505,"u":"elementalist%20dedication_som","p":206,"h":1,"n":"Elementalist Dedication"},{"c":0,"s":49,"id":5506,"u":"embed%20aeon%20stone_som","p":240,"h":1,"n":"Embed Aeon Stone"},{"c":0,"s":49,"id":5507,"u":"emergency%20targe_som","p":44,"h":1,"n":"Emergency Targe"},{"c":0,"s":49,"id":5508,"u":"energy%20heart_som","p":67,"h":1,"n":"Energy Heart"},{"c":0,"s":49,"id":5509,"u":"energy%20resistance_som","p":71,"h":1,"n":"Energy Resistance"},{"c":0,"s":49,"id":5510,"u":"enhanced%20familiar_som","p":42,"h":1,"n":"Enhanced Familiar"},{"c":0,"s":49,"id":5511,"u":"eternal%20boost_som","p":73,"h":1,"n":"Eternal Boost"},{"c":0,"s":49,"id":5512,"u":"ever-vigilant%20senses_som","p":73,"h":1,"n":"Ever-vigilant Senses"},{"c":0,"s":49,"id":5513,"u":"expanded%20senses_som","p":67,"h":1,"n":"Expanded Senses"},{"c":0,"s":49,"id":5514,"u":"expansive%20spellstrike_som","p":43,"h":1,"n":"Expansive Spellstrike"},{"c":0,"s":49,"id":5515,"u":"expert%20cathartic%20spellcasting_som","p":195,"h":1,"n":"Expert Cathartic Spellcasting"},{"c":0,"s":49,"id":5516,"u":"expert%20combat%20eidolon_som","p":77,"h":1,"n":"Expert Combat Eidolon"},{"c":0,"s":49,"id":5517,"u":"expert%20magus%20spellcasting_som","p":75,"h":1,"n":"Expert Magus Spellcasting"},{"c":0,"s":49,"id":5518,"u":"expert%20spellcasting_som","p":219,"h":1,"n":"Expert Spellcasting"},{"c":0,"s":49,"id":5519,"u":"expert%20summoner%20spellcasting_som","p":77,"h":1,"n":"Expert Summoner Spellcasting"},{"c":0,"s":49,"id":5520,"u":"extend%20boost_som","p":67,"h":1,"n":"Extend Boost"},{"c":0,"s":49,"id":5521,"u":"familiar%20(magus)_som","p":42,"a":"Magus","h":1,"n":"Familiar"},{"c":0,"s":49,"id":5522,"u":"fiery%20retort_som","p":199,"h":1,"n":"Fiery Retort"},{"c":0,"s":49,"id":5523,"u":"fire%20lung_som","p":198,"h":1,"n":"Fire Lung"},{"c":0,"s":49,"id":5524,"u":"fire%20resistance_som","p":199,"h":1,"n":"Fire Resistance"},{"c":0,"s":49,"id":5525,"u":"flexible%20spellcaster%20dedication_som","p":209,"h":1,"n":"Flexible Spellcaster Dedication"},{"c":0,"s":49,"id":5526,"u":"flexible%20transmogrification_som","p":71,"h":1,"n":"Flexible Transmogrification"},{"c":0,"s":49,"id":5527,"u":"force%20fang_som","p":43,"h":1,"n":"Force Fang"},{"c":0,"s":49,"id":5528,"u":"fused%20polearm_som","p":241,"h":1,"n":"Fused Polearm"},{"c":0,"s":49,"id":5529,"u":"fused%20staff_som","p":46,"h":1,"n":"Fused Staff"},{"c":0,"s":49,"id":5530,"u":"geomancer%20dedication_som","p":212,"h":1,"n":"Geomancer Dedication"},{"c":0,"s":49,"id":5531,"u":"glider%20form_som","p":67,"h":1,"n":"Glider Form"},{"c":0,"s":49,"id":5532,"u":"grasping%20limbs_som","p":71,"h":1,"n":"Grasping Limbs"},{"c":0,"s":49,"id":5533,"u":"harden%20flesh_som","p":200,"h":1,"n":"Harden Flesh"},{"c":0,"s":49,"id":5534,"u":"hasted%20assault_som","p":49,"h":1,"n":"Hasted Assault"},{"c":0,"s":49,"id":5535,"u":"hulking%20size_som","p":71,"h":1,"n":"Hulking Size"},{"c":0,"s":49,"id":5536,"u":"hybrid%20study%20spell_som","p":75,"h":1,"n":"Hybrid Study Spell"},{"c":0,"s":49,"id":5537,"u":"infectious%20emotions_som","p":195,"h":1,"n":"Infectious Emotions"},{"c":0,"s":49,"id":5538,"u":"initial%20eidolon%20ability_som","p":77,"h":1,"n":"Initial Eidolon Ability"},{"c":0,"s":49,"id":5539,"u":"inner%20fire_som","p":202,"h":1,"n":"Inner Fire"},{"c":0,"s":49,"id":5540,"u":"interfering%20surge_som","p":249,"h":1,"n":"Interfering Surge"},{"c":0,"s":49,"id":5541,"u":"knowledge%20is%20power_som","p":45,"h":1,"n":"Knowledge Is Power"},{"c":0,"s":49,"id":5542,"u":"legendary%20summoner_som","p":73,"h":1,"n":"Legendary Summoner"},{"c":0,"s":49,"id":5543,"u":"lifelink%20surge_som","p":69,"h":1,"n":"Lifelink Surge"},{"c":0,"s":49,"id":5544,"u":"link%20focus_som","p":71,"h":1,"n":"Link Focus"},{"c":0,"s":49,"id":5545,"u":"link%20wellspring_som","p":73,"h":1,"n":"Link Wellspring"},{"c":0,"s":49,"id":5546,"u":"lunging%20spellstrike_som","p":47,"h":1,"n":"Lunging Spellstrike"},{"c":0,"s":49,"id":5547,"u":"magic%20sense_som","p":48,"h":1,"n":"Magic Sense"},{"c":0,"s":49,"id":5548,"u":"magical%20adept_som","p":71,"h":1,"n":"Magical Adept"},{"c":0,"s":49,"id":5549,"u":"magical%20master_som","p":73,"h":1,"n":"Magical Master"},{"c":0,"s":49,"id":5550,"u":"magical%20understudy_som","p":68,"h":1,"n":"Magical Understudy"},{"c":0,"s":49,"id":5551,"u":"magus%20dedication_som","p":75,"h":1,"n":"Magus Dedication"},{"c":0,"s":49,"id":5552,"u":"magus's%20analysis_som","p":42,"h":1,"n":"Magus's Analysis"},{"c":0,"s":49,"id":5553,"u":"master%20cathartic%20spellcasting_som","p":195,"h":1,"n":"Master Cathartic Spellcasting"},{"c":0,"s":49,"id":5554,"u":"master%20magus%20spellcasting_som","p":75,"h":1,"n":"Master Magus Spellcasting"},{"c":0,"s":49,"id":5555,"u":"master%20spellcasting_som","p":219,"h":1,"n":"Master Spellcasting"},{"c":0,"s":49,"id":5556,"u":"master%20summoner_som","p":69,"h":1,"n":"Master Summoner"},{"c":0,"s":49,"id":5557,"u":"master%20summoner%20spellcasting_som","p":77,"h":1,"n":"Master Summoner Spellcasting"},{"c":0,"s":49,"id":5558,"u":"meld%20into%20eidolon_som","p":67,"h":1,"n":"Meld Into Eidolon"},{"c":0,"s":49,"id":5559,"u":"merciless%20rend_som","p":71,"h":1,"n":"Merciless Rend"},{"c":0,"s":49,"id":5560,"u":"metabolize%20element_som","p":207,"h":1,"n":"Metabolize Element"},{"c":0,"s":49,"id":5561,"u":"meteoric%20spellstrike_som","p":47,"h":1,"n":"Meteoric Spellstrike"},{"c":0,"s":49,"id":5562,"u":"miniaturize_som","p":71,"h":1,"n":"Miniaturize"},{"c":0,"s":49,"id":5563,"u":"natural%20swimmer_som","p":199,"h":1,"n":"Natural Swimmer"},{"c":0,"s":49,"id":5564,"u":"ostentatious%20arrival_som","p":69,"h":1,"n":"Ostentatious Arrival"},{"c":0,"s":49,"id":5565,"u":"overwhelming%20spellstrike_som","p":48,"h":1,"n":"Overwhelming Spellstrike"},{"c":0,"s":49,"id":5566,"u":"phase%20out_som","p":70,"h":1,"n":"Phase Out"},{"c":0,"s":49,"id":5567,"u":"polearm%20tricks_som","p":240,"h":1,"n":"Polearm Tricks"},{"c":0,"s":49,"id":5568,"u":"preternatural%20parry_som","p":49,"h":1,"n":"Preternatural Parry"},{"c":0,"s":49,"id":5569,"u":"protective%20bond_som","p":71,"h":1,"n":"Protective Bond"},{"c":0,"s":49,"id":5570,"u":"purifying%20spell_som","p":200,"h":1,"n":"Purifying Spell"},{"c":0,"s":49,"id":5571,"u":"pushing%20attack_som","p":71,"h":1,"n":"Pushing Attack"},{"c":0,"s":49,"id":5572,"u":"quickened%20attunement_som","p":213,"h":1,"n":"Quickened Attunement"},{"c":0,"s":49,"id":5573,"u":"raise%20a%20tome_som","p":42,"h":1,"n":"Raise A Tome"},{"c":0,"s":49,"id":5574,"u":"ranged%20combatant_som","p":68,"h":1,"n":"Ranged Combatant"},{"c":0,"s":49,"id":5575,"u":"rapid%20manifestation_som","p":236,"h":1,"n":"Rapid Manifestation"},{"c":0,"s":49,"id":5576,"u":"rapid%20recharge_som","p":47,"h":1,"n":"Rapid Recharge"},{"c":0,"s":49,"id":5577,"u":"reactive%20dismissal_som","p":69,"h":1,"n":"Reactive Dismissal"},{"c":0,"s":49,"id":5578,"u":"read%20the%20land_som","p":213,"h":1,"n":"Read The Land"},{"c":0,"s":49,"id":5579,"u":"redirect%20elements_som","p":207,"h":1,"n":"Redirect Elements"},{"c":0,"s":49,"id":5580,"u":"reflective%20ripple%20stance_som","p":202,"h":1,"n":"Reflective Ripple Stance"},{"c":0,"s":49,"id":5581,"u":"reinforce%20eidolon_som","p":68,"h":1,"n":"Reinforce Eidolon"},{"c":0,"s":49,"id":5582,"u":"resilient%20shell_som","p":72,"h":1,"n":"Resilient Shell"},{"c":0,"s":49,"id":5583,"u":"resounding%20cascade_som","p":49,"h":1,"n":"Resounding Cascade"},{"c":0,"s":49,"id":5584,"u":"reveal%20true%20name_som","p":246,"h":1,"n":"Reveal True Name"},{"c":0,"s":49,"id":5585,"u":"rippling%20spin_som","p":202,"h":1,"n":"Rippling Spin"},{"c":0,"s":49,"id":5586,"u":"rockslide%20spell_som","p":207,"h":1,"n":"Rockslide Spell"},{"c":0,"s":49,"id":5587,"u":"rough%20terrain%20stance_som","p":212,"h":1,"n":"Rough Terrain Stance"},{"c":0,"s":49,"id":5588,"u":"runelord%20dedication_som","p":240,"h":1,"n":"Runelord Dedication"},{"c":0,"s":49,"id":5589,"u":"runic%20impression_som","p":46,"h":1,"n":"Runic Impression"},{"c":0,"s":49,"id":5590,"u":"school%20counterspell_som","p":241,"h":1,"n":"School Counterspell"},{"c":0,"s":49,"id":5591,"u":"school%20spell%20redirection_som","p":241,"h":1,"n":"School Spell Redirection"},{"c":0,"s":49,"id":5592,"u":"secrets%20of%20shadow_som","p":226,"h":1,"n":"Secrets Of Shadow"},{"c":0,"s":49,"id":5593,"u":"shadow%20reservoir_som","p":226,"h":1,"n":"Shadow Reservoir"},{"c":0,"s":49,"id":5594,"u":"shadow%20spell_som","p":226,"h":1,"n":"Shadow Spell"},{"c":0,"s":49,"id":5595,"u":"shadow%20spells_som","p":226,"h":1,"n":"Shadow Spells"},{"c":0,"s":49,"id":5596,"u":"shadowcaster%20dedication_som","p":226,"h":1,"n":"Shadowcaster Dedication"},{"c":0,"s":49,"id":5597,"u":"share%20eidolon%20magic_som","p":72,"h":1,"n":"Share Eidolon Magic"},{"c":0,"s":49,"id":5598,"u":"shared%20attunement_som","p":212,"h":1,"n":"Shared Attunement"},{"c":0,"s":49,"id":5599,"u":"sheltering%20cave_som","p":199,"h":1,"n":"Sheltering Cave"},{"c":0,"s":49,"id":5600,"u":"shielded%20tome_som","p":45,"h":1,"n":"Shielded Tome"},{"c":0,"s":49,"id":5601,"u":"shifting%20terrain_som","p":213,"h":1,"n":"Shifting Terrain"},{"c":0,"s":49,"id":5602,"u":"shore%20step_som","p":198,"h":1,"n":"Shore Step"},{"c":0,"s":49,"id":5603,"u":"shrink%20down_som","p":69,"h":1,"n":"Shrink Down"},{"c":0,"s":49,"id":5604,"u":"signature%20synergy_som","p":77,"h":1,"n":"Signature Synergy"},{"c":0,"s":49,"id":5605,"u":"sin%20reservoir_som","p":240,"h":1,"n":"Sin Reservoir"},{"c":0,"s":49,"id":5606,"u":"skilled%20partner_som","p":69,"h":1,"n":"Skilled Partner"},{"c":0,"s":49,"id":5607,"u":"soul%20arsenal_som","p":236,"h":1,"n":"Soul Arsenal"},{"c":0,"s":49,"id":5608,"u":"soul%20flare_som","p":236,"h":1,"n":"Soul Flare"},{"c":0,"s":49,"id":5609,"u":"soulforger%20dedication_som","p":236,"h":1,"n":"Soulforger Dedication"},{"c":0,"s":49,"id":5610,"u":"spell%20parry_som","p":43,"h":1,"n":"Spell Parry"},{"c":0,"s":49,"id":5611,"u":"spell%20swipe_som","p":46,"h":1,"n":"Spell Swipe"},{"c":0,"s":49,"id":5612,"u":"spell-repelling%20form_som","p":72,"h":1,"n":"Spell-repelling Form"},{"c":0,"s":49,"id":5613,"u":"spellstriker_som","p":75,"h":1,"n":"Spellstriker"},{"c":0,"s":49,"id":5614,"u":"spirit%20sheath_som","p":44,"h":1,"n":"Spirit Sheath"},{"c":0,"s":49,"id":5615,"u":"standby%20spell_som","p":47,"h":1,"n":"Standby Spell"},{"c":0,"s":49,"id":5616,"u":"starlit%20eyes_som","p":44,"h":1,"n":"Starlit Eyes"},{"c":0,"s":49,"id":5617,"u":"steady%20spellcasting_som","p":45,"h":1,"n":"Steady Spellcasting"},{"c":0,"s":49,"id":5618,"u":"steadying%20stone_som","p":198,"h":1,"n":"Steadying Stone"},{"c":0,"s":49,"id":5619,"u":"steed%20form_som","p":68,"h":1,"n":"Steed Form"},{"c":0,"s":49,"id":5620,"u":"stoked%20flame%20stance_som","p":202,"h":1,"n":"Stoked Flame Stance"},{"c":0,"s":49,"id":5621,"u":"striker's%20scroll_som","p":45,"h":1,"n":"Striker's Scroll"},{"c":0,"s":49,"id":5622,"u":"student%20of%20the%20staff_som","p":45,"h":1,"n":"Student Of The Staff"},{"c":0,"s":49,"id":5623,"u":"summoner%20dedication_som","p":76,"h":1,"n":"Summoner Dedication"},{"c":0,"s":49,"id":5624,"u":"summoner's%20call_som","p":72,"h":1,"n":"Summoner's Call"},{"c":0,"s":49,"id":5625,"u":"supreme%20spellstrike_som","p":49,"h":1,"n":"Supreme Spellstrike"},{"c":0,"s":49,"id":5626,"u":"sustaining%20steel_som","p":47,"h":1,"n":"Sustaining Steel"},{"c":0,"s":49,"id":5627,"u":"tandem%20movement_som","p":69,"h":1,"n":"Tandem Movement"},{"c":0,"s":49,"id":5628,"u":"tandem%20strike_som","p":70,"h":1,"n":"Tandem Strike"},{"c":0,"s":49,"id":5629,"u":"tattoo%20artist_som","p":164,"h":1,"n":"Tattoo Artist"},{"c":0,"s":49,"id":5630,"u":"terrain%20shield_som","p":213,"h":1,"n":"Terrain Shield"},{"c":0,"s":49,"id":5631,"u":"towering%20size_som","p":72,"h":1,"n":"Towering Size"},{"c":0,"s":49,"id":5632,"u":"trample_som","p":73,"h":1,"n":"Trample"},{"c":0,"s":49,"id":5633,"u":"transpose_som","p":71,"h":1,"n":"Transpose"},{"c":0,"s":49,"id":5634,"u":"true%20transmogrification_som","p":73,"h":1,"n":"True Transmogrification"},{"c":0,"s":49,"id":5635,"u":"twin%20eidolon_som","p":73,"h":1,"n":"Twin Eidolon"},{"c":0,"s":49,"id":5636,"u":"unending%20emptiness_som","p":227,"h":1,"n":"Unending Emptiness"},{"c":0,"s":49,"id":5637,"u":"unfetter%20eidolon_som","p":68,"h":1,"n":"Unfetter Eidolon"},{"c":0,"s":49,"id":5638,"u":"urgent%20upwelling_som","p":249,"h":1,"n":"Urgent Upwelling"},{"c":0,"s":49,"id":5639,"u":"versatile%20spellstrike_som","p":49,"h":1,"n":"Versatile Spellstrike"},{"c":0,"s":49,"id":5640,"u":"vibration%20sense_som","p":69,"h":1,"n":"Vibration Sense"},{"c":0,"s":49,"id":5641,"u":"wave%20spiral_som","p":202,"h":1,"n":"Wave Spiral"},{"c":0,"s":49,"id":5642,"u":"weighty%20impact_som","p":71,"h":1,"n":"Weighty Impact"},{"c":0,"s":49,"id":5643,"u":"wellspring%20control_som","p":249,"h":1,"n":"Wellspring Control"},{"c":0,"s":49,"id":5644,"u":"wellspring%20mage%20dedication_som","p":249,"h":1,"n":"Wellspring Mage Dedication"},{"c":0,"s":49,"id":5645,"u":"whirlwind%20spell_som","p":49,"h":1,"n":"Whirlwind Spell"},{"c":0,"s":49,"id":5646,"u":"wind-tossed%20spell_som","p":207,"h":1,"n":"Wind-tossed Spell"},{"c":0,"s":49,"id":5647,"u":"work%20yourself%20up_som","p":195,"h":1,"n":"Work Yourself Up"},{"c":0,"s":40,"id":5648,"u":"communal%20tale_sot2","p":78,"h":1,"n":"Communal Tale"},{"c":0,"s":40,"id":5649,"u":"deny%20the%20songs%20of%20war_sot2","p":79,"h":1,"n":"Deny The Songs Of War"},{"c":0,"s":40,"id":5650,"u":"fleet%20tempo_sot2","p":79,"h":1,"n":"Fleet Tempo"},{"c":0,"s":40,"id":5651,"u":"folklorist%20dedication_sot2","p":78,"h":1,"n":"Folklorist Dedication"},{"c":0,"s":40,"id":5652,"u":"folktales%20lore_sot2","p":78,"h":1,"n":"Folktales Lore"},{"c":0,"s":40,"id":5653,"u":"nantambu%20chime-ringer%20dedication_sot2","p":79,"h":1,"n":"Nantambu Chime-Ringer Dedication"},{"c":0,"s":40,"id":5654,"u":"narrative%20conduit_sot2","p":78,"h":1,"n":"Narrative Conduit"},{"c":0,"s":40,"id":5655,"u":"rule%20of%20three_sot2","p":78,"h":1,"n":"Rule Of Three"},{"c":0,"s":40,"id":5656,"u":"sing%20to%20the%20steel_sot2","p":79,"h":1,"n":"Sing To The Steel"},{"c":0,"s":40,"id":5657,"u":"song%20of%20grace%20and%20speed_sot2","p":79,"h":1,"n":"Song Of Grace And Speed"},{"c":2,"s":4,"id":5658,"u":"antler%20arrow_apg","p":256,"h":1,"n":"Antler Arrow"},{"c":2,"s":4,"id":5659,"u":"balisse%20feather_apg","p":256,"h":1,"n":"Balisse Feather"},{"c":2,"s":4,"id":5660,"u":"basilisk%20eye_apg","p":256,"h":1,"n":"Basilisk Eye"},{"c":2,"s":4,"id":5661,"u":"blight%20bomb%20(generic)_apg","p":252,"h":1,"n":"Blight Bomb"},{"c":2,"s":4,"id":5662,"u":"bloodhound%20mask%20(generic)_apg","p":254,"h":1,"n":"Bloodhound Mask"},{"c":2,"s":4,"id":5663,"u":"brass%20ear_apg","p":248,"h":1,"n":"Brass Ear"},{"c":2,"s":4,"id":5664,"u":"candle%20of%20invocation_apg","p":256,"h":1,"n":"Candle Of Invocation"},{"c":2,"s":4,"id":5665,"u":"candle%20of%20revealing_apg","p":257,"h":1,"n":"Candle Of Revealing"},{"c":2,"s":4,"id":5666,"u":"cerulean%20scourge_apg","p":254,"h":1,"n":"Cerulean Scourge"},{"c":2,"s":4,"id":5667,"u":"concealed%20sheath_apg","p":248,"h":1,"n":"Concealed Sheath"},{"c":2,"s":4,"id":5668,"u":"corrosive%20ammunition_apg","p":257,"h":1,"n":"Corrosive Ammunition"},{"c":2,"s":4,"id":5669,"u":"crystal%20shards%20(generic)_apg","p":252,"h":1,"n":"Crystal Shards"},{"c":2,"s":4,"id":5670,"u":"detective's%20kit_apg","p":248,"h":1,"n":"Detective's Kit"},{"c":2,"s":4,"id":5671,"u":"drakeheart%20mutagen%20(generic)_apg","p":253,"h":1,"n":"Drakeheart Mutagen"},{"c":2,"s":4,"id":5672,"u":"dread%20ampoule%20(generic)_apg","p":253,"h":1,"n":"Dread Ampoule"},{"c":2,"s":4,"id":5673,"u":"dueling%20cape_apg","p":248,"h":1,"n":"Dueling Cape"},{"c":2,"s":4,"id":5674,"u":"dust%20of%20corpse%20animation%20(generic)_apg","p":257,"h":1,"n":"Dust Of Corpse Animation"},{"c":2,"s":4,"id":5675,"u":"earthglide%20cloak_apg","p":260,"h":1,"n":"Earthglide Cloak"},{"c":2,"s":4,"id":5676,"u":"earthsight%20box_apg","p":260,"h":1,"n":"Earthsight Box"},{"c":2,"s":4,"id":5677,"u":"engulfing%20snare_apg","p":256,"h":1,"n":"Engulfing Snare"},{"c":2,"s":4,"id":5678,"u":"envisioning%20mask_apg","p":260,"h":1,"n":"Envisioning Mask"},{"c":2,"s":4,"id":5679,"u":"exploding%20shield_apg","p":260,"h":1,"n":"Exploding Shield"},{"c":2,"s":4,"id":5680,"u":"fearsome%20(generic)_apg","p":260,"h":1,"n":"Fearsome"},{"c":2,"s":4,"id":5681,"u":"fire-jump%20ring_apg","p":260,"h":1,"n":"Fire-jump Ring"},{"c":2,"s":4,"id":5682,"u":"flare%20snare_apg","p":256,"h":1,"n":"Flare Snare"},{"c":2,"s":4,"id":5683,"u":"focus%20cathartic%20(generic)_apg","p":253,"h":1,"n":"Focus Cathartic"},{"c":2,"s":4,"id":5684,"u":"forensic%20dye_apg","p":254,"h":1,"n":"Forensic Dye"},{"c":2,"s":4,"id":5685,"u":"four-ways%20dogslicer_apg","p":261,"h":1,"n":"Four-ways Dogslicer"},{"c":2,"s":4,"id":5686,"u":"freezing%20ammunition_apg","p":257,"h":1,"n":"Freezing Ammunition"},{"c":2,"s":4,"id":5687,"u":"gecko%20potion_apg","p":257,"h":1,"n":"Gecko Potion"},{"c":2,"s":4,"id":5688,"u":"ghost%20charge%20(generic)_apg","p":253,"h":1,"n":"Ghost Charge"},{"c":2,"s":4,"id":5689,"u":"ghost%20ink_apg","p":255,"h":1,"n":"Ghost Ink"},{"c":2,"s":4,"id":5690,"u":"glamorous%20buckler_apg","p":261,"h":1,"n":"Glamorous Buckler"},{"c":2,"s":4,"id":5691,"u":"hellfire%20boots_apg","p":261,"h":1,"n":"Hellfire Boots"},{"c":2,"s":4,"id":5692,"u":"incense%20of%20distilled%20death_apg","p":257,"h":1,"n":"Incense Of Distilled Death"},{"c":2,"s":4,"id":5693,"u":"infiltrator's%20accessory_apg","p":261,"h":1,"n":"Infiltrator's Accessory"},{"c":2,"s":4,"id":5694,"u":"leadenleg_apg","p":254,"h":1,"n":"Leadenleg"},{"c":2,"s":4,"id":5695,"u":"lover's%20gloves_apg","p":261,"h":1,"n":"Lover's Gloves"},{"c":2,"s":4,"id":5696,"u":"mask%20of%20the%20banshee%20(generic)_apg","p":261,"h":1,"n":"Mask Of The Banshee"},{"c":2,"s":4,"id":5697,"u":"medusa's%20scream%20(generic)_apg","p":261,"h":1,"n":"Medusa's Scream"},{"c":2,"s":4,"id":5698,"u":"nauseating%20snare_apg","p":256,"h":1,"n":"Nauseating Snare"},{"c":2,"s":4,"id":5699,"u":"net_apg","p":248,"h":1,"n":"Net"},{"c":2,"s":4,"id":5700,"u":"oil%20of%20object%20animation%20(generic)_apg","p":258,"h":1,"n":"Oil Of Object Animation"},{"c":2,"s":4,"id":5701,"u":"oil%20of%20revelation_apg","p":258,"h":1,"n":"Oil Of Revelation"},{"c":2,"s":4,"id":5702,"u":"oil%20of%20unlife%20(generic)_apg","p":258,"h":1,"n":"Oil Of Unlife"},{"c":2,"s":4,"id":5703,"u":"olfactory%20obfuscator%20(generic)_apg","p":254,"h":1,"n":"Olfactory Obfuscator"},{"c":2,"s":4,"id":5704,"u":"origin%20unguent_apg","p":255,"h":1,"n":"Origin Unguent"},{"c":2,"s":4,"id":5705,"u":"parrying%20scabbard_apg","p":248,"h":1,"n":"Parrying Scabbard"},{"c":2,"s":4,"id":5706,"u":"periscope_apg","p":248,"h":1,"n":"Periscope"},{"c":2,"s":4,"id":5707,"u":"potion%20of%20disguise%20(generic)_apg","p":258,"h":1,"n":"Potion Of Disguise"},{"c":2,"s":4,"id":5708,"u":"potion%20of%20expeditious%20retreat_apg","p":258,"h":1,"n":"Potion Of Expeditious Retreat"},{"c":2,"s":4,"id":5709,"u":"potion%20of%20retaliation%20(generic)_apg","p":259,"h":1,"n":"Potion Of Retaliation"},{"c":2,"s":4,"id":5710,"u":"potion%20of%20shared%20memories_apg","p":259,"h":1,"n":"Potion Of Shared Memories"},{"c":2,"s":4,"id":5711,"u":"predictable%20silver%20piece_apg","p":262,"h":1,"n":"Predictable Silver Piece"},{"c":2,"s":4,"id":5712,"u":"ration%20tonic%20(generic)_apg","p":259,"h":1,"n":"Ration Tonic"},{"c":2,"s":4,"id":5713,"u":"ready%20(generic)_apg","p":262,"h":1,"n":"Ready"},{"c":2,"s":4,"id":5714,"u":"rod%20of%20cancellation_apg","p":262,"h":1,"n":"Rod Of Cancellation"},{"c":2,"s":4,"id":5715,"u":"rope%20of%20climbing%20(generic)_apg","p":262,"h":1,"n":"Rope Of Climbing"},{"c":2,"s":4,"id":5716,"u":"shielding%20salve_apg","p":259,"h":1,"n":"Shielding Salve"},{"c":2,"s":4,"id":5717,"u":"sinew-shock%20serum%20(generic)_apg","p":254,"h":1,"n":"Sinew-shock Serum"},{"c":2,"s":4,"id":5718,"u":"skinstitch%20salve_apg","p":255,"h":1,"n":"Skinstitch Salve"},{"c":2,"s":4,"id":5719,"u":"slates%20of%20distant%20letters_apg","p":262,"h":1,"n":"Slates Of Distant Letters"},{"c":2,"s":4,"id":5720,"u":"sleeves%20of%20storage%20(generic)_apg","p":263,"h":1,"n":"Sleeves Of Storage"},{"c":2,"s":4,"id":5721,"u":"snagging%20hook%20snare_apg","p":256,"h":1,"n":"Snagging Hook Snare"},{"c":2,"s":4,"id":5722,"u":"sovereign%20glue_apg","p":255,"h":1,"n":"Sovereign Glue"},{"c":2,"s":4,"id":5723,"u":"spellguard%20blade_apg","p":263,"h":1,"n":"Spellguard Blade"},{"c":2,"s":4,"id":5724,"u":"spiritsight%20crossbow_apg","p":263,"h":1,"n":"Spiritsight Crossbow"},{"c":2,"s":4,"id":5725,"u":"staff%20of%20impossible%20visions%20(generic)_apg","p":263,"h":1,"n":"Staff Of Impossible Visions"},{"c":2,"s":4,"id":5726,"u":"staff%20of%20nature's%20vengeance%20(generic)_apg","p":263,"h":1,"n":"Staff Of Nature's Vengeance"},{"c":2,"s":4,"id":5727,"u":"staff%20of%20providence%20(generic)_apg","p":264,"h":1,"n":"Staff Of Providence"},{"c":2,"s":4,"id":5728,"u":"terrifying%20ammunition_apg","p":259,"h":1,"n":"Terrifying Ammunition"},{"c":2,"s":4,"id":5729,"u":"time%20shield%20potion_apg","p":259,"h":1,"n":"Time Shield Potion"},{"c":2,"s":4,"id":5730,"u":"timeless%20salts_apg","p":255,"h":1,"n":"Timeless Salts"},{"c":2,"s":4,"id":5731,"u":"universal%20solvent%20(generic)_apg","p":255,"h":1,"n":"Universal Solvent"},{"c":2,"s":4,"id":5732,"u":"urn%20of%20ashes_apg","p":264,"h":1,"n":"Urn Of Ashes"},{"c":2,"s":4,"id":5733,"u":"victory%20plate%20(generic)_apg","p":264,"h":1,"n":"Victory Plate"},{"c":2,"s":4,"id":5734,"u":"walking%20cauldron_apg","p":264,"h":1,"n":"Walking Cauldron"},{"c":2,"s":4,"id":5735,"u":"wand%20of%20crackling%20lightning%20(generic)_apg","p":265,"h":1,"n":"Wand Of Crackling Lightning"},{"c":2,"s":4,"id":5736,"u":"wand%20of%20hopeless%20night%20(generic)_apg","p":265,"h":1,"n":"Wand Of Hopeless Night"},{"c":2,"s":4,"id":5737,"u":"wand%20of%20overflowing%20life%20(generic)_apg","p":265,"h":1,"n":"Wand Of Overflowing Life"},{"c":2,"s":4,"id":5738,"u":"wand%20of%20the%20snowfields%20(generic)_apg","p":265,"h":1,"n":"Wand Of The Snowfields"},{"c":2,"s":4,"id":5739,"u":"wand%20of%20the%20spider%20(generic)_apg","p":265,"h":1,"n":"Wand Of The Spider"},{"c":2,"s":4,"id":5740,"u":"winged%20(generic)_apg","p":265,"h":1,"n":"Winged"},{"c":2,"s":5,"id":5741,"u":"acid%20flask%20(generic)_crb","p":544,"h":1,"n":"Acid Flask"},{"c":2,"s":5,"id":5742,"u":"adamantine%20(generic)_crb","p":578,"h":1,"n":"Adamantine"},{"c":2,"s":5,"id":5743,"u":"adamantine%20armor%20(generic)_crb","p":555,"h":1,"n":"Adamantine Armor"},{"c":2,"s":5,"id":5744,"u":"adamantine%20shield%20(generic)_crb","p":586,"h":1,"n":"Adamantine Shield"},{"c":2,"s":5,"id":5745,"u":"adamantine%20weapon%20(generic)_crb","p":599,"h":1,"n":"Adamantine Weapon"},{"c":2,"s":5,"id":5746,"u":"adventurer's%20pack_crb","p":288,"h":1,"n":"Adventurer's Pack"},{"c":2,"s":5,"id":5747,"u":"aeon%20stone%20(generic)_crb","p":604,"h":1,"n":"Aeon Stone"},{"c":2,"s":5,"id":5748,"u":"alarm%20snare_crb","p":589,"h":1,"n":"Alarm Snare"},{"c":2,"s":5,"id":5749,"u":"alchemist%20goggles%20(generic)_crb","p":605,"h":1,"n":"Alchemist Goggles"},{"c":2,"s":5,"id":5750,"u":"alchemist's%20fire%20(generic)_crb","p":545,"h":1,"n":"Alchemist's Fire"},{"c":2,"s":5,"id":5751,"u":"alchemist's%20lab%20(generic)_crb","p":288,"h":1,"n":"Alchemist's Lab"},{"c":2,"s":5,"id":5752,"u":"alchemist's%20tools_crb","p":288,"h":1,"n":"Alchemist's Tools"},{"c":2,"s":5,"id":5753,"u":"aligned%20oil_crb","p":561,"h":1,"n":"Aligned Oil"},{"c":2,"s":5,"id":5754,"u":"anarchic_crb","p":583,"h":1,"n":"Anarchic"},{"c":2,"s":5,"id":5755,"u":"animal%20staff%20(generic)_crb","p":592,"h":1,"n":"Animal Staff"},{"c":2,"s":5,"id":5756,"u":"anklets%20of%20alacrity_crb","p":603,"h":1,"n":"Anklets of Alacrity"},{"c":2,"s":5,"id":5757,"u":"antidote%20(generic)_crb","p":546,"h":1,"n":"Antidote"},{"c":2,"s":5,"id":5758,"u":"antimagic_crb","p":582,"h":1,"n":"Antimagic"},{"c":2,"s":5,"id":5759,"u":"antimagic%20oil_crb","p":561,"h":1,"n":"Antimagic Oil"},{"c":2,"s":5,"id":5760,"u":"antiplague%20(generic)_crb","p":546,"h":1,"n":"Antiplague"},{"c":2,"s":5,"id":5761,"u":"armbands%20of%20athleticism%20(generic)_crb","p":605,"h":1,"n":"Armbands of Athleticism"},{"c":2,"s":5,"id":5762,"u":"armor%20potency%20(generic)_crb","p":581,"h":1,"n":"Armor Potency"},{"c":2,"s":5,"id":5763,"u":"arrow_crb","p":282,"h":1,"n":"Arrow"},{"c":2,"s":5,"id":5764,"u":"arrow-catching%20shield_crb","p":587,"h":1,"n":"Arrow-catching Shield"},{"c":2,"s":5,"id":5765,"u":"arsenic_crb","p":550,"h":1,"n":"Arsenic"},{"c":2,"s":5,"id":5766,"u":"artisan's%20tools%20(generic)_crb","p":288,"h":1,"n":"Artisan's Tools"},{"c":2,"s":5,"id":5767,"u":"axiomatic_crb","p":583,"h":1,"n":"Axiomatic"},{"c":2,"s":5,"id":5768,"u":"backpack_crb","p":288,"h":1,"n":"Backpack"},{"c":2,"s":5,"id":5769,"u":"bag%20of%20holding%20(generic)_crb","p":572,"h":1,"n":"Bag of Holding"},{"c":2,"s":5,"id":5770,"u":"barding%20of%20the%20zephyr_crb","p":604,"h":1,"n":"Barding of the Zephyr"},{"c":2,"s":5,"id":5771,"u":"barkskin%20potion_crb","p":562,"h":1,"n":"Barkskin Potion"},{"c":2,"s":5,"id":5772,"u":"basic%20crafter's%20book_crb","p":288,"h":1,"n":"Basic Crafter's Book"},{"c":2,"s":5,"id":5773,"u":"beacon%20shot_crb","p":559,"h":1,"n":"Beacon Shot"},{"c":2,"s":5,"id":5774,"u":"bedroll_crb","p":288,"h":1,"n":"Bedroll"},{"c":2,"s":5,"id":5775,"u":"belladonna_crb","p":551,"h":1,"n":"Belladonna"},{"c":2,"s":5,"id":5776,"u":"belt%20of%20giant%20strength_crb","p":603,"h":1,"n":"Belt of Giant Strength"},{"c":2,"s":5,"id":5777,"u":"belt%20of%20regeneration_crb","p":603,"h":1,"n":"Belt of Regeneration"},{"c":2,"s":5,"id":5778,"u":"belt%20of%20the%20five%20kings_crb","p":606,"h":1,"n":"Belt of the Five Kings"},{"c":2,"s":5,"id":5779,"u":"berserker's%20cloak%20(generic)_crb","p":606,"h":1,"n":"Berserker's Cloak"},{"c":2,"s":5,"id":5780,"u":"bestial%20mutagen%20(generic)_crb","p":546,"h":1,"n":"Bestial Mutagen"},{"c":2,"s":5,"id":5781,"u":"biting%20snare_crb","p":589,"h":1,"n":"Biting Snare"},{"c":2,"s":5,"id":5782,"u":"black%20adder%20venom_crb","p":551,"h":1,"n":"Black Adder Venom"},{"c":2,"s":5,"id":5783,"u":"black%20lotus%20extract_crb","p":551,"h":1,"n":"Black Lotus Extract"},{"c":2,"s":5,"id":5784,"u":"bleeding%20spines%20snare_crb","p":589,"h":1,"n":"Bleeding Spines Snare"},{"c":2,"s":5,"id":5785,"u":"blightburn%20resin_crb","p":551,"h":1,"n":"Blightburn Resin"},{"c":2,"s":5,"id":5786,"u":"bloodletting%20kukri_crb","p":600,"h":1,"n":"Bloodletting Kukri"},{"c":2,"s":5,"id":5787,"u":"bloodseeker%20beak_crb","p":565,"h":1,"n":"Bloodseeker Beak"},{"c":2,"s":5,"id":5788,"u":"blowgun%20dart_crb","p":281,"h":1,"n":"Blowgun Dart"},{"c":2,"s":5,"id":5789,"u":"bolt_crb","p":281,"h":1,"n":"Bolt"},{"c":2,"s":5,"id":5790,"u":"bomb%20snare_crb","p":589,"h":1,"n":"Bomb Snare"},{"c":2,"s":5,"id":5791,"u":"bomber's%20eye%20elixir%20(generic)_crb","p":547,"h":1,"n":"Bomber's Eye Elixir"},{"c":2,"s":5,"id":5792,"u":"boots%20of%20bounding%20(generic)_crb","p":606,"h":1,"n":"Boots of Bounding"},{"c":2,"s":5,"id":5793,"u":"boots%20of%20elvenkind%20(generic)_crb","p":606,"h":1,"n":"Boots of Elvenkind"},{"c":2,"s":5,"id":5794,"u":"boots%20of%20speed_crb","p":606,"h":1,"n":"Boots of Speed"},{"c":2,"s":5,"id":5795,"u":"bottled%20air_crb","p":572,"h":1,"n":"Bottled Air"},{"c":2,"s":5,"id":5796,"u":"bottled%20lightning%20(generic)_crb","p":545,"h":1,"n":"Bottled Lightning"},{"c":2,"s":5,"id":5797,"u":"bracelet%20of%20dashing_crb","p":607,"h":1,"n":"Bracelet of Dashing"},{"c":2,"s":5,"id":5798,"u":"bracers%20of%20armor%20(generic)_crb","p":607,"h":1,"n":"Bracers of Armor"},{"c":2,"s":5,"id":5799,"u":"bracers%20of%20missile%20deflection%20(generic)_crb","p":607,"h":1,"n":"Bracers of Missile Deflection"},{"c":2,"s":5,"id":5800,"u":"bravo's%20brew%20(generic)_crb","p":547,"h":1,"n":"Bravo's Brew"},{"c":2,"s":5,"id":5801,"u":"breastplate%20of%20command%20(generic)_crb","p":557,"h":1,"n":"Breastplate of Command"},{"c":2,"s":5,"id":5802,"u":"brimstone%20fumes_crb","p":551,"h":1,"n":"Brimstone Fumes"},{"c":2,"s":5,"id":5803,"u":"bronze%20bull%20pendant_crb","p":566,"h":1,"n":"Bronze Bull Pendant"},{"c":2,"s":5,"id":5804,"u":"brooch%20of%20shielding_crb","p":607,"h":1,"n":"Brooch of Shielding"},{"c":2,"s":5,"id":5805,"u":"broom%20of%20flying_crb","p":572,"h":1,"n":"Broom of Flying"},{"c":2,"s":5,"id":5806,"u":"caltrop%20snare_crb","p":590,"h":1,"n":"Caltrop Snare"},{"c":2,"s":5,"id":5807,"u":"caltrops_crb","p":288,"h":1,"n":"Caltrops"},{"c":2,"s":5,"id":5808,"u":"candle%20(10)_crb","p":288,"h":1,"n":"Candle (10)"},{"c":2,"s":5,"id":5809,"u":"candle%20of%20truth_crb","p":570,"h":1,"n":"Candle of Truth"},{"c":2,"s":5,"id":5810,"u":"cape%20of%20the%20mountebank_crb","p":607,"h":1,"n":"Cape of the Mountebank"},{"c":2,"s":5,"id":5811,"u":"cassock%20of%20devotion_crb","p":607,"h":1,"n":"Cassock of Devotion"},{"c":2,"s":5,"id":5812,"u":"cat's%20eye%20elixir_crb","p":547,"h":1,"n":"Cat's Eye Elixir"},{"c":2,"s":5,"id":5813,"u":"caterwaul%20sling_crb","p":600,"h":1,"n":"Caterwaul Sling"},{"c":2,"s":5,"id":5814,"u":"celestial%20armor_crb","p":557,"h":1,"n":"Celestial Armor"},{"c":2,"s":5,"id":5815,"u":"chain%20(10%20feet)_crb","p":288,"h":1,"n":"Chain (10 feet)"},{"c":2,"s":5,"id":5816,"u":"chalk%20(10)_crb","p":288,"h":1,"n":"Chalk (10)"},{"c":2,"s":5,"id":5817,"u":"channel%20protection%20amulet_crb","p":608,"h":1,"n":"Channel Protection Amulet"},{"c":2,"s":5,"id":5818,"u":"cheetah's%20elixir%20(generic)_crb","p":547,"h":1,"n":"Cheetah's Elixir"},{"c":2,"s":5,"id":5819,"u":"chest_crb","p":288,"h":1,"n":"Chest"},{"c":2,"s":5,"id":5820,"u":"chime%20of%20opening_crb","p":572,"h":1,"n":"Chime of Opening"},{"c":2,"s":5,"id":5821,"u":"choker%20of%20elocution%20(generic)_crb","p":608,"h":1,"n":"Choker of Elocution"},{"c":2,"s":5,"id":5822,"u":"circlet%20of%20persuasion_crb","p":603,"h":1,"n":"Circlet of Persuasion"},{"c":2,"s":5,"id":5823,"u":"clandestine%20cloak%20(generic)_crb","p":608,"h":1,"n":"Clandestine Cloak"},{"c":2,"s":5,"id":5824,"u":"climbing%20bolt_crb","p":559,"h":1,"n":"Climbing Bolt"},{"c":2,"s":5,"id":5825,"u":"climbing%20kit%20(generic)_crb","p":288,"h":1,"n":"Climbing Kit"},{"c":2,"s":5,"id":5826,"u":"cloak%20of%20elvenkind%20(generic)_crb","p":608,"h":1,"n":"Cloak of Elvenkind"},{"c":2,"s":5,"id":5827,"u":"cloak%20of%20the%20bat%20(generic)_crb","p":608,"h":1,"n":"Cloak of the Bat"},{"c":2,"s":5,"id":5828,"u":"clothing%20(generic)_crb","p":288,"h":1,"n":"Clothing"},{"c":2,"s":5,"id":5829,"u":"cognitive%20mutagen%20(generic)_crb","p":547,"h":1,"n":"Cognitive Mutagen"},{"c":2,"s":5,"id":5830,"u":"cold%20iron%20(generic)_crb","p":578,"h":1,"n":"Cold Iron"},{"c":2,"s":5,"id":5831,"u":"cold%20iron%20armor%20(generic)_crb","p":555,"h":1,"n":"Cold Iron Armor"},{"c":2,"s":5,"id":5832,"u":"cold%20iron%20shield%20(generic)_crb","p":586,"h":1,"n":"Cold Iron Shield"},{"c":2,"s":5,"id":5833,"u":"cold%20iron%20weapon%20(generic)_crb","p":599,"h":1,"n":"Cold Iron Weapon"},{"c":2,"s":5,"id":5834,"u":"collar%20of%20empathy_crb","p":604,"h":1,"n":"Collar of Empathy"},{"c":2,"s":5,"id":5835,"u":"collar%20of%20inconspicuousness_crb","p":604,"h":1,"n":"Collar of Inconspicuousness"},{"c":2,"s":5,"id":5836,"u":"compass%20(generic)_crb","p":288,"h":1,"n":"Compass"},{"c":2,"s":5,"id":5837,"u":"comprehension%20elixir%20(generic)_crb","p":547,"h":1,"n":"Comprehension Elixir"},{"c":2,"s":5,"id":5838,"u":"cookware_crb","p":288,"h":1,"n":"Cookware"},{"c":2,"s":5,"id":5839,"u":"corrosive%20(generic)_crb","p":583,"h":1,"n":"Corrosive"},{"c":2,"s":5,"id":5840,"u":"coyote%20cloak%20(generic)_crb","p":609,"h":1,"n":"Coyote Cloak"},{"c":2,"s":5,"id":5841,"u":"crafter's%20eyepiece%20(generic)_crb","p":609,"h":1,"n":"Crafter's Eyepiece"},{"c":2,"s":5,"id":5842,"u":"crowbar%20(generic)_crb","p":288,"h":1,"n":"Crowbar"},{"c":2,"s":5,"id":5843,"u":"crying%20angel%20pendant_crb","p":566,"h":1,"n":"Crying Angel Pendant"},{"c":2,"s":5,"id":5844,"u":"crystal%20ball%20(generic)_crb","p":572,"h":1,"n":"Crystal Ball"},{"c":2,"s":5,"id":5845,"u":"cytillesh%20oil_crb","p":551,"h":1,"n":"Cytillesh Oil"},{"c":2,"s":5,"id":5846,"u":"dagger%20of%20venom_crb","p":600,"h":1,"n":"Dagger of Venom"},{"c":2,"s":5,"id":5847,"u":"dancing_crb","p":583,"h":1,"n":"Dancing"},{"c":2,"s":5,"id":5848,"u":"dancing%20scarf%20(generic)_crb","p":609,"h":1,"n":"Dancing Scarf"},{"c":2,"s":5,"id":5849,"u":"daredevil%20boots%20(generic)_crb","p":609,"h":1,"n":"Daredevil Boots"},{"c":2,"s":5,"id":5850,"u":"darkvision%20elixir%20(generic)_crb","p":547,"h":1,"n":"Darkvision Elixir"},{"c":2,"s":5,"id":5851,"u":"darkwood%20(generic)_crb","p":578,"h":1,"n":"Darkwood"},{"c":2,"s":5,"id":5852,"u":"darkwood%20armor%20(generic)_crb","p":555,"h":1,"n":"Darkwood Armor"},{"c":2,"s":5,"id":5853,"u":"darkwood%20shield%20(generic)_crb","p":586,"h":1,"n":"Darkwood Shield"},{"c":2,"s":5,"id":5854,"u":"darkwood%20weapon%20(generic)_crb","p":599,"h":1,"n":"Darkwood Weapon"},{"c":2,"s":5,"id":5855,"u":"dazing%20coil_crb","p":566,"h":1,"n":"Dazing Coil"},{"c":2,"s":5,"id":5856,"u":"deathcap%20powder_crb","p":551,"h":1,"n":"Deathcap Powder"},{"c":2,"s":5,"id":5857,"u":"decanter%20of%20endless%20water_crb","p":573,"h":1,"n":"Decanter of Endless Water"},{"c":2,"s":5,"id":5858,"u":"demon%20armor_crb","p":557,"h":1,"n":"Demon Armor"},{"c":2,"s":5,"id":5859,"u":"demon%20mask%20(generic)_crb","p":609,"h":1,"n":"Demon Mask"},{"c":2,"s":5,"id":5860,"u":"diadem%20of%20intellect_crb","p":603,"h":1,"n":"Diadem of Intellect"},{"c":2,"s":5,"id":5861,"u":"diplomat's%20badge_crb","p":609,"h":1,"n":"Diplomat's Badge"},{"c":2,"s":5,"id":5862,"u":"disguise%20kit%20(generic)_crb","p":288,"h":1,"n":"Disguise Kit"},{"c":2,"s":5,"id":5863,"u":"disintegration%20bolt_crb","p":559,"h":1,"n":"Disintegration Bolt"},{"c":2,"s":5,"id":5864,"u":"dispelling%20sliver_crb","p":566,"h":1,"n":"Dispelling Sliver"},{"c":2,"s":5,"id":5865,"u":"disrupting%20(generic)_crb","p":584,"h":1,"n":"Disrupting"},{"c":2,"s":5,"id":5866,"u":"doubling%20rings%20(generic)_crb","p":609,"h":1,"n":"Doubling Rings"},{"c":2,"s":5,"id":5867,"u":"dragon%20bile_crb","p":551,"h":1,"n":"Dragon Bile"},{"c":2,"s":5,"id":5868,"u":"dragon%20turtle%20scale_crb","p":566,"h":1,"n":"Dragon Turtle Scale"},{"c":2,"s":5,"id":5869,"u":"dragon's%20breath%20potion%20(generic)_crb","p":562,"h":1,"n":"Dragon's Breath Potion"},{"c":2,"s":5,"id":5870,"u":"dragonhide%20(generic)_crb","p":579,"h":1,"n":"Dragonhide"},{"c":2,"s":5,"id":5871,"u":"dragonhide%20armor%20(generic)_crb","p":555,"h":1,"n":"Dragonhide Armor"},{"c":2,"s":5,"id":5872,"u":"dragonhide%20shield%20(generic)_crb","p":586,"h":1,"n":"Dragonhide Shield"},{"c":2,"s":5,"id":5873,"u":"dragonplate_crb","p":557,"h":1,"n":"Dragonplate"},{"c":2,"s":5,"id":5874,"u":"dragonslayer's%20shield_crb","p":587,"h":1,"n":"Dragonslayer's Shield"},{"c":2,"s":5,"id":5875,"u":"dread%20blindfold_crb","p":610,"h":1,"n":"Dread Blindfold"},{"c":2,"s":5,"id":5876,"u":"druid's%20vestments_crb","p":610,"h":1,"n":"Druid's Vestments"},{"c":2,"s":5,"id":5877,"u":"dust%20of%20appearance_crb","p":570,"h":1,"n":"Dust of Appearance"},{"c":2,"s":5,"id":5878,"u":"dust%20of%20disappearance_crb","p":570,"h":1,"n":"Dust of Disappearance"},{"c":2,"s":5,"id":5879,"u":"dwarven%20thrower_crb","p":600,"h":1,"n":"Dwarven Thrower"},{"c":2,"s":5,"id":5880,"u":"eagle-eye%20elixir%20(generic)_crb","p":548,"h":1,"n":"Eagle-eye Elixir"},{"c":2,"s":5,"id":5881,"u":"effervescent%20ampoule_crb","p":566,"h":1,"n":"Effervescent Ampoule"},{"c":2,"s":5,"id":5882,"u":"electric%20eelskin_crb","p":557,"h":1,"n":"Electric Eelskin"},{"c":2,"s":5,"id":5883,"u":"elemental%20gem_crb","p":570,"h":1,"n":"Elemental Gem"},{"c":2,"s":5,"id":5884,"u":"elixir%20of%20life%20(generic)_crb","p":548,"h":1,"n":"Elixir of Life"},{"c":2,"s":5,"id":5885,"u":"elixir%20of%20rejuvenation_crb","p":548,"h":1,"n":"Elixir of Rejuvenation"},{"c":2,"s":5,"id":5886,"u":"elven%20chain%20(generic)_crb","p":555,"h":1,"n":"Elven Chain"},{"c":2,"s":5,"id":5887,"u":"emerald%20grasshopper_crb","p":566,"h":1,"n":"Emerald Grasshopper"},{"c":2,"s":5,"id":5888,"u":"energy-resistant%20(generic)_crb","p":582,"h":1,"n":"Energy-Resistant"},{"c":2,"s":5,"id":5889,"u":"ethereal_crb","p":582,"h":1,"n":"Ethereal"},{"c":2,"s":5,"id":5890,"u":"everburning%20torch_crb","p":573,"h":1,"n":"Everburning Torch"},{"c":2,"s":5,"id":5891,"u":"explorer's%20yurt_crb","p":596,"h":1,"n":"Explorer's Yurt"},{"c":2,"s":5,"id":5892,"u":"explosive%20ammunition%20(generic)_crb","p":559,"h":1,"n":"Explosive Ammunition"},{"c":2,"s":5,"id":5893,"u":"extra%20ink%20and%20paper_crb","p":288,"h":1,"n":"Extra Ink and Paper"},{"c":2,"s":5,"id":5894,"u":"eye%20of%20apprehension_crb","p":566,"h":1,"n":"Eye of Apprehension"},{"c":2,"s":5,"id":5895,"u":"eye%20of%20fortune_crb","p":610,"h":1,"n":"Eye of Fortune"},{"c":2,"s":5,"id":5896,"u":"eyes%20of%20the%20eagle_crb","p":610,"h":1,"n":"Eyes of the Eagle"},{"c":2,"s":5,"id":5897,"u":"fade%20band_crb","p":566,"h":1,"n":"Fade Band"},{"c":2,"s":5,"id":5898,"u":"fear%20gem_crb","p":566,"h":1,"n":"Fear Gem"},{"c":2,"s":5,"id":5899,"u":"feather%20step%20stone_crb","p":567,"h":1,"n":"Feather Step Stone"},{"c":2,"s":5,"id":5900,"u":"feather%20token%20(generic)_crb","p":570,"h":1,"n":"Feather Token"},{"c":2,"s":5,"id":5901,"u":"fighter's%20fork_crb","p":600,"h":1,"n":"Fighter's Fork"},{"c":2,"s":5,"id":5902,"u":"fishing%20tackle%20(generic)_crb","p":288,"h":1,"n":"Fishing Tackle"},{"c":2,"s":5,"id":5903,"u":"flame%20navette_crb","p":567,"h":1,"n":"Flame Navette"},{"c":2,"s":5,"id":5904,"u":"flame%20tongue%20(generic)_crb","p":600,"h":1,"n":"Flame Tongue"},{"c":2,"s":5,"id":5905,"u":"flaming%20(generic)_crb","p":584,"h":1,"n":"Flaming"},{"c":2,"s":5,"id":5906,"u":"flint%20and%20steel_crb","p":288,"h":1,"n":"Flint and Steel"},{"c":2,"s":5,"id":5907,"u":"floating%20shield%20(generic)_crb","p":587,"h":1,"n":"Floating Shield"},{"c":2,"s":5,"id":5908,"u":"flying%20blade%20wheel%20snare_crb","p":590,"h":1,"n":"Flying Blade Wheel Snare"},{"c":2,"s":5,"id":5909,"u":"force%20shield_crb","p":587,"h":1,"n":"Force Shield"},{"c":2,"s":5,"id":5910,"u":"forge%20warden_crb","p":587,"h":1,"n":"Forge Warden"},{"c":2,"s":5,"id":5911,"u":"formula%20book%20(blank)_crb","p":288,"h":1,"n":"Formula Book (blank)"},{"c":2,"s":5,"id":5912,"u":"fortification%20(generic)_crb","p":582,"h":1,"n":"Fortification"},{"c":2,"s":5,"id":5913,"u":"frost%20(generic)_crb","p":584,"h":1,"n":"Frost"},{"c":2,"s":5,"id":5914,"u":"frost%20brand_crb","p":601,"h":1,"n":"Frost Brand"},{"c":2,"s":5,"id":5915,"u":"frost%20vial%20(generic)_crb","p":545,"h":1,"n":"Frost Vial"},{"c":2,"s":5,"id":5916,"u":"gallows%20tooth_crb","p":567,"h":1,"n":"Gallows Tooth"},{"c":2,"s":5,"id":5917,"u":"ghost%20ammunition_crb","p":559,"h":1,"n":"Ghost Ammunition"},{"c":2,"s":5,"id":5918,"u":"ghost%20dust_crb","p":567,"h":1,"n":"Ghost Dust"},{"c":2,"s":5,"id":5919,"u":"ghost%20touch_crb","p":584,"h":1,"n":"Ghost Touch"},{"c":2,"s":5,"id":5920,"u":"ghoul%20hide_crb","p":558,"h":1,"n":"Ghoul Hide"},{"c":2,"s":5,"id":5921,"u":"giant%20centipede%20venom_crb","p":551,"h":1,"n":"Giant Centipede Venom"},{"c":2,"s":5,"id":5922,"u":"giant%20scorpion%20venom_crb","p":551,"h":1,"n":"Giant Scorpion Venom"},{"c":2,"s":5,"id":5923,"u":"giant%20wasp%20venom_crb","p":552,"h":1,"n":"Giant Wasp Venom"},{"c":2,"s":5,"id":5924,"u":"glamered_crb","p":583,"h":1,"n":"Glamered"},{"c":2,"s":5,"id":5925,"u":"gloom%20blade_crb","p":601,"h":1,"n":"Gloom Blade"},{"c":2,"s":5,"id":5926,"u":"gloves%20of%20storing_crb","p":610,"h":1,"n":"Gloves of Storing"},{"c":2,"s":5,"id":5927,"u":"goggles%20of%20night%20(generic)_crb","p":610,"h":1,"n":"Goggles of Night"},{"c":2,"s":5,"id":5928,"u":"gorget%20of%20the%20primal%20roar_crb","p":611,"h":1,"n":"Gorget of the Primal Roar"},{"c":2,"s":5,"id":5929,"u":"grappling%20hook_crb","p":288,"h":1,"n":"Grappling Hook"},{"c":2,"s":5,"id":5930,"u":"grasping%20snare_crb","p":590,"h":1,"n":"Grasping Snare"},{"c":2,"s":5,"id":5931,"u":"graveroot_crb","p":552,"h":1,"n":"Graveroot"},{"c":2,"s":5,"id":5932,"u":"grievous_crb","p":584,"h":1,"n":"Grievous"},{"c":2,"s":5,"id":5933,"u":"grim%20trophy_crb","p":567,"h":1,"n":"Grim Trophy"},{"c":2,"s":5,"id":5934,"u":"hail%20of%20arrows%20snare_crb","p":590,"h":1,"n":"Hail of Arrows Snare"},{"c":2,"s":5,"id":5935,"u":"hammer_crb","p":288,"h":1,"n":"Hammer"},{"c":2,"s":5,"id":5936,"u":"hampering%20snare_crb","p":590,"h":1,"n":"Hampering Snare"},{"c":2,"s":5,"id":5937,"u":"hand%20of%20the%20mage_crb","p":611,"h":1,"n":"Hand of the Mage"},{"c":2,"s":5,"id":5938,"u":"handwraps%20of%20mighty%20blows%20(generic)_crb","p":611,"h":1,"n":"Handwraps of Mighty Blows"},{"c":2,"s":5,"id":5939,"u":"hat%20of%20disguise%20(generic)_crb","p":611,"h":1,"n":"Hat of Disguise"},{"c":2,"s":5,"id":5940,"u":"hat%20of%20the%20magi%20(generic)_crb","p":611,"h":1,"n":"Hat of the Magi"},{"c":2,"s":5,"id":5941,"u":"headband%20of%20inspired%20wisdom_crb","p":604,"h":1,"n":"Headband of Inspired Wisdom"},{"c":2,"s":5,"id":5942,"u":"healer's%20gloves%20(generic)_crb","p":612,"h":1,"n":"Healer's Gloves"},{"c":2,"s":5,"id":5943,"u":"healer's%20tools%20(generic)_crb","p":288,"h":1,"n":"Healer's Tools"},{"c":2,"s":5,"id":5944,"u":"healing%20potion%20(generic)_crb","p":563,"h":1,"n":"Healing Potion"},{"c":2,"s":5,"id":5945,"u":"hemlock_crb","p":552,"h":1,"n":"Hemlock"},{"c":2,"s":5,"id":5946,"u":"hobbling%20snare_crb","p":590,"h":1,"n":"Hobbling Snare"},{"c":2,"s":5,"id":5947,"u":"holly%20and%20mistletoe_crb","p":288,"h":1,"n":"Holly and Mistletoe"},{"c":2,"s":5,"id":5948,"u":"holy_crb","p":584,"h":1,"n":"Holy"},{"c":2,"s":5,"id":5949,"u":"holy%20avenger_crb","p":601,"h":1,"n":"Holy Avenger"},{"c":2,"s":5,"id":5950,"u":"holy%20prayer%20beads%20(generic)_crb","p":573,"h":1,"n":"Holy Prayer Beads"},{"c":2,"s":5,"id":5951,"u":"holy%20water_crb","p":571,"h":1,"n":"Holy Water"},{"c":2,"s":5,"id":5952,"u":"horn%20of%20blasting_crb","p":573,"h":1,"n":"Horn of Blasting"},{"c":2,"s":5,"id":5953,"u":"horn%20of%20fog_crb","p":573,"h":1,"n":"Horn of Fog"},{"c":2,"s":5,"id":5954,"u":"horseshoes%20of%20speed%20(generic)_crb","p":604,"h":1,"n":"Horseshoes of Speed"},{"c":2,"s":5,"id":5955,"u":"hourglass_crb","p":288,"h":1,"n":"Hourglass"},{"c":2,"s":5,"id":5956,"u":"hunter's%20bane_crb","p":567,"h":1,"n":"Hunter's Bane"},{"c":2,"s":5,"id":5957,"u":"hunting%20spider%20venom_crb","p":552,"h":1,"n":"Hunting Spider Venom"},{"c":2,"s":5,"id":5958,"u":"immovable%20rod_crb","p":574,"h":1,"n":"Immovable Rod"},{"c":2,"s":5,"id":5959,"u":"impenetrable%20scale_crb","p":558,"h":1,"n":"Impenetrable Scale"},{"c":2,"s":5,"id":5960,"u":"indestructible%20shield_crb","p":588,"h":1,"n":"Indestructible Shield"},{"c":2,"s":5,"id":5961,"u":"inexplicable%20apparatus_crb","p":612,"h":1,"n":"Inexplicable Apparatus"},{"c":2,"s":5,"id":5962,"u":"infiltrator's%20elixir_crb","p":548,"h":1,"n":"Infiltrator's Elixir"},{"c":2,"s":5,"id":5963,"u":"instant%20evisceration%20snare_crb","p":590,"h":1,"n":"Instant Evisceration Snare"},{"c":2,"s":5,"id":5964,"u":"instant%20fortress_crb","p":596,"h":1,"n":"Instant Fortress"},{"c":2,"s":5,"id":5965,"u":"invisibility%20(generic)_crb","p":583,"h":1,"n":"Invisibility"},{"c":2,"s":5,"id":5966,"u":"invisibility%20potion_crb","p":563,"h":1,"n":"Invisibility Potion"},{"c":2,"s":5,"id":5967,"u":"iron%20cube_crb","p":567,"h":1,"n":"Iron Cube"},{"c":2,"s":5,"id":5968,"u":"iron%20cudgel_crb","p":567,"h":1,"n":"Iron Cudgel"},{"c":2,"s":5,"id":5969,"u":"iron%20equalizer_crb","p":567,"h":1,"n":"Iron Equalizer"},{"c":2,"s":5,"id":5970,"u":"iron%20medallion_crb","p":568,"h":1,"n":"Iron Medallion"},{"c":2,"s":5,"id":5971,"u":"jade%20bauble_crb","p":568,"h":1,"n":"Jade Bauble"},{"c":2,"s":5,"id":5972,"u":"jade%20cat_crb","p":568,"h":1,"n":"Jade Cat"},{"c":2,"s":5,"id":5973,"u":"javelin%20of%20lightning_crb","p":571,"h":1,"n":"Javelin of Lightning"},{"c":2,"s":5,"id":5974,"u":"juggernaut%20mutagen%20(generic)_crb","p":548,"h":1,"n":"Juggernaut Mutagen"},{"c":2,"s":5,"id":5975,"u":"keen_crb","p":584,"h":1,"n":"Keen"},{"c":2,"s":5,"id":5976,"u":"king's%20sleep_crb","p":552,"h":1,"n":"King's Sleep"},{"c":2,"s":5,"id":5977,"u":"knapsack%20of%20halflingkind%20(generic)_crb","p":612,"h":1,"n":"Knapsack of Halflingkind"},{"c":2,"s":5,"id":5978,"u":"ladder%20(10-foot)_crb","p":288,"h":1,"n":"Ladder (10-foot)"},{"c":2,"s":5,"id":5979,"u":"lantern%20(generic)_crb","p":288,"h":1,"n":"Lantern"},{"c":2,"s":5,"id":5980,"u":"leaper's%20elixir%20(generic)_crb","p":549,"h":1,"n":"Leaper's Elixir"},{"c":2,"s":5,"id":5981,"u":"lethargy%20poison_crb","p":552,"h":1,"n":"Lethargy Poison"},{"c":2,"s":5,"id":5982,"u":"lich%20dust_crb","p":552,"h":1,"n":"Lich Dust"},{"c":2,"s":5,"id":5983,"u":"lifting%20belt_crb","p":613,"h":1,"n":"Lifting Belt"},{"c":2,"s":5,"id":5984,"u":"lion's%20shield_crb","p":588,"h":1,"n":"Lion's Shield"},{"c":2,"s":5,"id":5985,"u":"lock%20(generic)_crb","p":288,"h":1,"n":"Lock"},{"c":2,"s":5,"id":5986,"u":"luck%20blade%20(generic)_crb","p":601,"h":1,"n":"Luck Blade"},{"c":2,"s":5,"id":5987,"u":"maestro's%20instrument%20(generic)_crb","p":574,"h":1,"n":"Maestro's Instrument"},{"c":2,"s":5,"id":5988,"u":"scroll%20(generic)_crb","p":564,"h":1,"n":"Scroll"},{"c":2,"s":5,"id":5989,"u":"magic%20wand%20(generic)_crb","p":597,"h":1,"n":"Magic Wand"},{"c":2,"s":5,"id":5990,"u":"magnifying%20glass_crb","p":288,"h":1,"n":"Magnifying Glass"},{"c":2,"s":5,"id":5991,"u":"mail%20of%20luck_crb","p":558,"h":1,"n":"Mail of Luck"},{"c":2,"s":5,"id":5992,"u":"malyass%20root%20paste_crb","p":552,"h":1,"n":"Malyass Root Paste"},{"c":2,"s":5,"id":5993,"u":"manacles%20(generic)_crb","p":288,"h":1,"n":"Manacles"},{"c":2,"s":5,"id":5994,"u":"marking%20snare_crb","p":590,"h":1,"n":"Marking Snare"},{"c":2,"s":5,"id":5995,"u":"marvelous%20medicines%20(generic)_crb","p":574,"h":1,"n":"Marvelous Medicines"},{"c":2,"s":5,"id":5996,"u":"material%20component%20pouch_crb","p":288,"h":1,"n":"Material Component Pouch"},{"c":2,"s":5,"id":5997,"u":"mattock%20of%20the%20titans_crb","p":601,"h":1,"n":"Mattock of the Titans"},{"c":2,"s":5,"id":5998,"u":"mending%20lattice_crb","p":568,"h":1,"n":"Mending Lattice"},{"c":2,"s":5,"id":5999,"u":"mentalist's%20staff%20(generic)_crb","p":592,"h":1,"n":"Mentalist's Staff"},{"c":2,"s":5,"id":6000,"u":"merchant's%20scale_crb","p":288,"h":1,"n":"Merchant's Scale"},{"c":2,"s":5,"id":6001,"u":"mesmerizing%20opal_crb","p":568,"h":1,"n":"Mesmerizing Opal"},{"c":2,"s":5,"id":6002,"u":"messenger's%20ring%20(generic)_crb","p":613,"h":1,"n":"Messenger's Ring"},{"c":2,"s":5,"id":6003,"u":"mindfog%20mist_crb","p":553,"h":1,"n":"Mindfog Mist"},{"c":2,"s":5,"id":6004,"u":"mirror_crb","p":288,"h":1,"n":"Mirror"},{"c":2,"s":5,"id":6005,"u":"mistform%20elixir%20(generic)_crb","p":549,"h":1,"n":"Mistform Elixir"},{"c":2,"s":5,"id":6006,"u":"mithral%20(generic)_crb","p":579,"h":1,"n":"Mithral"},{"c":2,"s":5,"id":6007,"u":"mithral%20armor%20(generic)_crb","p":556,"h":1,"n":"Mithral Armor"},{"c":2,"s":5,"id":6008,"u":"mithral%20shield%20(generic)_crb","p":586,"h":1,"n":"Mithral Shield"},{"c":2,"s":5,"id":6009,"u":"mithral%20weapon%20(generic)_crb","p":599,"h":1,"n":"Mithral Weapon"},{"c":2,"s":5,"id":6010,"u":"monkey%20pin_crb","p":568,"h":1,"n":"Monkey Pin"},{"c":2,"s":5,"id":6011,"u":"moonlit%20chain_crb","p":558,"h":1,"n":"Moonlit Chain"},{"c":2,"s":5,"id":6012,"u":"mug_crb","p":288,"h":1,"n":"Mug"},{"c":2,"s":5,"id":6013,"u":"mummified%20bat_crb","p":568,"h":1,"n":"Mummified Bat"},{"c":2,"s":5,"id":6014,"u":"murderer's%20knot_crb","p":568,"h":1,"n":"Murderer's Knot"},{"c":2,"s":5,"id":6015,"u":"musical%20instrument%20(generic)_crb","p":288,"h":1,"n":"Musical Instrument"},{"c":2,"s":5,"id":6016,"u":"necklace%20of%20fireballs%20(generic)_crb","p":613,"h":1,"n":"Necklace of Fireballs"},{"c":2,"s":5,"id":6017,"u":"nectar%20of%20purification_crb","p":561,"h":1,"n":"Nectar of Purification"},{"c":2,"s":5,"id":6018,"u":"nettleweed%20residue_crb","p":553,"h":1,"n":"Nettleweed Residue"},{"c":2,"s":5,"id":6019,"u":"nightmare%20vapor_crb","p":553,"h":1,"n":"Nightmare Vapor"},{"c":2,"s":5,"id":6020,"u":"oathbow_crb","p":602,"h":1,"n":"Oathbow"},{"c":2,"s":5,"id":6021,"u":"obfuscation%20oil_crb","p":561,"h":1,"n":"Obfuscation Oil"},{"c":2,"s":5,"id":6022,"u":"oil%20(1%20pint)_crb","p":288,"h":1,"n":"Oil (1 pint)"},{"c":2,"s":5,"id":6023,"u":"oil%20of%20animation_crb","p":561,"h":1,"n":"Oil of Animation"},{"c":2,"s":5,"id":6024,"u":"oil%20of%20keen%20edges_crb","p":561,"h":1,"n":"Oil of Keen Edges"},{"c":2,"s":5,"id":6025,"u":"oil%20of%20mending_crb","p":561,"h":1,"n":"Oil of Mending"},{"c":2,"s":5,"id":6026,"u":"oil%20of%20potency_crb","p":562,"h":1,"n":"Oil of Potency"},{"c":2,"s":5,"id":6027,"u":"oil%20of%20repulsion_crb","p":562,"h":1,"n":"Oil of Repulsion"},{"c":2,"s":5,"id":6028,"u":"oil%20of%20weightlessness%20(generic)_crb","p":562,"h":1,"n":"Oil of Weightlessness"},{"c":2,"s":5,"id":6029,"u":"omnidirectional%20spear%20snare_crb","p":591,"h":1,"n":"Omnidirectional Spear Snare"},{"c":2,"s":5,"id":6030,"u":"onyx%20panther_crb","p":569,"h":1,"n":"Onyx Panther"},{"c":2,"s":5,"id":6031,"u":"orichalcum%20(generic)_crb","p":579,"h":1,"n":"Orichalcum"},{"c":2,"s":5,"id":6032,"u":"orichalcum%20armor%20(generic)_crb","p":556,"h":1,"n":"Orichalcum Armor"},{"c":2,"s":5,"id":6033,"u":"orichalcum%20shield%20(generic)_crb","p":587,"h":1,"n":"Orichalcum Shield"},{"c":2,"s":5,"id":6034,"u":"orichalcum%20weapon%20(generic)_crb","p":599,"h":1,"n":"Orichalcum Weapon"},{"c":2,"s":5,"id":6035,"u":"owlbear%20claw_crb","p":569,"h":1,"n":"Owlbear Claw"},{"c":2,"s":5,"id":6036,"u":"panacea_crb","p":563,"h":1,"n":"Panacea"},{"c":2,"s":5,"id":6037,"u":"pendant%20of%20the%20occult%20(generic)_crb","p":613,"h":1,"n":"Pendant of the Occult"},{"c":2,"s":5,"id":6038,"u":"penetrating%20ammunition_crb","p":560,"h":1,"n":"Penetrating Ammunition"},{"c":2,"s":5,"id":6039,"u":"persona%20mask%20(generic)_crb","p":613,"h":1,"n":"Persona Mask"},{"c":2,"s":5,"id":6040,"u":"philosopher's%20stone_crb","p":554,"h":1,"n":"Philosopher's Stone"},{"c":2,"s":5,"id":6041,"u":"phylactery%20of%20faithfulness%20(generic)_crb","p":614,"h":1,"n":"Phylactery of Faithfulness"},{"c":2,"s":5,"id":6042,"u":"piton_crb","p":288,"h":1,"n":"Piton"},{"c":2,"s":5,"id":6043,"u":"plate%20armor%20of%20the%20deep_crb","p":558,"h":1,"n":"Plate Armor of the Deep"},{"c":2,"s":5,"id":6044,"u":"pocket%20stage_crb","p":596,"h":1,"n":"Pocket Stage"},{"c":2,"s":5,"id":6045,"u":"possibility%20tome_crb","p":574,"h":1,"n":"Possibility Tome"},{"c":2,"s":5,"id":6046,"u":"potency%20crystal_crb","p":569,"h":1,"n":"Potency Crystal"},{"c":2,"s":5,"id":6047,"u":"potion%20of%20flying%20(generic)_crb","p":563,"h":1,"n":"Potion of Flying"},{"c":2,"s":5,"id":6048,"u":"potion%20of%20leaping_crb","p":563,"h":1,"n":"Potion of Leaping"},{"c":2,"s":5,"id":6049,"u":"potion%20of%20quickness_crb","p":563,"h":1,"n":"Potion of Quickness"},{"c":2,"s":5,"id":6050,"u":"potion%20of%20resistance%20(generic)_crb","p":563,"h":1,"n":"Potion of Resistance"},{"c":2,"s":5,"id":6051,"u":"potion%20of%20swimming%20(generic)_crb","p":563,"h":1,"n":"Potion of Swimming"},{"c":2,"s":5,"id":6052,"u":"potion%20of%20tongues_crb","p":563,"h":1,"n":"Potion of Tongues"},{"c":2,"s":5,"id":6053,"u":"potion%20of%20undetectability_crb","p":563,"h":1,"n":"Potion of Undetectability"},{"c":2,"s":5,"id":6054,"u":"potion%20of%20water%20breathing_crb","p":564,"h":1,"n":"Potion of Water Breathing"},{"c":2,"s":5,"id":6055,"u":"primeval%20mistletoe%20(generic)_crb","p":574,"h":1,"n":"Primeval Mistletoe"},{"c":2,"s":5,"id":6056,"u":"purple%20worm%20venom_crb","p":553,"h":1,"n":"Purple Worm Venom"},{"c":2,"s":5,"id":6057,"u":"quicksilver%20mutagen%20(generic)_crb","p":549,"h":1,"n":"Quicksilver Mutagen"},{"c":2,"s":5,"id":6058,"u":"rations%20(1%20week)_crb","p":288,"h":1,"n":"Rations (1 week)"},{"c":2,"s":5,"id":6059,"u":"reflecting%20shield_crb","p":588,"h":1,"n":"Reflecting Shield"},{"c":2,"s":5,"id":6060,"u":"religious%20symbol%20(generic)_crb","p":288,"h":1,"n":"Religious Symbol"},{"c":2,"s":5,"id":6061,"u":"religious%20text_crb","p":288,"h":1,"n":"Religious Text"},{"c":2,"s":5,"id":6062,"u":"repair%20kit%20(generic)_crb","p":288,"h":1,"n":"Repair Kit"},{"c":2,"s":5,"id":6063,"u":"replacement%20cosmetics%20(generic)_crb","p":288,"h":1,"n":"Replacement Cosmetics"},{"c":2,"s":5,"id":6064,"u":"replacement%20picks%20(generic)_crb","p":288,"h":1,"n":"Replacement Picks"},{"c":2,"s":5,"id":6065,"u":"resilient%20(generic)_crb","p":581,"h":1,"n":"Resilient"},{"c":2,"s":5,"id":6066,"u":"retribution%20axe_crb","p":602,"h":1,"n":"Retribution Axe"},{"c":2,"s":5,"id":6067,"u":"returning_crb","p":584,"h":1,"n":"Returning"},{"c":2,"s":5,"id":6068,"u":"rhino%20hide_crb","p":558,"h":1,"n":"Rhino Hide"},{"c":2,"s":5,"id":6069,"u":"ring%20of%20climbing_crb","p":614,"h":1,"n":"Ring of Climbing"},{"c":2,"s":5,"id":6070,"u":"ring%20of%20counterspells_crb","p":614,"h":1,"n":"Ring of Counterspells"},{"c":2,"s":5,"id":6071,"u":"ring%20of%20energy%20resistance%20(generic)_crb","p":614,"h":1,"n":"Ring of Energy Resistance"},{"c":2,"s":5,"id":6072,"u":"ring%20of%20lies_crb","p":614,"h":1,"n":"Ring of Lies"},{"c":2,"s":5,"id":6073,"u":"ring%20of%20maniacal%20devices%20(generic)_crb","p":614,"h":1,"n":"Ring of Maniacal Devices"},{"c":2,"s":5,"id":6074,"u":"ring%20of%20spell%20turning_crb","p":615,"h":1,"n":"Ring of Spell Turning"},{"c":2,"s":5,"id":6075,"u":"ring%20of%20sustenance_crb","p":615,"h":1,"n":"Ring of Sustenance"},{"c":2,"s":5,"id":6076,"u":"ring%20of%20swimming_crb","p":615,"h":1,"n":"Ring of Swimming"},{"c":2,"s":5,"id":6077,"u":"ring%20of%20the%20ram%20(generic)_crb","p":615,"h":1,"n":"Ring of the Ram"},{"c":2,"s":5,"id":6078,"u":"ring%20of%20wizardry%20(generic)_crb","p":615,"h":1,"n":"Ring of Wizardry"},{"c":2,"s":5,"id":6079,"u":"robe%20of%20eyes_crb","p":615,"h":1,"n":"Robe of Eyes"},{"c":2,"s":5,"id":6080,"u":"robe%20of%20the%20archmagi%20(generic)_crb","p":616,"h":1,"n":"Robe of the Archmagi"},{"c":2,"s":5,"id":6081,"u":"rod%20of%20negation_crb","p":574,"h":1,"n":"Rod of Negation"},{"c":2,"s":5,"id":6082,"u":"rod%20of%20wonder_crb","p":575,"h":1,"n":"Rod of Wonder"},{"c":2,"s":5,"id":6083,"u":"rope%20(50%20feet)_crb","p":288,"h":1,"n":"Rope (50 feet)"},{"c":2,"s":5,"id":6084,"u":"runestone_crb","p":571,"h":1,"n":"Runestone"},{"c":2,"s":5,"id":6085,"u":"sack%20(5)_crb","p":288,"h":1,"n":"Sack (5)"},{"c":2,"s":5,"id":6086,"u":"saddlebags_crb","p":288,"h":1,"n":"Saddlebags"},{"c":2,"s":5,"id":6087,"u":"salamander%20elixir%20(generic)_crb","p":549,"h":1,"n":"Salamander Elixir"},{"c":2,"s":5,"id":6088,"u":"salve%20of%20antiparalysis%20(generic)_crb","p":562,"h":1,"n":"Salve of Antiparalysis"},{"c":2,"s":5,"id":6089,"u":"salve%20of%20slipperiness_crb","p":562,"h":1,"n":"Salve of Slipperiness"},{"c":2,"s":5,"id":6090,"u":"savior%20spike_crb","p":569,"h":1,"n":"Savior Spike"},{"c":2,"s":5,"id":6091,"u":"scholarly%20journal%20(generic)_crb","p":288,"h":1,"n":"Scholarly Journal"},{"c":2,"s":5,"id":6092,"u":"scything%20blade%20snare_crb","p":591,"h":1,"n":"Scything Blade Snare"},{"c":2,"s":5,"id":6093,"u":"sea%20touch%20elixir%20(generic)_crb","p":549,"h":1,"n":"Sea Touch Elixir"},{"c":2,"s":5,"id":6094,"u":"serene%20mutagen%20(generic)_crb","p":549,"h":1,"n":"Serene Mutagen"},{"c":2,"s":5,"id":6095,"u":"serum%20of%20sex%20shift_crb","p":564,"h":1,"n":"Serum of Sex Shift"},{"c":2,"s":5,"id":6096,"u":"shadow%20(generic)_crb","p":583,"h":1,"n":"Shadow"},{"c":2,"s":5,"id":6097,"u":"shadow%20essence_crb","p":553,"h":1,"n":"Shadow Essence"},{"c":2,"s":5,"id":6098,"u":"shark%20tooth%20charm_crb","p":569,"h":1,"n":"Shark Tooth Charm"},{"c":2,"s":5,"id":6099,"u":"shifting_crb","p":585,"h":1,"n":"Shifting"},{"c":2,"s":5,"id":6100,"u":"shining%20ammunition_crb","p":560,"h":1,"n":"Shining Ammunition"},{"c":2,"s":5,"id":6101,"u":"shock%20(generic)_crb","p":585,"h":1,"n":"Shock"},{"c":2,"s":5,"id":6102,"u":"shrinking%20potion%20(generic)_crb","p":564,"h":1,"n":"Shrinking Potion"},{"c":2,"s":5,"id":6103,"u":"signal%20whistle_crb","p":288,"h":1,"n":"Signal Whistle"},{"c":2,"s":5,"id":6104,"u":"signaling%20snare_crb","p":591,"h":1,"n":"Signaling Snare"},{"c":2,"s":5,"id":6105,"u":"silver%20(generic)_crb","p":579,"h":1,"n":"Silver"},{"c":2,"s":5,"id":6106,"u":"silver%20armor%20(generic)_crb","p":556,"h":1,"n":"Silver Armor"},{"c":2,"s":5,"id":6107,"u":"silver%20shield%20(generic)_crb","p":587,"h":1,"n":"Silver Shield"},{"c":2,"s":5,"id":6108,"u":"silver%20weapon%20(generic)_crb","p":599,"h":1,"n":"Silver Weapon"},{"c":2,"s":5,"id":6109,"u":"silversheen_crb","p":554,"h":1,"n":"Silversheen"},{"c":2,"s":5,"id":6110,"u":"silvertongue%20mutagen%20(generic)_crb","p":550,"h":1,"n":"Silvertongue Mutagen"},{"c":2,"s":5,"id":6111,"u":"skeleton%20key%20(generic)_crb","p":575,"h":1,"n":"Skeleton Key"},{"c":2,"s":5,"id":6112,"u":"sky%20hammer_crb","p":602,"h":1,"n":"Sky Hammer"},{"c":2,"s":5,"id":6113,"u":"sleep%20arrow_crb","p":560,"h":1,"n":"Sleep Arrow"},{"c":2,"s":5,"id":6114,"u":"slick%20(generic)_crb","p":583,"h":1,"n":"Slick"},{"c":2,"s":5,"id":6115,"u":"sling%20bullets_crb","p":282,"h":1,"n":"Sling Bullets"},{"c":2,"s":5,"id":6116,"u":"slippers%20of%20spider%20climbing_crb","p":616,"h":1,"n":"Slippers of Spider Climbing"},{"c":2,"s":5,"id":6117,"u":"slumber%20wine_crb","p":553,"h":1,"n":"Slumber Wine"},{"c":2,"s":5,"id":6118,"u":"smokestick%20(generic)_crb","p":554,"h":1,"n":"Smokestick"},{"c":2,"s":5,"id":6119,"u":"snake%20oil_crb","p":554,"h":1,"n":"Snake Oil"},{"c":2,"s":5,"id":6120,"u":"snare%20kit%20(generic)_crb","p":288,"h":1,"n":"Snare Kit"},{"c":2,"s":5,"id":6121,"u":"sneaky%20key_crb","p":569,"h":1,"n":"Sneaky Key"},{"c":2,"s":5,"id":6122,"u":"soap_crb","p":288,"h":1,"n":"Soap"},{"c":2,"s":5,"id":6123,"u":"speed_crb","p":585,"h":1,"n":"Speed"},{"c":2,"s":5,"id":6124,"u":"spell-storing_crb","p":585,"h":1,"n":"Spell-storing"},{"c":2,"s":5,"id":6125,"u":"spellbook%20(blank)_crb","p":288,"h":1,"n":"Spellbook (Blank)"},{"c":2,"s":5,"id":6126,"u":"spellguard%20shield_crb","p":588,"h":1,"n":"Spellguard Shield"},{"c":2,"s":5,"id":6127,"u":"spellstrike%20ammunition%20(generic)_crb","p":560,"h":1,"n":"Spellstrike Ammunition"},{"c":2,"s":5,"id":6128,"u":"spider%20root_crb","p":553,"h":1,"n":"Spider Root"},{"c":2,"s":5,"id":6129,"u":"spike%20snare_crb","p":591,"h":1,"n":"Spike Snare"},{"c":2,"s":5,"id":6130,"u":"spined%20shield_crb","p":588,"h":1,"n":"Spined Shield"},{"c":2,"s":5,"id":6131,"u":"spyglass%20(generic)_crb","p":288,"h":1,"n":"Spyglass"},{"c":2,"s":5,"id":6132,"u":"staff%20of%20abjuration%20(generic)_crb","p":593,"h":1,"n":"Staff of Abjuration"},{"c":2,"s":5,"id":6133,"u":"staff%20of%20conjuration%20(generic)_crb","p":593,"h":1,"n":"Staff of Conjuration"},{"c":2,"s":5,"id":6134,"u":"staff%20of%20divination%20(generic)_crb","p":593,"h":1,"n":"Staff of Divination"},{"c":2,"s":5,"id":6135,"u":"staff%20of%20enchantment%20(generic)_crb","p":593,"h":1,"n":"Staff of Enchantment"},{"c":2,"s":5,"id":6136,"u":"staff%20of%20evocation%20(generic)_crb","p":593,"h":1,"n":"Staff of Evocation"},{"c":2,"s":5,"id":6137,"u":"staff%20of%20fire%20(generic)_crb","p":594,"h":1,"n":"Staff of Fire"},{"c":2,"s":5,"id":6138,"u":"staff%20of%20healing%20(generic)_crb","p":594,"h":1,"n":"Staff of Healing"},{"c":2,"s":5,"id":6139,"u":"staff%20of%20illumination_crb","p":594,"h":1,"n":"Staff of Illumination"},{"c":2,"s":5,"id":6140,"u":"staff%20of%20illusion%20(generic)_crb","p":594,"h":1,"n":"Staff of Illusion"},{"c":2,"s":5,"id":6141,"u":"staff%20of%20necromancy%20(generic)_crb","p":594,"h":1,"n":"Staff of Necromancy"},{"c":2,"s":5,"id":6142,"u":"staff%20of%20power_crb","p":595,"h":1,"n":"Staff of Power"},{"c":2,"s":5,"id":6143,"u":"staff%20of%20the%20magi_crb","p":595,"h":1,"n":"Staff of the Magi"},{"c":2,"s":5,"id":6144,"u":"staff%20of%20transmutation%20(generic)_crb","p":595,"h":1,"n":"Staff of Transmutation"},{"c":2,"s":5,"id":6145,"u":"stalker%20bane%20snare_crb","p":591,"h":1,"n":"Stalker Bane Snare"},{"c":2,"s":5,"id":6146,"u":"stone%20bullet_crb","p":560,"h":1,"n":"Stone Bullet"},{"c":2,"s":5,"id":6147,"u":"stone%20fist%20elixir_crb","p":550,"h":1,"n":"Stone Fist Elixir"},{"c":2,"s":5,"id":6148,"u":"storm%20arrow_crb","p":560,"h":1,"n":"Storm Arrow"},{"c":2,"s":5,"id":6149,"u":"storm%20flash%20(generic)_crb","p":602,"h":1,"n":"Storm Flash"},{"c":2,"s":5,"id":6150,"u":"striking%20(generic)_crb","p":581,"h":1,"n":"Striking"},{"c":2,"s":5,"id":6151,"u":"striking%20snare_crb","p":591,"h":1,"n":"Striking Snare"},{"c":2,"s":5,"id":6152,"u":"stunning%20snare_crb","p":591,"h":1,"n":"Stunning Snare"},{"c":2,"s":5,"id":6153,"u":"sturdy%20shield%20(generic)_crb","p":588,"h":1,"n":"Sturdy Shield"},{"c":2,"s":5,"id":6154,"u":"sunrod_crb","p":554,"h":1,"n":"Sunrod"},{"c":2,"s":5,"id":6155,"u":"survey%20map%20(generic)_crb","p":288,"h":1,"n":"Survey Map"},{"c":2,"s":5,"id":6156,"u":"swift%20block%20cabochon_crb","p":569,"h":1,"n":"Swift Block Cabochon"},{"c":2,"s":5,"id":6157,"u":"tack_crb","p":288,"h":1,"n":"Tack"},{"c":2,"s":5,"id":6158,"u":"tanglefoot%20bag%20(generic)_crb","p":545,"h":1,"n":"Tanglefoot Bag"},{"c":2,"s":5,"id":6159,"u":"tears%20of%20death_crb","p":553,"h":1,"n":"Tears of Death"},{"c":2,"s":5,"id":6160,"u":"ten-foot%20pole_crb","p":288,"h":1,"n":"Ten-Foot Pole"},{"c":2,"s":5,"id":6161,"u":"tent%20(generic)_crb","p":288,"h":1,"n":"Tent"},{"c":2,"s":5,"id":6162,"u":"thieves'%20tools%20(generic)_crb","p":288,"h":1,"n":"Thieves' Tools"},{"c":2,"s":5,"id":6163,"u":"third%20eye_crb","p":616,"h":1,"n":"Third Eye"},{"c":2,"s":5,"id":6164,"u":"thundering%20(generic)_crb","p":585,"h":1,"n":"Thundering"},{"c":2,"s":5,"id":6165,"u":"thunderstone%20(generic)_crb","p":546,"h":1,"n":"Thunderstone"},{"c":2,"s":5,"id":6166,"u":"thurible%20of%20revelation%20(generic)_crb","p":575,"h":1,"n":"Thurible of Revelation"},{"c":2,"s":5,"id":6167,"u":"tiger%20menuki_crb","p":569,"h":1,"n":"Tiger Menuki"},{"c":2,"s":5,"id":6168,"u":"tindertwig_crb","p":554,"h":1,"n":"Tindertwig"},{"c":2,"s":5,"id":6169,"u":"tool%20(generic)_crb","p":288,"h":1,"n":"Tool"},{"c":2,"s":5,"id":6170,"u":"torch_crb","p":288,"h":1,"n":"Torch"},{"c":2,"s":5,"id":6171,"u":"tracker's%20goggles%20(generic)_crb","p":616,"h":1,"n":"Tracker's Goggles"},{"c":2,"s":5,"id":6172,"u":"traveler's%20any-tool_crb","p":576,"h":1,"n":"Traveler's Any-tool"},{"c":2,"s":5,"id":6173,"u":"trip%20snare_crb","p":591,"h":1,"n":"Trip Snare"},{"c":2,"s":5,"id":6174,"u":"triton's%20conch_crb","p":576,"h":1,"n":"Triton's Conch"},{"c":2,"s":5,"id":6175,"u":"truesight%20potion_crb","p":564,"h":1,"n":"Truesight Potion"},{"c":2,"s":5,"id":6176,"u":"truth%20potion_crb","p":564,"h":1,"n":"Truth Potion"},{"c":2,"s":5,"id":6177,"u":"twining%20staff_crb","p":602,"h":1,"n":"Twining Staff"},{"c":2,"s":5,"id":6178,"u":"unholy_crb","p":585,"h":1,"n":"Unholy"},{"c":2,"s":5,"id":6179,"u":"unholy%20water_crb","p":571,"h":1,"n":"Unholy Water"},{"c":2,"s":5,"id":6180,"u":"vanishing%20coin_crb","p":569,"h":1,"n":"Vanishing Coin"},{"c":2,"s":5,"id":6181,"u":"ventriloquist's%20ring%20(generic)_crb","p":617,"h":1,"n":"Ventriloquist's Ring"},{"c":2,"s":5,"id":6182,"u":"verdant%20staff%20(generic)_crb","p":595,"h":1,"n":"Verdant Staff"},{"c":2,"s":5,"id":6183,"u":"vine%20arrow_crb","p":560,"h":1,"n":"Vine Arrow"},{"c":2,"s":5,"id":6184,"u":"viper%20arrow_crb","p":561,"h":1,"n":"Viper Arrow"},{"c":2,"s":5,"id":6185,"u":"viper's%20fang_crb","p":569,"h":1,"n":"Viper's Fang"},{"c":2,"s":5,"id":6186,"u":"vorpal_crb","p":585,"h":1,"n":"Vorpal"},{"c":2,"s":5,"id":6187,"u":"voyager's%20pack_crb","p":617,"h":1,"n":"Voyager's Pack"},{"c":2,"s":5,"id":6188,"u":"wand%20of%20continuation%20(generic)_crb","p":598,"h":1,"n":"Wand of Continuation"},{"c":2,"s":5,"id":6189,"u":"wand%20of%20manifold%20missiles%20(generic)_crb","p":598,"h":1,"n":"Wand of Manifold Missiles"},{"c":2,"s":5,"id":6190,"u":"wand%20of%20slaying%20(generic)_crb","p":598,"h":1,"n":"Wand of Slaying"},{"c":2,"s":5,"id":6191,"u":"wand%20of%20smoldering%20fireballs%20(generic)_crb","p":598,"h":1,"n":"Wand of Smoldering Fireballs"},{"c":2,"s":5,"id":6192,"u":"wand%20of%20widening%20(generic)_crb","p":598,"h":1,"n":"Wand of Widening"},{"c":2,"s":5,"id":6193,"u":"warning%20snare_crb","p":591,"h":1,"n":"Warning Snare"},{"c":2,"s":5,"id":6194,"u":"waterskin_crb","p":288,"h":1,"n":"Waterskin"},{"c":2,"s":5,"id":6195,"u":"wayfinder_crb","p":617,"h":1,"n":"Wayfinder"},{"c":2,"s":5,"id":6196,"u":"weapon%20potency%20(generic)_crb","p":581,"h":1,"n":"Weapon Potency"},{"c":2,"s":5,"id":6197,"u":"whisper%20of%20the%20first%20lie_crb","p":617,"h":1,"n":"Whisper of the First Lie"},{"c":2,"s":5,"id":6198,"u":"winged%20boots_crb","p":617,"h":1,"n":"Winged Boots"},{"c":2,"s":5,"id":6199,"u":"winter%20wolf%20elixir%20(generic)_crb","p":550,"h":1,"n":"Winter Wolf Elixir"},{"c":2,"s":5,"id":6200,"u":"wolf%20fang_crb","p":570,"h":1,"n":"Wolf Fang"},{"c":2,"s":5,"id":6201,"u":"wolfsbane_crb","p":553,"h":1,"n":"Wolfsbane"},{"c":2,"s":5,"id":6202,"u":"wondrous%20figurine%20(generic)_crb","p":576,"h":1,"n":"Wondrous Figurine"},{"c":2,"s":5,"id":6203,"u":"wounding_crb","p":585,"h":1,"n":"Wounding"},{"c":2,"s":5,"id":6204,"u":"writing%20set_crb","p":288,"h":1,"n":"Writing Set"},{"c":2,"s":5,"id":6205,"u":"wyvern%20poison_crb","p":554,"h":1,"n":"Wyvern Poison"},{"c":2,"s":12,"id":6206,"u":"alcohol_gmg","p":120,"h":1,"n":"Alcohol"},{"c":2,"s":12,"id":6207,"u":"arrow%20attracting_gmg","p":92,"h":1,"n":"Arrow Attracting"},{"c":2,"s":12,"id":6208,"u":"arsonous_gmg","p":92,"h":1,"n":"Arsonous"},{"c":2,"s":12,"id":6209,"u":"axe%20of%20the%20dwarven%20lords_gmg","p":106,"h":1,"n":"Axe Of The Dwarven Lords"},{"c":2,"s":12,"id":6210,"u":"backbiting_gmg","p":92,"h":1,"n":"Backbiting"},{"c":2,"s":12,"id":6211,"u":"bag%20of%20devouring_gmg","p":90,"h":1,"n":"Bag Of Devouring"},{"c":2,"s":12,"id":6212,"u":"bag%20of%20weasels_gmg","p":90,"h":1,"n":"Bag Of Weasels"},{"c":2,"s":12,"id":6213,"u":"blood%20sap_gmg","p":120,"h":1,"n":"Blood Sap"},{"c":2,"s":12,"id":6214,"u":"bloodbiter_gmg","p":92,"h":1,"n":"Bloodbiter"},{"c":2,"s":12,"id":6215,"u":"bloodeye%20coffee_gmg","p":120,"h":1,"n":"Bloodeye Coffee"},{"c":2,"s":12,"id":6216,"u":"boots%20of%20dancing_gmg","p":90,"h":1,"n":"Boots Of Dancing"},{"c":2,"s":12,"id":6217,"u":"cloak%20of%20immolation_gmg","p":91,"h":1,"n":"Cloak Of Immolation"},{"c":2,"s":12,"id":6218,"u":"cytillesh_gmg","p":121,"h":1,"n":"Cytillesh"},{"c":2,"s":12,"id":6219,"u":"deck%20of%20many%20things_gmg","p":107,"h":1,"n":"Deck Of Many Things"},{"c":2,"s":12,"id":6220,"u":"degenerating_gmg","p":93,"h":1,"n":"Degenerating"},{"c":2,"s":12,"id":6221,"u":"dependent_gmg","p":93,"h":1,"n":"Dependent"},{"c":2,"s":12,"id":6222,"u":"dreamtime%20tea_gmg","p":121,"h":1,"n":"Dreamtime Tea"},{"c":2,"s":12,"id":6223,"u":"dreary_gmg","p":93,"h":1,"n":"Dreary"},{"c":2,"s":12,"id":6224,"u":"elder%20sign_gmg","p":108,"h":1,"n":"Elder Sign"},{"c":2,"s":12,"id":6225,"u":"elven%20absinthe_gmg","p":121,"h":1,"n":"Elven Absinthe"},{"c":2,"s":12,"id":6226,"u":"erratic%20transposing_gmg","p":93,"h":1,"n":"Erratic Transposing"},{"c":2,"s":12,"id":6227,"u":"essence%20prism_gmg","p":108,"h":1,"n":"Essence Prism"},{"c":2,"s":12,"id":6228,"u":"flayleaf_gmg","p":120,"h":1,"n":"Flayleaf"},{"c":2,"s":12,"id":6229,"u":"forgefather's%20seal_gmg","p":109,"h":1,"n":"Forgefather's Seal"},{"c":2,"s":12,"id":6230,"u":"genius%20diadem_gmg","p":89,"h":1,"n":"Genius Diadem"},{"c":2,"s":12,"id":6231,"u":"gloves%20of%20carelessness_gmg","p":91,"h":1,"n":"Gloves Of Carelessness"},{"c":2,"s":12,"id":6232,"u":"grandstanding_gmg","p":93,"h":1,"n":"Grandstanding"},{"c":2,"s":12,"id":6233,"u":"horns%20of%20naraga_gmg","p":109,"h":1,"n":"Horns Of Naraga"},{"c":2,"s":12,"id":6234,"u":"martyr's%20shield_gmg","p":89,"h":1,"n":"Martyr's Shield"},{"c":2,"s":12,"id":6235,"u":"medusa%20armor_gmg","p":91,"h":1,"n":"Medusa Armor"},{"c":2,"s":12,"id":6236,"u":"mirror%20of%20sorshen_gmg","p":110,"h":1,"n":"Mirror Of Sorshen"},{"c":2,"s":12,"id":6237,"u":"monkey's%20paw_gmg","p":91,"h":1,"n":"Monkey's Paw"},{"c":2,"s":12,"id":6238,"u":"necklace%20of%20strangulation_gmg","p":91,"h":1,"n":"Necklace Of Strangulation"},{"c":2,"s":12,"id":6239,"u":"orb%20of%20dragonkind_gmg","p":110,"h":1,"n":"Orb Of Dragonkind"},{"c":2,"s":12,"id":6240,"u":"overdramatic_gmg","p":93,"h":1,"n":"Overdramatic"},{"c":2,"s":12,"id":6241,"u":"philosopher's%20extractor_gmg","p":111,"h":1,"n":"Philosopher's Extractor"},{"c":2,"s":12,"id":6242,"u":"poisonous%20cloak%20(generic)_gmg","p":91,"h":1,"n":"Poisonous Cloak"},{"c":2,"s":12,"id":6243,"u":"raucous_gmg","p":93,"h":1,"n":"Raucous"},{"c":2,"s":12,"id":6244,"u":"ravenous_gmg","p":93,"h":1,"n":"Ravenous"},{"c":2,"s":12,"id":6245,"u":"refined%20pesh_gmg","p":120,"h":1,"n":"Refined Pesh"},{"c":2,"s":12,"id":6246,"u":"ring%20of%20truth_gmg","p":91,"h":1,"n":"Ring Of Truth"},{"c":2,"s":12,"id":6247,"u":"scour_gmg","p":121,"h":1,"n":"Scour"},{"c":2,"s":12,"id":6248,"u":"serithtial_gmg","p":112,"h":1,"n":"Serithtial"},{"c":2,"s":12,"id":6249,"u":"shiver_gmg","p":121,"h":1,"n":"Shiver"},{"c":2,"s":12,"id":6250,"u":"shot%20of%20the%20first%20vault_gmg","p":112,"h":1,"n":"Shot Of The First Vault"},{"c":2,"s":12,"id":6251,"u":"singing%20sword_gmg","p":89,"h":1,"n":"Singing Sword"},{"c":2,"s":12,"id":6252,"u":"sphere%20of%20annihilation_gmg","p":113,"h":1,"n":"Sphere Of Annihilation"},{"c":2,"s":12,"id":6253,"u":"staining_gmg","p":93,"h":1,"n":"Staining"},{"c":2,"s":12,"id":6254,"u":"stone%20of%20weight_gmg","p":92,"h":1,"n":"Stone Of Weight"},{"c":2,"s":12,"id":6255,"u":"talisman%20of%20the%20sphere_gmg","p":113,"h":1,"n":"Talisman Of The Sphere"},{"c":2,"s":12,"id":6256,"u":"withering_gmg","p":93,"h":1,"n":"Withering"},{"c":2,"s":12,"id":6257,"u":"zerk_gmg","p":121,"h":1,"n":"Zerk"},{"c":2,"s":13,"id":6258,"u":"cinderclaw%20gauntlet_aoa1","p":77,"h":1,"n":"Cinderclaw Gauntlet"},{"c":2,"s":13,"id":6259,"u":"hunter's%20arrowhead_aoa1","p":77,"h":1,"n":"Hunter's Arrowhead"},{"c":2,"s":14,"id":6260,"u":"dragon's%20eye%20charm_aoa2","p":71,"h":1,"n":"Dragon's Eye Charm"},{"c":2,"s":14,"id":6261,"u":"eclipse_aoa2","p":72,"h":1,"n":"Eclipse"},{"c":2,"s":15,"id":6262,"u":"addlebrain_aoa3","p":71,"h":1,"n":"Addlebrain"},{"c":2,"s":15,"id":6263,"u":"bellflower%20toolbelt_aoa3","p":71,"h":1,"n":"Bellflower Toolbelt"},{"c":2,"s":15,"id":6264,"u":"bountiful%20cauldron_aoa3","p":71,"h":1,"n":"Bountiful Cauldron"},{"c":2,"s":15,"id":6265,"u":"cursed_aoa3","p":71,"h":1,"n":"Cursed"},{"c":2,"s":15,"id":6266,"u":"dreamstone_aoa3","p":71,"h":1,"n":"Dreamstone"},{"c":2,"s":15,"id":6267,"u":"eye%20of%20the%20wise_aoa3","p":72,"h":1,"n":"Eye Of The Wise"},{"c":2,"s":15,"id":6268,"u":"gourd%20home_aoa3","p":72,"h":1,"n":"Gourd Home"},{"c":2,"s":16,"id":6269,"u":"ancestral%20echoing_aoa4","p":73,"h":1,"n":"Ancestral Echoing"},{"c":2,"s":16,"id":6270,"u":"bloodbane%20(generic)_aoa4","p":73,"h":1,"n":"Bloodbane"},{"c":2,"s":16,"id":6271,"u":"dragonscale%20amulet_aoa4","p":73,"h":1,"n":"Dragonscale Amulet"},{"c":2,"s":16,"id":6272,"u":"guiding%20chisel_aoa4","p":74,"h":1,"n":"Guiding Chisel"},{"c":2,"s":16,"id":6273,"u":"kin-warding_aoa4","p":73,"h":1,"n":"Kin-warding"},{"c":2,"s":16,"id":6274,"u":"reforging%20shield_aoa4","p":74,"h":1,"n":"Reforging Shield"},{"c":2,"s":16,"id":6275,"u":"rock-braced_aoa4","p":73,"h":1,"n":"Rock-braced"},{"c":2,"s":17,"id":6276,"u":"aluum%20charm_aoa5","p":82,"h":1,"n":"Aluum Charm"},{"c":2,"s":17,"id":6277,"u":"false%20death_aoa5","p":78,"h":1,"n":"False Death"},{"c":2,"s":17,"id":6278,"u":"frenzy%20oil_aoa5","p":78,"h":1,"n":"Frenzy Oil"},{"c":2,"s":17,"id":6279,"u":"gorgon's%20breath_aoa5","p":78,"h":1,"n":"Gorgon's Breath"},{"c":2,"s":17,"id":6280,"u":"grinning%20pugwampi_aoa5","p":77,"h":1,"n":"Grinning Pugwampi"},{"c":2,"s":17,"id":6281,"u":"isolation%20draught_aoa5","p":79,"h":1,"n":"Isolation Draught"},{"c":2,"s":17,"id":6282,"u":"mage%20bane_aoa5","p":79,"h":1,"n":"Mage Bane"},{"c":2,"s":17,"id":6283,"u":"nethysian%20bulwark_aoa5","p":77,"h":1,"n":"Nethysian Bulwark"},{"c":2,"s":17,"id":6284,"u":"nightmare%20salt_aoa5","p":79,"h":1,"n":"Nightmare Salt"},{"c":2,"s":17,"id":6285,"u":"oblivion%20essence_aoa5","p":79,"h":1,"n":"Oblivion Essence"},{"c":2,"s":17,"id":6286,"u":"pactmasters'%20grace_aoa5","p":77,"h":1,"n":"Pactmasters' Grace"},{"c":2,"s":17,"id":6287,"u":"peshspine%20grenade%20(generic)_aoa5","p":77,"h":1,"n":"Peshspine Grenade"},{"c":2,"s":17,"id":6288,"u":"weeping%20midnight_aoa5","p":79,"h":1,"n":"Weeping Midnight"},{"c":2,"s":18,"id":6289,"u":"flawed%20orb%20of%20gold%20dragonkind_aoa6","p":75,"h":1,"n":"Flawed Orb Of Gold Dragonkind"},{"c":2,"s":18,"id":6290,"u":"orb%20shard_aoa6","p":75,"h":1,"n":"Orb Shard"},{"c":2,"s":19,"id":6291,"u":"aurifying%20salts_aoe1","p":80,"h":1,"n":"Aurifying Salts"},{"c":2,"s":19,"id":6292,"u":"blindpepper%20bomb_aoe1","p":78,"h":1,"n":"Blindpepper Bomb"},{"c":2,"s":19,"id":6293,"u":"blindpepper%20tube_aoe1","p":78,"h":1,"n":"Blindpepper Tube"},{"c":2,"s":19,"id":6294,"u":"corpseward%20pendant_aoe1","p":80,"h":1,"n":"Corpseward Pendant"},{"c":2,"s":19,"id":6295,"u":"fingerprinting%20kit_aoe1","p":77,"h":1,"n":"Fingerprinting Kit"},{"c":2,"s":19,"id":6296,"u":"grolna_aoe1","p":81,"h":1,"n":"Grolna"},{"c":2,"s":19,"id":6297,"u":"handcuffs%20(generic)_aoe1","p":77,"h":1,"n":"Handcuffs"},{"c":2,"s":19,"id":6298,"u":"knockout%20dram_aoe1","p":81,"h":1,"n":"Knockout Dram"},{"c":2,"s":19,"id":6299,"u":"looter's%20lethargy_aoe1","p":81,"h":1,"n":"Looter's Lethargy"},{"c":2,"s":19,"id":6300,"u":"pacifying_aoe1","p":78,"h":1,"n":"Pacifying"},{"c":2,"s":19,"id":6301,"u":"reaper's%20lancet_aoe1","p":81,"h":1,"n":"Reaper's Lancet"},{"c":2,"s":19,"id":6302,"u":"recording%20rod%20(generic)_aoe1","p":80,"h":1,"n":"Recording Rod"},{"c":2,"s":19,"id":6303,"u":"ring%20of%20discretion_aoe1","p":80,"h":1,"n":"Ring Of Discretion"},{"c":2,"s":20,"id":6304,"u":"chain%20of%20the%20stilled%20spirit_aoe2","p":75,"h":1,"n":"Chain Of The Stilled Spirit"},{"c":2,"s":20,"id":6305,"u":"deafening%20music%20box_aoe2","p":75,"h":1,"n":"Deafening Music Box"},{"c":2,"s":20,"id":6306,"u":"ethersight%20ring_aoe2","p":75,"h":1,"n":"Ethersight Ring"},{"c":2,"s":20,"id":6307,"u":"floorbell_aoe2","p":75,"h":1,"n":"Floorbell"},{"c":2,"s":20,"id":6308,"u":"skinsaw%20mask_aoe2","p":76,"h":1,"n":"Skinsaw Mask"},{"c":2,"s":20,"id":6309,"u":"swarmeater's%20clasp_aoe2","p":76,"h":1,"n":"Swarmeater's Clasp"},{"c":2,"s":20,"id":6310,"u":"vaultbreaker's%20harness_aoe2","p":76,"h":1,"n":"Vaultbreaker's Harness"},{"c":2,"s":21,"id":6311,"u":"barbed%20vest_aoe3","p":78,"h":1,"n":"Barbed Vest"},{"c":2,"s":21,"id":6312,"u":"blackfinger%20blight_aoe3","p":78,"h":1,"n":"Blackfinger Blight"},{"c":2,"s":21,"id":6313,"u":"mnemonic%20acid_aoe3","p":78,"h":1,"n":"Mnemonic Acid"},{"c":2,"s":22,"id":6314,"u":"blade%20of%20the%20rabbit%20prince_aoe4","p":79,"h":1,"n":"Blade Of The Rabbit Prince"},{"c":2,"s":22,"id":6315,"u":"daylight%20vapor_aoe4","p":77,"h":1,"n":"Daylight Vapor"},{"c":2,"s":22,"id":6316,"u":"death%20knell%20powder_aoe4","p":77,"h":1,"n":"Death Knell Powder"},{"c":2,"s":22,"id":6317,"u":"fearweed_aoe4","p":77,"h":1,"n":"Fearweed"},{"c":2,"s":22,"id":6318,"u":"hardened%20harrow%20deck_aoe4","p":79,"h":1,"n":"Hardened Harrow Deck"},{"c":2,"s":22,"id":6319,"u":"hunger%20oil_aoe4","p":78,"h":1,"n":"Hunger Oil"},{"c":2,"s":22,"id":6320,"u":"liar's%20demise_aoe4","p":78,"h":1,"n":"Liar's Demise"},{"c":2,"s":22,"id":6321,"u":"lifeblight%20residue_aoe4","p":78,"h":1,"n":"Lifeblight Residue"},{"c":2,"s":22,"id":6322,"u":"poisoner's%20staff%20(generic)_aoe4","p":80,"h":1,"n":"Poisoner's Staff"},{"c":2,"s":22,"id":6323,"u":"repulsion%20resin_aoe4","p":78,"h":1,"n":"Repulsion Resin"},{"c":2,"s":22,"id":6324,"u":"sight-theft%20grit_aoe4","p":78,"h":1,"n":"Sight-theft Grit"},{"c":2,"s":22,"id":6325,"u":"spectral%20nightshade_aoe4","p":79,"h":1,"n":"Spectral Nightshade"},{"c":2,"s":22,"id":6326,"u":"spell-eating%20pitch_aoe4","p":79,"h":1,"n":"Spell-eating Pitch"},{"c":2,"s":22,"id":6327,"u":"whisper%20briolette_aoe4","p":80,"h":1,"n":"Whisper Briolette"},{"c":2,"s":23,"id":6328,"u":"cauldron%20of%20nightmares_aoe5","p":78,"h":1,"n":"Cauldron Of Nightmares"},{"c":2,"s":23,"id":6329,"u":"clockwork%20cloak_aoe5","p":79,"h":1,"n":"Clockwork Cloak"},{"c":2,"s":23,"id":6330,"u":"clockwork%20helm_aoe5","p":79,"h":1,"n":"Clockwork Helm"},{"c":2,"s":23,"id":6331,"u":"clockwork%20rejuvenator_aoe5","p":79,"h":1,"n":"Clockwork Rejuvenator"},{"c":2,"s":23,"id":6332,"u":"forgotten%20shell_aoe5","p":78,"h":1,"n":"Forgotten Shell"},{"c":2,"s":23,"id":6333,"u":"fungal%20armor_aoe5","p":77,"h":1,"n":"Fungal Armor"},{"c":2,"s":23,"id":6334,"u":"garrote%20bolt_aoe5","p":77,"h":1,"n":"Garrote Bolt"},{"c":2,"s":23,"id":6335,"u":"gearblade_aoe5","p":79,"h":1,"n":"Gearblade"},{"c":2,"s":23,"id":6336,"u":"miogimo's%20mask_aoe5","p":77,"h":1,"n":"Miogimo's Mask"},{"c":2,"s":23,"id":6337,"u":"nightmare%20cudgel_aoe5","p":78,"h":1,"n":"Nightmare Cudgel"},{"c":2,"s":24,"id":6338,"u":"cane%20of%20the%20maelstrom_aoe6","p":73,"h":1,"n":"Cane Of The Maelstrom"},{"c":2,"s":24,"id":6339,"u":"radiant%20spark_aoe6","p":74,"h":1,"n":"Radiant Spark"},{"c":2,"s":24,"id":6340,"u":"ring%20of%20recalcitrant%20wishes_aoe6","p":74,"h":1,"n":"Ring Of Recalcitrant Wishes"},{"c":2,"s":24,"id":6341,"u":"warpglass%20(generic)_aoe6","p":74,"h":1,"n":"Warpglass"},{"c":2,"s":24,"id":6342,"u":"warpglass%20weapon%20(generic)_aoe6","p":75,"h":1,"n":"Warpglass Weapon"},{"c":2,"s":25,"id":6343,"u":"gauntlight_av1","p":77,"h":1,"n":"Gauntlight"},{"c":2,"s":25,"id":6344,"u":"lantern%20of%20empty%20light_av1","p":78,"h":1,"n":"Lantern Of Empty Light"},{"c":2,"s":25,"id":6345,"u":"skeptic's%20elixir%20(generic)_av1","p":78,"h":1,"n":"Skeptic's Elixir"},{"c":2,"s":25,"id":6346,"u":"the%20whispering%20reeds_av1","p":78,"h":1,"n":"The Whispering Reeds"},{"c":2,"s":26,"id":6347,"u":"cooperative%20blade_av2","p":71,"h":1,"n":"Cooperative Blade"},{"c":2,"s":26,"id":6348,"u":"devil's%20luck_av2","p":74,"h":1,"n":"Devil's Luck"},{"c":2,"s":26,"id":6349,"u":"drover's%20band_av2","p":72,"h":1,"n":"Drover's Band"},{"c":2,"s":26,"id":6350,"u":"folding%20drums_av2","p":72,"h":1,"n":"Folding Drums"},{"c":2,"s":26,"id":6351,"u":"hunter's%20brooch_av2","p":71,"h":1,"n":"Hunter's Brooch"},{"c":2,"s":26,"id":6352,"u":"ichthyosis%20mutagen_av2","p":72,"h":1,"n":"Ichthyosis Mutagen"},{"c":2,"s":26,"id":6353,"u":"icy%20disposition_av2","p":75,"h":1,"n":"Icy Disposition"},{"c":2,"s":26,"id":6354,"u":"pact%20of%20blood-taking_av2","p":75,"h":1,"n":"Pact Of Blood-taking"},{"c":2,"s":26,"id":6355,"u":"right%20of%20retribution_av2","p":75,"h":1,"n":"Right Of Retribution"},{"c":2,"s":26,"id":6356,"u":"sloughing%20toxin_av2","p":72,"h":1,"n":"Sloughing Toxin"},{"c":2,"s":27,"id":6357,"u":"crimson%20fulcrum%20lens_av3","p":75,"h":1,"n":"Crimson Fulcrum Lens"},{"c":2,"s":27,"id":6358,"u":"ebon%20fulcrum%20lens_av3","p":76,"h":1,"n":"Ebon Fulcrum Lens"},{"c":2,"s":27,"id":6359,"u":"emerald%20fulcrum%20lens_av3","p":76,"h":1,"n":"Emerald Fulcrum Lens"},{"c":2,"s":27,"id":6360,"u":"fulcrum%20lattice_av3","p":76,"h":1,"n":"Fulcrum Lattice"},{"c":2,"s":27,"id":6361,"u":"fungal%20walk%20musk_av3","p":74,"h":1,"n":"Fungal Walk Musk"},{"c":2,"s":27,"id":6362,"u":"necrotic%20bomb%20(generic)_av3","p":74,"h":1,"n":"Necrotic Bomb"},{"c":2,"s":27,"id":6363,"u":"ochre%20fulcrum%20lens_av3","p":76,"h":1,"n":"Ochre Fulcrum Lens"},{"c":2,"s":27,"id":6364,"u":"stupor%20poison_av3","p":74,"h":1,"n":"Stupor Poison"},{"c":2,"s":27,"id":6365,"u":"shootist%20bandolier_av3","p":73,"h":1,"n":"Shootist Bandolier"},{"c":2,"s":28,"id":6366,"u":"dust%20pods_ec1","p":76,"h":1,"n":"Dust Pods"},{"c":2,"s":28,"id":6367,"u":"fang%20snare_ec1","p":76,"h":1,"n":"Fang Snare"},{"c":2,"s":28,"id":6368,"u":"grasping%20tree_ec1","p":76,"h":1,"n":"Grasping Tree"},{"c":2,"s":28,"id":6369,"u":"thunder%20snare_ec1","p":76,"h":1,"n":"Thunder Snare"},{"c":2,"s":28,"id":6370,"u":"torrent%20snare_ec1","p":76,"h":1,"n":"Torrent Snare"},{"c":2,"s":29,"id":6371,"u":"acrobat's%20staff_ec2","p":73,"h":1,"n":"Acrobat's Staff"},{"c":2,"s":29,"id":6372,"u":"beckoning%20cat%20amulet_ec2","p":73,"h":1,"n":"Beckoning Cat Amulet"},{"c":2,"s":29,"id":6373,"u":"bullhook%20(generic)_ec2","p":73,"h":1,"n":"Bullhook"},{"c":2,"s":29,"id":6374,"u":"grail%20of%20twisted%20desires_ec2","p":73,"h":1,"n":"Grail Of Twisted Desires"},{"c":2,"s":29,"id":6375,"u":"inspiring%20spotlight_ec2","p":73,"h":1,"n":"Inspiring Spotlight"},{"c":2,"s":29,"id":6376,"u":"invisible%20net_ec2","p":74,"h":1,"n":"Invisible Net"},{"c":2,"s":29,"id":6377,"u":"marvelous%20calliope_ec2","p":74,"h":1,"n":"Marvelous Calliope"},{"c":2,"s":29,"id":6378,"u":"moonstone%20diadem_ec2","p":74,"h":1,"n":"Moonstone Diadem"},{"c":2,"s":29,"id":6379,"u":"ringmaster's%20staff%20(generic)_ec2","p":74,"h":1,"n":"Ringmaster's Staff"},{"c":2,"s":29,"id":6380,"u":"saints'%20balm_ec2","p":75,"h":1,"n":"Saints' Balm"},{"c":2,"s":29,"id":6381,"u":"spangled%20rider's%20suit_ec2","p":75,"h":1,"n":"Spangled Rider's Suit"},{"c":2,"s":29,"id":6382,"u":"stole%20of%20civility_ec2","p":75,"h":1,"n":"Stole Of Civility"},{"c":2,"s":29,"id":6383,"u":"whip%20of%20compliance_ec2","p":75,"h":1,"n":"Whip Of Compliance"},{"c":2,"s":29,"id":6384,"u":"wondrous%20figurines%20(generic)_ec2","p":75,"h":1,"n":"Wondrous Figurines"},{"c":2,"s":8,"id":6385,"u":"golem%20stylus_ec3","p":69,"h":1,"n":"Golem Stylus"},{"c":2,"s":8,"id":6386,"u":"ring%20of%20stoneshifting_ec3","p":69,"h":1,"n":"Ring Of Stoneshifting"},{"c":2,"s":8,"id":6387,"u":"shoony%20shovel_ec3","p":69,"h":1,"n":"Shoony Shovel"},{"c":2,"s":8,"id":6388,"u":"skarja's%20heartstone_ec3","p":89,"h":1,"n":"Skarja's Heartstone"},{"c":2,"s":30,"id":6389,"u":"ankylostar_ec4","p":75,"h":1,"n":"Ankylostar"},{"c":2,"s":30,"id":6390,"u":"jawbreaker%20shield_ec4","p":75,"h":1,"n":"Jawbreaker Shield"},{"c":2,"s":30,"id":6391,"u":"noxious%20jerkin_ec4","p":76,"h":1,"n":"Noxious Jerkin"},{"c":2,"s":30,"id":6392,"u":"spore%20sap_ec4","p":76,"h":1,"n":"Spore Sap"},{"c":2,"s":30,"id":6393,"u":"stoneraiser%20javelin_ec4","p":76,"h":1,"n":"Stoneraiser Javelin"},{"c":2,"s":31,"id":6394,"u":"anchor%20spear_ec5","p":75,"h":1,"n":"Anchor Spear"},{"c":2,"s":31,"id":6395,"u":"blightburn%20ward_ec5","p":73,"h":1,"n":"Blightburn Ward"},{"c":2,"s":31,"id":6396,"u":"bomber's%20saddle_ec5","p":76,"h":1,"n":"Bomber's Saddle"},{"c":2,"s":31,"id":6397,"u":"cave%20worm%20repellent%20(generic)_ec5","p":75,"h":1,"n":"Cave Worm Repellent"},{"c":2,"s":31,"id":6398,"u":"greengut_ec5","p":75,"h":1,"n":"Greengut"},{"c":2,"s":31,"id":6399,"u":"heedless%20spurs_ec5","p":76,"h":1,"n":"Heedless Spurs"},{"c":2,"s":31,"id":6400,"u":"life's%20last%20breath_ec5","p":76,"h":1,"n":"Life's Last Breath"},{"c":2,"s":31,"id":6401,"u":"staff%20of%20the%20black%20desert%20(generic)_ec5","p":76,"h":1,"n":"Staff Of The Black Desert"},{"c":2,"s":32,"id":6402,"u":"ambrosia%20of%20undying%20hope_ec6","p":74,"h":1,"n":"Ambrosia Of Undying Hope"},{"c":2,"s":32,"id":6403,"u":"aroden's%20hearthstone_ec6","p":66,"h":1,"n":"Aroden's Hearthstone"},{"c":2,"s":32,"id":6404,"u":"celestial%20hair_ec6","p":74,"h":1,"n":"Celestial Hair"},{"c":2,"s":32,"id":6405,"u":"hunter's%20dawn_ec6","p":67,"h":1,"n":"Hunter's Dawn"},{"c":2,"s":32,"id":6406,"u":"jerkin%20of%20liberation_ec6","p":74,"h":1,"n":"Jerkin Of Liberation"},{"c":2,"s":32,"id":6407,"u":"kortos%20diamond_ec6","p":68,"h":1,"n":"Kortos Diamond"},{"c":2,"s":32,"id":6408,"u":"locket%20of%20sealed%20nightmares_ec6","p":74,"h":1,"n":"Locket Of Sealed Nightmares"},{"c":2,"s":32,"id":6409,"u":"panacea%20fruit_ec6","p":74,"h":1,"n":"Panacea Fruit"},{"c":2,"s":32,"id":6410,"u":"piereta_ec6","p":74,"h":1,"n":"Piereta"},{"c":2,"s":32,"id":6411,"u":"planar%20ribbon_ec6","p":75,"h":1,"n":"Planar Ribbon"},{"c":2,"s":32,"id":6412,"u":"shield%20of%20the%20unified%20legion_ec6","p":75,"h":1,"n":"Shield Of The Unified Legion"},{"c":2,"s":32,"id":6413,"u":"staff%20of%20sieges_ec6","p":75,"h":1,"n":"Staff Of Sieges"},{"c":2,"s":32,"id":6414,"u":"tears%20of%20the%20last%20azlanti_ec6","p":69,"h":1,"n":"Tears Of The Last Azlanti"},{"c":2,"s":33,"id":6415,"u":"bort's%20blessing_fop","p":58,"h":1,"n":"Bort's Blessing"},{"c":2,"s":33,"id":6416,"u":"energy%20mutagen%20(generic)_fop","p":56,"h":1,"n":"Energy Mutagen"},{"c":2,"s":33,"id":6417,"u":"merchant's%20guile_fop","p":58,"h":1,"n":"Merchant's Guile"},{"c":2,"s":33,"id":6418,"u":"ring%20of%20minor%20arcana_fop","p":58,"h":1,"n":"Ring Of Minor Arcana"},{"c":2,"s":33,"id":6419,"u":"ring%20of%20the%20weary%20traveler_fop","p":58,"h":1,"n":"Ring Of The Weary Traveler"},{"c":2,"s":33,"id":6420,"u":"stalwart's%20ring_fop","p":58,"h":1,"n":"Stalwart's Ring"},{"c":2,"s":33,"id":6421,"u":"stone%20body%20mutagen%20(generic)_fop","p":56,"h":1,"n":"Stone Body Mutagen"},{"c":2,"s":33,"id":6422,"u":"warrior's%20training%20ring_fop","p":58,"h":1,"n":"Warrior's Training Ring"},{"c":2,"s":34,"id":6423,"u":"bonmuan%20swapping%20stone%20(generic)_frp1","p":75,"h":1,"n":"Bonmuan Swapping Stone"},{"c":2,"s":34,"id":6424,"u":"phoenix%20fighting%20fan_frp1","p":75,"h":1,"n":"Phoenix Fighting Fan"},{"c":2,"s":34,"id":6425,"u":"phoenix%20necklace_frp1","p":75,"h":1,"n":"Phoenix Necklace"},{"c":2,"s":35,"id":6426,"u":"apricot%20of%20bestial%20might_frp2","p":74,"h":1,"n":"Apricot Of Bestial Might"},{"c":2,"s":35,"id":6427,"u":"cape%20of%20the%20open%20sky_frp2","p":74,"h":1,"n":"Cape Of The Open Sky"},{"c":2,"s":35,"id":6428,"u":"headbands%20of%20translocation_frp2","p":74,"h":1,"n":"Headbands Of Translocation"},{"c":2,"s":35,"id":6429,"u":"sky-piercing%20bow_frp2","p":74,"h":1,"n":"Sky-piercing Bow"},{"c":2,"s":35,"id":6430,"u":"stormbreaker%20fulu_frp2","p":75,"h":1,"n":"Stormbreaker Fulu"},{"c":2,"s":35,"id":6431,"u":"tusk%20and%20fang%20chain_frp2","p":75,"h":1,"n":"Tusk And Fang Chain"},{"c":2,"s":2,"id":6432,"u":"round%20(5)_g%26g","p":150,"a":"5","h":1,"n":"Round"},{"c":2,"s":2,"id":6433,"u":"round%20(10)_g%26g","p":150,"a":"10","h":1,"n":"Round"},{"c":2,"s":2,"id":6434,"u":"ablative%20armor%20plating%20(generic)_g%26g","p":66,"h":1,"n":"Ablative Armor Plating"},{"c":2,"s":2,"id":6435,"u":"ablative%20shield%20plating%20(generic)_g%26g","p":67,"h":1,"n":"Ablative Shield Plating"},{"c":2,"s":2,"id":6436,"u":"acid%20spitter_g%26g","p":78,"h":1,"n":"Acid Spitter"},{"c":2,"s":2,"id":6437,"u":"adaptive%20cogwheel_g%26g","p":184,"h":1,"n":"Adaptive Cogwheel"},{"c":2,"s":2,"id":6438,"u":"admonishing%20band_g%26g","p":184,"h":1,"n":"Admonishing Band"},{"c":2,"s":2,"id":6439,"u":"air%20cartridge%20firing%20system_g%26g","p":183,"h":1,"n":"Air Cartridge Firing System"},{"c":2,"s":2,"id":6440,"u":"alchemical%20springald_g%26g","p":173,"h":1,"n":"Alchemical Springald"},{"c":2,"s":2,"id":6441,"u":"alkenstar%20cannon_g%26g","p":176,"h":1,"n":"Alkenstar Cannon"},{"c":2,"s":2,"id":6442,"u":"animate%20dreamer_g%26g","p":161,"h":1,"n":"Animate Dreamer"},{"c":2,"s":2,"id":6443,"u":"aquarium%20lamp_g%26g","p":84,"h":1,"n":"Aquarium Lamp"},{"c":2,"s":2,"id":6444,"u":"arboreal's%20revenge_g%26g","p":160,"h":1,"n":"Arboreal's Revenge"},{"c":2,"s":2,"id":6445,"u":"aromatic%20ammunition_g%26g","p":168,"h":1,"n":"Aromatic Ammunition"},{"c":2,"s":2,"id":6446,"u":"awakened%20metal%20shot%20(generic)_g%26g","p":168,"h":1,"n":"Awakened Metal Shot"},{"c":2,"s":2,"id":6447,"u":"backpack%20ballista%20bolts_g%26g","p":63,"h":1,"n":"Backpack Ballista Bolts"},{"c":2,"s":2,"id":6448,"u":"backpack%20catapult%20stones_g%26g","p":63,"h":1,"n":"Backpack Catapult Stones"},{"c":2,"s":2,"id":6449,"u":"ballista_g%26g","p":74,"h":1,"n":"Ballista"},{"c":2,"s":2,"id":6450,"u":"basic%20chair_g%26g","p":91,"h":1,"n":"Basic Chair"},{"c":2,"s":2,"id":6451,"u":"battering%20ram%20(generic)_g%26g","p":74,"h":1,"n":"Battering Ram"},{"c":2,"s":2,"id":6452,"u":"binding%20snare_g%26g","p":78,"h":1,"n":"Binding Snare"},{"c":2,"s":2,"id":6453,"u":"black%20powder%20(generic)_g%26g","p":169,"h":1,"n":"Black Powder"},{"c":2,"s":2,"id":6454,"u":"blade%20launcher_g%26g","p":64,"h":1,"n":"Blade Launcher"},{"c":2,"s":2,"id":6455,"u":"blast%20boots%20(generic)_g%26g","p":67,"h":1,"n":"Blast Boots"},{"c":2,"s":2,"id":6456,"u":"blasting%20ram_g%26g","p":173,"h":1,"n":"Blasting Ram"},{"c":2,"s":2,"id":6457,"u":"blazons%20of%20shared%20power%20(generic)_g%26g","p":183,"h":1,"n":"Blazons Of Shared Power"},{"c":2,"s":2,"id":6458,"u":"boastful%20hunter_g%26g","p":162,"h":1,"n":"Boastful Hunter"},{"c":2,"s":2,"id":6459,"u":"bomb%20launcher_g%26g","p":64,"h":1,"n":"Bomb Launcher"},{"c":2,"s":2,"id":6460,"u":"bombard_g%26g","p":173,"h":1,"n":"Bombard"},{"c":2,"s":2,"id":6461,"u":"breath%20blaster%20(generic)_g%26g","p":154,"h":1,"n":"Breath Blaster"},{"c":2,"s":2,"id":6462,"u":"breech%20ejectors_g%26g","p":183,"h":1,"n":"Breech Ejectors"},{"c":2,"s":2,"id":6463,"u":"camouflage%20suit%20(generic)_g%26g","p":178,"h":1,"n":"Camouflage Suit"},{"c":2,"s":2,"id":6464,"u":"cannon_g%26g","p":174,"h":1,"n":"Cannon"},{"c":2,"s":2,"id":6465,"u":"catapult_g%26g","p":75,"h":1,"n":"Catapult"},{"c":2,"s":2,"id":6466,"u":"cauterizing%20torch_g%26g","p":67,"h":1,"n":"Cauterizing Torch"},{"c":2,"s":2,"id":6467,"u":"chameleon%20suit%20(generic)_g%26g","p":67,"h":1,"n":"Chameleon Suit"},{"c":2,"s":2,"id":6468,"u":"clockwork%20bookshelf_g%26g","p":85,"h":1,"n":"Clockwork Bookshelf"},{"c":2,"s":2,"id":6469,"u":"clockwork%20box%20packer_g%26g","p":85,"h":1,"n":"Clockwork Box Packer"},{"c":2,"s":2,"id":6470,"u":"clockwork%20chirper_g%26g","p":79,"h":1,"n":"Clockwork Chirper"},{"c":2,"s":2,"id":6471,"u":"clockwork%20diving%20suit_g%26g","p":86,"h":1,"n":"Clockwork Diving Suit"},{"c":2,"s":2,"id":6472,"u":"clockwork%20goggles%20(generic)_g%26g","p":68,"h":1,"n":"Clockwork Goggles"},{"c":2,"s":2,"id":6473,"u":"clockwork%20megaphone_g%26g","p":87,"h":1,"n":"Clockwork Megaphone"},{"c":2,"s":2,"id":6474,"u":"clockwork%20monkey_g%26g","p":79,"h":1,"n":"Clockwork Monkey"},{"c":2,"s":2,"id":6475,"u":"concealed%20holster_g%26g","p":178,"h":1,"n":"Concealed Holster"},{"c":2,"s":2,"id":6476,"u":"cryomister%20(generic)_g%26g","p":68,"h":1,"n":"Cryomister"},{"c":2,"s":2,"id":6477,"u":"darkvision%20scope%20(generic)_g%26g","p":180,"h":1,"n":"Darkvision Scope"},{"c":2,"s":2,"id":6478,"u":"day%20goggles_g%26g","p":87,"h":1,"n":"Day Goggles"},{"c":2,"s":2,"id":6479,"u":"death%20coil_g%26g","p":79,"h":1,"n":"Death Coil"},{"c":2,"s":2,"id":6480,"u":"deployable%20cover%20(generic)_g%26g","p":64,"h":1,"n":"Deployable Cover"},{"c":2,"s":2,"id":6481,"u":"detonating%20gears%20snare_g%26g","p":79,"h":1,"n":"Detonating Gears Snare"},{"c":2,"s":2,"id":6482,"u":"door%20ram_g%26g","p":75,"h":1,"n":"Door Ram"},{"c":2,"s":2,"id":6483,"u":"drake%20rifle_g%26g","p":154,"h":1,"n":"Drake Rifle"},{"c":2,"s":2,"id":6484,"u":"dreaming%20round_g%26g","p":169,"h":1,"n":"Dreaming Round"},{"c":2,"s":2,"id":6485,"u":"duchy%20defender_g%26g","p":162,"h":1,"n":"Duchy Defender"},{"c":2,"s":2,"id":6486,"u":"earplugs_g%26g","p":178,"h":1,"n":"Earplugs"},{"c":2,"s":2,"id":6487,"u":"electrocable_g%26g","p":87,"h":1,"n":"Electrocable"},{"c":2,"s":2,"id":6488,"u":"electromuscular%20stimulator_g%26g","p":68,"h":1,"n":"Electromuscular Stimulator"},{"c":2,"s":2,"id":6489,"u":"energized%20cartridge_g%26g","p":184,"h":1,"n":"Energized Cartridge"},{"c":2,"s":2,"id":6490,"u":"eroding%20bullet_g%26g","p":169,"h":1,"n":"Eroding Bullet"},{"c":2,"s":2,"id":6491,"u":"etheric%20essence%20disruptor%20(generic)_g%26g","p":68,"h":1,"n":"Etheric Essence Disruptor"},{"c":2,"s":2,"id":6492,"u":"explosive%20mine%20(generic)_g%26g","p":69,"h":1,"n":"Explosive Mine"},{"c":2,"s":2,"id":6493,"u":"exsanguinating%20ammunition%20(generic)_g%26g","p":170,"h":1,"n":"Exsanguinating Ammunition"},{"c":2,"s":2,"id":6494,"u":"extendable%20pincer_g%26g","p":87,"h":1,"n":"Extendable Pincer"},{"c":2,"s":2,"id":6495,"u":"fairy%20bullet_g%26g","p":170,"h":1,"n":"Fairy Bullet"},{"c":2,"s":2,"id":6496,"u":"fiend's%20mouth%20cannon_g%26g","p":174,"h":1,"n":"Fiend's Mouth Cannon"},{"c":2,"s":2,"id":6497,"u":"fire%20box_g%26g","p":80,"h":1,"n":"Fire Box"},{"c":2,"s":2,"id":6498,"u":"firearm%20cleaning%20kit_g%26g","p":178,"h":1,"n":"Firearm Cleaning Kit"},{"c":2,"s":2,"id":6499,"u":"steelheart%2021_g%26g","p":175,"h":1,"n":"Steelheart 21"},{"c":2,"s":2,"id":6500,"u":"firedrake_g%26g","p":175,"h":1,"n":"Firedrake"},{"c":2,"s":2,"id":6501,"u":"flame%20drake%20snare_g%26g","p":79,"h":1,"n":"Flame Drake Snare"},{"c":2,"s":2,"id":6502,"u":"flare%20beacon%20(generic)_g%26g","p":69,"h":1,"n":"Flare Beacon"},{"c":2,"s":2,"id":6503,"u":"frog%20chair_g%26g","p":91,"h":1,"n":"Frog Chair"},{"c":2,"s":2,"id":6504,"u":"frost%20worm%20snare_g%26g","p":80,"h":1,"n":"Frost Worm Snare"},{"c":2,"s":2,"id":6505,"u":"gadget%20skates_g%26g","p":70,"h":1,"n":"Gadget Skates"},{"c":2,"s":2,"id":6506,"u":"galvanic%20mortal%20coil_g%26g","p":82,"h":1,"n":"Galvanic Mortal Coil"},{"c":2,"s":2,"id":6507,"u":"galvasphere_g%26g","p":82,"h":1,"n":"Galvasphere"},{"c":2,"s":2,"id":6508,"u":"gecko%20pads%20(generic)_g%26g","p":70,"h":1,"n":"Gecko Pads"},{"c":2,"s":2,"id":6509,"u":"ghostshot%20wrapping_g%26g","p":184,"h":1,"n":"Ghostshot Wrapping"},{"c":2,"s":2,"id":6510,"u":"glue%20bullet_g%26g","p":170,"h":1,"n":"Glue Bullet"},{"c":2,"s":2,"id":6511,"u":"goblin-eye%20orb_g%26g","p":184,"h":1,"n":"Goblin-eye Orb"},{"c":2,"s":2,"id":6512,"u":"grappling%20gun%20(generic)_g%26g","p":64,"h":1,"n":"Grappling Gun"},{"c":2,"s":2,"id":6513,"u":"growth%20gun_g%26g","p":155,"h":1,"n":"Growth Gun"},{"c":2,"s":2,"id":6514,"u":"gunner's%20bandolier_g%26g","p":179,"h":1,"n":"Gunner's Bandolier"},{"c":2,"s":2,"id":6515,"u":"gunner's%20saddle_g%26g","p":182,"h":1,"n":"Gunner's Saddle"},{"c":2,"s":2,"id":6516,"u":"heated%20cloak_g%26g","p":87,"h":1,"n":"Heated Cloak"},{"c":2,"s":2,"id":6517,"u":"heavy%20ballista_g%26g","p":75,"h":1,"n":"Heavy Ballista"},{"c":2,"s":2,"id":6518,"u":"heavy%20bombard_g%26g","p":175,"h":1,"n":"Heavy Bombard"},{"c":2,"s":2,"id":6519,"u":"holy%20steam%20ball_g%26g","p":87,"h":1,"n":"Holy Steam Ball"},{"c":2,"s":2,"id":6520,"u":"hwacha_g%26g","p":175,"h":1,"n":"Hwacha"},{"c":2,"s":2,"id":6521,"u":"hyldarf's%20fang_g%26g","p":164,"h":1,"n":"Hyldarf's Fang"},{"c":2,"s":2,"id":6522,"u":"ignitor_g%26g","p":88,"h":1,"n":"Ignitor"},{"c":2,"s":2,"id":6523,"u":"immaculate%20holsters_g%26g","p":180,"h":1,"n":"Immaculate Holsters"},{"c":2,"s":2,"id":6524,"u":"immolation%20clan%20pistol_g%26g","p":160,"h":1,"n":"Immolation Clan Pistol"},{"c":2,"s":2,"id":6525,"u":"immovable%20tripod_g%26g","p":182,"h":1,"n":"Immovable Tripod"},{"c":2,"s":2,"id":6526,"u":"impact%20foam%20chassis%20(generic)_g%26g","p":70,"h":1,"n":"Impact Foam Chassis"},{"c":2,"s":2,"id":6527,"u":"indomitable%20keepsake%20(generic)_g%26g","p":185,"h":1,"n":"Indomitable Keepsake"},{"c":2,"s":2,"id":6528,"u":"instant%20spy_g%26g","p":70,"h":1,"n":"Instant Spy"},{"c":2,"s":2,"id":6529,"u":"iris%20of%20the%20sky_g%26g","p":165,"h":1,"n":"Iris Of The Sky"},{"c":2,"s":2,"id":6530,"u":"large%20bore%20modifications_g%26g","p":183,"h":1,"n":"Large Bore Modifications"},{"c":2,"s":2,"id":6531,"u":"liar's%20gun_g%26g","p":157,"h":1,"n":"Liar's Gun"},{"c":2,"s":2,"id":6532,"u":"light%20writer_g%26g","p":88,"h":1,"n":"Light Writer"},{"c":2,"s":2,"id":6533,"u":"lucky%20draw%20bandolier%20(generic)_g%26g","p":180,"h":1,"n":"Lucky Draw Bandolier"},{"c":2,"s":2,"id":6534,"u":"magnetic%20suit%20(generic)_g%26g","p":71,"h":1,"n":"Magnetic Suit"},{"c":2,"s":2,"id":6535,"u":"magnetite%20scope%20(generic)_g%26g","p":181,"h":1,"n":"Magnetite Scope"},{"c":2,"s":2,"id":6536,"u":"magnifying%20scope%20(generic)_g%26g","p":181,"h":1,"n":"Magnifying Scope"},{"c":2,"s":2,"id":6537,"u":"material%20essence%20disruptor%20(generic)_g%26g","p":71,"h":1,"n":"Material Essence Disruptor"},{"c":2,"s":2,"id":6538,"u":"mechanical%20torch_g%26g","p":88,"h":1,"n":"Mechanical Torch"},{"c":2,"s":2,"id":6539,"u":"meteor%20shot%20(generic)_g%26g","p":171,"h":1,"n":"Meteor Shot"},{"c":2,"s":2,"id":6540,"u":"mortar_g%26g","p":176,"h":1,"n":"Mortar"},{"c":2,"s":2,"id":6541,"u":"mountebank's%20passage_g%26g","p":165,"h":1,"n":"Mountebank's Passage"},{"c":2,"s":2,"id":6542,"u":"net%20launcher_g%26g","p":65,"h":1,"n":"Net Launcher"},{"c":2,"s":2,"id":6543,"u":"nightbreeze%20machine_g%26g","p":88,"h":1,"n":"Nightbreeze Machine"},{"c":2,"s":2,"id":6544,"u":"noisemaker%20snare_g%26g","p":80,"h":1,"n":"Noisemaker Snare"},{"c":2,"s":2,"id":6545,"u":"pact-bound%20pistol_g%26g","p":161,"h":1,"n":"Pact-bound Pistol"},{"c":2,"s":2,"id":6546,"u":"paper%20shredder_g%26g","p":88,"h":1,"n":"Paper Shredder"},{"c":2,"s":2,"id":6547,"u":"peacemaker_g%26g","p":185,"h":1,"n":"Peacemaker"},{"c":2,"s":2,"id":6548,"u":"persistent%20lodestone_g%26g","p":185,"h":1,"n":"Persistent Lodestone"},{"c":2,"s":2,"id":6549,"u":"petrification%20cannon_g%26g","p":155,"h":1,"n":"Petrification Cannon"},{"c":2,"s":2,"id":6550,"u":"pistol%20of%20wonder_g%26g","p":167,"h":1,"n":"Pistol Of Wonder"},{"c":2,"s":2,"id":6551,"u":"portable%20weapon%20mount%20(generic)_g%26g","p":182,"h":1,"n":"Portable Weapon Mount"},{"c":2,"s":2,"id":6552,"u":"practice%20targets_g%26g","p":178,"h":1,"n":"Practice Targets"},{"c":2,"s":2,"id":6553,"u":"printing%20press_g%26g","p":89,"h":1,"n":"Printing Press"},{"c":2,"s":2,"id":6554,"u":"puff%20dragon_g%26g","p":80,"h":1,"n":"Puff Dragon"},{"c":2,"s":2,"id":6555,"u":"reaper's%20grasp_g%26g","p":165,"h":1,"n":"Reaper's Grasp"},{"c":2,"s":2,"id":6556,"u":"repeating%20magazine%20(generic)_g%26g","p":63,"h":1,"n":"Repeating Magazine"},{"c":2,"s":2,"id":6557,"u":"rowan%20rifle_g%26g","p":166,"h":1,"n":"Rowan Rifle"},{"c":2,"s":2,"id":6558,"u":"sambuca_g%26g","p":177,"h":1,"n":"Sambuca"},{"c":2,"s":2,"id":6559,"u":"scope%20of%20limning_g%26g","p":182,"h":1,"n":"Scope Of Limning"},{"c":2,"s":2,"id":6560,"u":"scope%20of%20truth_g%26g","p":182,"h":1,"n":"Scope Of Truth"},{"c":2,"s":2,"id":6561,"u":"screech%20shooter%20(generic)_g%26g","p":155,"h":1,"n":"Screech Shooter"},{"c":2,"s":2,"id":6562,"u":"shockguard%20coil_g%26g","p":83,"h":1,"n":"Shockguard Coil"},{"c":2,"s":2,"id":6563,"u":"shrapnel%20snare_g%26g","p":80,"h":1,"n":"Shrapnel Snare"},{"c":2,"s":2,"id":6564,"u":"shrieking%20skull_g%26g","p":185,"h":1,"n":"Shrieking Skull"},{"c":2,"s":2,"id":6565,"u":"silencer_g%26g","p":178,"h":1,"n":"Silencer"},{"c":2,"s":2,"id":6566,"u":"silencing%20shot_g%26g","p":171,"h":1,"n":"Silencing Shot"},{"c":2,"s":2,"id":6567,"u":"silver%20tripod_g%26g","p":185,"h":1,"n":"Silver Tripod"},{"c":2,"s":2,"id":6568,"u":"smoke%20fan%20(generic)_g%26g","p":71,"h":1,"n":"Smoke Fan"},{"c":2,"s":2,"id":6569,"u":"sniper's%20bead%20(generic)_g%26g","p":185,"h":1,"n":"Sniper's Bead"},{"c":2,"s":2,"id":6570,"u":"spider%20chair_g%26g","p":91,"h":1,"n":"Spider Chair"},{"c":2,"s":2,"id":6571,"u":"spider%20gun%20(generic)_g%26g","p":155,"h":1,"n":"Spider Gun"},{"c":2,"s":2,"id":6572,"u":"spike%20launcher_g%26g","p":156,"h":1,"n":"Spike Launcher"},{"c":2,"s":2,"id":6573,"u":"spirit%20snare_g%26g","p":80,"h":1,"n":"Spirit Snare"},{"c":2,"s":2,"id":6574,"u":"spirit-singer%20(generic)_g%26g","p":83,"h":1,"n":"Spirit-Singer"},{"c":2,"s":2,"id":6575,"u":"springald_g%26g","p":76,"h":1,"n":"Springald"},{"c":2,"s":2,"id":6576,"u":"steam%20winch_g%26g","p":89,"h":1,"n":"Steam Winch"},{"c":2,"s":2,"id":6577,"u":"steamflight%20pack_g%26g","p":89,"h":1,"n":"Steamflight Pack"},{"c":2,"s":2,"id":6578,"u":"stepping%20stone%20shot%20(generic)_g%26g","p":171,"h":1,"n":"Stepping Stone Shot"},{"c":2,"s":2,"id":6579,"u":"storm%20chair_g%26g","p":91,"h":1,"n":"Storm Chair"},{"c":2,"s":2,"id":6580,"u":"sunken%20pistol_g%26g","p":163,"h":1,"n":"Sunken Pistol"},{"c":2,"s":2,"id":6581,"u":"tentacle%20cannon%20(generic)_g%26g","p":156,"h":1,"n":"Tentacle Cannon"},{"c":2,"s":2,"id":6582,"u":"tiger's%20claw_g%26g","p":166,"h":1,"n":"Tiger's Claw"},{"c":2,"s":2,"id":6583,"u":"timepiece%20(generic)_g%26g","p":89,"h":1,"n":"Timepiece"},{"c":2,"s":2,"id":6584,"u":"tin%20cobra_g%26g","p":81,"h":1,"n":"Tin Cobra"},{"c":2,"s":2,"id":6585,"u":"traveler's%20chair_g%26g","p":91,"h":1,"n":"Traveler's Chair"},{"c":2,"s":2,"id":6586,"u":"trebuchet_g%26g","p":76,"h":1,"n":"Trebuchet"},{"c":2,"s":2,"id":6587,"u":"tripod_g%26g","p":178,"h":1,"n":"Tripod"},{"c":2,"s":2,"id":6588,"u":"trustworthy%20round_g%26g","p":171,"h":1,"n":"Trustworthy Round"},{"c":2,"s":2,"id":6589,"u":"underwater%20firing%20mechanism_g%26g","p":184,"h":1,"n":"Underwater Firing Mechanism"},{"c":2,"s":2,"id":6590,"u":"violet%20ray_g%26g","p":83,"h":1,"n":"Violet Ray"},{"c":2,"s":2,"id":6591,"u":"waterproof%20firearm%20carrying%20case_g%26g","p":178,"h":1,"n":"Waterproof Firearm Carrying Case"},{"c":2,"s":2,"id":6592,"u":"wind-up%20cart_g%26g","p":71,"h":1,"n":"Wind-up Cart"},{"c":2,"s":2,"id":6593,"u":"wind-up%20wings%20(generic)_g%26g","p":65,"h":1,"n":"Wind-up Wings"},{"c":2,"s":1,"id":6594,"u":"conducting_loag","p":140,"h":1,"n":"Conducting"},{"c":2,"s":1,"id":6595,"u":"soaring_loag","p":140,"h":1,"n":"Soaring"},{"c":2,"s":1,"id":6596,"u":"wooden%20taws_loag","p":139,"h":1,"n":"Wooden Taws"},{"c":2,"s":6,"id":6597,"u":"armored%20skirt_locg","p":91,"h":1,"n":"Armored Skirt"},{"c":2,"s":6,"id":6598,"u":"bi-resonant%20wayfinder_locg","p":110,"h":1,"n":"Bi-resonant Wayfinder"},{"c":2,"s":6,"id":6599,"u":"cloak%20of%20repute%20(generic)_locg","p":72,"h":1,"n":"Cloak Of Repute"},{"c":2,"s":6,"id":6600,"u":"crimson%20brand_locg","p":92,"h":1,"n":"Crimson Brand"},{"c":2,"s":6,"id":6601,"u":"fortifying%20pebble_locg","p":110,"h":1,"n":"Fortifying Pebble"},{"c":2,"s":6,"id":6602,"u":"glorious%20plate_locg","p":93,"h":1,"n":"Glorious Plate"},{"c":2,"s":6,"id":6603,"u":"insistent%20door%20knocker%20(generic)_locg","p":72,"h":1,"n":"Insistent Door Knocker"},{"c":2,"s":6,"id":6604,"u":"lastwall%20soup_locg","p":92,"h":1,"n":"Lastwall Soup"},{"c":2,"s":6,"id":6605,"u":"pathfinder%20chronicle_locg","p":110,"h":1,"n":"Pathfinder Chronicle"},{"c":2,"s":6,"id":6606,"u":"pathfinder's%20coin_locg","p":110,"h":1,"n":"Pathfinder's Coin"},{"c":2,"s":6,"id":6607,"u":"pathfinder's%20pouch_locg","p":111,"h":1,"n":"Pathfinder's Pouch"},{"c":2,"s":6,"id":6608,"u":"radiant%20lance_locg","p":92,"h":1,"n":"Radiant Lance"},{"c":2,"s":6,"id":6609,"u":"scroll%20case%20of%20simplicity_locg","p":111,"h":1,"n":"Scroll Case Of Simplicity"},{"c":2,"s":6,"id":6610,"u":"scrollstaff_locg","p":100,"h":1,"n":"Scrollstaff"},{"c":2,"s":6,"id":6611,"u":"serrating_locg","p":93,"h":1,"n":"Serrating"},{"c":2,"s":6,"id":6612,"u":"shining%20wayfinder_locg","p":111,"h":1,"n":"Shining Wayfinder"},{"c":2,"s":6,"id":6613,"u":"sinister%20knight_locg","p":92,"h":1,"n":"Sinister Knight"},{"c":2,"s":6,"id":6614,"u":"snapleaf_locg","p":73,"h":1,"n":"Snapleaf"},{"c":2,"s":6,"id":6615,"u":"unmemorable%20mantle%20(generic)_locg","p":73,"h":1,"n":"Unmemorable Mantle"},{"c":2,"s":6,"id":6616,"u":"vanishing%20wayfinder_locg","p":112,"h":1,"n":"Vanishing Wayfinder"},{"c":2,"s":51,"id":6617,"u":"abadar's%20flawless%20scale_logm","p":121,"h":1,"n":"Abadar's Flawless Scale"},{"c":2,"s":51,"id":6618,"u":"bottomless%20stein_logm","p":121,"h":1,"n":"Bottomless Stein"},{"c":2,"s":51,"id":6619,"u":"dagger%20of%20eternal%20sleep_logm","p":121,"h":1,"n":"Dagger Of Eternal Sleep"},{"c":2,"s":51,"id":6620,"u":"deteriorating%20dust%20(generic)_logm","p":122,"h":1,"n":"Deteriorating Dust"},{"c":2,"s":51,"id":6621,"u":"dreadsmoke%20thurible_logm","p":122,"h":1,"n":"Dreadsmoke Thurible"},{"c":2,"s":51,"id":6622,"u":"glaive%20of%20the%20artist_logm","p":122,"h":1,"n":"Glaive Of The Artist"},{"c":2,"s":51,"id":6623,"u":"lucky%20rabbit's%20foot_logm","p":122,"h":1,"n":"Lucky Rabbit's Foot"},{"c":2,"s":51,"id":6624,"u":"manacles%20of%20persuasion_logm","p":122,"h":1,"n":"Manacles Of Persuasion"},{"c":2,"s":51,"id":6625,"u":"miter%20of%20communion_logm","p":123,"h":1,"n":"Miter Of Communion"},{"c":2,"s":51,"id":6626,"u":"mortar%20of%20hidden%20meaning_logm","p":123,"h":1,"n":"Mortar Of Hidden Meaning"},{"c":2,"s":51,"id":6627,"u":"necklace%20of%20knives_logm","p":123,"h":1,"n":"Necklace Of Knives"},{"c":2,"s":51,"id":6628,"u":"rat-catcher%20trident_logm","p":123,"h":1,"n":"Rat-catcher Trident"},{"c":2,"s":51,"id":6629,"u":"singing%20bowl%20of%20the%20versatile%20stance_logm","p":123,"h":1,"n":"Singing Bowl Of The Versatile Stance"},{"c":2,"s":51,"id":6630,"u":"torag's%20silver%20anvil_logm","p":123,"h":1,"n":"Torag's Silver Anvil"},{"c":2,"s":52,"id":6631,"u":"addiction%20suppressant%20(generic)_lol","p":72,"h":1,"n":"Addiction Suppressant"},{"c":2,"s":52,"id":6632,"u":"alchemical%20atomizer_lol","p":80,"h":1,"n":"Alchemical Atomizer"},{"c":2,"s":52,"id":6633,"u":"applereed%20mutagen%20(generic)_lol","p":86,"h":1,"n":"Applereed Mutagen"},{"c":2,"s":52,"id":6634,"u":"blade%20of%20the%20black%20sovereign_lol","p":76,"h":1,"n":"Blade Of The Black Sovereign"},{"c":2,"s":52,"id":6635,"u":"celestial%20peach%20(generic)_lol","p":48,"h":1,"n":"Celestial Peach"},{"c":2,"s":52,"id":6636,"u":"clockwork%20recorder_lol","p":24,"h":1,"n":"Clockwork Recorder"},{"c":2,"s":52,"id":6637,"u":"deepdread%20claw_lol","p":28,"h":1,"n":"Deepdread Claw"},{"c":2,"s":52,"id":6638,"u":"diluted%20hype_lol","p":81,"h":1,"n":"Diluted Hype"},{"c":2,"s":52,"id":6639,"u":"fiendish%20teleportation_lol","p":10,"h":1,"n":"Fiendish Teleportation"},{"c":2,"s":52,"id":6640,"u":"honeyscent_lol","p":86,"h":1,"n":"Honeyscent"},{"c":2,"s":52,"id":6641,"u":"hype_lol","p":81,"h":1,"n":"Hype"},{"c":2,"s":52,"id":6642,"u":"infernal%20health_lol","p":10,"h":1,"n":"Infernal Health"},{"c":2,"s":52,"id":6643,"u":"lovers'%20ink_lol","p":24,"h":1,"n":"Lovers' Ink"},{"c":2,"s":52,"id":6644,"u":"mountain%20to%20the%20sky_lol","p":48,"h":1,"n":"Mountain To The Sky"},{"c":2,"s":52,"id":6645,"u":"palm%20crossbow_lol","p":25,"h":1,"n":"Palm Crossbow"},{"c":2,"s":52,"id":6646,"u":"plasma%20hype_lol","p":81,"h":1,"n":"Plasma Hype"},{"c":2,"s":52,"id":6647,"u":"ruby%20string_lol","p":48,"h":1,"n":"Ruby String"},{"c":2,"s":52,"id":6648,"u":"sovereign%20steel%20(generic)_lol","p":77,"h":1,"n":"Sovereign Steel"},{"c":2,"s":52,"id":6649,"u":"sovereign%20steel%20armor%20(generic)_lol","p":77,"h":1,"n":"Sovereign Steel Armor"},{"c":2,"s":52,"id":6650,"u":"sovereign%20steel%20weapon%20(generic)_lol","p":77,"h":1,"n":"Sovereign Steel Weapon"},{"c":2,"s":52,"id":6651,"u":"starshot%20arrow%20(generic)_lol","p":48,"h":1,"n":"Starshot Arrow"},{"c":2,"s":52,"id":6652,"u":"sun%20orchid%20poultice_lol","p":20,"h":1,"n":"Sun Orchid Poultice"},{"c":2,"s":52,"id":6653,"u":"swamp%20lily%20quilt_lol","p":86,"h":1,"n":"Swamp Lily Quilt"},{"c":2,"s":52,"id":6654,"u":"unending%20youth_lol","p":10,"h":1,"n":"Unending Youth"},{"c":2,"s":52,"id":6655,"u":"vaccine%20(generic)_lol","p":71,"h":1,"n":"Vaccine"},{"c":2,"s":52,"id":6656,"u":"vestige%20lenses_lol","p":25,"h":1,"n":"Vestige Lenses"},{"c":2,"s":0,"id":6657,"u":"genealogy%20mask_lome","p":34,"h":1,"n":"Genealogy Mask"},{"c":2,"s":0,"id":6658,"u":"jahan%20waystone_lome","p":207,"h":1,"n":"Jahan Waystone"},{"c":2,"s":0,"id":6659,"u":"oath%20of%20the%20devoted_lome","p":231,"h":1,"n":"Oath Of The Devoted"},{"c":2,"s":47,"id":6660,"u":"alignment%20ampoule%20(generic)_lopsg","p":39,"h":1,"n":"Alignment Ampoule"},{"c":2,"s":47,"id":6661,"u":"astrolabe%20(generic)_lopsg","p":35,"h":1,"n":"Astrolabe"},{"c":2,"s":47,"id":6662,"u":"body%20recovery%20kit_lopsg","p":2277,"h":1,"n":"Body Recovery Kit"},{"c":2,"s":47,"id":6663,"u":"bookthief%20brew_lopsg","p":31,"h":1,"n":"Bookthief Brew"},{"c":2,"s":47,"id":6664,"u":"boulderhead%20bock_lopsg","p":30,"h":1,"n":"Boulderhead Bock"},{"c":2,"s":47,"id":6665,"u":"buoyancy%20vest_lopsg","p":114,"h":1,"n":"Buoyancy Vest"},{"c":2,"s":47,"id":6666,"u":"cartographer's%20kit_lopsg","p":35,"h":1,"n":"Cartographer's Kit"},{"c":2,"s":47,"id":6667,"u":"chronicler%20wayfinder_lopsg","p":31,"h":1,"n":"Chronicler Wayfinder"},{"c":2,"s":47,"id":6668,"u":"clockwork%20dial_lopsg","p":114,"h":1,"n":"Clockwork Dial"},{"c":2,"s":47,"id":6669,"u":"comealong_lopsg","p":114,"h":1,"n":"Comealong"},{"c":2,"s":47,"id":6670,"u":"communication%20bangle_lopsg","p":2277,"h":1,"n":"Communication Bangle"},{"c":2,"s":47,"id":6671,"u":"cordelia's%20construct%20key%20(generic)_lopsg","p":124,"h":1,"n":"Cordelia's Construct Key"},{"c":2,"s":47,"id":6672,"u":"cunning_lopsg","p":124,"h":1,"n":"Cunning"},{"c":2,"s":47,"id":6673,"u":"depth%20gauge_lopsg","p":114,"h":1,"n":"Depth Gauge"},{"c":2,"s":47,"id":6674,"u":"diviner's%20nose%20chain_lopsg","p":78,"h":1,"n":"Diviner's Nose Chain"},{"c":2,"s":47,"id":6675,"u":"earplugs_lopsg","p":114,"h":1,"n":"Earplugs"},{"c":2,"s":47,"id":6676,"u":"elemental%20wayfinder%20(generic)_lopsg","p":122,"h":1,"n":"Elemental Wayfinder"},{"c":2,"s":47,"id":6677,"u":"emergency%20disguise_lopsg","p":109,"h":1,"n":"Emergency Disguise"},{"c":2,"s":47,"id":6678,"u":"everyneed%20pack%20(generic)_lopsg","p":86,"h":1,"n":"Everyneed Pack"},{"c":2,"s":47,"id":6679,"u":"false%20manacles_lopsg","p":114,"h":1,"n":"False Manacles"},{"c":2,"s":47,"id":6680,"u":"familiar%20satchel_lopsg","p":114,"h":1,"n":"Familiar satchel"},{"c":2,"s":47,"id":6681,"u":"fashionable%20wayfinder_lopsg","p":122,"h":1,"n":"Fashionable Wayfinder"},{"c":2,"s":47,"id":6682,"u":"ganjay%20book_lopsg","p":97,"h":1,"n":"Ganjay Book"},{"c":2,"s":47,"id":6683,"u":"glass%20cutter_lopsg","p":114,"h":1,"n":"Glass Cutter"},{"c":2,"s":47,"id":6684,"u":"grappling%20arrow_lopsg","p":114,"h":1,"n":"Grappling Arrow"},{"c":2,"s":47,"id":6685,"u":"grappling%20bolt_lopsg","p":114,"h":1,"n":"Grappling Bolt"},{"c":2,"s":47,"id":6686,"u":"homeward%20wayfinder_lopsg","p":122,"h":1,"n":"Homeward Wayfinder"},{"c":2,"s":47,"id":6687,"u":"hummingbird%20wayfinder_lopsg","p":122,"h":1,"n":"Hummingbird Wayfinder"},{"c":2,"s":47,"id":6688,"u":"marked%20playing%20cards_lopsg","p":114,"h":1,"n":"Marked Playing Cards"},{"c":2,"s":47,"id":6689,"u":"metalmist%20sphere%20(generic)_lopsg","p":39,"h":1,"n":"Metalmist Sphere"},{"c":2,"s":47,"id":6690,"u":"playing%20cards_lopsg","p":114,"h":1,"n":"Playing Cards"},{"c":2,"s":47,"id":6691,"u":"psychic%20warding%20bracelet_lopsg","p":39,"h":1,"n":"Psychic Warding Bracelet"},{"c":2,"s":47,"id":6692,"u":"quickpatch%20glue_lopsg","p":35,"h":1,"n":"Quickpatch Glue"},{"c":2,"s":47,"id":6693,"u":"quill%20of%20passage_lopsg","p":118,"h":1,"n":"Quill Of Passage"},{"c":2,"s":47,"id":6694,"u":"razmiri%20wayfinder_lopsg","p":73,"h":1,"n":"Razmiri Wayfinder"},{"c":2,"s":47,"id":6695,"u":"replacement%20filter%20(generic)_lopsg","p":114,"h":1,"n":"Replacement Filter"},{"c":2,"s":47,"id":6696,"u":"rubbing%20set_lopsg","p":114,"h":1,"n":"Rubbing Set"},{"c":2,"s":47,"id":6697,"u":"ruler_lopsg","p":35,"h":1,"n":"Ruler"},{"c":2,"s":47,"id":6698,"u":"sealing%20chest%20(generic)_lopsg","p":38,"h":1,"n":"Sealing Chest"},{"c":2,"s":47,"id":6699,"u":"shield%20sconce_lopsg","p":114,"h":1,"n":"Shield Sconce"},{"c":2,"s":47,"id":6700,"u":"snowshoes_lopsg","p":114,"h":1,"n":"Snowshoes"},{"c":2,"s":47,"id":6701,"u":"snowshoes%20of%20the%20long%20trek_lopsg","p":89,"h":1,"n":"Snowshoes Of The Long Trek"},{"c":2,"s":47,"id":6702,"u":"spectacles%20of%20understanding%20(generic)_lopsg","p":118,"h":1,"n":"Spectacles Of Understanding"},{"c":2,"s":47,"id":6703,"u":"sturdy%20satchel_lopsg","p":35,"h":1,"n":"Sturdy Satchel"},{"c":2,"s":47,"id":6704,"u":"talisman%20cord%20(generic)_lopsg","p":118,"h":1,"n":"Talisman Cord"},{"c":2,"s":47,"id":6705,"u":"vermin%20repellent%20agent%20(generic)_lopsg","p":101,"h":1,"n":"Vermin Repellent Agent"},{"c":2,"s":47,"id":6706,"u":"water%20purifier_lopsg","p":114,"h":1,"n":"Water Purifier"},{"c":2,"s":47,"id":6707,"u":"waterproof%20journal_lopsg","p":31,"h":1,"n":"Waterproof Journal"},{"c":2,"s":47,"id":6708,"u":"wax%20key%20blank_lopsg","p":114,"h":1,"n":"Wax Key Blank"},{"c":2,"s":47,"id":6709,"u":"writ%20of%20authenticity_lopsg","p":2277,"h":1,"n":"Writ Of Authenticity"},{"c":2,"s":7,"id":6710,"u":"abysium%20(generic)_lotgb","p":96,"h":1,"n":"Abysium"},{"c":2,"s":7,"id":6711,"u":"abysium%20armor%20(generic)_lotgb","p":96,"h":1,"n":"Abysium Armor"},{"c":2,"s":7,"id":6712,"u":"abysium%20powder_lotgb","p":96,"h":1,"n":"Abysium Powder"},{"c":2,"s":7,"id":6713,"u":"abysium%20shield%20(generic)_lotgb","p":96,"h":1,"n":"Abysium Shield"},{"c":2,"s":7,"id":6714,"u":"abysium%20weapon%20(generic)_lotgb","p":97,"h":1,"n":"Abysium Weapon"},{"c":2,"s":7,"id":6715,"u":"air%20bladder_lotgb","p":92,"h":1,"n":"Air Bladder"},{"c":2,"s":7,"id":6716,"u":"alluring%20scarf%20(generic)_lotgb","p":84,"h":1,"n":"Alluring Scarf"},{"c":2,"s":7,"id":6717,"u":"amaranthine%20pavise_lotgb","p":30,"h":1,"n":"Amaranthine Pavise"},{"c":2,"s":7,"id":6718,"u":"amphibious%20chair_lotgb","p":71,"h":1,"n":"Amphibious Chair"},{"c":2,"s":7,"id":6719,"u":"anchoring%20(generic)_lotgb","p":80,"h":1,"n":"Anchoring"},{"c":2,"s":7,"id":6720,"u":"arctic%20vigor%20(generic)_lotgb","p":38,"h":1,"n":"Arctic Vigor"},{"c":2,"s":7,"id":6721,"u":"avalanche%20of%20stones%20snare_lotgb","p":42,"h":1,"n":"Avalanche Of Stones Snare"},{"c":2,"s":7,"id":6722,"u":"ball_lotgb","p":58,"h":1,"n":"Ball"},{"c":2,"s":7,"id":6723,"u":"bandalore_lotgb","p":58,"h":1,"n":"Bandalore"},{"c":2,"s":7,"id":6724,"u":"basic%20cane_lotgb","p":67,"h":1,"n":"Basic Cane"},{"c":2,"s":7,"id":6725,"u":"basic%20corrective%20lenses_lotgb","p":70,"h":1,"n":"Basic Corrective Lenses"},{"c":2,"s":7,"id":6726,"u":"basic%20crutch_lotgb","p":67,"h":1,"n":"Basic Crutch"},{"c":2,"s":7,"id":6727,"u":"basic%20hearing%20aid_lotgb","p":67,"h":1,"n":"Basic Hearing Aid"},{"c":2,"s":7,"id":6728,"u":"basic%20prosthesis_lotgb","p":69,"h":1,"n":"Basic Prosthesis"},{"c":2,"s":7,"id":6729,"u":"big%20rock%20bullet%20(generic)_lotgb","p":14,"h":1,"n":"Big Rock Bullet"},{"c":2,"s":7,"id":6730,"u":"bitter_lotgb","p":18,"h":1,"n":"Bitter"},{"c":2,"s":7,"id":6731,"u":"blast%20foot%20(generic)_lotgb","p":73,"h":1,"n":"Blast Foot"},{"c":2,"s":7,"id":6732,"u":"blindpepper%20bolt_lotgb","p":14,"h":1,"n":"Blindpepper Bolt"},{"c":2,"s":7,"id":6733,"u":"blocks_lotgb","p":58,"h":1,"n":"Blocks"},{"c":2,"s":7,"id":6734,"u":"bloodthirsty_lotgb","p":42,"h":1,"n":"Bloodthirsty"},{"c":2,"s":7,"id":6735,"u":"brewer's%20regret%20(generic)_lotgb","p":46,"h":1,"n":"Brewer's Regret"},{"c":2,"s":7,"id":6736,"u":"brilliant%20rapier_lotgb","p":10,"h":1,"n":"Brilliant Rapier"},{"c":2,"s":7,"id":6737,"u":"brooch%20of%20inspiration%20(generic)_lotgb","p":110,"h":1,"n":"Brooch Of Inspiration"},{"c":2,"s":7,"id":6738,"u":"burning%20badger%20guts%20snare_lotgb","p":26,"h":1,"n":"Burning Badger Guts Snare"},{"c":2,"s":7,"id":6739,"u":"burnished%20plating_lotgb","p":104,"h":1,"n":"Burnished Plating"},{"c":2,"s":7,"id":6740,"u":"called_lotgb","p":88,"h":1,"n":"Called"},{"c":2,"s":7,"id":6741,"u":"chair%20storage_lotgb","p":71,"h":1,"n":"Chair Storage"},{"c":2,"s":7,"id":6742,"u":"chopping%20evisceration%20snare_lotgb","p":14,"h":1,"n":"Chopping Evisceration Snare"},{"c":2,"s":7,"id":6743,"u":"clay_lotgb","p":58,"h":1,"n":"Clay"},{"c":2,"s":7,"id":6744,"u":"clockwork%20heels_lotgb","p":22,"h":1,"n":"Clockwork Heels"},{"c":2,"s":7,"id":6745,"u":"clockwork%20macuahuitl_lotgb","p":22,"h":1,"n":"Clockwork Macuahuitl"},{"c":2,"s":7,"id":6746,"u":"clockwork%20spider%20bomb_lotgb","p":22,"h":1,"n":"Clockwork Spider Bomb"},{"c":2,"s":7,"id":6747,"u":"coin%20of%20comfort_lotgb","p":26,"h":1,"n":"Coin Of Comfort"},{"c":2,"s":7,"id":6748,"u":"cold%20comfort%20(generic)_lotgb","p":18,"h":1,"n":"Cold Comfort"},{"c":2,"s":7,"id":6749,"u":"crown%20of%20insight_lotgb","p":38,"h":1,"n":"Crown Of Insight"},{"c":2,"s":7,"id":6750,"u":"crown%20of%20the%20fire%20eater%20(generic)_lotgb","p":110,"h":1,"n":"Crown Of The Fire Eater"},{"c":2,"s":7,"id":6751,"u":"crushing%20(generic)_lotgb","p":42,"h":1,"n":"Crushing"},{"c":2,"s":7,"id":6752,"u":"cursebreak%20bulwark_lotgb","p":18,"h":1,"n":"Cursebreak Bulwark"},{"c":2,"s":7,"id":6753,"u":"deadweight%20snare_lotgb","p":14,"h":1,"n":"Deadweight Snare"},{"c":2,"s":7,"id":6754,"u":"deathless_lotgb","p":10,"h":1,"n":"Deathless"},{"c":2,"s":7,"id":6755,"u":"dinosaur%20boots%20(generic)_lotgb","p":42,"h":1,"n":"Dinosaur Boots"},{"c":2,"s":7,"id":6756,"u":"diving%20suit_lotgb","p":19,"h":1,"n":"Diving Suit"},{"c":2,"s":7,"id":6757,"u":"djezet%20(generic)_lotgb","p":97,"h":1,"n":"Djezet"},{"c":2,"s":7,"id":6758,"u":"djezet%20armor%20(generic)_lotgb","p":98,"h":1,"n":"Djezet Armor"},{"c":2,"s":7,"id":6759,"u":"djezet%20dose_lotgb","p":98,"h":1,"n":"Djezet Dose"},{"c":2,"s":7,"id":6760,"u":"djezet%20shield%20(generic)_lotgb","p":98,"h":1,"n":"Djezet Shield"},{"c":2,"s":7,"id":6761,"u":"djezet%20weapon%20(generic)_lotgb","p":98,"h":1,"n":"Djezet Weapon"},{"c":2,"s":7,"id":6762,"u":"doll%20(generic)_lotgb","p":58,"h":1,"n":"Doll"},{"c":2,"s":7,"id":6763,"u":"dragon's%20blood%20pudding%20(generic)_lotgb","p":46,"h":1,"n":"Dragon's Blood Pudding"},{"c":2,"s":7,"id":6764,"u":"dragon's%20breath%20(generic)_lotgb","p":88,"h":1,"n":"Dragon's Breath"},{"c":2,"s":7,"id":6765,"u":"dragon's%20crest_lotgb","p":104,"h":1,"n":"Dragon's Crest"},{"c":2,"s":7,"id":6766,"u":"dragonfly%20potion_lotgb","p":26,"h":1,"n":"Dragonfly Potion"},{"c":2,"s":7,"id":6767,"u":"dread%20(generic)_lotgb","p":14,"h":1,"n":"Dread"},{"c":2,"s":7,"id":6768,"u":"drum%20of%20upheaval_lotgb","p":30,"h":1,"n":"Drum Of Upheaval"},{"c":2,"s":7,"id":6769,"u":"duelist's%20beacon_lotgb","p":10,"h":1,"n":"Duelist's Beacon"},{"c":2,"s":7,"id":6770,"u":"dweomerweave%20robe_lotgb","p":50,"h":1,"n":"Dweomerweave Robe"},{"c":2,"s":7,"id":6771,"u":"encompassing%20lockpick_lotgb","p":10,"h":1,"n":"Encompassing Lockpick"},{"c":2,"s":7,"id":6772,"u":"energizing_lotgb","p":10,"h":1,"n":"Energizing"},{"c":2,"s":7,"id":6773,"u":"energy%20robe%20(generic)_lotgb","p":50,"h":1,"n":"Energy Robe"},{"c":2,"s":7,"id":6774,"u":"enfilading%20arrow_lotgb","p":14,"h":1,"n":"Enfilading Arrow"},{"c":2,"s":7,"id":6775,"u":"enhanced%20hearing%20aids_lotgb","p":68,"h":1,"n":"Enhanced Hearing Aids"},{"c":2,"s":7,"id":6776,"u":"enveloping%20light%20(generic)_lotgb","p":38,"h":1,"n":"Enveloping Light"},{"c":2,"s":7,"id":6777,"u":"envenomed%20snare_lotgb","p":15,"h":1,"n":"Envenomed Snare"},{"c":2,"s":7,"id":6778,"u":"experimental%20clothing_lotgb","p":50,"h":1,"n":"Experimental Clothing"},{"c":2,"s":7,"id":6779,"u":"eye%20of%20the%20unseen%20(generic)_lotgb","p":73,"h":1,"n":"Eye Of The Unseen"},{"c":2,"s":7,"id":6780,"u":"fake%20blood%20pack_lotgb","p":92,"h":1,"n":"Fake Blood Pack"},{"c":2,"s":7,"id":6781,"u":"fanged%20(generic)_lotgb","p":106,"h":1,"n":"Fanged"},{"c":2,"s":7,"id":6782,"u":"fire%20and%20iceberg%20(generic)_lotgb","p":46,"h":1,"n":"Fire And Iceberg"},{"c":2,"s":7,"id":6783,"u":"fleshgem%20(generic)_lotgb","p":110,"h":1,"n":"Fleshgem"},{"c":2,"s":7,"id":6784,"u":"folding%20boat%20(generic)_lotgb","p":76,"h":1,"n":"Folding Boat"},{"c":2,"s":7,"id":6785,"u":"folding%20ladder_lotgb","p":92,"h":1,"n":"Folding Ladder"},{"c":2,"s":7,"id":6786,"u":"follypops%20(generic)_lotgb","p":47,"h":1,"n":"Follypops"},{"c":2,"s":7,"id":6787,"u":"games%20(generic)_lotgb","p":58,"h":1,"n":"Games"},{"c":2,"s":7,"id":6788,"u":"glittering%20snare_lotgb","p":26,"h":1,"n":"Glittering Snare"},{"c":2,"s":7,"id":6789,"u":"griffon%20cane_lotgb","p":67,"h":1,"n":"Griffon Cane"},{"c":2,"s":7,"id":6790,"u":"harmonic%20hauberk_lotgb","p":84,"h":1,"n":"Harmonic Hauberk"},{"c":2,"s":7,"id":6791,"u":"hauling%20(generic)_lotgb","p":80,"h":1,"n":"Hauling"},{"c":2,"s":7,"id":6792,"u":"hopeful_lotgb","p":84,"h":1,"n":"Hopeful"},{"c":2,"s":7,"id":6793,"u":"horned%20hand%20rests_lotgb","p":72,"h":1,"n":"Horned Hand Rests"},{"c":2,"s":7,"id":6794,"u":"hosteling%20statuette_lotgb","p":55,"h":1,"n":"Hosteling Statuette"},{"c":2,"s":7,"id":6795,"u":"immovable%20arm_lotgb","p":73,"h":1,"n":"Immovable Arm"},{"c":2,"s":7,"id":6796,"u":"implacable_lotgb","p":80,"h":1,"n":"Implacable"},{"c":2,"s":7,"id":6797,"u":"impossible%20cake%20(generic)_lotgb","p":46,"h":1,"n":"Impossible Cake"},{"c":2,"s":7,"id":6798,"u":"impulse%20control_lotgb","p":71,"h":1,"n":"Impulse Control"},{"c":2,"s":7,"id":6799,"u":"inubrix%20(generic)_lotgb","p":98,"h":1,"n":"Inubrix"},{"c":2,"s":7,"id":6800,"u":"inubrix%20armor%20(generic)_lotgb","p":98,"h":1,"n":"Inubrix Armor"},{"c":2,"s":7,"id":6801,"u":"inubrix%20shield%20(generic)_lotgb","p":99,"h":1,"n":"Inubrix Shield"},{"c":2,"s":7,"id":6802,"u":"inubrix%20weapon%20(generic)_lotgb","p":99,"h":1,"n":"Inubrix Weapon"},{"c":2,"s":7,"id":6803,"u":"juxtaposition%20ammunition_lotgb","p":19,"h":1,"n":"Juxtaposition Ammunition"},{"c":2,"s":7,"id":6804,"u":"kite_lotgb","p":58,"h":1,"n":"Kite"},{"c":2,"s":7,"id":6805,"u":"kraken's%20guard_lotgb","p":38,"h":1,"n":"Kraken's Guard"},{"c":2,"s":7,"id":6806,"u":"lady's%20knife_lotgb","p":110,"h":1,"n":"Lady's Knife"},{"c":2,"s":7,"id":6807,"u":"maestro's%20chair_lotgb","p":70,"h":1,"n":"Maestro's Chair"},{"c":2,"s":7,"id":6808,"u":"magical%20hearing%20aids_lotgb","p":68,"h":1,"n":"Magical Hearing Aids"},{"c":2,"s":7,"id":6809,"u":"magnetic%20construction%20set_lotgb","p":58,"h":1,"n":"Magnetic Construction Set"},{"c":2,"s":7,"id":6810,"u":"magnifying%20glass%20of%20elucidation_lotgb","p":110,"h":1,"n":"Magnifying Glass Of Elucidation"},{"c":2,"s":7,"id":6811,"u":"malleable%20mixture%20(generic)_lotgb","p":19,"h":1,"n":"Malleable Mixture"},{"c":2,"s":7,"id":6812,"u":"marbles_lotgb","p":58,"h":1,"n":"Marbles"},{"c":2,"s":7,"id":6813,"u":"mask%20(generic)_lotgb","p":92,"h":1,"n":"Mask"},{"c":2,"s":7,"id":6814,"u":"memory%20palace_lotgb","p":80,"h":1,"n":"Memory Palace"},{"c":2,"s":7,"id":6815,"u":"minotaur%20chair_lotgb","p":71,"h":1,"n":"Minotaur Chair"},{"c":2,"s":7,"id":6816,"u":"mirror%20of%20sleeping%20vigil_lotgb","p":111,"h":1,"n":"Mirror Of Sleeping Vigil"},{"c":2,"s":7,"id":6817,"u":"mirror%20robe_lotgb","p":50,"h":1,"n":"Mirror Robe"},{"c":2,"s":7,"id":6818,"u":"mirror-ball%20snare_lotgb","p":26,"h":1,"n":"Mirror-ball Snare"},{"c":2,"s":7,"id":6819,"u":"misdirecting%20haversack_lotgb","p":10,"h":1,"n":"Misdirecting Haversack"},{"c":2,"s":7,"id":6820,"u":"mudrock%20snare_lotgb","p":15,"h":1,"n":"Mudrock Snare"},{"c":2,"s":7,"id":6821,"u":"noqual%20(generic)_lotgb","p":99,"h":1,"n":"Noqual"},{"c":2,"s":7,"id":6822,"u":"noqual%20armor%20(generic)_lotgb","p":100,"h":1,"n":"Noqual Armor"},{"c":2,"s":7,"id":6823,"u":"noqual%20shield%20(generic)_lotgb","p":100,"h":1,"n":"Noqual Shield"},{"c":2,"s":7,"id":6824,"u":"noqual%20weapon%20(generic)_lotgb","p":100,"h":1,"n":"Noqual Weapon"},{"c":2,"s":7,"id":6825,"u":"paint%20set_lotgb","p":59,"h":1,"n":"Paint Set"},{"c":2,"s":7,"id":6826,"u":"paired%20(generic)_lotgb","p":88,"h":1,"n":"Paired"},{"c":2,"s":7,"id":6827,"u":"periscopic%20viewfinder_lotgb","p":22,"h":1,"n":"Periscopic Viewfinder"},{"c":2,"s":7,"id":6828,"u":"pickpocket's%20tailoring_lotgb","p":50,"h":1,"n":"Pickpocket's Tailoring"},{"c":2,"s":7,"id":6829,"u":"pillow%20shield_lotgb","p":42,"h":1,"n":"Pillow Shield"},{"c":2,"s":7,"id":6830,"u":"pinwheel_lotgb","p":59,"h":1,"n":"Pinwheel"},{"c":2,"s":7,"id":6831,"u":"pocket%20gala_lotgb","p":84,"h":1,"n":"Pocket Gala"},{"c":2,"s":7,"id":6832,"u":"popdust_lotgb","p":59,"h":1,"n":"Popdust"},{"c":2,"s":7,"id":6833,"u":"portable%20gaming%20hall_lotgb","p":26,"h":1,"n":"Portable Gaming Hall"},{"c":2,"s":7,"id":6834,"u":"portable%20ram%20(generic)_lotgb","p":92,"h":1,"n":"Portable Ram"},{"c":2,"s":7,"id":6835,"u":"powder_lotgb","p":92,"h":1,"n":"Powder"},{"c":2,"s":7,"id":6836,"u":"presentable%20(generic)_lotgb","p":89,"h":1,"n":"Presentable"},{"c":2,"s":7,"id":6837,"u":"prismatic%20plate_lotgb","p":85,"h":1,"n":"Prismatic Plate"},{"c":2,"s":7,"id":6838,"u":"private%20workshop_lotgb","p":30,"h":1,"n":"Private Workshop"},{"c":2,"s":7,"id":6839,"u":"probing%20cane_lotgb","p":67,"h":1,"n":"Probing Cane"},{"c":2,"s":7,"id":6840,"u":"psychic%20brigandine_lotgb","p":42,"h":1,"n":"Psychic Brigandine"},{"c":2,"s":7,"id":6841,"u":"pummeling%20snare_lotgb","p":43,"h":1,"n":"Pummeling Snare"},{"c":2,"s":7,"id":6842,"u":"puzzle%20box%20(generic)_lotgb","p":59,"h":1,"n":"Puzzle Box"},{"c":2,"s":7,"id":6843,"u":"queasy%20lantern%20(generic)_lotgb","p":39,"h":1,"n":"Queasy Lantern"},{"c":2,"s":7,"id":6844,"u":"quick%20runner's%20shirt%20(generic)_lotgb","p":43,"h":1,"n":"Quick Runner's Shirt"},{"c":2,"s":7,"id":6845,"u":"quick%20wig_lotgb","p":50,"h":1,"n":"Quick Wig"},{"c":2,"s":7,"id":6846,"u":"raining%20knives%20snare_lotgb","p":43,"h":1,"n":"Raining Knives Snare"},{"c":2,"s":7,"id":6847,"u":"rampart%20shield_lotgb","p":30,"h":1,"n":"Rampart Shield"},{"c":2,"s":7,"id":6848,"u":"reading%20ring%20(generic)_lotgb","p":69,"h":1,"n":"Reading Ring"},{"c":2,"s":7,"id":6849,"u":"recovery%20bladder_lotgb","p":19,"h":1,"n":"Recovery Bladder"},{"c":2,"s":7,"id":6850,"u":"reflexive%20tattoo_lotgb","p":38,"h":1,"n":"Reflexive Tattoo"},{"c":2,"s":7,"id":6851,"u":"reinforced%20surcoat_lotgb","p":104,"h":1,"n":"Reinforced Surcoat"},{"c":2,"s":7,"id":6852,"u":"reinforced%20wheels_lotgb","p":72,"h":1,"n":"Reinforced Wheels"},{"c":2,"s":7,"id":6853,"u":"rending%20snare_lotgb","p":15,"h":1,"n":"Rending Snare"},{"c":2,"s":7,"id":6854,"u":"rhino%20shot_lotgb","p":30,"h":1,"n":"Rhino Shot"},{"c":2,"s":7,"id":6855,"u":"rock%20ripper%20snare_lotgb","p":43,"h":1,"n":"Rock Ripper Snare"},{"c":2,"s":7,"id":6856,"u":"sarkorian%20god-caller%20garb_lotgb","p":80,"h":1,"n":"Sarkorian God-caller Garb"},{"c":2,"s":7,"id":6857,"u":"scarab%20cuirass_lotgb","p":10,"h":1,"n":"Scarab Cuirass"},{"c":2,"s":7,"id":6858,"u":"server's%20stew_lotgb","p":47,"h":1,"n":"Server's Stew"},{"c":2,"s":7,"id":6859,"u":"shade%20hat_lotgb","p":51,"h":1,"n":"Shade Hat"},{"c":2,"s":7,"id":6860,"u":"shield%20augmentation_lotgb","p":104,"h":1,"n":"Shield Augmentation"},{"c":2,"s":7,"id":6861,"u":"shifter%20prosthesis_lotgb","p":73,"h":1,"n":"Shifter Prosthesis"},{"c":2,"s":7,"id":6862,"u":"siccatite%20(generic)_lotgb","p":100,"h":1,"n":"Siccatite"},{"c":2,"s":7,"id":6863,"u":"siccatite%20armor%20(generic)_lotgb","p":100,"h":1,"n":"Siccatite Armor"},{"c":2,"s":7,"id":6864,"u":"siccatite%20shield%20(generic)_lotgb","p":101,"h":1,"n":"Siccatite Shield"},{"c":2,"s":7,"id":6865,"u":"siccatite%20weapon%20(generic)_lotgb","p":101,"h":1,"n":"Siccatite Weapon"},{"c":2,"s":7,"id":6866,"u":"silencing%20ammunition_lotgb","p":10,"h":1,"n":"Silencing Ammunition"},{"c":2,"s":7,"id":6867,"u":"silhouette%20cloak_lotgb","p":43,"h":1,"n":"Silhouette Cloak"},{"c":2,"s":7,"id":6868,"u":"silkspinner's%20shield_lotgb","p":11,"h":1,"n":"Silkspinner's Shield"},{"c":2,"s":7,"id":6869,"u":"singularity%20ammunition_lotgb","p":43,"h":1,"n":"Singularity Ammunition"},{"c":2,"s":7,"id":6870,"u":"sky%20serpent%20bolt_lotgb","p":81,"h":1,"n":"Sky Serpent Bolt"},{"c":2,"s":7,"id":6871,"u":"skyrider%20sword%20(generic)_lotgb","p":106,"h":1,"n":"Skyrider Sword"},{"c":2,"s":7,"id":6872,"u":"smoked%20goggles_lotgb","p":92,"h":1,"n":"Smoked Goggles"},{"c":2,"s":7,"id":6873,"u":"snagging_lotgb","p":89,"h":1,"n":"Snagging"},{"c":2,"s":7,"id":6874,"u":"sneezing%20powder_lotgb","p":59,"h":1,"n":"Sneezing Powder"},{"c":2,"s":7,"id":6875,"u":"soft-landing_lotgb","p":89,"h":1,"n":"Soft-landing"},{"c":2,"s":7,"id":6876,"u":"spell-bastion_lotgb","p":89,"h":1,"n":"Spell-bastion"},{"c":2,"s":7,"id":6877,"u":"splint_lotgb","p":69,"h":1,"n":"Splint"},{"c":2,"s":7,"id":6878,"u":"spring-loaded%20net%20launcher_lotgb","p":23,"h":1,"n":"Spring-loaded Net Launcher"},{"c":2,"s":7,"id":6879,"u":"staff%20of%20final%20rest_lotgb","p":30,"h":1,"n":"Staff Of Final Rest"},{"c":2,"s":7,"id":6880,"u":"staff%20of%20the%20dreamlands%20(generic)_lotgb","p":111,"h":1,"n":"Staff Of The Dreamlands"},{"c":2,"s":7,"id":6881,"u":"stanching%20(generic)_lotgb","p":39,"h":1,"n":"Stanching"},{"c":2,"s":7,"id":6882,"u":"static%20snare_lotgb","p":43,"h":1,"n":"Static Snare"},{"c":2,"s":7,"id":6883,"u":"stone%20circle%20(generic)_lotgb","p":39,"h":1,"n":"Stone Circle"},{"c":2,"s":7,"id":6884,"u":"stonethroat%20ammunition_lotgb","p":11,"h":1,"n":"Stonethroat Ammunition"},{"c":2,"s":7,"id":6885,"u":"sulfur%20bomb%20(generic)_lotgb","p":15,"h":1,"n":"Sulfur Bomb"},{"c":2,"s":7,"id":6886,"u":"support_lotgb","p":69,"h":1,"n":"Support"},{"c":2,"s":7,"id":6887,"u":"swarmform%20collar_lotgb","p":55,"h":1,"n":"Swarmform Collar"},{"c":2,"s":7,"id":6888,"u":"swarmsuit%20(generic)_lotgb","p":93,"h":1,"n":"Swarmsuit"},{"c":2,"s":7,"id":6889,"u":"tar%20rocket%20snare_lotgb","p":27,"h":1,"n":"Tar Rocket Snare"},{"c":2,"s":7,"id":6890,"u":"tear-away%20clothing_lotgb","p":93,"h":1,"n":"Tear-away Clothing"},{"c":2,"s":7,"id":6891,"u":"thrice-fried%20mudwings_lotgb","p":47,"h":1,"n":"Thrice-fried Mudwings"},{"c":2,"s":7,"id":6892,"u":"toadskin%20salve%20(generic)_lotgb","p":27,"h":1,"n":"Toadskin Salve"},{"c":2,"s":7,"id":6893,"u":"toy%20carriage%20(generic)_lotgb","p":59,"h":1,"n":"Toy Carriage"},{"c":2,"s":7,"id":6894,"u":"transposition%20ammunition%20(generic)_lotgb","p":31,"h":1,"n":"Transposition Ammunition"},{"c":2,"s":7,"id":6895,"u":"twining%20chains_lotgb","p":104,"h":1,"n":"Twining Chains"},{"c":2,"s":7,"id":6896,"u":"vampiric%20scythe_lotgb","p":31,"h":1,"n":"Vampiric Scythe"},{"c":2,"s":7,"id":6897,"u":"vexing%20vapor%20(generic)_lotgb","p":27,"h":1,"n":"Vexing Vapor"},{"c":2,"s":7,"id":6898,"u":"vine%20of%20roses_lotgb","p":85,"h":1,"n":"Vine Of Roses"},{"c":2,"s":7,"id":6899,"u":"waffle%20iron%20(generic)_lotgb","p":93,"h":1,"n":"Waffle Iron"},{"c":2,"s":7,"id":6900,"u":"wand%20of%20fey%20flames_lotgb","p":81,"h":1,"n":"Wand Of Fey Flames"},{"c":2,"s":7,"id":6901,"u":"wand%20of%20spiritual%20warfare%20(generic)_lotgb","p":11,"h":1,"n":"Wand Of Spiritual Warfare"},{"c":2,"s":7,"id":6902,"u":"wand%20of%20thundering%20echoes%20(generic)_lotgb","p":85,"h":1,"n":"Wand Of Thundering Echoes"},{"c":2,"s":7,"id":6903,"u":"wardrobe%20stone%20(generic)_lotgb","p":51,"h":1,"n":"Wardrobe Stone"},{"c":2,"s":7,"id":6904,"u":"waverider%20barding_lotgb","p":55,"h":1,"n":"Waverider Barding"},{"c":2,"s":7,"id":6905,"u":"wet%20shock%20snare_lotgb","p":27,"h":1,"n":"Wet Shock Snare"},{"c":2,"s":7,"id":6906,"u":"wheel%20blades_lotgb","p":72,"h":1,"n":"Wheel Blades"},{"c":2,"s":7,"id":6907,"u":"wheel%20spikes_lotgb","p":72,"h":1,"n":"Wheel Spikes"},{"c":2,"s":7,"id":6908,"u":"wheelbarrow_lotgb","p":93,"h":1,"n":"Wheelbarrow"},{"c":2,"s":7,"id":6909,"u":"wig%20of%20holding_lotgb","p":51,"h":1,"n":"Wig Of Holding"},{"c":2,"s":7,"id":6910,"u":"wind-catcher%20(generic)_lotgb","p":89,"h":1,"n":"Wind-catcher"},{"c":2,"s":7,"id":6911,"u":"wizard's%20tower_lotgb","p":19,"h":1,"n":"Wizard's Tower"},{"c":2,"s":7,"id":6912,"u":"wovenwood%20shield%20(generic)_lotgb","p":81,"h":1,"n":"Wovenwood Shield"},{"c":2,"s":48,"id":6913,"u":"archaic%20wayfinder_lowg","p":17,"h":1,"n":"Archaic Wayfinder"},{"c":2,"s":48,"id":6914,"u":"blessed%20tattoo_lowg","p":92,"h":1,"n":"Blessed Tattoo"},{"c":2,"s":48,"id":6915,"u":"final%20blade_lowg","p":126,"h":1,"n":"Final Blade"},{"c":2,"s":48,"id":6916,"u":"golden%20legion%20epaulet_lowg","p":124,"h":1,"n":"Golden Legion Epaulet"},{"c":2,"s":48,"id":6917,"u":"jellyfish%20lamp_lowg","p":68,"h":1,"n":"Jellyfish Lamp"},{"c":2,"s":48,"id":6918,"u":"sun%20orchid%20elixir_lowg","p":56,"h":1,"n":"Sun Orchid Elixir"},{"c":2,"s":48,"id":6919,"u":"swim%20fins_lowg","p":69,"h":1,"n":"Swim Fins"},{"c":2,"s":37,"id":6920,"u":"granny's%20hedge%20trimmer_ltiba","p":10,"h":1,"n":"Granny's Hedge Trimmer"},{"c":2,"s":38,"id":6921,"u":"flaying%20knife_sli","p":60,"h":1,"n":"Flaying Knife"},{"c":2,"s":38,"id":6922,"u":"gluttonous%20spear_sli","p":60,"h":1,"n":"Gluttonous Spear"},{"c":2,"s":38,"id":6923,"u":"oily%20button_sli","p":60,"h":1,"n":"Oily Button"},{"c":2,"s":38,"id":6924,"u":"putrescent%20glob_sli","p":61,"h":1,"n":"Putrescent Glob"},{"c":2,"s":38,"id":6925,"u":"sixfingers%20elixir%20(generic)_sli","p":61,"h":1,"n":"Sixfingers Elixir"},{"c":2,"s":38,"id":6926,"u":"slime%20whip_sli","p":61,"h":1,"n":"Slime Whip"},{"c":2,"s":38,"id":6927,"u":"slippery%20ribbon_sli","p":61,"h":1,"n":"Slippery Ribbon"},{"c":2,"s":38,"id":6928,"u":"wand%20of%20noisome%20acid%20(generic)_sli","p":61,"h":1,"n":"Wand Of Noisome Acid"},{"c":2,"s":38,"id":6929,"u":"wand%20of%20teeming%20ghosts%20(generic)_sli","p":61,"h":1,"n":"Wand Of Teeming Ghosts"},{"c":2,"s":49,"id":6930,"u":"anointed%20waterskin_som","p":179,"h":1,"n":"Anointed Waterskin"},{"c":2,"s":49,"id":6931,"u":"apotropaic%20fulu_som","p":159,"h":1,"n":"Apotropaic Fulu"},{"c":2,"s":49,"id":6932,"u":"archivist's%20gaze_som","p":179,"h":1,"n":"Archivist's Gaze"},{"c":2,"s":49,"id":6933,"u":"auspicious%20scepter_som","p":179,"h":1,"n":"Auspicious Scepter"},{"c":2,"s":49,"id":6934,"u":"backfire%20mantle%20(generic)_som","p":179,"h":1,"n":"Backfire Mantle"},{"c":2,"s":49,"id":6935,"u":"bane_som","p":180,"h":1,"n":"Bane"},{"c":2,"s":49,"id":6936,"u":"bestiary%20of%20metamorphosis_som","p":162,"h":1,"n":"Bestiary Of Metamorphosis"},{"c":2,"s":49,"id":6937,"u":"binding%20coil%20(generic)_som","p":173,"h":1,"n":"Binding Coil"},{"c":2,"s":49,"id":6938,"u":"blade%20of%20four%20energies%20(generic)_som","p":180,"h":1,"n":"Blade Of Four Energies"},{"c":2,"s":49,"id":6939,"u":"book%20of%20lingering%20blaze_som","p":162,"h":1,"n":"Book Of Lingering Blaze"},{"c":2,"s":49,"id":6940,"u":"brilliant%20(generic)_som","p":180,"h":1,"n":"Brilliant"},{"c":2,"s":49,"id":6941,"u":"burr%20shield_som","p":181,"h":1,"n":"Burr Shield"},{"c":2,"s":49,"id":6942,"u":"buzzsaw%20axe%20(generic)_som","p":181,"h":1,"n":"Buzzsaw Axe"},{"c":2,"s":49,"id":6943,"u":"cantrip%20deck%20(generic)_som","p":181,"h":1,"n":"Cantrip Deck"},{"c":2,"s":49,"id":6944,"u":"chatterer%20of%20follies_som","p":181,"h":1,"n":"Chatterer Of Follies"},{"c":2,"s":49,"id":6945,"u":"cloak%20of%20feline%20rest_som","p":182,"h":1,"n":"Cloak Of Feline Rest"},{"c":2,"s":49,"id":6946,"u":"codebreaker's%20parchment%20(generic)_som","p":182,"h":1,"n":"Codebreaker's Parchment"},{"c":2,"s":49,"id":6947,"u":"codex%20of%20unimpeded%20sight%20(generic)_som","p":162,"h":1,"n":"Codex Of Unimpeded Sight"},{"c":2,"s":49,"id":6948,"u":"collar%20of%20the%20eternal%20bond_som","p":182,"h":1,"n":"Collar Of The Eternal Bond"},{"c":2,"s":49,"id":6949,"u":"conflagration%20club_som","p":182,"h":1,"n":"Conflagration Club"},{"c":2,"s":49,"id":6950,"u":"dazzling%20rosary%20(generic)_som","p":168,"h":1,"n":"Dazzling Rosary"},{"c":2,"s":49,"id":6951,"u":"deck%20of%20illusions_som","p":182,"h":1,"n":"Deck Of Illusions"},{"c":2,"s":49,"id":6952,"u":"deck%20of%20mischief_som","p":183,"h":1,"n":"Deck Of Mischief"},{"c":2,"s":49,"id":6953,"u":"detect%20anathema%20fulu_som","p":159,"h":1,"n":"Detect Anathema Fulu"},{"c":2,"s":49,"id":6954,"u":"dimensional%20knot_som","p":168,"h":1,"n":"Dimensional Knot"},{"c":2,"s":49,"id":6955,"u":"dispersing%20bullet_som","p":173,"h":1,"n":"Dispersing Bullet"},{"c":2,"s":49,"id":6956,"u":"dragonbone%20arrowhead_som","p":173,"h":1,"n":"Dragonbone Arrowhead"},{"c":2,"s":49,"id":6957,"u":"emberheart_som","p":184,"h":1,"n":"Emberheart"},{"c":2,"s":49,"id":6958,"u":"endless%20grimoire%20(generic)_som","p":162,"h":1,"n":"Endless Grimoire"},{"c":2,"s":49,"id":6959,"u":"extending%20(generic)_som","p":184,"h":1,"n":"Extending"},{"c":2,"s":49,"id":6960,"u":"eye%20of%20enlightenment_som","p":173,"h":1,"n":"Eye Of Enlightenment"},{"c":2,"s":49,"id":6961,"u":"familiar%20tattoo_som","p":164,"h":1,"n":"Familiar Tattoo"},{"c":2,"s":49,"id":6962,"u":"firestarter%20pellets%20(generic)_som","p":168,"h":1,"n":"Firestarter Pellets"},{"c":2,"s":49,"id":6963,"u":"five-feather%20wreath%20(generic)_som","p":170,"h":1,"n":"Five-feather Wreath"},{"c":2,"s":49,"id":6964,"u":"flaming%20star%20(generic)_som","p":170,"h":1,"n":"Flaming Star"},{"c":2,"s":49,"id":6965,"u":"flask%20of%20fellowship_som","p":184,"h":1,"n":"Flask Of Fellowship"},{"c":2,"s":49,"id":6966,"u":"force%20tiles_som","p":168,"h":1,"n":"Force Tiles"},{"c":2,"s":49,"id":6967,"u":"fu%20water_som","p":161,"h":1,"n":"Fu Water"},{"c":2,"s":49,"id":6968,"u":"fulu%20compendium_som","p":161,"h":1,"n":"Fulu Compendium"},{"c":2,"s":49,"id":6969,"u":"fulu%20of%20fire%20suppression_som","p":159,"h":1,"n":"Fulu Of Fire Suppression"},{"c":2,"s":49,"id":6970,"u":"fulu%20of%20flood%20suppression_som","p":159,"h":1,"n":"Fulu Of Flood Suppression"},{"c":2,"s":49,"id":6971,"u":"fulu%20of%20the%20drunken%20monkey_som","p":159,"h":1,"n":"Fulu Of The Drunken Monkey"},{"c":2,"s":49,"id":6972,"u":"fulu%20of%20the%20stoic%20ox_som","p":159,"h":1,"n":"Fulu Of The Stoic Ox"},{"c":2,"s":49,"id":6973,"u":"fulus%20of%20concealment_som","p":159,"h":1,"n":"Fulus Of Concealment"},{"c":2,"s":49,"id":6974,"u":"ghostbane%20fulu_som","p":160,"h":1,"n":"Ghostbane Fulu"},{"c":2,"s":49,"id":6975,"u":"ghostly%20portal%20paint_som","p":173,"h":1,"n":"Ghostly Portal Paint"},{"c":2,"s":49,"id":6976,"u":"glasses%20of%20sociability_som","p":185,"h":1,"n":"Glasses Of Sociability"},{"c":2,"s":49,"id":6977,"u":"gloaming%20shard_som","p":185,"h":1,"n":"Gloaming Shard"},{"c":2,"s":49,"id":6978,"u":"golden%20chrysalis_som","p":174,"h":1,"n":"Golden Chrysalis"},{"c":2,"s":49,"id":6979,"u":"grim%20sandglass%20(generic)_som","p":171,"h":1,"n":"Grim Sandglass"},{"c":2,"s":49,"id":6980,"u":"guiding%20star_som","p":185,"h":1,"n":"Guiding Star"},{"c":2,"s":49,"id":6981,"u":"hat%20of%20many%20minds_som","p":185,"h":1,"n":"Hat Of Many Minds"},{"c":2,"s":49,"id":6982,"u":"healer's%20gel%20(generic)_som","p":168,"h":1,"n":"Healer's Gel"},{"c":2,"s":49,"id":6983,"u":"hundred-moth%20caress_som","p":185,"h":1,"n":"Hundred-moth Caress"},{"c":2,"s":49,"id":6984,"u":"impactful%20(generic)_som","p":185,"h":1,"n":"Impactful"},{"c":2,"s":49,"id":6985,"u":"instructions%20for%20lasting%20agony_som","p":163,"h":1,"n":"Instructions For Lasting Agony"},{"c":2,"s":49,"id":6986,"u":"invisible%20chain%20shirt_som","p":186,"h":1,"n":"Invisible Chain Shirt"},{"c":2,"s":49,"id":6987,"u":"jar%20of%20shifting%20sands_som","p":186,"h":1,"n":"Jar Of Shifting Sands"},{"c":2,"s":49,"id":6988,"u":"keymaking%20tools_som","p":186,"h":1,"n":"Keymaking Tools"},{"c":2,"s":49,"id":6989,"u":"lini's%20leafstick_som","p":167,"h":1,"n":"Lini's Leafstick"},{"c":2,"s":49,"id":6990,"u":"lion%20claw_som","p":174,"h":1,"n":"Lion Claw"},{"c":2,"s":49,"id":6991,"u":"magical%20lock%20fulu_som","p":160,"h":1,"n":"Magical Lock Fulu"},{"c":2,"s":49,"id":6992,"u":"mask%20of%20allure_som","p":186,"h":1,"n":"Mask Of Allure"},{"c":2,"s":49,"id":6993,"u":"matchmaker%20fulu_som","p":160,"h":1,"n":"Matchmaker Fulu"},{"c":2,"s":49,"id":6994,"u":"mercurial%20mantle_som","p":187,"h":1,"n":"Mercurial Mantle"},{"c":2,"s":49,"id":6995,"u":"north%20wind's%20night%20verse_som","p":187,"h":1,"n":"North Wind's Night Verse"},{"c":2,"s":49,"id":6996,"u":"noxious%20incense%20(generic)_som","p":169,"h":1,"n":"Noxious Incense"},{"c":2,"s":49,"id":6997,"u":"orchestral%20brooch_som","p":174,"h":1,"n":"Orchestral Brooch"},{"c":2,"s":49,"id":6998,"u":"ouroboros%20flail%20(generic)_som","p":187,"h":1,"n":"Ouroboros Flail"},{"c":2,"s":49,"id":6999,"u":"perfect%20droplet%20(generic)_som","p":171,"h":1,"n":"Perfect Droplet"},{"c":2,"s":49,"id":7000,"u":"phoenix%20flask_som","p":174,"h":1,"n":"Phoenix Flask"},{"c":2,"s":49,"id":7001,"u":"potion%20of%20grounding_som","p":174,"h":1,"n":"Potion Of Grounding"},{"c":2,"s":49,"id":7002,"u":"potion%20of%20minute%20echoes_som","p":175,"h":1,"n":"Potion Of Minute Echoes"},{"c":2,"s":49,"id":7003,"u":"potion%20of%20shared%20life_som","p":175,"h":1,"n":"Potion Of Shared Life"},{"c":2,"s":49,"id":7004,"u":"potion%20of%20stable%20form%20(generic)_som","p":175,"h":1,"n":"Potion Of Stable Form"},{"c":2,"s":49,"id":7005,"u":"rebound%20fulu_som","p":160,"h":1,"n":"Rebound Fulu"},{"c":2,"s":49,"id":7006,"u":"rebounding%20breastplate_som","p":188,"h":1,"n":"Rebounding Breastplate"},{"c":2,"s":49,"id":7007,"u":"resonating%20ammunition_som","p":175,"h":1,"n":"Resonating Ammunition"},{"c":2,"s":49,"id":7008,"u":"restful%20sleep%20fulu_som","p":160,"h":1,"n":"Restful Sleep Fulu"},{"c":2,"s":49,"id":7009,"u":"restful%20tent_som","p":188,"h":1,"n":"Restful Tent"},{"c":2,"s":49,"id":7010,"u":"retrieval%20prism%20(generic)_som","p":176,"h":1,"n":"Retrieval Prism"},{"c":2,"s":49,"id":7011,"u":"rune%20of%20sin_som","p":165,"h":1,"n":"Rune Of Sin"},{"c":2,"s":49,"id":7012,"u":"s%20ring_som","p":190,"h":1,"n":"S Ring"},{"c":2,"s":49,"id":7013,"u":"sage's%20lash_som","p":189,"h":1,"n":"Sage's Lash"},{"c":2,"s":49,"id":7014,"u":"shadow%20signet_som","p":189,"h":1,"n":"Shadow Signet"},{"c":2,"s":49,"id":7015,"u":"shimmering%20dust_som","p":169,"h":1,"n":"Shimmering Dust"},{"c":2,"s":49,"id":7016,"u":"shortbread%20spy_som","p":176,"h":1,"n":"Shortbread Spy"},{"c":2,"s":49,"id":7017,"u":"singing%20shortbow%20(generic)_som","p":189,"h":1,"n":"Singing Shortbow"},{"c":2,"s":49,"id":7018,"u":"sonic%20tuning%20mace%20(generic)_som","p":189,"h":1,"n":"Sonic Tuning Mace"},{"c":2,"s":49,"id":7019,"u":"soothing%20scents_som","p":169,"h":1,"n":"Soothing Scents"},{"c":2,"s":49,"id":7020,"u":"south%20wind's%20scorch%20song_som","p":190,"h":1,"n":"South Wind's Scorch Song"},{"c":2,"s":49,"id":7021,"u":"spellbook%20of%20redundant%20enchantment_som","p":163,"h":1,"n":"Spellbook Of Redundant Enchantment"},{"c":2,"s":49,"id":7022,"u":"spirit-sealing%20fulu%20(generic)_som","p":160,"h":1,"n":"Spirit-sealing Fulu"},{"c":2,"s":49,"id":7023,"u":"staff%20of%20nature's%20cunning%20(generic)_som","p":167,"h":1,"n":"Staff Of Nature's Cunning"},{"c":2,"s":49,"id":7024,"u":"staff%20of%20the%20desert%20winds%20(generic)_som","p":190,"h":1,"n":"Staff Of The Desert Winds"},{"c":2,"s":49,"id":7025,"u":"staff-storing%20shield%20(generic)_som","p":190,"h":1,"n":"Staff-storing Shield"},{"c":2,"s":49,"id":7026,"u":"stampede%20medallion%20(generic)_som","p":190,"h":1,"n":"Stampede Medallion"},{"c":2,"s":49,"id":7027,"u":"stormbreaker%20fulu_som","p":161,"h":1,"n":"Stormbreaker Fulu"},{"c":2,"s":49,"id":7028,"u":"stormfeather_som","p":176,"h":1,"n":"Stormfeather"},{"c":2,"s":49,"id":7029,"u":"storyteller's%20opus_som","p":163,"h":1,"n":"Storyteller's Opus"},{"c":2,"s":49,"id":7030,"u":"summoning%20handscroll_som","p":163,"h":1,"n":"Summoning Handscroll"},{"c":2,"s":49,"id":7031,"u":"thousand-blade%20thesis_som","p":191,"h":1,"n":"Thousand-blade Thesis"},{"c":2,"s":49,"id":7032,"u":"thunderbird%20tuft%20(generic)_som","p":169,"h":1,"n":"Thunderbird Tuft"},{"c":2,"s":49,"id":7033,"u":"titan's%20grasp_som","p":191,"h":1,"n":"Titan's Grasp"},{"c":2,"s":49,"id":7034,"u":"topology%20protoplasm_som","p":176,"h":1,"n":"Topology Protoplasm"},{"c":2,"s":49,"id":7035,"u":"tracking%20fulu_som","p":161,"h":1,"n":"Tracking Fulu"},{"c":2,"s":49,"id":7036,"u":"trinity%20geode%20(generic)_som","p":171,"h":1,"n":"Trinity Geode"},{"c":2,"s":49,"id":7037,"u":"true%20name%20amulet%20(generic)_som","p":247,"h":1,"n":"True Name Amulet"},{"c":2,"s":49,"id":7038,"u":"vapor%20sphere_som","p":176,"h":1,"n":"Vapor Sphere"},{"c":2,"s":49,"id":7039,"u":"venomous%20cure%20fulu_som","p":161,"h":1,"n":"Venomous Cure Fulu"},{"c":2,"s":49,"id":7040,"u":"warding%20tablets_som","p":163,"h":1,"n":"Warding Tablets"},{"c":2,"s":49,"id":7041,"u":"warding%20tattoo%20(generic)_som","p":165,"h":1,"n":"Warding Tattoo"},{"c":2,"s":49,"id":7042,"u":"waterproofing%20wax_som","p":169,"h":1,"n":"Waterproofing Wax"},{"c":2,"s":39,"id":7043,"u":"forgetful%20ink_sot1","p":75,"h":1,"n":"Forgetful Ink"},{"c":2,"s":39,"id":7044,"u":"goz%20mask%20(generic)_sot1","p":73,"h":1,"n":"Goz Mask"},{"c":2,"s":39,"id":7045,"u":"herd%20mask_sot1","p":73,"h":1,"n":"Herd Mask"},{"c":2,"s":39,"id":7046,"u":"mask%20of%20mercy_sot1","p":74,"h":1,"n":"Mask Of Mercy"},{"c":2,"s":39,"id":7047,"u":"mask%20of%20the%20cursed%20eye_sot1","p":74,"h":1,"n":"Mask Of The Cursed Eye"},{"c":2,"s":39,"id":7048,"u":"psychopomp%20mask_sot1","p":74,"h":1,"n":"Psychopomp Mask"},{"c":2,"s":39,"id":7049,"u":"rhinoceros%20mask%20(generic)_sot1","p":74,"h":1,"n":"Rhinoceros Mask"},{"c":2,"s":39,"id":7050,"u":"rhythm%20bone%20(generic)_sot1","p":76,"h":1,"n":"Rhythm Bone"},{"c":2,"s":39,"id":7051,"u":"shapespeak%20mask_sot1","p":74,"h":1,"n":"Shapespeak Mask"},{"c":2,"s":39,"id":7052,"u":"skittering%20mask%20(generic)_sot1","p":74,"h":1,"n":"Skittering Mask"},{"c":2,"s":39,"id":7053,"u":"tlil%20mask%20(generic)_sot1","p":75,"h":1,"n":"Tlil Mask"},{"c":2,"s":40,"id":7054,"u":"bag%20of%20cats_sot2","p":75,"h":1,"n":"Bag Of Cats"},{"c":2,"s":40,"id":7055,"u":"crown%20of%20the%20companion_sot2","p":75,"h":1,"n":"Crown Of The Companion"},{"c":2,"s":40,"id":7056,"u":"fulminating%20spear_sot2","p":76,"h":1,"n":"Fulminating Spear"},{"c":2,"s":40,"id":7057,"u":"habu's%20cudgel_sot2","p":76,"h":1,"n":"Habu's Cudgel"},{"c":2,"s":40,"id":7058,"u":"leopard's%20armor_sot2","p":76,"h":1,"n":"Leopard's Armor"},{"c":2,"s":40,"id":7059,"u":"rhino%20hide%20brooch_sot2","p":76,"h":1,"n":"Rhino Hide Brooch"},{"c":2,"s":40,"id":7060,"u":"singing%20muse_sot2","p":76,"h":1,"n":"Singing Muse"},{"c":2,"s":40,"id":7061,"u":"spellender_sot2","p":76,"h":1,"n":"Spellender"},{"c":2,"s":40,"id":7062,"u":"warcaller's%20chime%20(generic)_sot2","p":77,"h":1,"n":"Warcaller's Chime"},{"c":2,"s":40,"id":7063,"u":"wondrous%20figurines%20(generic)_sot2","p":77,"h":1,"n":"Wondrous Figurines"},{"c":2,"s":41,"id":7064,"u":"antivenom%20potion_tio","p":60,"h":1,"n":"Antivenom Potion"},{"c":2,"s":41,"id":7065,"u":"capsaicin%20tonic_tio","p":60,"h":1,"n":"Capsaicin Tonic"},{"c":2,"s":41,"id":7066,"u":"sparkblade_tio","p":60,"h":1,"n":"Sparkblade"},{"c":2,"s":41,"id":7067,"u":"sun%20wheel_tio","p":60,"h":1,"n":"Sun Wheel"},{"c":3,"s":4,"id":7068,"u":"access%20lore_apg","p":229,"h":1,"n":"Access Lore"},{"c":3,"s":4,"id":7069,"u":"agonizing%20despair_apg","p":214,"h":1,"n":"Agonizing Despair"},{"c":3,"s":4,"id":7070,"u":"ancestral%20defense_apg","p":230,"h":1,"n":"Ancestral Defense"},{"c":3,"s":4,"id":7071,"u":"ancestral%20form_apg","p":230,"h":1,"n":"Ancestral Form"},{"c":3,"s":4,"id":7072,"u":"ancestral%20touch_apg","p":230,"h":1,"n":"Ancestral Touch"},{"c":3,"s":4,"id":7073,"u":"animal%20feature_apg","p":234,"h":1,"n":"Animal Feature"},{"c":3,"s":4,"id":7074,"u":"animate%20dead_apg","p":214,"h":1,"n":"Animate Dead"},{"c":3,"s":4,"id":7075,"u":"animate%20rope_apg","p":214,"h":1,"n":"Animate Rope"},{"c":3,"s":4,"id":7076,"u":"animated%20assault_apg","p":214,"h":1,"n":"Animated Assault"},{"c":3,"s":4,"id":7077,"u":"aqueous%20orb_apg","p":214,"h":1,"n":"Aqueous Orb"},{"c":3,"s":4,"id":7078,"u":"armor%20of%20bones_apg","p":230,"h":1,"n":"Armor Of Bones"},{"c":3,"s":4,"id":7079,"u":"battlefield%20persistence_apg","p":230,"h":1,"n":"Battlefield Persistence"},{"c":3,"s":4,"id":7080,"u":"beastmaster%20trance_apg","p":161,"h":1,"n":"Beastmaster Trance"},{"c":3,"s":4,"id":7081,"u":"bestial%20curse_apg","p":215,"h":1,"n":"Bestial Curse"},{"c":3,"s":4,"id":7082,"u":"blanket%20of%20stars_apg","p":215,"h":1,"n":"Blanket Of Stars"},{"c":3,"s":4,"id":7083,"u":"blinding%20beauty_apg","p":235,"h":1,"n":"Blinding Beauty"},{"c":3,"s":4,"id":7084,"u":"blinding%20fury_apg","p":216,"h":1,"n":"Blinding Fury"},{"c":3,"s":4,"id":7085,"u":"blister_apg","p":216,"h":1,"n":"Blister"},{"c":3,"s":4,"id":7086,"u":"blistering%20invective_apg","p":216,"h":1,"n":"Blistering Invective"},{"c":3,"s":4,"id":7087,"u":"blood%20vendetta_apg","p":216,"h":1,"n":"Blood Vendetta"},{"c":3,"s":4,"id":7088,"u":"blood%20ward_apg","p":237,"h":1,"n":"Blood Ward"},{"c":3,"s":4,"id":7089,"u":"brain%20drain_apg","p":230,"h":1,"n":"Brain Drain"},{"c":3,"s":4,"id":7090,"u":"cackle_apg","p":237,"h":1,"n":"Cackle"},{"c":3,"s":4,"id":7091,"u":"call%20to%20arms_apg","p":230,"h":1,"n":"Call To Arms"},{"c":3,"s":4,"id":7092,"u":"chameleon%20coat_apg","p":216,"h":1,"n":"Chameleon Coat"},{"c":3,"s":4,"id":7093,"u":"charitable%20urge_apg","p":216,"h":1,"n":"Charitable Urge"},{"c":3,"s":4,"id":7094,"u":"chroma%20leach_apg","p":217,"h":1,"n":"Chroma Leach"},{"c":3,"s":4,"id":7095,"u":"claim%20undead_apg","p":230,"h":1,"n":"Claim Undead"},{"c":3,"s":4,"id":7096,"u":"clinging%20ice_apg","p":237,"h":1,"n":"Clinging Ice"},{"c":3,"s":4,"id":7097,"u":"clinging%20shadows%20stance_apg","p":229,"h":1,"n":"Clinging Shadows Stance"},{"c":3,"s":4,"id":7098,"u":"consuming%20darkness_apg","p":235,"h":1,"n":"Consuming Darkness"},{"c":3,"s":4,"id":7099,"u":"countless%20eyes_apg","p":217,"h":1,"n":"Countless Eyes"},{"c":3,"s":4,"id":7100,"u":"cozy%20cabin_apg","p":217,"h":1,"n":"Cozy Cabin"},{"c":3,"s":4,"id":7101,"u":"crashing%20wave_apg","p":217,"h":1,"n":"Crashing Wave"},{"c":3,"s":4,"id":7102,"u":"curse%20of%20death_apg","p":237,"h":1,"n":"Curse Of Death"},{"c":3,"s":4,"id":7103,"u":"curse%20of%20lost%20time_apg","p":217,"h":1,"n":"Curse Of Lost Time"},{"c":3,"s":4,"id":7104,"u":"dance%20of%20darkness_apg","p":193,"h":1,"n":"Dance Of Darkness"},{"c":3,"s":4,"id":7105,"u":"debilitating%20dichotomy_apg","p":231,"h":1,"n":"Debilitating Dichotomy"},{"c":3,"s":4,"id":7106,"u":"deceiver's%20cloak_apg","p":238,"h":1,"n":"Deceiver's Cloak"},{"c":3,"s":4,"id":7107,"u":"delay%20affliction_apg","p":231,"h":1,"n":"Delay Affliction"},{"c":3,"s":4,"id":7108,"u":"dim%20the%20light_apg","p":236,"h":1,"n":"Dim The Light"},{"c":3,"s":4,"id":7109,"u":"discern%20secrets_apg","p":238,"h":1,"n":"Discern Secrets"},{"c":3,"s":4,"id":7110,"u":"dismantle_apg","p":218,"h":1,"n":"Dismantle"},{"c":3,"s":4,"id":7111,"u":"dread%20secret_apg","p":231,"h":1,"n":"Dread Secret"},{"c":3,"s":4,"id":7112,"u":"dull%20ambition_apg","p":218,"h":1,"n":"Dull Ambition"},{"c":3,"s":4,"id":7113,"u":"d%c3%a9j%c3%a0%20vu_apg","p":218,"h":1,"n":"Déjà Vu"},{"c":3,"s":4,"id":7114,"u":"elemental%20betrayal_apg","p":238,"h":1,"n":"Elemental Betrayal"},{"c":3,"s":4,"id":7115,"u":"enervation_apg","p":218,"h":1,"n":"Enervation"},{"c":3,"s":4,"id":7116,"u":"enlarge%20companion_apg","p":234,"h":1,"n":"Enlarge Companion"},{"c":3,"s":4,"id":7117,"u":"ephemeral%20tracking_apg","p":234,"h":1,"n":"Ephemeral Tracking"},{"c":3,"s":4,"id":7118,"u":"establish%20ward_apg","p":236,"h":1,"n":"Establish Ward"},{"c":3,"s":4,"id":7119,"u":"evil%20eye_apg","p":238,"h":1,"n":"Evil Eye"},{"c":3,"s":4,"id":7120,"u":"familiar's%20face_apg","p":218,"h":1,"n":"Familiar's Face"},{"c":3,"s":4,"id":7121,"u":"final%20sacrifice_apg","p":219,"h":1,"n":"Final Sacrifice"},{"c":3,"s":4,"id":7122,"u":"flaming%20fusillade_apg","p":232,"h":1,"n":"Flaming Fusillade"},{"c":3,"s":4,"id":7123,"u":"force%20cage_apg","p":219,"h":1,"n":"Force Cage"},{"c":3,"s":4,"id":7124,"u":"fungal%20infestation_apg","p":220,"h":1,"n":"Fungal Infestation"},{"c":3,"s":4,"id":7125,"u":"genie's%20veil_apg","p":236,"h":1,"n":"Genie's Veil"},{"c":3,"s":4,"id":7126,"u":"ghostly%20tragedy_apg","p":220,"h":1,"n":"Ghostly Tragedy"},{"c":3,"s":4,"id":7127,"u":"gravity%20weapon_apg","p":234,"h":1,"n":"Gravity Weapon"},{"c":3,"s":4,"id":7128,"u":"grisly%20growths_apg","p":220,"h":1,"n":"Grisly Growths"},{"c":3,"s":4,"id":7129,"u":"heal%20companion_apg","p":234,"h":1,"n":"Heal Companion"},{"c":3,"s":4,"id":7130,"u":"heart's%20desire_apg","p":236,"h":1,"n":"Heart's Desire"},{"c":3,"s":4,"id":7131,"u":"heat%20metal_apg","p":220,"h":1,"n":"Heat Metal"},{"c":3,"s":4,"id":7132,"u":"heroic%20feat_apg","p":232,"h":1,"n":"Heroic Feat"},{"c":3,"s":4,"id":7133,"u":"hunter's%20luck_apg","p":235,"h":1,"n":"Hunter's Luck"},{"c":3,"s":4,"id":7134,"u":"hunter's%20vision_apg","p":235,"h":1,"n":"Hunter's Vision"},{"c":3,"s":4,"id":7135,"u":"hymn%20of%20healing_apg","p":228,"h":1,"n":"Hymn Of Healing"},{"c":3,"s":4,"id":7136,"u":"ice%20storm_apg","p":220,"h":1,"n":"Ice Storm"},{"c":3,"s":4,"id":7137,"u":"ill%20omen_apg","p":221,"h":1,"n":"Ill Omen"},{"c":3,"s":4,"id":7138,"u":"impaling%20spike_apg","p":221,"h":1,"n":"Impaling Spike"},{"c":3,"s":4,"id":7139,"u":"imprint%20message_apg","p":221,"h":1,"n":"Imprint Message"},{"c":3,"s":4,"id":7140,"u":"incendiary%20aura_apg","p":232,"h":1,"n":"Incendiary Aura"},{"c":3,"s":4,"id":7141,"u":"indestructibility_apg","p":221,"h":1,"n":"Indestructibility"},{"c":3,"s":4,"id":7142,"u":"interstellar%20void_apg","p":232,"h":1,"n":"Interstellar Void"},{"c":3,"s":4,"id":7143,"u":"invisible%20item_apg","p":221,"h":1,"n":"Invisible Item"},{"c":3,"s":4,"id":7144,"u":"ki%20form_apg","p":229,"h":1,"n":"Ki Form"},{"c":3,"s":4,"id":7145,"u":"life%20boost_apg","p":238,"h":1,"n":"Life Boost"},{"c":3,"s":4,"id":7146,"u":"life%20link_apg","p":232,"h":1,"n":"Life Link"},{"c":3,"s":4,"id":7147,"u":"life-giving%20form_apg","p":232,"h":1,"n":"Life-giving Form"},{"c":3,"s":4,"id":7148,"u":"lightning%20storm_apg","p":221,"h":1,"n":"Lightning Storm"},{"c":3,"s":4,"id":7149,"u":"litany%20of%20depravity_apg","p":228,"h":1,"n":"Litany Of Depravity"},{"c":3,"s":4,"id":7150,"u":"litany%20of%20self-interest_apg","p":229,"h":1,"n":"Litany Of Self-interest"},{"c":3,"s":4,"id":7151,"u":"mad%20monkeys_apg","p":222,"h":1,"n":"Mad Monkeys"},{"c":3,"s":4,"id":7152,"u":"magic%20hide_apg","p":235,"h":1,"n":"Magic Hide"},{"c":3,"s":4,"id":7153,"u":"magic%20stone_apg","p":222,"h":1,"n":"Magic Stone"},{"c":3,"s":4,"id":7154,"u":"malicious%20shadow_apg","p":238,"h":1,"n":"Malicious Shadow"},{"c":3,"s":4,"id":7155,"u":"medusa's%20wrath_apg","p":229,"h":1,"n":"Medusa's Wrath"},{"c":3,"s":4,"id":7156,"u":"moonlight%20bridge_apg","p":233,"h":1,"n":"Moonlight Bridge"},{"c":3,"s":4,"id":7157,"u":"needle%20of%20vengeance_apg","p":238,"h":1,"n":"Needle Of Vengeance"},{"c":3,"s":4,"id":7158,"u":"noxious%20vapors_apg","p":222,"h":1,"n":"Noxious Vapors"},{"c":3,"s":4,"id":7159,"u":"nudge%20fate_apg","p":239,"h":1,"n":"Nudge Fate"},{"c":3,"s":4,"id":7160,"u":"nymph's%20token_apg","p":236,"h":1,"n":"Nymph's Token"},{"c":3,"s":4,"id":7161,"u":"object%20reading_apg","p":222,"h":1,"n":"Object Reading"},{"c":3,"s":4,"id":7162,"u":"ode%20to%20ouroboros_apg","p":228,"h":1,"n":"Ode To Ouroboros"},{"c":3,"s":4,"id":7163,"u":"personal%20blizzard_apg","p":239,"h":1,"n":"Personal Blizzard"},{"c":3,"s":4,"id":7164,"u":"pet%20cache_apg","p":222,"h":1,"n":"Pet Cache"},{"c":3,"s":4,"id":7165,"u":"phantasmal%20treasure_apg","p":223,"h":1,"n":"Phantasmal Treasure"},{"c":3,"s":4,"id":7166,"u":"phase%20familiar_apg","p":239,"h":1,"n":"Phase Familiar"},{"c":3,"s":4,"id":7167,"u":"pied%20piping_apg","p":228,"h":1,"n":"Pied Piping"},{"c":3,"s":4,"id":7168,"u":"pummeling%20rubble_apg","p":223,"h":1,"n":"Pummeling Rubble"},{"c":3,"s":4,"id":7169,"u":"quench_apg","p":223,"h":1,"n":"Quench"},{"c":3,"s":4,"id":7170,"u":"ranger's%20bramble_apg","p":235,"h":1,"n":"Ranger's Bramble"},{"c":3,"s":4,"id":7171,"u":"reaper's%20lantern_apg","p":223,"h":1,"n":"Reaper's Lantern"},{"c":3,"s":4,"id":7172,"u":"restorative%20moment_apg","p":239,"h":1,"n":"Restorative Moment"},{"c":3,"s":4,"id":7173,"u":"rusting%20grasp_apg","p":223,"h":1,"n":"Rusting Grasp"},{"c":3,"s":4,"id":7174,"u":"safe%20passage_apg","p":224,"h":1,"n":"Safe Passage"},{"c":3,"s":4,"id":7175,"u":"scintillating%20safeguard_apg","p":224,"h":1,"n":"Scintillating Safeguard"},{"c":3,"s":4,"id":7176,"u":"sculpt%20sound_apg","p":224,"h":1,"n":"Sculpt Sound"},{"c":3,"s":4,"id":7177,"u":"seal%20fate_apg","p":224,"h":1,"n":"Seal Fate"},{"c":3,"s":4,"id":7178,"u":"secret%20chest_apg","p":225,"h":1,"n":"Secret Chest"},{"c":3,"s":4,"id":7179,"u":"sepulchral%20mask_apg","p":236,"h":1,"n":"Sepulchral Mask"},{"c":3,"s":4,"id":7180,"u":"shadow%20illusion_apg","p":193,"h":1,"n":"Shadow Illusion"},{"c":3,"s":4,"id":7181,"u":"shadow%20jump_apg","p":193,"h":1,"n":"Shadow Jump"},{"c":3,"s":4,"id":7182,"u":"shadow's%20web_apg","p":229,"h":1,"n":"Shadow's Web"},{"c":3,"s":4,"id":7183,"u":"shepherd%20of%20souls_apg","p":236,"h":1,"n":"Shepherd Of Souls"},{"c":3,"s":4,"id":7184,"u":"shroud%20of%20night_apg","p":239,"h":1,"n":"Shroud Of Night"},{"c":3,"s":4,"id":7185,"u":"snare%20hopping_apg","p":235,"h":1,"n":"Snare Hopping"},{"c":3,"s":4,"id":7186,"u":"song%20of%20marching_apg","p":228,"h":1,"n":"Song Of Marching"},{"c":3,"s":4,"id":7187,"u":"song%20of%20strength_apg","p":228,"h":1,"n":"Song Of Strength"},{"c":3,"s":4,"id":7188,"u":"soothing%20mist_apg","p":235,"h":1,"n":"Soothing Mist"},{"c":3,"s":4,"id":7189,"u":"soul%20siphon_apg","p":233,"h":1,"n":"Soul Siphon"},{"c":3,"s":4,"id":7190,"u":"spike%20stones_apg","p":225,"h":1,"n":"Spike Stones"},{"c":3,"s":4,"id":7191,"u":"spirit%20sense_apg","p":225,"h":1,"n":"Spirit Sense"},{"c":3,"s":4,"id":7192,"u":"spirit%20veil_apg","p":237,"h":1,"n":"Spirit Veil"},{"c":3,"s":4,"id":7193,"u":"spray%20of%20stars_apg","p":233,"h":1,"n":"Spray Of Stars"},{"c":3,"s":4,"id":7194,"u":"steal%20shadow_apg","p":237,"h":1,"n":"Steal Shadow"},{"c":3,"s":4,"id":7195,"u":"stoke%20the%20heart_apg","p":239,"h":1,"n":"Stoke The Heart"},{"c":3,"s":4,"id":7196,"u":"strange%20geometry_apg","p":226,"h":1,"n":"Strange Geometry"},{"c":3,"s":4,"id":7197,"u":"sudden%20blight_apg","p":226,"h":1,"n":"Sudden Blight"},{"c":3,"s":4,"id":7198,"u":"summon%20instrument_apg","p":226,"h":1,"n":"Summon Instrument"},{"c":3,"s":4,"id":7199,"u":"symphony%20of%20the%20unfettered%20heart_apg","p":228,"h":1,"n":"Symphony Of The Unfettered Heart"},{"c":3,"s":4,"id":7200,"u":"tempest%20form_apg","p":233,"h":1,"n":"Tempest Form"},{"c":3,"s":4,"id":7201,"u":"tempest%20touch_apg","p":233,"h":1,"n":"Tempest Touch"},{"c":3,"s":4,"id":7202,"u":"terrain%20transposition_apg","p":235,"h":1,"n":"Terrain Transposition"},{"c":3,"s":4,"id":7203,"u":"thoughtful%20gift_apg","p":226,"h":1,"n":"Thoughtful Gift"},{"c":3,"s":4,"id":7204,"u":"threefold%20aspect_apg","p":226,"h":1,"n":"Threefold Aspect"},{"c":3,"s":4,"id":7205,"u":"thunderburst_apg","p":234,"h":1,"n":"Thunderburst"},{"c":3,"s":4,"id":7206,"u":"touch%20of%20corruption_apg","p":229,"h":1,"n":"Touch Of Corruption"},{"c":3,"s":4,"id":7207,"u":"transmute%20rock%20and%20mud_apg","p":226,"h":1,"n":"Transmute Rock And Mud"},{"c":3,"s":4,"id":7208,"u":"vampiric%20maiden_apg","p":227,"h":1,"n":"Vampiric Maiden"},{"c":3,"s":4,"id":7209,"u":"veil%20of%20dreams_apg","p":239,"h":1,"n":"Veil Of Dreams"},{"c":3,"s":4,"id":7210,"u":"vision%20of%20weakness_apg","p":234,"h":1,"n":"Vision Of Weakness"},{"c":3,"s":4,"id":7211,"u":"vomit%20swarm_apg","p":227,"h":1,"n":"Vomit Swarm"},{"c":3,"s":4,"id":7212,"u":"wall%20of%20flesh_apg","p":227,"h":1,"n":"Wall Of Flesh"},{"c":3,"s":4,"id":7213,"u":"whirling%20flames_apg","p":234,"h":1,"n":"Whirling Flames"},{"c":3,"s":4,"id":7214,"u":"wilding%20word_apg","p":239,"h":1,"n":"Wilding Word"},{"c":3,"s":4,"id":7215,"u":"wish-twisted%20form_apg","p":237,"h":1,"n":"Wish-twisted Form"},{"c":3,"s":5,"id":7216,"u":"aberrant%20whispers_crb","p":402,"h":1,"n":"Aberrant Whispers"},{"c":3,"s":5,"id":7217,"u":"abundant%20step_crb","p":401,"h":1,"n":"Abundant Step"},{"c":3,"s":5,"id":7218,"u":"abyssal%20plague_crb","p":316,"h":1,"n":"Abyssal Plague"},{"c":3,"s":5,"id":7219,"u":"abyssal%20wrath_crb","p":402,"h":1,"n":"Abyssal Wrath"},{"c":3,"s":5,"id":7220,"u":"acid%20arrow_crb","p":316,"h":1,"n":"Acid Arrow"},{"c":3,"s":5,"id":7221,"u":"acid%20splash_crb","p":316,"h":1,"n":"Acid Splash"},{"c":3,"s":5,"id":7222,"u":"aerial%20form_crb","p":316,"h":1,"n":"Aerial Form"},{"c":3,"s":5,"id":7223,"u":"agile%20feet_crb","p":389,"h":1,"n":"Agile Feet"},{"c":3,"s":5,"id":7224,"u":"air%20bubble_crb","p":316,"h":1,"n":"Air Bubble"},{"c":3,"s":5,"id":7225,"u":"air%20walk_crb","p":317,"h":1,"n":"Air Walk"},{"c":3,"s":5,"id":7226,"u":"alarm_crb","p":317,"h":1,"n":"Alarm"},{"c":3,"s":5,"id":7227,"u":"allegro_crb","p":386,"h":1,"n":"Allegro"},{"c":3,"s":5,"id":7228,"u":"alter%20reality_crb","p":317,"h":1,"n":"Alter Reality"},{"c":3,"s":5,"id":7229,"u":"anathematic%20reprisal_crb","p":317,"h":1,"n":"Anathematic Reprisal"},{"c":3,"s":5,"id":7230,"u":"ancestral%20memories_crb","p":402,"h":1,"n":"Ancestral Memories"},{"c":3,"s":5,"id":7231,"u":"angelic%20halo_crb","p":402,"h":1,"n":"Angelic Halo"},{"c":3,"s":5,"id":7232,"u":"angelic%20wings_crb","p":403,"h":1,"n":"Angelic Wings"},{"c":3,"s":5,"id":7233,"u":"animal%20form_crb","p":317,"h":1,"n":"Animal Form"},{"c":3,"s":5,"id":7234,"u":"animal%20messenger_crb","p":318,"h":1,"n":"Animal Messenger"},{"c":3,"s":5,"id":7235,"u":"animal%20vision_crb","p":318,"h":1,"n":"Animal Vision"},{"c":3,"s":5,"id":7236,"u":"ant%20haul_crb","p":318,"h":1,"n":"Ant Haul"},{"c":3,"s":5,"id":7237,"u":"antimagic%20field_crb","p":318,"h":1,"n":"Antimagic Field"},{"c":3,"s":5,"id":7238,"u":"appearance%20of%20wealth_crb","p":389,"h":1,"n":"Appearance Of Wealth"},{"c":3,"s":5,"id":7239,"u":"arcane%20countermeasure_crb","p":403,"h":1,"n":"Arcane Countermeasure"},{"c":3,"s":5,"id":7240,"u":"artistic%20flourish_crb","p":389,"h":1,"n":"Artistic Flourish"},{"c":3,"s":5,"id":7241,"u":"athletic%20rush_crb","p":389,"h":1,"n":"Athletic Rush"},{"c":3,"s":5,"id":7242,"u":"augment%20summoning_crb","p":406,"h":1,"n":"Augment Summoning"},{"c":3,"s":5,"id":7243,"u":"augury_crb","p":318,"h":1,"n":"Augury"},{"c":3,"s":5,"id":7244,"u":"avatar_crb","p":318,"h":1,"n":"Avatar"},{"c":3,"s":5,"id":7245,"u":"baleful%20polymorph_crb","p":320,"h":1,"n":"Baleful Polymorph"},{"c":3,"s":5,"id":7246,"u":"bane_crb","p":320,"h":1,"n":"Bane"},{"c":3,"s":5,"id":7247,"u":"banishment_crb","p":320,"h":1,"n":"Banishment"},{"c":3,"s":5,"id":7248,"u":"barkskin_crb","p":320,"h":1,"n":"Barkskin"},{"c":3,"s":5,"id":7249,"u":"bind%20soul_crb","p":320,"h":1,"n":"Bind Soul"},{"c":3,"s":5,"id":7250,"u":"bind%20undead_crb","p":321,"h":1,"n":"Bind Undead"},{"c":3,"s":5,"id":7251,"u":"bit%20of%20luck_crb","p":389,"h":1,"n":"Bit Of Luck"},{"c":3,"s":5,"id":7252,"u":"black%20tentacles_crb","p":321,"h":1,"n":"Black Tentacles"},{"c":3,"s":5,"id":7253,"u":"blade%20barrier_crb","p":321,"h":1,"n":"Blade Barrier"},{"c":3,"s":5,"id":7254,"u":"bless_crb","p":321,"h":1,"n":"Bless"},{"c":3,"s":5,"id":7255,"u":"blind%20ambition_crb","p":389,"h":1,"n":"Blind Ambition"},{"c":3,"s":5,"id":7256,"u":"blindness_crb","p":321,"h":1,"n":"Blindness"},{"c":3,"s":5,"id":7257,"u":"blink_crb","p":321,"h":1,"n":"Blink"},{"c":3,"s":5,"id":7258,"u":"blur_crb","p":321,"h":1,"n":"Blur"},{"c":3,"s":5,"id":7259,"u":"breath%20of%20life_crb","p":322,"h":1,"n":"Breath Of Life"},{"c":3,"s":5,"id":7260,"u":"burning%20hands_crb","p":322,"h":1,"n":"Burning Hands"},{"c":3,"s":5,"id":7261,"u":"call%20of%20the%20grave_crb","p":406,"h":1,"n":"Call Of The Grave"},{"c":3,"s":5,"id":7262,"u":"calm%20emotions_crb","p":322,"h":1,"n":"Calm Emotions"},{"c":3,"s":5,"id":7263,"u":"captivating%20adoration_crb","p":389,"h":1,"n":"Captivating Adoration"},{"c":3,"s":5,"id":7264,"u":"cataclysm_crb","p":322,"h":1,"n":"Cataclysm"},{"c":3,"s":5,"id":7265,"u":"celestial%20brand_crb","p":403,"h":1,"n":"Celestial Brand"},{"c":3,"s":5,"id":7266,"u":"chain%20lightning_crb","p":322,"h":1,"n":"Chain Lightning"},{"c":3,"s":5,"id":7267,"u":"champion's%20sacrifice_crb","p":387,"h":1,"n":"Champion's Sacrifice"},{"c":3,"s":5,"id":7268,"u":"charm_crb","p":322,"h":1,"n":"Charm"},{"c":3,"s":5,"id":7269,"u":"charming%20touch_crb","p":390,"h":1,"n":"Charming Touch"},{"c":3,"s":5,"id":7270,"u":"charming%20words_crb","p":406,"h":1,"n":"Charming Words"},{"c":3,"s":5,"id":7271,"u":"chill%20touch_crb","p":323,"h":1,"n":"Chill Touch"},{"c":3,"s":5,"id":7272,"u":"chilling%20darkness_crb","p":323,"h":1,"n":"Chilling Darkness"},{"c":3,"s":5,"id":7273,"u":"chromatic%20wall_crb","p":323,"h":1,"n":"Chromatic Wall"},{"c":3,"s":5,"id":7274,"u":"circle%20of%20protection_crb","p":324,"h":1,"n":"Circle Of Protection"},{"c":3,"s":5,"id":7275,"u":"clairaudience_crb","p":324,"h":1,"n":"Clairaudience"},{"c":3,"s":5,"id":7276,"u":"clairvoyance_crb","p":324,"h":1,"n":"Clairvoyance"},{"c":3,"s":5,"id":7277,"u":"cloak%20of%20colors_crb","p":324,"h":1,"n":"Cloak Of Colors"},{"c":3,"s":5,"id":7278,"u":"cloak%20of%20shadow_crb","p":390,"h":1,"n":"Cloak Of Shadow"},{"c":3,"s":5,"id":7279,"u":"cloudkill_crb","p":324,"h":1,"n":"Cloudkill"},{"c":3,"s":5,"id":7280,"u":"collective%20transposition_crb","p":324,"h":1,"n":"Collective Transposition"},{"c":3,"s":5,"id":7281,"u":"color%20spray_crb","p":324,"h":1,"n":"Color Spray"},{"c":3,"s":5,"id":7282,"u":"command_crb","p":325,"h":1,"n":"Command"},{"c":3,"s":5,"id":7283,"u":"commanding%20lash_crb","p":390,"h":1,"n":"Commanding Lash"},{"c":3,"s":5,"id":7284,"u":"competitive%20edge_crb","p":390,"h":1,"n":"Competitive Edge"},{"c":3,"s":5,"id":7285,"u":"comprehend%20language_crb","p":325,"h":1,"n":"Comprehend Language"},{"c":3,"s":5,"id":7286,"u":"cone%20of%20cold_crb","p":325,"h":1,"n":"Cone Of Cold"},{"c":3,"s":5,"id":7287,"u":"confusion_crb","p":325,"h":1,"n":"Confusion"},{"c":3,"s":5,"id":7288,"u":"contingency_crb","p":326,"h":1,"n":"Contingency"},{"c":3,"s":5,"id":7289,"u":"continual%20flame_crb","p":326,"h":1,"n":"Continual Flame"},{"c":3,"s":5,"id":7290,"u":"control%20water_crb","p":326,"h":1,"n":"Control Water"},{"c":3,"s":5,"id":7291,"u":"counter%20performance_crb","p":386,"h":1,"n":"Counter Performance"},{"c":3,"s":5,"id":7292,"u":"create%20food_crb","p":326,"h":1,"n":"Create Food"},{"c":3,"s":5,"id":7293,"u":"create%20water_crb","p":326,"h":1,"n":"Create Water"},{"c":3,"s":5,"id":7294,"u":"creation_crb","p":326,"h":1,"n":"Creation"},{"c":3,"s":5,"id":7295,"u":"crisis%20of%20faith_crb","p":326,"h":1,"n":"Crisis Of Faith"},{"c":3,"s":5,"id":7296,"u":"crusade_crb","p":327,"h":1,"n":"Crusade"},{"c":3,"s":5,"id":7297,"u":"crushing%20despair_crb","p":327,"h":1,"n":"Crushing Despair"},{"c":3,"s":5,"id":7298,"u":"cry%20of%20destruction_crb","p":390,"h":1,"n":"Cry Of Destruction"},{"c":3,"s":5,"id":7299,"u":"dancing%20lights_crb","p":327,"h":1,"n":"Dancing Lights"},{"c":3,"s":5,"id":7300,"u":"darkened%20eyes_crb","p":390,"h":1,"n":"Darkened Eyes"},{"c":3,"s":5,"id":7301,"u":"darkness_crb","p":327,"h":1,"n":"Darkness"},{"c":3,"s":5,"id":7302,"u":"darkvision_crb","p":327,"h":1,"n":"Darkvision"},{"c":3,"s":5,"id":7303,"u":"daze_crb","p":327,"h":1,"n":"Daze"},{"c":3,"s":5,"id":7304,"u":"dazzling%20flash_crb","p":391,"h":1,"n":"Dazzling Flash"},{"c":3,"s":5,"id":7305,"u":"deafness_crb","p":327,"h":1,"n":"Deafness"},{"c":3,"s":5,"id":7306,"u":"death%20knell_crb","p":328,"h":1,"n":"Death Knell"},{"c":3,"s":5,"id":7307,"u":"death%20ward_crb","p":328,"h":1,"n":"Death Ward"},{"c":3,"s":5,"id":7308,"u":"death's%20call_crb","p":391,"h":1,"n":"Death's Call"},{"c":3,"s":5,"id":7309,"u":"delusional%20pride_crb","p":391,"h":1,"n":"Delusional Pride"},{"c":3,"s":5,"id":7310,"u":"destructive%20aura_crb","p":391,"h":1,"n":"Destructive Aura"},{"c":3,"s":5,"id":7311,"u":"detect%20alignment_crb","p":328,"h":1,"n":"Detect Alignment"},{"c":3,"s":5,"id":7312,"u":"detect%20magic_crb","p":328,"h":1,"n":"Detect Magic"},{"c":3,"s":5,"id":7313,"u":"detect%20poison_crb","p":328,"h":1,"n":"Detect Poison"},{"c":3,"s":5,"id":7314,"u":"detect%20scrying_crb","p":328,"h":1,"n":"Detect Scrying"},{"c":3,"s":5,"id":7315,"u":"diabolic%20edict_crb","p":403,"h":1,"n":"Diabolic Edict"},{"c":3,"s":5,"id":7316,"u":"dimension%20door_crb","p":328,"h":1,"n":"Dimension Door"},{"c":3,"s":5,"id":7317,"u":"dimensional%20anchor_crb","p":329,"h":1,"n":"Dimensional Anchor"},{"c":3,"s":5,"id":7318,"u":"dimensional%20lock_crb","p":329,"h":1,"n":"Dimensional Lock"},{"c":3,"s":5,"id":7319,"u":"dimensional%20steps_crb","p":406,"h":1,"n":"Dimensional Steps"},{"c":3,"s":5,"id":7320,"u":"dinosaur%20form_crb","p":329,"h":1,"n":"Dinosaur Form"},{"c":3,"s":5,"id":7321,"u":"dirge%20of%20doom_crb","p":386,"h":1,"n":"Dirge Of Doom"},{"c":3,"s":5,"id":7322,"u":"disappearance_crb","p":330,"h":1,"n":"Disappearance"},{"c":3,"s":5,"id":7323,"u":"discern%20lies_crb","p":330,"h":1,"n":"Discern Lies"},{"c":3,"s":5,"id":7324,"u":"discern%20location_crb","p":330,"h":1,"n":"Discern Location"},{"c":3,"s":5,"id":7325,"u":"disintegrate_crb","p":330,"h":1,"n":"Disintegrate"},{"c":3,"s":5,"id":7326,"u":"disjunction_crb","p":330,"h":1,"n":"Disjunction"},{"c":3,"s":5,"id":7327,"u":"dispel%20magic_crb","p":330,"h":1,"n":"Dispel Magic"},{"c":3,"s":5,"id":7328,"u":"disperse%20into%20air_crb","p":391,"h":1,"n":"Disperse Into Air"},{"c":3,"s":5,"id":7329,"u":"disrupt%20undead_crb","p":331,"h":1,"n":"Disrupt Undead"},{"c":3,"s":5,"id":7330,"u":"disrupting%20weapons_crb","p":331,"h":1,"n":"Disrupting Weapons"},{"c":3,"s":5,"id":7331,"u":"divine%20aura_crb","p":331,"h":1,"n":"Divine Aura"},{"c":3,"s":5,"id":7332,"u":"divine%20decree_crb","p":331,"h":1,"n":"Divine Decree"},{"c":3,"s":5,"id":7333,"u":"divine%20inspiration_crb","p":331,"h":1,"n":"Divine Inspiration"},{"c":3,"s":5,"id":7334,"u":"divine%20lance_crb","p":331,"h":1,"n":"Divine Lance"},{"c":3,"s":5,"id":7335,"u":"divine%20vessel_crb","p":331,"h":1,"n":"Divine Vessel"},{"c":3,"s":5,"id":7336,"u":"divine%20wrath_crb","p":332,"h":1,"n":"Divine Wrath"},{"c":3,"s":5,"id":7337,"u":"diviner's%20sight_crb","p":406,"h":1,"n":"Diviner's Sight"},{"c":3,"s":5,"id":7338,"u":"dominate_crb","p":332,"h":1,"n":"Dominate"},{"c":3,"s":5,"id":7339,"u":"downpour_crb","p":391,"h":1,"n":"Downpour"},{"c":3,"s":5,"id":7340,"u":"dragon%20breath_crb","p":403,"h":1,"n":"Dragon Breath"},{"c":3,"s":5,"id":7341,"u":"dragon%20claws_crb","p":403,"h":1,"n":"Dragon Claws"},{"c":3,"s":5,"id":7342,"u":"dragon%20form_crb","p":332,"h":1,"n":"Dragon Form"},{"c":3,"s":5,"id":7343,"u":"dragon%20wings_crb","p":403,"h":1,"n":"Dragon Wings"},{"c":3,"s":5,"id":7344,"u":"drain%20life_crb","p":403,"h":1,"n":"Drain Life"},{"c":3,"s":5,"id":7345,"u":"dread%20aura_crb","p":406,"h":1,"n":"Dread Aura"},{"c":3,"s":5,"id":7346,"u":"dream%20council_crb","p":333,"h":1,"n":"Dream Council"},{"c":3,"s":5,"id":7347,"u":"dream%20message_crb","p":333,"h":1,"n":"Dream Message"},{"c":3,"s":5,"id":7348,"u":"dreamer's%20call_crb","p":391,"h":1,"n":"Dreamer's Call"},{"c":3,"s":5,"id":7349,"u":"dreaming%20potential_crb","p":333,"h":1,"n":"Dreaming Potential"},{"c":3,"s":5,"id":7350,"u":"drop%20dead_crb","p":333,"h":1,"n":"Drop Dead"},{"c":3,"s":5,"id":7351,"u":"duplicate%20foe_crb","p":334,"h":1,"n":"Duplicate Foe"},{"c":3,"s":5,"id":7352,"u":"earthbind_crb","p":334,"h":1,"n":"Earthbind"},{"c":3,"s":5,"id":7353,"u":"earthquake_crb","p":334,"h":1,"n":"Earthquake"},{"c":3,"s":5,"id":7354,"u":"eclipse%20burst_crb","p":334,"h":1,"n":"Eclipse Burst"},{"c":3,"s":5,"id":7355,"u":"electric%20arc_crb","p":335,"h":1,"n":"Electric Arc"},{"c":3,"s":5,"id":7356,"u":"elemental%20blast_crb","p":404,"h":1,"n":"Elemental Blast"},{"c":3,"s":5,"id":7357,"u":"elemental%20form_crb","p":335,"h":1,"n":"Elemental Form"},{"c":3,"s":5,"id":7358,"u":"elemental%20motion_crb","p":404,"h":1,"n":"Elemental Motion"},{"c":3,"s":5,"id":7359,"u":"elemental%20tempest_crb","p":406,"h":1,"n":"Elemental Tempest"},{"c":3,"s":5,"id":7360,"u":"elemental%20toss_crb","p":404,"h":1,"n":"Elemental Toss"},{"c":3,"s":5,"id":7361,"u":"embrace%20the%20pit_crb","p":404,"h":1,"n":"Embrace The Pit"},{"c":3,"s":5,"id":7362,"u":"empty%20body_crb","p":401,"h":1,"n":"Empty Body"},{"c":3,"s":5,"id":7363,"u":"endure%20elements_crb","p":335,"h":1,"n":"Endure Elements"},{"c":3,"s":5,"id":7364,"u":"enduring%20might_crb","p":392,"h":1,"n":"Enduring Might"},{"c":3,"s":5,"id":7365,"u":"energy%20absorption_crb","p":407,"h":1,"n":"Energy Absorption"},{"c":3,"s":5,"id":7366,"u":"energy%20aegis_crb","p":335,"h":1,"n":"Energy Aegis"},{"c":3,"s":5,"id":7367,"u":"enhance%20victuals_crb","p":335,"h":1,"n":"Enhance Victuals"},{"c":3,"s":5,"id":7368,"u":"enlarge_crb","p":336,"h":1,"n":"Enlarge"},{"c":3,"s":5,"id":7369,"u":"entangle_crb","p":336,"h":1,"n":"Entangle"},{"c":3,"s":5,"id":7370,"u":"enthrall_crb","p":336,"h":1,"n":"Enthrall"},{"c":3,"s":5,"id":7371,"u":"eradicate%20undeath_crb","p":392,"h":1,"n":"Eradicate Undeath"},{"c":3,"s":5,"id":7372,"u":"ethereal%20jaunt_crb","p":336,"h":1,"n":"Ethereal Jaunt"},{"c":3,"s":5,"id":7373,"u":"extend%20spell_crb","p":404,"h":1,"n":"Extend Spell"},{"c":3,"s":5,"id":7374,"u":"fabricated%20truth_crb","p":336,"h":1,"n":"Fabricated Truth"},{"c":3,"s":5,"id":7375,"u":"face%20in%20the%20crowd_crb","p":392,"h":1,"n":"Face In The Crowd"},{"c":3,"s":5,"id":7376,"u":"faerie%20dust_crb","p":404,"h":1,"n":"Faerie Dust"},{"c":3,"s":5,"id":7377,"u":"faerie%20fire_crb","p":337,"h":1,"n":"Faerie Fire"},{"c":3,"s":5,"id":7378,"u":"false%20life_crb","p":337,"h":1,"n":"False Life"},{"c":3,"s":5,"id":7379,"u":"false%20vision_crb","p":337,"h":1,"n":"False Vision"},{"c":3,"s":5,"id":7380,"u":"fatal%20aria_crb","p":386,"h":1,"n":"Fatal Aria"},{"c":3,"s":5,"id":7381,"u":"fear_crb","p":337,"h":1,"n":"Fear"},{"c":3,"s":5,"id":7382,"u":"feather%20fall_crb","p":337,"h":1,"n":"Feather Fall"},{"c":3,"s":5,"id":7383,"u":"feeblemind_crb","p":337,"h":1,"n":"Feeblemind"},{"c":3,"s":5,"id":7384,"u":"feet%20to%20fins_crb","p":337,"h":1,"n":"Feet To Fins"},{"c":3,"s":5,"id":7385,"u":"fey%20disappearance_crb","p":404,"h":1,"n":"Fey Disappearance"},{"c":3,"s":5,"id":7386,"u":"fey%20glamour_crb","p":404,"h":1,"n":"Fey Glamour"},{"c":3,"s":5,"id":7387,"u":"field%20of%20life_crb","p":337,"h":1,"n":"Field Of Life"},{"c":3,"s":5,"id":7388,"u":"fiery%20body_crb","p":337,"h":1,"n":"Fiery Body"},{"c":3,"s":5,"id":7389,"u":"finger%20of%20death_crb","p":338,"h":1,"n":"Finger Of Death"},{"c":3,"s":5,"id":7390,"u":"fire%20ray_crb","p":392,"h":1,"n":"Fire Ray"},{"c":3,"s":5,"id":7391,"u":"fire%20seeds_crb","p":338,"h":1,"n":"Fire Seeds"},{"c":3,"s":5,"id":7392,"u":"fire%20shield_crb","p":338,"h":1,"n":"Fire Shield"},{"c":3,"s":5,"id":7393,"u":"fireball_crb","p":338,"h":1,"n":"Fireball"},{"c":3,"s":5,"id":7394,"u":"flame%20barrier_crb","p":392,"h":1,"n":"Flame Barrier"},{"c":3,"s":5,"id":7395,"u":"flame%20strike_crb","p":338,"h":1,"n":"Flame Strike"},{"c":3,"s":5,"id":7396,"u":"flaming%20sphere_crb","p":338,"h":1,"n":"Flaming Sphere"},{"c":3,"s":5,"id":7397,"u":"fleet%20step_crb","p":338,"h":1,"n":"Fleet Step"},{"c":3,"s":5,"id":7398,"u":"flesh%20to%20stone_crb","p":339,"h":1,"n":"Flesh To Stone"},{"c":3,"s":5,"id":7399,"u":"floating%20disk_crb","p":339,"h":1,"n":"Floating Disk"},{"c":3,"s":5,"id":7400,"u":"fly_crb","p":339,"h":1,"n":"Fly"},{"c":3,"s":5,"id":7401,"u":"forbidding%20ward_crb","p":339,"h":1,"n":"Forbidding Ward"},{"c":3,"s":5,"id":7402,"u":"force%20bolt_crb","p":407,"h":1,"n":"Force Bolt"},{"c":3,"s":5,"id":7403,"u":"forced%20quiet_crb","p":393,"h":1,"n":"Forced Quiet"},{"c":3,"s":5,"id":7404,"u":"foresight_crb","p":340,"h":1,"n":"Foresight"},{"c":3,"s":5,"id":7405,"u":"freedom%20of%20movement_crb","p":340,"h":1,"n":"Freedom Of Movement"},{"c":3,"s":5,"id":7406,"u":"gaseous%20form_crb","p":340,"h":1,"n":"Gaseous Form"},{"c":3,"s":5,"id":7407,"u":"gate_crb","p":340,"h":1,"n":"Gate"},{"c":3,"s":5,"id":7408,"u":"gentle%20repose_crb","p":340,"h":1,"n":"Gentle Repose"},{"c":3,"s":5,"id":7409,"u":"ghost%20sound_crb","p":340,"h":1,"n":"Ghost Sound"},{"c":3,"s":5,"id":7410,"u":"ghostly%20weapon_crb","p":340,"h":1,"n":"Ghostly Weapon"},{"c":3,"s":5,"id":7411,"u":"ghoulish%20cravings_crb","p":341,"h":1,"n":"Ghoulish Cravings"},{"c":3,"s":5,"id":7412,"u":"glibness_crb","p":341,"h":1,"n":"Glibness"},{"c":3,"s":5,"id":7413,"u":"glimpse%20the%20truth_crb","p":393,"h":1,"n":"Glimpse The Truth"},{"c":3,"s":5,"id":7414,"u":"glitterdust_crb","p":341,"h":1,"n":"Glitterdust"},{"c":3,"s":5,"id":7415,"u":"globe%20of%20invulnerability_crb","p":341,"h":1,"n":"Globe Of Invulnerability"},{"c":3,"s":5,"id":7416,"u":"glutton's%20jaws_crb","p":404,"h":1,"n":"Glutton's Jaws"},{"c":3,"s":5,"id":7417,"u":"glyph%20of%20warding_crb","p":341,"h":1,"n":"Glyph Of Warding"},{"c":3,"s":5,"id":7418,"u":"goblin%20pox_crb","p":341,"h":1,"n":"Goblin Pox"},{"c":3,"s":5,"id":7419,"u":"goodberry_crb","p":399,"h":1,"n":"Goodberry"},{"c":3,"s":5,"id":7420,"u":"grasping%20grave_crb","p":404,"h":1,"n":"Grasping Grave"},{"c":3,"s":5,"id":7421,"u":"grease_crb","p":342,"h":1,"n":"Grease"},{"c":3,"s":5,"id":7422,"u":"grim%20tendrils_crb","p":342,"h":1,"n":"Grim Tendrils"},{"c":3,"s":5,"id":7423,"u":"guidance_crb","p":342,"h":1,"n":"Guidance"},{"c":3,"s":5,"id":7424,"u":"gust%20of%20wind_crb","p":342,"h":1,"n":"Gust Of Wind"},{"c":3,"s":5,"id":7425,"u":"hallucination_crb","p":342,"h":1,"n":"Hallucination"},{"c":3,"s":5,"id":7426,"u":"hallucinatory%20terrain_crb","p":343,"h":1,"n":"Hallucinatory Terrain"},{"c":3,"s":5,"id":7427,"u":"hand%20of%20the%20apprentice_crb","p":407,"h":1,"n":"Hand Of The Apprentice"},{"c":3,"s":5,"id":7428,"u":"harm_crb","p":343,"h":1,"n":"Harm"},{"c":3,"s":5,"id":7429,"u":"haste_crb","p":343,"h":1,"n":"Haste"},{"c":3,"s":5,"id":7430,"u":"heal_crb","p":343,"h":1,"n":"Heal"},{"c":3,"s":5,"id":7431,"u":"heal%20animal_crb","p":399,"h":1,"n":"Heal Animal"},{"c":3,"s":5,"id":7432,"u":"healer's%20blessing_crb","p":393,"h":1,"n":"Healer's Blessing"},{"c":3,"s":5,"id":7433,"u":"hellfire%20plume_crb","p":405,"h":1,"n":"Hellfire Plume"},{"c":3,"s":5,"id":7434,"u":"hero's%20defiance_crb","p":387,"h":1,"n":"Hero's Defiance"},{"c":3,"s":5,"id":7435,"u":"heroism_crb","p":343,"h":1,"n":"Heroism"},{"c":3,"s":5,"id":7436,"u":"hideous%20laughter_crb","p":343,"h":1,"n":"Hideous Laughter"},{"c":3,"s":5,"id":7437,"u":"holy%20cascade_crb","p":344,"h":1,"n":"Holy Cascade"},{"c":3,"s":5,"id":7438,"u":"horrid%20wilting_crb","p":344,"h":1,"n":"Horrid Wilting"},{"c":3,"s":5,"id":7439,"u":"horrific%20visage_crb","p":405,"h":1,"n":"Horrific Visage"},{"c":3,"s":5,"id":7440,"u":"house%20of%20imaginary%20walls_crb","p":386,"h":1,"n":"House Of Imaginary Walls"},{"c":3,"s":5,"id":7441,"u":"humanoid%20form_crb","p":344,"h":1,"n":"Humanoid Form"},{"c":3,"s":5,"id":7442,"u":"hurtling%20stone_crb","p":393,"h":1,"n":"Hurtling Stone"},{"c":3,"s":5,"id":7443,"u":"hydraulic%20push_crb","p":344,"h":1,"n":"Hydraulic Push"},{"c":3,"s":5,"id":7444,"u":"hydraulic%20torrent_crb","p":344,"h":1,"n":"Hydraulic Torrent"},{"c":3,"s":5,"id":7445,"u":"hypercognition_crb","p":344,"h":1,"n":"Hypercognition"},{"c":3,"s":5,"id":7446,"u":"hypnotic%20pattern_crb","p":344,"h":1,"n":"Hypnotic Pattern"},{"c":3,"s":5,"id":7447,"u":"illusory%20creature_crb","p":345,"h":1,"n":"Illusory Creature"},{"c":3,"s":5,"id":7448,"u":"illusory%20disguise_crb","p":345,"h":1,"n":"Illusory Disguise"},{"c":3,"s":5,"id":7449,"u":"illusory%20object_crb","p":345,"h":1,"n":"Illusory Object"},{"c":3,"s":5,"id":7450,"u":"illusory%20scene_crb","p":345,"h":1,"n":"Illusory Scene"},{"c":3,"s":5,"id":7451,"u":"impaling%20briars_crb","p":400,"h":1,"n":"Impaling Briars"},{"c":3,"s":5,"id":7452,"u":"implosion_crb","p":346,"h":1,"n":"Implosion"},{"c":3,"s":5,"id":7453,"u":"insect%20form_crb","p":346,"h":1,"n":"Insect Form"},{"c":3,"s":5,"id":7454,"u":"inspire%20competence_crb","p":386,"h":1,"n":"Inspire Competence"},{"c":3,"s":5,"id":7455,"u":"inspire%20courage_crb","p":386,"h":1,"n":"Inspire Courage"},{"c":3,"s":5,"id":7456,"u":"inspire%20defense_crb","p":386,"h":1,"n":"Inspire Defense"},{"c":3,"s":5,"id":7457,"u":"inspire%20heroics_crb","p":387,"h":1,"n":"Inspire Heroics"},{"c":3,"s":5,"id":7458,"u":"invisibility_crb","p":347,"h":1,"n":"Invisibility"},{"c":3,"s":5,"id":7459,"u":"invisibility%20cloak_crb","p":407,"h":1,"n":"Invisibility Cloak"},{"c":3,"s":5,"id":7460,"u":"invisibility%20sphere_crb","p":347,"h":1,"n":"Invisibility Sphere"},{"c":3,"s":5,"id":7461,"u":"item%20facade_crb","p":347,"h":1,"n":"Item Facade"},{"c":3,"s":5,"id":7462,"u":"jealous%20hex_crb","p":405,"h":1,"n":"Jealous Hex"},{"c":3,"s":5,"id":7463,"u":"jump_crb","p":347,"h":1,"n":"Jump"},{"c":3,"s":5,"id":7464,"u":"ki%20blast_crb","p":401,"h":1,"n":"Ki Blast"},{"c":3,"s":5,"id":7465,"u":"ki%20rush_crb","p":401,"h":1,"n":"Ki Rush"},{"c":3,"s":5,"id":7466,"u":"ki%20strike_crb","p":401,"h":1,"n":"Ki Strike"},{"c":3,"s":5,"id":7467,"u":"knock_crb","p":347,"h":1,"n":"Knock"},{"c":3,"s":5,"id":7468,"u":"know%20direction_crb","p":348,"h":1,"n":"Know Direction"},{"c":3,"s":5,"id":7469,"u":"know%20the%20enemy_crb","p":393,"h":1,"n":"Know The Enemy"},{"c":3,"s":5,"id":7470,"u":"lay%20on%20hands_crb","p":387,"h":1,"n":"Lay On Hands"},{"c":3,"s":5,"id":7471,"u":"levitate_crb","p":348,"h":1,"n":"Levitate"},{"c":3,"s":5,"id":7472,"u":"life%20siphon_crb","p":407,"h":1,"n":"Life Siphon"},{"c":3,"s":5,"id":7473,"u":"light_crb","p":348,"h":1,"n":"Light"},{"c":3,"s":5,"id":7474,"u":"lightning%20bolt_crb","p":348,"h":1,"n":"Lightning Bolt"},{"c":3,"s":5,"id":7475,"u":"lingering%20composition_crb","p":387,"h":1,"n":"Lingering Composition"},{"c":3,"s":5,"id":7476,"u":"litany%20against%20sloth_crb","p":388,"h":1,"n":"Litany Against Sloth"},{"c":3,"s":5,"id":7477,"u":"litany%20against%20wrath_crb","p":388,"h":1,"n":"Litany Against Wrath"},{"c":3,"s":5,"id":7478,"u":"litany%20of%20righteousness_crb","p":388,"h":1,"n":"Litany Of Righteousness"},{"c":3,"s":5,"id":7479,"u":"localized%20quake_crb","p":393,"h":1,"n":"Localized Quake"},{"c":3,"s":5,"id":7480,"u":"locate_crb","p":348,"h":1,"n":"Locate"},{"c":3,"s":5,"id":7481,"u":"lock_crb","p":348,"h":1,"n":"Lock"},{"c":3,"s":5,"id":7482,"u":"longstrider_crb","p":348,"h":1,"n":"Longstrider"},{"c":3,"s":5,"id":7483,"u":"loremaster's%20etude_crb","p":387,"h":1,"n":"Loremaster's Etude"},{"c":3,"s":5,"id":7484,"u":"lucky%20break_crb","p":393,"h":1,"n":"Lucky Break"},{"c":3,"s":5,"id":7485,"u":"mage%20armor_crb","p":348,"h":1,"n":"Mage Armor"},{"c":3,"s":5,"id":7486,"u":"mage%20hand_crb","p":349,"h":1,"n":"Mage Hand"},{"c":3,"s":5,"id":7487,"u":"magic%20aura_crb","p":349,"h":1,"n":"Magic Aura"},{"c":3,"s":5,"id":7488,"u":"magic%20fang_crb","p":349,"h":1,"n":"Magic Fang"},{"c":3,"s":5,"id":7489,"u":"magic%20missile_crb","p":349,"h":1,"n":"Magic Missile"},{"c":3,"s":5,"id":7490,"u":"magic%20mouth_crb","p":349,"h":1,"n":"Magic Mouth"},{"c":3,"s":5,"id":7491,"u":"magic%20weapon_crb","p":349,"h":1,"n":"Magic Weapon"},{"c":3,"s":5,"id":7492,"u":"magic's%20vessel_crb","p":393,"h":1,"n":"Magic's Vessel"},{"c":3,"s":5,"id":7493,"u":"magnificent%20mansion_crb","p":349,"h":1,"n":"Magnificent Mansion"},{"c":3,"s":5,"id":7494,"u":"malignant%20sustenance_crb","p":394,"h":1,"n":"Malignant Sustenance"},{"c":3,"s":5,"id":7495,"u":"mariner's%20curse_crb","p":350,"h":1,"n":"Mariner's Curse"},{"c":3,"s":5,"id":7496,"u":"mask%20of%20terror_crb","p":350,"h":1,"n":"Mask Of Terror"},{"c":3,"s":5,"id":7497,"u":"massacre_crb","p":350,"h":1,"n":"Massacre"},{"c":3,"s":5,"id":7498,"u":"maze_crb","p":350,"h":1,"n":"Maze"},{"c":3,"s":5,"id":7499,"u":"meld%20into%20stone_crb","p":350,"h":1,"n":"Meld Into Stone"},{"c":3,"s":5,"id":7500,"u":"mending_crb","p":351,"h":1,"n":"Mending"},{"c":3,"s":5,"id":7501,"u":"message_crb","p":351,"h":1,"n":"Message"},{"c":3,"s":5,"id":7502,"u":"meteor%20swarm_crb","p":351,"h":1,"n":"Meteor Swarm"},{"c":3,"s":5,"id":7503,"u":"mind%20blank_crb","p":351,"h":1,"n":"Mind Blank"},{"c":3,"s":5,"id":7504,"u":"mind%20probe_crb","p":351,"h":1,"n":"Mind Probe"},{"c":3,"s":5,"id":7505,"u":"mind%20reading_crb","p":351,"h":1,"n":"Mind Reading"},{"c":3,"s":5,"id":7506,"u":"mindlink_crb","p":352,"h":1,"n":"Mindlink"},{"c":3,"s":5,"id":7507,"u":"miracle_crb","p":352,"h":1,"n":"Miracle"},{"c":3,"s":5,"id":7508,"u":"mirror%20image_crb","p":352,"h":1,"n":"Mirror Image"},{"c":3,"s":5,"id":7509,"u":"misdirection_crb","p":352,"h":1,"n":"Misdirection"},{"c":3,"s":5,"id":7510,"u":"mislead_crb","p":352,"h":1,"n":"Mislead"},{"c":3,"s":5,"id":7511,"u":"modify%20memory_crb","p":352,"h":1,"n":"Modify Memory"},{"c":3,"s":5,"id":7512,"u":"moment%20of%20renewal_crb","p":353,"h":1,"n":"Moment Of Renewal"},{"c":3,"s":5,"id":7513,"u":"monstrosity%20form_crb","p":353,"h":1,"n":"Monstrosity Form"},{"c":3,"s":5,"id":7514,"u":"moon%20frenzy_crb","p":353,"h":1,"n":"Moon Frenzy"},{"c":3,"s":5,"id":7515,"u":"moonbeam_crb","p":394,"h":1,"n":"Moonbeam"},{"c":3,"s":5,"id":7516,"u":"mystic%20beacon_crb","p":394,"h":1,"n":"Mystic Beacon"},{"c":3,"s":5,"id":7517,"u":"nature%20incarnate_crb","p":354,"h":1,"n":"Nature Incarnate"},{"c":3,"s":5,"id":7518,"u":"nature's%20bounty_crb","p":394,"h":1,"n":"Nature's Bounty"},{"c":3,"s":5,"id":7519,"u":"nature's%20enmity_crb","p":354,"h":1,"n":"Nature's Enmity"},{"c":3,"s":5,"id":7520,"u":"negate%20aroma_crb","p":354,"h":1,"n":"Negate Aroma"},{"c":3,"s":5,"id":7521,"u":"neutralize%20poison_crb","p":354,"h":1,"n":"Neutralize Poison"},{"c":3,"s":5,"id":7522,"u":"nightmare_crb","p":354,"h":1,"n":"Nightmare"},{"c":3,"s":5,"id":7523,"u":"nondetection_crb","p":355,"h":1,"n":"Nondetection"},{"c":3,"s":5,"id":7524,"u":"obscuring%20mist_crb","p":355,"h":1,"n":"Obscuring Mist"},{"c":3,"s":5,"id":7525,"u":"outcast's%20curse_crb","p":355,"h":1,"n":"Outcast's Curse"},{"c":3,"s":5,"id":7526,"u":"overstuff_crb","p":394,"h":1,"n":"Overstuff"},{"c":3,"s":5,"id":7527,"u":"overwhelming%20presence_crb","p":356,"h":1,"n":"Overwhelming Presence"},{"c":3,"s":5,"id":7528,"u":"paralyze_crb","p":356,"h":1,"n":"Paralyze"},{"c":3,"s":5,"id":7529,"u":"paranoia_crb","p":356,"h":1,"n":"Paranoia"},{"c":3,"s":5,"id":7530,"u":"pass%20without%20trace_crb","p":356,"h":1,"n":"Pass Without Trace"},{"c":3,"s":5,"id":7531,"u":"passwall_crb","p":356,"h":1,"n":"Passwall"},{"c":3,"s":5,"id":7532,"u":"perfected%20form_crb","p":394,"h":1,"n":"Perfected Form"},{"c":3,"s":5,"id":7533,"u":"perfected%20mind_crb","p":394,"h":1,"n":"Perfected Mind"},{"c":3,"s":5,"id":7534,"u":"pest%20form_crb","p":356,"h":1,"n":"Pest Form"},{"c":3,"s":5,"id":7535,"u":"phantasmal%20calamity_crb","p":357,"h":1,"n":"Phantasmal Calamity"},{"c":3,"s":5,"id":7536,"u":"phantasmal%20killer_crb","p":357,"h":1,"n":"Phantasmal Killer"},{"c":3,"s":5,"id":7537,"u":"phantom%20pain_crb","p":357,"h":1,"n":"Phantom Pain"},{"c":3,"s":5,"id":7538,"u":"phantom%20steed_crb","p":357,"h":1,"n":"Phantom Steed"},{"c":3,"s":5,"id":7539,"u":"physical%20boost_crb","p":407,"h":1,"n":"Physical Boost"},{"c":3,"s":5,"id":7540,"u":"plane%20shift_crb","p":357,"h":1,"n":"Plane Shift"},{"c":3,"s":5,"id":7541,"u":"plant%20form_crb","p":358,"h":1,"n":"Plant Form"},{"c":3,"s":5,"id":7542,"u":"polar%20ray_crb","p":358,"h":1,"n":"Polar Ray"},{"c":3,"s":5,"id":7543,"u":"positive%20luminance_crb","p":394,"h":1,"n":"Positive Luminance"},{"c":3,"s":5,"id":7544,"u":"possession_crb","p":358,"h":1,"n":"Possession"},{"c":3,"s":5,"id":7545,"u":"power%20word%20blind_crb","p":358,"h":1,"n":"Power Word Blind"},{"c":3,"s":5,"id":7546,"u":"power%20word%20kill_crb","p":358,"h":1,"n":"Power Word Kill"},{"c":3,"s":5,"id":7547,"u":"power%20word%20stun_crb","p":359,"h":1,"n":"Power Word Stun"},{"c":3,"s":5,"id":7548,"u":"precious%20metals_crb","p":395,"h":1,"n":"Precious Metals"},{"c":3,"s":5,"id":7549,"u":"prestidigitation_crb","p":359,"h":1,"n":"Prestidigitation"},{"c":3,"s":5,"id":7550,"u":"primal%20herd_crb","p":359,"h":1,"n":"Primal Herd"},{"c":3,"s":5,"id":7551,"u":"primal%20phenomenon_crb","p":359,"h":1,"n":"Primal Phenomenon"},{"c":3,"s":5,"id":7552,"u":"primal%20summons_crb","p":400,"h":1,"n":"Primal Summons"},{"c":3,"s":5,"id":7553,"u":"prismatic%20sphere_crb","p":359,"h":1,"n":"Prismatic Sphere"},{"c":3,"s":5,"id":7554,"u":"prismatic%20spray_crb","p":360,"h":1,"n":"Prismatic Spray"},{"c":3,"s":5,"id":7555,"u":"prismatic%20wall_crb","p":360,"h":1,"n":"Prismatic Wall"},{"c":3,"s":5,"id":7556,"u":"private%20sanctum_crb","p":360,"h":1,"n":"Private Sanctum"},{"c":3,"s":5,"id":7557,"u":"produce%20flame_crb","p":360,"h":1,"n":"Produce Flame"},{"c":3,"s":5,"id":7558,"u":"project%20image_crb","p":360,"h":1,"n":"Project Image"},{"c":3,"s":5,"id":7559,"u":"protection_crb","p":361,"h":1,"n":"Protection"},{"c":3,"s":5,"id":7560,"u":"protective%20ward_crb","p":407,"h":1,"n":"Protective Ward"},{"c":3,"s":5,"id":7561,"u":"protector's%20sacrifice_crb","p":395,"h":1,"n":"Protector's Sacrifice"},{"c":3,"s":5,"id":7562,"u":"protector's%20sphere_crb","p":395,"h":1,"n":"Protector's Sphere"},{"c":3,"s":5,"id":7563,"u":"prying%20eye_crb","p":361,"h":1,"n":"Prying Eye"},{"c":3,"s":5,"id":7564,"u":"pulse%20of%20the%20city_crb","p":395,"h":1,"n":"Pulse Of The City"},{"c":3,"s":5,"id":7565,"u":"punishing%20winds_crb","p":361,"h":1,"n":"Punishing Winds"},{"c":3,"s":5,"id":7566,"u":"purify%20food%20and%20drink_crb","p":362,"h":1,"n":"Purify Food And Drink"},{"c":3,"s":5,"id":7567,"u":"purple%20worm%20sting_crb","p":362,"h":1,"n":"Purple Worm Sting"},{"c":3,"s":5,"id":7568,"u":"pushing%20gust_crb","p":395,"h":1,"n":"Pushing Gust"},{"c":3,"s":5,"id":7569,"u":"quivering%20palm_crb","p":401,"h":1,"n":"Quivering Palm"},{"c":3,"s":5,"id":7570,"u":"raise%20dead_crb","p":362,"h":1,"n":"Raise Dead"},{"c":3,"s":5,"id":7571,"u":"ray%20of%20enfeeblement_crb","p":362,"h":1,"n":"Ray Of Enfeeblement"},{"c":3,"s":5,"id":7572,"u":"ray%20of%20frost_crb","p":362,"h":1,"n":"Ray Of Frost"},{"c":3,"s":5,"id":7573,"u":"read%20aura_crb","p":362,"h":1,"n":"Read Aura"},{"c":3,"s":5,"id":7574,"u":"read%20fate_crb","p":395,"h":1,"n":"Read Fate"},{"c":3,"s":5,"id":7575,"u":"read%20omens_crb","p":363,"h":1,"n":"Read Omens"},{"c":3,"s":5,"id":7576,"u":"rebuke%20death_crb","p":396,"h":1,"n":"Rebuke Death"},{"c":3,"s":5,"id":7577,"u":"regenerate_crb","p":363,"h":1,"n":"Regenerate"},{"c":3,"s":5,"id":7578,"u":"remake_crb","p":363,"h":1,"n":"Remake"},{"c":3,"s":5,"id":7579,"u":"remove%20curse_crb","p":363,"h":1,"n":"Remove Curse"},{"c":3,"s":5,"id":7580,"u":"remove%20disease_crb","p":363,"h":1,"n":"Remove Disease"},{"c":3,"s":5,"id":7581,"u":"remove%20fear_crb","p":363,"h":1,"n":"Remove Fear"},{"c":3,"s":5,"id":7582,"u":"remove%20paralysis_crb","p":363,"h":1,"n":"Remove Paralysis"},{"c":3,"s":5,"id":7583,"u":"repulsion_crb","p":363,"h":1,"n":"Repulsion"},{"c":3,"s":5,"id":7584,"u":"resilient%20sphere_crb","p":364,"h":1,"n":"Resilient Sphere"},{"c":3,"s":5,"id":7585,"u":"resist%20energy_crb","p":364,"h":1,"n":"Resist Energy"},{"c":3,"s":5,"id":7586,"u":"resplendent%20mansion_crb","p":364,"h":1,"n":"Resplendent Mansion"},{"c":3,"s":5,"id":7587,"u":"restoration_crb","p":364,"h":1,"n":"Restoration"},{"c":3,"s":5,"id":7588,"u":"restore%20senses_crb","p":364,"h":1,"n":"Restore Senses"},{"c":3,"s":5,"id":7589,"u":"retributive%20pain_crb","p":396,"h":1,"n":"Retributive Pain"},{"c":3,"s":5,"id":7590,"u":"retrocognition_crb","p":365,"h":1,"n":"Retrocognition"},{"c":3,"s":5,"id":7591,"u":"reverse%20gravity_crb","p":365,"h":1,"n":"Reverse Gravity"},{"c":3,"s":5,"id":7592,"u":"revival_crb","p":366,"h":1,"n":"Revival"},{"c":3,"s":5,"id":7593,"u":"righteous%20might_crb","p":366,"h":1,"n":"Righteous Might"},{"c":3,"s":5,"id":7594,"u":"rope%20trick_crb","p":366,"h":1,"n":"Rope Trick"},{"c":3,"s":5,"id":7595,"u":"safeguard%20secret_crb","p":396,"h":1,"n":"Safeguard Secret"},{"c":3,"s":5,"id":7596,"u":"sanctified%20ground_crb","p":366,"h":1,"n":"Sanctified Ground"},{"c":3,"s":5,"id":7597,"u":"sanctuary_crb","p":366,"h":1,"n":"Sanctuary"},{"c":3,"s":5,"id":7598,"u":"savor%20the%20sting_crb","p":396,"h":1,"n":"Savor The Sting"},{"c":3,"s":5,"id":7599,"u":"scholarly%20recollection_crb","p":396,"h":1,"n":"Scholarly Recollection"},{"c":3,"s":5,"id":7600,"u":"scintillating%20pattern_crb","p":367,"h":1,"n":"Scintillating Pattern"},{"c":3,"s":5,"id":7601,"u":"scrying_crb","p":367,"h":1,"n":"Scrying"},{"c":3,"s":5,"id":7602,"u":"searing%20light_crb","p":367,"h":1,"n":"Searing Light"},{"c":3,"s":5,"id":7603,"u":"secret%20page_crb","p":367,"h":1,"n":"Secret Page"},{"c":3,"s":5,"id":7604,"u":"see%20invisibility_crb","p":367,"h":1,"n":"See Invisibility"},{"c":3,"s":5,"id":7605,"u":"sending_crb","p":367,"h":1,"n":"Sending"},{"c":3,"s":5,"id":7606,"u":"shadow%20blast_crb","p":367,"h":1,"n":"Shadow Blast"},{"c":3,"s":5,"id":7607,"u":"shadow%20siphon_crb","p":368,"h":1,"n":"Shadow Siphon"},{"c":3,"s":5,"id":7608,"u":"shadow%20walk_crb","p":368,"h":1,"n":"Shadow Walk"},{"c":3,"s":5,"id":7609,"u":"shape%20stone_crb","p":368,"h":1,"n":"Shape Stone"},{"c":3,"s":5,"id":7610,"u":"shape%20wood_crb","p":368,"h":1,"n":"Shape Wood"},{"c":3,"s":5,"id":7611,"u":"shapechange_crb","p":368,"h":1,"n":"Shapechange"},{"c":3,"s":5,"id":7612,"u":"shared%20nightmare_crb","p":396,"h":1,"n":"Shared Nightmare"},{"c":3,"s":5,"id":7613,"u":"shatter_crb","p":368,"h":1,"n":"Shatter"},{"c":3,"s":5,"id":7614,"u":"shield_crb","p":368,"h":1,"n":"Shield"},{"c":3,"s":5,"id":7615,"u":"shield%20other_crb","p":369,"h":1,"n":"Shield Other"},{"c":3,"s":5,"id":7616,"u":"shifting%20form_crb","p":407,"h":1,"n":"Shifting Form"},{"c":3,"s":5,"id":7617,"u":"shillelagh_crb","p":369,"h":1,"n":"Shillelagh"},{"c":3,"s":5,"id":7618,"u":"shocking%20grasp_crb","p":369,"h":1,"n":"Shocking Grasp"},{"c":3,"s":5,"id":7619,"u":"shrink_crb","p":369,"h":1,"n":"Shrink"},{"c":3,"s":5,"id":7620,"u":"shrink%20item_crb","p":369,"h":1,"n":"Shrink Item"},{"c":3,"s":5,"id":7621,"u":"sigil_crb","p":369,"h":1,"n":"Sigil"},{"c":3,"s":5,"id":7622,"u":"silence_crb","p":369,"h":1,"n":"Silence"},{"c":3,"s":5,"id":7623,"u":"sleep_crb","p":370,"h":1,"n":"Sleep"},{"c":3,"s":5,"id":7624,"u":"slow_crb","p":370,"h":1,"n":"Slow"},{"c":3,"s":5,"id":7625,"u":"solid%20fog_crb","p":370,"h":1,"n":"Solid Fog"},{"c":3,"s":5,"id":7626,"u":"soothe_crb","p":370,"h":1,"n":"Soothe"},{"c":3,"s":5,"id":7627,"u":"soothing%20ballad_crb","p":387,"h":1,"n":"Soothing Ballad"},{"c":3,"s":5,"id":7628,"u":"soothing%20words_crb","p":396,"h":1,"n":"Soothing Words"},{"c":3,"s":5,"id":7629,"u":"sound%20burst_crb","p":370,"h":1,"n":"Sound Burst"},{"c":3,"s":5,"id":7630,"u":"speak%20with%20animals_crb","p":370,"h":1,"n":"Speak With Animals"},{"c":3,"s":5,"id":7631,"u":"speak%20with%20plants_crb","p":370,"h":1,"n":"Speak With Plants"},{"c":3,"s":5,"id":7632,"u":"spectral%20hand_crb","p":370,"h":1,"n":"Spectral Hand"},{"c":3,"s":5,"id":7633,"u":"spell%20immunity_crb","p":371,"h":1,"n":"Spell Immunity"},{"c":3,"s":5,"id":7634,"u":"spell%20turning_crb","p":371,"h":1,"n":"Spell Turning"},{"c":3,"s":5,"id":7635,"u":"spellwrack_crb","p":371,"h":1,"n":"Spellwrack"},{"c":3,"s":5,"id":7636,"u":"spider%20climb_crb","p":371,"h":1,"n":"Spider Climb"},{"c":3,"s":5,"id":7637,"u":"spider%20sting_crb","p":371,"h":1,"n":"Spider Sting"},{"c":3,"s":5,"id":7638,"u":"spirit%20blast_crb","p":371,"h":1,"n":"Spirit Blast"},{"c":3,"s":5,"id":7639,"u":"spirit%20link_crb","p":371,"h":1,"n":"Spirit Link"},{"c":3,"s":5,"id":7640,"u":"spirit%20song_crb","p":372,"h":1,"n":"Spirit Song"},{"c":3,"s":5,"id":7641,"u":"spiritual%20epidemic_crb","p":372,"h":1,"n":"Spiritual Epidemic"},{"c":3,"s":5,"id":7642,"u":"spiritual%20guardian_crb","p":373,"h":1,"n":"Spiritual Guardian"},{"c":3,"s":5,"id":7643,"u":"spiritual%20weapon_crb","p":373,"h":1,"n":"Spiritual Weapon"},{"c":3,"s":5,"id":7644,"u":"splash%20of%20art_crb","p":397,"h":1,"n":"Splash Of Art"},{"c":3,"s":5,"id":7645,"u":"stabilize_crb","p":373,"h":1,"n":"Stabilize"},{"c":3,"s":5,"id":7646,"u":"status_crb","p":373,"h":1,"n":"Status"},{"c":3,"s":5,"id":7647,"u":"stinking%20cloud_crb","p":373,"h":1,"n":"Stinking Cloud"},{"c":3,"s":5,"id":7648,"u":"stone%20tell_crb","p":374,"h":1,"n":"Stone Tell"},{"c":3,"s":5,"id":7649,"u":"stone%20to%20flesh_crb","p":374,"h":1,"n":"Stone To Flesh"},{"c":3,"s":5,"id":7650,"u":"stoneskin_crb","p":374,"h":1,"n":"Stoneskin"},{"c":3,"s":5,"id":7651,"u":"storm%20lord_crb","p":400,"h":1,"n":"Storm Lord"},{"c":3,"s":5,"id":7652,"u":"storm%20of%20vengeance_crb","p":374,"h":1,"n":"Storm Of Vengeance"},{"c":3,"s":5,"id":7653,"u":"stormwind%20flight_crb","p":400,"h":1,"n":"Stormwind Flight"},{"c":3,"s":5,"id":7654,"u":"subconscious%20suggestion_crb","p":374,"h":1,"n":"Subconscious Suggestion"},{"c":3,"s":5,"id":7655,"u":"sudden%20shift_crb","p":397,"h":1,"n":"Sudden Shift"},{"c":3,"s":5,"id":7656,"u":"suggestion_crb","p":374,"h":1,"n":"Suggestion"},{"c":3,"s":5,"id":7657,"u":"summon%20animal_crb","p":375,"h":1,"n":"Summon Animal"},{"c":3,"s":5,"id":7658,"u":"summon%20celestial_crb","p":375,"h":1,"n":"Summon Celestial"},{"c":3,"s":5,"id":7659,"u":"summon%20construct_crb","p":375,"h":1,"n":"Summon Construct"},{"c":3,"s":5,"id":7660,"u":"summon%20dragon_crb","p":375,"h":1,"n":"Summon Dragon"},{"c":3,"s":5,"id":7661,"u":"summon%20elemental_crb","p":375,"h":1,"n":"Summon Elemental"},{"c":3,"s":5,"id":7662,"u":"summon%20entity_crb","p":375,"h":1,"n":"Summon Entity"},{"c":3,"s":5,"id":7663,"u":"summon%20fey_crb","p":375,"h":1,"n":"Summon Fey"},{"c":3,"s":5,"id":7664,"u":"summon%20fiend_crb","p":375,"h":1,"n":"Summon Fiend"},{"c":3,"s":5,"id":7665,"u":"summon%20giant_crb","p":376,"h":1,"n":"Summon Giant"},{"c":3,"s":5,"id":7666,"u":"summon%20plant%20or%20fungus_crb","p":376,"h":1,"n":"Summon Plant Or Fungus"},{"c":3,"s":5,"id":7667,"u":"sunburst_crb","p":376,"h":1,"n":"Sunburst"},{"c":3,"s":5,"id":7668,"u":"swamp%20of%20sloth_crb","p":405,"h":1,"n":"Swamp Of Sloth"},{"c":3,"s":5,"id":7669,"u":"sweet%20dream_crb","p":397,"h":1,"n":"Sweet Dream"},{"c":3,"s":5,"id":7670,"u":"synaptic%20pulse_crb","p":376,"h":1,"n":"Synaptic Pulse"},{"c":3,"s":5,"id":7671,"u":"synesthesia_crb","p":376,"h":1,"n":"Synesthesia"},{"c":3,"s":5,"id":7672,"u":"take%20its%20course_crb","p":397,"h":1,"n":"Take Its Course"},{"c":3,"s":5,"id":7673,"u":"talking%20corpse_crb","p":376,"h":1,"n":"Talking Corpse"},{"c":3,"s":5,"id":7674,"u":"tanglefoot_crb","p":377,"h":1,"n":"Tanglefoot"},{"c":3,"s":5,"id":7675,"u":"tangling%20creepers_crb","p":377,"h":1,"n":"Tangling Creepers"},{"c":3,"s":5,"id":7676,"u":"telekinetic%20haul_crb","p":377,"h":1,"n":"Telekinetic Haul"},{"c":3,"s":5,"id":7677,"u":"telekinetic%20maneuver_crb","p":377,"h":1,"n":"Telekinetic Maneuver"},{"c":3,"s":5,"id":7678,"u":"telekinetic%20projectile_crb","p":377,"h":1,"n":"Telekinetic Projectile"},{"c":3,"s":5,"id":7679,"u":"telepathic%20bond_crb","p":377,"h":1,"n":"Telepathic Bond"},{"c":3,"s":5,"id":7680,"u":"telepathic%20demand_crb","p":377,"h":1,"n":"Telepathic Demand"},{"c":3,"s":5,"id":7681,"u":"telepathy_crb","p":377,"h":1,"n":"Telepathy"},{"c":3,"s":5,"id":7682,"u":"teleport_crb","p":378,"h":1,"n":"Teleport"},{"c":3,"s":5,"id":7683,"u":"tempest%20surge_crb","p":400,"h":1,"n":"Tempest Surge"},{"c":3,"s":5,"id":7684,"u":"tempt%20fate_crb","p":397,"h":1,"n":"Tempt Fate"},{"c":3,"s":5,"id":7685,"u":"tentacular%20limbs_crb","p":405,"h":1,"n":"Tentacular Limbs"},{"c":3,"s":5,"id":7686,"u":"tidal%20surge_crb","p":397,"h":1,"n":"Tidal Surge"},{"c":3,"s":5,"id":7687,"u":"time%20stop_crb","p":378,"h":1,"n":"Time Stop"},{"c":3,"s":5,"id":7688,"u":"tongues_crb","p":378,"h":1,"n":"Tongues"},{"c":3,"s":5,"id":7689,"u":"touch%20of%20idiocy_crb","p":378,"h":1,"n":"Touch Of Idiocy"},{"c":3,"s":5,"id":7690,"u":"touch%20of%20obedience_crb","p":398,"h":1,"n":"Touch Of Obedience"},{"c":3,"s":5,"id":7691,"u":"touch%20of%20the%20moon_crb","p":398,"h":1,"n":"Touch Of The Moon"},{"c":3,"s":5,"id":7692,"u":"touch%20of%20undeath_crb","p":398,"h":1,"n":"Touch Of Undeath"},{"c":3,"s":5,"id":7693,"u":"traveler's%20transit_crb","p":398,"h":1,"n":"Traveler's Transit"},{"c":3,"s":5,"id":7694,"u":"tree%20shape_crb","p":378,"h":1,"n":"Tree Shape"},{"c":3,"s":5,"id":7695,"u":"tree%20stride_crb","p":378,"h":1,"n":"Tree Stride"},{"c":3,"s":5,"id":7696,"u":"trickster's%20twin_crb","p":398,"h":1,"n":"Trickster's Twin"},{"c":3,"s":5,"id":7697,"u":"triple%20time_crb","p":387,"h":1,"n":"Triple Time"},{"c":3,"s":5,"id":7698,"u":"true%20seeing_crb","p":378,"h":1,"n":"True Seeing"},{"c":3,"s":5,"id":7699,"u":"true%20strike_crb","p":379,"h":1,"n":"True Strike"},{"c":3,"s":5,"id":7700,"u":"true%20target_crb","p":379,"h":1,"n":"True Target"},{"c":3,"s":5,"id":7701,"u":"uncontrollable%20dance_crb","p":379,"h":1,"n":"Uncontrollable Dance"},{"c":3,"s":5,"id":7702,"u":"undeath's%20blessing_crb","p":405,"h":1,"n":"Undeath's Blessing"},{"c":3,"s":5,"id":7703,"u":"undetectable%20alignment_crb","p":379,"h":1,"n":"Undetectable Alignment"},{"c":3,"s":5,"id":7704,"u":"unfathomable%20song_crb","p":379,"h":1,"n":"Unfathomable Song"},{"c":3,"s":5,"id":7705,"u":"unfettered%20pack_crb","p":379,"h":1,"n":"Unfettered Pack"},{"c":3,"s":5,"id":7706,"u":"unimpeded%20stride_crb","p":398,"h":1,"n":"Unimpeded Stride"},{"c":3,"s":5,"id":7707,"u":"unity_crb","p":398,"h":1,"n":"Unity"},{"c":3,"s":5,"id":7708,"u":"unrelenting%20observation_crb","p":379,"h":1,"n":"Unrelenting Observation"},{"c":3,"s":5,"id":7709,"u":"unseen%20servant_crb","p":380,"h":1,"n":"Unseen Servant"},{"c":3,"s":5,"id":7710,"u":"unusual%20anatomy_crb","p":405,"h":1,"n":"Unusual Anatomy"},{"c":3,"s":5,"id":7711,"u":"vampiric%20exsanguination_crb","p":380,"h":1,"n":"Vampiric Exsanguination"},{"c":3,"s":5,"id":7712,"u":"vampiric%20touch_crb","p":380,"h":1,"n":"Vampiric Touch"},{"c":3,"s":5,"id":7713,"u":"veil_crb","p":380,"h":1,"n":"Veil"},{"c":3,"s":5,"id":7714,"u":"veil%20of%20confidence_crb","p":398,"h":1,"n":"Veil Of Confidence"},{"c":3,"s":5,"id":7715,"u":"ventriloquism_crb","p":381,"h":1,"n":"Ventriloquism"},{"c":3,"s":5,"id":7716,"u":"vibrant%20pattern_crb","p":381,"h":1,"n":"Vibrant Pattern"},{"c":3,"s":5,"id":7717,"u":"vibrant%20thorns_crb","p":399,"h":1,"n":"Vibrant Thorns"},{"c":3,"s":5,"id":7718,"u":"vigilant%20eye_crb","p":407,"h":1,"n":"Vigilant Eye"},{"c":3,"s":5,"id":7719,"u":"visions%20of%20danger_crb","p":381,"h":1,"n":"Visions Of Danger"},{"c":3,"s":5,"id":7720,"u":"vital%20beacon_crb","p":382,"h":1,"n":"Vital Beacon"},{"c":3,"s":5,"id":7721,"u":"volcanic%20eruption_crb","p":382,"h":1,"n":"Volcanic Eruption"},{"c":3,"s":5,"id":7722,"u":"wail%20of%20the%20banshee_crb","p":382,"h":1,"n":"Wail Of The Banshee"},{"c":3,"s":5,"id":7723,"u":"waking%20nightmare_crb","p":399,"h":1,"n":"Waking Nightmare"},{"c":3,"s":5,"id":7724,"u":"wall%20of%20fire_crb","p":382,"h":1,"n":"Wall Of Fire"},{"c":3,"s":5,"id":7725,"u":"wall%20of%20force_crb","p":382,"h":1,"n":"Wall Of Force"},{"c":3,"s":5,"id":7726,"u":"wall%20of%20ice_crb","p":382,"h":1,"n":"Wall Of Ice"},{"c":3,"s":5,"id":7727,"u":"wall%20of%20stone_crb","p":383,"h":1,"n":"Wall Of Stone"},{"c":3,"s":5,"id":7728,"u":"wall%20of%20thorns_crb","p":383,"h":1,"n":"Wall Of Thorns"},{"c":3,"s":5,"id":7729,"u":"wall%20of%20wind_crb","p":383,"h":1,"n":"Wall Of Wind"},{"c":3,"s":5,"id":7730,"u":"wanderer's%20guide_crb","p":383,"h":1,"n":"Wanderer's Guide"},{"c":3,"s":5,"id":7731,"u":"warp%20mind_crb","p":383,"h":1,"n":"Warp Mind"},{"c":3,"s":5,"id":7732,"u":"warped%20terrain_crb","p":407,"h":1,"n":"Warped Terrain"},{"c":3,"s":5,"id":7733,"u":"water%20breathing_crb","p":384,"h":1,"n":"Water Breathing"},{"c":3,"s":5,"id":7734,"u":"water%20walk_crb","p":384,"h":1,"n":"Water Walk"},{"c":3,"s":5,"id":7735,"u":"weapon%20of%20judgment_crb","p":384,"h":1,"n":"Weapon Of Judgment"},{"c":3,"s":5,"id":7736,"u":"weapon%20storm_crb","p":384,"h":1,"n":"Weapon Storm"},{"c":3,"s":5,"id":7737,"u":"weapon%20surge_crb","p":399,"h":1,"n":"Weapon Surge"},{"c":3,"s":5,"id":7738,"u":"web_crb","p":384,"h":1,"n":"Web"},{"c":3,"s":5,"id":7739,"u":"weird_crb","p":385,"h":1,"n":"Weird"},{"c":3,"s":5,"id":7740,"u":"wholeness%20of%20body_crb","p":402,"h":1,"n":"Wholeness Of Body"},{"c":3,"s":5,"id":7741,"u":"wild%20morph_crb","p":400,"h":1,"n":"Wild Morph"},{"c":3,"s":5,"id":7742,"u":"wild%20shape_crb","p":401,"h":1,"n":"Wild Shape"},{"c":3,"s":5,"id":7743,"u":"wild%20winds%20stance_crb","p":402,"h":1,"n":"Wild Winds Stance"},{"c":3,"s":5,"id":7744,"u":"wind%20jump_crb","p":402,"h":1,"n":"Wind Jump"},{"c":3,"s":5,"id":7745,"u":"wind%20walk_crb","p":385,"h":1,"n":"Wind Walk"},{"c":3,"s":5,"id":7746,"u":"wish_crb","p":385,"h":1,"n":"Wish"},{"c":3,"s":5,"id":7747,"u":"word%20of%20freedom_crb","p":399,"h":1,"n":"Word Of Freedom"},{"c":3,"s":5,"id":7748,"u":"word%20of%20truth_crb","p":399,"h":1,"n":"Word Of Truth"},{"c":3,"s":5,"id":7749,"u":"you're%20mine_crb","p":406,"h":1,"n":"You're Mine"},{"c":3,"s":5,"id":7750,"u":"zeal%20for%20battle_crb","p":399,"h":1,"n":"Zeal For Battle"},{"c":3,"s":5,"id":7751,"u":"zealous%20conviction_crb","p":385,"h":1,"n":"Zealous Conviction"},{"c":3,"s":5,"id":7752,"u":"zone%20of%20truth_crb","p":385,"h":1,"n":"Zone Of Truth"},{"c":3,"s":15,"id":7753,"u":"exchange%20image_aoa3","p":73,"h":1,"n":"Exchange Image"},{"c":3,"s":15,"id":7754,"u":"forgotten%20lines_aoa3","p":73,"h":1,"n":"Forgotten Lines"},{"c":3,"s":15,"id":7755,"u":"imprint%20message_aoa3","p":74,"h":1,"n":"Imprint Message"},{"c":3,"s":15,"id":7756,"u":"join%20pasts_aoa3","p":74,"h":1,"n":"Join Pasts"},{"c":3,"s":15,"id":7757,"u":"object%20reading_aoa3","p":74,"h":1,"n":"Object Reading"},{"c":3,"s":15,"id":7758,"u":"silver's%20refrain_aoa3","p":74,"h":1,"n":"Silver's Refrain"},{"c":3,"s":15,"id":7759,"u":"spiritual%20anamnesis_aoa3","p":74,"h":1,"n":"Spiritual Anamnesis"},{"c":3,"s":16,"id":7760,"u":"electrified%20crystal%20ward_aoa4","p":75,"h":1,"n":"Electrified Crystal Ward"},{"c":3,"s":16,"id":7761,"u":"practice%20makes%20perfect_aoa4","p":63,"h":1,"n":"Practice Makes Perfect"},{"c":3,"s":16,"id":7762,"u":"tireless%20worker_aoa4","p":63,"h":1,"n":"Tireless Worker"},{"c":3,"s":18,"id":7763,"u":"apex%20companion_aoa6","p":77,"h":1,"n":"Apex Companion"},{"c":3,"s":18,"id":7764,"u":"song%20of%20the%20fallen_aoa6","p":77,"h":1,"n":"Song Of The Fallen"},{"c":3,"s":20,"id":7765,"u":"admonishing%20ray_aoe2","p":76,"h":1,"n":"Admonishing Ray"},{"c":3,"s":20,"id":7766,"u":"magical%20fetters_aoe2","p":77,"h":1,"n":"Magical Fetters"},{"c":3,"s":20,"id":7767,"u":"maze%20of%20locked%20doors_aoe2","p":77,"h":1,"n":"Maze Of Locked Doors"},{"c":3,"s":20,"id":7768,"u":"putrefy%20food%20and%20drink_aoe2","p":77,"h":1,"n":"Putrefy Food And Drink"},{"c":3,"s":20,"id":7769,"u":"speaking%20sky_aoe2","p":79,"h":1,"n":"Speaking Sky"},{"c":3,"s":20,"id":7770,"u":"steal%20the%20sky_aoe2","p":79,"h":1,"n":"Steal The Sky"},{"c":3,"s":22,"id":7771,"u":"imp%20sting_aoe4","p":80,"h":1,"n":"Imp Sting"},{"c":3,"s":22,"id":7772,"u":"leng%20sting_aoe4","p":80,"h":1,"n":"Leng Sting"},{"c":3,"s":22,"id":7773,"u":"linnorm%20sting_aoe4","p":81,"h":1,"n":"Linnorm Sting"},{"c":3,"s":22,"id":7774,"u":"swarming%20wasp%20stings_aoe4","p":81,"h":1,"n":"Swarming Wasp Stings"},{"c":3,"s":22,"id":7775,"u":"wyvern%20sting_aoe4","p":81,"h":1,"n":"Wyvern Sting"},{"c":3,"s":23,"id":7776,"u":"ordained%20purpose_aoe5","p":75,"h":1,"n":"Ordained Purpose"},{"c":3,"s":23,"id":7777,"u":"split%20the%20tongue_aoe5","p":75,"h":1,"n":"Split The Tongue"},{"c":3,"s":24,"id":7778,"u":"divinity%20leech_aoe6","p":75,"h":1,"n":"Divinity Leech"},{"c":3,"s":24,"id":7779,"u":"prismatic%20shield_aoe6","p":75,"h":1,"n":"Prismatic Shield"},{"c":3,"s":25,"id":7780,"u":"worm's%20repast_av1","p":80,"h":1,"n":"Worm's Repast"},{"c":3,"s":26,"id":7781,"u":"daydreamer's%20curse_av2","p":73,"h":1,"n":"Daydreamer's Curse"},{"c":3,"s":26,"id":7782,"u":"savant's%20curse_av2","p":73,"h":1,"n":"Savant's Curse"},{"c":3,"s":27,"id":7783,"u":"call%20the%20blood_av3","p":75,"h":1,"n":"Call The Blood"},{"c":3,"s":27,"id":7784,"u":"ectoplasmic%20expulsion_av3","p":75,"h":1,"n":"Ectoplasmic Expulsion"},{"c":3,"s":27,"id":7785,"u":"fearful%20feast_av3","p":65,"h":1,"n":"Fearful Feast"},{"c":3,"s":27,"id":7786,"u":"lift%20nature's%20caul_av3","p":65,"h":1,"n":"Lift Nature's Caul"},{"c":3,"s":28,"id":7787,"u":"breath%20of%20drought_ec1","p":78,"h":1,"n":"Breath Of Drought"},{"c":3,"s":28,"id":7788,"u":"personal%20rain%20cloud_ec1","p":78,"h":1,"n":"Personal Rain Cloud"},{"c":3,"s":28,"id":7789,"u":"rime%20slick_ec1","p":78,"h":1,"n":"Rime Slick"},{"c":3,"s":28,"id":7790,"u":"scouring%20sand_ec1","p":78,"h":1,"n":"Scouring Sand"},{"c":3,"s":28,"id":7791,"u":"sea%20surge_ec1","p":78,"h":1,"n":"Sea Surge"},{"c":3,"s":28,"id":7792,"u":"sudden%20bolt_ec1","p":79,"h":1,"n":"Sudden Bolt"},{"c":3,"s":28,"id":7793,"u":"unseasonable%20squall_ec1","p":79,"h":1,"n":"Unseasonable Squall"},{"c":3,"s":28,"id":7794,"u":"verdant%20sprout_ec1","p":79,"h":1,"n":"Verdant Sprout"},{"c":3,"s":29,"id":7795,"u":"clownish%20curse_ec2","p":77,"h":1,"n":"Clownish Curse"},{"c":3,"s":29,"id":7796,"u":"favorable%20review_ec2","p":77,"h":1,"n":"Favorable Review"},{"c":3,"s":29,"id":7797,"u":"pillar%20of%20water_ec2","p":77,"h":1,"n":"Pillar Of Water"},{"c":3,"s":29,"id":7798,"u":"pyrotechnics_ec2","p":77,"h":1,"n":"Pyrotechnics"},{"c":3,"s":8,"id":7799,"u":"ravening%20maw_ec3","p":67,"h":1,"n":"Ravening Maw"},{"c":3,"s":30,"id":7800,"u":"blood%20feast_ec4","p":74,"h":1,"n":"Blood Feast"},{"c":3,"s":30,"id":7801,"u":"entrancing%20eyes_ec4","p":74,"h":1,"n":"Entrancing Eyes"},{"c":3,"s":30,"id":7802,"u":"necrotic%20radiation_ec4","p":75,"h":1,"n":"Necrotic Radiation"},{"c":3,"s":31,"id":7803,"u":"blightburn%20blast_ec5","p":73,"h":1,"n":"Blightburn Blast"},{"c":3,"s":31,"id":7804,"u":"control%20sand_ec5","p":73,"h":1,"n":"Control Sand"},{"c":3,"s":31,"id":7805,"u":"pillars%20of%20sand_ec5","p":74,"h":1,"n":"Pillars Of Sand"},{"c":3,"s":32,"id":7806,"u":"astral%20labyrinth_ec6","p":76,"h":1,"n":"Astral Labyrinth"},{"c":3,"s":32,"id":7807,"u":"deluge_ec6","p":76,"h":1,"n":"Deluge"},{"c":3,"s":32,"id":7808,"u":"devour%20life_ec6","p":76,"h":1,"n":"Devour Life"},{"c":3,"s":32,"id":7809,"u":"prying%20survey_ec6","p":76,"h":1,"n":"Prying Survey"},{"c":3,"s":32,"id":7810,"u":"undermine%20reality_ec6","p":76,"h":1,"n":"Undermine Reality"},{"c":3,"s":32,"id":7811,"u":"upheaval_ec6","p":77,"h":1,"n":"Upheaval"},{"c":3,"s":34,"id":7812,"u":"aura%20of%20the%20unremarkable_frp1","p":77,"h":1,"n":"Aura Of The Unremarkable"},{"c":3,"s":34,"id":7813,"u":"return%20beacon_frp1","p":77,"h":1,"n":"Return Beacon"},{"c":3,"s":34,"id":7814,"u":"wronged%20monk's%20wrath_frp1","p":77,"h":1,"n":"Wronged Monk's Wrath"},{"c":3,"s":36,"id":7815,"u":"cleansing%20flames_frp3","p":74,"h":1,"n":"Cleansing Flames"},{"c":3,"s":36,"id":7816,"u":"rejuvenating%20flames_frp3","p":74,"h":1,"n":"Rejuvenating Flames"},{"c":3,"s":36,"id":7817,"u":"shroud%20of%20flame_frp3","p":74,"h":1,"n":"Shroud Of Flame"},{"c":3,"s":6,"id":7818,"u":"invoke%20the%20crimson%20oath_locg","p":90,"h":1,"n":"Invoke The Crimson Oath"},{"c":3,"s":6,"id":7819,"u":"light%20of%20revelation_locg","p":91,"h":1,"n":"Light Of Revelation"},{"c":3,"s":6,"id":7820,"u":"perfect%20strike_locg","p":131,"h":1,"n":"Perfect Strike"},{"c":3,"s":6,"id":7821,"u":"sun%20blade_locg","p":91,"h":1,"n":"Sun Blade"},{"c":3,"s":51,"id":7822,"u":"acid%20storm_logm","p":106,"h":1,"n":"Acid Storm"},{"c":3,"s":51,"id":7823,"u":"acidic%20burst_logm","p":106,"h":1,"n":"Acidic Burst"},{"c":3,"s":51,"id":7824,"u":"adapt%20self_logm","p":112,"h":1,"n":"Adapt Self"},{"c":3,"s":51,"id":7825,"u":"adaptive%20ablation_logm","p":112,"h":1,"n":"Adaptive Ablation"},{"c":3,"s":51,"id":7826,"u":"agitate_logm","p":106,"h":1,"n":"Agitate"},{"c":3,"s":51,"id":7827,"u":"animus%20mine_logm","p":106,"h":1,"n":"Animus Mine"},{"c":3,"s":51,"id":7828,"u":"anticipate%20peril_logm","p":107,"h":1,"n":"Anticipate Peril"},{"c":3,"s":51,"id":7829,"u":"asterism_logm","p":117,"h":1,"n":"Asterism"},{"c":3,"s":51,"id":7830,"u":"befuddle_logm","p":107,"h":1,"n":"Befuddle"},{"c":3,"s":51,"id":7831,"u":"bottle%20the%20storm_logm","p":115,"h":1,"n":"Bottle The Storm"},{"c":3,"s":51,"id":7832,"u":"brand%20the%20impenitent_logm","p":107,"h":1,"n":"Brand The Impenitent"},{"c":3,"s":51,"id":7833,"u":"charged%20javelin_logm","p":115,"h":1,"n":"Charged Javelin"},{"c":3,"s":51,"id":7834,"u":"chilling%20spray_logm","p":107,"h":1,"n":"Chilling Spray"},{"c":3,"s":51,"id":7835,"u":"cup%20of%20dust_logm","p":107,"h":1,"n":"Cup Of Dust"},{"c":3,"s":51,"id":7836,"u":"delay%20consequence_logm","p":118,"h":1,"n":"Delay Consequence"},{"c":3,"s":51,"id":7837,"u":"diamond%20dust_logm","p":112,"h":1,"n":"Diamond Dust"},{"c":3,"s":51,"id":7838,"u":"divine%20plagues_logm","p":115,"h":1,"n":"Divine Plagues"},{"c":3,"s":51,"id":7839,"u":"door%20to%20beyond_logm","p":119,"h":1,"n":"Door To Beyond"},{"c":3,"s":51,"id":7840,"u":"draconic%20barrage_logm","p":119,"h":1,"n":"Draconic Barrage"},{"c":3,"s":51,"id":7841,"u":"dust%20storm_logm","p":114,"h":1,"n":"Dust Storm"},{"c":3,"s":51,"id":7842,"u":"dutiful%20challenge_logm","p":114,"h":1,"n":"Dutiful Challenge"},{"c":3,"s":51,"id":7843,"u":"ectoplasmic%20interstice_logm","p":117,"h":1,"n":"Ectoplasmic Interstice"},{"c":3,"s":51,"id":7844,"u":"eject%20soul_logm","p":117,"h":1,"n":"Eject Soul"},{"c":3,"s":51,"id":7845,"u":"empty%20inside_logm","p":119,"h":1,"n":"Empty Inside"},{"c":3,"s":51,"id":7846,"u":"endure_logm","p":107,"h":1,"n":"Endure"},{"c":3,"s":51,"id":7847,"u":"ephemeral%20hazards_logm","p":113,"h":1,"n":"Ephemeral Hazards"},{"c":3,"s":51,"id":7848,"u":"expeditious%20excavation_logm","p":107,"h":1,"n":"Expeditious Excavation"},{"c":3,"s":51,"id":7849,"u":"fallow%20field_logm","p":113,"h":1,"n":"Fallow Field"},{"c":3,"s":51,"id":7850,"u":"feast%20of%20ashes_logm","p":107,"h":1,"n":"Feast Of Ashes"},{"c":3,"s":51,"id":7851,"u":"font%20of%20serenity_logm","p":116,"h":1,"n":"Font Of Serenity"},{"c":3,"s":51,"id":7852,"u":"foul%20miasma_logm","p":115,"h":1,"n":"Foul Miasma"},{"c":3,"s":51,"id":7853,"u":"fungal%20hyphae_logm","p":108,"h":1,"n":"Fungal Hyphae"},{"c":3,"s":51,"id":7854,"u":"ghostly%20transcription_logm","p":115,"h":1,"n":"Ghostly Transcription"},{"c":3,"s":51,"id":7855,"u":"gravity%20well_logm","p":108,"h":1,"n":"Gravity Well"},{"c":3,"s":51,"id":7856,"u":"hyperfocus_logm","p":113,"h":1,"n":"Hyperfocus"},{"c":3,"s":51,"id":7857,"u":"ill%20omen_logm","p":108,"h":1,"n":"Ill Omen"},{"c":3,"s":51,"id":7858,"u":"iron%20gut_logm","p":108,"h":1,"n":"Iron Gut"},{"c":3,"s":51,"id":7859,"u":"lament_logm","p":116,"h":1,"n":"Lament"},{"c":3,"s":51,"id":7860,"u":"liberating%20command_logm","p":108,"h":1,"n":"Liberating Command"},{"c":3,"s":51,"id":7861,"u":"message%20rune_logm","p":108,"h":1,"n":"Message Rune"},{"c":3,"s":51,"id":7862,"u":"oathkeeper's%20insignia_logm","p":114,"h":1,"n":"Oathkeeper's Insignia"},{"c":3,"s":51,"id":7863,"u":"object%20memory_logm","p":118,"h":1,"n":"Object Memory"},{"c":3,"s":51,"id":7864,"u":"overflowing%20sorrow_logm","p":116,"h":1,"n":"Overflowing Sorrow"},{"c":3,"s":51,"id":7865,"u":"parch_logm","p":114,"h":1,"n":"Parch"},{"c":3,"s":51,"id":7866,"u":"penumbral%20shroud_logm","p":109,"h":1,"n":"Penumbral Shroud"},{"c":3,"s":51,"id":7867,"u":"redact_logm","p":114,"h":1,"n":"Redact"},{"c":3,"s":51,"id":7868,"u":"reflective%20scales_logm","p":109,"h":1,"n":"Reflective Scales"},{"c":3,"s":51,"id":7869,"u":"remember%20the%20lost_logm","p":119,"h":1,"n":"Remember The Lost"},{"c":3,"s":51,"id":7870,"u":"roar%20of%20the%20wyrm_logm","p":119,"h":1,"n":"Roar Of The Wyrm"},{"c":3,"s":51,"id":7871,"u":"share%20burden_logm","p":116,"h":1,"n":"Share Burden"},{"c":3,"s":51,"id":7872,"u":"share%20lore_logm","p":109,"h":1,"n":"Share Lore"},{"c":3,"s":51,"id":7873,"u":"shattering%20gem_logm","p":109,"h":1,"n":"Shattering Gem"},{"c":3,"s":51,"id":7874,"u":"shifting%20sand_logm","p":110,"h":1,"n":"Shifting Sand"},{"c":3,"s":51,"id":7875,"u":"shockwave_logm","p":110,"h":1,"n":"Shockwave"},{"c":3,"s":51,"id":7876,"u":"show%20the%20way_logm","p":110,"h":1,"n":"Show The Way"},{"c":3,"s":51,"id":7877,"u":"slough%20skin_logm","p":110,"h":1,"n":"Slough Skin"},{"c":3,"s":51,"id":7878,"u":"stasis_logm","p":118,"h":1,"n":"Stasis"},{"c":3,"s":51,"id":7879,"u":"swarm%20form_logm","p":118,"h":1,"n":"Swarm Form"},{"c":3,"s":51,"id":7880,"u":"swarmsense_logm","p":117,"h":1,"n":"Swarmsense"},{"c":3,"s":51,"id":7881,"u":"temporary%20tool_logm","p":110,"h":1,"n":"Temporary Tool"},{"c":3,"s":51,"id":7882,"u":"tether_logm","p":111,"h":1,"n":"Tether"},{"c":3,"s":51,"id":7883,"u":"time%20beacon_logm","p":111,"h":1,"n":"Time Beacon"},{"c":3,"s":51,"id":7884,"u":"whirling%20scarves_logm","p":111,"h":1,"n":"Whirling Scarves"},{"c":3,"s":51,"id":7885,"u":"winter%20bolt_logm","p":112,"h":1,"n":"Winter Bolt"},{"c":3,"s":51,"id":7886,"u":"withering%20grasp_logm","p":112,"h":1,"n":"Withering Grasp"},{"c":3,"s":51,"id":7887,"u":"zenith%20star_logm","p":117,"h":1,"n":"Zenith Star"},{"c":3,"s":52,"id":7888,"u":"achaekek's%20clutch_lol","p":58,"h":1,"n":"Achaekek's Clutch"},{"c":3,"s":52,"id":7889,"u":"all%20is%20one%2c%20one%20is%20all_lol","p":65,"h":1,"n":"All Is One, One Is All"},{"c":3,"s":52,"id":7890,"u":"aromatic%20lure_lol","p":37,"h":1,"n":"Aromatic Lure"},{"c":3,"s":52,"id":7891,"u":"glacial%20heart_lol","p":32,"h":1,"n":"Glacial Heart"},{"c":3,"s":52,"id":7892,"u":"halcyon%20infusion_lol","p":66,"h":1,"n":"Halcyon Infusion"},{"c":3,"s":52,"id":7893,"u":"rebounding%20barrier_lol","p":37,"h":1,"n":"Rebounding Barrier"},{"c":3,"s":52,"id":7894,"u":"shall%20not%20falter%2c%20shall%20not%20rout_lol","p":69,"h":1,"n":"Shall Not Falter, Shall Not Rout"},{"c":3,"s":52,"id":7895,"u":"spirit%20object_lol","p":32,"h":1,"n":"Spirit Object"},{"c":3,"s":52,"id":7896,"u":"sun's%20fury_lol","p":101,"h":1,"n":"Sun's Fury"},{"c":3,"s":47,"id":7897,"u":"familiar%20form_lopsg","p":5500,"h":1,"n":"Familiar Form"},{"c":3,"s":47,"id":7898,"u":"perseis's%20precautions_lopsg","p":124,"h":1,"n":"Perseis's Precautions"},{"c":3,"s":47,"id":7899,"u":"spellmaster's%20ward_lopsg","p":5500,"h":1,"n":"Spellmaster's Ward"},{"c":3,"s":47,"id":7900,"u":"transcribe%20moment_lopsg","p":46,"h":1,"n":"Transcribe Moment"},{"c":3,"s":48,"id":7901,"u":"magic%20warrior%20aspect_lowg","p":95,"h":1,"n":"Magic Warrior Aspect"},{"c":3,"s":48,"id":7902,"u":"magic%20warrior%20transformation_lowg","p":95,"h":1,"n":"Magic Warrior Transformation"},{"c":3,"s":48,"id":7903,"u":"mantis%20form_lowg","p":71,"h":1,"n":"Mantis Form"},{"c":3,"s":48,"id":7904,"u":"perfect%20strike_lowg","p":83,"h":1,"n":"Perfect Strike"},{"c":3,"s":48,"id":7905,"u":"snowball_lowg","p":112,"h":1,"n":"Snowball"},{"c":3,"s":48,"id":7906,"u":"unblinking%20flame%20revelation_lowg","p":83,"h":1,"n":"Unblinking Flame Revelation"},{"c":3,"s":48,"id":7907,"u":"unbreaking%20wave%20advance_lowg","p":83,"h":1,"n":"Unbreaking Wave Advance"},{"c":3,"s":48,"id":7908,"u":"unfolding%20wind%20rush_lowg","p":83,"h":1,"n":"Unfolding Wind Rush"},{"c":3,"s":48,"id":7909,"u":"untwisting%20iron%20buffer_lowg","p":83,"h":1,"n":"Untwisting Iron Buffer"},{"c":3,"s":49,"id":7910,"u":"aberrant%20form_som","p":88,"h":1,"n":"Aberrant Form"},{"c":3,"s":49,"id":7911,"u":"angel%20form_som","p":89,"h":1,"n":"Angel Form"},{"c":3,"s":49,"id":7912,"u":"animal%20allies_som","p":89,"h":1,"n":"Animal Allies"},{"c":3,"s":49,"id":7913,"u":"approximate_som","p":90,"h":1,"n":"Approximate"},{"c":3,"s":49,"id":7914,"u":"ash%20cloud_som","p":90,"h":1,"n":"Ash Cloud"},{"c":3,"s":49,"id":7915,"u":"bandit's%20doom_som","p":90,"h":1,"n":"Bandit's Doom"},{"c":3,"s":49,"id":7916,"u":"befitting%20attire_som","p":90,"h":1,"n":"Befitting Attire"},{"c":3,"s":49,"id":7917,"u":"biting%20words_som","p":90,"h":1,"n":"Biting Words"},{"c":3,"s":49,"id":7918,"u":"blazing%20dive_som","p":90,"h":1,"n":"Blazing Dive"},{"c":3,"s":49,"id":7919,"u":"blazing%20fissure_som","p":91,"h":1,"n":"Blazing Fissure"},{"c":3,"s":49,"id":7920,"u":"blessing%20of%20defiance_som","p":91,"h":1,"n":"Blessing Of Defiance"},{"c":3,"s":49,"id":7921,"u":"blink%20charge_som","p":92,"h":1,"n":"Blink Charge"},{"c":3,"s":49,"id":7922,"u":"bloodspray%20curse_som","p":92,"h":1,"n":"Bloodspray Curse"},{"c":3,"s":49,"id":7923,"u":"boil%20blood_som","p":92,"h":1,"n":"Boil Blood"},{"c":3,"s":49,"id":7924,"u":"boost%20eidolon_som","p":144,"h":1,"n":"Boost Eidolon"},{"c":3,"s":49,"id":7925,"u":"bottomless%20stomach_som","p":92,"h":1,"n":"Bottomless Stomach"},{"c":3,"s":49,"id":7926,"u":"breadcrumbs_som","p":92,"h":1,"n":"Breadcrumbs"},{"c":3,"s":49,"id":7927,"u":"bullhorn_som","p":93,"h":1,"n":"Bullhorn"},{"c":3,"s":49,"id":7928,"u":"burning%20blossoms_som","p":93,"h":1,"n":"Burning Blossoms"},{"c":3,"s":49,"id":7929,"u":"canticle%20of%20everlasting%20grief_som","p":94,"h":1,"n":"Canticle Of Everlasting Grief"},{"c":3,"s":49,"id":7930,"u":"cascade%20countermeasure_som","p":143,"h":1,"n":"Cascade Countermeasure"},{"c":3,"s":49,"id":7931,"u":"cast%20into%20time_som","p":94,"h":1,"n":"Cast Into Time"},{"c":3,"s":49,"id":7932,"u":"catch%20your%20name_som","p":247,"h":1,"n":"Catch Your Name"},{"c":3,"s":49,"id":7933,"u":"chromatic%20armor_som","p":95,"h":1,"n":"Chromatic Armor"},{"c":3,"s":49,"id":7934,"u":"chromatic%20image_som","p":95,"h":1,"n":"Chromatic Image"},{"c":3,"s":49,"id":7935,"u":"chromatic%20ray_som","p":95,"h":1,"n":"Chromatic Ray"},{"c":3,"s":49,"id":7936,"u":"claim%20curse_som","p":95,"h":1,"n":"Claim Curse"},{"c":3,"s":49,"id":7937,"u":"clone%20companion_som","p":96,"h":1,"n":"Clone Companion"},{"c":3,"s":49,"id":7938,"u":"combustion_som","p":200,"h":1,"n":"Combustion"},{"c":3,"s":49,"id":7939,"u":"compel%20true%20name_som","p":247,"h":1,"n":"Compel True Name"},{"c":3,"s":49,"id":7940,"u":"concordant%20choir_som","p":96,"h":1,"n":"Concordant Choir"},{"c":3,"s":49,"id":7941,"u":"coral%20eruption_som","p":96,"h":1,"n":"Coral Eruption"},{"c":3,"s":49,"id":7942,"u":"corrosive%20body_som","p":96,"h":1,"n":"Corrosive Body"},{"c":3,"s":49,"id":7943,"u":"cosmic%20form_som","p":97,"h":1,"n":"Cosmic Form"},{"c":3,"s":49,"id":7944,"u":"crushing%20ground_som","p":200,"h":1,"n":"Crushing Ground"},{"c":3,"s":49,"id":7945,"u":"daemon%20form_som","p":98,"h":1,"n":"Daemon Form"},{"c":3,"s":49,"id":7946,"u":"darklight_som","p":227,"h":1,"n":"Darklight"},{"c":3,"s":49,"id":7947,"u":"day's%20weight_som","p":98,"h":1,"n":"Day's Weight"},{"c":3,"s":49,"id":7948,"u":"deity's%20strike_som","p":99,"h":1,"n":"Deity's Strike"},{"c":3,"s":49,"id":7949,"u":"demon%20form_som","p":99,"h":1,"n":"Demon Form"},{"c":3,"s":49,"id":7950,"u":"devil%20form_som","p":99,"h":1,"n":"Devil Form"},{"c":3,"s":49,"id":7951,"u":"dimensional%20assault_som","p":143,"h":1,"n":"Dimensional Assault"},{"c":3,"s":49,"id":7952,"u":"distracting%20chatter_som","p":100,"h":1,"n":"Distracting Chatter"},{"c":3,"s":49,"id":7953,"u":"divine%20armageddon_som","p":100,"h":1,"n":"Divine Armageddon"},{"c":3,"s":49,"id":7954,"u":"draw%20ire_som","p":101,"h":1,"n":"Draw Ire"},{"c":3,"s":49,"id":7955,"u":"draw%20the%20lightning_som","p":101,"h":1,"n":"Draw The Lightning"},{"c":3,"s":49,"id":7956,"u":"echoing%20weapon_som","p":101,"h":1,"n":"Echoing Weapon"},{"c":3,"s":49,"id":7957,"u":"efficient%20apport_som","p":241,"h":1,"n":"Efficient Apport"},{"c":3,"s":49,"id":7958,"u":"eidolon's%20wrath_som","p":144,"h":1,"n":"Eidolon's Wrath"},{"c":3,"s":49,"id":7959,"u":"element%20embodied_som","p":101,"h":1,"n":"Element Embodied"},{"c":3,"s":49,"id":7960,"u":"elemental%20absorption_som","p":102,"h":1,"n":"Elemental Absorption"},{"c":3,"s":49,"id":7961,"u":"elemental%20annihilation%20wave_som","p":102,"h":1,"n":"Elemental Annihilation Wave"},{"c":3,"s":49,"id":7962,"u":"elemental%20confluence_som","p":102,"h":1,"n":"Elemental Confluence"},{"c":3,"s":49,"id":7963,"u":"elemental%20gift_som","p":103,"h":1,"n":"Elemental Gift"},{"c":3,"s":49,"id":7964,"u":"elemental%20zone_som","p":104,"h":1,"n":"Elemental Zone"},{"c":3,"s":49,"id":7965,"u":"envenom%20companion_som","p":104,"h":1,"n":"Envenom Companion"},{"c":3,"s":49,"id":7966,"u":"evolution%20surge_som","p":144,"h":1,"n":"Evolution Surge"},{"c":3,"s":49,"id":7967,"u":"extend%20boost_som","p":145,"h":1,"n":"Extend Boost"},{"c":3,"s":49,"id":7968,"u":"extract%20poison_som","p":104,"h":1,"n":"Extract Poison"},{"c":3,"s":49,"id":7969,"u":"fated%20confrontation_som","p":105,"h":1,"n":"Fated Confrontation"},{"c":3,"s":49,"id":7970,"u":"feral%20shades_som","p":105,"h":1,"n":"Feral Shades"},{"c":3,"s":49,"id":7971,"u":"fey%20form_som","p":105,"h":1,"n":"Fey Form"},{"c":3,"s":49,"id":7972,"u":"flame%20vortex_som","p":106,"h":1,"n":"Flame Vortex"},{"c":3,"s":49,"id":7973,"u":"flame%20wisp_som","p":106,"h":1,"n":"Flame Wisp"},{"c":3,"s":49,"id":7974,"u":"flammable%20fumes_som","p":106,"h":1,"n":"Flammable Fumes"},{"c":3,"s":49,"id":7975,"u":"flowing%20strike_som","p":106,"h":1,"n":"Flowing Strike"},{"c":3,"s":49,"id":7976,"u":"force%20fang_som","p":143,"h":1,"n":"Force Fang"},{"c":3,"s":49,"id":7977,"u":"forceful%20hand_som","p":106,"h":1,"n":"Forceful Hand"},{"c":3,"s":49,"id":7978,"u":"frigid%20flurry_som","p":108,"h":1,"n":"Frigid Flurry"},{"c":3,"s":49,"id":7979,"u":"gale%20blast_som","p":108,"h":1,"n":"Gale Blast"},{"c":3,"s":49,"id":7980,"u":"geyser_som","p":108,"h":1,"n":"Geyser"},{"c":3,"s":49,"id":7981,"u":"glimmer%20of%20charm_som","p":108,"h":1,"n":"Glimmer Of Charm"},{"c":3,"s":49,"id":7982,"u":"gouging%20claw_som","p":109,"h":1,"n":"Gouging Claw"},{"c":3,"s":49,"id":7983,"u":"gravitational%20pull_som","p":109,"h":1,"n":"Gravitational Pull"},{"c":3,"s":49,"id":7984,"u":"guiding%20star_som","p":109,"h":1,"n":"Guiding Star"},{"c":3,"s":49,"id":7985,"u":"hasted%20assault_som","p":143,"h":1,"n":"Hasted Assault"},{"c":3,"s":49,"id":7986,"u":"haunting%20hymn_som","p":109,"h":1,"n":"Haunting Hymn"},{"c":3,"s":49,"id":7987,"u":"healing%20plaster_som","p":109,"h":1,"n":"Healing Plaster"},{"c":3,"s":49,"id":7988,"u":"healing%20well_som","p":110,"h":1,"n":"Healing Well"},{"c":3,"s":49,"id":7989,"u":"horizon%20thunder%20sphere_som","p":110,"h":1,"n":"Horizon Thunder Sphere"},{"c":3,"s":49,"id":7990,"u":"ignite%20fireworks_som","p":110,"h":1,"n":"Ignite Fireworks"},{"c":3,"s":49,"id":7991,"u":"impending%20doom_som","p":110,"h":1,"n":"Impending Doom"},{"c":3,"s":49,"id":7992,"u":"inevitable%20disaster_som","p":111,"h":1,"n":"Inevitable Disaster"},{"c":3,"s":49,"id":7993,"u":"inexhaustible%20cynicism_som","p":111,"h":1,"n":"Inexhaustible Cynicism"},{"c":3,"s":49,"id":7994,"u":"infectious%20enthusiasm_som","p":112,"h":1,"n":"Infectious Enthusiasm"},{"c":3,"s":49,"id":7995,"u":"infectious%20melody_som","p":112,"h":1,"n":"Infectious Melody"},{"c":3,"s":49,"id":7996,"u":"inner%20radiance%20torrent_som","p":112,"h":1,"n":"Inner Radiance Torrent"},{"c":3,"s":49,"id":7997,"u":"inscrutable%20mask_som","p":227,"h":1,"n":"Inscrutable Mask"},{"c":3,"s":49,"id":7998,"u":"instant%20armor_som","p":112,"h":1,"n":"Instant Armor"},{"c":3,"s":49,"id":7999,"u":"invisibility%20curtain_som","p":112,"h":1,"n":"Invisibility Curtain"},{"c":3,"s":49,"id":8000,"u":"invoke%20spirits_som","p":113,"h":1,"n":"Invoke Spirits"},{"c":3,"s":49,"id":8001,"u":"invoke%20true%20name_som","p":247,"h":1,"n":"Invoke True Name"},{"c":3,"s":49,"id":8002,"u":"juvenile%20companion_som","p":113,"h":1,"n":"Juvenile Companion"},{"c":3,"s":49,"id":8003,"u":"life%20connection_som","p":113,"h":1,"n":"Life Connection"},{"c":3,"s":49,"id":8004,"u":"lifelink%20surge_som","p":145,"h":1,"n":"Lifelink Surge"},{"c":3,"s":49,"id":8005,"u":"lose%20the%20path_som","p":113,"h":1,"n":"Lose The Path"},{"c":3,"s":49,"id":8006,"u":"lucky%20number_som","p":113,"h":1,"n":"Lucky Number"},{"c":3,"s":49,"id":8007,"u":"magic%20mailbox_som","p":114,"h":1,"n":"Magic Mailbox"},{"c":3,"s":49,"id":8008,"u":"magnetic%20acceleration_som","p":114,"h":1,"n":"Magnetic Acceleration"},{"c":3,"s":49,"id":8009,"u":"magnetic%20attraction_som","p":114,"h":1,"n":"Magnetic Attraction"},{"c":3,"s":49,"id":8010,"u":"magnetic%20repulsion_som","p":115,"h":1,"n":"Magnetic Repulsion"},{"c":3,"s":49,"id":8011,"u":"mantle%20of%20the%20frozen%20heart_som","p":115,"h":1,"n":"Mantle Of The Frozen Heart"},{"c":3,"s":49,"id":8012,"u":"mantle%20of%20the%20magma%20heart_som","p":115,"h":1,"n":"Mantle Of The Magma Heart"},{"c":3,"s":49,"id":8013,"u":"mimic%20undead_som","p":115,"h":1,"n":"Mimic Undead"},{"c":3,"s":49,"id":8014,"u":"mind%20of%20menace_som","p":116,"h":1,"n":"Mind Of Menace"},{"c":3,"s":49,"id":8015,"u":"mirror%20malefactors_som","p":116,"h":1,"n":"Mirror Malefactors"},{"c":3,"s":49,"id":8016,"u":"mirror's%20misfortune_som","p":117,"h":1,"n":"Mirror's Misfortune"},{"c":3,"s":49,"id":8017,"u":"mud%20pit_som","p":117,"h":1,"n":"Mud Pit"},{"c":3,"s":49,"id":8018,"u":"murderous%20vine_som","p":117,"h":1,"n":"Murderous Vine"},{"c":3,"s":49,"id":8019,"u":"nature's%20reprisal_som","p":117,"h":1,"n":"Nature's Reprisal"},{"c":3,"s":49,"id":8020,"u":"necromancer's%20generosity_som","p":117,"h":1,"n":"Necromancer's Generosity"},{"c":3,"s":49,"id":8021,"u":"necrotize_som","p":118,"h":1,"n":"Necrotize"},{"c":3,"s":49,"id":8022,"u":"nudge%20the%20odds_som","p":118,"h":1,"n":"Nudge The Odds"},{"c":3,"s":49,"id":8023,"u":"nullify_som","p":118,"h":1,"n":"Nullify"},{"c":3,"s":49,"id":8024,"u":"ocular%20overload_som","p":118,"h":1,"n":"Ocular Overload"},{"c":3,"s":49,"id":8025,"u":"one%20with%20the%20land_som","p":118,"h":1,"n":"One With The Land"},{"c":3,"s":49,"id":8026,"u":"oneiric%20mire_som","p":119,"h":1,"n":"Oneiric Mire"},{"c":3,"s":49,"id":8027,"u":"ooze%20form_som","p":119,"h":1,"n":"Ooze Form"},{"c":3,"s":49,"id":8028,"u":"organsight_som","p":120,"h":1,"n":"Organsight"},{"c":3,"s":49,"id":8029,"u":"painful%20vibrations_som","p":120,"h":1,"n":"Painful Vibrations"},{"c":3,"s":49,"id":8030,"u":"pernicious%20poltergeist_som","p":121,"h":1,"n":"Pernicious Poltergeist"},{"c":3,"s":49,"id":8031,"u":"persistent%20servant_som","p":121,"h":1,"n":"Persistent Servant"},{"c":3,"s":49,"id":8032,"u":"petal%20storm_som","p":121,"h":1,"n":"Petal Storm"},{"c":3,"s":49,"id":8033,"u":"phantom%20crowd_som","p":121,"h":1,"n":"Phantom Crowd"},{"c":3,"s":49,"id":8034,"u":"phantom%20prison_som","p":121,"h":1,"n":"Phantom Prison"},{"c":3,"s":49,"id":8035,"u":"pocket%20library_som","p":122,"h":1,"n":"Pocket Library"},{"c":3,"s":49,"id":8036,"u":"portrait%20of%20the%20artist_som","p":122,"h":1,"n":"Portrait Of The Artist"},{"c":3,"s":49,"id":8037,"u":"positive%20attunement_som","p":122,"h":1,"n":"Positive Attunement"},{"c":3,"s":49,"id":8038,"u":"powerful%20inhalation_som","p":201,"h":1,"n":"Powerful Inhalation"},{"c":3,"s":49,"id":8039,"u":"prismatic%20armor_som","p":122,"h":1,"n":"Prismatic Armor"},{"c":3,"s":49,"id":8040,"u":"proliferating%20eyes_som","p":122,"h":1,"n":"Proliferating Eyes"},{"c":3,"s":49,"id":8041,"u":"protect%20companion_som","p":123,"h":1,"n":"Protect Companion"},{"c":3,"s":49,"id":8042,"u":"protector%20tree_som","p":123,"h":1,"n":"Protector Tree"},{"c":3,"s":49,"id":8043,"u":"puff%20of%20poison_som","p":124,"h":1,"n":"Puff Of Poison"},{"c":3,"s":49,"id":8044,"u":"pulverizing%20cascade_som","p":201,"h":1,"n":"Pulverizing Cascade"},{"c":3,"s":49,"id":8045,"u":"quick%20sort_som","p":124,"h":1,"n":"Quick Sort"},{"c":3,"s":49,"id":8046,"u":"rapid%20adaptation_som","p":124,"h":1,"n":"Rapid Adaptation"},{"c":3,"s":49,"id":8047,"u":"ravenous%20portal_som","p":124,"h":1,"n":"Ravenous Portal"},{"c":3,"s":49,"id":8048,"u":"read%20the%20air_som","p":125,"h":1,"n":"Read The Air"},{"c":3,"s":49,"id":8049,"u":"reinforce%20eidolon_som","p":145,"h":1,"n":"Reinforce Eidolon"},{"c":3,"s":49,"id":8050,"u":"repelling%20pulse_som","p":125,"h":1,"n":"Repelling Pulse"},{"c":3,"s":49,"id":8051,"u":"replicate_som","p":125,"h":1,"n":"Replicate"},{"c":3,"s":49,"id":8052,"u":"restyle_som","p":126,"h":1,"n":"Restyle"},{"c":3,"s":49,"id":8053,"u":"rewinding%20step_som","p":126,"h":1,"n":"Rewinding Step"},{"c":3,"s":49,"id":8054,"u":"rip%20the%20spirit_som","p":126,"h":1,"n":"Rip The Spirit"},{"c":3,"s":49,"id":8055,"u":"rising%20surf_som","p":201,"h":1,"n":"Rising Surf"},{"c":3,"s":49,"id":8056,"u":"roaring%20applause_som","p":126,"h":1,"n":"Roaring Applause"},{"c":3,"s":49,"id":8057,"u":"rouse%20skeletons_som","p":126,"h":1,"n":"Rouse Skeletons"},{"c":3,"s":49,"id":8058,"u":"runic%20impression_som","p":143,"h":1,"n":"Runic Impression"},{"c":3,"s":49,"id":8059,"u":"sanguine%20mist_som","p":127,"h":1,"n":"Sanguine Mist"},{"c":3,"s":49,"id":8060,"u":"scatter%20scree_som","p":127,"h":1,"n":"Scatter Scree"},{"c":3,"s":49,"id":8061,"u":"schadenfreude_som","p":127,"h":1,"n":"Schadenfreude"},{"c":3,"s":49,"id":8062,"u":"scorching%20ray_som","p":127,"h":1,"n":"Scorching Ray"},{"c":3,"s":49,"id":8063,"u":"seashell%20of%20stolen%20sound_som","p":127,"h":1,"n":"Seashell Of Stolen Sound"},{"c":3,"s":49,"id":8064,"u":"shadow%20army_som","p":128,"h":1,"n":"Shadow Army"},{"c":3,"s":49,"id":8065,"u":"shadow%20projectile_som","p":128,"h":1,"n":"Shadow Projectile"},{"c":3,"s":49,"id":8066,"u":"shadow%20raid_som","p":129,"h":1,"n":"Shadow Raid"},{"c":3,"s":49,"id":8067,"u":"shielding%20strike_som","p":143,"h":1,"n":"Shielding Strike"},{"c":3,"s":49,"id":8068,"u":"shift%20blame_som","p":129,"h":1,"n":"Shift Blame"},{"c":3,"s":49,"id":8069,"u":"shooting%20star_som","p":143,"h":1,"n":"Shooting Star"},{"c":3,"s":49,"id":8070,"u":"sonata%20span_som","p":129,"h":1,"n":"Sonata Span"},{"c":3,"s":49,"id":8071,"u":"soothing%20blossoms_som","p":129,"h":1,"n":"Soothing Blossoms"},{"c":3,"s":49,"id":8072,"u":"soothing%20spring_som","p":129,"h":1,"n":"Soothing Spring"},{"c":3,"s":49,"id":8073,"u":"spinning%20staff_som","p":144,"h":1,"n":"Spinning Staff"},{"c":3,"s":49,"id":8074,"u":"spiritual%20attunement_som","p":130,"h":1,"n":"Spiritual Attunement"},{"c":3,"s":49,"id":8075,"u":"spout_som","p":130,"h":1,"n":"Spout"},{"c":3,"s":49,"id":8076,"u":"stone%20lance_som","p":201,"h":1,"n":"Stone Lance"},{"c":3,"s":49,"id":8077,"u":"sudden%20recollection_som","p":130,"h":1,"n":"Sudden Recollection"},{"c":3,"s":49,"id":8078,"u":"summon%20anarch_som","p":131,"h":1,"n":"Summon Anarch"},{"c":3,"s":49,"id":8079,"u":"summon%20archmage_som","p":131,"h":1,"n":"Summon Archmage"},{"c":3,"s":49,"id":8080,"u":"summon%20axiom_som","p":131,"h":1,"n":"Summon Axiom"},{"c":3,"s":49,"id":8081,"u":"summon%20deific%20herald_som","p":131,"h":1,"n":"Summon Deific Herald"},{"c":3,"s":49,"id":8082,"u":"summon%20draconic%20legion_som","p":133,"h":1,"n":"Summon Draconic Legion"},{"c":3,"s":49,"id":8083,"u":"summon%20kaiju_som","p":133,"h":1,"n":"Summon Kaiju"},{"c":3,"s":49,"id":8084,"u":"summon%20lesser%20servitor_som","p":134,"h":1,"n":"Summon Lesser Servitor"},{"c":3,"s":49,"id":8085,"u":"summoner's%20precaution_som","p":135,"h":1,"n":"Summoner's Precaution"},{"c":3,"s":49,"id":8086,"u":"summoner's%20visage_som","p":135,"h":1,"n":"Summoner's Visage"},{"c":3,"s":49,"id":8087,"u":"synchronize_som","p":135,"h":1,"n":"Synchronize"},{"c":3,"s":49,"id":8088,"u":"tame_som","p":135,"h":1,"n":"Tame"},{"c":3,"s":49,"id":8089,"u":"tempest%20of%20shades_som","p":135,"h":1,"n":"Tempest Of Shades"},{"c":3,"s":49,"id":8090,"u":"temporary%20glyph_som","p":136,"h":1,"n":"Temporary Glyph"},{"c":3,"s":49,"id":8091,"u":"thicket%20of%20knives_som","p":136,"h":1,"n":"Thicket Of Knives"},{"c":3,"s":49,"id":8092,"u":"thundering%20dominance_som","p":136,"h":1,"n":"Thundering Dominance"},{"c":3,"s":49,"id":8093,"u":"thunderous%20strike_som","p":144,"h":1,"n":"Thunderous Strike"},{"c":3,"s":49,"id":8094,"u":"time%20jump_som","p":136,"h":1,"n":"Time Jump"},{"c":3,"s":49,"id":8095,"u":"timely%20tutor_som","p":137,"h":1,"n":"Timely Tutor"},{"c":3,"s":49,"id":8096,"u":"tortoise%20and%20the%20hare_som","p":137,"h":1,"n":"Tortoise And The Hare"},{"c":3,"s":49,"id":8097,"u":"umbral%20extraction_som","p":137,"h":1,"n":"Umbral Extraction"},{"c":3,"s":49,"id":8098,"u":"umbral%20graft_som","p":137,"h":1,"n":"Umbral Graft"},{"c":3,"s":49,"id":8099,"u":"unexpected%20transposition_som","p":138,"h":1,"n":"Unexpected Transposition"},{"c":3,"s":49,"id":8100,"u":"unfetter%20eidolon_som","p":145,"h":1,"n":"Unfetter Eidolon"},{"c":3,"s":49,"id":8101,"u":"unspeakable%20shadow_som","p":138,"h":1,"n":"Unspeakable Shadow"},{"c":3,"s":49,"id":8102,"u":"updraft_som","p":201,"h":1,"n":"Updraft"},{"c":3,"s":49,"id":8103,"u":"variable%20gravity_som","p":138,"h":1,"n":"Variable Gravity"},{"c":3,"s":49,"id":8104,"u":"voracious%20gestalt_som","p":139,"h":1,"n":"Voracious Gestalt"},{"c":3,"s":49,"id":8105,"u":"wall%20of%20water_som","p":139,"h":1,"n":"Wall Of Water"},{"c":3,"s":49,"id":8106,"u":"warding%20aggression_som","p":140,"h":1,"n":"Warding Aggression"},{"c":3,"s":49,"id":8107,"u":"warrior's%20regret_som","p":140,"h":1,"n":"Warrior's Regret"},{"c":3,"s":49,"id":8108,"u":"wash%20your%20luck_som","p":140,"h":1,"n":"Wash Your Luck"},{"c":3,"s":49,"id":8109,"u":"web%20of%20eyes_som","p":140,"h":1,"n":"Web Of Eyes"},{"c":3,"s":49,"id":8110,"u":"whirlwind_som","p":141,"h":1,"n":"Whirlwind"},{"c":3,"s":49,"id":8111,"u":"wildfire_som","p":201,"h":1,"n":"Wildfire"},{"c":3,"s":49,"id":8112,"u":"winning%20streak_som","p":141,"h":1,"n":"Winning Streak"},{"c":3,"s":49,"id":8113,"u":"zero%20gravity_som","p":141,"h":1,"n":"Zero Gravity"},{"c":3,"s":39,"id":8114,"u":"airburst_sot1","p":76,"h":1,"n":"Airburst"},{"c":3,"s":39,"id":8115,"u":"friendfetch_sot1","p":77,"h":1,"n":"Friendfetch"},{"c":3,"s":39,"id":8116,"u":"grave%20impressions_sot1","p":77,"h":1,"n":"Grave Impressions"},{"c":3,"s":39,"id":8117,"u":"impeccable%20flow_sot1","p":76,"h":1,"n":"Impeccable Flow"},{"c":3,"s":39,"id":8118,"u":"mind%20games_sot1","p":77,"h":1,"n":"Mind Games"},{"c":3,"s":39,"id":8119,"u":"stumbling%20curse_sot1","p":75,"h":1,"n":"Stumbling Curse"},{"c":3,"s":39,"id":8120,"u":"verminous%20lure_sot1","p":76,"h":1,"n":"Verminous Lure"},{"c":23,"s":5,"id":8121,"u":"alchemist_crb","p":71,"h":1,"n":"Alchemist"},{"c":23,"s":5,"id":8122,"u":"barbarian_crb","p":83,"h":1,"n":"Barbarian"},{"c":23,"s":5,"id":8123,"u":"bard_crb","p":95,"h":1,"n":"Bard"},{"c":23,"s":5,"id":8124,"u":"champion_crb","p":105,"h":1,"n":"Champion"},{"c":23,"s":5,"id":8125,"u":"cleric_crb","p":117,"h":1,"n":"Cleric"},{"c":23,"s":5,"id":8126,"u":"druid_crb","p":129,"h":1,"n":"Druid"},{"c":23,"s":5,"id":8127,"u":"fighter_crb","p":140,"h":1,"n":"Fighter"},{"c":23,"s":2,"id":8128,"u":"gunslinger_g%26g","p":105,"h":1,"n":"Gunslinger"},{"c":23,"s":2,"id":8129,"u":"inventor_g%26g","p":15,"h":1,"n":"Inventor"},{"c":23,"s":4,"id":8130,"u":"investigator_apg","p":55,"h":1,"n":"Investigator"},{"c":23,"s":49,"id":8131,"u":"magus_som","p":35,"h":1,"n":"Magus"},{"c":23,"s":5,"id":8132,"u":"monk_crb","p":155,"h":1,"n":"Monk"},{"c":23,"s":4,"id":8133,"u":"oracle_apg","p":67,"h":1,"n":"Oracle"},{"c":23,"s":5,"id":8134,"u":"ranger_crb","p":167,"h":1,"n":"Ranger"},{"c":23,"s":5,"id":8135,"u":"rogue_crb","p":178,"h":1,"n":"Rogue"},{"c":23,"s":5,"id":8136,"u":"sorcerer_crb","p":191,"h":1,"n":"Sorcerer"},{"c":23,"s":49,"id":8137,"u":"summoner_som","p":51,"h":1,"n":"Summoner"},{"c":23,"s":4,"id":8138,"u":"swashbuckler_apg","p":83,"h":1,"n":"Swashbuckler"},{"c":23,"s":4,"id":8139,"u":"witch_apg","p":94,"h":1,"n":"Witch"},{"c":23,"s":5,"id":8140,"u":"wizard_crb","p":203,"h":1,"n":"Wizard"},{"c":24,"s":5,"id":8142,"u":"alchemist_crb,state:sub-bomber-crb=b1","p":73,"h":1,"b":"Bomber","n":"Bomber (Alchemist)"},{"c":24,"s":5,"id":8143,"u":"alchemist_crb,state:sub-chirurgeon-crb=b1","p":73,"h":1,"b":"Chirurgeon","n":"Chirurgeon (Alchemist)"},{"c":24,"s":5,"id":8144,"u":"alchemist_crb,state:sub-mutagenist-crb=b1","p":73,"h":1,"b":"Mutagenist","n":"Mutagenist (Alchemist)"},{"c":24,"s":4,"id":8145,"u":"alchemist_crb,state:sub-toxicologist-apg=b1","p":106,"h":1,"b":"Toxicologist","n":"Toxicologist (Alchemist)"},{"c":24,"s":5,"id":8147,"u":"barbarian_crb,state:sub-animal-crb=b1","p":86,"h":1,"b":"Animal","n":"Animal (Barbarian)"},{"c":24,"s":5,"id":8148,"u":"barbarian_crb,state:sub-dragon-crb=b1","p":86,"h":1,"b":"Dragon","n":"Dragon (Barbarian)"},{"c":24,"s":5,"id":8149,"u":"barbarian_crb,state:sub-fury-crb=b1","p":87,"h":1,"b":"Fury","n":"Fury (Barbarian)"},{"c":24,"s":5,"id":8150,"u":"barbarian_crb,state:sub-giant-crb=b1","p":87,"h":1,"b":"Giant","n":"Giant (Barbarian)"},{"c":24,"s":5,"id":8151,"u":"barbarian_crb,state:sub-spirit-crb=b1","p":87,"h":1,"b":"Spirit","n":"Spirit (Barbarian)"},{"c":24,"s":4,"id":8152,"u":"barbarian_crb,state:sub-superstition-apg=b1","p":108,"h":1,"b":"Superstition","n":"Superstition (Barbarian)"},{"c":24,"s":5,"id":8154,"u":"bard_crb,state:sub-enigma-crb=b1","p":97,"h":1,"b":"Enigma","n":"Enigma (Bard)"},{"c":24,"s":5,"id":8155,"u":"bard_crb,state:sub-maestro-crb=b1","p":97,"h":1,"b":"Maestro","n":"Maestro (Bard)"},{"c":24,"s":5,"id":8156,"u":"bard_crb,state:sub-polymath-crb=b1","p":97,"h":1,"b":"Polymath","n":"Polymath (Bard)"},{"c":24,"s":4,"id":8157,"u":"bard_crb,state:sub-warrior-apg=b1","p":112,"h":1,"b":"Warrior","n":"Warrior (Bard)"},{"c":24,"s":5,"id":8159,"u":"champion_crb,state:sub-paladin-crb=b1","p":106,"h":1,"b":"Paladin","n":"Paladin (Champion)"},{"c":24,"s":5,"id":8160,"u":"champion_crb,state:sub-redeemer-crb=b1","p":106,"h":1,"b":"Redeemer","n":"Redeemer (Champion)"},{"c":24,"s":5,"id":8161,"u":"champion_crb,state:sub-liberator-crb=b1","p":106,"h":1,"b":"Liberator","n":"Liberator (Champion)"},{"c":24,"s":4,"id":8162,"u":"champion_crb,state:sub-tyrant-apg=b1","p":116,"h":1,"b":"Tyrant","n":"Tyrant (Champion)"},{"c":24,"s":4,"id":8163,"u":"champion_crb,state:sub-desecrator-apg=b1","p":116,"h":1,"b":"Desecrator","n":"Desecrator (Champion)"},{"c":24,"s":4,"id":8164,"u":"champion_crb,state:sub-antipaladin-apg=b1","p":116,"h":1,"b":"Antipaladin","n":"Antipaladin (Champion)"},{"c":24,"s":5,"id":8166,"u":"cleric_crb,state:sub-cloistered-crb=b1","p":119,"h":1,"b":"Cloistered Cleric","n":"Cloistered Cleric (Cleric)"},{"c":24,"s":5,"id":8167,"u":"cleric_crb,state:sub-warpriest-crb=b1","p":120,"h":1,"b":"Warpriest","n":"Warpriest (Cleric)"},{"c":24,"s":5,"id":8169,"u":"druid_crb,state:sub-animal-crb=b1","p":131,"h":1,"b":"Animal","n":"Animal (Druid)"},{"c":24,"s":5,"id":8170,"u":"druid_crb,state:sub-leaf-crb=b1","p":131,"h":1,"b":"Leaf","n":"Leaf (Druid)"},{"c":24,"s":5,"id":8171,"u":"druid_crb,state:sub-storm-crb=b1","p":132,"h":1,"b":"Storm","n":"Storm (Druid)"},{"c":24,"s":5,"id":8172,"u":"druid_crb,state:sub-wild-crb=b1","p":132,"h":1,"b":"Wild","n":"Wild (Druid)"},{"c":24,"s":49,"id":8173,"u":"druid_crb,state:sub-flame-som=b1","p":198,"h":1,"b":"Flame","n":"Flame (Druid)"},{"c":24,"s":49,"id":8174,"u":"druid_crb,state:sub-stone-som=b1","p":198,"h":1,"b":"Stone","n":"Stone (Druid)"},{"c":24,"s":49,"id":8175,"u":"druid_crb,state:sub-wave-som=b1","p":198,"h":1,"b":"Wave","n":"Wave (Druid)"},{"c":24,"s":2,"id":8178,"u":"gunslinger_g%26g,state:sub-drifter-gg=b1","p":108,"h":1,"b":"Drifter","n":"Drifter (Gunslinger)"},{"c":24,"s":2,"id":8179,"u":"gunslinger_g%26g,state:sub-pistolero-gg=b1","p":109,"h":1,"b":"Pistolero","n":"Pistolero (Gunslinger)"},{"c":24,"s":2,"id":8180,"u":"gunslinger_g%26g,state:sub-sniper-gg=b1","p":109,"h":1,"b":"Sniper","n":"Sniper (Gunslinger)"},{"c":24,"s":2,"id":8181,"u":"gunslinger_g%26g,state:sub-vanguard-gg=b1","p":110,"h":1,"b":"Vanguard","n":"Vanguard (Gunslinger)"},{"c":24,"s":2,"id":8183,"u":"inventor_g%26g,state:sub-armor-gg=b1","p":16,"h":1,"b":"Armor","n":"Armor (Inventor)"},{"c":24,"s":2,"id":8184,"u":"inventor_g%26g,state:sub-construct-gg=b1","p":16,"h":1,"b":"Construct","n":"Construct (Inventor)"},{"c":24,"s":2,"id":8185,"u":"inventor_g%26g,state:sub-weapon-gg=b1","p":16,"h":1,"b":"Weapon","n":"Weapon (Inventor)"},{"c":24,"s":4,"id":8187,"u":"investigator_apg,state:sub-alchemical-sciences-apg=b1","p":57,"h":1,"b":"Alchemical Sciences","n":"Alchemical Sciences (Investigator)"},{"c":24,"s":4,"id":8188,"u":"investigator_apg,state:sub-empiricism-apg=b1","p":57,"h":1,"b":"Empiricism","n":"Empiricism (Investigator)"},{"c":24,"s":4,"id":8189,"u":"investigator_apg,state:sub-forensic-medicine-apg=b1","p":58,"h":1,"b":"Forensic Medicine","n":"Forensic Medicine (Investigator)"},{"c":24,"s":4,"id":8190,"u":"investigator_apg,state:sub-interrogation-apg=b1","p":58,"h":1,"b":"Interrogation","n":"Interrogation (Investigator)"},{"c":24,"s":49,"id":8192,"u":"magus_som,state:sub-inexorable-iron-som=b1","p":39,"h":1,"b":"Inexorable Iron","n":"Inexorable Iron (Magus)"},{"c":24,"s":49,"id":8193,"u":"magus_som,state:sub-laughing-shadow-som=b1","p":39,"h":1,"b":"Laughing Shadow","n":"Laughing Shadow (Magus)"},{"c":24,"s":49,"id":8194,"u":"magus_som,state:sub-sparkling-targe-som=b1","p":39,"h":1,"b":"Sparkling Targe","n":"Sparkling Targe (Magus)"},{"c":24,"s":49,"id":8195,"u":"magus_som,state:sub-starlit-span-som=b1","p":39,"h":1,"b":"Starlit Span","n":"Starlit Span (Magus)"},{"c":24,"s":49,"id":8196,"u":"magus_som,state:sub-twisting-tree-som=b1","p":40,"h":1,"b":"Twisting Tree","n":"Twisting Tree (Magus)"},{"c":24,"s":4,"id":8199,"u":"oracle_apg,state:sub-ancestors-apg=b1","p":73,"h":1,"b":"Ancestors","n":"Ancestors (Oracle)"},{"c":24,"s":4,"id":8200,"u":"oracle_apg,state:sub-battle-apg=b1","p":74,"h":1,"b":"Battle","n":"Battle (Oracle)"},{"c":24,"s":4,"id":8201,"u":"oracle_apg,state:sub-bones-apg=b1","p":75,"h":1,"b":"Bones","n":"Bones (Oracle)"},{"c":24,"s":4,"id":8202,"u":"oracle_apg,state:sub-cosmos-apg=b1","p":75,"h":1,"b":"Cosmos","n":"Cosmos (Oracle)"},{"c":24,"s":4,"id":8203,"u":"oracle_apg,state:sub-flames-apg=b1","p":76,"h":1,"b":"Flames","n":"Flames (Oracle)"},{"c":24,"s":4,"id":8204,"u":"oracle_apg,state:sub-life-apg=b1","p":77,"h":1,"b":"Life","n":"Life (Oracle)"},{"c":24,"s":4,"id":8205,"u":"oracle_apg,state:sub-lore-apg=b1","p":77,"h":1,"b":"Lore","n":"Lore (Oracle)"},{"c":24,"s":4,"id":8206,"u":"oracle_apg,state:sub-tempest-apg=b1","p":78,"h":1,"b":"Tempest","n":"Tempest (Oracle)"},{"c":24,"s":5,"id":8208,"u":"ranger_crb,state:sub-flurry-crb=b1","p":168,"h":1,"b":"Flurry","n":"Flurry (Ranger)"},{"c":24,"s":5,"id":8209,"u":"ranger_crb,state:sub-precision-crb=b1","p":168,"h":1,"b":"Precision","n":"Precision (Ranger)"},{"c":24,"s":5,"id":8210,"u":"ranger_crb,state:sub-outwit-crb=b1","p":168,"h":1,"b":"Outwit","n":"Outwit (Ranger)"},{"c":24,"s":4,"id":8212,"u":"rogue_crb,state:sub-eldritch-trickster-apg=b1","p":134,"h":1,"b":"Eldritch Trickster","n":"Eldritch Trickster (Rogue)"},{"c":24,"s":4,"id":8213,"u":"rogue_crb,state:sub-mastermind-apg=b1","p":134,"h":1,"b":"Mastermind","n":"Mastermind (Rogue)"},{"c":24,"s":5,"id":8214,"u":"rogue_crb,state:sub-ruffian-crb=b1","p":180,"h":1,"b":"Ruffian","n":"Ruffian (Rogue)"},{"c":24,"s":5,"id":8215,"u":"rogue_crb,state:sub-scoundrel-crb=b1","p":180,"h":1,"b":"Scoundrel","n":"Scoundrel (Rogue)"},{"c":24,"s":5,"id":8216,"u":"rogue_crb,state:sub-thief-crb=b1","p":180,"h":1,"b":"Thief","n":"Thief (Rogue)"},{"c":24,"s":5,"id":8218,"u":"sorcerer_crb,state:sub-aberrant-crb=b1","p":195,"h":1,"b":"Aberrant","n":"Aberrant (Sorcerer)"},{"c":24,"s":5,"id":8219,"u":"sorcerer_crb,state:sub-angelic-crb=b1","p":195,"h":1,"b":"Angelic","n":"Angelic (Sorcerer)"},{"c":24,"s":5,"id":8220,"u":"sorcerer_crb,state:sub-demonic-crb=b1","p":195,"h":1,"b":"Demonic","n":"Demonic (Sorcerer)"},{"c":24,"s":5,"id":8221,"u":"sorcerer_crb,state:sub-diabolic-crb=b1","p":196,"h":1,"b":"Diabolic","n":"Diabolic (Sorcerer)"},{"c":24,"s":0,"id":8222,"u":"sorcerer_crb,state:sub-wyrmblessed-lome=b1","p":75,"h":1,"b":"Wyrmblessed","n":"Wyrmblessed (Sorcerer)"},{"c":24,"s":5,"id":8223,"u":"sorcerer_crb,state:sub-draconic-crb=b1","p":196,"h":1,"b":"Draconic","n":"Draconic (Sorcerer)"},{"c":24,"s":5,"id":8224,"u":"sorcerer_crb,state:sub-elemental-crb=b1","p":196,"h":1,"b":"Elemental","n":"Elemental (Sorcerer)"},{"c":24,"s":5,"id":8225,"u":"sorcerer_crb,state:sub-fey-crb=b1","p":197,"h":1,"b":"Fey","n":"Fey (Sorcerer)"},{"c":24,"s":5,"id":8226,"u":"sorcerer_crb,state:sub-hag-crb=b1","p":197,"h":1,"b":"Hag","n":"Hag (Sorcerer)"},{"c":24,"s":5,"id":8227,"u":"sorcerer_crb,state:sub-imperial-crb=b1","p":198,"h":1,"b":"Imperial","n":"Imperial (Sorcerer)"},{"c":24,"s":5,"id":8228,"u":"sorcerer_crb,state:sub-undead-crb=b1","p":198,"h":1,"b":"Undead","n":"Undead (Sorcerer)"},{"c":24,"s":4,"id":8229,"u":"sorcerer_crb,state:sub-genie-apg=b1","p":138,"h":1,"b":"Genie","n":"Genie (Sorcerer)"},{"c":24,"s":4,"id":8230,"u":"sorcerer_crb,state:sub-nymph-apg=b1","p":138,"h":1,"b":"Nymph","n":"Nymph (Sorcerer)"},{"c":24,"s":4,"id":8231,"u":"sorcerer_crb,state:sub-psychopomp-apg=b1","p":138,"h":1,"b":"Psychopomp","n":"Psychopomp (Sorcerer)"},{"c":24,"s":4,"id":8232,"u":"sorcerer_crb,state:sub-shadow-apg=b1","p":138,"h":1,"b":"Shadow","n":"Shadow (Sorcerer)"},{"c":24,"s":36,"id":8233,"u":"sorcerer_crb,state:sub-phoenix-frp3=b1","p":74,"h":1,"b":"Phoenix","n":"Phoenix (Sorcerer)"},{"c":24,"s":49,"id":8235,"u":"summoner_som,state:sub-angel-som=b1","p":59,"h":1,"b":"Angel","n":"Angel (Summoner)"},{"c":24,"s":49,"id":8236,"u":"summoner_som,state:sub-anger-phantom-som=b1","p":59,"h":1,"b":"Anger Phantom","n":"Anger Phantom (Summoner)"},{"c":24,"s":49,"id":8237,"u":"summoner_som,state:sub-beast-som=b1","p":61,"h":1,"b":"Beast","n":"Beast (Summoner)"},{"c":24,"s":49,"id":8238,"u":"summoner_som,state:sub-construct-som=b1","p":61,"h":1,"b":"Construct","n":"Construct (Summoner)"},{"c":24,"s":49,"id":8239,"u":"summoner_som,state:sub-demon-som=b1","p":62,"h":1,"b":"Demon","n":"Demon (Summoner)"},{"c":24,"s":49,"id":8240,"u":"summoner_som,state:sub-devotion-phantom-som=b1","p":63,"h":1,"b":"Devotion Phantom","n":"Devotion Phantom (Summoner)"},{"c":24,"s":49,"id":8241,"u":"summoner_som,state:sub-dragon-som=b1","p":63,"h":1,"b":"Dragon","n":"Dragon (Summoner)"},{"c":24,"s":49,"id":8242,"u":"summoner_som,state:sub-fey-som=b1","p":64,"h":1,"b":"Fey","n":"Fey (Summoner)"},{"c":24,"s":49,"id":8243,"u":"summoner_som,state:sub-plant-som=b1","p":65,"h":1,"b":"Plant","n":"Plant (Summoner)"},{"c":24,"s":49,"id":8244,"u":"summoner_som,state:sub-psychopomp-som=b1","p":66,"h":1,"b":"Psychopomp","n":"Psychopomp (Summoner)"},{"c":24,"s":4,"id":8246,"u":"swashbuckler_apg,state:sub-battledancer-apg=b1","p":84,"h":1,"b":"Battledancer","n":"Battledancer (Swashbuckler)"},{"c":24,"s":4,"id":8247,"u":"swashbuckler_apg,state:sub-braggart-apg=b1","p":84,"h":1,"b":"Braggart","n":"Braggart (Swashbuckler)"},{"c":24,"s":4,"id":8248,"u":"swashbuckler_apg,state:sub-fencer-apg=b1","p":84,"h":1,"b":"Fencer","n":"Fencer (Swashbuckler)"},{"c":24,"s":4,"id":8249,"u":"swashbuckler_apg,state:sub-gymnast-apg=b1","p":84,"h":1,"b":"Gymnast","n":"Gymnast (Swashbuckler)"},{"c":24,"s":4,"id":8250,"u":"swashbuckler_apg,state:sub-wit-apg=b1","p":85,"h":1,"b":"Wit","n":"Wit (Swashbuckler)"},{"c":24,"s":52,"id":8252,"u":"witch_apg,state:sub-baba-yaga-lol=b1","p":32,"h":1,"b":"Baba Yaga","n":"Baba Yaga (Witch)"},{"c":24,"s":4,"id":8253,"u":"witch_apg,state:sub-curse-apg=b1","p":99,"h":1,"b":"Curse","n":"Curse (Witch)"},{"c":24,"s":4,"id":8254,"u":"witch_apg,state:sub-fate-apg=b1","p":99,"h":1,"b":"Fate","n":"Fate (Witch)"},{"c":24,"s":4,"id":8255,"u":"witch_apg,state:sub-fervor-apg=b1","p":99,"h":1,"b":"Fervor","n":"Fervor (Witch)"},{"c":24,"s":4,"id":8256,"u":"witch_apg,state:sub-night-apg=b1","p":99,"h":1,"b":"Night","n":"Night (Witch)"},{"c":24,"s":4,"id":8257,"u":"witch_apg,state:sub-rune-apg=b1","p":99,"h":1,"b":"Rune","n":"Rune (Witch)"},{"c":24,"s":4,"id":8258,"u":"witch_apg,state:sub-wild-apg=b1","p":99,"h":1,"b":"Wild","n":"Wild (Witch)"},{"c":24,"s":4,"id":8259,"u":"witch_apg,state:sub-winter-apg=b1","p":208,"h":1,"b":"Winter","n":"Winter (Witch)"},{"c":24,"s":5,"id":8261,"u":"wizard_crb,state:sub-abjuration-crb=b1","p":207,"h":1,"b":"Abjuration","n":"Abjuration (Wizard)"},{"c":24,"s":5,"id":8262,"u":"wizard_crb,state:sub-conjuration-crb=b1","p":207,"h":1,"b":"Conjuration","n":"Conjuration (Wizard)"},{"c":24,"s":5,"id":8263,"u":"wizard_crb,state:sub-divination-crb=b1","p":208,"h":1,"b":"Divination","n":"Divination (Wizard)"},{"c":24,"s":5,"id":8264,"u":"wizard_crb,state:sub-enchantment-crb=b1","p":208,"h":1,"b":"Enchantment","n":"Enchantment (Wizard)"},{"c":24,"s":5,"id":8265,"u":"wizard_crb,state:sub-evocation-crb=b1","p":208,"h":1,"b":"Evocation","n":"Evocation (Wizard)"},{"c":24,"s":5,"id":8266,"u":"wizard_crb,state:sub-illusion-crb=b1","p":208,"h":1,"b":"Illusion","n":"Illusion (Wizard)"},{"c":24,"s":5,"id":8267,"u":"wizard_crb,state:sub-necromancy-crb=b1","p":208,"h":1,"b":"Necromancy","n":"Necromancy (Wizard)"},{"c":24,"s":5,"id":8268,"u":"wizard_crb,state:sub-transmutation-crb=b1","p":208,"h":1,"b":"Transmutation","n":"Transmutation (Wizard)"},{"c":24,"s":5,"id":8269,"u":"wizard_crb,state:sub-universalist-crb=b1","p":209,"h":1,"b":"Universalist","n":"Universalist (Wizard)"},{"c":24,"s":5,"id":8270,"u":"wizard_crb,state:sub-improved-familiar-attunement-crb=b1","p":205,"h":1,"b":"Improved Familiar Attunement","n":"Improved Familiar Attunement (Wizard)"},{"c":24,"s":5,"id":8271,"u":"wizard_crb,state:sub-metamagical-experimentation-crb=b1","p":205,"h":1,"b":"Metamagical Experimentation","n":"Metamagical Experimentation (Wizard)"},{"c":24,"s":5,"id":8272,"u":"wizard_crb,state:sub-spell-blending-crb=b1","p":206,"h":1,"b":"Spell Blending","n":"Spell Blending (Wizard)"},{"c":24,"s":5,"id":8273,"u":"wizard_crb,state:sub-spell-substitution-crb=b1","p":206,"h":1,"b":"Spell Substitution","n":"Spell Substitution (Wizard)"},{"c":24,"s":4,"id":8274,"u":"wizard_crb,state:sub-staff-nexus-apg=b1","p":142,"h":1,"b":"Staff Nexus","n":"Staff Nexus (Wizard)"},{"c":5,"s":"CRB","id":8276,"u":"ancestry%20and%20background_alchemist_crb_1_crb","p":72,"h":1,"n":"Alchemist 1; Ancestry and Background","uh":"alchemist_crb,state:feature=s0-0"},{"c":5,"s":"CRB","id":8278,"u":"initial%20proficiencies_alchemist_crb_1_crb","p":72,"h":1,"n":"Alchemist 1; Initial Proficiencies","uh":"alchemist_crb,state:feature=s0-1"},{"c":5,"s":"CRB","id":8280,"u":"alchemy_alchemist_crb_1_crb","p":72,"h":1,"n":"Alchemist 1; Alchemy","uh":"alchemist_crb,state:feature=s0-2"},{"c":5,"s":"CRB","id":8282,"u":"formula%20book_alchemist_crb_1_crb","p":73,"h":1,"n":"Alchemist 1; Formula Book","uh":"alchemist_crb,state:feature=s0-3"},{"c":5,"s":"CRB","id":8284,"u":"research%20field_alchemist_crb_1_crb","p":73,"h":1,"n":"Alchemist 1; Research Field","uh":"alchemist_crb,state:feature=s0-4"},{"c":5,"s":"CRB","id":8286,"u":"alchemist%20feats_alchemist_crb_1_crb","p":73,"h":1,"n":"Alchemist 1; Alchemist Feats","uh":"alchemist_crb,state:feature=s0-5"},{"c":5,"s":"CRB","id":8288,"u":"skill%20feats_alchemist_crb_2_crb","p":73,"h":1,"n":"Alchemist 2; Skill Feats","uh":"alchemist_crb,state:feature=s1-0"},{"c":5,"s":"CRB","id":8290,"u":"general%20feats_alchemist_crb_3_crb","p":73,"h":1,"n":"Alchemist 3; General Feats","uh":"alchemist_crb,state:feature=s2-0"},{"c":5,"s":"CRB","id":8292,"u":"skill%20increases_alchemist_crb_3_crb","p":74,"h":1,"n":"Alchemist 3; Skill Increases","uh":"alchemist_crb,state:feature=s2-1"},{"c":5,"s":"CRB","id":8294,"u":"ability%20boosts_alchemist_crb_5_crb","p":74,"h":1,"n":"Alchemist 5; Ability Boosts","uh":"alchemist_crb,state:feature=s4-0"},{"c":5,"s":"CRB","id":8296,"u":"ancestry%20feats_alchemist_crb_5_crb","p":74,"h":1,"n":"Alchemist 5; Ancestry Feats","uh":"alchemist_crb,state:feature=s4-1"},{"c":5,"s":"CRB","id":8298,"u":"field%20discovery_alchemist_crb_5_crb","p":74,"h":1,"n":"Alchemist 5; Field Discovery","uh":"alchemist_crb,state:feature=s4-2"},{"c":5,"s":"CRB","id":8300,"u":"powerful%20alchemy_alchemist_crb_5_crb","p":74,"h":1,"n":"Alchemist 5; Powerful Alchemy","uh":"alchemist_crb,state:feature=s4-0"},{"c":5,"s":"CRB","id":8302,"u":"alchemical%20weapon%20expertise_alchemist_crb_7_crb","p":74,"h":1,"n":"Alchemist 7; Alchemical Weapon Expertise","uh":"alchemist_crb,state:feature=s6-0"},{"c":5,"s":"CRB","id":8304,"u":"iron%20will_alchemist_crb_7_crb","p":74,"h":1,"n":"Alchemist 7; Iron Will","uh":"alchemist_crb,state:feature=s6-1"},{"c":5,"s":"CRB","id":8306,"u":"perpetual%20infusions_alchemist_crb_7_crb","p":74,"h":1,"n":"Alchemist 7; Perpetual Infusions","uh":"alchemist_crb,state:feature=s6-2"},{"c":5,"s":"CRB","id":8308,"u":"alchemical%20expertise_alchemist_crb_9_crb","p":75,"h":1,"n":"Alchemist 9; Alchemical Expertise","uh":"alchemist_crb,state:feature=s8-0"},{"c":5,"s":"CRB","id":8310,"u":"alertness_alchemist_crb_9_crb","p":75,"h":1,"n":"Alchemist 9; Alertness","uh":"alchemist_crb,state:feature=s8-1"},{"c":5,"s":"CRB","id":8312,"u":"double%20brew_alchemist_crb_9_crb","p":75,"h":1,"n":"Alchemist 9; Double Brew","uh":"alchemist_crb,state:feature=s8-2"},{"c":5,"s":"CRB","id":8314,"u":"juggernaut_alchemist_crb_11_crb","p":75,"h":1,"n":"Alchemist 11; Juggernaut","uh":"alchemist_crb,state:feature=s10-0"},{"c":5,"s":"CRB","id":8316,"u":"perpetual%20potency_alchemist_crb_11_crb","p":75,"h":1,"n":"Alchemist 11; Perpetual Potency","uh":"alchemist_crb,state:feature=s10-1"},{"c":5,"s":"CRB","id":8318,"u":"greater%20field%20discovery_alchemist_crb_13_crb","p":75,"h":1,"n":"Alchemist 13; Greater Field Discovery","uh":"alchemist_crb,state:feature=s12-0"},{"c":5,"s":"CRB","id":8320,"u":"light%20armor%20expertise_alchemist_crb_13_crb","p":75,"h":1,"n":"Alchemist 13; Light Armor Expertise","uh":"alchemist_crb,state:feature=s12-1"},{"c":5,"s":"CRB","id":8322,"u":"weapon%20specialization_alchemist_crb_13_crb","p":75,"h":1,"n":"Alchemist 13; Weapon Specialization","uh":"alchemist_crb,state:feature=s12-2"},{"c":5,"s":"CRB","id":8324,"u":"alchemical%20alacrity_alchemist_crb_15_crb","p":75,"h":1,"n":"Alchemist 15; Alchemical Alacrity","uh":"alchemist_crb,state:feature=s14-0"},{"c":5,"s":"CRB","id":8326,"u":"evasion_alchemist_crb_15_crb","p":76,"h":1,"n":"Alchemist 15; Evasion","uh":"alchemist_crb,state:feature=s14-1"},{"c":5,"s":"CRB","id":8328,"u":"alchemical%20mastery_alchemist_crb_17_crb","p":76,"h":1,"n":"Alchemist 17; Alchemical Mastery","uh":"alchemist_crb,state:feature=s16-0"},{"c":5,"s":"CRB","id":8330,"u":"perpetual%20perfection_alchemist_crb_17_crb","p":76,"h":1,"n":"Alchemist 17; Perpetual Perfection","uh":"alchemist_crb,state:feature=s16-1"},{"c":5,"s":"CRB","id":8332,"u":"light%20armor%20mastery_alchemist_crb_19_crb","p":76,"h":1,"n":"Alchemist 19; Light Armor Mastery","uh":"alchemist_crb,state:feature=s18-0"},{"c":5,"s":"CRB","id":8334,"u":"ancestry%20and%20background_barbarian_crb_1_crb","p":84,"h":1,"n":"Barbarian 1; Ancestry and Background","uh":"barbarian_crb,state:feature=s0-0"},{"c":5,"s":"CRB","id":8336,"u":"initial%20proficiencies_barbarian_crb_1_crb","p":84,"h":1,"n":"Barbarian 1; Initial Proficiencies","uh":"barbarian_crb,state:feature=s0-1"},{"c":5,"s":"CRB","id":8338,"u":"rage_barbarian_crb_1_crb","p":84,"h":1,"n":"Barbarian 1; Rage","uh":"barbarian_crb,state:feature=s0-2"},{"c":5,"s":"CRB","id":8340,"u":"instinct_barbarian_crb_1_crb","p":84,"h":1,"n":"Barbarian 1; Instinct","uh":"barbarian_crb,state:feature=s0-3"},{"c":5,"s":"CRB","id":8342,"u":"barbarian%20feats_barbarian_crb_1_crb","p":84,"h":1,"n":"Barbarian 1; Barbarian Feats","uh":"barbarian_crb,state:feature=s0-4"},{"c":5,"s":"CRB","id":8344,"u":"skill%20feats_barbarian_crb_2_crb","p":84,"h":1,"n":"Barbarian 2; Skill Feats","uh":"barbarian_crb,state:feature=s1-0"},{"c":5,"s":"CRB","id":8346,"u":"deny%20advantage_barbarian_crb_3_crb","p":84,"h":1,"n":"Barbarian 3; Deny Advantage","uh":"barbarian_crb,state:feature=s2-0"},{"c":5,"s":"CRB","id":8348,"u":"general%20feats_barbarian_crb_3_crb","p":84,"h":1,"n":"Barbarian 3; General Feats","uh":"barbarian_crb,state:feature=s2-1"},{"c":5,"s":"CRB","id":8350,"u":"skill%20increases_barbarian_crb_3_crb","p":84,"h":1,"n":"Barbarian 3; Skill Increases","uh":"barbarian_crb,state:feature=s2-2"},{"c":5,"s":"CRB","id":8352,"u":"ability%20boosts_barbarian_crb_5_crb","p":84,"h":1,"n":"Barbarian 5; Ability Boosts","uh":"barbarian_crb,state:feature=s4-0"},{"c":5,"s":"CRB","id":8354,"u":"ancestry%20feats_barbarian_crb_5_crb","p":85,"h":1,"n":"Barbarian 5; Ancestry Feats","uh":"barbarian_crb,state:feature=s4-1"},{"c":5,"s":"CRB","id":8356,"u":"brutality_barbarian_crb_5_crb","p":85,"h":1,"n":"Barbarian 5; Brutality","uh":"barbarian_crb,state:feature=s4-2"},{"c":5,"s":"CRB","id":8358,"u":"juggernaut_barbarian_crb_7_crb","p":85,"h":1,"n":"Barbarian 7; Juggernaut","uh":"barbarian_crb,state:feature=s6-0"},{"c":5,"s":"CRB","id":8360,"u":"weapon%20specialization_barbarian_crb_7_crb","p":85,"h":1,"n":"Barbarian 7; Weapon Specialization","uh":"barbarian_crb,state:feature=s6-1"},{"c":5,"s":"CRB","id":8362,"u":"lightning%20reflexes_barbarian_crb_9_crb","p":85,"h":1,"n":"Barbarian 9; Lightning Reflexes","uh":"barbarian_crb,state:feature=s8-0"},{"c":5,"s":"CRB","id":8364,"u":"raging%20resistance_barbarian_crb_9_crb","p":85,"h":1,"n":"Barbarian 9; Raging Resistance","uh":"barbarian_crb,state:feature=s8-1"},{"c":5,"s":"CRB","id":8366,"u":"mighty%20rage_barbarian_crb_11_crb","p":85,"h":1,"n":"Barbarian 11; Mighty Rage","uh":"barbarian_crb,state:feature=s10-0"},{"c":5,"s":"CRB","id":8368,"u":"greater%20juggernaut_barbarian_crb_13_crb","p":85,"h":1,"n":"Barbarian 13; Greater Juggernaut","uh":"barbarian_crb,state:feature=s12-0"},{"c":5,"s":"CRB","id":8370,"u":"medium%20armor%20expertise_barbarian_crb_13_crb","p":85,"h":1,"n":"Barbarian 13; Medium Armor Expertise","uh":"barbarian_crb,state:feature=s12-1"},{"c":5,"s":"CRB","id":8372,"u":"weapon%20fury_barbarian_crb_13_crb","p":85,"h":1,"n":"Barbarian 13; Weapon Fury","uh":"barbarian_crb,state:feature=s12-2"},{"c":5,"s":"CRB","id":8374,"u":"greater%20weapon%20specialization_barbarian_crb_15_crb","p":86,"h":1,"n":"Barbarian 15; Greater Weapon Specialization","uh":"barbarian_crb,state:feature=s14-0"},{"c":5,"s":"CRB","id":8376,"u":"indomitable%20will_barbarian_crb_15_crb","p":86,"h":1,"n":"Barbarian 15; Indomitable Will","uh":"barbarian_crb,state:feature=s14-1"},{"c":5,"s":"CRB","id":8378,"u":"heightened%20senses_barbarian_crb_17_crb","p":86,"h":1,"n":"Barbarian 17; Heightened Senses","uh":"barbarian_crb,state:feature=s16-0"},{"c":5,"s":"CRB","id":8380,"u":"quick%20rage_barbarian_crb_17_crb","p":86,"h":1,"n":"Barbarian 17; Quick Rage","uh":"barbarian_crb,state:feature=s16-1"},{"c":5,"s":"CRB","id":8382,"u":"armor%20of%20fury_barbarian_crb_19_crb","p":86,"h":1,"n":"Barbarian 19; Armor of Fury","uh":"barbarian_crb,state:feature=s18-0"},{"c":5,"s":"CRB","id":8384,"u":"devastator_barbarian_crb_19_crb","p":86,"h":1,"n":"Barbarian 19; Devastator","uh":"barbarian_crb,state:feature=s18-1"},{"c":5,"s":"CRB","id":8386,"u":"ancestry%20and%20background_bard_crb_1_crb","p":96,"h":1,"n":"Bard 1; Ancestry and Background","uh":"bard_crb,state:feature=s0-0"},{"c":5,"s":"CRB","id":8388,"u":"initial%20proficiencies_bard_crb_1_crb","p":96,"h":1,"n":"Bard 1; Initial Proficiencies","uh":"bard_crb,state:feature=s0-1"},{"c":5,"s":"CRB","id":8390,"u":"occult%20spellcasting_bard_crb_1_crb","p":96,"h":1,"n":"Bard 1; Occult Spellcasting","uh":"bard_crb,state:feature=s0-2"},{"c":5,"s":"CRB","id":8392,"u":"spell%20repertoire_bard_crb_1_crb","p":96,"h":1,"n":"Bard 1; Spell Repertoire","uh":"bard_crb,state:feature=s0-3"},{"c":5,"s":"CRB","id":8394,"u":"composition%20spells_bard_crb_1_crb","p":97,"h":1,"n":"Bard 1; Composition Spells","uh":"bard_crb,state:feature=s0-4"},{"c":5,"s":"CRB","id":8396,"u":"muses_bard_crb_1_crb","p":97,"h":1,"n":"Bard 1; Muses","uh":"bard_crb,state:feature=s0-5"},{"c":5,"s":"CRB","id":8398,"u":"bard%20feats_bard_crb_2_crb","p":98,"h":1,"n":"Bard 2; Bard Feats","uh":"bard_crb,state:feature=s1-0"},{"c":5,"s":"CRB","id":8400,"u":"skill%20feats_bard_crb_2_crb","p":98,"h":1,"n":"Bard 2; Skill Feats","uh":"bard_crb,state:feature=s1-1"},{"c":5,"s":"CRB","id":8402,"u":"general%20feats_bard_crb_3_crb","p":98,"h":1,"n":"Bard 3; General Feats","uh":"bard_crb,state:feature=s2-0"},{"c":5,"s":"CRB","id":8404,"u":"lightning%20reflexes_bard_crb_3_crb","p":98,"h":1,"n":"Bard 3; Lightning Reflexes","uh":"bard_crb,state:feature=s2-1"},{"c":5,"s":"CRB","id":8406,"u":"signature%20spells_bard_crb_3_crb","p":98,"h":1,"n":"Bard 3; Signature Spells","uh":"bard_crb,state:feature=s2-2"},{"c":5,"s":"CRB","id":8408,"u":"skill%20increases_bard_crb_3_crb","p":98,"h":1,"n":"Bard 3; Skill Increases","uh":"bard_crb,state:feature=s2-3"},{"c":5,"s":"CRB","id":8410,"u":"ability%20boosts_bard_crb_5_crb","p":98,"h":1,"n":"Bard 5; Ability Boosts","uh":"bard_crb,state:feature=s4-0"},{"c":5,"s":"CRB","id":8412,"u":"ancestry%20feats_bard_crb_5_crb","p":98,"h":1,"n":"Bard 5; Ancestry Feats","uh":"bard_crb,state:feature=s4-1"},{"c":5,"s":"CRB","id":8414,"u":"expert%20spellcaster_bard_crb_7_crb","p":98,"h":1,"n":"Bard 7; Expert Spellcaster","uh":"bard_crb,state:feature=s6-0"},{"c":5,"s":"CRB","id":8416,"u":"great%20fortitude_bard_crb_9_crb","p":99,"h":1,"n":"Bard 9; Great Fortitude","uh":"bard_crb,state:feature=s8-0"},{"c":5,"s":"CRB","id":8418,"u":"resolve_bard_crb_9_crb","p":99,"h":1,"n":"Bard 9; Resolve","uh":"bard_crb,state:feature=s8-1"},{"c":5,"s":"CRB","id":8420,"u":"bard%20weapon%20expertise_bard_crb_11_crb","p":99,"h":1,"n":"Bard 11; Bard Weapon Expertise","uh":"bard_crb,state:feature=s10-0"},{"c":5,"s":"CRB","id":8422,"u":"vigilant%20senses_bard_crb_11_crb","p":99,"h":1,"n":"Bard 11; Vigilant Senses","uh":"bard_crb,state:feature=s10-1"},{"c":5,"s":"CRB","id":8424,"u":"light%20armor%20expertise_bard_crb_13_crb","p":99,"h":1,"n":"Bard 13; Light Armor Expertise","uh":"bard_crb,state:feature=s12-0"},{"c":5,"s":"CRB","id":8426,"u":"weapon%20specialization_bard_crb_13_crb","p":99,"h":1,"n":"Bard 13; Weapon Specialization","uh":"bard_crb,state:feature=s12-1"},{"c":5,"s":"CRB","id":8428,"u":"master%20spellcaster_bard_crb_15_crb","p":99,"h":1,"n":"Bard 15; Master Spellcaster","uh":"bard_crb,state:feature=s14-0"},{"c":5,"s":"CRB","id":8430,"u":"greater%20resolve_bard_crb_17_crb","p":99,"h":1,"n":"Bard 17; Greater Resolve","uh":"bard_crb,state:feature=s16-0"},{"c":5,"s":"CRB","id":8432,"u":"magnum%20opus_bard_crb_19_crb","p":99,"h":1,"n":"Bard 19; Magnum Opus","uh":"bard_crb,state:feature=s18-0"},{"c":5,"s":"CRB","id":8434,"u":"legendary%20spellcaster_bard_crb_19_crb","p":99,"h":1,"n":"Bard 19; Legendary Spellcaster","uh":"bard_crb,state:feature=s18-1"},{"c":5,"s":"CRB","id":8436,"u":"ancestry%20and%20background_champion_crb_1_crb","p":106,"h":1,"n":"Champion 1; Ancestry and Background","uh":"champion_crb,state:feature=s0-0"},{"c":5,"s":"CRB","id":8438,"u":"initial%20proficiencies_champion_crb_1_crb","p":106,"h":1,"n":"Champion 1; Initial Proficiencies","uh":"champion_crb,state:feature=s0-1"},{"c":5,"s":"CRB","id":8440,"u":"champion's%20code_champion_crb_1_crb","p":106,"h":1,"n":"Champion 1; Champion's Code","uh":"champion_crb,state:feature=s0-2"},{"c":5,"s":"CRB","id":8442,"u":"deity%20and%20cause_champion_crb_1_crb","p":106,"h":1,"n":"Champion 1; Deity and Cause","uh":"champion_crb,state:feature=s0-3"},{"c":5,"s":"CRB","id":8444,"u":"deific%20weapon_champion_crb_1_crb","p":107,"h":1,"n":"Champion 1; Deific Weapon","uh":"champion_crb,state:feature=s0-4"},{"c":5,"s":"CRB","id":8446,"u":"champion's%20reaction_champion_crb_1_crb","p":107,"h":1,"n":"Champion 1; Champion's Reaction","uh":"champion_crb,state:feature=s0-5"},{"c":5,"s":"CRB","id":8448,"u":"devotion%20spells_champion_crb_1_crb","p":108,"h":1,"n":"Champion 1; Devotion Spells","uh":"champion_crb,state:feature=s0-6"},{"c":5,"s":"CRB","id":8450,"u":"champion%20feats_champion_crb_1_crb","p":108,"h":1,"n":"Champion 1; Champion Feats","uh":"champion_crb,state:feature=s0-7"},{"c":5,"s":"CRB","id":8452,"u":"shield%20block_champion_crb_1_crb","p":108,"h":1,"n":"Champion 1; Shield Block","uh":"champion_crb,state:feature=s0-8"},{"c":5,"s":"CRB","id":8454,"u":"skill%20feats_champion_crb_2_crb","p":108,"h":1,"n":"Champion 2; Skill Feats","uh":"champion_crb,state:feature=s1-0"},{"c":5,"s":"CRB","id":8456,"u":"divine%20ally_champion_crb_3_crb","p":108,"h":1,"n":"Champion 3; Divine Ally","uh":"champion_crb,state:feature=s2-0"},{"c":5,"s":"CRB","id":8458,"u":"general%20feats_champion_crb_3_crb","p":108,"h":1,"n":"Champion 3; General Feats","uh":"champion_crb,state:feature=s2-1"},{"c":5,"s":"CRB","id":8460,"u":"skill%20increases_champion_crb_3_crb","p":108,"h":1,"n":"Champion 3; Skill Increases","uh":"champion_crb,state:feature=s2-2"},{"c":5,"s":"CRB","id":8462,"u":"ability%20boosts_champion_crb_5_crb","p":108,"h":1,"n":"Champion 5; Ability Boosts","uh":"champion_crb,state:feature=s4-0"},{"c":5,"s":"CRB","id":8464,"u":"ancestry%20feats_champion_crb_5_crb","p":108,"h":1,"n":"Champion 5; Ancestry Feats","uh":"champion_crb,state:feature=s4-1"},{"c":5,"s":"CRB","id":8466,"u":"weapon%20expertise_champion_crb_5_crb","p":108,"h":1,"n":"Champion 5; Weapon Expertise","uh":"champion_crb,state:feature=s4-2"},{"c":5,"s":"CRB","id":8468,"u":"armor%20expertise_champion_crb_7_crb","p":108,"h":1,"n":"Champion 7; Armor Expertise","uh":"champion_crb,state:feature=s6-0"},{"c":5,"s":"CRB","id":8470,"u":"weapon%20specialization_champion_crb_7_crb","p":108,"h":1,"n":"Champion 7; Weapon Specialization","uh":"champion_crb,state:feature=s6-1"},{"c":5,"s":"CRB","id":8472,"u":"champion%20expertise_champion_crb_9_crb","p":108,"h":1,"n":"Champion 9; Champion Expertise","uh":"champion_crb,state:feature=s8-0"},{"c":5,"s":"CRB","id":8474,"u":"divine%20smite_champion_crb_9_crb","p":108,"h":1,"n":"Champion 9; Divine Smite","uh":"champion_crb,state:feature=s8-1"},{"c":5,"s":"CRB","id":8476,"u":"juggernaut_champion_crb_9_crb","p":109,"h":1,"n":"Champion 9; Juggernaut","uh":"champion_crb,state:feature=s8-2"},{"c":5,"s":"CRB","id":8478,"u":"lightning%20reflexes_champion_crb_9_crb","p":109,"h":1,"n":"Champion 9; Lightning Reflexes","uh":"champion_crb,state:feature=s8-0"},{"c":5,"s":"CRB","id":8480,"u":"alertness_champion_crb_11_crb","p":109,"h":1,"n":"Champion 11; Alertness","uh":"champion_crb,state:feature=s10-0"},{"c":5,"s":"CRB","id":8482,"u":"divine%20will_champion_crb_11_crb","p":109,"h":1,"n":"Champion 11; Divine Will","uh":"champion_crb,state:feature=s10-1"},{"c":5,"s":"CRB","id":8484,"u":"exalt_champion_crb_11_crb","p":109,"h":1,"n":"Champion 11; Exalt","uh":"champion_crb,state:feature=s10-2"},{"c":5,"s":"CRB","id":8486,"u":"armor%20mastery_champion_crb_13_crb","p":109,"h":1,"n":"Champion 13; Armor Mastery","uh":"champion_crb,state:feature=s12-0"},{"c":5,"s":"CRB","id":8488,"u":"weapon%20mastery_champion_crb_13_crb","p":109,"h":1,"n":"Champion 13; Weapon Mastery","uh":"champion_crb,state:feature=s12-1"},{"c":5,"s":"CRB","id":8490,"u":"greater%20weapon%20specialization_champion_crb_15_crb","p":109,"h":1,"n":"Champion 15; Greater Weapon Specialization","uh":"champion_crb,state:feature=s14-0"},{"c":5,"s":"CRB","id":8492,"u":"champion%20mastery_champion_crb_17_crb","p":109,"h":1,"n":"Champion 17; Champion Mastery","uh":"champion_crb,state:feature=s16-0"},{"c":5,"s":"CRB","id":8494,"u":"legendary%20armor_champion_crb_17_crb","p":109,"h":1,"n":"Champion 17; Legendary Armor","uh":"champion_crb,state:feature=s16-1"},{"c":5,"s":"CRB","id":8496,"u":"hero's%20defiance_champion_crb_19_crb","p":109,"h":1,"n":"Champion 19; Hero's Defiance","uh":"champion_crb,state:feature=s18-0"},{"c":5,"s":"CRB","id":8498,"u":"ancestry%20and%20background_cleric_crb_1_crb","p":118,"h":1,"n":"Cleric 1; Ancestry and Background","uh":"cleric_crb,state:feature=s0-0"},{"c":5,"s":"CRB","id":8500,"u":"initial%20proficiencies_cleric_crb_1_crb","p":118,"h":1,"n":"Cleric 1; Initial Proficiencies","uh":"cleric_crb,state:feature=s0-1"},{"c":5,"s":"CRB","id":8502,"u":"first%20doctrine_cleric_crb_1_crb","p":119,"h":1,"n":"Cleric 1; First Doctrine","uh":"cleric_crb,state:feature=s0-6"},{"c":5,"s":"CRB","id":8504,"u":"second%20doctrine_cleric_crb_3_crb","p":119,"h":1,"n":"Cleric 3; Second Doctrine","uh":"cleric_crb,state:feature=s2-0"},{"c":5,"s":"CRB","id":8506,"u":"final%20doctrine_cleric_crb_19_crb","p":119,"h":1,"n":"Cleric 19; Final Doctrine","uh":"cleric_crb,state:feature=s18-0"},{"c":5,"s":"CRB","id":8508,"u":"fifth%20doctrine_cleric_crb_15_crb","p":119,"h":1,"n":"Cleric 15; Fifth Doctrine","uh":"cleric_crb,state:feature=s14-0"},{"c":5,"s":"CRB","id":8510,"u":"fourth%20doctrine_cleric_crb_11_crb","p":119,"h":1,"n":"Cleric 11; Fourth Doctrine","uh":"cleric_crb,state:feature=s10-0"},{"c":5,"s":"CRB","id":8512,"u":"third%20doctrine_cleric_crb_7_crb","p":119,"h":1,"n":"Cleric 7; Third Doctrine","uh":"cleric_crb,state:feature=s6-0"},{"c":5,"s":"CRB","id":8514,"u":"deity_cleric_crb_1_crb","p":118,"h":1,"n":"Cleric 1; Deity","uh":"cleric_crb,state:feature=s0-2"},{"c":5,"s":"CRB","id":8516,"u":"divine%20spellcasting_cleric_crb_1_crb","p":118,"h":1,"n":"Cleric 1; Divine Spellcasting","uh":"cleric_crb,state:feature=s0-3"},{"c":5,"s":"CRB","id":8518,"u":"divine%20font_cleric_crb_1_crb","p":119,"h":1,"n":"Cleric 1; Divine Font","uh":"cleric_crb,state:feature=s0-4"},{"c":5,"s":"CRB","id":8520,"u":"doctrine_cleric_crb_1_crb","p":119,"h":1,"n":"Cleric 1; Doctrine","uh":"cleric_crb,state:feature=s0-5"},{"c":5,"s":"CRB","id":8522,"u":"cleric%20feats_cleric_crb_2_crb","p":120,"h":1,"n":"Cleric 2; Cleric Feats","uh":"cleric_crb,state:feature=s1-0"},{"c":5,"s":"CRB","id":8524,"u":"skill%20feats_cleric_crb_2_crb","p":120,"h":1,"n":"Cleric 2; Skill Feats","uh":"cleric_crb,state:feature=s1-1"},{"c":5,"s":"CRB","id":8526,"u":"general%20feats_cleric_crb_3_crb","p":120,"h":1,"n":"Cleric 3; General Feats","uh":"cleric_crb,state:feature=s2-1"},{"c":5,"s":"CRB","id":8528,"u":"skill%20increases_cleric_crb_3_crb","p":120,"h":1,"n":"Cleric 3; Skill Increases","uh":"cleric_crb,state:feature=s2-2"},{"c":5,"s":"CRB","id":8530,"u":"ability%20boosts_cleric_crb_5_crb","p":120,"h":1,"n":"Cleric 5; Ability Boosts","uh":"cleric_crb,state:feature=s4-0"},{"c":5,"s":"CRB","id":8532,"u":"alertness_cleric_crb_5_crb","p":121,"h":1,"n":"Cleric 5; Alertness","uh":"cleric_crb,state:feature=s4-1"},{"c":5,"s":"CRB","id":8534,"u":"ancestry%20feats_cleric_crb_5_crb","p":121,"h":1,"n":"Cleric 5; Ancestry Feats","uh":"cleric_crb,state:feature=s4-2"},{"c":5,"s":"CRB","id":8536,"u":"resolve_cleric_crb_9_crb","p":121,"h":1,"n":"Cleric 9; Resolve","uh":"cleric_crb,state:feature=s8-0"},{"c":5,"s":"CRB","id":8538,"u":"lightning%20reflexes_cleric_crb_11_crb","p":121,"h":1,"n":"Cleric 11; Lightning Reflexes","uh":"cleric_crb,state:feature=s10-1"},{"c":5,"s":"CRB","id":8540,"u":"divine%20defense_cleric_crb_13_crb","p":121,"h":1,"n":"Cleric 13; Divine Defense","uh":"cleric_crb,state:feature=s12-0"},{"c":5,"s":"CRB","id":8542,"u":"weapon%20specialization_cleric_crb_13_crb","p":121,"h":1,"n":"Cleric 13; Weapon Specialization","uh":"cleric_crb,state:feature=s12-1"},{"c":5,"s":"CRB","id":8544,"u":"miraculous%20spell_cleric_crb_19_crb","p":121,"h":1,"n":"Cleric 19; Miraculous Spell","uh":"cleric_crb,state:feature=s18-1"},{"c":5,"s":"CRB","id":8546,"u":"ancestry%20and%20background_druid_crb_1_crb","p":130,"h":1,"n":"Druid 1; Ancestry and Background","uh":"druid_crb,state:feature=s0-0"},{"c":5,"s":"CRB","id":8548,"u":"initial%20proficiencies_druid_crb_1_crb","p":130,"h":1,"n":"Druid 1; Initial Proficiencies","uh":"druid_crb,state:feature=s0-1"},{"c":5,"s":"CRB","id":8550,"u":"primal%20spellcasting_druid_crb_1_crb","p":130,"h":1,"n":"Druid 1; Primal Spellcasting","uh":"druid_crb,state:feature=s0-2"},{"c":5,"s":"CRB","id":8552,"u":"anathema_druid_crb_1_crb","p":130,"h":1,"n":"Druid 1; Anathema","uh":"druid_crb,state:feature=s0-3"},{"c":5,"s":"CRB","id":8554,"u":"druidic%20language_druid_crb_1_crb","p":130,"h":1,"n":"Druid 1; Druidic Language","uh":"druid_crb,state:feature=s0-4"},{"c":5,"s":"CRB","id":8556,"u":"druidic%20order_druid_crb_1_crb","p":131,"h":1,"n":"Druid 1; Druidic Order","uh":"druid_crb,state:feature=s0-5"},{"c":5,"s":"CRB","id":8558,"u":"shield%20block_druid_crb_1_crb","p":132,"h":1,"n":"Druid 1; Shield Block","uh":"druid_crb,state:feature=s0-6"},{"c":5,"s":"CRB","id":8560,"u":"wild%20empathy_druid_crb_1_crb","p":132,"h":1,"n":"Druid 1; Wild Empathy","uh":"druid_crb,state:feature=s0-7"},{"c":5,"s":"CRB","id":8562,"u":"druid%20feats_druid_crb_2_crb","p":132,"h":1,"n":"Druid 2; Druid Feats","uh":"druid_crb,state:feature=s1-0"},{"c":5,"s":"CRB","id":8564,"u":"skill%20feats_druid_crb_2_crb","p":132,"h":1,"n":"Druid 2; Skill Feats","uh":"druid_crb,state:feature=s1-1"},{"c":5,"s":"CRB","id":8566,"u":"alertness_druid_crb_3_crb","p":132,"h":1,"n":"Druid 3; Alertness","uh":"druid_crb,state:feature=s2-0"},{"c":5,"s":"CRB","id":8568,"u":"general%20feats_druid_crb_3_crb","p":132,"h":1,"n":"Druid 3; General Feats","uh":"druid_crb,state:feature=s2-1"},{"c":5,"s":"CRB","id":8570,"u":"great%20fortitude_druid_crb_3_crb","p":132,"h":1,"n":"Druid 3; Great Fortitude","uh":"druid_crb,state:feature=s2-2"},{"c":5,"s":"CRB","id":8572,"u":"skill%20increases_druid_crb_3_crb","p":133,"h":1,"n":"Druid 3; Skill Increases","uh":"druid_crb,state:feature=s2-3"},{"c":5,"s":"CRB","id":8574,"u":"ability%20boosts_druid_crb_5_crb","p":133,"h":1,"n":"Druid 5; Ability Boosts","uh":"druid_crb,state:feature=s4-0"},{"c":5,"s":"CRB","id":8576,"u":"ancestry%20feats_druid_crb_5_crb","p":133,"h":1,"n":"Druid 5; Ancestry Feats","uh":"druid_crb,state:feature=s4-1"},{"c":5,"s":"CRB","id":8578,"u":"lightning%20reflexes_druid_crb_5_crb","p":133,"h":1,"n":"Druid 5; Lightning Reflexes","uh":"druid_crb,state:feature=s4-2"},{"c":5,"s":"CRB","id":8580,"u":"expert%20spellcaster_druid_crb_7_crb","p":133,"h":1,"n":"Druid 7; Expert Spellcaster","uh":"druid_crb,state:feature=s6-0"},{"c":5,"s":"CRB","id":8582,"u":"druid%20weapon%20expertise_druid_crb_11_crb","p":133,"h":1,"n":"Druid 11; Druid Weapon Expertise","uh":"druid_crb,state:feature=s10-0"},{"c":5,"s":"CRB","id":8584,"u":"resolve_druid_crb_11_crb","p":133,"h":1,"n":"Druid 11; Resolve","uh":"druid_crb,state:feature=s10-1"},{"c":5,"s":"CRB","id":8586,"u":"medium%20armor%20expertise_druid_crb_13_crb","p":133,"h":1,"n":"Druid 13; Medium Armor Expertise","uh":"druid_crb,state:feature=s12-0"},{"c":5,"s":"CRB","id":8588,"u":"weapon%20specialization_druid_crb_13_crb","p":133,"h":1,"n":"Druid 13; Weapon Specialization","uh":"druid_crb,state:feature=s12-1"},{"c":5,"s":"CRB","id":8590,"u":"master%20spellcaster_druid_crb_15_crb","p":133,"h":1,"n":"Druid 15; Master Spellcaster","uh":"druid_crb,state:feature=s14-0"},{"c":5,"s":"CRB","id":8592,"u":"legendary%20spellcaster_druid_crb_19_crb","p":133,"h":1,"n":"Druid 19; Legendary Spellcaster","uh":"druid_crb,state:feature=s18-0"},{"c":5,"s":"CRB","id":8594,"u":"primal%20hierophant_druid_crb_19_crb","p":133,"h":1,"n":"Druid 19; Primal Hierophant","uh":"druid_crb,state:feature=s18-1"},{"c":5,"s":"CRB","id":8596,"u":"ancestry%20and%20background_fighter_crb_1_crb","p":141,"h":1,"n":"Fighter 1; Ancestry and Background","uh":"fighter_crb,state:feature=s0-0"},{"c":5,"s":"CRB","id":8598,"u":"initial%20proficiencies_fighter_crb_1_crb","p":141,"h":1,"n":"Fighter 1; Initial Proficiencies","uh":"fighter_crb,state:feature=s0-1"},{"c":5,"s":"CRB","id":8600,"u":"attack%20of%20opportunity_fighter_crb_1_crb","p":141,"h":1,"n":"Fighter 1; Attack of Opportunity","uh":"fighter_crb,state:feature=s0-2"},{"c":5,"s":"CRB","id":8602,"u":"fighter%20feats_fighter_crb_1_crb","p":141,"h":1,"n":"Fighter 1; Fighter Feats","uh":"fighter_crb,state:feature=s0-3"},{"c":5,"s":"CRB","id":8604,"u":"shield%20block_fighter_crb_1_crb","p":141,"h":1,"n":"Fighter 1; Shield Block","uh":"fighter_crb,state:feature=s0-4"},{"c":5,"s":"CRB","id":8606,"u":"skill%20feats_fighter_crb_2_crb","p":141,"h":1,"n":"Fighter 2; Skill Feats","uh":"fighter_crb,state:feature=s1-0"},{"c":5,"s":"CRB","id":8608,"u":"bravery_fighter_crb_3_crb","p":141,"h":1,"n":"Fighter 3; Bravery","uh":"fighter_crb,state:feature=s2-0"},{"c":5,"s":"CRB","id":8610,"u":"general%20feats_fighter_crb_3_crb","p":141,"h":1,"n":"Fighter 3; General Feats","uh":"fighter_crb,state:feature=s2-1"},{"c":5,"s":"CRB","id":8612,"u":"skill%20increases_fighter_crb_3_crb","p":141,"h":1,"n":"Fighter 3; Skill Increases","uh":"fighter_crb,state:feature=s2-2"},{"c":5,"s":"CRB","id":8614,"u":"ability%20boosts_fighter_crb_5_crb","p":141,"h":1,"n":"Fighter 5; Ability Boosts","uh":"fighter_crb,state:feature=s4-0"},{"c":5,"s":"CRB","id":8616,"u":"ancestry%20feats_fighter_crb_5_crb","p":141,"h":1,"n":"Fighter 5; Ancestry Feats","uh":"fighter_crb,state:feature=s4-1"},{"c":5,"s":"CRB","id":8618,"u":"fighter%20weapon%20mastery_fighter_crb_5_crb","p":142,"h":1,"n":"Fighter 5; Fighter Weapon Mastery","uh":"fighter_crb,state:feature=s4-2"},{"c":5,"s":"CRB","id":8620,"u":"battlefield%20surveyor_fighter_crb_7_crb","p":142,"h":1,"n":"Fighter 7; Battlefield Surveyor","uh":"fighter_crb,state:feature=s6-0"},{"c":5,"s":"CRB","id":8622,"u":"weapon%20specialization_fighter_crb_7_crb","p":142,"h":1,"n":"Fighter 7; Weapon Specialization","uh":"fighter_crb,state:feature=s6-1"},{"c":5,"s":"CRB","id":8624,"u":"combat%20flexibility_fighter_crb_9_crb","p":142,"h":1,"n":"Fighter 9; Combat Flexibility","uh":"fighter_crb,state:feature=s8-0"},{"c":5,"s":"CRB","id":8626,"u":"juggernaut_fighter_crb_9_crb","p":142,"h":1,"n":"Fighter 9; Juggernaut","uh":"fighter_crb,state:feature=s8-1"},{"c":5,"s":"CRB","id":8628,"u":"armor%20expertise_fighter_crb_11_crb","p":142,"h":1,"n":"Fighter 11; Armor Expertise","uh":"fighter_crb,state:feature=s10-0"},{"c":5,"s":"CRB","id":8630,"u":"fighter%20expertise_fighter_crb_11_crb","p":142,"h":1,"n":"Fighter 11; Fighter Expertise","uh":"fighter_crb,state:feature=s10-1"},{"c":5,"s":"CRB","id":8632,"u":"weapon%20legend_fighter_crb_13_crb","p":142,"h":1,"n":"Fighter 13; Weapon Legend","uh":"fighter_crb,state:feature=s12-0"},{"c":5,"s":"CRB","id":8634,"u":"evasion_fighter_crb_15_crb","p":142,"h":1,"n":"Fighter 15; Evasion","uh":"fighter_crb,state:feature=s14-0"},{"c":5,"s":"CRB","id":8636,"u":"greater%20weapon%20specialization_fighter_crb_15_crb","p":142,"h":1,"n":"Fighter 15; Greater Weapon Specialization","uh":"fighter_crb,state:feature=s14-1"},{"c":5,"s":"CRB","id":8638,"u":"improved%20flexibility_fighter_crb_15_crb","p":142,"h":1,"n":"Fighter 15; Improved Flexibility","uh":"fighter_crb,state:feature=s14-2"},{"c":5,"s":"CRB","id":8640,"u":"armor%20mastery_fighter_crb_17_crb","p":143,"h":1,"n":"Fighter 17; Armor Mastery","uh":"fighter_crb,state:feature=s16-0"},{"c":5,"s":"CRB","id":8642,"u":"versatile%20legend_fighter_crb_19_crb","p":143,"h":1,"n":"Fighter 19; Versatile Legend","uh":"fighter_crb,state:feature=s18-0"},{"c":5,"s":"G&G","id":8644,"u":"ancestry%20and%20background_gunslinger_g%26g_1_g%26g","p":106,"h":1,"n":"Gunslinger 1; Ancestry and Background","uh":"gunslinger_g%26g,state:feature=s0-0"},{"c":5,"s":"G&G","id":8646,"u":"initial%20proficiencies_gunslinger_g%26g_1_g%26g","p":106,"h":1,"n":"Gunslinger 1; Initial Proficiencies","uh":"gunslinger_g%26g,state:feature=s0-1"},{"c":5,"s":"G&G","id":8648,"u":"gunslinger's%20way_gunslinger_g%26g_1_g%26g","p":106,"h":1,"n":"Gunslinger 1; Gunslinger's Way","uh":"gunslinger_g%26g,state:feature=s0-2"},{"c":5,"s":"G&G","id":8650,"u":"gunslinger%20feats_gunslinger_g%26g_1_g%26g","p":106,"h":1,"n":"Gunslinger 1; Gunslinger Feats","uh":"gunslinger_g%26g,state:feature=s0-3"},{"c":5,"s":"G&G","id":8652,"u":"singular%20expertise_gunslinger_g%26g_1_g%26g","p":106,"h":1,"n":"Gunslinger 1; Singular Expertise","uh":"gunslinger_g%26g,state:feature=s0-4"},{"c":5,"s":"G&G","id":8654,"u":"skill%20feats_gunslinger_g%26g_2_g%26g","p":106,"h":1,"n":"Gunslinger 2; Skill Feats","uh":"gunslinger_g%26g,state:feature=s1-0"},{"c":5,"s":"G&G","id":8656,"u":"general%20feats_gunslinger_g%26g_3_g%26g","p":106,"h":1,"n":"Gunslinger 3; General Feats","uh":"gunslinger_g%26g,state:feature=s2-0"},{"c":5,"s":"G&G","id":8658,"u":"skill%20increases_gunslinger_g%26g_3_g%26g","p":106,"h":1,"n":"Gunslinger 3; Skill Increases","uh":"gunslinger_g%26g,state:feature=s2-1"},{"c":5,"s":"G&G","id":8660,"u":"stubborn_gunslinger_g%26g_3_g%26g","p":106,"h":1,"n":"Gunslinger 3; Stubborn","uh":"gunslinger_g%26g,state:feature=s2-2"},{"c":5,"s":"G&G","id":8662,"u":"ability%20boosts_gunslinger_g%26g_5_g%26g","p":107,"h":1,"n":"Gunslinger 5; Ability Boosts","uh":"gunslinger_g%26g,state:feature=s4-0"},{"c":5,"s":"G&G","id":8664,"u":"ancestry%20feats_gunslinger_g%26g_5_g%26g","p":107,"h":1,"n":"Gunslinger 5; Ancestry Feats","uh":"gunslinger_g%26g,state:feature=s4-1"},{"c":5,"s":"G&G","id":8666,"u":"gunslinger%20weapon%20mastery_gunslinger_g%26g_5_g%26g","p":107,"h":1,"n":"Gunslinger 5; Gunslinger Weapon Mastery","uh":"gunslinger_g%26g,state:feature=s4-2"},{"c":5,"s":"G&G","id":8668,"u":"vigilant%20senses_gunslinger_g%26g_7_g%26g","p":107,"h":1,"n":"Gunslinger 7; Vigilant Senses","uh":"gunslinger_g%26g,state:feature=s6-0"},{"c":5,"s":"G&G","id":8670,"u":"weapon%20specialization_gunslinger_g%26g_7_g%26g","p":107,"h":1,"n":"Gunslinger 7; Weapon Specialization","uh":"gunslinger_g%26g,state:feature=s6-1"},{"c":5,"s":"G&G","id":8672,"u":"advanced%20deed_gunslinger_g%26g_9_g%26g","p":107,"h":1,"n":"Gunslinger 9; Advanced Deed","uh":"gunslinger_g%26g,state:feature=s8-0"},{"c":5,"s":"G&G","id":8674,"u":"gunslinger%20expertise_gunslinger_g%26g_9_g%26g","p":107,"h":1,"n":"Gunslinger 9; Gunslinger Expertise","uh":"gunslinger_g%26g,state:feature=s8-1"},{"c":5,"s":"G&G","id":8676,"u":"evasion_gunslinger_g%26g_11_g%26g","p":107,"h":1,"n":"Gunslinger 11; Evasion","uh":"gunslinger_g%26g,state:feature=s10-0"},{"c":5,"s":"G&G","id":8678,"u":"gunslinging%20legend_gunslinger_g%26g_13_g%26g","p":107,"h":1,"n":"Gunslinger 13; Gunslinging Legend","uh":"gunslinger_g%26g,state:feature=s12-0"},{"c":5,"s":"G&G","id":8680,"u":"medium%20armor%20expertise_gunslinger_g%26g_13_g%26g","p":107,"h":1,"n":"Gunslinger 13; Medium Armor Expertise","uh":"gunslinger_g%26g,state:feature=s12-1"},{"c":5,"s":"G&G","id":8682,"u":"greater%20deed_gunslinger_g%26g_15_g%26g","p":107,"h":1,"n":"Gunslinger 15; Greater Deed","uh":"gunslinger_g%26g,state:feature=s14-0"},{"c":5,"s":"G&G","id":8684,"u":"greater%20weapon%20specialization_gunslinger_g%26g_15_g%26g","p":107,"h":1,"n":"Gunslinger 15; Greater Weapon Specialization","uh":"gunslinger_g%26g,state:feature=s14-1"},{"c":5,"s":"G&G","id":8686,"u":"juggernaut_gunslinger_g%26g_17_g%26g","p":107,"h":1,"n":"Gunslinger 17; Juggernaut","uh":"gunslinger_g%26g,state:feature=s16-0"},{"c":5,"s":"G&G","id":8688,"u":"shootist's%20edge_gunslinger_g%26g_17_g%26g","p":107,"h":1,"n":"Gunslinger 17; Shootist's Edge","uh":"gunslinger_g%26g,state:feature=s16-1"},{"c":5,"s":"G&G","id":8690,"u":"incredible%20senses_gunslinger_g%26g_19_g%26g","p":108,"h":1,"n":"Gunslinger 19; Incredible Senses","uh":"gunslinger_g%26g,state:feature=s18-0"},{"c":5,"s":"G&G","id":8692,"u":"medium%20armor%20mastery_gunslinger_g%26g_19_g%26g","p":108,"h":1,"n":"Gunslinger 19; Medium Armor Mastery","uh":"gunslinger_g%26g,state:feature=s18-1"},{"c":5,"s":"G&G","id":8694,"u":"ancestry%20and%20background_inventor_g%26g_1_g%26g","p":16,"h":1,"n":"Inventor 1; Ancestry and Background","uh":"inventor_g%26g,state:feature=s0-0"},{"c":5,"s":"G&G","id":8696,"u":"initial%20proficiencies_inventor_g%26g_1_g%26g","p":16,"h":1,"n":"Inventor 1; Initial Proficiencies","uh":"inventor_g%26g,state:feature=s0-1"},{"c":5,"s":"G&G","id":8698,"u":"overdrive_inventor_g%26g_1_g%26g","p":16,"h":1,"n":"Inventor 1; Overdrive","uh":"inventor_g%26g,state:feature=s0-2"},{"c":5,"s":"G&G","id":8700,"u":"innovation_inventor_g%26g_1_g%26g","p":16,"h":1,"n":"Inventor 1; Innovation","uh":"inventor_g%26g,state:feature=s0-3"},{"c":5,"s":"G&G","id":8702,"u":"explode_inventor_g%26g_1_g%26g","p":19,"h":1,"n":"Inventor 1; Explode","uh":"inventor_g%26g,state:feature=s0-4"},{"c":5,"s":"G&G","id":8704,"u":"peerless%20inventor_inventor_g%26g_1_g%26g","p":20,"h":1,"n":"Inventor 1; Peerless Inventor","uh":"inventor_g%26g,state:feature=s0-5"},{"c":5,"s":"G&G","id":8706,"u":"shield%20block_inventor_g%26g_1_g%26g","p":20,"h":1,"n":"Inventor 1; Shield Block","uh":"inventor_g%26g,state:feature=s0-6"},{"c":5,"s":"G&G","id":8708,"u":"inventor%20feats_inventor_g%26g_2_g%26g","p":20,"h":1,"n":"Inventor 2; Inventor Feats","uh":"inventor_g%26g,state:feature=s1-0"},{"c":5,"s":"G&G","id":8710,"u":"skill%20feats_inventor_g%26g_2_g%26g","p":20,"h":1,"n":"Inventor 2; Skill Feats","uh":"inventor_g%26g,state:feature=s1-1"},{"c":5,"s":"G&G","id":8712,"u":"expert%20overdrive_inventor_g%26g_3_g%26g","p":20,"h":1,"n":"Inventor 3; Expert Overdrive","uh":"inventor_g%26g,state:feature=s2-0"},{"c":5,"s":"G&G","id":8714,"u":"general%20feats_inventor_g%26g_3_g%26g","p":20,"h":1,"n":"Inventor 3; General Feats","uh":"inventor_g%26g,state:feature=s2-1"},{"c":5,"s":"G&G","id":8716,"u":"reconfigure_inventor_g%26g_3_g%26g","p":20,"h":1,"n":"Inventor 3; Reconfigure","uh":"inventor_g%26g,state:feature=s2-2"},{"c":5,"s":"G&G","id":8718,"u":"skill%20increases_inventor_g%26g_3_g%26g","p":20,"h":1,"n":"Inventor 3; Skill Increases","uh":"inventor_g%26g,state:feature=s2-3"},{"c":5,"s":"G&G","id":8720,"u":"ability%20boosts_inventor_g%26g_5_g%26g","p":20,"h":1,"n":"Inventor 5; Ability Boosts","uh":"inventor_g%26g,state:feature=s4-0"},{"c":5,"s":"G&G","id":8722,"u":"ancestry%20feats_inventor_g%26g_5_g%26g","p":20,"h":1,"n":"Inventor 5; Ancestry Feats","uh":"inventor_g%26g,state:feature=s4-1"},{"c":5,"s":"G&G","id":8724,"u":"inventor%20weapon%20expertise_inventor_g%26g_5_g%26g","p":20,"h":1,"n":"Inventor 5; Inventor Weapon Expertise","uh":"inventor_g%26g,state:feature=s4-2"},{"c":5,"s":"G&G","id":8726,"u":"breakthrough%20innovation_inventor_g%26g_7_g%26g","p":20,"h":1,"n":"Inventor 7; Breakthrough Innovation","uh":"inventor_g%26g,state:feature=s6-0"},{"c":5,"s":"G&G","id":8728,"u":"lightning%20reflexes_inventor_g%26g_7_g%26g","p":22,"h":1,"n":"Inventor 7; Lightning Reflexes","uh":"inventor_g%26g,state:feature=s6-1"},{"c":5,"s":"G&G","id":8730,"u":"master%20overdrive_inventor_g%26g_7_g%26g","p":22,"h":1,"n":"Inventor 7; Master Overdrive","uh":"inventor_g%26g,state:feature=s6-2"},{"c":5,"s":"G&G","id":8732,"u":"weapon%20specialization_inventor_g%26g_7_g%26g","p":22,"h":1,"n":"Inventor 7; Weapon Specialization","uh":"inventor_g%26g,state:feature=s6-3"},{"c":5,"s":"G&G","id":8734,"u":"inventive%20expertise_inventor_g%26g_9_g%26g","p":22,"h":1,"n":"Inventor 9; Inventive Expertise","uh":"inventor_g%26g,state:feature=s8-0"},{"c":5,"s":"G&G","id":8736,"u":"offensive%20boost_inventor_g%26g_9_g%26g","p":22,"h":1,"n":"Inventor 9; Offensive Boost","uh":"inventor_g%26g,state:feature=s8-1"},{"c":5,"s":"G&G","id":8738,"u":"medium%20armor%20expertise_inventor_g%26g_11_g%26g","p":22,"h":1,"n":"Inventor 11; Medium Armor Expertise","uh":"inventor_g%26g,state:feature=s10-0"},{"c":5,"s":"G&G","id":8740,"u":"resolve_inventor_g%26g_11_g%26g","p":22,"h":1,"n":"Inventor 11; Resolve","uh":"inventor_g%26g,state:feature=s10-1"},{"c":5,"s":"G&G","id":8742,"u":"alertness_inventor_g%26g_13_g%26g","p":22,"h":1,"n":"Inventor 13; Alertness","uh":"inventor_g%26g,state:feature=s12-0"},{"c":5,"s":"G&G","id":8744,"u":"complete%20reconfiguration_inventor_g%26g_13_g%26g","p":22,"h":1,"n":"Inventor 13; Complete Reconfiguration","uh":"inventor_g%26g,state:feature=s12-1"},{"c":5,"s":"G&G","id":8746,"u":"inventor%20weapon%20mastery_inventor_g%26g_13_g%26g","p":22,"h":1,"n":"Inventor 13; Inventor Weapon Mastery","uh":"inventor_g%26g,state:feature=s12-2"},{"c":5,"s":"G&G","id":8748,"u":"greater%20weapon%20specialization_inventor_g%26g_15_g%26g","p":22,"h":1,"n":"Inventor 15; Greater Weapon Specialization","uh":"inventor_g%26g,state:feature=s14-0"},{"c":5,"s":"G&G","id":8750,"u":"legendary%20overdrive_inventor_g%26g_15_g%26g","p":22,"h":1,"n":"Inventor 15; Legendary Overdrive","uh":"inventor_g%26g,state:feature=s14-1"},{"c":5,"s":"G&G","id":8752,"u":"revolutionary%20innovation_inventor_g%26g_15_g%26g","p":23,"h":1,"n":"Inventor 15; Revolutionary Innovation","uh":"inventor_g%26g,state:feature=s14-2"},{"c":5,"s":"G&G","id":8754,"u":"inventive%20mastery_inventor_g%26g_17_g%26g","p":24,"h":1,"n":"Inventor 17; Inventive Mastery","uh":"inventor_g%26g,state:feature=s16-0"},{"c":5,"s":"G&G","id":8756,"u":"juggernaut_inventor_g%26g_17_g%26g","p":24,"h":1,"n":"Inventor 17; Juggernaut","uh":"inventor_g%26g,state:feature=s16-1"},{"c":5,"s":"G&G","id":8758,"u":"infinite%20invention_inventor_g%26g_19_g%26g","p":24,"h":1,"n":"Inventor 19; Infinite Invention","uh":"inventor_g%26g,state:feature=s18-0"},{"c":5,"s":"G&G","id":8760,"u":"medium%20armor%20mastery_inventor_g%26g_19_g%26g","p":24,"h":1,"n":"Inventor 19; Medium Armor Mastery","uh":"inventor_g%26g,state:feature=s18-1"},{"c":5,"s":"APG","id":8762,"u":"ancestry%20and%20background_investigator_apg_1_apg","p":56,"h":1,"n":"Investigator 1; Ancestry and Background","uh":"investigator_apg,state:feature=s0-0"},{"c":5,"s":"APG","id":8764,"u":"strategic%20strike_investigator_apg_1_apg","p":56,"h":1,"n":"Investigator 1; Strategic Strike","uh":"investigator_apg,state:feature=s0-6"},{"c":5,"s":"APG","id":8766,"u":"initial%20proficiencies_investigator_apg_1_apg","p":56,"h":1,"n":"Investigator 1; Initial Proficiencies","uh":"investigator_apg,state:feature=s0-1"},{"c":5,"s":"APG","id":8768,"u":"on%20the%20case_investigator_apg_1_apg","p":56,"h":1,"n":"Investigator 1; On the Case","uh":"investigator_apg,state:feature=s0-2"},{"c":5,"s":"APG","id":8770,"u":"devise%20a%20stratagem_investigator_apg_1_apg","p":56,"h":1,"n":"Investigator 1; Devise a Stratagem","uh":"investigator_apg,state:feature=s0-3"},{"c":5,"s":"APG","id":8772,"u":"methodology_investigator_apg_1_apg","p":57,"h":1,"n":"Investigator 1; Methodology","uh":"investigator_apg,state:feature=s0-4"},{"c":5,"s":"APG","id":8774,"u":"investigator%20feats_investigator_apg_1_apg","p":58,"h":1,"n":"Investigator 1; Investigator Feats","uh":"investigator_apg,state:feature=s0-5"},{"c":5,"s":"APG","id":8776,"u":"skill%20feats_investigator_apg_2_apg","p":58,"h":1,"n":"Investigator 2; Skill Feats","uh":"investigator_apg,state:feature=s1-0"},{"c":5,"s":"APG","id":8778,"u":"skill%20increases_investigator_apg_2_apg","p":58,"h":1,"n":"Investigator 2; Skill Increases","uh":"investigator_apg,state:feature=s1-1"},{"c":5,"s":"APG","id":8780,"u":"general%20feats_investigator_apg_3_apg","p":59,"h":1,"n":"Investigator 3; General Feats","uh":"investigator_apg,state:feature=s2-0"},{"c":5,"s":"APG","id":8782,"u":"keen%20recollection_investigator_apg_3_apg","p":59,"h":1,"n":"Investigator 3; Keen Recollection","uh":"investigator_apg,state:feature=s2-1"},{"c":5,"s":"APG","id":8784,"u":"skillful%20lessons_investigator_apg_3_apg","p":59,"h":1,"n":"Investigator 3; Skillful Lessons","uh":"investigator_apg,state:feature=s2-2"},{"c":5,"s":"APG","id":8786,"u":"ability%20boosts_investigator_apg_5_apg","p":59,"h":1,"n":"Investigator 5; Ability Boosts","uh":"investigator_apg,state:feature=s4-0"},{"c":5,"s":"APG","id":8788,"u":"ancestry%20feats_investigator_apg_5_apg","p":59,"h":1,"n":"Investigator 5; Ancestry Feats","uh":"investigator_apg,state:feature=s4-1"},{"c":5,"s":"APG","id":8790,"u":"weapon%20expertise_investigator_apg_5_apg","p":59,"h":1,"n":"Investigator 5; Weapon Expertise","uh":"investigator_apg,state:feature=s4-2"},{"c":5,"s":"APG","id":8792,"u":"vigilant%20senses_investigator_apg_7_apg","p":59,"h":1,"n":"Investigator 7; Vigilant Senses","uh":"investigator_apg,state:feature=s6-0"},{"c":5,"s":"APG","id":8794,"u":"weapon%20specialization_investigator_apg_7_apg","p":59,"h":1,"n":"Investigator 7; Weapon Specialization","uh":"investigator_apg,state:feature=s6-1"},{"c":5,"s":"APG","id":8796,"u":"great%20fortitude_investigator_apg_9_apg","p":59,"h":1,"n":"Investigator 9; Great Fortitude","uh":"investigator_apg,state:feature=s8-0"},{"c":5,"s":"APG","id":8798,"u":"investigator%20expertise_investigator_apg_9_apg","p":59,"h":1,"n":"Investigator 9; Investigator Expertise","uh":"investigator_apg,state:feature=s8-1"},{"c":5,"s":"APG","id":8800,"u":"deductive%20improvisation_investigator_apg_11_apg","p":59,"h":1,"n":"Investigator 11; Deductive Improvisation","uh":"investigator_apg,state:feature=s10-0"},{"c":5,"s":"APG","id":8802,"u":"resolve_investigator_apg_11_apg","p":59,"h":1,"n":"Investigator 11; Resolve","uh":"investigator_apg,state:feature=s10-1"},{"c":5,"s":"APG","id":8804,"u":"incredible%20senses_investigator_apg_13_apg","p":59,"h":1,"n":"Investigator 13; Incredible Senses","uh":"investigator_apg,state:feature=s12-0"},{"c":5,"s":"APG","id":8806,"u":"light%20armor%20expertise_investigator_apg_13_apg","p":59,"h":1,"n":"Investigator 13; Light Armor Expertise","uh":"investigator_apg,state:feature=s12-1"},{"c":5,"s":"APG","id":8808,"u":"weapon%20mastery_investigator_apg_13_apg","p":59,"h":1,"n":"Investigator 13; Weapon Mastery","uh":"investigator_apg,state:feature=s12-2"},{"c":5,"s":"APG","id":8810,"u":"evasion_investigator_apg_15_apg","p":59,"h":1,"n":"Investigator 15; Evasion","uh":"investigator_apg,state:feature=s14-0"},{"c":5,"s":"APG","id":8812,"u":"greater%20weapon%20specialization_investigator_apg_15_apg","p":59,"h":1,"n":"Investigator 15; Greater Weapon Specialization","uh":"investigator_apg,state:feature=s14-1"},{"c":5,"s":"APG","id":8814,"u":"greater%20resolve_investigator_apg_17_apg","p":59,"h":1,"n":"Investigator 17; Greater Resolve","uh":"investigator_apg,state:feature=s16-0"},{"c":5,"s":"APG","id":8816,"u":"light%20armor%20mastery_investigator_apg_19_apg","p":59,"h":1,"n":"Investigator 19; Light Armor Mastery","uh":"investigator_apg,state:feature=s18-0"},{"c":5,"s":"APG","id":8818,"u":"master%20detective_investigator_apg_19_apg","p":59,"h":1,"n":"Investigator 19; Master Detective","uh":"investigator_apg,state:feature=s18-1"},{"c":5,"s":"SoM","id":8820,"u":"ancestry%20and%20background_magus_som_1_som","p":36,"h":1,"n":"Magus 1; Ancestry and Background","uh":"magus_som,state:feature=s0-0"},{"c":5,"s":"SoM","id":8822,"u":"initial%20proficiencies_magus_som_1_som","p":36,"h":1,"n":"Magus 1; Initial Proficiencies","uh":"magus_som,state:feature=s0-1"},{"c":5,"s":"SoM","id":8824,"u":"arcane%20spellcasting_magus_som_1_som","p":36,"h":1,"n":"Magus 1; Arcane Spellcasting","uh":"magus_som,state:feature=s0-2"},{"c":5,"s":"SoM","id":8826,"u":"hybrid%20study_magus_som_1_som","p":38,"h":1,"n":"Magus 1; Hybrid Study","uh":"magus_som,state:feature=s0-5"},{"c":5,"s":"SoM","id":8828,"u":"spellstrike_magus_som_1_som","p":37,"h":1,"n":"Magus 1; Spellstrike","uh":"magus_som,state:feature=s0-3"},{"c":5,"s":"SoM","id":8830,"u":"arcane%20cascade_magus_som_1_som","p":38,"h":1,"n":"Magus 1; Arcane Cascade","uh":"magus_som,state:feature=s0-4"},{"c":5,"s":"SoM","id":8832,"u":"conflux%20spells_magus_som_1_som","p":40,"h":1,"n":"Magus 1; Conflux Spells","uh":"magus_som,state:feature=s0-6"},{"c":5,"s":"SoM","id":8834,"u":"skill%20feats_magus_som_2_som","p":40,"h":1,"n":"Magus 2; Skill Feats","uh":"magus_som,state:feature=s1-1"},{"c":5,"s":"SoM","id":8836,"u":"magus%20feats_magus_som_2_som","p":40,"h":1,"n":"Magus 2; Magus Feats","uh":"magus_som,state:feature=s1-0"},{"c":5,"s":"SoM","id":8838,"u":"general%20feats_magus_som_3_som","p":40,"h":1,"n":"Magus 3; General Feats","uh":"magus_som,state:feature=s2-0"},{"c":5,"s":"SoM","id":8840,"u":"skill%20increases_magus_som_3_som","p":40,"h":1,"n":"Magus 3; Skill Increases","uh":"magus_som,state:feature=s2-1"},{"c":5,"s":"SoM","id":8842,"u":"ability%20boosts_magus_som_5_som","p":40,"h":1,"n":"Magus 5; Ability Boosts","uh":"magus_som,state:feature=s4-0"},{"c":5,"s":"SoM","id":8844,"u":"ancestry%20feats_magus_som_5_som","p":40,"h":1,"n":"Magus 5; Ancestry Feats","uh":"magus_som,state:feature=s4-1"},{"c":5,"s":"SoM","id":8846,"u":"lightning%20reflexes_magus_som_5_som","p":40,"h":1,"n":"Magus 5; Lightning Reflexes","uh":"magus_som,state:feature=s4-2"},{"c":5,"s":"SoM","id":8848,"u":"weapon%20expertise_magus_som_5_som","p":40,"h":1,"n":"Magus 5; Weapon Expertise","uh":"magus_som,state:feature=s4-3"},{"c":5,"s":"SoM","id":8850,"u":"studious%20spells_magus_som_7_som","p":41,"h":1,"n":"Magus 7; Studious Spells","uh":"magus_som,state:feature=s6-0"},{"c":5,"s":"SoM","id":8852,"u":"weapon%20specialization_magus_som_7_som","p":41,"h":1,"n":"Magus 7; Weapon Specialization","uh":"magus_som,state:feature=s6-1"},{"c":5,"s":"SoM","id":8854,"u":"alertness_magus_som_9_som","p":41,"h":1,"n":"Magus 9; Alertness","uh":"magus_som,state:feature=s8-0"},{"c":5,"s":"SoM","id":8856,"u":"expert%20spellcaster_magus_som_9_som","p":41,"h":1,"n":"Magus 9; Expert Spellcaster","uh":"magus_som,state:feature=s8-1"},{"c":5,"s":"SoM","id":8858,"u":"resolve_magus_som_9_som","p":41,"h":1,"n":"Magus 9; Resolve","uh":"magus_som,state:feature=s8-2"},{"c":5,"s":"SoM","id":8860,"u":"medium%20armor%20expertise_magus_som_11_som","p":41,"h":1,"n":"Magus 11; Medium Armor Expertise","uh":"magus_som,state:feature=s10-0"},{"c":5,"s":"SoM","id":8862,"u":"weapon%20mastery_magus_som_13_som","p":41,"h":1,"n":"Magus 13; Weapon Mastery","uh":"magus_som,state:feature=s12-0"},{"c":5,"s":"SoM","id":8864,"u":"greater%20weapon%20specialization_magus_som_15_som","p":41,"h":1,"n":"Magus 15; Greater Weapon Specialization","uh":"magus_som,state:feature=s14-0"},{"c":5,"s":"SoM","id":8866,"u":"juggernaut_magus_som_15_som","p":41,"h":1,"n":"Magus 15; Juggernaut","uh":"magus_som,state:feature=s14-1"},{"c":5,"s":"SoM","id":8868,"u":"master%20spellcaster_magus_som_17_som","p":41,"h":1,"n":"Magus 17; Master Spellcaster","uh":"magus_som,state:feature=s16-0"},{"c":5,"s":"SoM","id":8870,"u":"medium%20armor%20mastery_magus_som_17_som","p":41,"h":1,"n":"Magus 17; Medium Armor Mastery","uh":"magus_som,state:feature=s16-1"},{"c":5,"s":"SoM","id":8872,"u":"double%20spellstrike_magus_som_19_som","p":41,"h":1,"n":"Magus 19; Double Spellstrike","uh":"magus_som,state:feature=s18-0"},{"c":5,"s":"CRB","id":8874,"u":"ancestry%20and%20background_monk_crb_1_crb","p":156,"h":1,"n":"Monk 1; Ancestry and Background","uh":"monk_crb,state:feature=s0-0"},{"c":5,"s":"CRB","id":8876,"u":"initial%20proficiencies_monk_crb_1_crb","p":156,"h":1,"n":"Monk 1; Initial Proficiencies","uh":"monk_crb,state:feature=s0-1"},{"c":5,"s":"CRB","id":8878,"u":"flurry%20of%20blows_monk_crb_1_crb","p":156,"h":1,"n":"Monk 1; Flurry of Blows","uh":"monk_crb,state:feature=s0-2"},{"c":5,"s":"CRB","id":8880,"u":"monk%20feats_monk_crb_1_crb","p":156,"h":1,"n":"Monk 1; Monk Feats","uh":"monk_crb,state:feature=s0-3"},{"c":5,"s":"CRB","id":8882,"u":"powerful%20fist_monk_crb_1_crb","p":156,"h":1,"n":"Monk 1; Powerful Fist","uh":"monk_crb,state:feature=s0-4"},{"c":5,"s":"CRB","id":8884,"u":"skill%20feats_monk_crb_2_crb","p":156,"h":1,"n":"Monk 2; Skill Feats","uh":"monk_crb,state:feature=s1-0"},{"c":5,"s":"CRB","id":8886,"u":"general%20feats_monk_crb_3_crb","p":156,"h":1,"n":"Monk 3; General Feats","uh":"monk_crb,state:feature=s2-0"},{"c":5,"s":"CRB","id":8888,"u":"incredible%20movement_monk_crb_3_crb","p":156,"h":1,"n":"Monk 3; Incredible Movement","uh":"monk_crb,state:feature=s2-1"},{"c":5,"s":"CRB","id":8890,"u":"mystic%20strikes_monk_crb_3_crb","p":156,"h":1,"n":"Monk 3; Mystic Strikes","uh":"monk_crb,state:feature=s2-2"},{"c":5,"s":"CRB","id":8892,"u":"skill%20increases_monk_crb_3_crb","p":156,"h":1,"n":"Monk 3; Skill Increases","uh":"monk_crb,state:feature=s2-3"},{"c":5,"s":"CRB","id":8894,"u":"ability%20boosts_monk_crb_5_crb","p":156,"h":1,"n":"Monk 5; Ability Boosts","uh":"monk_crb,state:feature=s4-0"},{"c":5,"s":"CRB","id":8896,"u":"alertness_monk_crb_5_crb","p":157,"h":1,"n":"Monk 5; Alertness","uh":"monk_crb,state:feature=s4-1"},{"c":5,"s":"CRB","id":8898,"u":"ancestry%20feats_monk_crb_5_crb","p":157,"h":1,"n":"Monk 5; Ancestry Feats","uh":"monk_crb,state:feature=s4-2"},{"c":5,"s":"CRB","id":8900,"u":"expert%20strikes_monk_crb_5_crb","p":157,"h":1,"n":"Monk 5; Expert Strikes","uh":"monk_crb,state:feature=s4-3"},{"c":5,"s":"CRB","id":8902,"u":"path%20to%20perfection_monk_crb_7_crb","p":157,"h":1,"n":"Monk 7; Path to Perfection","uh":"monk_crb,state:feature=s6-0"},{"c":5,"s":"CRB","id":8904,"u":"weapon%20specialization_monk_crb_7_crb","p":157,"h":1,"n":"Monk 7; Weapon Specialization","uh":"monk_crb,state:feature=s6-1"},{"c":5,"s":"CRB","id":8906,"u":"metal%20strikes_monk_crb_9_crb","p":157,"h":1,"n":"Monk 9; Metal Strikes","uh":"monk_crb,state:feature=s8-0"},{"c":5,"s":"CRB","id":8908,"u":"monk%20expertise_monk_crb_9_crb","p":157,"h":1,"n":"Monk 9; Monk Expertise","uh":"monk_crb,state:feature=s8-1"},{"c":5,"s":"CRB","id":8910,"u":"second%20path%20to%20perfection_monk_crb_11_crb","p":157,"h":1,"n":"Monk 11; Second Path to Perfection","uh":"monk_crb,state:feature=s10-0"},{"c":5,"s":"CRB","id":8912,"u":"graceful%20mastery_monk_crb_13_crb","p":157,"h":1,"n":"Monk 13; Graceful Mastery","uh":"monk_crb,state:feature=s12-0"},{"c":5,"s":"CRB","id":8914,"u":"master%20strikes_monk_crb_13_crb","p":157,"h":1,"n":"Monk 13; Master Strikes","uh":"monk_crb,state:feature=s12-1"},{"c":5,"s":"CRB","id":8916,"u":"greater%20weapon%20specialization_monk_crb_15_crb","p":157,"h":1,"n":"Monk 15; Greater Weapon Specialization","uh":"monk_crb,state:feature=s14-0"},{"c":5,"s":"CRB","id":8918,"u":"third%20path%20to%20perfection_monk_crb_15_crb","p":157,"h":1,"n":"Monk 15; Third Path to Perfection","uh":"monk_crb,state:feature=s14-1"},{"c":5,"s":"CRB","id":8920,"u":"adamantine%20strikes_monk_crb_17_crb","p":158,"h":1,"n":"Monk 17; Adamantine Strikes","uh":"monk_crb,state:feature=s16-0"},{"c":5,"s":"CRB","id":8922,"u":"graceful%20legend_monk_crb_17_crb","p":158,"h":1,"n":"Monk 17; Graceful Legend","uh":"monk_crb,state:feature=s16-1"},{"c":5,"s":"CRB","id":8924,"u":"perfected%20form_monk_crb_19_crb","p":158,"h":1,"n":"Monk 19; Perfected Form","uh":"monk_crb,state:feature=s18-0"},{"c":5,"s":"APG","id":8926,"u":"ancestry%20and%20background_oracle_apg_1_apg","p":68,"h":1,"n":"Oracle 1; Ancestry and Background","uh":"oracle_apg,state:feature=s0-0"},{"c":5,"s":"APG","id":8928,"u":"initial%20proficiencies_oracle_apg_1_apg","p":68,"h":1,"n":"Oracle 1; Initial Proficiencies","uh":"oracle_apg,state:feature=s0-1"},{"c":5,"s":"APG","id":8930,"u":"divine%20spellcasting_oracle_apg_1_apg","p":68,"h":1,"n":"Oracle 1; Divine Spellcasting","uh":"oracle_apg,state:feature=s0-2"},{"c":5,"s":"APG","id":8932,"u":"spell%20repetoire_oracle_apg_1_apg","p":68,"h":1,"n":"Oracle 1; Spell Repetoire","uh":"oracle_apg,state:feature=s0-3"},{"c":5,"s":"APG","id":8934,"u":"mystery_oracle_apg_1_apg","p":69,"h":1,"n":"Oracle 1; Mystery","uh":"oracle_apg,state:feature=s0-4"},{"c":5,"s":"APG","id":8936,"u":"revelation%20spells_oracle_apg_1_apg","p":69,"h":1,"n":"Oracle 1; Revelation Spells","uh":"oracle_apg,state:feature=s0-0"},{"c":5,"s":"APG","id":8938,"u":"oracular%20curse_oracle_apg_1_apg","p":70,"h":1,"n":"Oracle 1; Oracular Curse","uh":"oracle_apg,state:feature=s0-0"},{"c":5,"s":"APG","id":8940,"u":"oracle%20feats_oracle_apg_2_apg","p":70,"h":1,"n":"Oracle 2; Oracle Feats","uh":"oracle_apg,state:feature=s1-0"},{"c":5,"s":"APG","id":8942,"u":"skill%20feats_oracle_apg_2_apg","p":70,"h":1,"n":"Oracle 2; Skill Feats","uh":"oracle_apg,state:feature=s1-1"},{"c":5,"s":"APG","id":8944,"u":"general%20feats_oracle_apg_3_apg","p":70,"h":1,"n":"Oracle 3; General Feats","uh":"oracle_apg,state:feature=s2-0"},{"c":5,"s":"APG","id":8946,"u":"signature%20spells_oracle_apg_3_apg","p":71,"h":1,"n":"Oracle 3; Signature Spells","uh":"oracle_apg,state:feature=s2-1"},{"c":5,"s":"APG","id":8948,"u":"skill%20increases_oracle_apg_3_apg","p":71,"h":1,"n":"Oracle 3; Skill Increases","uh":"oracle_apg,state:feature=s2-2"},{"c":5,"s":"APG","id":8950,"u":"ability%20boosts_oracle_apg_5_apg","p":71,"h":1,"n":"Oracle 5; Ability Boosts","uh":"oracle_apg,state:feature=s4-0"},{"c":5,"s":"APG","id":8952,"u":"ancestry%20feats_oracle_apg_5_apg","p":71,"h":1,"n":"Oracle 5; Ancestry Feats","uh":"oracle_apg,state:feature=s4-1"},{"c":5,"s":"APG","id":8954,"u":"expert%20spellcaster_oracle_apg_7_apg","p":71,"h":1,"n":"Oracle 7; Expert Spellcaster","uh":"oracle_apg,state:feature=s6-0"},{"c":5,"s":"APG","id":8956,"u":"resolve_oracle_apg_7_apg","p":71,"h":1,"n":"Oracle 7; Resolve","uh":"oracle_apg,state:feature=s6-1"},{"c":5,"s":"APG","id":8958,"u":"magical%20fortitude_oracle_apg_9_apg","p":71,"h":1,"n":"Oracle 9; Magical Fortitude","uh":"oracle_apg,state:feature=s8-0"},{"c":5,"s":"APG","id":8960,"u":"alertness_oracle_apg_11_apg","p":71,"h":1,"n":"Oracle 11; Alertness","uh":"oracle_apg,state:feature=s10-0"},{"c":5,"s":"APG","id":8962,"u":"major%20curse_oracle_apg_11_apg","p":71,"h":1,"n":"Oracle 11; Major Curse","uh":"oracle_apg,state:feature=s10-1"},{"c":5,"s":"APG","id":8964,"u":"weapon%20expertise_oracle_apg_11_apg","p":72,"h":1,"n":"Oracle 11; Weapon Expertise","uh":"oracle_apg,state:feature=s10-2"},{"c":5,"s":"APG","id":8966,"u":"light%20armor%20expertise_oracle_apg_13_apg","p":72,"h":1,"n":"Oracle 13; Light Armor Expertise","uh":"oracle_apg,state:feature=s12-0"},{"c":5,"s":"APG","id":8968,"u":"lightning%20reflexes_oracle_apg_13_apg","p":72,"h":1,"n":"Oracle 13; Lightning Reflexes","uh":"oracle_apg,state:feature=s12-1"},{"c":5,"s":"APG","id":8970,"u":"weapon%20specialization_oracle_apg_13_apg","p":72,"h":1,"n":"Oracle 13; Weapon Specialization","uh":"oracle_apg,state:feature=s12-2"},{"c":5,"s":"APG","id":8972,"u":"master%20spellcaster_oracle_apg_15_apg","p":72,"h":1,"n":"Oracle 15; Master Spellcaster","uh":"oracle_apg,state:feature=s14-0"},{"c":5,"s":"APG","id":8974,"u":"extreme%20curse_oracle_apg_17_apg","p":72,"h":1,"n":"Oracle 17; Extreme Curse","uh":"oracle_apg,state:feature=s16-0"},{"c":5,"s":"APG","id":8976,"u":"greater%20resolve_oracle_apg_17_apg","p":72,"h":1,"n":"Oracle 17; Greater Resolve","uh":"oracle_apg,state:feature=s16-1"},{"c":5,"s":"APG","id":8978,"u":"legendary%20spellcaster_oracle_apg_19_apg","p":72,"h":1,"n":"Oracle 19; Legendary Spellcaster","uh":"oracle_apg,state:feature=s18-0"},{"c":5,"s":"APG","id":8980,"u":"oracular%20clarity_oracle_apg_19_apg","p":72,"h":1,"n":"Oracle 19; Oracular Clarity","uh":"oracle_apg,state:feature=s18-1"},{"c":5,"s":"CRB","id":8982,"u":"ancestry%20and%20background_ranger_crb_1_crb","p":168,"h":1,"n":"Ranger 1; Ancestry and Background","uh":"ranger_crb,state:feature=s0-0"},{"c":5,"s":"CRB","id":8984,"u":"initial%20proficiencies_ranger_crb_1_crb","p":168,"h":1,"n":"Ranger 1; Initial Proficiencies","uh":"ranger_crb,state:feature=s0-1"},{"c":5,"s":"CRB","id":8986,"u":"hunt%20prey_ranger_crb_1_crb","p":168,"h":1,"n":"Ranger 1; Hunt Prey","uh":"ranger_crb,state:feature=s0-2"},{"c":5,"s":"CRB","id":8988,"u":"hunter's%20edge_ranger_crb_1_crb","p":168,"h":1,"n":"Ranger 1; Hunter's Edge","uh":"ranger_crb,state:feature=s0-3"},{"c":5,"s":"CRB","id":8990,"u":"ranger%20feats_ranger_crb_1_crb","p":168,"h":1,"n":"Ranger 1; Ranger Feats","uh":"ranger_crb,state:feature=s0-4"},{"c":5,"s":"CRB","id":8992,"u":"skill%20feats_ranger_crb_2_crb","p":168,"h":1,"n":"Ranger 2; Skill Feats","uh":"ranger_crb,state:feature=s1-0"},{"c":5,"s":"CRB","id":8994,"u":"general%20feats_ranger_crb_3_crb","p":168,"h":1,"n":"Ranger 3; General Feats","uh":"ranger_crb,state:feature=s2-0"},{"c":5,"s":"CRB","id":8996,"u":"iron%20will_ranger_crb_3_crb","p":168,"h":1,"n":"Ranger 3; Iron Will","uh":"ranger_crb,state:feature=s2-1"},{"c":5,"s":"CRB","id":8998,"u":"skill%20increases_ranger_crb_3_crb","p":168,"h":1,"n":"Ranger 3; Skill Increases","uh":"ranger_crb,state:feature=s2-2"},{"c":5,"s":"CRB","id":9000,"u":"ability%20boosts_ranger_crb_5_crb","p":169,"h":1,"n":"Ranger 5; Ability Boosts","uh":"ranger_crb,state:feature=s4-0"},{"c":5,"s":"CRB","id":9002,"u":"ancestry%20feats_ranger_crb_5_crb","p":169,"h":1,"n":"Ranger 5; Ancestry Feats","uh":"ranger_crb,state:feature=s4-1"},{"c":5,"s":"CRB","id":9004,"u":"weapon%20expertise_ranger_crb_5_crb","p":169,"h":1,"n":"Ranger 5; Weapon Expertise","uh":"ranger_crb,state:feature=s4-3"},{"c":5,"s":"CRB","id":9006,"u":"trackless%20step_ranger_crb_5_crb","p":169,"h":1,"n":"Ranger 5; Trackless Step","uh":"ranger_crb,state:feature=s4-2"},{"c":5,"s":"CRB","id":9008,"u":"evasion_ranger_crb_7_crb","p":169,"h":1,"n":"Ranger 7; Evasion","uh":"ranger_crb,state:feature=s6-0"},{"c":5,"s":"CRB","id":9010,"u":"vigilant%20senses_ranger_crb_7_crb","p":169,"h":1,"n":"Ranger 7; Vigilant Senses","uh":"ranger_crb,state:feature=s6-1"},{"c":5,"s":"CRB","id":9012,"u":"weapon%20specialization_ranger_crb_7_crb","p":169,"h":1,"n":"Ranger 7; Weapon Specialization","uh":"ranger_crb,state:feature=s6-2"},{"c":5,"s":"CRB","id":9014,"u":"nature's%20edge_ranger_crb_9_crb","p":169,"h":1,"n":"Ranger 9; Nature's Edge","uh":"ranger_crb,state:feature=s8-0"},{"c":5,"s":"CRB","id":9016,"u":"ranger%20expertise_ranger_crb_9_crb","p":169,"h":1,"n":"Ranger 9; Ranger Expertise","uh":"ranger_crb,state:feature=s8-1"},{"c":5,"s":"CRB","id":9018,"u":"juggernaut_ranger_crb_11_crb","p":169,"h":1,"n":"Ranger 11; Juggernaut","uh":"ranger_crb,state:feature=s10-0"},{"c":5,"s":"CRB","id":9020,"u":"medium%20armor%20expertise_ranger_crb_11_crb","p":169,"h":1,"n":"Ranger 11; Medium Armor Expertise","uh":"ranger_crb,state:feature=s10-1"},{"c":5,"s":"CRB","id":9022,"u":"wild%20stride_ranger_crb_11_crb","p":169,"h":1,"n":"Ranger 11; Wild Stride","uh":"ranger_crb,state:feature=s10-2"},{"c":5,"s":"CRB","id":9024,"u":"weapon%20mastery_ranger_crb_13_crb","p":169,"h":1,"n":"Ranger 13; Weapon Mastery","uh":"ranger_crb,state:feature=s12-0"},{"c":5,"s":"CRB","id":9026,"u":"greater%20weapon%20specialization_ranger_crb_15_crb","p":169,"h":1,"n":"Ranger 15; Greater Weapon Specialization","uh":"ranger_crb,state:feature=s14-0"},{"c":5,"s":"CRB","id":9028,"u":"improved%20evasion_ranger_crb_15_crb","p":169,"h":1,"n":"Ranger 15; Improved Evasion","uh":"ranger_crb,state:feature=s14-1"},{"c":5,"s":"CRB","id":9030,"u":"incredible%20senses_ranger_crb_15_crb","p":170,"h":1,"n":"Ranger 15; Incredible Senses","uh":"ranger_crb,state:feature=s14-2"},{"c":5,"s":"CRB","id":9032,"u":"masterful%20hunter_ranger_crb_17_crb","p":170,"h":1,"n":"Ranger 17; Masterful Hunter","uh":"ranger_crb,state:feature=s16-0"},{"c":5,"s":"CRB","id":9034,"u":"second%20skin_ranger_crb_19_crb","p":170,"h":1,"n":"Ranger 19; Second Skin","uh":"ranger_crb,state:feature=s18-0"},{"c":5,"s":"CRB","id":9036,"u":"swift%20prey_ranger_crb_19_crb","p":170,"h":1,"n":"Ranger 19; Swift Prey","uh":"ranger_crb,state:feature=s18-1"},{"c":5,"s":"CRB","id":9038,"u":"ancestry%20and%20background_rogue_crb_1_crb","p":180,"h":1,"n":"Rogue 1; Ancestry and Background","uh":"rogue_crb,state:feature=s0-0"},{"c":5,"s":"CRB","id":9040,"u":"initial%20proficiencies_rogue_crb_1_crb","p":180,"h":1,"n":"Rogue 1; Initial Proficiencies","uh":"rogue_crb,state:feature=s0-1"},{"c":5,"s":"CRB","id":9042,"u":"rogue%20feats_rogue_crb_1_crb","p":180,"h":1,"n":"Rogue 1; Rogue Feats","uh":"rogue_crb,state:feature=s0-5"},{"c":5,"s":"CRB","id":9044,"u":"rogue's%20racket_rogue_crb_1_crb","p":180,"h":1,"n":"Rogue 1; Rogue's Racket","uh":"rogue_crb,state:feature=s0-2"},{"c":5,"s":"CRB","id":9046,"u":"skill%20feats_rogue_crb_1_crb","p":181,"h":1,"n":"Rogue 1; Skill Feats","uh":"rogue_crb,state:feature=s0-6"},{"c":5,"s":"CRB","id":9048,"u":"sneak%20attack_rogue_crb_1_crb","p":181,"h":1,"n":"Rogue 1; Sneak Attack","uh":"rogue_crb,state:feature=s0-3"},{"c":5,"s":"CRB","id":9050,"u":"surprise%20attack_rogue_crb_1_crb","p":181,"h":1,"n":"Rogue 1; Surprise Attack","uh":"rogue_crb,state:feature=s0-4"},{"c":5,"s":"CRB","id":9052,"u":"skill%20increases_rogue_crb_2_crb","p":181,"h":1,"n":"Rogue 2; Skill Increases","uh":"rogue_crb,state:feature=s1-0"},{"c":5,"s":"CRB","id":9054,"u":"deny%20advantage_rogue_crb_3_crb","p":181,"h":1,"n":"Rogue 3; Deny Advantage","uh":"rogue_crb,state:feature=s2-1"},{"c":5,"s":"CRB","id":9056,"u":"general%20feats_rogue_crb_3_crb","p":181,"h":1,"n":"Rogue 3; General Feats","uh":"rogue_crb,state:feature=s2-0"},{"c":5,"s":"CRB","id":9058,"u":"deny%20advantage_rogue_crb_3_crb","p":181,"h":1,"n":"Rogue 3; Deny Advantage","uh":"rogue_crb,state:feature=s2-1"},{"c":5,"s":"CRB","id":9060,"u":"ability%20boosts_rogue_crb_5_crb","p":181,"h":1,"n":"Rogue 5; Ability Boosts","uh":"rogue_crb,state:feature=s4-0"},{"c":5,"s":"CRB","id":9062,"u":"ancestry%20feats_rogue_crb_5_crb","p":182,"h":1,"n":"Rogue 5; Ancestry Feats","uh":"rogue_crb,state:feature=s4-1"},{"c":5,"s":"CRB","id":9064,"u":"weapon%20tricks_rogue_crb_5_crb","p":182,"h":1,"n":"Rogue 5; Weapon Tricks","uh":"rogue_crb,state:feature=s4-2"},{"c":5,"s":"CRB","id":9066,"u":"evasion_rogue_crb_7_crb","p":182,"h":1,"n":"Rogue 7; Evasion","uh":"rogue_crb,state:feature=s6-0"},{"c":5,"s":"CRB","id":9068,"u":"vigilant%20senses_rogue_crb_7_crb","p":182,"h":1,"n":"Rogue 7; Vigilant Senses","uh":"rogue_crb,state:feature=s6-1"},{"c":5,"s":"CRB","id":9070,"u":"weapon%20specialization_rogue_crb_7_crb","p":182,"h":1,"n":"Rogue 7; Weapon Specialization","uh":"rogue_crb,state:feature=s6-2"},{"c":5,"s":"CRB","id":9072,"u":"debilitating%20strikes_rogue_crb_9_crb","p":182,"h":1,"n":"Rogue 9; Debilitating Strikes","uh":"rogue_crb,state:feature=s8-0"},{"c":5,"s":"CRB","id":9074,"u":"great%20fortitude_rogue_crb_9_crb","p":182,"h":1,"n":"Rogue 9; Great Fortitude","uh":"rogue_crb,state:feature=s8-1"},{"c":5,"s":"CRB","id":9076,"u":"rogue%20expertise_rogue_crb_11_crb","p":182,"h":1,"n":"Rogue 11; Rogue Expertise","uh":"rogue_crb,state:feature=s10-0"},{"c":5,"s":"CRB","id":9078,"u":"improved%20evasion_rogue_crb_13_crb","p":182,"h":1,"n":"Rogue 13; Improved Evasion","uh":"rogue_crb,state:feature=s12-0"},{"c":5,"s":"CRB","id":9080,"u":"incredible%20senses_rogue_crb_13_crb","p":182,"h":1,"n":"Rogue 13; Incredible Senses","uh":"rogue_crb,state:feature=s12-1"},{"c":5,"s":"CRB","id":9082,"u":"light%20armor%20expertise_rogue_crb_13_crb","p":182,"h":1,"n":"Rogue 13; Light Armor Expertise","uh":"rogue_crb,state:feature=s12-2"},{"c":5,"s":"CRB","id":9084,"u":"master%20tricks_rogue_crb_13_crb","p":182,"h":1,"n":"Rogue 13; Master Tricks","uh":"rogue_crb,state:feature=s12-3"},{"c":5,"s":"CRB","id":9086,"u":"double%20debilitation_rogue_crb_15_crb","p":182,"h":1,"n":"Rogue 15; Double Debilitation","uh":"rogue_crb,state:feature=s14-0"},{"c":5,"s":"CRB","id":9088,"u":"greater%20weapon%20specialization_rogue_crb_15_crb","p":182,"h":1,"n":"Rogue 15; Greater Weapon Specialization","uh":"rogue_crb,state:feature=s14-1"},{"c":5,"s":"CRB","id":9090,"u":"slippery%20mind_rogue_crb_17_crb","p":182,"h":1,"n":"Rogue 17; Slippery Mind","uh":"rogue_crb,state:feature=s16-0"},{"c":5,"s":"CRB","id":9092,"u":"light%20armor%20mastery_rogue_crb_19_crb","p":182,"h":1,"n":"Rogue 19; Light Armor Mastery","uh":"rogue_crb,state:feature=s18-0"},{"c":5,"s":"CRB","id":9094,"u":"master%20strike_rogue_crb_19_crb","p":182,"h":1,"n":"Rogue 19; Master Strike","uh":"rogue_crb,state:feature=s18-1"},{"c":5,"s":"CRB","id":9096,"u":"ancestry%20and%20background_sorcerer_crb_1_crb","p":196,"h":1,"n":"Sorcerer 1; Ancestry and Background","uh":"sorcerer_crb,state:feature=s0-0"},{"c":5,"s":"CRB","id":9098,"u":"bloodline_sorcerer_crb_1_crb","p":196,"h":1,"n":"Sorcerer 1; Bloodline","uh":"sorcerer_crb,state:feature=s0-2"},{"c":5,"s":"CRB","id":9100,"u":"initial%20proficiencies_sorcerer_crb_1_crb","p":196,"h":1,"n":"Sorcerer 1; Initial Proficiencies","uh":"sorcerer_crb,state:feature=s0-1"},{"c":5,"s":"CRB","id":9102,"u":"sorcerer%20spellcasting_sorcerer_crb_1_crb","p":192,"h":1,"n":"Sorcerer 1; Sorcerer Spellcasting","uh":"sorcerer_crb,state:feature=s0-3"},{"c":5,"s":"CRB","id":9104,"u":"spell%20repertoire_sorcerer_crb_1_crb","p":193,"h":1,"n":"Sorcerer 1; Spell Repertoire","uh":"sorcerer_crb,state:feature=s0-4"},{"c":5,"s":"CRB","id":9106,"u":"skill%20feats_sorcerer_crb_2_crb","p":193,"h":1,"n":"Sorcerer 2; Skill Feats","uh":"sorcerer_crb,state:feature=s1-0"},{"c":5,"s":"CRB","id":9108,"u":"sorcerer%20feats_sorcerer_crb_2_crb","p":193,"h":1,"n":"Sorcerer 2; Sorcerer Feats","uh":"sorcerer_crb,state:feature=s1-1"},{"c":5,"s":"CRB","id":9110,"u":"general%20feats_sorcerer_crb_3_crb","p":193,"h":1,"n":"Sorcerer 3; General Feats","uh":"sorcerer_crb,state:feature=s2-0"},{"c":5,"s":"CRB","id":9112,"u":"signature%20spells_sorcerer_crb_3_crb","p":193,"h":1,"n":"Sorcerer 3; Signature Spells","uh":"sorcerer_crb,state:feature=s2-1"},{"c":5,"s":"CRB","id":9114,"u":"skill%20increases_sorcerer_crb_3_crb","p":194,"h":1,"n":"Sorcerer 3; Skill Increases","uh":"sorcerer_crb,state:feature=s2-2"},{"c":5,"s":"CRB","id":9116,"u":"ability%20boosts_sorcerer_crb_5_crb","p":194,"h":1,"n":"Sorcerer 5; Ability Boosts","uh":"sorcerer_crb,state:feature=s4-0"},{"c":5,"s":"CRB","id":9118,"u":"ancestry%20feats_sorcerer_crb_5_crb","p":194,"h":1,"n":"Sorcerer 5; Ancestry Feats","uh":"sorcerer_crb,state:feature=s4-1"},{"c":5,"s":"CRB","id":9120,"u":"magical%20fortitude_sorcerer_crb_5_crb","p":194,"h":1,"n":"Sorcerer 5; Magical Fortitude","uh":"sorcerer_crb,state:feature=s4-2"},{"c":5,"s":"CRB","id":9122,"u":"expert%20spellcaster_sorcerer_crb_7_crb","p":194,"h":1,"n":"Sorcerer 7; Expert Spellcaster","uh":"sorcerer_crb,state:feature=s6-0"},{"c":5,"s":"CRB","id":9124,"u":"lightning%20reflexes_sorcerer_crb_9_crb","p":194,"h":1,"n":"Sorcerer 9; Lightning Reflexes","uh":"sorcerer_crb,state:feature=s8-0"},{"c":5,"s":"CRB","id":9126,"u":"alertness_sorcerer_crb_11_crb","p":194,"h":1,"n":"Sorcerer 11; Alertness","uh":"sorcerer_crb,state:feature=s10-0"},{"c":5,"s":"CRB","id":9128,"u":"simple%20weapon%20expertise_sorcerer_crb_11_crb","p":194,"h":1,"n":"Sorcerer 11; Simple Weapon Expertise","uh":"sorcerer_crb,state:feature=s10-1"},{"c":5,"s":"CRB","id":9130,"u":"defensive%20robes_sorcerer_crb_13_crb","p":194,"h":1,"n":"Sorcerer 13; Defensive Robes","uh":"sorcerer_crb,state:feature=s12-0"},{"c":5,"s":"CRB","id":9132,"u":"weapon%20specialization_sorcerer_crb_13_crb","p":194,"h":1,"n":"Sorcerer 13; Weapon Specialization","uh":"sorcerer_crb,state:feature=s12-1"},{"c":5,"s":"CRB","id":9134,"u":"master%20spellcaster_sorcerer_crb_15_crb","p":194,"h":1,"n":"Sorcerer 15; Master Spellcaster","uh":"sorcerer_crb,state:feature=s14-0"},{"c":5,"s":"CRB","id":9136,"u":"resolve_sorcerer_crb_17_crb","p":194,"h":1,"n":"Sorcerer 17; Resolve","uh":"sorcerer_crb,state:feature=s16-0"},{"c":5,"s":"CRB","id":9138,"u":"bloodline%20paragon_sorcerer_crb_19_crb","p":194,"h":1,"n":"Sorcerer 19; Bloodline Paragon","uh":"sorcerer_crb,state:feature=s18-0"},{"c":5,"s":"CRB","id":9140,"u":"legendary%20spellcaster_sorcerer_crb_19_crb","p":194,"h":1,"n":"Sorcerer 19; Legendary Spellcaster","uh":"sorcerer_crb,state:feature=s18-1"},{"c":5,"s":"SoM","id":9142,"u":"ancestry%20and%20background_summoner_som_1_som","p":52,"h":1,"n":"Summoner 1; Ancestry and Background","uh":"summoner_som,state:feature=s0-0"},{"c":5,"s":"SoM","id":9144,"u":"initial%20proficiencies_summoner_som_1_som","p":52,"h":1,"n":"Summoner 1; Initial Proficiencies","uh":"summoner_som,state:feature=s0-1"},{"c":5,"s":"SoM","id":9146,"u":"eidolon_summoner_som_1_som","p":52,"h":1,"n":"Summoner 1; Eidolon","uh":"summoner_som,state:feature=s0-2"},{"c":5,"s":"SoM","id":9148,"u":"summoner%20spellcasting_summoner_som_1_som","p":54,"h":1,"n":"Summoner 1; Summoner Spellcasting","uh":"summoner_som,state:feature=s0-3"},{"c":5,"s":"SoM","id":9150,"u":"spell%20repertoire_summoner_som_1_som","p":52,"h":1,"n":"Summoner 1; Spell Repertoire","uh":"summoner_som,state:feature=s0-4"},{"c":5,"s":"SoM","id":9152,"u":"link%20spells_summoner_som_1_som","p":55,"h":1,"n":"Summoner 1; Link Spells","uh":"summoner_som,state:feature=s0-5"},{"c":5,"s":"SoM","id":9154,"u":"evolution%20feat_summoner_som_1_som","p":56,"h":1,"n":"Summoner 1; Evolution Feat","uh":"summoner_som,state:feature=s0-6"},{"c":5,"s":"SoM","id":9156,"u":"skill%20feats_summoner_som_2_som","p":56,"h":1,"n":"Summoner 2; Skill Feats","uh":"summoner_som,state:feature=s1-0"},{"c":5,"s":"SoM","id":9158,"u":"summoner%20feats_summoner_som_2_som","p":56,"h":1,"n":"Summoner 2; Summoner Feats","uh":"summoner_som,state:feature=s1-1"},{"c":5,"s":"SoM","id":9160,"u":"general%20feats_summoner_som_3_som","p":56,"h":1,"n":"Summoner 3; General Feats","uh":"summoner_som,state:feature=s2-0"},{"c":5,"s":"SoM","id":9162,"u":"shared%20vigilance_summoner_som_3_som","p":56,"h":1,"n":"Summoner 3; Shared Vigilance","uh":"summoner_som,state:feature=s2-1"},{"c":5,"s":"SoM","id":9164,"u":"skill%20increases_summoner_som_3_som","p":56,"h":1,"n":"Summoner 3; Skill Increases","uh":"summoner_som,state:feature=s2-2"},{"c":5,"s":"SoM","id":9166,"u":"unlimited%20signature%20spells_summoner_som_3_som","p":56,"h":1,"n":"Summoner 3; Unlimited Signature Spells","uh":"summoner_som,state:feature=s2-3"},{"c":5,"s":"SoM","id":9168,"u":"ability%20boosts_summoner_som_5_som","p":56,"h":1,"n":"Summoner 5; Ability Boosts","uh":"summoner_som,state:feature=s4-0"},{"c":5,"s":"SoM","id":9170,"u":"ancestry%20feats_summoner_som_5_som","p":56,"h":1,"n":"Summoner 5; Ancestry Feats","uh":"summoner_som,state:feature=s4-1"},{"c":5,"s":"SoM","id":9172,"u":"eidolon%20unarmed%20expertise_summoner_som_5_som","p":56,"h":1,"n":"Summoner 5; Eidolon Unarmed Expertise","uh":"summoner_som,state:feature=s4-2"},{"c":5,"s":"SoM","id":9174,"u":"eidolon%20symbiosis_summoner_som_7_som","p":56,"h":1,"n":"Summoner 7; Eidolon Symbiosis","uh":"summoner_som,state:feature=s6-0"},{"c":5,"s":"SoM","id":9176,"u":"eidolon%20weapon%20specialization_summoner_som_7_som","p":56,"h":1,"n":"Summoner 7; Eidolon Weapon Specialization","uh":"summoner_som,state:feature=s6-1"},{"c":5,"s":"SoM","id":9178,"u":"expert%20spellcaster_summoner_som_9_som","p":56,"h":1,"n":"Summoner 9; Expert Spellcaster","uh":"summoner_som,state:feature=s8-0"},{"c":5,"s":"SoM","id":9180,"u":"shared%20reflexes_summoner_som_9_som","p":57,"h":1,"n":"Summoner 9; Shared Reflexes","uh":"summoner_som,state:feature=s8-1"},{"c":5,"s":"SoM","id":9182,"u":"eidolon%20defensive%20expertise_summoner_som_11_som","p":57,"h":1,"n":"Summoner 11; Eidolon Defensive Expertise","uh":"summoner_som,state:feature=s10-0"},{"c":5,"s":"SoM","id":9184,"u":"simple%20weapon%20expertise_summoner_som_11_som","p":57,"h":1,"n":"Summoner 11; Simple Weapon Expertise","uh":"summoner_som,state:feature=s10-1"},{"c":5,"s":"SoM","id":9186,"u":"twin%20juggernauts_summoner_som_11_som","p":57,"h":1,"n":"Summoner 11; Twin Juggernauts","uh":"summoner_som,state:feature=s10-2"},{"c":5,"s":"SoM","id":9188,"u":"defensive%20robes_summoner_som_13_som","p":57,"h":1,"n":"Summoner 13; Defensive Robes","uh":"summoner_som,state:feature=s12-0"},{"c":5,"s":"SoM","id":9190,"u":"eidolon%20unarmed%20mastery_summoner_som_13_som","p":57,"h":1,"n":"Summoner 13; Eidolon Unarmed Mastery","uh":"summoner_som,state:feature=s12-1"},{"c":5,"s":"SoM","id":9192,"u":"weapon%20specialization_summoner_som_13_som","p":57,"h":1,"n":"Summoner 13; Weapon Specialization","uh":"summoner_som,state:feature=s12-2"},{"c":5,"s":"SoM","id":9194,"u":"greater%20eidolon%20specialization_summoner_som_15_som","p":57,"h":1,"n":"Summoner 15; Greater Eidolon Specialization","uh":"summoner_som,state:feature=s14-0"},{"c":5,"s":"SoM","id":9196,"u":"shared%20resolve_summoner_som_15_som","p":57,"h":1,"n":"Summoner 15; Shared Resolve","uh":"summoner_som,state:feature=s14-1"},{"c":5,"s":"SoM","id":9198,"u":"eidolon%20transcendence_summoner_som_17_som","p":57,"h":1,"n":"Summoner 17; Eidolon Transcendence","uh":"summoner_som,state:feature=s16-0"},{"c":5,"s":"SoM","id":9200,"u":"master%20spellcaster_summoner_som_17_som","p":57,"h":1,"n":"Summoner 17; Master Spellcaster","uh":"summoner_som,state:feature=s16-1"},{"c":5,"s":"SoM","id":9202,"u":"eidolon%20defensive%20mastery_summoner_som_19_som","p":57,"h":1,"n":"Summoner 19; Eidolon Defensive Mastery","uh":"summoner_som,state:feature=s18-0"},{"c":5,"s":"SoM","id":9204,"u":"instant%20manifestation_summoner_som_19_som","p":57,"h":1,"n":"Summoner 19; Instant Manifestation","uh":"summoner_som,state:feature=s18-1"},{"c":5,"s":"APG","id":9206,"u":"ancestry%20and%20background_swashbuckler_apg_1_apg","p":84,"h":1,"n":"Swashbuckler 1; Ancestry and Background","uh":"swashbuckler_apg,state:feature=s0-0"},{"c":5,"s":"APG","id":9208,"u":"initial%20proficiencies_swashbuckler_apg_1_apg","p":84,"h":1,"n":"Swashbuckler 1; Initial Proficiencies","uh":"swashbuckler_apg,state:feature=s0-1"},{"c":5,"s":"APG","id":9210,"u":"panache_swashbuckler_apg_1_apg","p":84,"h":1,"n":"Swashbuckler 1; Panache","uh":"swashbuckler_apg,state:feature=s0-2"},{"c":5,"s":"APG","id":9212,"u":"swashbuckler's%20style_swashbuckler_apg_1_apg","p":84,"h":1,"n":"Swashbuckler 1; Swashbuckler's Style","uh":"swashbuckler_apg,state:feature=s0-4"},{"c":5,"s":"APG","id":9214,"u":"precise%20strike_swashbuckler_apg_1_apg","p":85,"h":1,"n":"Swashbuckler 1; Precise Strike","uh":"swashbuckler_apg,state:feature=s0-3"},{"c":5,"s":"APG","id":9216,"u":"confident%20finisher_swashbuckler_apg_1_apg","p":85,"h":1,"n":"Swashbuckler 1; Confident Finisher","uh":"swashbuckler_apg,state:feature=s0-5"},{"c":5,"s":"APG","id":9218,"u":"swashbuckler%20feats_swashbuckler_apg_1_apg","p":85,"h":1,"n":"Swashbuckler 1; Swashbuckler Feats","uh":"swashbuckler_apg,state:feature=s0-6"},{"c":5,"s":"APG","id":9220,"u":"skill%20feats_swashbuckler_apg_2_apg","p":85,"h":1,"n":"Swashbuckler 2; Skill Feats","uh":"swashbuckler_apg,state:feature=s1-0"},{"c":5,"s":"APG","id":9222,"u":"general%20feats_swashbuckler_apg_3_apg","p":85,"h":1,"n":"Swashbuckler 3; General Feats","uh":"swashbuckler_apg,state:feature=s2-0"},{"c":5,"s":"APG","id":9224,"u":"great%20fortitude_swashbuckler_apg_3_apg","p":85,"h":1,"n":"Swashbuckler 3; Great Fortitude","uh":"swashbuckler_apg,state:feature=s2-1"},{"c":5,"s":"APG","id":9226,"u":"opportune%20riposte_swashbuckler_apg_3_apg","p":85,"h":1,"n":"Swashbuckler 3; Opportune Riposte","uh":"swashbuckler_apg,state:feature=s2-2"},{"c":5,"s":"APG","id":9228,"u":"skill%20increases_swashbuckler_apg_3_apg","p":86,"h":1,"n":"Swashbuckler 3; Skill Increases","uh":"swashbuckler_apg,state:feature=s2-3"},{"c":5,"s":"APG","id":9230,"u":"stylish%20tricks_swashbuckler_apg_3_apg","p":86,"h":1,"n":"Swashbuckler 3; Stylish Tricks","uh":"swashbuckler_apg,state:feature=s2-4"},{"c":5,"s":"APG","id":9232,"u":"vivacious%20speed_swashbuckler_apg_3_apg","p":86,"h":1,"n":"Swashbuckler 3; Vivacious Speed","uh":"swashbuckler_apg,state:feature=s2-5"},{"c":5,"s":"APG","id":9234,"u":"ability%20boosts_swashbuckler_apg_5_apg","p":86,"h":1,"n":"Swashbuckler 5; Ability Boosts","uh":"swashbuckler_apg,state:feature=s4-0"},{"c":5,"s":"APG","id":9236,"u":"ancestry%20feats_swashbuckler_apg_5_apg","p":86,"h":1,"n":"Swashbuckler 5; Ancestry Feats","uh":"swashbuckler_apg,state:feature=s4-1"},{"c":5,"s":"APG","id":9238,"u":"weapon%20expertise_swashbuckler_apg_5_apg","p":86,"h":1,"n":"Swashbuckler 5; Weapon Expertise","uh":"swashbuckler_apg,state:feature=s4-2"},{"c":5,"s":"APG","id":9240,"u":"evasion_swashbuckler_apg_7_apg","p":86,"h":1,"n":"Swashbuckler 7; Evasion","uh":"swashbuckler_apg,state:feature=s6-0"},{"c":5,"s":"APG","id":9242,"u":"weapon%20specialization_swashbuckler_apg_7_apg","p":86,"h":1,"n":"Swashbuckler 7; Weapon Specialization","uh":"swashbuckler_apg,state:feature=s6-1"},{"c":5,"s":"APG","id":9244,"u":"exemplary%20finisher_swashbuckler_apg_9_apg","p":86,"h":1,"n":"Swashbuckler 9; Exemplary Finisher","uh":"swashbuckler_apg,state:feature=s8-0"},{"c":5,"s":"APG","id":9246,"u":"swashbuckler%20expertise_swashbuckler_apg_9_apg","p":87,"h":1,"n":"Swashbuckler 9; Swashbuckler Expertise","uh":"swashbuckler_apg,state:feature=s8-1"},{"c":5,"s":"APG","id":9248,"u":"continuous%20flair_swashbuckler_apg_11_apg","p":87,"h":1,"n":"Swashbuckler 11; Continuous Flair","uh":"swashbuckler_apg,state:feature=s10-0"},{"c":5,"s":"APG","id":9250,"u":"vigilant%20senses_swashbuckler_apg_11_apg","p":87,"h":1,"n":"Swashbuckler 11; Vigilant Senses","uh":"swashbuckler_apg,state:feature=s10-1"},{"c":5,"s":"APG","id":9252,"u":"improved%20evasion_swashbuckler_apg_13_apg","p":86,"h":1,"n":"Swashbuckler 13; Improved Evasion","uh":"swashbuckler_apg,state:feature=s12-0"},{"c":5,"s":"APG","id":9254,"u":"light%20armor%20expertise_swashbuckler_apg_13_apg","p":86,"h":1,"n":"Swashbuckler 13; Light Armor Expertise","uh":"swashbuckler_apg,state:feature=s12-1"},{"c":5,"s":"APG","id":9256,"u":"weapon%20mastery_swashbuckler_apg_13_apg","p":86,"h":1,"n":"Swashbuckler 13; Weapon Mastery","uh":"swashbuckler_apg,state:feature=s12-2"},{"c":5,"s":"APG","id":9258,"u":"greater%20weapon%20specialization_swashbuckler_apg_15_apg","p":86,"h":1,"n":"Swashbuckler 15; Greater Weapon Specialization","uh":"swashbuckler_apg,state:feature=s14-0"},{"c":5,"s":"APG","id":9260,"u":"keen%20flair_swashbuckler_apg_15_apg","p":86,"h":1,"n":"Swashbuckler 15; Keen Flair","uh":"swashbuckler_apg,state:feature=s14-1"},{"c":5,"s":"APG","id":9262,"u":"resolve_swashbuckler_apg_17_apg","p":86,"h":1,"n":"Swashbuckler 17; Resolve","uh":"swashbuckler_apg,state:feature=s16-0"},{"c":5,"s":"APG","id":9264,"u":"eternal%20confidence_swashbuckler_apg_19_apg","p":86,"h":1,"n":"Swashbuckler 19; Eternal Confidence","uh":"swashbuckler_apg,state:feature=s18-0"},{"c":5,"s":"APG","id":9266,"u":"light%20armor%20mastery_swashbuckler_apg_19_apg","p":86,"h":1,"n":"Swashbuckler 19; Light Armor Mastery","uh":"swashbuckler_apg,state:feature=s18-1"},{"c":5,"s":"APG","id":9268,"u":"ancestry%20and%20background_witch_apg_1_apg","p":96,"h":1,"n":"Witch 1; Ancestry and Background","uh":"witch_apg,state:feature=s0-0"},{"c":5,"s":"APG","id":9270,"u":"initial%20proficiencies_witch_apg_1_apg","p":96,"h":1,"n":"Witch 1; Initial Proficiencies","uh":"witch_apg,state:feature=s0-1"},{"c":5,"s":"APG","id":9272,"u":"witch%20feats_witch_apg_2_apg","p":98,"h":1,"n":"Witch 2; Witch Feats","uh":"witch_apg,state:feature=s1-1"},{"c":5,"s":"APG","id":9274,"u":"patron_witch_apg_1_apg","p":96,"h":1,"n":"Witch 1; Patron","uh":"witch_apg,state:feature=s0-2"},{"c":5,"s":"APG","id":9276,"u":"familiar_witch_apg_1_apg","p":96,"h":1,"n":"Witch 1; Familiar","uh":"witch_apg,state:feature=s0-3"},{"c":5,"s":"APG","id":9278,"u":"witch%20spellcasting_witch_apg_1_apg","p":96,"h":1,"n":"Witch 1; Witch Spellcasting","uh":"witch_apg,state:feature=s0-4"},{"c":5,"s":"APG","id":9280,"u":"hexes_witch_apg_1_apg","p":97,"h":1,"n":"Witch 1; Hexes","uh":"witch_apg,state:feature=s0-5"},{"c":5,"s":"APG","id":9282,"u":"skill%20feats_witch_apg_2_apg","p":98,"h":1,"n":"Witch 2; Skill Feats","uh":"witch_apg,state:feature=s1-0"},{"c":5,"s":"APG","id":9284,"u":"general%20feats_witch_apg_3_apg","p":98,"h":1,"n":"Witch 3; General Feats","uh":"witch_apg,state:feature=s2-0"},{"c":5,"s":"APG","id":9286,"u":"skill%20increases_witch_apg_3_apg","p":98,"h":1,"n":"Witch 3; Skill Increases","uh":"witch_apg,state:feature=s2-1"},{"c":5,"s":"APG","id":9288,"u":"ability%20boosts_witch_apg_5_apg","p":98,"h":1,"n":"Witch 5; Ability Boosts","uh":"witch_apg,state:feature=s4-0"},{"c":5,"s":"APG","id":9290,"u":"ancestry%20feats_witch_apg_5_apg","p":98,"h":1,"n":"Witch 5; Ancestry Feats","uh":"witch_apg,state:feature=s4-1"},{"c":5,"s":"APG","id":9292,"u":"magical%20fortitude_witch_apg_5_apg","p":98,"h":1,"n":"Witch 5; Magical Fortitude","uh":"witch_apg,state:feature=s4-2"},{"c":5,"s":"APG","id":9294,"u":"expert%20spellcaster_witch_apg_7_apg","p":98,"h":1,"n":"Witch 7; Expert Spellcaster","uh":"witch_apg,state:feature=s6-0"},{"c":5,"s":"APG","id":9296,"u":"lightning%20reflexes_witch_apg_9_apg","p":98,"h":1,"n":"Witch 9; Lightning Reflexes","uh":"witch_apg,state:feature=s8-0"},{"c":5,"s":"APG","id":9298,"u":"alertness_witch_apg_11_apg","p":98,"h":1,"n":"Witch 11; Alertness","uh":"witch_apg,state:feature=s10-0"},{"c":5,"s":"APG","id":9300,"u":"weapon%20expertise_witch_apg_11_apg","p":98,"h":1,"n":"Witch 11; Weapon Expertise","uh":"witch_apg,state:feature=s10-1"},{"c":5,"s":"APG","id":9302,"u":"defensive%20robes_witch_apg_13_apg","p":99,"h":1,"n":"Witch 13; Defensive Robes","uh":"witch_apg,state:feature=s12-0"},{"c":5,"s":"APG","id":9304,"u":"weapon%20specialization_witch_apg_13_apg","p":99,"h":1,"n":"Witch 13; Weapon Specialization","uh":"witch_apg,state:feature=s12-1"},{"c":5,"s":"APG","id":9306,"u":"master%20spellcaster_witch_apg_15_apg","p":99,"h":1,"n":"Witch 15; Master Spellcaster","uh":"witch_apg,state:feature=s14-0"},{"c":5,"s":"APG","id":9308,"u":"resolve_witch_apg_17_apg","p":99,"h":1,"n":"Witch 17; Resolve","uh":"witch_apg,state:feature=s16-0"},{"c":5,"s":"APG","id":9310,"u":"legendary%20spellcaster_witch_apg_19_apg","p":99,"h":1,"n":"Witch 19; Legendary Spellcaster","uh":"witch_apg,state:feature=s18-0"},{"c":5,"s":"APG","id":9312,"u":"patron's%20gift_witch_apg_19_apg","p":99,"h":1,"n":"Witch 19; Patron's Gift","uh":"witch_apg,state:feature=s18-1"},{"c":5,"s":"CRB","id":9314,"u":"ancestry%20and%20background_wizard_crb_1_crb","p":204,"h":1,"n":"Wizard 1; Ancestry and Background","uh":"wizard_crb,state:feature=s0-0"},{"c":5,"s":"CRB","id":9316,"u":"initial%20proficiencies_wizard_crb_1_crb","p":204,"h":1,"n":"Wizard 1; Initial Proficiencies","uh":"wizard_crb,state:feature=s0-1"},{"c":5,"s":"CRB","id":9318,"u":"arcane%20spellcasting_wizard_crb_1_crb","p":204,"h":1,"n":"Wizard 1; Arcane Spellcasting","uh":"wizard_crb,state:feature=s0-2"},{"c":5,"s":"CRB","id":9320,"u":"arcane%20school_wizard_crb_1_crb","p":204,"h":1,"n":"Wizard 1; Arcane School","uh":"wizard_crb,state:feature=s0-3"},{"c":5,"s":"CRB","id":9322,"u":"arcane%20bond_wizard_crb_1_crb","p":205,"h":1,"n":"Wizard 1; Arcane Bond","uh":"wizard_crb,state:feature=s0-4"},{"c":5,"s":"CRB","id":9324,"u":"arcane%20thesis_wizard_crb_1_crb","p":205,"h":1,"n":"Wizard 1; Arcane Thesis","uh":"wizard_crb,state:feature=s0-5"},{"c":5,"s":"CRB","id":9326,"u":"skill%20feats_wizard_crb_2_crb","p":206,"h":1,"n":"Wizard 2; Skill Feats","uh":"wizard_crb,state:feature=s1-0"},{"c":5,"s":"CRB","id":9328,"u":"wizard%20feats_wizard_crb_2_crb","p":206,"h":1,"n":"Wizard 2; Wizard Feats","uh":"wizard_crb,state:feature=s1-1"},{"c":5,"s":"CRB","id":9330,"u":"general%20feats_wizard_crb_3_crb","p":206,"h":1,"n":"Wizard 3; General Feats","uh":"wizard_crb,state:feature=s2-0"},{"c":5,"s":"CRB","id":9332,"u":"skill%20increases_wizard_crb_3_crb","p":206,"h":1,"n":"Wizard 3; Skill Increases","uh":"wizard_crb,state:feature=s2-1"},{"c":5,"s":"CRB","id":9334,"u":"ability%20boosts_wizard_crb_5_crb","p":207,"h":1,"n":"Wizard 5; Ability Boosts","uh":"wizard_crb,state:feature=s4-0"},{"c":5,"s":"CRB","id":9336,"u":"ancestry%20feats_wizard_crb_5_crb","p":207,"h":1,"n":"Wizard 5; Ancestry Feats","uh":"wizard_crb,state:feature=s4-1"},{"c":5,"s":"CRB","id":9338,"u":"lightning%20reflexes_wizard_crb_5_crb","p":207,"h":1,"n":"Wizard 5; Lightning Reflexes","uh":"wizard_crb,state:feature=s4-2"},{"c":5,"s":"CRB","id":9340,"u":"expert%20spellcaster_wizard_crb_7_crb","p":207,"h":1,"n":"Wizard 7; Expert Spellcaster","uh":"wizard_crb,state:feature=s6-0"},{"c":5,"s":"CRB","id":9342,"u":"magical%20fortitude_wizard_crb_9_crb","p":207,"h":1,"n":"Wizard 9; Magical Fortitude","uh":"wizard_crb,state:feature=s8-0"},{"c":5,"s":"CRB","id":9344,"u":"alertness_wizard_crb_11_crb","p":207,"h":1,"n":"Wizard 11; Alertness","uh":"wizard_crb,state:feature=s10-0"},{"c":5,"s":"CRB","id":9346,"u":"wizard%20weapon%20expertise_wizard_crb_11_crb","p":207,"h":1,"n":"Wizard 11; Wizard Weapon Expertise","uh":"wizard_crb,state:feature=s10-1"},{"c":5,"s":"CRB","id":9348,"u":"defensive%20robes_wizard_crb_13_crb","p":207,"h":1,"n":"Wizard 13; Defensive Robes","uh":"wizard_crb,state:feature=s12-0"},{"c":5,"s":"CRB","id":9350,"u":"weapon%20specialization_wizard_crb_13_crb","p":207,"h":1,"n":"Wizard 13; Weapon Specialization","uh":"wizard_crb,state:feature=s12-1"},{"c":5,"s":"CRB","id":9352,"u":"master%20spellcaster_wizard_crb_15_crb","p":207,"h":1,"n":"Wizard 15; Master Spellcaster","uh":"wizard_crb,state:feature=s14-0"},{"c":5,"s":"CRB","id":9354,"u":"resolve_wizard_crb_17_crb","p":207,"h":1,"n":"Wizard 17; Resolve","uh":"wizard_crb,state:feature=s16-0"},{"c":5,"s":"CRB","id":9356,"u":"archwizard's%20spellcraft_wizard_crb_19_crb","p":207,"h":1,"n":"Wizard 19; Archwizard's Spellcraft","uh":"wizard_crb,state:feature=s18-0"},{"c":5,"s":"CRB","id":9358,"u":"legendary%20spellcaster_wizard_crb_19_crb","p":207,"h":1,"n":"Wizard 19; Legendary Spellcaster","uh":"wizard_crb,state:feature=s18-1"},{"c":6,"s":"CRB","id":9360,"u":"research%20field_alchemist_crb_bomber_crb_1_crb","p":73,"h":1,"n":"Bomber Alchemist 1; Research Field","uh":"alchemist_crb,state:sub-bomber-crb=b1~feature=s0-4"},{"c":6,"s":"CRB","id":9362,"u":"field%20discovery_alchemist_crb_bomber_crb_5_crb","p":74,"h":1,"n":"Bomber Alchemist 5; Field Discovery","uh":"alchemist_crb,state:sub-bomber-crb=b1~feature=s4-2"},{"c":6,"s":"CRB","id":9364,"u":"perpetual%20infusions_alchemist_crb_bomber_crb_7_crb","p":74,"h":1,"n":"Bomber Alchemist 7; Perpetual Infusions","uh":"alchemist_crb,state:sub-bomber-crb=b1~feature=s6-2"},{"c":6,"s":"CRB","id":9366,"u":"perpetual%20potency_alchemist_crb_bomber_crb_11_crb","p":74,"h":1,"n":"Bomber Alchemist 11; Perpetual Potency","uh":"alchemist_crb,state:sub-bomber-crb=b1~feature=s10-1"},{"c":6,"s":"CRB","id":9368,"u":"greater%20field%20discovery_alchemist_crb_bomber_crb_13_crb","p":74,"h":1,"n":"Bomber Alchemist 13; Greater Field Discovery","uh":"alchemist_crb,state:sub-bomber-crb=b1~feature=s12-0"},{"c":6,"s":"CRB","id":9370,"u":"perpetual%20perfection_alchemist_crb_bomber_crb_17_crb","p":74,"h":1,"n":"Bomber Alchemist 17; Perpetual Perfection","uh":"alchemist_crb,state:sub-bomber-crb=b1~feature=s16-1"},{"c":6,"s":"CRB","id":9372,"u":"research%20field_alchemist_crb_chirurgeon_crb_1_crb","p":73,"h":1,"n":"Chirurgeon Alchemist 1; Research Field","uh":"alchemist_crb,state:sub-chirurgeon-crb=b1~feature=s0-4"},{"c":6,"s":"CRB","id":9374,"u":"field%20discovery_alchemist_crb_chirurgeon_crb_5_crb","p":74,"h":1,"n":"Chirurgeon Alchemist 5; Field Discovery","uh":"alchemist_crb,state:sub-chirurgeon-crb=b1~feature=s4-2"},{"c":6,"s":"CRB","id":9376,"u":"perpetual%20infusions_alchemist_crb_chirurgeon_crb_7_crb","p":74,"h":1,"n":"Chirurgeon Alchemist 7; Perpetual Infusions","uh":"alchemist_crb,state:sub-chirurgeon-crb=b1~feature=s6-2"},{"c":6,"s":"CRB","id":9378,"u":"perpetual%20potency_alchemist_crb_chirurgeon_crb_11_crb","p":74,"h":1,"n":"Chirurgeon Alchemist 11; Perpetual Potency","uh":"alchemist_crb,state:sub-chirurgeon-crb=b1~feature=s10-1"},{"c":6,"s":"CRB","id":9380,"u":"greater%20field%20discovery_alchemist_crb_chirurgeon_crb_13_crb","p":74,"h":1,"n":"Chirurgeon Alchemist 13; Greater Field Discovery","uh":"alchemist_crb,state:sub-chirurgeon-crb=b1~feature=s12-0"},{"c":6,"s":"CRB","id":9382,"u":"perpetual%20perfection_alchemist_crb_chirurgeon_crb_17_crb","p":74,"h":1,"n":"Chirurgeon Alchemist 17; Perpetual Perfection","uh":"alchemist_crb,state:sub-chirurgeon-crb=b1~feature=s16-1"},{"c":6,"s":"CRB","id":9384,"u":"research%20field_alchemist_crb_mutagenist_crb_1_crb","p":73,"h":1,"n":"Mutagenist Alchemist 1; Research Field","uh":"alchemist_crb,state:sub-mutagenist-crb=b1~feature=s0-4"},{"c":6,"s":"CRB","id":9386,"u":"field%20discovery_alchemist_crb_mutagenist_crb_5_crb","p":74,"h":1,"n":"Mutagenist Alchemist 5; Field Discovery","uh":"alchemist_crb,state:sub-mutagenist-crb=b1~feature=s4-2"},{"c":6,"s":"CRB","id":9388,"u":"perpetual%20infusions_alchemist_crb_mutagenist_crb_7_crb","p":74,"h":1,"n":"Mutagenist Alchemist 7; Perpetual Infusions","uh":"alchemist_crb,state:sub-mutagenist-crb=b1~feature=s6-2"},{"c":6,"s":"CRB","id":9390,"u":"perpetual%20potency_alchemist_crb_mutagenist_crb_11_crb","p":74,"h":1,"n":"Mutagenist Alchemist 11; Perpetual Potency","uh":"alchemist_crb,state:sub-mutagenist-crb=b1~feature=s10-1"},{"c":6,"s":"CRB","id":9392,"u":"greater%20field%20discovery_alchemist_crb_mutagenist_crb_13_crb","p":74,"h":1,"n":"Mutagenist Alchemist 13; Greater Field Discovery","uh":"alchemist_crb,state:sub-mutagenist-crb=b1~feature=s12-0"},{"c":6,"s":"CRB","id":9394,"u":"perpetual%20perfection_alchemist_crb_mutagenist_crb_17_crb","p":74,"h":1,"n":"Mutagenist Alchemist 17; Perpetual Perfection","uh":"alchemist_crb,state:sub-mutagenist-crb=b1~feature=s16-1"},{"c":6,"s":"APG","id":9396,"u":"research%20field_alchemist_crb_toxicologist_apg_1_apg","p":106,"h":1,"n":"Toxicologist Alchemist 1; Research Field","uh":"alchemist_crb,state:sub-toxicologist-apg=b1~feature=s0-4"},{"c":6,"s":"APG","id":9398,"u":"field%20discovery_alchemist_crb_toxicologist_apg_5_apg","p":106,"h":1,"n":"Toxicologist Alchemist 5; Field Discovery","uh":"alchemist_crb,state:sub-toxicologist-apg=b1~feature=s4-2"},{"c":6,"s":"APG","id":9400,"u":"perpetual%20infusions_alchemist_crb_toxicologist_apg_7_apg","p":106,"h":1,"n":"Toxicologist Alchemist 7; Perpetual Infusions","uh":"alchemist_crb,state:sub-toxicologist-apg=b1~feature=s6-2"},{"c":6,"s":"APG","id":9402,"u":"perpetual%20potency_alchemist_crb_toxicologist_apg_11_apg","p":106,"h":1,"n":"Toxicologist Alchemist 11; Perpetual Potency","uh":"alchemist_crb,state:sub-toxicologist-apg=b1~feature=s10-1"},{"c":6,"s":"APG","id":9404,"u":"greater%20field%20discovery_alchemist_crb_toxicologist_apg_13_apg","p":106,"h":1,"n":"Toxicologist Alchemist 13; Greater Field Discovery","uh":"alchemist_crb,state:sub-toxicologist-apg=b1~feature=s12-0"},{"c":6,"s":"APG","id":9406,"u":"perpetual%20perfection_alchemist_crb_toxicologist_apg_17_apg","p":106,"h":1,"n":"Toxicologist Alchemist 17; Perpetual Perfection","uh":"alchemist_crb,state:sub-toxicologist-apg=b1~feature=s16-1"},{"c":6,"s":"CRB","id":9408,"u":"instinct_barbarian_crb_animal_crb_1_crb","p":86,"h":1,"n":"Animal Barbarian 1; Instinct","uh":"barbarian_crb,state:sub-animal-crb=b1~feature=s0-3"},{"c":6,"s":"CRB","id":9410,"u":"weapon%20specialization_barbarian_crb_animal_crb_7_crb","p":86,"h":1,"n":"Animal Barbarian 7; Weapon Specialization","uh":"barbarian_crb,state:sub-animal-crb=b1~feature=s6-1"},{"c":6,"s":"CRB","id":9412,"u":"raging%20resistance_barbarian_crb_animal_crb_9_crb","p":86,"h":1,"n":"Animal Barbarian 9; Raging Resistance","uh":"barbarian_crb,state:sub-animal-crb=b1~feature=s8-1"},{"c":6,"s":"CRB","id":9414,"u":"instinct_barbarian_crb_dragon_crb_1_crb","p":86,"h":1,"n":"Dragon Barbarian 1; Instinct","uh":"barbarian_crb,state:sub-dragon-crb=b1~feature=s0-3"},{"c":6,"s":"CRB","id":9416,"u":"weapon%20specialization_barbarian_crb_dragon_crb_7_crb","p":87,"h":1,"n":"Dragon Barbarian 7; Weapon Specialization","uh":"barbarian_crb,state:sub-dragon-crb=b1~feature=s6-1"},{"c":6,"s":"CRB","id":9418,"u":"raging%20resistance_barbarian_crb_dragon_crb_9_crb","p":87,"h":1,"n":"Dragon Barbarian 9; Raging Resistance","uh":"barbarian_crb,state:sub-dragon-crb=b1~feature=s8-1"},{"c":6,"s":"CRB","id":9420,"u":"instinct_barbarian_crb_fury_crb_1_crb","p":87,"h":1,"n":"Fury Barbarian 1; Instinct","uh":"barbarian_crb,state:sub-fury-crb=b1~feature=s0-3"},{"c":6,"s":"CRB","id":9422,"u":"weapon%20specialization_barbarian_crb_fury_crb_7_crb","p":87,"h":1,"n":"Fury Barbarian 7; Weapon Specialization","uh":"barbarian_crb,state:sub-fury-crb=b1~feature=s6-1"},{"c":6,"s":"CRB","id":9424,"u":"raging%20resistance_barbarian_crb_fury_crb_9_crb","p":87,"h":1,"n":"Fury Barbarian 9; Raging Resistance","uh":"barbarian_crb,state:sub-fury-crb=b1~feature=s8-1"},{"c":6,"s":"CRB","id":9426,"u":"instinct_barbarian_crb_giant_crb_1_crb","p":87,"h":1,"n":"Giant Barbarian 1; Instinct","uh":"barbarian_crb,state:sub-giant-crb=b1~feature=s0-3"},{"c":6,"s":"CRB","id":9428,"u":"weapon%20specialization_barbarian_crb_giant_crb_7_crb","p":87,"h":1,"n":"Giant Barbarian 7; Weapon Specialization","uh":"barbarian_crb,state:sub-giant-crb=b1~feature=s6-1"},{"c":6,"s":"CRB","id":9430,"u":"raging%20resistance_barbarian_crb_giant_crb_9_crb","p":87,"h":1,"n":"Giant Barbarian 9; Raging Resistance","uh":"barbarian_crb,state:sub-giant-crb=b1~feature=s8-1"},{"c":6,"s":"CRB","id":9432,"u":"instinct_barbarian_crb_spirit_crb_1_crb","p":87,"h":1,"n":"Spirit Barbarian 1; Instinct","uh":"barbarian_crb,state:sub-spirit-crb=b1~feature=s0-3"},{"c":6,"s":"CRB","id":9434,"u":"weapon%20specialization_barbarian_crb_spirit_crb_7_crb","p":87,"h":1,"n":"Spirit Barbarian 7; Weapon Specialization","uh":"barbarian_crb,state:sub-spirit-crb=b1~feature=s6-1"},{"c":6,"s":"CRB","id":9436,"u":"raging%20resistance_barbarian_crb_spirit_crb_9_crb","p":87,"h":1,"n":"Spirit Barbarian 9; Raging Resistance","uh":"barbarian_crb,state:sub-spirit-crb=b1~feature=s8-1"},{"c":6,"s":"APG","id":9438,"u":"instinct_barbarian_crb_superstition_apg_1_apg","p":108,"h":1,"n":"Superstition Barbarian 1; Instinct","uh":"barbarian_crb,state:sub-superstition-apg=b1~feature=s0-3"},{"c":6,"s":"APG","id":9440,"u":"weapon%20specialization_barbarian_crb_superstition_apg_7_apg","p":108,"h":1,"n":"Superstition Barbarian 7; Weapon Specialization","uh":"barbarian_crb,state:sub-superstition-apg=b1~feature=s6-1"},{"c":6,"s":"APG","id":9442,"u":"raging%20resistance_barbarian_crb_superstition_apg_9_apg","p":108,"h":1,"n":"Superstition Barbarian 9; Raging Resistance","uh":"barbarian_crb,state:sub-superstition-apg=b1~feature=s8-1"},{"c":6,"s":"CRB","id":9444,"u":"muses_bard_crb_polymath_crb_1_crb","p":97,"h":1,"n":"Polymath Bard 1; Muses","uh":"bard_crb,state:sub-polymath-crb=b1~feature=s0-5"},{"c":6,"s":"CRB","id":9446,"u":"muses_bard_crb_enigma_crb_1_crb","p":97,"h":1,"n":"Enigma Bard 1; Muses","uh":"bard_crb,state:sub-enigma-crb=b1~feature=s0-5"},{"c":6,"s":"CRB","id":9448,"u":"muses_bard_crb_maestro_crb_1_crb","p":97,"h":1,"n":"Maestro Bard 1; Muses","uh":"bard_crb,state:sub-maestro-crb=b1~feature=s0-5"},{"c":6,"s":"APG","id":9450,"u":"muses_bard_crb_warrior_apg_1_apg","p":112,"h":1,"n":"Warrior Bard 1; Muses","uh":"bard_crb,state:sub-warrior-apg=b1~feature=s0-5"},{"c":6,"s":"CRB","id":9452,"u":"deity%20and%20cause_champion_crb_paladin_crb_1_crb","p":106,"h":1,"n":"Paladin Champion 1; Deity and Cause","uh":"champion_crb,state:sub-paladin-crb=b1~feature=s0-3"},{"c":6,"s":"CRB","id":9454,"u":"deity%20and%20cause_champion_crb_redeemer_crb_1_crb","p":106,"h":1,"n":"Redeemer Champion 1; Deity and Cause","uh":"champion_crb,state:sub-redeemer-crb=b1~feature=s0-3"},{"c":6,"s":"CRB","id":9456,"u":"deity%20and%20cause_champion_crb_liberator_crb_1_crb","p":107,"h":1,"n":"Liberator Champion 1; Deity and Cause","uh":"champion_crb,state:sub-liberator-crb=b1~feature=s0-3"},{"c":6,"s":"CRB","id":9458,"u":"champion's%20reaction_champion_crb_paladin_crb_1_crb","p":107,"h":1,"n":"Paladin Champion 1; Champion's Reaction","uh":"champion_crb,state:sub-paladin-crb=b1~feature=s0-5"},{"c":6,"s":"CRB","id":9460,"u":"champion's%20reaction_champion_crb_redeemer_crb_1_crb","p":107,"h":1,"n":"Redeemer Champion 1; Champion's Reaction","uh":"champion_crb,state:sub-redeemer-crb=b1~feature=s0-5"},{"c":6,"s":"CRB","id":9462,"u":"champion's%20reaction_champion_crb_liberator_crb_1_crb","p":107,"h":1,"n":"Liberator Champion 1; Champion's Reaction","uh":"champion_crb,state:sub-liberator-crb=b1~feature=s0-5"},{"c":6,"s":"CRB","id":9464,"u":"divine%20smite_champion_crb_paladin_crb_9_crb","p":107,"h":1,"n":"Paladin Champion 9; Divine Smite","uh":"champion_crb,state:sub-paladin-crb=b1~feature=s8-1"},{"c":6,"s":"CRB","id":9466,"u":"divine%20smite_champion_crb_redeemer_crb_9_crb","p":107,"h":1,"n":"Redeemer Champion 9; Divine Smite","uh":"champion_crb,state:sub-redeemer-crb=b1~feature=s8-1"},{"c":6,"s":"CRB","id":9468,"u":"divine%20smite_champion_crb_liberator_crb_9_crb","p":107,"h":1,"n":"Liberator Champion 9; Divine Smite","uh":"champion_crb,state:sub-liberator-crb=b1~feature=s8-1"},{"c":6,"s":"CRB","id":9470,"u":"exalt_champion_crb_liberator_crb_11_crb","p":107,"h":1,"n":"Liberator Champion 11; Exalt","uh":"champion_crb,state:sub-liberator-crb=b1~feature=s10-2"},{"c":6,"s":"CRB","id":9472,"u":"exalt_champion_crb_redeemer_crb_11_crb","p":107,"h":1,"n":"Redeemer Champion 11; Exalt","uh":"champion_crb,state:sub-redeemer-crb=b1~feature=s10-2"},{"c":6,"s":"CRB","id":9474,"u":"exalt_champion_crb_paladin_crb_11_crb","p":107,"h":1,"n":"Paladin Champion 11; Exalt","uh":"champion_crb,state:sub-paladin-crb=b1~feature=s10-2"},{"c":6,"s":"APG","id":9476,"u":"deity%20and%20cause_champion_crb_tyrant_apg_1_apg","p":116,"h":1,"n":"Tyrant Champion 1; Deity and Cause","uh":"champion_crb,state:sub-tyrant-apg=b1~feature=s0-3"},{"c":6,"s":"APG","id":9478,"u":"champion's%20reaction_champion_crb_tyrant_apg_1_apg","p":116,"h":1,"n":"Tyrant Champion 1; Champion's Reaction","uh":"champion_crb,state:sub-tyrant-apg=b1~feature=s0-5"},{"c":6,"s":"APG","id":9480,"u":"divine%20smite_champion_crb_tyrant_apg_9_apg","p":107,"h":1,"n":"Tyrant Champion 9; Divine Smite","uh":"champion_crb,state:sub-tyrant-apg=b1~feature=s8-1"},{"c":6,"s":"APG","id":9482,"u":"exalt_champion_crb_tyrant_apg_11_apg","p":107,"h":1,"n":"Tyrant Champion 11; Exalt","uh":"champion_crb,state:sub-tyrant-apg=b1~feature=s10-2"},{"c":6,"s":"APG","id":9484,"u":"deity%20and%20cause_champion_crb_desecrator_apg_1_apg","p":116,"h":1,"n":"Desecrator Champion 1; Deity and Cause","uh":"champion_crb,state:sub-desecrator-apg=b1~feature=s0-3"},{"c":6,"s":"APG","id":9486,"u":"champion's%20reaction_champion_crb_desecrator_apg_1_apg","p":116,"h":1,"n":"Desecrator Champion 1; Champion's Reaction","uh":"champion_crb,state:sub-desecrator-apg=b1~feature=s0-5"},{"c":6,"s":"APG","id":9488,"u":"divine%20smite_champion_crb_desecrator_apg_9_apg","p":107,"h":1,"n":"Desecrator Champion 9; Divine Smite","uh":"champion_crb,state:sub-desecrator-apg=b1~feature=s8-1"},{"c":6,"s":"APG","id":9490,"u":"exalt_champion_crb_desecrator_apg_11_apg","p":107,"h":1,"n":"Desecrator Champion 11; Exalt","uh":"champion_crb,state:sub-desecrator-apg=b1~feature=s10-2"},{"c":6,"s":"APG","id":9492,"u":"deity%20and%20cause_champion_crb_antipaladin_apg_1_apg","p":116,"h":1,"n":"Antipaladin Champion 1; Deity and Cause","uh":"champion_crb,state:sub-antipaladin-apg=b1~feature=s0-3"},{"c":6,"s":"APG","id":9494,"u":"champion's%20reaction_champion_crb_antipaladin_apg_1_apg","p":116,"h":1,"n":"Antipaladin Champion 1; Champion's Reaction","uh":"champion_crb,state:sub-antipaladin-apg=b1~feature=s0-5"},{"c":6,"s":"APG","id":9496,"u":"divine%20smite_champion_crb_antipaladin_apg_9_apg","p":107,"h":1,"n":"Antipaladin Champion 9; Divine Smite","uh":"champion_crb,state:sub-antipaladin-apg=b1~feature=s8-1"},{"c":6,"s":"APG","id":9498,"u":"exalt_champion_crb_antipaladin_apg_11_apg","p":107,"h":1,"n":"Antipaladin Champion 11; Exalt","uh":"champion_crb,state:sub-antipaladin-apg=b1~feature=s10-2"},{"c":6,"s":"CRB","id":9500,"u":"doctrine_cleric_crb_cloistered_crb_1_crb","p":119,"h":1,"n":"Cloistered Cleric 1; Doctrine","uh":"cleric_crb,state:sub-cloistered-crb=b1~feature=s0-5"},{"c":6,"s":"CRB","id":9502,"u":"first%20doctrine_cleric_crb_cloistered_crb_1_crb","p":119,"h":1,"n":"Cloistered Cleric 1; First Doctrine","uh":"cleric_crb,state:sub-cloistered-crb=b1~feature=s0-6"},{"c":6,"s":"CRB","id":9504,"u":"second%20doctrine_cleric_crb_cloistered_crb_3_crb","p":119,"h":1,"n":"Cloistered Cleric 3; Second Doctrine","uh":"cleric_crb,state:sub-cloistered-crb=b1~feature=s2-0"},{"c":6,"s":"CRB","id":9506,"u":"third%20doctrine_cleric_crb_cloistered_crb_7_crb","p":119,"h":1,"n":"Cloistered Cleric 7; Third Doctrine","uh":"cleric_crb,state:sub-cloistered-crb=b1~feature=s6-0"},{"c":6,"s":"CRB","id":9508,"u":"fourth%20doctrine_cleric_crb_cloistered_crb_11_crb","p":119,"h":1,"n":"Cloistered Cleric 11; Fourth Doctrine","uh":"cleric_crb,state:sub-cloistered-crb=b1~feature=s10-0"},{"c":6,"s":"CRB","id":9510,"u":"fifth%20doctrine_cleric_crb_cloistered_crb_15_crb","p":119,"h":1,"n":"Cloistered Cleric 15; Fifth Doctrine","uh":"cleric_crb,state:sub-cloistered-crb=b1~feature=s14-0"},{"c":6,"s":"CRB","id":9512,"u":"final%20doctrine_cleric_crb_cloistered_crb_19_crb","p":119,"h":1,"n":"Cloistered Cleric 19; Final Doctrine","uh":"cleric_crb,state:sub-cloistered-crb=b1~feature=s18-0"},{"c":6,"s":"CRB","id":9514,"u":"doctrine_cleric_crb_warpriest_crb_1_crb","p":120,"h":1,"n":"Warpriest Cleric 1; Doctrine","uh":"cleric_crb,state:sub-warpriest-crb=b1~feature=s0-5"},{"c":6,"s":"CRB","id":9516,"u":"first%20doctrine_cleric_crb_warpriest_crb_1_crb","p":120,"h":1,"n":"Warpriest Cleric 1; First Doctrine","uh":"cleric_crb,state:sub-warpriest-crb=b1~feature=s0-6"},{"c":6,"s":"CRB","id":9518,"u":"second%20doctrine_cleric_crb_warpriest_crb_3_crb","p":120,"h":1,"n":"Warpriest Cleric 3; Second Doctrine","uh":"cleric_crb,state:sub-warpriest-crb=b1~feature=s2-0"},{"c":6,"s":"CRB","id":9520,"u":"third%20doctrine_cleric_crb_warpriest_crb_7_crb","p":120,"h":1,"n":"Warpriest Cleric 7; Third Doctrine","uh":"cleric_crb,state:sub-warpriest-crb=b1~feature=s6-0"},{"c":6,"s":"CRB","id":9522,"u":"fourth%20doctrine_cleric_crb_warpriest_crb_11_crb","p":120,"h":1,"n":"Warpriest Cleric 11; Fourth Doctrine","uh":"cleric_crb,state:sub-warpriest-crb=b1~feature=s10-0"},{"c":6,"s":"CRB","id":9524,"u":"fifth%20doctrine_cleric_crb_warpriest_crb_15_crb","p":120,"h":1,"n":"Warpriest Cleric 15; Fifth Doctrine","uh":"cleric_crb,state:sub-warpriest-crb=b1~feature=s14-0"},{"c":6,"s":"CRB","id":9526,"u":"final%20doctrine_cleric_crb_warpriest_crb_19_crb","p":120,"h":1,"n":"Warpriest Cleric 19; Final Doctrine","uh":"cleric_crb,state:sub-warpriest-crb=b1~feature=s18-0"},{"c":6,"s":"CRB","id":9528,"u":"druidic%20order_druid_crb_animal_crb_1_crb","p":131,"h":1,"n":"Animal Druid 1; Druidic Order","uh":"druid_crb,state:sub-animal-crb=b1~feature=s0-5"},{"c":6,"s":"CRB","id":9530,"u":"druidic%20order_druid_crb_leaf_crb_1_crb","p":131,"h":1,"n":"Leaf Druid 1; Druidic Order","uh":"druid_crb,state:sub-leaf-crb=b1~feature=s0-5"},{"c":6,"s":"CRB","id":9532,"u":"druidic%20order_druid_crb_storm_crb_1_crb","p":132,"h":1,"n":"Storm Druid 1; Druidic Order","uh":"druid_crb,state:sub-storm-crb=b1~feature=s0-5"},{"c":6,"s":"CRB","id":9534,"u":"druidic%20order_druid_crb_wild_crb_1_crb","p":132,"h":1,"n":"Wild Druid 1; Druidic Order","uh":"druid_crb,state:sub-wild-crb=b1~feature=s0-5"},{"c":6,"s":"SoM","id":9536,"u":"druidic%20order_druid_crb_flame_som_1_som","p":198,"h":1,"n":"Flame Druid 1; Druidic Order","uh":"druid_crb,state:sub-flame-som=b1~feature=s0-5"},{"c":6,"s":"SoM","id":9538,"u":"druidic%20order_druid_crb_stone_som_1_som","p":198,"h":1,"n":"Stone Druid 1; Druidic Order","uh":"druid_crb,state:sub-stone-som=b1~feature=s0-5"},{"c":6,"s":"SoM","id":9540,"u":"druidic%20order_druid_crb_wave_som_1_som","p":198,"h":1,"n":"Wave Druid 1; Druidic Order","uh":"druid_crb,state:sub-wave-som=b1~feature=s0-5"},{"c":6,"s":"G&G","id":9542,"u":"gunslinger's%20way_gunslinger_g%26g_drifter_g%26g_1_g%26g","p":108,"h":1,"n":"Drifter Gunslinger 1; Gunslinger's Way","uh":"gunslinger_g%26g,state:sub-drifter-gg=b1~feature=s0-2"},{"c":6,"s":"G&G","id":9544,"u":"advanced%20deed_gunslinger_g%26g_drifter_g%26g_9_g%26g","p":108,"h":1,"n":"Drifter Gunslinger 9; Advanced Deed","uh":"gunslinger_g%26g,state:sub-drifter-gg=b1~feature=s8-0"},{"c":6,"s":"G&G","id":9546,"u":"greater%20deed_gunslinger_g%26g_drifter_g%26g_15_g%26g","p":109,"h":1,"n":"Drifter Gunslinger 15; Greater Deed","uh":"gunslinger_g%26g,state:sub-drifter-gg=b1~feature=s14-0"},{"c":6,"s":"G&G","id":9548,"u":"gunslinger's%20way_gunslinger_g%26g_pistolero_g%26g_1_g%26g","p":108,"h":1,"n":"Pistolero Gunslinger 1; Gunslinger's Way","uh":"gunslinger_g%26g,state:sub-pistolero-gg=b1~feature=s0-2"},{"c":6,"s":"G&G","id":9550,"u":"advanced%20deed_gunslinger_g%26g_pistolero_g%26g_9_g%26g","p":109,"h":1,"n":"Pistolero Gunslinger 9; Advanced Deed","uh":"gunslinger_g%26g,state:sub-pistolero-gg=b1~feature=s8-0"},{"c":6,"s":"G&G","id":9552,"u":"greater%20deed_gunslinger_g%26g_pistolero_g%26g_15_g%26g","p":109,"h":1,"n":"Pistolero Gunslinger 15; Greater Deed","uh":"gunslinger_g%26g,state:sub-pistolero-gg=b1~feature=s14-0"},{"c":6,"s":"G&G","id":9554,"u":"gunslinger's%20way_gunslinger_g%26g_sniper_g%26g_1_g%26g","p":108,"h":1,"n":"Sniper Gunslinger 1; Gunslinger's Way","uh":"gunslinger_g%26g,state:sub-sniper-gg=b1~feature=s0-2"},{"c":6,"s":"G&G","id":9556,"u":"advanced%20deed_gunslinger_g%26g_sniper_g%26g_9_g%26g","p":110,"h":1,"n":"Sniper Gunslinger 9; Advanced Deed","uh":"gunslinger_g%26g,state:sub-sniper-gg=b1~feature=s8-0"},{"c":6,"s":"G&G","id":9558,"u":"greater%20deed_gunslinger_g%26g_sniper_g%26g_15_g%26g","p":110,"h":1,"n":"Sniper Gunslinger 15; Greater Deed","uh":"gunslinger_g%26g,state:sub-sniper-gg=b1~feature=s14-0"},{"c":6,"s":"G&G","id":9560,"u":"gunslinger's%20way_gunslinger_g%26g_vanguard_g%26g_1_g%26g","p":110,"h":1,"n":"Vanguard Gunslinger 1; Gunslinger's Way","uh":"gunslinger_g%26g,state:sub-vanguard-gg=b1~feature=s0-2"},{"c":6,"s":"G&G","id":9562,"u":"advanced%20deed_gunslinger_g%26g_vanguard_g%26g_9_g%26g","p":110,"h":1,"n":"Vanguard Gunslinger 9; Advanced Deed","uh":"gunslinger_g%26g,state:sub-vanguard-gg=b1~feature=s8-0"},{"c":6,"s":"G&G","id":9564,"u":"greater%20deed_gunslinger_g%26g_vanguard_g%26g_15_g%26g","p":110,"h":1,"n":"Vanguard Gunslinger 15; Greater Deed","uh":"gunslinger_g%26g,state:sub-vanguard-gg=b1~feature=s14-0"},{"c":6,"s":"G&G","id":9566,"u":"innovation_inventor_g%26g_armor_g%26g_1_g%26g","p":16,"h":1,"n":"Armor Inventor 1; Innovation","uh":"inventor_g%26g,state:sub-armor-gg=b1~feature=s0-3"},{"c":6,"s":"G&G","id":9568,"u":"innovation_inventor_g%26g_construct_g%26g_1_g%26g","p":17,"h":1,"n":"Construct Inventor 1; Innovation","uh":"inventor_g%26g,state:sub-construct-gg=b1~feature=s0-3"},{"c":6,"s":"G&G","id":9570,"u":"innovation_inventor_g%26g_weapon_g%26g_1_g%26g","p":17,"h":1,"n":"Weapon Inventor 1; Innovation","uh":"inventor_g%26g,state:sub-weapon-gg=b1~feature=s0-3"},{"c":6,"s":"G&G","id":9572,"u":"breakthrough%20innovation_inventor_g%26g_armor_g%26g_7_g%26g","p":20,"h":1,"n":"Armor Inventor 7; Breakthrough Innovation","uh":"inventor_g%26g,state:sub-armor-gg=b1~feature=s6-0"},{"c":6,"s":"G&G","id":9574,"u":"breakthrough%20innovation_inventor_g%26g_construct_g%26g_7_g%26g","p":21,"h":1,"n":"Construct Inventor 7; Breakthrough Innovation","uh":"inventor_g%26g,state:sub-construct-gg=b1~feature=s6-0"},{"c":6,"s":"G&G","id":9576,"u":"breakthrough%20innovation_inventor_g%26g_weapon_g%26g_7_g%26g","p":21,"h":1,"n":"Weapon Inventor 7; Breakthrough Innovation","uh":"inventor_g%26g,state:sub-weapon-gg=b1~feature=s6-0"},{"c":6,"s":"G&G","id":9578,"u":"revolutionary%20innovation_inventor_g%26g_armor_g%26g_15_g%26g","p":23,"h":1,"n":"Armor Inventor 15; Revolutionary Innovation","uh":"inventor_g%26g,state:sub-armor-gg=b1~feature=s14-2"},{"c":6,"s":"G&G","id":9580,"u":"revolutionary%20innovation_inventor_g%26g_construct_g%26g_15_g%26g","p":23,"h":1,"n":"Construct Inventor 15; Revolutionary Innovation","uh":"inventor_g%26g,state:sub-construct-gg=b1~feature=s14-2"},{"c":6,"s":"G&G","id":9582,"u":"revolutionary%20innovation_inventor_g%26g_weapon_g%26g_15_g%26g","p":23,"h":1,"n":"Weapon Inventor 15; Revolutionary Innovation","uh":"inventor_g%26g,state:sub-weapon-gg=b1~feature=s14-2"},{"c":6,"s":"APG","id":9584,"u":"methodology_investigator_apg_alchemical%20sciences_apg_1_apg","p":57,"h":1,"n":"Alchemical Sciences Investigator 1; Methodology","uh":"investigator_apg,state:sub-alchemical-sciences-apg=b1~feature=s0-4"},{"c":6,"s":"APG","id":9586,"u":"methodology_investigator_apg_empiricism_apg_1_apg","p":57,"h":1,"n":"Empiricism Investigator 1; Methodology","uh":"investigator_apg,state:sub-empiricism-apg=b1~feature=s0-4"},{"c":6,"s":"APG","id":9588,"u":"methodology_investigator_apg_forensic%20medicine_apg_1_apg","p":58,"h":1,"n":"Forensic Medicine Investigator 1; Methodology","uh":"investigator_apg,state:sub-forensic-medicine-apg=b1~feature=s0-4"},{"c":6,"s":"APG","id":9590,"u":"methodology_investigator_apg_interrogation_apg_1_apg","p":58,"h":1,"n":"Interrogation Investigator 1; Methodology","uh":"investigator_apg,state:sub-interrogation-apg=b1~feature=s0-4"},{"c":6,"s":"SoM","id":9592,"u":"hybrid%20study_magus_som_inexorable%20iron_som_1_som","p":39,"h":1,"n":"Inexorable Iron Magus 1; Hybrid Study","uh":"magus_som,state:sub-inexorable-iron-som=b1~feature=s0-5"},{"c":6,"s":"SoM","id":9594,"u":"hybrid%20study_magus_som_laughing%20shadow_som_1_som","p":39,"h":1,"n":"Laughing Shadow Magus 1; Hybrid Study","uh":"magus_som,state:sub-laughing-shadow-som=b1~feature=s0-5"},{"c":6,"s":"SoM","id":9596,"u":"hybrid%20study_magus_som_sparkling%20targe_som_1_som","p":39,"h":1,"n":"Sparkling Targe Magus 1; Hybrid Study","uh":"magus_som,state:sub-sparkling-targe-som=b1~feature=s0-5"},{"c":6,"s":"SoM","id":9598,"u":"hybrid%20study_magus_som_starlit%20span_som_1_som","p":39,"h":1,"n":"Starlit Span Magus 1; Hybrid Study","uh":"magus_som,state:sub-starlit-span-som=b1~feature=s0-5"},{"c":6,"s":"SoM","id":9600,"u":"hybrid%20study_magus_som_twisting%20tree_som_1_som","p":39,"h":1,"n":"Twisting Tree Magus 1; Hybrid Study","uh":"magus_som,state:sub-twisting-tree-som=b1~feature=s0-5"},{"c":6,"s":"SoM","id":9602,"u":"studious%20spells_magus_som_inexorable%20iron_som_7_som","p":41,"h":1,"n":"Inexorable Iron Magus 7; Studious Spells","uh":"magus_som,state:sub-inexorable-iron-som=b1~feature=s6-0"},{"c":6,"s":"SoM","id":9604,"u":"studious%20spells_magus_som_laughing%20shadow_som_7_som","p":41,"h":1,"n":"Laughing Shadow Magus 7; Studious Spells","uh":"magus_som,state:sub-laughing-shadow-som=b1~feature=s6-0"},{"c":6,"s":"SoM","id":9606,"u":"studious%20spells_magus_som_sparkling%20targe_som_7_som","p":41,"h":1,"n":"Sparkling Targe Magus 7; Studious Spells","uh":"magus_som,state:sub-sparkling-targe-som=b1~feature=s6-0"},{"c":6,"s":"SoM","id":9608,"u":"studious%20spells_magus_som_starlit%20span_som_7_som","p":41,"h":1,"n":"Starlit Span Magus 7; Studious Spells","uh":"magus_som,state:sub-starlit-span-som=b1~feature=s6-0"},{"c":6,"s":"SoM","id":9610,"u":"studious%20spells_magus_som_twisting%20tree_som_7_som","p":41,"h":1,"n":"Twisting Tree Magus 7; Studious Spells","uh":"magus_som,state:sub-twisting-tree-som=b1~feature=s6-0"},{"c":6,"s":"APG","id":9612,"u":"mystery_oracle_apg_ancestors_apg_1_apg","p":73,"h":1,"n":"Ancestors Oracle 1; Mystery","uh":"oracle_apg,state:sub-ancestors-apg=b1~feature=s0-4"},{"c":6,"s":"APG","id":9614,"u":"major%20curse_oracle_apg_ancestors_apg_11_apg","p":74,"h":1,"n":"Ancestors Oracle 11; Major Curse","uh":"oracle_apg,state:sub-ancestors-apg=b1~feature=s10-1"},{"c":6,"s":"APG","id":9616,"u":"mystery_oracle_apg_battle_apg_1_apg","p":74,"h":1,"n":"Battle Oracle 1; Mystery","uh":"oracle_apg,state:sub-battle-apg=b1~feature=s0-4"},{"c":6,"s":"APG","id":9618,"u":"major%20curse_oracle_apg_battle_apg_11_apg","p":74,"h":1,"n":"Battle Oracle 11; Major Curse","uh":"oracle_apg,state:sub-battle-apg=b1~feature=s10-1"},{"c":6,"s":"APG","id":9620,"u":"mystery_oracle_apg_bones_apg_1_apg","p":75,"h":1,"n":"Bones Oracle 1; Mystery","uh":"oracle_apg,state:sub-bones-apg=b1~feature=s0-4"},{"c":6,"s":"APG","id":9622,"u":"major%20curse_oracle_apg_bones_apg_11_apg","p":74,"h":1,"n":"Bones Oracle 11; Major Curse","uh":"oracle_apg,state:sub-bones-apg=b1~feature=s10-1"},{"c":6,"s":"APG","id":9624,"u":"mystery_oracle_apg_cosmos_apg_1_apg","p":75,"h":1,"n":"Cosmos Oracle 1; Mystery","uh":"oracle_apg,state:sub-cosmos-apg=b1~feature=s0-4"},{"c":6,"s":"APG","id":9626,"u":"major%20curse_oracle_apg_cosmos_apg_11_apg","p":74,"h":1,"n":"Cosmos Oracle 11; Major Curse","uh":"oracle_apg,state:sub-cosmos-apg=b1~feature=s10-1"},{"c":6,"s":"APG","id":9628,"u":"mystery_oracle_apg_flames_apg_1_apg","p":75,"h":1,"n":"Flames Oracle 1; Mystery","uh":"oracle_apg,state:sub-flames-apg=b1~feature=s0-4"},{"c":6,"s":"APG","id":9630,"u":"major%20curse_oracle_apg_flames_apg_11_apg","p":74,"h":1,"n":"Flames Oracle 11; Major Curse","uh":"oracle_apg,state:sub-flames-apg=b1~feature=s10-1"},{"c":6,"s":"APG","id":9632,"u":"mystery_oracle_apg_life_apg_1_apg","p":77,"h":1,"n":"Life Oracle 1; Mystery","uh":"oracle_apg,state:sub-life-apg=b1~feature=s0-4"},{"c":6,"s":"APG","id":9634,"u":"major%20curse_oracle_apg_life_apg_11_apg","p":77,"h":1,"n":"Life Oracle 11; Major Curse","uh":"oracle_apg,state:sub-life-apg=b1~feature=s10-1"},{"c":6,"s":"APG","id":9636,"u":"mystery_oracle_apg_lore_apg_1_apg","p":75,"h":1,"n":"Lore Oracle 1; Mystery","uh":"oracle_apg,state:sub-lore-apg=b1~feature=s0-4"},{"c":6,"s":"APG","id":9638,"u":"major%20curse_oracle_apg_lore_apg_11_apg","p":74,"h":1,"n":"Lore Oracle 11; Major Curse","uh":"oracle_apg,state:sub-lore-apg=b1~feature=s10-1"},{"c":6,"s":"APG","id":9640,"u":"mystery_oracle_apg_tempest_apg_1_apg","p":75,"h":1,"n":"Tempest Oracle 1; Mystery","uh":"oracle_apg,state:sub-tempest-apg=b1~feature=s0-4"},{"c":6,"s":"APG","id":9642,"u":"major%20curse_oracle_apg_tempest_apg_11_apg","p":74,"h":1,"n":"Tempest Oracle 11; Major Curse","uh":"oracle_apg,state:sub-tempest-apg=b1~feature=s10-1"},{"c":6,"s":"CRB","id":9644,"u":"hunter's%20edge_ranger_crb_flurry_crb_1_crb","p":168,"h":1,"n":"Flurry Ranger 1; Hunter's Edge","uh":"ranger_crb,state:sub-flurry-crb=b1~feature=s0-3"},{"c":6,"s":"CRB","id":9646,"u":"hunter's%20edge_ranger_crb_outwit_crb_1_crb","p":168,"h":1,"n":"Outwit Ranger 1; Hunter's Edge","uh":"ranger_crb,state:sub-outwit-crb=b1~feature=s0-3"},{"c":6,"s":"CRB","id":9648,"u":"hunter's%20edge_ranger_crb_precision_crb_1_crb","p":168,"h":1,"n":"Precision Ranger 1; Hunter's Edge","uh":"ranger_crb,state:sub-precision-crb=b1~feature=s0-3"},{"c":6,"s":"CRB","id":9650,"u":"masterful%20hunter_ranger_crb_flurry_crb_17_crb","p":170,"h":1,"n":"Flurry Ranger 17; Masterful Hunter","uh":"ranger_crb,state:sub-flurry-crb=b1~feature=s16-0"},{"c":6,"s":"CRB","id":9652,"u":"masterful%20hunter_ranger_crb_outwit_crb_17_crb","p":170,"h":1,"n":"Outwit Ranger 17; Masterful Hunter","uh":"ranger_crb,state:sub-outwit-crb=b1~feature=s16-0"},{"c":6,"s":"CRB","id":9654,"u":"masterful%20hunter_ranger_crb_precision_crb_17_crb","p":170,"h":1,"n":"Precision Ranger 17; Masterful Hunter","uh":"ranger_crb,state:sub-precision-crb=b1~feature=s16-0"},{"c":6,"s":"APG","id":9656,"u":"rogue's%20racket_rogue_crb_eldritch%20trickster_apg_1_apg","p":134,"h":1,"n":"Eldritch Trickster Rogue 1; Rogue's Racket","uh":"rogue_crb,state:sub-eldritch-trickster-apg=b1~feature=s0-2"},{"c":6,"s":"APG","id":9658,"u":"rogue's%20racket_rogue_crb_mastermind_apg_1_apg","p":134,"h":1,"n":"Mastermind Rogue 1; Rogue's Racket","uh":"rogue_crb,state:sub-mastermind-apg=b1~feature=s0-2"},{"c":6,"s":"CRB","id":9660,"u":"rogue's%20racket_rogue_crb_ruffian_crb_1_crb","p":180,"h":1,"n":"Ruffian Rogue 1; Rogue's Racket","uh":"rogue_crb,state:sub-ruffian-crb=b1~feature=s0-2"},{"c":6,"s":"CRB","id":9662,"u":"rogue's%20racket_rogue_crb_scoundrel_crb_1_crb","p":180,"h":1,"n":"Scoundrel Rogue 1; Rogue's Racket","uh":"rogue_crb,state:sub-scoundrel-crb=b1~feature=s0-2"},{"c":6,"s":"CRB","id":9664,"u":"rogue's%20racket_rogue_crb_thief_crb_1_crb","p":180,"h":1,"n":"Thief Rogue 1; Rogue's Racket","uh":"rogue_crb,state:sub-thief-crb=b1~feature=s0-2"},{"c":6,"s":"CRB","id":9666,"u":"bloodline_sorcerer_crb_aberrant_crb_1_crb","p":195,"h":1,"n":"Aberrant Sorcerer 1; Bloodline","uh":"sorcerer_crb,state:sub-aberrant-crb=b1~feature=s0-2"},{"c":6,"s":"CRB","id":9668,"u":"bloodline_sorcerer_crb_angelic_crb_1_crb","p":195,"h":1,"n":"Angelic Sorcerer 1; Bloodline","uh":"sorcerer_crb,state:sub-angelic-crb=b1~feature=s0-2"},{"c":6,"s":"CRB","id":9670,"u":"bloodline_sorcerer_crb_demonic_crb_1_crb","p":195,"h":1,"n":"Demonic Sorcerer 1; Bloodline","uh":"sorcerer_crb,state:sub-demonic-crb=b1~feature=s0-2"},{"c":6,"s":"CRB","id":9672,"u":"bloodline_sorcerer_crb_diabolic_crb_1_crb","p":196,"h":1,"n":"Diabolic Sorcerer 1; Bloodline","uh":"sorcerer_crb,state:sub-diabolic-crb=b1~feature=s0-2"},{"c":6,"s":"LOME","id":9674,"u":"bloodline_sorcerer_crb_wyrmblessed_lome_1_lome","p":75,"h":1,"n":"Wyrmblessed Sorcerer 1; Bloodline","uh":"sorcerer_crb,state:sub-wyrmblessed-lome=b1~feature=s0-2"},{"c":6,"s":"CRB","id":9676,"u":"bloodline_sorcerer_crb_draconic_crb_1_crb","p":196,"h":1,"n":"Draconic Sorcerer 1; Bloodline","uh":"sorcerer_crb,state:sub-draconic-crb=b1~feature=s0-2"},{"c":6,"s":"FRP3","id":9678,"u":"bloodline_sorcerer_crb_phoenix_frp3_1_frp3","p":74,"h":1,"n":"Phoenix Sorcerer 1; Bloodline","uh":"sorcerer_crb,state:sub-phoenix-frp3=b1~feature=s0-2"},{"c":6,"s":"CRB","id":9680,"u":"bloodline_sorcerer_crb_elemental_crb_1_crb","p":196,"h":1,"n":"Elemental Sorcerer 1; Bloodline","uh":"sorcerer_crb,state:sub-elemental-crb=b1~feature=s0-2"},{"c":6,"s":"CRB","id":9682,"u":"bloodline_sorcerer_crb_fey_crb_1_crb","p":197,"h":1,"n":"Fey Sorcerer 1; Bloodline","uh":"sorcerer_crb,state:sub-fey-crb=b1~feature=s0-2"},{"c":6,"s":"CRB","id":9684,"u":"bloodline_sorcerer_crb_hag_crb_1_crb","p":197,"h":1,"n":"Hag Sorcerer 1; Bloodline","uh":"sorcerer_crb,state:sub-hag-crb=b1~feature=s0-2"},{"c":6,"s":"CRB","id":9686,"u":"bloodline_sorcerer_crb_imperial_crb_1_crb","p":198,"h":1,"n":"Imperial Sorcerer 1; Bloodline","uh":"sorcerer_crb,state:sub-imperial-crb=b1~feature=s0-2"},{"c":6,"s":"CRB","id":9688,"u":"bloodline_sorcerer_crb_undead_crb_1_crb","p":198,"h":1,"n":"Undead Sorcerer 1; Bloodline","uh":"sorcerer_crb,state:sub-undead-crb=b1~feature=s0-2"},{"c":6,"s":"APG","id":9690,"u":"bloodline_sorcerer_crb_genie_apg_1_apg","p":138,"h":1,"n":"Genie Sorcerer 1; Bloodline","uh":"sorcerer_crb,state:sub-genie-apg=b1~feature=s0-2"},{"c":6,"s":"APG","id":9692,"u":"bloodline_sorcerer_crb_nymph_apg_1_apg","p":138,"h":1,"n":"Nymph Sorcerer 1; Bloodline","uh":"sorcerer_crb,state:sub-nymph-apg=b1~feature=s0-2"},{"c":6,"s":"APG","id":9694,"u":"bloodline_sorcerer_crb_psychopomp_apg_1_apg","p":138,"h":1,"n":"Psychopomp Sorcerer 1; Bloodline","uh":"sorcerer_crb,state:sub-psychopomp-apg=b1~feature=s0-2"},{"c":6,"s":"APG","id":9696,"u":"bloodline_sorcerer_crb_shadow_apg_1_apg","p":138,"h":1,"n":"Shadow Sorcerer 1; Bloodline","uh":"sorcerer_crb,state:sub-shadow-apg=b1~feature=s0-2"},{"c":6,"s":"SoM","id":9698,"u":"eidolon_summoner_som_angel_som_1_som","p":59,"h":1,"n":"Angel Summoner 1; Eidolon","uh":"summoner_som,state:sub-angel-som=b1~feature=s0-2"},{"c":6,"s":"SoM","id":9700,"u":"eidolon_summoner_som_anger%20phantom_som_1_som","p":59,"h":1,"n":"Anger Phantom Summoner 1; Eidolon","uh":"summoner_som,state:sub-anger-phantom-som=b1~feature=s0-2"},{"c":6,"s":"SoM","id":9702,"u":"eidolon_summoner_som_beast_som_1_som","p":61,"h":1,"n":"Beast Summoner 1; Eidolon","uh":"summoner_som,state:sub-beast-som=b1~feature=s0-2"},{"c":6,"s":"SoM","id":9704,"u":"eidolon_summoner_som_construct_som_1_som","p":61,"h":1,"n":"Construct Summoner 1; Eidolon","uh":"summoner_som,state:sub-construct-som=b1~feature=s0-2"},{"c":6,"s":"SoM","id":9706,"u":"eidolon_summoner_som_demon_som_1_som","p":62,"h":1,"n":"Demon Summoner 1; Eidolon","uh":"summoner_som,state:sub-demon-som=b1~feature=s0-2"},{"c":6,"s":"SoM","id":9708,"u":"eidolon_summoner_som_devotion%20phantom_som_1_som","p":63,"h":1,"n":"Devotion Phantom Summoner 1; Eidolon","uh":"summoner_som,state:sub-devotion-phantom-som=b1~feature=s0-2"},{"c":6,"s":"SoM","id":9710,"u":"eidolon_summoner_som_dragon_som_1_som","p":63,"h":1,"n":"Dragon Summoner 1; Eidolon","uh":"summoner_som,state:sub-dragon-som=b1~feature=s0-2"},{"c":6,"s":"SoM","id":9712,"u":"eidolon_summoner_som_fey_som_1_som","p":64,"h":1,"n":"Fey Summoner 1; Eidolon","uh":"summoner_som,state:sub-fey-som=b1~feature=s0-2"},{"c":6,"s":"SoM","id":9714,"u":"eidolon_summoner_som_plant_som_1_som","p":65,"h":1,"n":"Plant Summoner 1; Eidolon","uh":"summoner_som,state:sub-plant-som=b1~feature=s0-2"},{"c":6,"s":"SoM","id":9716,"u":"eidolon_summoner_som_psychopomp_som_1_som","p":66,"h":1,"n":"Psychopomp Summoner 1; Eidolon","uh":"summoner_som,state:sub-psychopomp-som=b1~feature=s0-2"},{"c":6,"s":"APG","id":9718,"u":"swashbuckler's%20style_swashbuckler_apg_battledancer_apg_1_apg","p":84,"h":1,"n":"Battledancer Swashbuckler 1; Swashbuckler's Style","uh":"swashbuckler_apg,state:sub-battledancer-apg=b1~feature=s0-4"},{"c":6,"s":"APG","id":9720,"u":"exemplary%20finisher_swashbuckler_apg_battledancer_apg_9_apg","p":87,"h":1,"n":"Battledancer Swashbuckler 9; Exemplary Finisher","uh":"swashbuckler_apg,state:sub-battledancer-apg=b1~feature=s8-0"},{"c":6,"s":"APG","id":9722,"u":"swashbuckler's%20style_swashbuckler_apg_braggart_apg_1_apg","p":84,"h":1,"n":"Braggart Swashbuckler 1; Swashbuckler's Style","uh":"swashbuckler_apg,state:sub-braggart-apg=b1~feature=s0-4"},{"c":6,"s":"APG","id":9724,"u":"exemplary%20finisher_swashbuckler_apg_braggart_apg_9_apg","p":87,"h":1,"n":"Braggart Swashbuckler 9; Exemplary Finisher","uh":"swashbuckler_apg,state:sub-braggart-apg=b1~feature=s8-0"},{"c":6,"s":"APG","id":9726,"u":"swashbuckler's%20style_swashbuckler_apg_fencer_apg_1_apg","p":84,"h":1,"n":"Fencer Swashbuckler 1; Swashbuckler's Style","uh":"swashbuckler_apg,state:sub-fencer-apg=b1~feature=s0-4"},{"c":6,"s":"APG","id":9728,"u":"exemplary%20finisher_swashbuckler_apg_fencer_apg_9_apg","p":87,"h":1,"n":"Fencer Swashbuckler 9; Exemplary Finisher","uh":"swashbuckler_apg,state:sub-fencer-apg=b1~feature=s8-0"},{"c":6,"s":"APG","id":9730,"u":"swashbuckler's%20style_swashbuckler_apg_gymnast_apg_1_apg","p":84,"h":1,"n":"Gymnast Swashbuckler 1; Swashbuckler's Style","uh":"swashbuckler_apg,state:sub-gymnast-apg=b1~feature=s0-4"},{"c":6,"s":"APG","id":9732,"u":"exemplary%20finisher_swashbuckler_apg_gymnast_apg_9_apg","p":87,"h":1,"n":"Gymnast Swashbuckler 9; Exemplary Finisher","uh":"swashbuckler_apg,state:sub-gymnast-apg=b1~feature=s8-0"},{"c":6,"s":"APG","id":9734,"u":"swashbuckler's%20style_swashbuckler_apg_wit_apg_1_apg","p":84,"h":1,"n":"Wit Swashbuckler 1; Swashbuckler's Style","uh":"swashbuckler_apg,state:sub-wit-apg=b1~feature=s0-4"},{"c":6,"s":"APG","id":9736,"u":"exemplary%20finisher_swashbuckler_apg_wit_apg_9_apg","p":87,"h":1,"n":"Wit Swashbuckler 9; Exemplary Finisher","uh":"swashbuckler_apg,state:sub-wit-apg=b1~feature=s8-0"},{"c":6,"s":"LOL","id":9738,"u":"patron_witch_apg_baba%20yaga_lol_1_lol","p":32,"h":1,"n":"Baba Yaga Witch 1; Patron","uh":"witch_apg,state:sub-baba-yaga-lol=b1~feature=s0-2"},{"c":6,"s":"APG","id":9740,"u":"patron_witch_apg_curse_apg_1_apg","p":99,"h":1,"n":"Curse Witch 1; Patron","uh":"witch_apg,state:sub-curse-apg=b1~feature=s0-2"},{"c":6,"s":"APG","id":9742,"u":"patron_witch_apg_fate_apg_1_apg","p":208,"h":1,"n":"Fate Witch 1; Patron","uh":"witch_apg,state:sub-fate-apg=b1~feature=s0-2"},{"c":6,"s":"APG","id":9744,"u":"patron_witch_apg_fervor_apg_1_apg","p":208,"h":1,"n":"Fervor Witch 1; Patron","uh":"witch_apg,state:sub-fervor-apg=b1~feature=s0-2"},{"c":6,"s":"APG","id":9746,"u":"patron_witch_apg_night_apg_1_apg","p":208,"h":1,"n":"Night Witch 1; Patron","uh":"witch_apg,state:sub-night-apg=b1~feature=s0-2"},{"c":6,"s":"APG","id":9748,"u":"patron_witch_apg_rune_apg_1_apg","p":208,"h":1,"n":"Rune Witch 1; Patron","uh":"witch_apg,state:sub-rune-apg=b1~feature=s0-2"},{"c":6,"s":"APG","id":9750,"u":"patron_witch_apg_wild_apg_1_apg","p":208,"h":1,"n":"Wild Witch 1; Patron","uh":"witch_apg,state:sub-wild-apg=b1~feature=s0-2"},{"c":6,"s":"APG","id":9752,"u":"patron_witch_apg_winter_apg_1_apg","p":208,"h":1,"n":"Winter Witch 1; Patron","uh":"witch_apg,state:sub-winter-apg=b1~feature=s0-2"},{"c":6,"s":"CRB","id":9754,"u":"arcane%20school_wizard_crb_abjuration_crb_1_crb","p":207,"h":1,"n":"Abjuration Wizard 1; Arcane School","uh":"wizard_crb,state:sub-abjuration-crb=b1~feature=s0-3"},{"c":6,"s":"CRB","id":9756,"u":"arcane%20school_wizard_crb_conjuration_crb_1_crb","p":207,"h":1,"n":"Conjuration Wizard 1; Arcane School","uh":"wizard_crb,state:sub-conjuration-crb=b1~feature=s0-3"},{"c":6,"s":"CRB","id":9758,"u":"arcane%20school_wizard_crb_divination_crb_1_crb","p":208,"h":1,"n":"Divination Wizard 1; Arcane School","uh":"wizard_crb,state:sub-divination-crb=b1~feature=s0-3"},{"c":6,"s":"CRB","id":9760,"u":"arcane%20school_wizard_crb_enchantment_crb_1_crb","p":208,"h":1,"n":"Enchantment Wizard 1; Arcane School","uh":"wizard_crb,state:sub-enchantment-crb=b1~feature=s0-3"},{"c":6,"s":"CRB","id":9762,"u":"arcane%20school_wizard_crb_evocation_crb_1_crb","p":208,"h":1,"n":"Evocation Wizard 1; Arcane School","uh":"wizard_crb,state:sub-evocation-crb=b1~feature=s0-3"},{"c":6,"s":"CRB","id":9764,"u":"arcane%20school_wizard_crb_illusion_crb_1_crb","p":208,"h":1,"n":"Illusion Wizard 1; Arcane School","uh":"wizard_crb,state:sub-illusion-crb=b1~feature=s0-3"},{"c":6,"s":"CRB","id":9766,"u":"arcane%20school_wizard_crb_necromancy_crb_1_crb","p":208,"h":1,"n":"Necromancy Wizard 1; Arcane School","uh":"wizard_crb,state:sub-necromancy-crb=b1~feature=s0-3"},{"c":6,"s":"CRB","id":9768,"u":"arcane%20school_wizard_crb_transmutation_crb_1_crb","p":208,"h":1,"n":"Transmutation Wizard 1; Arcane School","uh":"wizard_crb,state:sub-transmutation-crb=b1~feature=s0-3"},{"c":6,"s":"CRB","id":9770,"u":"arcane%20school_wizard_crb_universalist_crb_1_crb","p":209,"h":1,"n":"Universalist Wizard 1; Arcane School","uh":"wizard_crb,state:sub-universalist-crb=b1~feature=s0-3"},{"c":6,"s":"CRB","id":9772,"u":"arcane%20thesis_wizard_crb_improved%20familiar%20attunement_crb_1_crb","p":205,"h":1,"n":"Improved Familiar Attunement Wizard 1; Arcane Thesis","uh":"wizard_crb,state:sub-improved-familiar-attunement-crb=b1~feature=s0-5"},{"c":6,"s":"CRB","id":9774,"u":"arcane%20thesis_wizard_crb_metamagical%20experimentation_crb_1_crb","p":205,"h":1,"n":"Metamagical Experimentation Wizard 1; Arcane Thesis","uh":"wizard_crb,state:sub-metamagical-experimentation-crb=b1~feature=s0-5"},{"c":6,"s":"CRB","id":9776,"u":"arcane%20thesis_wizard_crb_spell%20blending_crb_1_crb","p":206,"h":1,"n":"Spell Blending Wizard 1; Arcane Thesis","uh":"wizard_crb,state:sub-spell-blending-crb=b1~feature=s0-5"},{"c":6,"s":"CRB","id":9778,"u":"arcane%20thesis_wizard_crb_spell%20substitution_crb_1_crb","p":206,"h":1,"n":"Spell Substitution Wizard 1; Arcane Thesis","uh":"wizard_crb,state:sub-spell-substitution-crb=b1~feature=s0-5"},{"c":6,"s":"APG","id":9780,"u":"arcane%20thesis_wizard_crb_staff%20nexus_apg_1_apg","p":142,"h":1,"n":"Staff Nexus Wizard 1; Arcane Thesis","uh":"wizard_crb,state:sub-staff-nexus-apg=b1~feature=s0-5"},{"c":25,"s":4,"id":9781,"u":"acrobat_apg","p":155,"h":1,"n":"Acrobat"},{"c":25,"s":4,"id":9782,"u":"archaeologist_apg","p":156,"h":1,"n":"Archaeologist"},{"c":25,"s":4,"id":9783,"u":"archer_apg","p":157,"h":1,"n":"Archer"},{"c":25,"s":4,"id":9784,"u":"assassin_apg","p":158,"h":1,"n":"Assassin"},{"c":25,"s":4,"id":9785,"u":"bastion_apg","p":159,"h":1,"n":"Bastion"},{"c":25,"s":4,"id":9786,"u":"beastmaster_apg","p":160,"h":1,"n":"Beastmaster"},{"c":25,"s":4,"id":9787,"u":"blessed%20one_apg","p":162,"h":1,"n":"Blessed One"},{"c":25,"s":4,"id":9788,"u":"bounty%20hunter_apg","p":163,"h":1,"n":"Bounty Hunter"},{"c":25,"s":4,"id":9789,"u":"cavalier_apg","p":164,"h":1,"n":"Cavalier"},{"c":25,"s":4,"id":9790,"u":"celebrity_apg","p":166,"h":1,"n":"Celebrity"},{"c":25,"s":4,"id":9791,"u":"dandy_apg","p":167,"h":1,"n":"Dandy"},{"c":25,"s":4,"id":9792,"u":"dragon%20disciple_apg","p":168,"h":1,"n":"Dragon Disciple"},{"c":25,"s":4,"id":9793,"u":"dual-weapon%20warrior_apg","p":170,"h":1,"n":"Dual-Weapon Warrior"},{"c":25,"s":4,"id":9794,"u":"duelist_apg","p":171,"h":1,"n":"Duelist"},{"c":25,"s":4,"id":9795,"u":"eldritch%20archer_apg","p":172,"h":1,"n":"Eldritch Archer"},{"c":25,"s":4,"id":9796,"u":"familiar%20master_apg","p":174,"h":1,"n":"Familiar Master"},{"c":25,"s":4,"id":9797,"u":"gladiator_apg","p":175,"h":1,"n":"Gladiator"},{"c":25,"s":4,"id":9798,"u":"herbalist_apg","p":176,"h":1,"n":"Herbalist"},{"c":25,"s":4,"id":9799,"u":"horizon%20walker_apg","p":177,"h":1,"n":"Horizon Walker"},{"c":25,"s":4,"id":9800,"u":"investigator_apg","p":151,"h":1,"n":"Investigator"},{"c":25,"s":4,"id":9801,"u":"linguist_apg","p":178,"h":1,"n":"Linguist"},{"c":25,"s":4,"id":9802,"u":"loremaster_apg","p":179,"h":1,"n":"Loremaster"},{"c":25,"s":4,"id":9803,"u":"marshal_apg","p":180,"h":1,"n":"Marshal"},{"c":25,"s":4,"id":9804,"u":"martial%20artist_apg","p":182,"h":1,"n":"Martial Artist"},{"c":25,"s":4,"id":9805,"u":"mauler_apg","p":183,"h":1,"n":"Mauler"},{"c":25,"s":4,"id":9806,"u":"medic_apg","p":184,"h":1,"n":"Medic"},{"c":25,"s":4,"id":9807,"u":"oracle_apg","p":152,"h":1,"n":"Oracle"},{"c":25,"s":4,"id":9808,"u":"pirate_apg","p":185,"h":1,"n":"Pirate"},{"c":25,"s":4,"id":9809,"u":"poisoner_apg","p":186,"h":1,"n":"Poisoner"},{"c":25,"s":4,"id":9810,"u":"ritualist_apg","p":187,"h":1,"n":"Ritualist"},{"c":25,"s":4,"id":9811,"u":"scout_apg","p":188,"h":1,"n":"Scout"},{"c":25,"s":4,"id":9812,"u":"scroll%20trickster_apg","p":189,"h":1,"n":"Scroll Trickster"},{"c":25,"s":4,"id":9813,"u":"scrounger_apg","p":190,"h":1,"n":"Scrounger"},{"c":25,"s":4,"id":9814,"u":"sentinel_apg","p":191,"h":1,"n":"Sentinel"},{"c":25,"s":4,"id":9815,"u":"shadowdancer_apg","p":192,"h":1,"n":"Shadowdancer"},{"c":25,"s":4,"id":9816,"u":"snarecrafter_apg","p":194,"h":1,"n":"Snarecrafter"},{"c":25,"s":4,"id":9817,"u":"swashbuckler_apg","p":153,"h":1,"n":"Swashbuckler"},{"c":25,"s":4,"id":9818,"u":"talisman%20dabbler_apg","p":195,"h":1,"n":"Talisman Dabbler"},{"c":25,"s":4,"id":9819,"u":"vigilante_apg","p":196,"h":1,"n":"Vigilante"},{"c":25,"s":4,"id":9820,"u":"viking_apg","p":198,"h":1,"n":"Viking"},{"c":25,"s":4,"id":9821,"u":"weapon%20improviser_apg","p":198,"h":1,"n":"Weapon Improviser"},{"c":25,"s":4,"id":9822,"u":"witch_apg","p":154,"h":1,"n":"Witch"},{"c":25,"s":5,"id":9823,"u":"alchemist_crb","p":220,"h":1,"n":"Alchemist"},{"c":25,"s":5,"id":9824,"u":"barbarian_crb","p":221,"h":1,"n":"Barbarian"},{"c":25,"s":5,"id":9825,"u":"bard_crb","p":222,"h":1,"n":"Bard"},{"c":25,"s":5,"id":9826,"u":"champion_crb","p":223,"h":1,"n":"Champion"},{"c":25,"s":5,"id":9827,"u":"cleric_crb","p":224,"h":1,"n":"Cleric"},{"c":25,"s":5,"id":9828,"u":"druid_crb","p":225,"h":1,"n":"Druid"},{"c":25,"s":5,"id":9829,"u":"fighter_crb","p":226,"h":1,"n":"Fighter"},{"c":25,"s":5,"id":9830,"u":"monk_crb","p":227,"h":1,"n":"Monk"},{"c":25,"s":5,"id":9831,"u":"ranger_crb","p":228,"h":1,"n":"Ranger"},{"c":25,"s":5,"id":9832,"u":"rogue_crb","p":229,"h":1,"n":"Rogue"},{"c":25,"s":5,"id":9833,"u":"sorcerer_crb","p":230,"h":1,"n":"Sorcerer"},{"c":25,"s":5,"id":9834,"u":"wizard_crb","p":231,"h":1,"n":"Wizard"},{"c":25,"s":15,"id":9835,"u":"bellflower%20tiller_aoa3","p":75,"h":1,"n":"Bellflower Tiller"},{"c":25,"s":16,"id":9836,"u":"crystal%20keeper_aoa4","p":74,"h":1,"n":"Crystal Keeper"},{"c":25,"s":53,"id":9837,"u":"zephyr%20guard_aoa5","p":81,"h":1,"n":"Zephyr Guard"},{"c":25,"s":54,"id":9838,"u":"edgewatch%20detective_aoe1","p":79,"h":1,"n":"Edgewatch Detective"},{"c":25,"s":20,"id":9839,"u":"jalmeri%20heavenseeker_aoe2","p":78,"h":1,"n":"Jalmeri Heavenseeker"},{"c":25,"s":55,"id":9840,"u":"provocator_aoe3","p":79,"h":1,"n":"Provocator"},{"c":25,"s":55,"id":9841,"u":"red%20mantis%20assassin_aoe3","p":71,"h":1,"n":"Red Mantis Assassin"},{"c":25,"s":25,"id":9842,"u":"ghost%20hunter_av1","p":81,"h":1,"n":"Ghost Hunter"},{"c":25,"s":26,"id":9843,"u":"eldritch%20researcher_av2","p":76,"h":1,"n":"Eldritch Researcher"},{"c":25,"s":28,"id":9844,"u":"juggler_ec1","p":74,"h":1,"n":"Juggler"},{"c":25,"s":28,"id":9845,"u":"staff%20acrobat_ec1","p":114,"h":1,"n":"Staff Acrobat"},{"c":25,"s":29,"id":9846,"u":"animal%20trainer_ec2","p":76,"h":1,"n":"Animal Trainer"},{"c":25,"s":8,"id":9847,"u":"golem%20grafter_ec3","p":74,"h":1,"n":"Golem Grafter"},{"c":25,"s":8,"id":9848,"u":"turpin%20rowe%20lumberjack_ec3","p":75,"h":1,"n":"Turpin Rowe Lumberjack"},{"c":25,"s":34,"id":9849,"u":"butterfly%20blade_frp1","p":78,"h":1,"n":"Butterfly Blade"},{"c":25,"s":34,"id":9850,"u":"drow%20shootist_frp1","p":77,"h":1,"n":"Drow Shootist"},{"c":25,"s":34,"id":9851,"u":"ghost%20eater_frp1","p":79,"h":1,"n":"Ghost Eater"},{"c":25,"s":35,"id":9852,"u":"golden%20league%20xun_frp2","p":76,"h":1,"n":"Golden League Xun"},{"c":25,"s":35,"id":9853,"u":"sixth%20pillar_frp2","p":77,"h":1,"n":"Sixth Pillar"},{"c":25,"s":2,"id":9854,"u":"artillerist_g%26g","p":128,"h":1,"n":"Artillerist"},{"c":25,"s":2,"id":9855,"u":"beast%20gunner_g%26g","p":130,"h":1,"n":"Beast Gunner"},{"c":25,"s":2,"id":9856,"u":"bullet%20dancer_g%26g","p":132,"h":1,"n":"Bullet Dancer"},{"c":25,"s":2,"id":9857,"u":"demolitionist_g%26g","p":133,"h":1,"n":"Demolitionist"},{"c":25,"s":2,"id":9858,"u":"firework%20technician_g%26g","p":134,"h":1,"n":"Firework Technician"},{"c":25,"s":2,"id":9859,"u":"gunslinger_g%26g","p":127,"h":1,"n":"Gunslinger"},{"c":25,"s":2,"id":9860,"u":"inventor_g%26g","p":49,"h":1,"n":"Inventor"},{"c":25,"s":2,"id":9861,"u":"overwatch_g%26g","p":50,"h":1,"n":"Overwatch"},{"c":25,"s":2,"id":9862,"u":"pistol%20phenom_g%26g","p":136,"h":1,"n":"Pistol Phenom"},{"c":25,"s":2,"id":9863,"u":"sniping%20duo_g%26g","p":138,"h":1,"n":"Sniping Duo"},{"c":25,"s":2,"id":9864,"u":"spellshot_g%26g","p":140,"h":1,"n":"Spellshot"},{"c":25,"s":2,"id":9865,"u":"sterling%20dynamo_g%26g","p":52,"h":1,"n":"Sterling Dynamo"},{"c":25,"s":2,"id":9866,"u":"trapsmith_g%26g","p":52,"h":1,"n":"Trapsmith"},{"c":25,"s":2,"id":9867,"u":"trick%20driver_g%26g","p":55,"h":1,"n":"Trick Driver"},{"c":25,"s":2,"id":9868,"u":"unexpected%20sharpshooter_g%26g","p":138,"h":1,"n":"Unexpected Sharpshooter"},{"c":25,"s":2,"id":9869,"u":"vehicle%20mechanic_g%26g","p":56,"h":1,"n":"Vehicle Mechanic"},{"c":25,"s":6,"id":9870,"u":"firebrand%20braggart_locg","p":74,"h":1,"n":"Firebrand Braggart"},{"c":25,"s":6,"id":9871,"u":"halcyon%20speaker_locg","p":104,"h":1,"n":"Halcyon Speaker"},{"c":25,"s":6,"id":9872,"u":"hellknight_locg","p":84,"h":1,"n":"Hellknight"},{"c":25,"s":6,"id":9873,"u":"hellknight%20signifer_locg","p":85,"h":1,"n":"Hellknight Signifer"},{"c":25,"s":6,"id":9874,"u":"knight%20reclaimant_locg","p":74,"h":1,"n":"Knight Reclaimant"},{"c":25,"s":6,"id":9875,"u":"knight%20vigilant_locg","p":94,"h":1,"n":"Knight Vigilant"},{"c":25,"s":6,"id":9876,"u":"magaambyan%20attendant_locg","p":101,"h":1,"n":"Magaambyan Attendant"},{"c":25,"s":6,"id":9877,"u":"scrollmaster_locg","p":113,"h":1,"n":"Scrollmaster"},{"c":25,"s":6,"id":9878,"u":"spellmaster_locg","p":114,"h":1,"n":"Spellmaster"},{"c":25,"s":6,"id":9879,"u":"swordmaster_locg","p":115,"h":1,"n":"Swordmaster"},{"c":25,"s":52,"id":9880,"u":"bright%20lion_lol","p":101,"h":1,"n":"Bright Lion"},{"c":25,"s":7,"id":9881,"u":"captivator_lotgb","p":120,"h":1,"n":"Captivator"},{"c":25,"s":7,"id":9882,"u":"spell%20trickster_lotgb","p":122,"h":1,"n":"Spell Trickster"},{"c":25,"s":7,"id":9883,"u":"wrestler_lotgb","p":126,"h":1,"n":"Wrestler"},{"c":25,"s":48,"id":9884,"u":"aldori%20duelist_lowg","p":35,"h":1,"n":"Aldori Duelist"},{"c":25,"s":48,"id":9885,"u":"hellknight%20armiger_lowg","p":107,"h":1,"n":"Hellknight Armiger"},{"c":25,"s":48,"id":9886,"u":"lastwall%20sentry_lowg","p":47,"h":1,"n":"Lastwall Sentry"},{"c":25,"s":48,"id":9887,"u":"living%20monolith_lowg","p":59,"h":1,"n":"Living Monolith"},{"c":25,"s":48,"id":9888,"u":"magic%20warrior_lowg","p":95,"h":1,"n":"Magic Warrior"},{"c":25,"s":48,"id":9889,"u":"pathfinder%20agent_lowg","p":23,"h":1,"n":"Pathfinder Agent"},{"c":25,"s":48,"id":9890,"u":"runescarred_lowg","p":119,"h":1,"n":"Runescarred"},{"c":25,"s":48,"id":9891,"u":"student%20of%20perfection_lowg","p":83,"h":1,"n":"Student of Perfection"},{"c":25,"s":56,"id":9892,"u":"gray%20gardener_ngd","p":64,"h":1,"n":"Gray Gardener"},{"c":25,"s":38,"id":9893,"u":"oozemorph_sli","p":59,"h":1,"n":"Oozemorph"},{"c":25,"s":49,"id":9894,"u":"cathartic%20mage_som","p":194,"h":1,"n":"Cathartic Mage"},{"c":25,"s":49,"id":9895,"u":"elementalist_som","p":206,"h":1,"n":"Elementalist"},{"c":25,"s":49,"id":9896,"u":"flexible%20caster_som","p":209,"h":1,"n":"Flexible Caster"},{"c":25,"s":49,"id":9897,"u":"geomancer_som","p":212,"h":1,"n":"Geomancer"},{"c":25,"s":49,"id":9898,"u":"magus_som","p":75,"h":1,"n":"Magus"},{"c":25,"s":49,"id":9899,"u":"runelord_som","p":240,"h":1,"n":"Runelord"},{"c":25,"s":49,"id":9900,"u":"shadowcaster_som","p":226,"h":1,"n":"Shadowcaster"},{"c":25,"s":49,"id":9901,"u":"soulforger_som","p":236,"h":1,"n":"Soulforger"},{"c":25,"s":49,"id":9902,"u":"summoner_som","p":76,"h":1,"n":"Summoner"},{"c":25,"s":49,"id":9903,"u":"wellspring%20mage_som","p":248,"h":1,"n":"Wellspring Mage"},{"c":25,"s":57,"id":9904,"u":"folklorist_sot2","p":78,"h":1,"n":"Folklorist"},{"c":25,"s":57,"id":9905,"u":"nantambu%20chime-ringer_sot2","p":79,"h":1,"n":"Nantambu Chime-Ringer"},{"c":2,"s":4,"id":9906,"u":"bola_apg","p":248,"h":1,"n":"Bola"},{"c":2,"s":4,"id":9907,"u":"claw%20blade_apg","p":248,"h":1,"n":"Claw Blade"},{"c":2,"s":4,"id":9908,"u":"khakkara_apg","p":248,"h":1,"n":"Khakkara"},{"c":2,"s":4,"id":9909,"u":"sword%20cane_apg","p":248,"h":1,"n":"Sword Cane"},{"c":2,"s":4,"id":9910,"u":"tengu%20gale%20blade_apg","p":248,"h":1,"n":"Tengu Gale Blade"},{"c":2,"s":4,"id":9911,"u":"wakizashi_apg","p":248,"h":1,"n":"Wakizashi"},{"c":2,"s":9,"id":9912,"u":"aklys_bst","p":85,"h":1,"n":"Aklys"},{"c":2,"s":5,"id":9913,"u":"bastard%20sword_crb","p":280,"h":1,"n":"Bastard Sword"},{"c":2,"s":5,"id":9914,"u":"battle%20axe_crb","p":280,"h":1,"n":"Battle Axe"},{"c":2,"s":5,"id":9915,"u":"blowgun_crb","p":281,"h":1,"n":"Blowgun"},{"c":2,"s":5,"id":9916,"u":"bo%20staff_crb","p":280,"h":1,"n":"Bo Staff"},{"c":2,"s":5,"id":9917,"u":"breastplate_crb","p":275,"h":1,"n":"Breastplate"},{"c":2,"s":5,"id":9918,"u":"buckler_crb","p":277,"h":1,"n":"Buckler"},{"c":2,"s":5,"id":9919,"u":"chain%20mail_crb","p":275,"h":1,"n":"Chain Mail"},{"c":2,"s":5,"id":9920,"u":"chain%20shirt_crb","p":275,"h":1,"n":"Chain Shirt"},{"c":2,"s":5,"id":9921,"u":"clan%20dagger_crb","p":280,"h":1,"n":"Clan Dagger"},{"c":2,"s":5,"id":9922,"u":"club_crb","p":280,"h":1,"n":"Club"},{"c":2,"s":5,"id":9923,"u":"composite%20longbow_crb","p":282,"h":1,"n":"Composite Longbow"},{"c":2,"s":5,"id":9924,"u":"composite%20shortbow_crb","p":282,"h":1,"n":"Composite Shortbow"},{"c":2,"s":5,"id":9925,"u":"crossbow_crb","p":281,"h":1,"n":"Crossbow"},{"c":2,"s":5,"id":9926,"u":"dagger_crb","p":280,"h":1,"n":"Dagger"},{"c":2,"s":5,"id":9927,"u":"dart_crb","p":281,"h":1,"n":"Dart"},{"c":2,"s":5,"id":9928,"u":"dogslicer_crb","p":281,"h":1,"n":"Dogslicer"},{"c":2,"s":5,"id":9929,"u":"dwarven%20war%20axe_crb","p":281,"h":1,"n":"Dwarven War Axe"},{"c":2,"s":5,"id":9930,"u":"elven%20curve%20blade_crb","p":281,"h":1,"n":"Elven Curve Blade"},{"c":2,"s":5,"id":9931,"u":"explorer's%20clothing_crb","p":275,"h":1,"n":"Explorer's Clothing"},{"c":2,"s":5,"id":9932,"u":"falchion_crb","p":280,"h":1,"n":"Falchion"},{"c":2,"s":5,"id":9933,"u":"filcher's%20fork_crb","p":281,"h":1,"n":"Filcher's Fork"},{"c":2,"s":5,"id":9934,"u":"flail_crb","p":280,"h":1,"n":"Flail"},{"c":2,"s":5,"id":9935,"u":"full%20plate_crb","p":275,"h":1,"n":"Full Plate"},{"c":2,"s":5,"id":9936,"u":"gauntlet_crb","p":280,"h":1,"n":"Gauntlet"},{"c":2,"s":5,"id":9937,"u":"glaive_crb","p":280,"h":1,"n":"Glaive"},{"c":2,"s":5,"id":9938,"u":"gnome%20flickmace_crb","p":281,"h":1,"n":"Gnome Flickmace"},{"c":2,"s":5,"id":9939,"u":"gnome%20hooked%20hammer_crb","p":281,"h":1,"n":"Gnome Hooked Hammer"},{"c":2,"s":5,"id":9940,"u":"greataxe_crb","p":280,"h":1,"n":"Greataxe"},{"c":2,"s":5,"id":9941,"u":"greatclub_crb","p":280,"h":1,"n":"Greatclub"},{"c":2,"s":5,"id":9942,"u":"greatpick_crb","p":280,"h":1,"n":"Greatpick"},{"c":2,"s":5,"id":9943,"u":"greatsword_crb","p":280,"h":1,"n":"Greatsword"},{"c":2,"s":5,"id":9944,"u":"guisarme_crb","p":280,"h":1,"n":"Guisarme"},{"c":2,"s":5,"id":9945,"u":"halberd_crb","p":280,"h":1,"n":"Halberd"},{"c":2,"s":5,"id":9946,"u":"half%20plate_crb","p":275,"h":1,"n":"Half Plate"},{"c":2,"s":5,"id":9947,"u":"halfling%20sling%20staff_crb","p":281,"h":1,"n":"Halfling Sling Staff"},{"c":2,"s":5,"id":9948,"u":"hand%20crossbow_crb","p":281,"h":1,"n":"Hand Crossbow"},{"c":2,"s":5,"id":9949,"u":"hatchet_crb","p":280,"h":1,"n":"Hatchet"},{"c":2,"s":5,"id":9950,"u":"heavy%20crossbow_crb","p":281,"h":1,"n":"Heavy Crossbow"},{"c":2,"s":5,"id":9951,"u":"hide_crb","p":275,"h":1,"n":"Hide"},{"c":2,"s":5,"id":9952,"u":"horsechopper_crb","p":281,"h":1,"n":"Horsechopper"},{"c":2,"s":5,"id":9953,"u":"javelin_crb","p":281,"h":1,"n":"Javelin"},{"c":2,"s":5,"id":9954,"u":"kama_crb","p":281,"h":1,"n":"Kama"},{"c":2,"s":5,"id":9955,"u":"katana_crb","p":281,"h":1,"n":"Katana"},{"c":2,"s":5,"id":9956,"u":"katar_crb","p":280,"h":1,"n":"Katar"},{"c":2,"s":5,"id":9957,"u":"kukri_crb","p":281,"h":1,"n":"Kukri"},{"c":2,"s":5,"id":9958,"u":"lance_crb","p":280,"h":1,"n":"Lance"},{"c":2,"s":5,"id":9959,"u":"leather_crb","p":275,"h":1,"n":"Leather"},{"c":2,"s":5,"id":9960,"u":"light%20hammer_crb","p":280,"h":1,"n":"Light Hammer"},{"c":2,"s":5,"id":9961,"u":"light%20mace_crb","p":280,"h":1,"n":"Light Mace"},{"c":2,"s":5,"id":9962,"u":"light%20pick_crb","p":280,"h":1,"n":"Light Pick"},{"c":2,"s":5,"id":9963,"u":"longbow_crb","p":282,"h":1,"n":"Longbow"},{"c":2,"s":5,"id":9964,"u":"longspear_crb","p":280,"h":1,"n":"Longspear"},{"c":2,"s":5,"id":9965,"u":"longsword_crb","p":281,"h":1,"n":"Longsword"},{"c":2,"s":5,"id":9966,"u":"mace_crb","p":280,"h":1,"n":"Mace"},{"c":2,"s":5,"id":9967,"u":"main-gauche_crb","p":281,"h":1,"n":"Main-gauche"},{"c":2,"s":5,"id":9968,"u":"maul_crb","p":281,"h":1,"n":"Maul"},{"c":2,"s":5,"id":9969,"u":"morningstar_crb","p":280,"h":1,"n":"Morningstar"},{"c":2,"s":5,"id":9970,"u":"nunchaku_crb","p":281,"h":1,"n":"Nunchaku"},{"c":2,"s":5,"id":9971,"u":"orc%20knuckle%20dagger_crb","p":281,"h":1,"n":"Orc Knuckle Dagger"},{"c":2,"s":5,"id":9972,"u":"orc%20necksplitter_crb","p":281,"h":1,"n":"Orc Necksplitter"},{"c":2,"s":5,"id":9973,"u":"padded%20armor_crb","p":275,"h":1,"n":"Padded Armor"},{"c":2,"s":5,"id":9974,"u":"pick_crb","p":281,"h":1,"n":"Pick"},{"c":2,"s":5,"id":9975,"u":"ranseur_crb","p":281,"h":1,"n":"Ranseur"},{"c":2,"s":5,"id":9976,"u":"rapier_crb","p":281,"h":1,"n":"Rapier"},{"c":2,"s":5,"id":9977,"u":"sai_crb","p":281,"h":1,"n":"Sai"},{"c":2,"s":5,"id":9978,"u":"sap_crb","p":281,"h":1,"n":"Sap"},{"c":2,"s":5,"id":9979,"u":"sawtooth%20saber_crb","p":281,"h":1,"n":"Sawtooth Saber"},{"c":2,"s":5,"id":9980,"u":"scale%20mail_crb","p":275,"h":1,"n":"Scale Mail"},{"c":2,"s":5,"id":9981,"u":"scimitar_crb","p":281,"h":1,"n":"Scimitar"},{"c":2,"s":5,"id":9982,"u":"scythe_crb","p":281,"h":1,"n":"Scythe"},{"c":2,"s":5,"id":9983,"u":"shield%20boss_crb","p":281,"h":1,"n":"Shield Boss"},{"c":2,"s":5,"id":9984,"u":"shield%20spikes_crb","p":281,"h":1,"n":"Shield Spikes"},{"c":2,"s":5,"id":9985,"u":"shortbow_crb","p":282,"h":1,"n":"Shortbow"},{"c":2,"s":5,"id":9986,"u":"shortsword_crb","p":281,"h":1,"n":"Shortsword"},{"c":2,"s":5,"id":9987,"u":"shuriken_crb","p":281,"h":1,"n":"Shuriken"},{"c":2,"s":5,"id":9988,"u":"sickle_crb","p":280,"h":1,"n":"Sickle"},{"c":2,"s":5,"id":9989,"u":"sling_crb","p":282,"h":1,"n":"Sling"},{"c":2,"s":5,"id":9990,"u":"spear_crb","p":280,"h":1,"n":"Spear"},{"c":2,"s":5,"id":9991,"u":"spiked%20chain_crb","p":281,"h":1,"n":"Spiked Chain"},{"c":2,"s":5,"id":9992,"u":"spiked%20gauntlet_crb","p":280,"h":1,"n":"Spiked Gauntlet"},{"c":2,"s":5,"id":9993,"u":"splint%20mail_crb","p":275,"h":1,"n":"Splint Mail"},{"c":2,"s":5,"id":9994,"u":"staff_crb","p":280,"h":1,"n":"Staff"},{"c":2,"s":5,"id":9995,"u":"starknife_crb","p":281,"h":1,"n":"Starknife"},{"c":2,"s":5,"id":9996,"u":"steel%20shield_crb","p":277,"h":1,"n":"Steel Shield"},{"c":2,"s":5,"id":9997,"u":"studded%20leather_crb","p":275,"h":1,"n":"Studded Leather"},{"c":2,"s":5,"id":9998,"u":"temple%20sword_crb","p":281,"h":1,"n":"Temple Sword"},{"c":2,"s":5,"id":9999,"u":"tower%20shield_crb","p":277,"h":1,"n":"Tower Shield"},{"c":2,"s":5,"id":10000,"u":"trident_crb","p":281,"h":1,"n":"Trident"},{"c":2,"s":5,"id":10001,"u":"war%20flail_crb","p":281,"h":1,"n":"War Flail"},{"c":2,"s":5,"id":10002,"u":"warhammer_crb","p":281,"h":1,"n":"Warhammer"},{"c":2,"s":5,"id":10003,"u":"whip_crb","p":281,"h":1,"n":"Whip"},{"c":2,"s":5,"id":10004,"u":"wooden%20shield_crb","p":277,"h":1,"n":"Wooden Shield"},{"c":2,"s":19,"id":10005,"u":"monkey's%20fist_aoe1","p":78,"h":1,"n":"Monkey's Fist"},{"c":2,"s":19,"id":10006,"u":"nightstick_aoe1","p":78,"h":1,"n":"Nightstick"},{"c":2,"s":27,"id":10007,"u":"rhoka%20sword_av3","p":73,"h":1,"n":"Rhoka Sword"},{"c":2,"s":27,"id":10008,"u":"shauth%20blade_av3","p":73,"h":1,"n":"Shauth Blade"},{"c":2,"s":27,"id":10009,"u":"shauth%20lash_av3","p":73,"h":1,"n":"Shauth Lash"},{"c":2,"s":33,"id":10010,"u":"alchemical%20crossbow_fop","p":56,"h":1,"n":"Alchemical Crossbow"},{"c":2,"s":2,"id":10011,"u":"air%20repeater_g%26g","p":151,"h":1,"n":"Air Repeater"},{"c":2,"s":2,"id":10012,"u":"arquebus_g%26g","p":151,"h":1,"n":"Arquebus"},{"c":2,"s":2,"id":10013,"u":"axe%20musket_g%26g","p":158,"h":1,"n":"Axe Musket"},{"c":2,"s":2,"id":10014,"u":"backpack%20ballista_g%26g","p":62,"h":1,"n":"Backpack Ballista"},{"c":2,"s":2,"id":10015,"u":"backpack%20catapult_g%26g","p":63,"h":1,"n":"Backpack Catapult"},{"c":2,"s":2,"id":10016,"u":"bayonet_g%26g","p":150,"h":1,"n":"Bayonet"},{"c":2,"s":2,"id":10017,"u":"big%20boom%20gun_g%26g","p":157,"h":1,"n":"Big Boom Gun"},{"c":2,"s":2,"id":10018,"u":"black%20powder%20knuckle%20dusters_g%26g","p":158,"h":1,"n":"Black Powder Knuckle Dusters"},{"c":2,"s":2,"id":10019,"u":"blunderbuss_g%26g","p":151,"h":1,"n":"Blunderbuss"},{"c":2,"s":2,"id":10020,"u":"cane%20pistol_g%26g","p":158,"h":1,"n":"Cane Pistol"},{"c":2,"s":2,"id":10021,"u":"clan%20pistol_g%26g","p":151,"h":1,"n":"Clan Pistol"},{"c":2,"s":2,"id":10022,"u":"clockwork%20disguise_g%26g","p":85,"h":1,"n":"Clockwork Disguise"},{"c":2,"s":2,"id":10023,"u":"coat%20pistol_g%26g","p":151,"h":1,"n":"Coat Pistol"},{"c":2,"s":2,"id":10024,"u":"dagger%20pistol_g%26g","p":158,"h":1,"n":"Dagger Pistol"},{"c":2,"s":2,"id":10025,"u":"dart%20umbrella_g%26g","p":63,"h":1,"n":"Dart Umbrella"},{"c":2,"s":2,"id":10026,"u":"double-barreled%20musket_g%26g","p":151,"h":1,"n":"Double-barreled Musket"},{"c":2,"s":2,"id":10027,"u":"double-barreled%20pistol_g%26g","p":151,"h":1,"n":"Double-barreled Pistol"},{"c":2,"s":2,"id":10028,"u":"dragon%20mouth%20pistol_g%26g","p":151,"h":1,"n":"Dragon Mouth Pistol"},{"c":2,"s":2,"id":10029,"u":"dueling%20pistol_g%26g","p":151,"h":1,"n":"Dueling Pistol"},{"c":2,"s":2,"id":10030,"u":"dwarven%20scattergun_g%26g","p":151,"h":1,"n":"Dwarven Scattergun"},{"c":2,"s":2,"id":10031,"u":"explosive%20dogslicer_g%26g","p":158,"h":1,"n":"Explosive Dogslicer"},{"c":2,"s":2,"id":10032,"u":"fire%20lance_g%26g","p":151,"h":1,"n":"Fire Lance"},{"c":2,"s":2,"id":10033,"u":"flingflenser_g%26g","p":151,"h":1,"n":"Flingflenser"},{"c":2,"s":2,"id":10034,"u":"flintlock%20musket_g%26g","p":151,"h":1,"n":"Flintlock Musket"},{"c":2,"s":2,"id":10035,"u":"flintlock%20pistol_g%26g","p":151,"h":1,"n":"Flintlock Pistol"},{"c":2,"s":2,"id":10036,"u":"forked%20bipod_g%26g","p":150,"h":1,"n":"Forked Bipod"},{"c":2,"s":2,"id":10037,"u":"gnome%20amalgam%20musket_g%26g","p":158,"h":1,"n":"Gnome Amalgam Musket"},{"c":2,"s":2,"id":10038,"u":"gun%20sword_g%26g","p":158,"h":1,"n":"Gun Sword"},{"c":2,"s":2,"id":10039,"u":"hammer%20gun_g%26g","p":158,"h":1,"n":"Hammer Gun"},{"c":2,"s":2,"id":10040,"u":"hand%20cannon_g%26g","p":151,"h":1,"n":"Hand Cannon"},{"c":2,"s":2,"id":10041,"u":"harmona%20gun_g%26g","p":151,"h":1,"n":"Harmona Gun"},{"c":2,"s":2,"id":10042,"u":"heavy%20power%20suit_g%26g","p":16,"h":1,"n":"Heavy Power Suit"},{"c":2,"s":2,"id":10043,"u":"injection%20spear_g%26g","p":63,"h":1,"n":"Injection Spear"},{"c":2,"s":2,"id":10044,"u":"jezail_g%26g","p":151,"h":1,"n":"Jezail"},{"c":2,"s":2,"id":10045,"u":"knuckle%20duster_g%26g","p":150,"h":1,"n":"Knuckle Duster"},{"c":2,"s":2,"id":10046,"u":"long%20air%20repeater_g%26g","p":151,"h":1,"n":"Long Air Repeater"},{"c":2,"s":2,"id":10047,"u":"mace%20multipistol_g%26g","p":158,"h":1,"n":"Mace Multipistol"},{"c":2,"s":2,"id":10048,"u":"mithral%20tree_g%26g","p":151,"h":1,"n":"Mithral Tree"},{"c":2,"s":2,"id":10049,"u":"pantograph%20gauntlet_g%26g","p":63,"h":1,"n":"Pantograph Gauntlet"},{"c":2,"s":2,"id":10050,"u":"pepperbox_g%26g","p":151,"h":1,"n":"Pepperbox"},{"c":2,"s":2,"id":10051,"u":"piercing%20wind_g%26g","p":158,"h":1,"n":"Piercing Wind"},{"c":2,"s":2,"id":10052,"u":"power%20suit_g%26g","p":16,"h":1,"n":"Power Suit"},{"c":2,"s":2,"id":10053,"u":"rapier%20pistol_g%26g","p":158,"h":1,"n":"Rapier Pistol"},{"c":2,"s":2,"id":10054,"u":"reinforced%20stock_g%26g","p":150,"h":1,"n":"Reinforced Stock"},{"c":2,"s":2,"id":10055,"u":"repeating%20crossbow_g%26g","p":63,"h":1,"n":"Repeating Crossbow"},{"c":2,"s":2,"id":10056,"u":"repeating%20hand%20crossbow_g%26g","p":63,"h":1,"n":"Repeating Hand Crossbow"},{"c":2,"s":2,"id":10057,"u":"repeating%20heavy%20crossbow_g%26g","p":63,"h":1,"n":"Repeating Heavy Crossbow"},{"c":2,"s":2,"id":10058,"u":"slide%20pistol_g%26g","p":151,"h":1,"n":"Slide Pistol"},{"c":2,"s":2,"id":10059,"u":"spoon%20gun_g%26g","p":157,"h":1,"n":"Spoon Gun"},{"c":2,"s":2,"id":10060,"u":"subterfuge%20suit_g%26g","p":16,"h":1,"n":"Subterfuge Suit"},{"c":2,"s":2,"id":10061,"u":"three%20peaked%20tree_g%26g","p":158,"h":1,"n":"Three Peaked Tree"},{"c":2,"s":2,"id":10062,"u":"umbrella%20injector_g%26g","p":64,"h":1,"n":"Umbrella Injector"},{"c":2,"s":1,"id":10063,"u":"adze_loag","p":139,"h":1,"n":"Adze"},{"c":2,"s":1,"id":10064,"u":"buugeng_loag","p":139,"h":1,"n":"Buugeng"},{"c":2,"s":1,"id":10065,"u":"fangwire_loag","p":139,"h":1,"n":"Fangwire"},{"c":2,"s":1,"id":10066,"u":"hand%20adze_loag","p":139,"h":1,"n":"Hand Adze"},{"c":2,"s":1,"id":10067,"u":"rungu_loag","p":139,"h":1,"n":"Rungu"},{"c":2,"s":1,"id":10068,"u":"taw%20launcher_loag","p":139,"h":1,"n":"Taw Launcher"},{"c":2,"s":1,"id":10069,"u":"thunder%20sling_loag","p":139,"h":1,"n":"Thunder Sling"},{"c":2,"s":1,"id":10070,"u":"tricky%20pick_loag","p":139,"h":1,"n":"Tricky Pick"},{"c":2,"s":1,"id":10071,"u":"whip%20claw_loag","p":139,"h":1,"n":"Whip Claw"},{"c":2,"s":1,"id":10072,"u":"wish%20blade_loag","p":139,"h":1,"n":"Wish Blade"},{"c":2,"s":1,"id":10073,"u":"wish%20knife_loag","p":139,"h":1,"n":"Wish Knife"},{"c":2,"s":6,"id":10074,"u":"fauchard_locg","p":92,"h":1,"n":"Fauchard"},{"c":2,"s":6,"id":10075,"u":"hellknight%20plate_locg","p":80,"h":1,"n":"Hellknight Plate"},{"c":2,"s":6,"id":10076,"u":"scourge_locg","p":80,"h":1,"n":"Scourge"},{"c":2,"s":51,"id":10077,"u":"bladed%20scarf_logm","p":120,"h":1,"n":"Bladed Scarf"},{"c":2,"s":51,"id":10078,"u":"fighting%20fan_logm","p":120,"h":1,"n":"Fighting Fan"},{"c":2,"s":51,"id":10079,"u":"khopesh_logm","p":120,"h":1,"n":"Khopesh"},{"c":2,"s":51,"id":10080,"u":"machete_logm","p":120,"h":1,"n":"Machete"},{"c":2,"s":51,"id":10081,"u":"mambele_logm","p":120,"h":1,"n":"Mambele"},{"c":2,"s":51,"id":10082,"u":"meteor%20hammer_logm","p":120,"h":1,"n":"Meteor Hammer"},{"c":2,"s":51,"id":10083,"u":"naginata_logm","p":120,"h":1,"n":"Naginata"},{"c":2,"s":51,"id":10084,"u":"nine-ring%20sword_logm","p":120,"h":1,"n":"Nine-Ring Sword"},{"c":2,"s":51,"id":10085,"u":"polytool_logm","p":120,"h":1,"n":"Polytool"},{"c":2,"s":51,"id":10086,"u":"tekko-kagi_logm","p":120,"h":1,"n":"Tekko-Kagi"},{"c":2,"s":51,"id":10087,"u":"urumi_logm","p":120,"h":1,"n":"Urumi"},{"c":2,"s":51,"id":10088,"u":"war%20razor_logm","p":120,"h":1,"n":"War Razor"},{"c":2,"s":47,"id":10089,"u":"boarding%20pike_lopsg","p":81,"h":1,"n":"Boarding Pike"},{"c":2,"s":47,"id":10090,"u":"combat%20grapnel_lopsg","p":81,"h":1,"n":"Combat Grapnel"},{"c":2,"s":47,"id":10091,"u":"stiletto%20pen_lopsg","p":81,"h":1,"n":"Stiletto Pen"},{"c":2,"s":7,"id":10092,"u":"asp%20coil_lotgb","p":107,"h":1,"n":"Asp Coil"},{"c":2,"s":7,"id":10093,"u":"butchering%20axe_lotgb","p":107,"h":1,"n":"Butchering Axe"},{"c":2,"s":7,"id":10094,"u":"chakram_lotgb","p":107,"h":1,"n":"Chakram"},{"c":2,"s":7,"id":10095,"u":"dueling%20spear_lotgb","p":107,"h":1,"n":"Dueling Spear"},{"c":2,"s":7,"id":10096,"u":"elven%20branched%20spear_lotgb","p":107,"h":1,"n":"Elven Branched Spear"},{"c":2,"s":7,"id":10097,"u":"hongali%20hornbow_lotgb","p":107,"h":1,"n":"Hongali Hornbow"},{"c":2,"s":7,"id":10098,"u":"piranha%20kiss_lotgb","p":107,"h":1,"n":"Piranha Kiss"},{"c":2,"s":7,"id":10099,"u":"sickle-saber_lotgb","p":107,"h":1,"n":"Sickle-Saber"},{"c":2,"s":7,"id":10100,"u":"spiral%20rapier_lotgb","p":107,"h":1,"n":"Spiral Rapier"},{"c":2,"s":7,"id":10101,"u":"switchscythe_lotgb","p":107,"h":1,"n":"Switchscythe"},{"c":2,"s":7,"id":10102,"u":"throwing%20knife_lotgb","p":107,"h":1,"n":"Throwing Knife"},{"c":2,"s":7,"id":10103,"u":"thundermace_lotgb","p":107,"h":1,"n":"Thundermace"},{"c":2,"s":7,"id":10104,"u":"tonfa_lotgb","p":107,"h":1,"n":"Tonfa"},{"c":2,"s":7,"id":10105,"u":"tri-bladed%20katar_lotgb","p":107,"h":1,"n":"Tri-bladed Katar"},{"c":2,"s":48,"id":10106,"u":"aldori%20dueling%20sword_lowg","p":28,"h":1,"n":"Aldori Dueling Sword"},{"c":60,"s":5,"id":10107,"u":"blinded_crb","p":618,"h":1,"n":"Blinded"},{"c":60,"s":5,"id":10108,"u":"broken_crb","p":618,"h":1,"n":"Broken"},{"c":60,"s":5,"id":10109,"u":"clumsy_crb","p":618,"h":1,"n":"Clumsy"},{"c":60,"s":5,"id":10110,"u":"concealed_crb","p":618,"h":1,"n":"Concealed"},{"c":60,"s":5,"id":10111,"u":"confused_crb","p":618,"h":1,"n":"Confused"},{"c":60,"s":5,"id":10112,"u":"controlled_crb","p":618,"h":1,"n":"Controlled"},{"c":60,"s":5,"id":10113,"u":"dazzled_crb","p":619,"h":1,"n":"Dazzled"},{"c":60,"s":5,"id":10114,"u":"deafened_crb","p":619,"h":1,"n":"Deafened"},{"c":60,"s":5,"id":10115,"u":"doomed_crb","p":619,"h":1,"n":"Doomed"},{"c":60,"s":5,"id":10116,"u":"drained_crb","p":619,"h":1,"n":"Drained"},{"c":60,"s":5,"id":10117,"u":"dying_crb","p":619,"h":1,"n":"Dying"},{"c":60,"s":5,"id":10118,"u":"encumbered_crb","p":619,"h":1,"n":"Encumbered"},{"c":60,"s":5,"id":10119,"u":"enfeebled_crb","p":619,"h":1,"n":"Enfeebled"},{"c":60,"s":5,"id":10120,"u":"fascinated_crb","p":619,"h":1,"n":"Fascinated"},{"c":60,"s":5,"id":10121,"u":"fatigued_crb","p":620,"h":1,"n":"Fatigued"},{"c":60,"s":5,"id":10122,"u":"flat-footed_crb","p":620,"h":1,"n":"Flat-Footed"},{"c":60,"s":5,"id":10123,"u":"fleeing_crb","p":620,"h":1,"n":"Fleeing"},{"c":60,"s":5,"id":10124,"u":"friendly_crb","p":620,"h":1,"n":"Friendly"},{"c":60,"s":5,"id":10125,"u":"frightened_crb","p":620,"h":1,"n":"Frightened"},{"c":60,"s":5,"id":10126,"u":"grabbed_crb","p":620,"h":1,"n":"Grabbed"},{"c":60,"s":5,"id":10127,"u":"helpful_crb","p":620,"h":1,"n":"Helpful"},{"c":60,"s":5,"id":10128,"u":"hidden_crb","p":620,"h":1,"n":"Hidden"},{"c":60,"s":5,"id":10129,"u":"hostile_crb","p":620,"h":1,"n":"Hostile"},{"c":60,"s":5,"id":10130,"u":"immobilized_crb","p":620,"h":1,"n":"Immobilized"},{"c":60,"s":5,"id":10131,"u":"indifferent_crb","p":620,"h":1,"n":"Indifferent"},{"c":60,"s":5,"id":10132,"u":"invisible_crb","p":620,"h":1,"n":"Invisible"},{"c":60,"s":5,"id":10133,"u":"observed_crb","p":621,"h":1,"n":"Observed"},{"c":60,"s":5,"id":10134,"u":"paralyzed_crb","p":621,"h":1,"n":"Paralyzed"},{"c":60,"s":5,"id":10135,"u":"persistent%20damage_crb","p":621,"h":1,"n":"Persistent Damage"},{"c":60,"s":5,"id":10136,"u":"petrified_crb","p":621,"h":1,"n":"Petrified"},{"c":60,"s":5,"id":10137,"u":"prone_crb","p":621,"h":1,"n":"Prone"},{"c":60,"s":5,"id":10138,"u":"quickened_crb","p":622,"h":1,"n":"Quickened"},{"c":60,"s":5,"id":10139,"u":"restrained_crb","p":622,"h":1,"n":"Restrained"},{"c":60,"s":5,"id":10140,"u":"sickened_crb","p":622,"h":1,"n":"Sickened"},{"c":60,"s":5,"id":10141,"u":"slowed_crb","p":622,"h":1,"n":"Slowed"},{"c":60,"s":5,"id":10142,"u":"stunned_crb","p":622,"h":1,"n":"Stunned"},{"c":60,"s":5,"id":10143,"u":"stupefied_crb","p":622,"h":1,"n":"Stupefied"},{"c":60,"s":5,"id":10144,"u":"unconscious_crb","p":622,"h":1,"n":"Unconscious"},{"c":60,"s":5,"id":10145,"u":"undetected_crb","p":623,"h":1,"n":"Undetected"},{"c":60,"s":5,"id":10146,"u":"unfriendly_crb","p":623,"h":1,"n":"Unfriendly"},{"c":60,"s":5,"id":10147,"u":"unnoticed_crb","p":623,"h":1,"n":"Unnoticed"},{"c":60,"s":5,"id":10148,"u":"wounded_crb","p":623,"h":1,"n":"Wounded"},{"c":63,"s":9,"id":10149,"u":"ghast%20fever_bst","p":169,"h":1,"n":"Ghast Fever"},{"c":63,"s":9,"id":10150,"u":"ghoul%20fever_bst","p":168,"h":1,"n":"Ghoul Fever"},{"c":63,"s":12,"id":10151,"u":"blinding%20sickness_gmg","p":119,"h":1,"n":"Blinding Sickness"},{"c":63,"s":12,"id":10152,"u":"bog%20rot_gmg","p":118,"h":1,"n":"Bog Rot"},{"c":63,"s":12,"id":10153,"u":"bone%20chill_gmg","p":118,"h":1,"n":"Bone Chill"},{"c":63,"s":12,"id":10154,"u":"brain%20worms_gmg","p":119,"h":1,"n":"Brain Worms"},{"c":63,"s":12,"id":10155,"u":"bubonic%20plague_gmg","p":118,"h":1,"n":"Bubonic Plague"},{"c":63,"s":12,"id":10156,"u":"chocking%20death_gmg","p":118,"h":1,"n":"Chocking Death"},{"c":63,"s":12,"id":10157,"u":"malaria_gmg","p":118,"h":1,"n":"Malaria"},{"c":63,"s":12,"id":10158,"u":"nightmare%20fever_gmg","p":119,"h":1,"n":"Nightmare Fever"},{"c":63,"s":12,"id":10159,"u":"scarlet%20fever_gmg","p":118,"h":1,"n":"Scarlet Fever"},{"c":63,"s":12,"id":10160,"u":"scarlet%20leprosy_gmg","p":118,"h":1,"n":"Scarlet Leprosy"},{"c":63,"s":12,"id":10161,"u":"sewer%20haze_gmg","p":119,"h":1,"n":"Sewer Haze"},{"c":63,"s":12,"id":10162,"u":"tetanus_gmg","p":118,"h":1,"n":"Tetanus"},{"c":63,"s":12,"id":10163,"u":"tuberculosis_gmg","p":118,"h":1,"n":"Tuberculosis"},{"c":63,"s":49,"id":10164,"u":"soulforged%20corruption_som","p":234,"h":1,"n":"Soulforged Corruption"},{"c":62,"s":9,"id":10165,"u":"curse%20of%20the%20werecreature_bst","p":329,"h":1,"n":"Curse of the Werecreature"},{"c":62,"s":12,"id":10166,"u":"coward's%20roots_gmg","p":116,"h":1,"n":"Coward's Roots"},{"c":62,"s":12,"id":10167,"u":"curse%20of%20nightmares_gmg","p":116,"h":1,"n":"Curse of Nightmares"},{"c":62,"s":12,"id":10168,"u":"curse%20of%20slumber_gmg","p":117,"h":1,"n":"Curse of Slumber"},{"c":62,"s":12,"id":10169,"u":"curse%20of%20the%20ravenous_gmg","p":116,"h":1,"n":"Curse of the Ravenous"},{"c":62,"s":12,"id":10170,"u":"grave%20curse_gmg","p":117,"h":1,"n":"Grave Curse"},{"c":62,"s":12,"id":10171,"u":"oath%20of%20the%20flesh_gmg","p":117,"h":1,"n":"Oath of the Flesh"},{"c":62,"s":12,"id":10172,"u":"reviled%20of%20nature_gmg","p":117,"h":1,"n":"Reviled of Nature"},{"c":62,"s":12,"id":10173,"u":"reviling%20earth_gmg","p":117,"h":1,"n":"Reviling Earth"},{"c":62,"s":12,"id":10174,"u":"sellsword's%20folly_gmg","p":117,"h":1,"n":"Sellsword's Folly"},{"c":62,"s":12,"id":10175,"u":"slayer's%20haunt_gmg","p":116,"h":1,"n":"Slayer's Haunt"},{"c":62,"s":12,"id":10176,"u":"spirit%20anchor_gmg","p":117,"h":1,"n":"Spirit Anchor"},{"c":62,"s":12,"id":10177,"u":"sword%20of%20anathema_gmg","p":117,"h":1,"n":"Sword of Anathema"},{"c":62,"s":12,"id":10178,"u":"theft%20of%20thought_gmg","p":116,"h":1,"n":"Theft of Thought"},{"c":62,"s":12,"id":10179,"u":"thief's%20retribution_gmg","p":117,"h":1,"n":"Thief's Retribution"},{"c":62,"s":12,"id":10180,"u":"unending%20thirst_gmg","p":117,"h":1,"n":"Unending Thirst"},{"c":62,"s":12,"id":10181,"u":"wizard's%20ward_gmg","p":116,"h":1,"n":"Wizard's Ward"},{"c":10,"s":5,"id":10183,"u":"bookref-quick,0,young%20animal%20companions,0","p":214,"h":1,"n":"Young Animal Companions"},{"c":10,"s":5,"id":10184,"u":"bookref-quick,0,mature%20animal%20companions,0","p":214,"h":1,"n":"Mature Animal Companions"},{"c":10,"s":5,"id":10185,"u":"bookref-quick,0,nimble%20animal%20companions,0","p":214,"h":1,"n":"Nimble Animal Companions"},{"c":10,"s":5,"id":10186,"u":"bookref-quick,0,savage%20animal%20companions,0","p":214,"h":1,"n":"Savage Animal Companions"},{"c":10,"s":5,"id":10187,"u":"bookref-quick,0,specialized%20animal%20companions,0","p":217,"h":1,"n":"Specialized Animal Companions"},{"c":10,"s":5,"id":10188,"u":"bookref-quick,0,animal%20companions,0","p":214,"h":1,"n":"Animal Companions"},{"c":10,"s":5,"id":10189,"u":"bookref-quick,0,spellcasting%20archetypes,0","p":219,"h":1,"n":"Spellcasting Archetypes"},{"c":10,"s":5,"id":10190,"u":"bookref-quick,0,archetypes,0","p":219,"h":1,"n":"Archetypes"},{"c":10,"s":5,"id":10191,"u":"bookref-quick,0,character%20creation,0","p":19,"h":1,"n":"Character Creation"},{"c":10,"s":5,"id":10192,"u":"bookref-quick,0,characters%20with%20disabilities,0","p":487,"h":1,"n":"Characters With Disabilities"},{"c":10,"s":5,"id":10193,"u":"bookref-quick,0,familiars,0","p":217,"h":1,"n":"Familiars"},{"c":10,"s":5,"id":10194,"u":"bookref-quick,0,leveling%20up,0","p":31,"h":1,"n":"Leveling Up"},{"c":10,"s":5,"id":10196,"u":"bookref-quick,1,activating%20items,0","p":532,"h":1,"n":"Activating Items"},{"c":10,"s":5,"id":10197,"u":"bookref-quick,1,animals,0","p":294,"h":1,"n":"Animals"},{"c":10,"s":5,"id":10198,"u":"bookref-quick,1,armor,0","p":274,"h":1,"n":"Armor"},{"c":10,"s":5,"id":10199,"u":"bookref-quick,1,carrying%20and%20using%20items,0","p":271,"h":1,"n":"Carrying and Using Items"},{"c":10,"s":5,"id":10200,"u":"bookref-quick,1,coins%20and%20currency,0","p":271,"h":1,"n":"Coins and Currency"},{"c":10,"s":5,"id":10201,"u":"bookref-quick,1,constant%20abilities,0","p":531,"h":1,"n":"Constant Abilities"},{"c":10,"s":5,"id":10202,"u":"bookref-quick,1,formulas,0","p":293,"h":1,"n":"Formulas"},{"c":10,"s":5,"id":10203,"u":"bookref-quick,1,investing%20magic%20items,0","p":531,"h":1,"n":"Investing Magic Items"},{"c":10,"s":5,"id":10204,"u":"bookref-quick,1,item%20damage,0","p":272,"h":1,"n":"Item Damage"},{"c":10,"s":5,"id":10205,"u":"bookref-quick,1,item%20level,0","p":271,"h":1,"n":"Item Level"},{"c":10,"s":5,"id":10206,"u":"bookref-quick,1,items%20and%20sizes,0","p":295,"h":1,"n":"Items and Sizes"},{"c":10,"s":5,"id":10207,"u":"bookref-quick,1,price,0","p":271,"h":1,"n":"Price"},{"c":10,"s":5,"id":10208,"u":"bookref-quick,1,transferring%20runes,0","p":580,"h":1,"n":"Transferring Runes"},{"c":10,"s":5,"id":10209,"u":"bookref-quick,1,runes,0","p":580,"h":1,"n":"Runes"},{"c":10,"s":5,"id":10210,"u":"bookref-quick,1,crafting%20a%20scroll,0","p":565,"h":1,"n":"Crafting a Scroll"},{"c":10,"s":5,"id":10211,"u":"bookref-quick,1,scrolls,0","p":564,"h":1,"n":"Scrolls"},{"c":10,"s":5,"id":10212,"u":"bookref-quick,1,services,0","p":294,"h":1,"n":"Services"},{"c":10,"s":5,"id":10213,"u":"bookref-quick,1,shields,0","p":277,"h":1,"n":"Shields"},{"c":10,"s":5,"id":10214,"u":"bookref-quick,1,shoddy%20items,0","p":273,"h":1,"n":"Shoddy Items"},{"c":10,"s":5,"id":10215,"u":"bookref-quick,1,staves,0","p":592,"h":1,"n":"Staves"},{"c":10,"s":5,"id":10216,"u":"bookref-quick,1,wands,0","p":597,"h":1,"n":"Wands"},{"c":10,"s":5,"id":10217,"u":"bookref-quick,1,reload,0","p":279,"h":1,"n":"Reload"},{"c":10,"s":5,"id":10218,"u":"bookref-quick,1,weapons,0","p":278,"h":1,"n":"Weapons"},{"c":10,"s":5,"id":10219,"u":"bookref-quick,1,wearing%20tools,0","p":287,"h":1,"n":"Wearing Tools"},{"c":10,"s":5,"id":10221,"u":"bookref-quick,2,cantrips,0","p":300,"h":1,"n":"Cantrips"},{"c":10,"s":5,"id":10222,"u":"bookref-quick,2,casting%20spells,0","p":302,"h":1,"n":"Casting Spells"},{"c":10,"s":5,"id":10223,"u":"bookref-quick,2,disbelieving%20illusions,0","p":298,"h":1,"n":"Disbelieving Illusions"},{"c":10,"s":5,"id":10224,"u":"bookref-quick,2,durations,0","p":304,"h":1,"n":"Durations"},{"c":10,"s":5,"id":10225,"u":"bookref-quick,2,focus%20spells,0","p":300,"h":1,"n":"Focus Spells"},{"c":10,"s":5,"id":10226,"u":"bookref-quick,2,hostile%20actions,0","p":305,"h":1,"n":"Hostile Actions"},{"c":10,"s":5,"id":10227,"u":"bookref-quick,2,identifying%20spells,0","p":305,"h":1,"n":"Identifying Spells"},{"c":10,"s":5,"id":10228,"u":"bookref-quick,2,innate%20spells,0","p":302,"h":1,"n":"Innate Spells"},{"c":10,"s":5,"id":10229,"u":"bookref-quick,2,ranges%2c%20areas%2c%20and%20targets,0","p":304,"h":1,"n":"Ranges, Areas, and Targets"},{"c":10,"s":5,"id":10230,"u":"bookref-quick,2,reading%20spells,0","p":306,"h":1,"n":"Reading Spells"},{"c":10,"s":5,"id":10231,"u":"bookref-quick,2,casting%20rituals,0","p":408,"h":1,"n":"Casting Rituals"},{"c":10,"s":5,"id":10232,"u":"bookref-quick,2,secondary%20checks,0","p":408,"h":1,"n":"Secondary Checks"},{"c":10,"s":5,"id":10233,"u":"bookref-quick,2,effect,0","p":409,"h":1,"n":"Effect"},{"c":10,"s":5,"id":10234,"u":"bookref-quick,2,rituals,0","p":408,"h":1,"n":"Rituals"},{"c":10,"s":5,"id":10235,"u":"bookref-quick,2,saving%20throws,0","p":305,"h":1,"n":"Saving Throws"},{"c":10,"s":5,"id":10236,"u":"bookref-quick,2,setting%20triggers,0","p":305,"h":1,"n":"Setting Triggers"},{"c":10,"s":5,"id":10237,"u":"bookref-quick,2,spell%20attacks,0","p":305,"h":1,"n":"Spell Attacks"},{"c":10,"s":5,"id":10238,"u":"bookref-quick,2,spell%20slots,0","p":298,"h":1,"n":"Spell Slots"},{"c":10,"s":5,"id":10239,"u":"bookref-quick,2,walls,0","p":306,"h":1,"n":"Walls"},{"c":10,"s":5,"id":10241,"u":"bookref-quick,3,actions,0","p":461,"h":1,"n":"Actions"},{"c":10,"s":5,"id":10242,"u":"bookref-quick,3,afflictions,0","p":457,"h":1,"n":"Afflictions"},{"c":10,"s":5,"id":10243,"u":"bookref-quick,3,checks,0","p":443,"h":1,"n":"Checks"},{"c":10,"s":5,"id":10244,"u":"bookref-quick,3,concealment%20and%20invisibility,0","p":467,"h":1,"n":"Concealment and Invisibility"},{"c":10,"s":5,"id":10245,"u":"bookref-quick,3,condition%20values,0","p":618,"h":1,"n":"Condition Values"},{"c":10,"s":5,"id":10246,"u":"bookref-quick,3,conditions,0","p":453,"h":1,"n":"Conditions"},{"c":10,"s":5,"id":10247,"u":"bookref-quick,3,counteracting,0","p":458,"h":1,"n":"Counteracting"},{"c":10,"s":5,"id":10248,"u":"bookref-quick,3,cover,0","p":477,"h":1,"n":"Cover"},{"c":10,"s":5,"id":10249,"u":"bookref-quick,3,damage,0","p":450,"h":1,"n":"Damage"},{"c":10,"s":5,"id":10250,"u":"bookref-quick,3,downtime%20mode,0","p":481,"h":1,"n":"Downtime Mode"},{"c":10,"s":5,"id":10251,"u":"bookref-quick,3,areas,0","p":456,"h":1,"n":"Areas"},{"c":10,"s":5,"id":10252,"u":"bookref-quick,3,line%20of%20effect,0","p":457,"h":1,"n":"Line of Effect"},{"c":10,"s":5,"id":10253,"u":"bookref-quick,3,line%20of%20sight,0","p":457,"h":1,"n":"Line of Sight"},{"c":10,"s":5,"id":10254,"u":"bookref-quick,3,effects,0","p":453,"h":1,"n":"Effects"},{"c":10,"s":5,"id":10255,"u":"bookref-quick,3,forced%20movement,0","p":475,"h":1,"n":"Forced Movement"},{"c":10,"s":5,"id":10256,"u":"bookref-quick,3,terrain,0","p":475,"h":1,"n":"Terrain"},{"c":10,"s":5,"id":10257,"u":"bookref-quick,3,drowning%20and%20suffocating,0","p":478,"h":1,"n":"Drowning and Suffocating"},{"c":10,"s":5,"id":10258,"u":"bookref-quick,3,aquatic%20combat,0","p":478,"h":1,"n":"Aquatic Combat"},{"c":10,"s":5,"id":10259,"u":"bookref-quick,3,encounter%20mode,0","p":468,"h":1,"n":"Encounter Mode"},{"c":10,"s":5,"id":10260,"u":"bookref-quick,3,rest%20and%20daily%20preparations,0","p":480,"h":1,"n":"Rest and Daily Preparations"},{"c":10,"s":5,"id":10261,"u":"bookref-quick,3,exploration%20mode,0","p":479,"h":1,"n":"Exploration Mode"},{"c":10,"s":5,"id":10262,"u":"bookref-quick,3,flanking,0","p":476,"h":1,"n":"Flanking"},{"c":10,"s":5,"id":10263,"u":"bookref-quick,3,game%20conventions,0","p":444,"h":1,"n":"Game Conventions"},{"c":10,"s":5,"id":10264,"u":"bookref-quick,3,hero%20points,0","p":467,"h":1,"n":"Hero Points"},{"c":10,"s":5,"id":10265,"u":"bookref-quick,3,hit%20points%2c%20healing%2c%20and%20dying,0","p":459,"h":1,"n":"Hit Points, Healing, and Dying"},{"c":10,"s":5,"id":10266,"u":"bookref-quick,3,making%20choices,0","p":443,"h":1,"n":"Making Choices"},{"c":10,"s":5,"id":10267,"u":"bookref-quick,3,falling,0","p":463,"h":1,"n":"Falling"},{"c":10,"s":5,"id":10268,"u":"bookref-quick,3,movement,0","p":463,"h":1,"n":"Movement"},{"c":10,"s":5,"id":10269,"u":"bookref-quick,3,overriding%20conditions,0","p":618,"h":1,"n":"Overriding Conditions"},{"c":10,"s":5,"id":10270,"u":"bookref-quick,3,perception,0","p":464,"h":1,"n":"Perception"},{"c":10,"s":5,"id":10271,"u":"bookref-quick,3,special%20checks,0","p":450,"h":1,"n":"Special Checks"},{"c":10,"s":5,"id":10272,"u":"bookref-quick,3,spell%20attack%20rolls,0","p":447,"h":1,"n":"Spell Attack Rolls"},{"c":10,"s":5,"id":10273,"u":"bookref-quick,3,specific%20checks,0","p":446,"h":1,"n":"Specific Checks"},{"c":10,"s":5,"id":10275,"u":"bookref-quick,4,simple%20dcs,0","p":503,"h":1,"n":"Simple DCs"},{"c":10,"s":5,"id":10276,"u":"bookref-quick,4,level-based%20dcs,0","p":503,"h":1,"n":"Level-Based DCs"},{"c":10,"s":5,"id":10277,"u":"bookref-quick,4,adjusting%20difficulty,0","p":503,"h":1,"n":"Adjusting Difficulty"},{"c":10,"s":5,"id":10278,"u":"bookref-quick,4,minimum%20proficiency,0","p":504,"h":1,"n":"Minimum Proficiency"},{"c":10,"s":5,"id":10279,"u":"bookref-quick,4,difficulty%20classes,0","p":503,"h":1,"n":"Difficulty Classes"},{"c":10,"s":5,"id":10280,"u":"bookref-quick,4,difficulty%20classes,0","p":503,"h":1,"n":"DCs"},{"c":10,"s":12,"id":10281,"u":"bookref-quick,4,drugs,0","p":120,"h":1,"n":"Drugs"},{"c":10,"s":5,"id":10282,"u":"bookref-quick,4,crowds,0","p":514,"h":1,"n":"Crowds"},{"c":10,"s":5,"id":10283,"u":"bookref-quick,4,environment,0","p":512,"h":1,"n":"Environment"},{"c":10,"s":5,"id":10284,"u":"bookref-quick,4,hazards,0","p":520,"h":1,"n":"Hazards"},{"c":10,"s":5,"id":10285,"u":"bookref-quick,4,planning%20a%20campaign,0","p":483,"h":1,"n":"Planning a Campaign"},{"c":10,"s":5,"id":10286,"u":"bookref-quick,4,building%20encounters,0","p":488,"h":1,"n":"Building Encounters"},{"c":10,"s":5,"id":10287,"u":"bookref-quick,4,preparing%20an%20adventure,0","p":486,"h":1,"n":"Preparing an Adventure"},{"c":10,"s":5,"id":10288,"u":"bookref-quick,4,rewards,0","p":507,"h":1,"n":"Rewards"},{"c":10,"s":5,"id":10289,"u":"bookref-quick,4,running%20modes%20of%20play,0","p":493,"h":1,"n":"Running Modes of Play"},{"c":10,"s":5,"id":10290,"u":"bookref-quick,4,running%20a%20game%20session,0","p":489,"h":1,"n":"Running a Game Session"},{"c":11,"s":12,"id":10291,"u":"alternative%20scores_gmg","p":183,"h":1,"n":"Alternative Scores"},{"c":11,"s":12,"id":10292,"u":"ancestry%20paragon_gmg","p":194,"h":1,"n":"Ancestry Paragon"},{"c":11,"s":12,"id":10293,"u":"automatic%20bonus%20progression_gmg","p":196,"h":1,"n":"Automatic Bonus Progression"},{"c":11,"s":12,"id":10294,"u":"chases_gmg","p":156,"h":1,"n":"Chases"},{"c":11,"s":12,"id":10295,"u":"deep%20backgrounds_gmg","p":186,"h":1,"n":"Deep Backgrounds"},{"c":11,"s":12,"id":10296,"u":"dual-class%20pcs_gmg","p":192,"h":1,"n":"Dual-Class PCs"},{"c":11,"s":12,"id":10297,"u":"duels_gmg","p":166,"h":1,"n":"Duels"},{"c":11,"s":12,"id":10298,"u":"extreme%20good%20and%20evil_gmg","p":184,"h":1,"n":"Extreme Good and Evil"},{"c":11,"s":12,"id":10299,"u":"free%20archetype_gmg","p":194,"h":1,"n":"Free Archetype"},{"c":11,"s":12,"id":10300,"u":"gradual%20ability%20boosts_gmg","p":182,"h":1,"n":"Gradual Ability Boosts"},{"c":11,"s":12,"id":10301,"u":"hexploration_gmg","p":170,"h":1,"n":"Hexploration"},{"c":11,"s":12,"id":10302,"u":"high-quality_gmg","p":197,"h":1,"n":"High-Quality"},{"c":11,"s":12,"id":10303,"u":"incremental%20alignment_gmg","p":184,"h":1,"n":"Incremental Alignment"},{"c":11,"s":12,"id":10304,"u":"infiltration_gmg","p":160,"h":1,"n":"Infiltration"},{"c":11,"s":12,"id":10305,"u":"influence_gmg","p":151,"h":1,"n":"Influence"},{"c":11,"s":12,"id":10306,"u":"leadership_gmg","p":168,"h":1,"n":"Leadership"},{"c":11,"s":12,"id":10307,"u":"level%200%20characters_gmg","p":195,"h":1,"n":"Level 0 Characters"},{"c":11,"s":12,"id":10308,"u":"moral%20intentions_gmg","p":185,"h":1,"n":"Moral Intentions"},{"c":11,"s":12,"id":10309,"u":"no%20alignment_gmg","p":184,"h":1,"n":"No Alignment"},{"c":11,"s":12,"id":10310,"u":"point%20buy_gmg","p":182,"h":1,"n":"Point Buy"},{"c":11,"s":12,"id":10311,"u":"proficiency%20without%20level_gmg","p":198,"h":1,"n":"Proficiency Without Level"},{"c":11,"s":12,"id":10312,"u":"reputation_gmg","p":164,"h":1,"n":"Reputation"},{"c":11,"s":12,"id":10313,"u":"research_gmg","p":154,"h":1,"n":"Research"},{"c":11,"s":12,"id":10314,"u":"simplified%20ancestries_gmg","p":194,"h":1,"n":"Simplified Ancestries"},{"c":11,"s":12,"id":10315,"u":"simplified%20skill%20feats_gmg","p":194,"h":1,"n":"Simplified Skill Feats"},{"c":11,"s":12,"id":10316,"u":"skill%20points_gmg","p":199,"h":1,"n":"Skill Points"},{"c":11,"s":12,"id":10317,"u":"stamina_gmg","p":200,"h":1,"n":"Stamina"},{"c":11,"s":12,"id":10318,"u":"vehicles_gmg","p":174,"h":1,"n":"Vehicles"},{"c":11,"s":12,"id":10319,"u":"victory%20points_gmg","p":148,"h":1,"n":"Victory Points"},{"c":11,"s":49,"id":10320,"u":"cathartic%20magic_som","p":194,"h":1,"n":"Cathartic Magic"},{"c":11,"s":49,"id":10321,"u":"elementalism_som","p":198,"h":1,"n":"Elementalism"},{"c":11,"s":49,"id":10322,"u":"flexible%20preparation_som","p":208,"h":1,"n":"Flexible Preparation"},{"c":11,"s":49,"id":10323,"u":"geomancy_som","p":210,"h":1,"n":"Geomancy"},{"c":11,"s":49,"id":10324,"u":"ley%20lines_som","p":214,"h":1,"n":"Ley Lines"},{"c":11,"s":49,"id":10325,"u":"pervasive%20magic_som","p":218,"h":1,"n":"Pervasive Magic"},{"c":11,"s":49,"id":10326,"u":"shadow%20magic_som","p":224,"h":1,"n":"Shadow Magic"},{"c":11,"s":49,"id":10327,"u":"soul%20seeds_som","p":230,"h":1,"n":"Soul Seeds"},{"c":11,"s":49,"id":10328,"u":"soulforged%20armaments_som","p":232,"h":1,"n":"Soulforged Armaments"},{"c":11,"s":49,"id":10329,"u":"thassilonian%20rune%20magic_som","p":238,"h":1,"n":"Thassilonian Rune Magic"},{"c":11,"s":49,"id":10330,"u":"true%20names_som","p":244,"h":1,"n":"True Names"},{"c":11,"s":49,"id":10331,"u":"wellspring%20magic_som","p":248,"h":1,"n":"Wellspring Magic"},{"c":11,"s":39,"id":10332,"u":"life%20in%20the%20academy_sot1","p":61,"h":1,"n":"Life in the Academy"},{"c":15,"s":5,"id":10375,"u":"crb","n":"CRB: Core Rulebook"},{"c":15,"s":12,"id":10376,"u":"gmg","n":"GMG: Gamemastery Guide"},{"c":15,"s":48,"id":10377,"u":"lowg","n":"LOWG: Lost Omens: World Guide"},{"c":15,"s":49,"id":10378,"u":"som","n":"SoM: Secrets of Magic"},{"c":9,"s":9,"id":10379,"u":"gogunta_bst","p":45,"h":1,"n":"Gogunta"},{"c":9,"s":9,"id":10380,"u":"gogunta_bst","p":45,"h":1,"n":"Song of the Swamp"},{"c":9,"s":9,"id":10381,"u":"treerazer_bst","p":312,"h":1,"n":"Treerazer"},{"c":9,"s":9,"id":10382,"u":"treerazer_bst","p":312,"h":1,"n":"Lord of the Blasted Tarn"},{"c":9,"s":10,"id":10383,"u":"ydersius_bst2","p":237,"h":1,"n":"Ydersius"},{"c":9,"s":5,"id":10384,"u":"abadar_crb","p":437,"h":1,"n":"Abadar"},{"c":9,"s":5,"id":10385,"u":"abadar_crb","p":437,"h":1,"n":"The Master of the first Vault"},{"c":9,"s":5,"id":10386,"u":"asmodeus_crb","p":437,"h":1,"n":"Asmodeus"},{"c":9,"s":5,"id":10387,"u":"asmodeus_crb","p":437,"h":1,"n":"The Prince of Darkness"},{"c":9,"s":5,"id":10388,"u":"atheists%20and%20free%20agents_crb","p":440,"h":1,"n":"Atheists and Free Agents"},{"c":9,"s":5,"id":10389,"u":"atheists%20and%20free%20agents_crb","p":440,"h":1,"n":"Atheism"},{"c":9,"s":5,"id":10390,"u":"calistria_crb","p":437,"h":1,"n":"Calistria"},{"c":9,"s":5,"id":10391,"u":"calistria_crb","p":437,"h":1,"n":"The Savored Sting"},{"c":9,"s":5,"id":10392,"u":"cayden%20cailean_crb","p":437,"h":1,"n":"Cayden Cailean"},{"c":9,"s":5,"id":10393,"u":"cayden%20cailean_crb","p":437,"h":1,"n":"The Drunken Hero"},{"c":9,"s":5,"id":10394,"u":"cayden%20cailean_crb","p":437,"h":1,"n":"The Accidental God"},{"c":9,"s":5,"id":10395,"u":"desna_crb","p":438,"h":1,"n":"Desna"},{"c":9,"s":5,"id":10396,"u":"desna_crb","p":438,"h":1,"n":"The Song of the Spheres"},{"c":9,"s":5,"id":10397,"u":"erastil_crb","p":438,"h":1,"n":"Erastil"},{"c":9,"s":5,"id":10398,"u":"erastil_crb","p":438,"h":1,"n":"Old Deadeye"},{"c":9,"s":5,"id":10399,"u":"gorum_crb","p":438,"h":1,"n":"Gorum"},{"c":9,"s":5,"id":10400,"u":"gorum_crb","p":438,"h":1,"n":"Our Lord in Iron"},{"c":9,"s":5,"id":10401,"u":"gozreh_crb","p":438,"h":1,"n":"Gozreh"},{"c":9,"s":5,"id":10402,"u":"gozreh_crb","p":438,"h":1,"n":"The Wind and the waves"},{"c":9,"s":5,"id":10403,"u":"green%20faith_crb","p":440,"h":1,"n":"Green Faith"},{"c":9,"s":5,"id":10404,"u":"iomedae_crb","p":438,"h":1,"n":"Iomedae"},{"c":9,"s":5,"id":10405,"u":"iomedae_crb","p":438,"h":1,"n":"The Inheritor"},{"c":9,"s":5,"id":10406,"u":"irori_crb","p":438,"h":1,"n":"Irori"},{"c":9,"s":5,"id":10407,"u":"irori_crb","p":438,"h":1,"n":"Master of Masters"},{"c":9,"s":5,"id":10408,"u":"lamashtu_crb","p":439,"h":1,"n":"Lamashtu"},{"c":9,"s":5,"id":10409,"u":"lamashtu_crb","p":439,"h":1,"n":"Mother of Monsters"},{"c":9,"s":5,"id":10410,"u":"nethys_crb","p":439,"h":1,"n":"Nethys"},{"c":9,"s":5,"id":10411,"u":"nethys_crb","p":439,"h":1,"n":"The All-Seeing Eye"},{"c":9,"s":5,"id":10412,"u":"norgorber_crb","p":439,"h":1,"n":"Norgorber"},{"c":9,"s":5,"id":10413,"u":"norgorber_crb","p":439,"h":1,"n":"Blackfingers"},{"c":9,"s":5,"id":10414,"u":"norgorber_crb","p":439,"h":1,"n":"Father Skinsaw"},{"c":9,"s":5,"id":10415,"u":"norgorber_crb","p":439,"h":1,"n":"Gray Master"},{"c":9,"s":5,"id":10416,"u":"norgorber_crb","p":439,"h":1,"n":"Reaper of Reputation"},{"c":9,"s":5,"id":10417,"u":"pharasma_crb","p":439,"h":1,"n":"Pharasma"},{"c":9,"s":5,"id":10418,"u":"pharasma_crb","p":439,"h":1,"n":"Lady of Graves"},{"c":9,"s":5,"id":10419,"u":"prophecies%20of%20kalistrade_crb","p":440,"h":1,"n":"Prophecies of Kalistrade"},{"c":9,"s":5,"id":10420,"u":"rovagug_crb","p":439,"h":1,"n":"Rovagug"},{"c":9,"s":5,"id":10421,"u":"rovagug_crb","p":439,"h":1,"n":"Rough Beast"},{"c":9,"s":5,"id":10422,"u":"sarenrae_crb","p":439,"h":1,"n":"Sarenrae"},{"c":9,"s":5,"id":10423,"u":"sarenrae_crb","p":439,"h":1,"n":"Dawnflower"},{"c":9,"s":5,"id":10424,"u":"shelyn_crb","p":440,"h":1,"n":"Shelyn"},{"c":9,"s":5,"id":10425,"u":"shelyn_crb","p":440,"h":1,"n":"The Eternal Rose"},{"c":9,"s":5,"id":10426,"u":"torag_crb","p":440,"h":1,"n":"Torag"},{"c":9,"s":5,"id":10427,"u":"torag_crb","p":440,"h":1,"n":"Father of Creation"},{"c":9,"s":5,"id":10428,"u":"urgathoa_crb","p":440,"h":1,"n":"Urgathoa"},{"c":9,"s":5,"id":10429,"u":"urgathoa_crb","p":440,"h":1,"n":"Pallid Princess"},{"c":9,"s":5,"id":10430,"u":"whispering%20way_crb","p":441,"h":1,"n":"Whispering Way"},{"c":9,"s":5,"id":10431,"u":"zon-kuthon_crb","p":440,"h":1,"n":"Zon-Kuthon"},{"c":9,"s":5,"id":10432,"u":"zon-kuthon_crb","p":440,"h":1,"n":"Midnight Lord"},{"c":9,"s":44,"id":10433,"u":"cosmic%20caravan_av0","p":5,"h":1,"n":"Cosmic Caravan"},{"c":9,"s":8,"id":10434,"u":"zevgavizeb_ec3","p":67,"h":1,"n":"Zevgavizeb"},{"c":9,"s":8,"id":10435,"u":"zevgavizeb_ec3","p":67,"h":1,"n":"The Beast of Gluttondark"},{"c":9,"s":51,"id":10436,"u":"abraxas_logm","p":124,"h":1,"n":"Abraxas"},{"c":9,"s":51,"id":10437,"u":"abraxas_logm","p":124,"h":1,"n":"Master of the Final Incantation"},{"c":9,"s":51,"id":10438,"u":"achaekek_logm","p":52,"h":1,"n":"Achaekek"},{"c":9,"s":51,"id":10439,"u":"achaekek_logm","p":52,"h":1,"n":"He Who Walks In Blood"},{"c":9,"s":51,"id":10440,"u":"alglenweis_logm","p":132,"h":1,"n":"Alglenweis"},{"c":9,"s":51,"id":10441,"u":"alglenweis_logm","p":132,"h":1,"n":"Princess of the Rime"},{"c":9,"s":51,"id":10442,"u":"alseta_logm","p":53,"h":1,"n":"Alseta"},{"c":9,"s":51,"id":10443,"u":"alseta_logm","p":53,"h":1,"n":"The Welcomer"},{"c":9,"s":51,"id":10444,"u":"andoletta_logm","p":128,"h":1,"n":"Andoletta"},{"c":9,"s":51,"id":10445,"u":"andoletta_logm","p":128,"h":1,"n":"Grandmother Crow"},{"c":9,"s":51,"id":10446,"u":"angazhan_logm","p":124,"h":1,"n":"Angazhan"},{"c":9,"s":51,"id":10447,"u":"angazhan_logm","p":124,"h":1,"n":"The Ravenous King"},{"c":9,"s":51,"id":10448,"u":"angradd_logm","p":126,"h":1,"n":"Angradd"},{"c":9,"s":51,"id":10449,"u":"angradd_logm","p":126,"h":1,"n":"The Forge-Fire"},{"c":9,"s":51,"id":10450,"u":"anubis_logm","p":124,"h":1,"n":"Anubis"},{"c":9,"s":51,"id":10451,"u":"anubis_logm","p":124,"h":1,"n":"Guardian of the Tomb"},{"c":9,"s":51,"id":10452,"u":"apollyon_logm","p":128,"h":1,"n":"Apollyon"},{"c":9,"s":51,"id":10453,"u":"apollyon_logm","p":128,"h":1,"n":"Prince of Locusts"},{"c":9,"s":51,"id":10454,"u":"apsu_logm","p":130,"h":1,"n":"Apsu"},{"c":9,"s":51,"id":10455,"u":"apsu_logm","p":130,"h":1,"n":"The Waybringer"},{"c":9,"s":51,"id":10456,"u":"arazni_logm","p":54,"h":1,"n":"Arazni"},{"c":9,"s":51,"id":10457,"u":"arazni_logm","p":54,"h":1,"n":"The Unyielding"},{"c":9,"s":51,"id":10458,"u":"ardad%20lili_logm","p":75,"h":1,"n":"Ardad Lili"},{"c":9,"s":51,"id":10459,"u":"ardad%20lili_logm","p":75,"h":1,"n":"The End of Innocence"},{"c":9,"s":51,"id":10460,"u":"arshea_logm","p":128,"h":1,"n":"Arshea"},{"c":9,"s":51,"id":10461,"u":"arshea_logm","p":128,"h":1,"n":"Spirit of Abandon"},{"c":9,"s":51,"id":10462,"u":"arundhat_logm","p":132,"h":1,"n":"Arundhat"},{"c":9,"s":51,"id":10463,"u":"arundhat_logm","p":132,"h":1,"n":"The Sacred Perfume"},{"c":9,"s":51,"id":10464,"u":"ashava_logm","p":128,"h":1,"n":"Ashava"},{"c":9,"s":51,"id":10465,"u":"ashava_logm","p":128,"h":1,"n":"The True Spark"},{"c":9,"s":51,"id":10466,"u":"ashukharma_logm","p":132,"h":1,"n":"Ashukharma"},{"c":9,"s":51,"id":10467,"u":"ashukharma_logm","p":132,"h":1,"n":"The Divine Divide"},{"c":9,"s":51,"id":10468,"u":"atreia_logm","p":126,"h":1,"n":"Atreia"},{"c":9,"s":51,"id":10469,"u":"atreia_logm","p":126,"h":1,"n":"The Lambent King"},{"c":9,"s":51,"id":10470,"u":"ayrzul_logm","p":126,"h":1,"n":"Ayrzul"},{"c":9,"s":51,"id":10471,"u":"ayrzul_logm","p":126,"h":1,"n":"The Fossilized King"},{"c":9,"s":51,"id":10472,"u":"azathoth_logm","p":130,"h":1,"n":"Azathoth"},{"c":9,"s":51,"id":10473,"u":"azathoth_logm","p":130,"h":1,"n":"The Primal Chaos"},{"c":9,"s":51,"id":10474,"u":"baalzebul_logm","p":74,"h":1,"n":"Baalzebul"},{"c":9,"s":51,"id":10475,"u":"baalzebul_logm","p":74,"h":1,"n":"Lord of Flies"},{"c":9,"s":51,"id":10476,"u":"baphomet_logm","p":76,"h":1,"n":"Baphomet"},{"c":9,"s":51,"id":10477,"u":"baphomet_logm","p":76,"h":1,"n":"Lord of the Labyrinth"},{"c":9,"s":51,"id":10478,"u":"barbatos_logm","p":74,"h":1,"n":"Barbatos"},{"c":9,"s":51,"id":10479,"u":"barbatos_logm","p":74,"h":1,"n":"The Bearded Lord"},{"c":9,"s":51,"id":10480,"u":"barzahk_logm","p":130,"h":1,"n":"Barzahk"},{"c":9,"s":51,"id":10481,"u":"barzahk_logm","p":130,"h":1,"n":"The Passage"},{"c":9,"s":51,"id":10482,"u":"bastet_logm","p":124,"h":1,"n":"Bastet"},{"c":9,"s":51,"id":10483,"u":"bastet_logm","p":124,"h":1,"n":"The Sly Enchantress"},{"c":9,"s":51,"id":10484,"u":"belial_logm","p":74,"h":1,"n":"Belial"},{"c":9,"s":51,"id":10485,"u":"belial_logm","p":74,"h":1,"n":"The Pale Kiss"},{"c":9,"s":51,"id":10486,"u":"bes_logm","p":124,"h":1,"n":"Bes"},{"c":9,"s":51,"id":10487,"u":"bes_logm","p":124,"h":1,"n":"The Guardian Fool"},{"c":9,"s":51,"id":10488,"u":"besmara_logm","p":55,"h":1,"n":"Besmara"},{"c":9,"s":51,"id":10489,"u":"besmara_logm","p":55,"h":1,"n":"The Pirate Queen"},{"c":9,"s":51,"id":10490,"u":"black%20butterfly_logm","p":128,"h":1,"n":"Black Butterfly"},{"c":9,"s":51,"id":10491,"u":"black%20butterfly_logm","p":128,"h":1,"n":"The Silence Between"},{"c":9,"s":51,"id":10492,"u":"bolka_logm","p":126,"h":1,"n":"Bolka"},{"c":9,"s":51,"id":10493,"u":"bolka_logm","p":126,"h":1,"n":"The Golden Gift"},{"c":9,"s":51,"id":10494,"u":"brigh_logm","p":56,"h":1,"n":"Brigh"},{"c":9,"s":51,"id":10495,"u":"brigh_logm","p":56,"h":1,"n":"The Whisper In Bronze"},{"c":9,"s":51,"id":10496,"u":"casandalee_logm","p":57,"h":1,"n":"Casandalee"},{"c":9,"s":51,"id":10497,"u":"casandalee_logm","p":57,"h":1,"n":"The Iron Goddess"},{"c":9,"s":51,"id":10498,"u":"cernunnos_logm","p":128,"h":1,"n":"Cernunnos"},{"c":9,"s":51,"id":10499,"u":"cernunnos_logm","p":128,"h":1,"n":"The Horned Lord"},{"c":9,"s":51,"id":10500,"u":"chaldira_logm","p":58,"h":1,"n":"Chaldira"},{"c":9,"s":51,"id":10501,"u":"chaldira_logm","p":58,"h":1,"n":"The Calamitous Turn"},{"c":9,"s":51,"id":10502,"u":"chamidu_logm","p":132,"h":1,"n":"Chamidu"},{"c":9,"s":51,"id":10503,"u":"chamidu_logm","p":132,"h":1,"n":"The Roar of the Storm"},{"c":9,"s":51,"id":10504,"u":"charon_logm","p":128,"h":1,"n":"Charon"},{"c":9,"s":51,"id":10505,"u":"charon_logm","p":128,"h":1,"n":"The Boatman"},{"c":9,"s":51,"id":10506,"u":"count%20ranalc_logm","p":78,"h":1,"n":"Count Ranalc"},{"c":9,"s":51,"id":10507,"u":"count%20ranalc_logm","p":78,"h":1,"n":"The Traitor"},{"c":9,"s":51,"id":10508,"u":"cyth-v'sug_logm","p":76,"h":1,"n":"Cyth-V'sug"},{"c":9,"s":51,"id":10509,"u":"cyth-v'sug_logm","p":76,"h":1,"n":"Prince of the Blasted Heath"},{"c":9,"s":51,"id":10510,"u":"dagon_logm","p":76,"h":1,"n":"Dagon"},{"c":9,"s":51,"id":10511,"u":"dagon_logm","p":76,"h":1,"n":"The Shadow in the Sea"},{"c":9,"s":51,"id":10512,"u":"dahak_logm","p":130,"h":1,"n":"Dahak"},{"c":9,"s":51,"id":10513,"u":"dahak_logm","p":130,"h":1,"n":"The Endless Destruction"},{"c":9,"s":51,"id":10514,"u":"daikitsu_logm","p":132,"h":1,"n":"Daikitsu"},{"c":9,"s":51,"id":10515,"u":"daikitsu_logm","p":132,"h":1,"n":"Lady of Foxes"},{"c":9,"s":51,"id":10516,"u":"dammerich_logm","p":128,"h":1,"n":"Dammerich"},{"c":9,"s":51,"id":10517,"u":"dammerich_logm","p":128,"h":1,"n":"The Weighted Swing"},{"c":9,"s":51,"id":10518,"u":"dhalavei_logm","p":132,"h":1,"n":"Dhalavei"},{"c":9,"s":51,"id":10519,"u":"dhalavei_logm","p":132,"h":1,"n":"The Unsuspected Rot"},{"c":9,"s":51,"id":10520,"u":"diomazul_logm","p":132,"h":1,"n":"Diomazul"},{"c":9,"s":51,"id":10521,"u":"diomazul_logm","p":132,"h":1,"n":"The Serpent of Eighty Blades"},{"c":9,"s":51,"id":10522,"u":"dispater_logm","p":74,"h":1,"n":"Dispater"},{"c":9,"s":51,"id":10523,"u":"dispater_logm","p":74,"h":1,"n":"Iron Lord"},{"c":9,"s":51,"id":10524,"u":"doloras_logm","p":75,"h":1,"n":"Doloras"},{"c":9,"s":51,"id":10525,"u":"doloras_logm","p":75,"h":1,"n":"Our Lady of Pain"},{"c":9,"s":51,"id":10526,"u":"dranngvit_logm","p":126,"h":1,"n":"Dranngvit"},{"c":9,"s":51,"id":10527,"u":"dranngvit_logm","p":126,"h":1,"n":"The Debt Minder"},{"c":9,"s":51,"id":10528,"u":"droskar_logm","p":126,"h":1,"n":"Droskar"},{"c":9,"s":51,"id":10529,"u":"droskar_logm","p":126,"h":1,"n":"The Dark Smith"},{"c":9,"s":51,"id":10530,"u":"dwarven%20pantheon_logm","p":92,"h":1,"n":"Dwarven Pantheon"},{"c":9,"s":51,"id":10531,"u":"eiseth_logm","p":75,"h":1,"n":"Eiseth"},{"c":9,"s":51,"id":10532,"u":"eiseth_logm","p":75,"h":1,"n":"The Erinyes Queen"},{"c":9,"s":51,"id":10533,"u":"elven%20pantheon_logm","p":93,"h":1,"n":"Elven Pantheon"},{"c":9,"s":51,"id":10534,"u":"erecura_logm","p":130,"h":1,"n":"Erecura"},{"c":9,"s":51,"id":10535,"u":"erecura_logm","p":130,"h":1,"n":"Queen of Dis"},{"c":9,"s":51,"id":10536,"u":"eritrice_logm","p":128,"h":1,"n":"Eritrice"},{"c":9,"s":51,"id":10537,"u":"eritrice_logm","p":128,"h":1,"n":"Heart-Speaker"},{"c":9,"s":51,"id":10538,"u":"esoteric%20order%20of%20the%20palatine%20eye_logm","p":94,"h":1,"n":"Esoteric Order of the Palatine Eye"},{"c":9,"s":51,"id":10539,"u":"falayna_logm","p":128,"h":1,"n":"Falayna"},{"c":9,"s":51,"id":10540,"u":"falayna_logm","p":128,"h":1,"n":"Warrior's Ring"},{"c":9,"s":51,"id":10541,"u":"findeladlara_logm","p":128,"h":1,"n":"Findeladlara"},{"c":9,"s":51,"id":10542,"u":"findeladlara_logm","p":128,"h":1,"n":"The Guiding Hand"},{"c":9,"s":51,"id":10543,"u":"folgrit_logm","p":126,"h":1,"n":"Folgrit"},{"c":9,"s":51,"id":10544,"u":"folgrit_logm","p":126,"h":1,"n":"The Watchful Mother"},{"c":9,"s":51,"id":10545,"u":"fumeiyoshi_logm","p":132,"h":1,"n":"Fumeiyoshi"},{"c":9,"s":51,"id":10546,"u":"fumeiyoshi_logm","p":132,"h":1,"n":"Lord of Envy"},{"c":9,"s":51,"id":10547,"u":"gendowyn_logm","p":130,"h":1,"n":"Gendowyn"},{"c":9,"s":51,"id":10548,"u":"gendowyn_logm","p":130,"h":1,"n":"Lady of the Fangwood"},{"c":9,"s":51,"id":10549,"u":"general%20susumu_logm","p":132,"h":1,"n":"General Susumu"},{"c":9,"s":51,"id":10550,"u":"general%20susumu_logm","p":132,"h":1,"n":"The Black Daimyo"},{"c":9,"s":51,"id":10551,"u":"geryon_logm","p":75,"h":1,"n":"Geryon"},{"c":9,"s":51,"id":10552,"u":"geryon_logm","p":75,"h":1,"n":"The Serpent"},{"c":9,"s":51,"id":10553,"u":"ghlaunder_logm","p":59,"h":1,"n":"Ghlaunder"},{"c":9,"s":51,"id":10554,"u":"ghlaunder_logm","p":59,"h":1,"n":"The Gossamer King"},{"c":9,"s":51,"id":10555,"u":"god%20calling_logm","p":95,"h":1,"n":"God Calling"},{"c":9,"s":51,"id":10556,"u":"grandmother%20spider_logm","p":60,"h":1,"n":"Grandmother Spider"},{"c":9,"s":51,"id":10557,"u":"grandmother%20spider_logm","p":60,"h":1,"n":"The Weaver"},{"c":9,"s":51,"id":10558,"u":"grandmother%20spider_logm","p":60,"h":1,"n":"Nana Anadi"},{"c":9,"s":51,"id":10559,"u":"groetus_logm","p":61,"h":1,"n":"Groetus"},{"c":9,"s":51,"id":10560,"u":"groetus_logm","p":61,"h":1,"n":"God of the End Times"},{"c":9,"s":51,"id":10561,"u":"gruhastha_logm","p":62,"h":1,"n":"Gruhastha"},{"c":9,"s":51,"id":10562,"u":"gruhastha_logm","p":62,"h":1,"n":"The Keeper"},{"c":9,"s":51,"id":10563,"u":"grundinnar_logm","p":126,"h":1,"n":"Grundinnar"},{"c":9,"s":51,"id":10564,"u":"grundinnar_logm","p":126,"h":1,"n":"The Peacemaker"},{"c":9,"s":51,"id":10565,"u":"gyronna_logm","p":130,"h":1,"n":"Gyronna"},{"c":9,"s":51,"id":10566,"u":"gyronna_logm","p":130,"h":1,"n":"The Angry Hag"},{"c":9,"s":51,"id":10567,"u":"halcamora_logm","p":128,"h":1,"n":"Halcamora"},{"c":9,"s":51,"id":10568,"u":"halcamora_logm","p":128,"h":1,"n":"Lady of Ripe Bounty"},{"c":9,"s":51,"id":10569,"u":"hanspur_logm","p":130,"h":1,"n":"Hanspur"},{"c":9,"s":51,"id":10570,"u":"hanspur_logm","p":130,"h":1,"n":"The Water Rat"},{"c":9,"s":51,"id":10571,"u":"hastur_logm","p":130,"h":1,"n":"Hastur"},{"c":9,"s":51,"id":10572,"u":"hastur_logm","p":130,"h":1,"n":"The King in Yellow"},{"c":9,"s":51,"id":10573,"u":"hathor_logm","p":124,"h":1,"n":"Hathor"},{"c":9,"s":51,"id":10574,"u":"hathor_logm","p":124,"h":1,"n":"Mistress of Jubilation"},{"c":9,"s":51,"id":10575,"u":"hei%20feng_logm","p":63,"h":1,"n":"Hei Feng"},{"c":9,"s":51,"id":10576,"u":"hei%20feng_logm","p":63,"h":1,"n":"Duke of Thunder"},{"c":9,"s":51,"id":10577,"u":"horus_logm","p":124,"h":1,"n":"Horus"},{"c":9,"s":51,"id":10578,"u":"horus_logm","p":124,"h":1,"n":"The Distant Falcon"},{"c":9,"s":51,"id":10579,"u":"hshurha_logm","p":126,"h":1,"n":"Hshurha"},{"c":9,"s":51,"id":10580,"u":"hshurha_logm","p":126,"h":1,"n":"Duchess of All Winds"},{"c":9,"s":51,"id":10581,"u":"imbrex_logm","p":78,"h":1,"n":"Imbrex"},{"c":9,"s":51,"id":10582,"u":"imbrex_logm","p":78,"h":1,"n":"The Twins"},{"c":9,"s":51,"id":10583,"u":"imot_logm","p":130,"h":1,"n":"Imot"},{"c":9,"s":51,"id":10584,"u":"imot_logm","p":130,"h":1,"n":"The Symbol of Doom"},{"c":9,"s":51,"id":10585,"u":"irez_logm","p":128,"h":1,"n":"Irez"},{"c":9,"s":51,"id":10586,"u":"irez_logm","p":128,"h":1,"n":"Lady of Inscribed Wonder"},{"c":9,"s":51,"id":10587,"u":"isis_logm","p":124,"h":1,"n":"Isis"},{"c":9,"s":51,"id":10588,"u":"isis_logm","p":124,"h":1,"n":"Queen of Miracles"},{"c":9,"s":51,"id":10589,"u":"jaidi_logm","p":130,"h":1,"n":"Jaidi"},{"c":9,"s":51,"id":10590,"u":"jaidi_logm","p":130,"h":1,"n":"The Blessing and Bounty"},{"c":9,"s":51,"id":10591,"u":"jaidz_logm","p":128,"h":1,"n":"Jaidz"},{"c":9,"s":51,"id":10592,"u":"jaidz_logm","p":128,"h":1,"n":"Fearless Claw"},{"c":9,"s":51,"id":10593,"u":"kabriri_logm","p":77,"h":1,"n":"Kabriri"},{"c":9,"s":51,"id":10594,"u":"kabriri_logm","p":77,"h":1,"n":"Him Who Gnaws"},{"c":9,"s":51,"id":10595,"u":"kazutal_logm","p":64,"h":1,"n":"Kazutal"},{"c":9,"s":51,"id":10596,"u":"kazutal_logm","p":64,"h":1,"n":"Duke of Thunder"},{"c":9,"s":51,"id":10597,"u":"kelizandri_logm","p":126,"h":1,"n":"Kelizandri"},{"c":9,"s":51,"id":10598,"u":"kelizandri_logm","p":126,"h":1,"n":"The Brackish Emperor"},{"c":9,"s":51,"id":10599,"u":"kerkamoth_logm","p":130,"h":1,"n":"Kerkamoth"},{"c":9,"s":51,"id":10600,"u":"kerkamoth_logm","p":130,"h":1,"n":"The Waiting Void"},{"c":9,"s":51,"id":10601,"u":"ketephys_logm","p":128,"h":1,"n":"Ketephys"},{"c":9,"s":51,"id":10602,"u":"ketephys_logm","p":128,"h":1,"n":"The Hunter"},{"c":9,"s":51,"id":10603,"u":"kofusachi_logm","p":132,"h":1,"n":"Kofusachi"},{"c":9,"s":51,"id":10604,"u":"kofusachi_logm","p":132,"h":1,"n":"The Laughing God"},{"c":9,"s":51,"id":10605,"u":"kols_logm","p":126,"h":1,"n":"Kols"},{"c":9,"s":51,"id":10606,"u":"kols_logm","p":126,"h":1,"n":"Oath-Keeper"},{"c":9,"s":51,"id":10607,"u":"korada_logm","p":128,"h":1,"n":"Korada"},{"c":9,"s":51,"id":10608,"u":"korada_logm","p":128,"h":1,"n":"The Open Hand of Harmony"},{"c":9,"s":51,"id":10609,"u":"kostchtchie_logm","p":126,"h":1,"n":"Kostchtchie"},{"c":9,"s":51,"id":10610,"u":"kostchtchie_logm","p":126,"h":1,"n":"The Deathless Frost"},{"c":9,"s":51,"id":10611,"u":"kurgess_logm","p":65,"h":1,"n":"Kurgess"},{"c":9,"s":51,"id":10612,"u":"kurgess_logm","p":65,"h":1,"n":"The Strong Man"},{"c":9,"s":51,"id":10613,"u":"lady%20jingxi_logm","p":132,"h":1,"n":"Lady Jingxi"},{"c":9,"s":51,"id":10614,"u":"lady%20jingxi_logm","p":132,"h":1,"n":"The Poet of Dawn and Dusk"},{"c":9,"s":51,"id":10615,"u":"lady%20nanbyo_logm","p":132,"h":1,"n":"Lady Nanbyo"},{"c":9,"s":51,"id":10616,"u":"lady%20nanbyo_logm","p":132,"h":1,"n":"The Widow of Suffering"},{"c":9,"s":51,"id":10617,"u":"lahkgya_logm","p":132,"h":1,"n":"Lahkgya"},{"c":9,"s":51,"id":10618,"u":"lahkgya_logm","p":132,"h":1,"n":"Patron of Monkeys"},{"c":9,"s":51,"id":10619,"u":"lao%20shu%20po_logm","p":132,"h":1,"n":"Lao Shu Po"},{"c":9,"s":51,"id":10620,"u":"lao%20shu%20po_logm","p":132,"h":1,"n":"Old Rat Woman"},{"c":9,"s":51,"id":10621,"u":"laws%20of%20mortality_logm","p":97,"h":1,"n":"Laws of Mortality"},{"c":9,"s":51,"id":10622,"u":"likha_logm","p":132,"h":1,"n":"Likha"},{"c":9,"s":51,"id":10623,"u":"likha_logm","p":132,"h":1,"n":"The Teller"},{"c":9,"s":51,"id":10624,"u":"lissala_logm","p":130,"h":1,"n":"Lissala"},{"c":9,"s":51,"id":10625,"u":"lissala_logm","p":130,"h":1,"n":"The Sihedron Scion"},{"c":9,"s":51,"id":10626,"u":"lymnieris_logm","p":128,"h":1,"n":"Lymnieris"},{"c":9,"s":51,"id":10627,"u":"lymnieris_logm","p":128,"h":1,"n":"The Auroral Tower"},{"c":9,"s":51,"id":10628,"u":"lysianassa_logm","p":126,"h":1,"n":"Lysianassa"},{"c":9,"s":51,"id":10629,"u":"lysianassa_logm","p":126,"h":1,"n":"Empress of the Torrent"},{"c":9,"s":51,"id":10630,"u":"ma'at_logm","p":124,"h":1,"n":"Ma'at"},{"c":9,"s":51,"id":10631,"u":"ma'at_logm","p":124,"h":1,"n":"The Feather of Truth"},{"c":9,"s":51,"id":10632,"u":"magdh_logm","p":79,"h":1,"n":"Magdh"},{"c":9,"s":51,"id":10633,"u":"magdh_logm","p":79,"h":1,"n":"The Three"},{"c":9,"s":51,"id":10634,"u":"magrim_logm","p":126,"h":1,"n":"Magrim"},{"c":9,"s":51,"id":10635,"u":"magrim_logm","p":126,"h":1,"n":"The Taskmaster"},{"c":9,"s":51,"id":10636,"u":"mahathallah_logm","p":75,"h":1,"n":"Mahathallah"},{"c":9,"s":51,"id":10637,"u":"mahathallah_logm","p":75,"h":1,"n":"Dowager of Illusions"},{"c":9,"s":51,"id":10638,"u":"mammon_logm","p":75,"h":1,"n":"Mammon"},{"c":9,"s":51,"id":10639,"u":"mammon_logm","p":75,"h":1,"n":"The Argent Prince"},{"c":9,"s":51,"id":10640,"u":"matravash_logm","p":132,"h":1,"n":"Matravash"},{"c":9,"s":51,"id":10641,"u":"matravash_logm","p":132,"h":1,"n":"The Wide Water"},{"c":9,"s":51,"id":10642,"u":"mephistopheles_logm","p":75,"h":1,"n":"Mephistopheles"},{"c":9,"s":51,"id":10643,"u":"mephistopheles_logm","p":75,"h":1,"n":"The Crimson Son"},{"c":9,"s":51,"id":10644,"u":"milani_logm","p":66,"h":1,"n":"Milani"},{"c":9,"s":51,"id":10645,"u":"milani_logm","p":66,"h":1,"n":"The Everbloom"},{"c":9,"s":51,"id":10646,"u":"moloch_logm","p":75,"h":1,"n":"Moloch"},{"c":9,"s":51,"id":10647,"u":"moloch_logm","p":75,"h":1,"n":"The Ashen Bull"},{"c":9,"s":51,"id":10648,"u":"monad_logm","p":130,"h":1,"n":"Monad"},{"c":9,"s":51,"id":10649,"u":"monad_logm","p":130,"h":1,"n":"The Condition of All"},{"c":9,"s":51,"id":10650,"u":"mother%20vulture_logm","p":130,"h":1,"n":"Mother Vulture"},{"c":9,"s":51,"id":10651,"u":"mother%20vulture_logm","p":130,"h":1,"n":"The Flesheater"},{"c":9,"s":51,"id":10652,"u":"naderi_logm","p":130,"h":1,"n":"Naderi"},{"c":9,"s":51,"id":10653,"u":"naderi_logm","p":130,"h":1,"n":"The Lost Maiden"},{"c":9,"s":51,"id":10654,"u":"nalinivati_logm","p":132,"h":1,"n":"Nalinivati"},{"c":9,"s":51,"id":10655,"u":"nalinivati_logm","p":132,"h":1,"n":"The Serpent's Kiss"},{"c":9,"s":51,"id":10656,"u":"narakaas_logm","p":130,"h":1,"n":"Narakaas"},{"c":9,"s":51,"id":10657,"u":"narakaas_logm","p":130,"h":1,"n":"The Cleansing Sentence"},{"c":9,"s":51,"id":10658,"u":"narriseminek_logm","p":130,"h":1,"n":"Narriseminek"},{"c":9,"s":51,"id":10659,"u":"narriseminek_logm","p":130,"h":1,"n":"The Crownless, the Maker of Kings"},{"c":9,"s":51,"id":10660,"u":"nhimbaloth_logm","p":130,"h":1,"n":"Nhimbaloth"},{"c":9,"s":51,"id":10661,"u":"nhimbaloth_logm","p":130,"h":1,"n":"The Empty Death"},{"c":9,"s":51,"id":10662,"u":"nivi%20rhombodazzle_logm","p":67,"h":1,"n":"Nivi Rhombodazzle"},{"c":9,"s":51,"id":10663,"u":"nivi%20rhombodazzle_logm","p":67,"h":1,"n":"The Grey Polychrome"},{"c":9,"s":51,"id":10664,"u":"nocticula_logm","p":68,"h":1,"n":"Nocticula"},{"c":9,"s":51,"id":10665,"u":"nocticula_logm","p":68,"h":1,"n":"The Redeemer Queen"},{"c":9,"s":51,"id":10666,"u":"nurgal_logm","p":77,"h":1,"n":"Nurgal"},{"c":9,"s":51,"id":10667,"u":"nurgal_logm","p":77,"h":1,"n":"The Shining Scourge"},{"c":9,"s":51,"id":10668,"u":"nyarlathotep_logm","p":130,"h":1,"n":"Nyarlathotep"},{"c":9,"s":51,"id":10669,"u":"nyarlathotep_logm","p":130,"h":1,"n":"The Crawling Chaos"},{"c":9,"s":51,"id":10670,"u":"osiris_logm","p":124,"h":1,"n":"Osiris"},{"c":9,"s":51,"id":10671,"u":"osiris_logm","p":124,"h":1,"n":"Lord of the Living"},{"c":9,"s":51,"id":10672,"u":"otolmens_logm","p":130,"h":1,"n":"Otolmens"},{"c":9,"s":51,"id":10673,"u":"otolmens_logm","p":130,"h":1,"n":"The Universal"},{"c":9,"s":51,"id":10674,"u":"pazuzu_logm","p":77,"h":1,"n":"Pazuzu"},{"c":9,"s":51,"id":10675,"u":"pazuzu_logm","p":77,"h":1,"n":"King of the Wind Demons"},{"c":9,"s":51,"id":10676,"u":"pulura_logm","p":128,"h":1,"n":"Pulura"},{"c":9,"s":51,"id":10677,"u":"pulura_logm","p":128,"h":1,"n":"The Shimmering Maiden"},{"c":9,"s":51,"id":10678,"u":"qi%20zhong_logm","p":132,"h":1,"n":"Qi Zhong"},{"c":9,"s":51,"id":10679,"u":"qi%20zhong_logm","p":132,"h":1,"n":"Master of Medicine"},{"c":9,"s":51,"id":10680,"u":"ra_logm","p":124,"h":1,"n":"Ra"},{"c":9,"s":51,"id":10681,"u":"ra_logm","p":124,"h":1,"n":"King of the Heavens"},{"c":9,"s":51,"id":10682,"u":"ragathiel_logm","p":128,"h":1,"n":"Ragathiel"},{"c":9,"s":51,"id":10683,"u":"ragathiel_logm","p":128,"h":1,"n":"General of Vengeance"},{"c":9,"s":51,"id":10684,"u":"ragdya_logm","p":132,"h":1,"n":"Ragdya"},{"c":9,"s":51,"id":10685,"u":"ragdya_logm","p":132,"h":1,"n":"The Sage on the Mountain"},{"c":9,"s":51,"id":10686,"u":"ranginori_logm","p":128,"h":1,"n":"Ranginori"},{"c":9,"s":51,"id":10687,"u":"ranginori_logm","p":128,"h":1,"n":"Zephyrous Prince"},{"c":9,"s":51,"id":10688,"u":"raumya_logm","p":132,"h":1,"n":"Raumya"},{"c":9,"s":51,"id":10689,"u":"raumya_logm","p":132,"h":1,"n":"The Evil Prince"},{"c":9,"s":51,"id":10690,"u":"sairazul_logm","p":128,"h":1,"n":"Sairazul"},{"c":9,"s":51,"id":10691,"u":"sairazul_logm","p":128,"h":1,"n":"The Crystalline Queen"},{"c":9,"s":51,"id":10692,"u":"saloc_logm","p":130,"h":1,"n":"Saloc"},{"c":9,"s":51,"id":10693,"u":"saloc_logm","p":130,"h":1,"n":"The Minder of Immortals"},{"c":9,"s":51,"id":10694,"u":"sangpotshi_logm","p":99,"h":1,"n":"Sangpotshi"},{"c":9,"s":51,"id":10695,"u":"sekhmet_logm","p":124,"h":1,"n":"Sekhmet"},{"c":9,"s":51,"id":10696,"u":"sekhmet_logm","p":124,"h":1,"n":"Lady of Slaughter"},{"c":9,"s":51,"id":10697,"u":"selket_logm","p":124,"h":1,"n":"Selket"},{"c":9,"s":51,"id":10698,"u":"selket_logm","p":124,"h":1,"n":"Mistress of the Beautiful House"},{"c":9,"s":51,"id":10699,"u":"shax_logm","p":77,"h":1,"n":"Shax"},{"c":9,"s":51,"id":10700,"u":"shax_logm","p":77,"h":1,"n":"The Bloody Marquis"},{"c":9,"s":51,"id":10701,"u":"shei_logm","p":128,"h":1,"n":"Shei"},{"c":9,"s":51,"id":10702,"u":"shei_logm","p":128,"h":1,"n":"The Ibis Matron"},{"c":9,"s":51,"id":10703,"u":"shizuru_logm","p":70,"h":1,"n":"Shizuru"},{"c":9,"s":51,"id":10704,"u":"shizuru_logm","p":70,"h":1,"n":"The Empress of Heaven"},{"c":9,"s":51,"id":10705,"u":"shoanti%20animism_logm","p":100,"h":1,"n":"Shoanti Animism"},{"c":9,"s":51,"id":10706,"u":"sifkesh_logm","p":126,"h":1,"n":"Sifkesh"},{"c":9,"s":51,"id":10707,"u":"sifkesh_logm","p":126,"h":1,"n":"The Whispered Doubt"},{"c":9,"s":51,"id":10708,"u":"sivanah_logm","p":69,"h":1,"n":"Sivanah"},{"c":9,"s":51,"id":10709,"u":"sivanah_logm","p":69,"h":1,"n":"The Seventh Veil"},{"c":9,"s":51,"id":10710,"u":"sobek_logm","p":124,"h":1,"n":"Sobek"},{"c":9,"s":51,"id":10711,"u":"sobek_logm","p":124,"h":1,"n":"The Raging Torrent"},{"c":9,"s":51,"id":10712,"u":"soralyon_logm","p":128,"h":1,"n":"Soralyon"},{"c":9,"s":51,"id":10713,"u":"soralyon_logm","p":128,"h":1,"n":"The Mystic Angel"},{"c":9,"s":51,"id":10714,"u":"stag%20mother%20of%20the%20forest%20of%20stones_logm","p":132,"h":1,"n":"Stag Mother of the Forest of Stones"},{"c":9,"s":51,"id":10715,"u":"stag%20mother%20of%20the%20forest%20of%20stones_logm","p":132,"h":1,"n":"She Who Listens"},{"c":9,"s":51,"id":10716,"u":"sturovenen_logm","p":132,"h":1,"n":"Sturovenen"},{"c":9,"s":51,"id":10717,"u":"sturovenen_logm","p":132,"h":1,"n":"The Dragoneagle"},{"c":9,"s":51,"id":10718,"u":"sun%20wukong_logm","p":132,"h":1,"n":"Sun Wukong"},{"c":9,"s":51,"id":10719,"u":"sun%20wukong_logm","p":132,"h":1,"n":"The Monkey King"},{"c":9,"s":51,"id":10720,"u":"szuriel_logm","p":128,"h":1,"n":"Szuriel"},{"c":9,"s":51,"id":10721,"u":"szuriel_logm","p":128,"h":1,"n":"Angel of Desolation"},{"c":9,"s":51,"id":10722,"u":"tanagaar_logm","p":128,"h":1,"n":"Tanagaar"},{"c":9,"s":51,"id":10723,"u":"tanagaar_logm","p":128,"h":1,"n":"The Aurulent Eye"},{"c":9,"s":51,"id":10724,"u":"thamir_logm","p":130,"h":1,"n":"Thamir"},{"c":9,"s":51,"id":10725,"u":"thamir_logm","p":130,"h":1,"n":"The Silent Blade"},{"c":9,"s":51,"id":10726,"u":"the%20godclaw_logm","p":93,"h":1,"n":"The Godclaw"},{"c":9,"s":51,"id":10727,"u":"the%20green%20mother_logm","p":78,"h":1,"n":"The Green Mother"},{"c":9,"s":51,"id":10728,"u":"the%20green%20mother_logm","p":78,"h":1,"n":"The Feasting Flower"},{"c":9,"s":51,"id":10729,"u":"the%20lantern%20king_logm","p":78,"h":1,"n":"The Lantern King"},{"c":9,"s":51,"id":10730,"u":"the%20lantern%20king_logm","p":78,"h":1,"n":"The Laughing Lie"},{"c":9,"s":51,"id":10731,"u":"the%20lost%20prince_logm","p":78,"h":1,"n":"The Lost Prince"},{"c":9,"s":51,"id":10732,"u":"the%20lost%20prince_logm","p":78,"h":1,"n":"The Melancholy Lord"},{"c":9,"s":51,"id":10733,"u":"thoth_logm","p":124,"h":1,"n":"Thoth"},{"c":9,"s":51,"id":10734,"u":"thoth_logm","p":124,"h":1,"n":"Lord of Divine Words"},{"c":9,"s":51,"id":10735,"u":"trelmarixian_logm","p":128,"h":1,"n":"Trelmarixian"},{"c":9,"s":51,"id":10736,"u":"trelmarixian_logm","p":128,"h":1,"n":"The Lysogenic Prince"},{"c":9,"s":51,"id":10737,"u":"trudd_logm","p":126,"h":1,"n":"Trudd"},{"c":9,"s":51,"id":10738,"u":"trudd_logm","p":126,"h":1,"n":"The Mighty"},{"c":9,"s":51,"id":10739,"u":"tsukiyo_logm","p":71,"h":1,"n":"Tsukiyo"},{"c":9,"s":51,"id":10740,"u":"tsukiyo_logm","p":71,"h":1,"n":"Prince of the Moon"},{"c":9,"s":51,"id":10741,"u":"valmallos_logm","p":130,"h":1,"n":"Valmallos"},{"c":9,"s":51,"id":10742,"u":"valmallos_logm","p":130,"h":1,"n":"The Answering Rite"},{"c":9,"s":51,"id":10743,"u":"vildeis_logm","p":128,"h":1,"n":"Vildeis"},{"c":9,"s":51,"id":10744,"u":"vildeis_logm","p":128,"h":1,"n":"The Cardinal Martyr"},{"c":9,"s":51,"id":10745,"u":"wadjet_logm","p":124,"h":1,"n":"Wadjet"},{"c":9,"s":51,"id":10746,"u":"wadjet_logm","p":124,"h":1,"n":"The Green Empress"},{"c":9,"s":51,"id":10747,"u":"walkena_logm","p":130,"h":1,"n":"Walkena"},{"c":9,"s":51,"id":10748,"u":"walkena_logm","p":130,"h":1,"n":"The Child-God"},{"c":9,"s":51,"id":10749,"u":"winlas_logm","p":128,"h":1,"n":"Winlas"},{"c":9,"s":51,"id":10750,"u":"winlas_logm","p":128,"h":1,"n":"The Elder of Divinity"},{"c":9,"s":51,"id":10751,"u":"xhamen-dor_logm","p":130,"h":1,"n":"Xhamen-Dor"},{"c":9,"s":51,"id":10752,"u":"xhamen-dor_logm","p":130,"h":1,"n":"The Star Seed"},{"c":9,"s":51,"id":10753,"u":"yaezhing_logm","p":132,"h":1,"n":"Yaezhing"},{"c":9,"s":51,"id":10754,"u":"yaezhing_logm","p":132,"h":1,"n":"Minister of Blood"},{"c":9,"s":51,"id":10755,"u":"yamatsumi_logm","p":132,"h":1,"n":"Yamatsumi"},{"c":9,"s":51,"id":10756,"u":"yamatsumi_logm","p":132,"h":1,"n":"The Mountain Lord"},{"c":9,"s":51,"id":10757,"u":"ydajisk_logm","p":130,"h":1,"n":"Ydajisk"},{"c":9,"s":51,"id":10758,"u":"ydajisk_logm","p":130,"h":1,"n":"Mother of Tongues"},{"c":9,"s":51,"id":10759,"u":"ylimancha_logm","p":128,"h":1,"n":"Ylimancha"},{"c":9,"s":51,"id":10760,"u":"ylimancha_logm","p":128,"h":1,"n":"Harborwing"},{"c":9,"s":51,"id":10761,"u":"ymeri_logm","p":128,"h":1,"n":"Ymeri"},{"c":9,"s":51,"id":10762,"u":"ymeri_logm","p":128,"h":1,"n":"Queen of the Inferno"},{"c":9,"s":51,"id":10763,"u":"yog-sothoth_logm","p":130,"h":1,"n":"Yog-Sothoth"},{"c":9,"s":51,"id":10764,"u":"yog-sothoth_logm","p":130,"h":1,"n":"Lurker at the Threshold"},{"c":9,"s":51,"id":10765,"u":"yuelral_logm","p":128,"h":1,"n":"Yuelral"},{"c":9,"s":51,"id":10766,"u":"yuelral_logm","p":128,"h":1,"n":"The Wise"},{"c":9,"s":51,"id":10767,"u":"zohls_logm","p":128,"h":1,"n":"Zohls"},{"c":9,"s":51,"id":10768,"u":"zohls_logm","p":128,"h":1,"n":"Verity"},{"c":9,"s":51,"id":10769,"u":"zura_logm","p":77,"h":1,"n":"Zura"},{"c":9,"s":51,"id":10770,"u":"zura_logm","p":77,"h":1,"n":"The Vampire Queen"},{"c":9,"s":51,"id":10771,"u":"zyphus_logm","p":130,"h":1,"n":"Zyphus"},{"c":9,"s":51,"id":10772,"u":"zyphus_logm","p":130,"h":1,"n":"The Grim Harvestman"},{"c":9,"s":0,"id":10773,"u":"adanye_lome","p":132,"h":1,"n":"Adanye"},{"c":9,"s":0,"id":10774,"u":"adanye_lome","p":132,"h":1,"n":"The Warmth of the Hearth"},{"c":9,"s":0,"id":10775,"u":"balumbdar_lome","p":134,"h":1,"n":"Balumbdar"},{"c":9,"s":0,"id":10776,"u":"balumbdar_lome","p":134,"h":1,"n":"The World-Shaker"},{"c":9,"s":0,"id":10777,"u":"chohar_lome","p":135,"h":1,"n":"Chohar"},{"c":9,"s":0,"id":10778,"u":"chohar_lome","p":135,"h":1,"n":"The Golden Lion"},{"c":9,"s":0,"id":10779,"u":"kalekot_lome","p":137,"h":1,"n":"Kalekot"},{"c":9,"s":0,"id":10780,"u":"kalekot_lome","p":137,"h":1,"n":"The Winnower"},{"c":9,"s":0,"id":10781,"u":"kitmu_lome","p":158,"h":1,"n":"Kitmu"},{"c":9,"s":0,"id":10782,"u":"kitmu_lome","p":158,"h":1,"n":"Mother of Fireflies"},{"c":9,"s":0,"id":10783,"u":"lubaiko_lome","p":138,"h":1,"n":"Lubaiko"},{"c":9,"s":0,"id":10784,"u":"lubaiko_lome","p":138,"h":1,"n":"The Spark in the Dust"},{"c":9,"s":0,"id":10785,"u":"luhar_lome","p":139,"h":1,"n":"Luhar"},{"c":9,"s":0,"id":10786,"u":"luhar_lome","p":139,"h":1,"n":"THE SETTING SUN"},{"c":9,"s":0,"id":10787,"u":"mazludeh_lome","p":140,"h":1,"n":"Mazludeh"},{"c":9,"s":0,"id":10788,"u":"mazludeh_lome","p":140,"h":1,"n":"Mother of Hearth and Wall"},{"c":9,"s":0,"id":10789,"u":"tlehar_lome","p":141,"h":1,"n":"Tlehar"},{"c":9,"s":0,"id":10790,"u":"tlehar_lome","p":141,"h":1,"n":"The Rising Sun"},{"c":9,"s":0,"id":10791,"u":"uvuko_lome","p":141,"h":1,"n":"Uvuko"},{"c":9,"s":0,"id":10792,"u":"uvuko_lome","p":141,"h":1,"n":"The Diamond Ring"},{"c":72,"s":6,"id":10793,"u":"firebrands_locg","p":68,"h":1,"n":"Firebrands"},{"c":72,"s":6,"id":10794,"u":"hellknights_locg","p":78,"h":1,"n":"Hellknights"},{"c":72,"s":6,"id":10795,"u":"knights%20of%20lastwall_locg","p":88,"h":1,"n":"Knights of Lastwall"},{"c":72,"s":6,"id":10796,"u":"magaambya_locg","p":98,"h":1,"n":"Magaambya"},{"c":72,"s":6,"id":10797,"u":"pathfinder%20society_locg","p":108,"h":1,"n":"Pathfinder Society"},{"c":66,"s":12,"id":10798,"u":"abaddon_gmg","p":142,"h":1,"n":"Abaddon"},{"c":66,"s":12,"id":10799,"u":"abyss_gmg","p":142,"h":1,"n":"Abyss"},{"c":66,"s":12,"id":10800,"u":"andoran_gmg","p":131,"h":1,"n":"Andoran"},{"c":66,"s":12,"id":10801,"u":"astral%20plane_gmg","p":140,"h":1,"n":"Astral Plane"},{"c":66,"s":12,"id":10802,"u":"axis_gmg","p":142,"h":1,"n":"Axis"},{"c":66,"s":12,"id":10803,"u":"boneyard_gmg","p":142,"h":1,"n":"Boneyard"},{"c":66,"s":12,"id":10804,"u":"dimension%20of%20time_gmg","p":145,"h":1,"n":"Dimension of Time"},{"c":66,"s":12,"id":10805,"u":"dreamlands_gmg","p":145,"h":1,"n":"Dreamlands"},{"c":66,"s":12,"id":10806,"u":"elysium_gmg","p":143,"h":1,"n":"Elysium"},{"c":66,"s":12,"id":10807,"u":"ethereal%20plane_gmg","p":141,"h":1,"n":"Ethereal Plane"},{"c":66,"s":12,"id":10808,"u":"first%20world_gmg","p":141,"h":1,"n":"First World"},{"c":66,"s":12,"id":10809,"u":"heaven_gmg","p":143,"h":1,"n":"Heaven"},{"c":66,"s":12,"id":10810,"u":"hell_gmg","p":144,"h":1,"n":"Hell"},{"c":66,"s":12,"id":10811,"u":"maelstrom_gmg","p":144,"h":1,"n":"Maelstrom"},{"c":66,"s":12,"id":10812,"u":"material%20plane_gmg","p":138,"h":1,"n":"Material Plane"},{"c":66,"s":12,"id":10813,"u":"negative%20energy%20plane_gmg","p":139,"h":1,"n":"Negative Energy Plane"},{"c":66,"s":12,"id":10814,"u":"otari_gmg","p":135,"h":1,"n":"Otari"},{"c":66,"s":12,"id":10815,"u":"plane%20of%20air_gmg","p":138,"h":1,"n":"Plane of Air"},{"c":66,"s":12,"id":10816,"u":"plane%20of%20earth_gmg","p":139,"h":1,"n":"Plane of Earth"},{"c":66,"s":12,"id":10817,"u":"plane%20of%20fire_gmg","p":140,"h":1,"n":"Plane of Fire"},{"c":66,"s":12,"id":10818,"u":"plane%20of%20water_gmg","p":140,"h":1,"n":"Plane of Water"},{"c":66,"s":12,"id":10819,"u":"port%20peril_gmg","p":135,"h":1,"n":"Port Peril"},{"c":66,"s":12,"id":10820,"u":"positive%20energy%20plane_gmg","p":139,"h":1,"n":"Positive Energy Plane"},{"c":66,"s":12,"id":10821,"u":"rahadoum_gmg","p":131,"h":1,"n":"Rahadoum"},{"c":66,"s":12,"id":10822,"u":"shadow%20plane_gmg","p":141,"h":1,"n":"Shadow Plane"},{"c":66,"s":0,"id":10823,"u":"anthusis%20(capital)_lome","p":274,"h":1,"n":"Anthusis (Capital)"},{"c":66,"s":0,"id":10824,"u":"bloodcove_lome","p":184,"h":1,"n":"Bloodcove"},{"c":66,"s":0,"id":10825,"u":"jaha_lome","p":196,"h":1,"n":"Jaha"},{"c":66,"s":0,"id":10826,"u":"kibwe_lome","p":208,"h":1,"n":"Kibwe"},{"c":66,"s":0,"id":10827,"u":"mzali_lome","p":220,"h":1,"n":"Mzali"},{"c":66,"s":0,"id":10828,"u":"nantambu_lome","p":232,"h":1,"n":"Nantambu"},{"c":66,"s":0,"id":10829,"u":"osibu_lome","p":246,"h":1,"n":"Osibu"},{"c":66,"s":0,"id":10830,"u":"senghor_lome","p":254,"h":1,"n":"Senghor"},{"c":66,"s":0,"id":10831,"u":"usaro_lome","p":266,"h":1,"n":"Usaro"},{"c":51,"s":9,"id":10832,"u":"web%20lurker%20deadfall_bst","p":325,"h":1,"n":"Web Lurker Deadfall"},{"c":51,"s":9,"id":10833,"u":"web%20lurker%20noose_bst","p":325,"h":1,"n":"Web Lurker Noose"},{"c":51,"s":5,"id":10834,"u":"armageddon%20orb_crb","p":526,"h":1,"n":"Armageddon Orb"},{"c":51,"s":5,"id":10835,"u":"banshee's%20symphony_crb","p":529,"h":1,"n":"Banshee's Symphony"},{"c":51,"s":5,"id":10836,"u":"bloodthirsty%20urge_crb","p":524,"h":1,"n":"Bloodthirsty Urge"},{"c":51,"s":5,"id":10837,"u":"bottomless%20pit_crb","p":524,"h":1,"n":"Bottomless Pit"},{"c":51,"s":5,"id":10838,"u":"darkside%20mirror_crb","p":528,"h":1,"n":"Darkside Mirror"},{"c":51,"s":5,"id":10839,"u":"drowning%20pit_crb","p":526,"h":1,"n":"Drowning Pit"},{"c":51,"s":5,"id":10840,"u":"electric%20latch%20rune_crb","p":523,"h":1,"n":"Electric Latch Rune"},{"c":51,"s":5,"id":10841,"u":"fireball%20rune_crb","p":524,"h":1,"n":"Fireball Rune"},{"c":51,"s":5,"id":10842,"u":"frozen%20moment_crb","p":525,"h":1,"n":"Frozen Moment"},{"c":51,"s":5,"id":10843,"u":"hallucination%20powder%20trap_crb","p":524,"h":1,"n":"Hallucination Powder Trap"},{"c":51,"s":5,"id":10844,"u":"hammer%20of%20forbiddance_crb","p":525,"h":1,"n":"Hammer Of Forbiddance"},{"c":51,"s":5,"id":10845,"u":"hidden%20pit_crb","p":522,"h":1,"n":"Hidden Pit"},{"c":51,"s":5,"id":10846,"u":"lava%20flume%20tube_crb","p":528,"h":1,"n":"Lava Flume Tube"},{"c":51,"s":5,"id":10847,"u":"pharaoh's%20ward_crb","p":524,"h":1,"n":"Pharaoh's Ward"},{"c":51,"s":5,"id":10848,"u":"planar%20rift_crb","p":525,"h":1,"n":"Planar Rift"},{"c":51,"s":5,"id":10849,"u":"poisoned%20dart%20gallery_crb","p":528,"h":1,"n":"Poisoned Dart Gallery"},{"c":51,"s":5,"id":10850,"u":"poisoned%20lock_crb","p":523,"h":1,"n":"Poisoned Lock"},{"c":51,"s":5,"id":10851,"u":"polymorph%20trap_crb","p":525,"h":1,"n":"Polymorph Trap"},{"c":51,"s":5,"id":10852,"u":"quicksand_crb","p":526,"h":1,"n":"Quicksand"},{"c":51,"s":5,"id":10853,"u":"scythe%20blades_crb","p":523,"h":1,"n":"Scythe Blades"},{"c":51,"s":5,"id":10854,"u":"second%20chance_crb","p":525,"h":1,"n":"Second Chance"},{"c":51,"s":5,"id":10855,"u":"slamming%20door_crb","p":523,"h":1,"n":"Slamming Door"},{"c":51,"s":5,"id":10856,"u":"spear%20launcher_crb","p":523,"h":1,"n":"Spear Launcher"},{"c":51,"s":5,"id":10857,"u":"spinning%20blade%20pillar_crb","p":527,"h":1,"n":"Spinning Blade Pillar"},{"c":51,"s":5,"id":10858,"u":"summoning%20rune_crb","p":526,"h":1,"n":"Summoning Rune"},{"c":51,"s":5,"id":10859,"u":"telekinetic%20swarm%20trap_crb","p":528,"h":1,"n":"Telekinetic Swarm Trap"},{"c":51,"s":5,"id":10860,"u":"vorpal%20executioner_crb","p":525,"h":1,"n":"Vorpal Executioner"},{"c":51,"s":5,"id":10861,"u":"wheel%20of%20misery_crb","p":527,"h":1,"n":"Wheel Of Misery"},{"c":51,"s":5,"id":10862,"u":"yellow%20mold_crb","p":524,"h":1,"n":"Yellow Mold"},{"c":51,"s":13,"id":10863,"u":"gloomglow%20mushrooms_aoa1","p":57,"h":1,"n":"Gloomglow Mushrooms"},{"c":51,"s":13,"id":10864,"u":"spiked%20doorframe_aoa1","p":46,"h":1,"n":"Spiked Doorframe"},{"c":51,"s":13,"id":10865,"u":"town%20hall%20fire_aoa1","p":9,"h":1,"n":"Town Hall Fire"},{"c":51,"s":14,"id":10866,"u":"black%20powder%20bomb_aoa2","p":40,"h":1,"n":"Black Powder Bomb"},{"c":51,"s":14,"id":10867,"u":"dahak's%20shell_aoa2","p":55,"h":1,"n":"Dahak's Shell"},{"c":51,"s":14,"id":10868,"u":"dahak's%20skull_aoa2","p":61,"h":1,"n":"Dahak's Skull"},{"c":51,"s":14,"id":10869,"u":"dragon%20pillar_aoa2","p":28,"h":1,"n":"Dragon Pillar"},{"c":51,"s":14,"id":10870,"u":"vision%20of%20dahak_aoa2","p":10,"h":1,"n":"Vision Of Dahak"},{"c":51,"s":14,"id":10871,"u":"wrath%20of%20the%20destroyer_aoa2","p":57,"h":1,"n":"Wrath Of The Destroyer"},{"c":51,"s":15,"id":10872,"u":"barzillai's%20hounds_aoa3","p":27,"h":1,"n":"Barzillai's Hounds"},{"c":51,"s":15,"id":10873,"u":"phantom%20bells_aoa3","p":28,"h":1,"n":"Phantom Bells"},{"c":51,"s":15,"id":10874,"u":"quarry%20sluiceway_aoa3","p":55,"h":1,"n":"Quarry Sluiceway"},{"c":51,"s":15,"id":10875,"u":"trapped%20lathe_aoa3","p":6,"h":1,"n":"Trapped Lathe"},{"c":51,"s":15,"id":10876,"u":"tree%20of%20dreadful%20dreams_aoa3","p":11,"h":1,"n":"Tree Of Dreadful Dreams"},{"c":51,"s":16,"id":10877,"u":"ash%20web_aoa4","p":12,"h":1,"n":"Ash Web"},{"c":51,"s":16,"id":10878,"u":"echoes%20of%20betrayal_aoa4","p":53,"h":1,"n":"Echoes Of Betrayal"},{"c":51,"s":16,"id":10879,"u":"lifeleech%20crystal%20patch_aoa4","p":9,"h":1,"n":"Lifeleech Crystal Patch"},{"c":51,"s":16,"id":10880,"u":"wailing%20crystals_aoa4","p":9,"h":1,"n":"Wailing Crystals"},{"c":51,"s":17,"id":10881,"u":"acidic%20needle%20launcher_aoa5","p":54,"h":1,"n":"Acidic Needle Launcher"},{"c":51,"s":17,"id":10882,"u":"caustic%20vapor_aoa5","p":57,"h":1,"n":"Caustic Vapor"},{"c":51,"s":17,"id":10883,"u":"endless%20elven%20aging_aoa5","p":7,"h":1,"n":"Endless Elven Aging"},{"c":51,"s":17,"id":10884,"u":"luminous%20ward_aoa5","p":58,"h":1,"n":"Luminous Ward"},{"c":51,"s":17,"id":10885,"u":"mental%20scream%20trap_aoa5","p":56,"h":1,"n":"Mental Scream Trap"},{"c":51,"s":17,"id":10886,"u":"seismic%20spears%20trap_aoa5","p":19,"h":1,"n":"Seismic Spears Trap"},{"c":51,"s":18,"id":10887,"u":"damurdiel's%20vengeance_aoa6","p":18,"h":1,"n":"Damurdiel's Vengeance"},{"c":51,"s":18,"id":10888,"u":"dragonstorm_aoa6","p":7,"h":1,"n":"Dragonstorm"},{"c":51,"s":18,"id":10889,"u":"lesser%20dragonstorm_aoa6","p":6,"h":1,"n":"Lesser Dragonstorm"},{"c":51,"s":19,"id":10890,"u":"boiling%20fountains_aoe1","p":24,"h":1,"n":"Boiling Fountains"},{"c":51,"s":19,"id":10891,"u":"canopy%20drop_aoe1","p":52,"h":1,"n":"Canopy Drop"},{"c":51,"s":19,"id":10892,"u":"dart%20barrage_aoe1","p":24,"h":1,"n":"Dart Barrage"},{"c":51,"s":19,"id":10893,"u":"exploding%20statue_aoe1","p":26,"h":1,"n":"Exploding Statue"},{"c":51,"s":19,"id":10894,"u":"explosive%20barrels_aoe1","p":10,"h":1,"n":"Explosive Barrels"},{"c":51,"s":19,"id":10895,"u":"flying%20guillotine_aoe1","p":49,"h":1,"n":"Flying Guillotine"},{"c":51,"s":19,"id":10896,"u":"gas%20trap_aoe1","p":57,"h":1,"n":"Gas Trap"},{"c":51,"s":19,"id":10897,"u":"hidden%20chute_aoe1","p":48,"h":1,"n":"Hidden Chute"},{"c":51,"s":19,"id":10898,"u":"plunger%20chute_aoe1","p":58,"h":1,"n":"Plunger Chute"},{"c":51,"s":19,"id":10899,"u":"summoning%20rune_aoe1","p":50,"h":1,"n":"Summoning Rune"},{"c":51,"s":19,"id":10900,"u":"summoning%20rune_aoe1","p":51,"h":1,"n":"Summoning Rune"},{"c":51,"s":20,"id":10901,"u":"hands%20of%20the%20forgotten_aoe2","p":37,"h":1,"n":"Hands Of The Forgotten"},{"c":51,"s":20,"id":10902,"u":"iron%20maiden%20trap_aoe2","p":52,"h":1,"n":"Iron Maiden Trap"},{"c":51,"s":20,"id":10903,"u":"life%20magnet_aoe2","p":36,"h":1,"n":"Life Magnet"},{"c":51,"s":20,"id":10904,"u":"rigged%20cubby_aoe2","p":51,"h":1,"n":"Rigged Cubby"},{"c":51,"s":21,"id":10905,"u":"acidic%20poison%20cloud%20trap_aoe3","p":46,"h":1,"n":"Acidic Poison Cloud Trap"},{"c":51,"s":21,"id":10906,"u":"boiling%20tub%20trap_aoe3","p":56,"h":1,"n":"Boiling Tub Trap"},{"c":51,"s":21,"id":10907,"u":"clockwork%20poison%20bomb_aoe3","p":58,"h":1,"n":"Clockwork Poison Bomb"},{"c":51,"s":21,"id":10908,"u":"needling%20stairs_aoe3","p":19,"h":1,"n":"Needling Stairs"},{"c":51,"s":22,"id":10909,"u":"arcane%20feedback%20trap_aoe4","p":47,"h":1,"n":"Arcane Feedback Trap"},{"c":51,"s":22,"id":10910,"u":"burning%20chandelier%20trap_aoe4","p":38,"h":1,"n":"Burning Chandelier Trap"},{"c":51,"s":22,"id":10911,"u":"false%20door%20trap_aoe4","p":23,"h":1,"n":"False Door Trap"},{"c":51,"s":22,"id":10912,"u":"poisoned%20dart%20statues_aoe4","p":30,"h":1,"n":"Poisoned Dart Statues"},{"c":51,"s":22,"id":10913,"u":"supplicant%20statues_aoe4","p":9,"h":1,"n":"Supplicant Statues"},{"c":51,"s":22,"id":10914,"u":"waxworks%20onslaught%20trap_aoe4","p":60,"h":1,"n":"Waxworks Onslaught Trap"},{"c":51,"s":23,"id":10915,"u":"clockwork%20arms_aoe5","p":56,"h":1,"n":"Clockwork Arms"},{"c":51,"s":23,"id":10916,"u":"eyeball%20tank_aoe5","p":51,"h":1,"n":"Eyeball Tank"},{"c":51,"s":23,"id":10917,"u":"ink%20drowning%20vats_aoe5","p":49,"h":1,"n":"Ink Drowning Vats"},{"c":51,"s":23,"id":10918,"u":"the%20winder_aoe5","p":63,"h":1,"n":"The Winder"},{"c":51,"s":24,"id":10919,"u":"blackfingers's%20prayer_aoe6","p":49,"h":1,"n":"Blackfingers's Prayer"},{"c":51,"s":24,"id":10920,"u":"field%20of%20opposition_aoe6","p":53,"h":1,"n":"Field Of Opposition"},{"c":51,"s":24,"id":10921,"u":"freezing%20alarm_aoe6","p":37,"h":1,"n":"Freezing Alarm"},{"c":51,"s":24,"id":10922,"u":"greater%20planar%20rift_aoe6","p":30,"h":1,"n":"Greater Planar Rift"},{"c":51,"s":24,"id":10923,"u":"inky%20tendrils_aoe6","p":54,"h":1,"n":"Inky Tendrils"},{"c":51,"s":24,"id":10924,"u":"kharnas's%20lesser%20glyph_aoe6","p":29,"h":1,"n":"Kharnas's Lesser Glyph"},{"c":51,"s":24,"id":10925,"u":"living%20paints_aoe6","p":32,"h":1,"n":"Living Paints"},{"c":51,"s":24,"id":10926,"u":"the%20laughing%20fiend's%20greeting_aoe6","p":34,"h":1,"n":"The Laughing Fiend's Greeting"},{"c":51,"s":25,"id":10927,"u":"blood%20of%20belcorra_av1","p":13,"h":1,"n":"Blood Of Belcorra"},{"c":51,"s":25,"id":10928,"u":"doom%20of%20tomorrow_av1","p":31,"h":1,"n":"Doom Of Tomorrow"},{"c":51,"s":25,"id":10929,"u":"spike%20launcher_av1","p":25,"h":1,"n":"Spike Launcher"},{"c":51,"s":25,"id":10930,"u":"stonescale%20spirits_av1","p":9,"h":1,"n":"Stonescale Spirits"},{"c":51,"s":25,"id":10931,"u":"vengeful%20furnace_av1","p":46,"h":1,"n":"Vengeful Furnace"},{"c":51,"s":25,"id":10932,"u":"watching%20wall_av1","p":37,"h":1,"n":"Watching Wall"},{"c":51,"s":26,"id":10933,"u":"painful%20suggestion%20trap_av2","p":54,"h":1,"n":"Painful Suggestion Trap"},{"c":51,"s":26,"id":10934,"u":"paralyzing%20light%20trap_av2","p":52,"h":1,"n":"Paralyzing Light Trap"},{"c":51,"s":26,"id":10935,"u":"rusty%20grate%20pit_av2","p":12,"h":1,"n":"Rusty Grate Pit"},{"c":51,"s":26,"id":10936,"u":"shuffling%20scythe%20blades_av2","p":21,"h":1,"n":"Shuffling Scythe Blades"},{"c":51,"s":27,"id":10937,"u":"befuddling%20gas%20trap_av3","p":52,"h":1,"n":"Befuddling Gas Trap"},{"c":51,"s":27,"id":10938,"u":"blast%20tumbler_av3","p":45,"h":1,"n":"Blast Tumbler"},{"c":51,"s":27,"id":10939,"u":"daemonic%20fog_av3","p":38,"h":1,"n":"Daemonic Fog"},{"c":51,"s":27,"id":10940,"u":"images%20of%20failure_av3","p":55,"h":1,"n":"Images Of Failure"},{"c":51,"s":27,"id":10941,"u":"images%20of%20powerlessness_av3","p":55,"h":1,"n":"Images Of Powerlessness"},{"c":51,"s":28,"id":10942,"u":"catacomb%20cave-in_ec1","p":37,"h":1,"n":"Catacomb Cave-in"},{"c":51,"s":28,"id":10943,"u":"dream%20pollen%20pods_ec1","p":12,"h":1,"n":"Dream Pollen Pods"},{"c":51,"s":28,"id":10944,"u":"envenomed%20thorns%20trap_ec1","p":13,"h":1,"n":"Envenomed Thorns Trap"},{"c":51,"s":29,"id":10945,"u":"echoes%20of%20faith_ec2","p":29,"h":1,"n":"Echoes Of Faith"},{"c":51,"s":29,"id":10946,"u":"ghost%20crystal%20cloud_ec2","p":28,"h":1,"n":"Ghost Crystal Cloud"},{"c":51,"s":29,"id":10947,"u":"hallowed%20wheel_ec2","p":51,"h":1,"n":"Hallowed Wheel"},{"c":51,"s":29,"id":10948,"u":"krooth%20summoning%20rune_ec2","p":30,"h":1,"n":"Krooth Summoning Rune"},{"c":51,"s":29,"id":10949,"u":"masks%20of%20aroden's%20guises_ec2","p":37,"h":1,"n":"Masks Of Aroden's Guises"},{"c":51,"s":29,"id":10950,"u":"maze%20of%20mirrors_ec2","p":56,"h":1,"n":"Maze Of Mirrors"},{"c":51,"s":29,"id":10951,"u":"thunderstone%20cascade%20trap_ec2","p":14,"h":1,"n":"Thunderstone Cascade Trap"},{"c":51,"s":8,"id":10952,"u":"caustic%20dart%20trap_ec3","p":29,"h":1,"n":"Caustic Dart Trap"},{"c":51,"s":8,"id":10953,"u":"raving%20spirit_ec3","p":25,"h":1,"n":"Raving Spirit"},{"c":51,"s":30,"id":10954,"u":"buzzing%20latch%20rune_ec4","p":21,"h":1,"n":"Buzzing Latch Rune"},{"c":51,"s":30,"id":10955,"u":"explosive%20furniture%20trap_ec4","p":18,"h":1,"n":"Explosive Furniture Trap"},{"c":51,"s":30,"id":10956,"u":"mukradi%20summoning%20runes_ec4","p":35,"h":1,"n":"Mukradi Summoning Runes"},{"c":51,"s":30,"id":10957,"u":"poisoned%20secret%20door%20trap_ec4","p":36,"h":1,"n":"Poisoned Secret Door Trap"},{"c":51,"s":30,"id":10958,"u":"spiked%20barricade%20trap_ec4","p":45,"h":1,"n":"Spiked Barricade Trap"},{"c":51,"s":31,"id":10959,"u":"crushing%20gate%20trap_ec5","p":14,"h":1,"n":"Crushing Gate Trap"},{"c":51,"s":31,"id":10960,"u":"host%20of%20spirits_ec5","p":27,"h":1,"n":"Host Of Spirits"},{"c":51,"s":31,"id":10961,"u":"imperious%20darkside%20mirror_ec5","p":54,"h":1,"n":"Imperious Darkside Mirror"},{"c":51,"s":31,"id":10962,"u":"stabbing%20sentinel_ec5","p":53,"h":1,"n":"Stabbing Sentinel"},{"c":51,"s":31,"id":10963,"u":"witch-priests'%20curse_ec5","p":34,"h":1,"n":"Witch-priests' Curse"},{"c":51,"s":32,"id":10964,"u":"angry%20vegetation_ec6","p":41,"h":1,"n":"Angry Vegetation"},{"c":51,"s":32,"id":10965,"u":"axiomatic%20polymorph%20trap_ec6","p":49,"h":1,"n":"Axiomatic Polymorph Trap"},{"c":51,"s":32,"id":10966,"u":"convergence%20lattice_ec6","p":15,"h":1,"n":"Convergence Lattice"},{"c":51,"s":32,"id":10967,"u":"guthallath%20rockslide_ec6","p":25,"h":1,"n":"Guthallath Rockslide"},{"c":51,"s":32,"id":10968,"u":"suffering%20xulgaths_ec6","p":22,"h":1,"n":"Suffering Xulgaths"},{"c":51,"s":32,"id":10969,"u":"thief's%20trap_ec6","p":36,"h":1,"n":"Thief's Trap"},{"c":51,"s":33,"id":10970,"u":"falling%20debris_fop","p":18,"h":1,"n":"Falling Debris"},{"c":51,"s":33,"id":10971,"u":"ice%20fall%20trap_fop","p":41,"h":1,"n":"Ice Fall Trap"},{"c":51,"s":33,"id":10972,"u":"poisoned%20lock_fop","p":19,"h":1,"n":"Poisoned Lock"},{"c":51,"s":33,"id":10973,"u":"spear%20launcher_fop","p":17,"h":1,"n":"Spear Launcher"},{"c":51,"s":34,"id":10974,"u":"broken%20rebus%20attack_frp1","p":15,"h":1,"n":"Broken Rebus Attack"},{"c":51,"s":34,"id":10975,"u":"sand%20whirlwind_frp1","p":18,"h":1,"n":"Sand Whirlwind"},{"c":51,"s":34,"id":10976,"u":"wronged%20monk's%20wrath_frp1","p":17,"h":1,"n":"Wronged Monk's Wrath"},{"c":51,"s":35,"id":10977,"u":"air%20rift_frp2","p":17,"h":1,"n":"Air Rift"},{"c":51,"s":35,"id":10978,"u":"collapsing%20structure_frp2","p":88,"h":1,"n":"Collapsing Structure"},{"c":51,"s":35,"id":10979,"u":"floating%20flamethrower_frp2","p":44,"h":1,"n":"Floating Flamethrower"},{"c":51,"s":35,"id":10980,"u":"freezing%20floor%20tiles_frp2","p":45,"h":1,"n":"Freezing Floor Tiles"},{"c":51,"s":35,"id":10981,"u":"mogaru's%20breath_frp2","p":89,"h":1,"n":"Mogaru's Breath"},{"c":51,"s":35,"id":10982,"u":"quaking%20footfalls_frp2","p":88,"h":1,"n":"Quaking Footfalls"},{"c":51,"s":35,"id":10983,"u":"swatting%20tail_frp2","p":89,"h":1,"n":"Swatting Tail"},{"c":51,"s":36,"id":10984,"u":"dimensional%20darkside%20mirror_frp3","p":44,"h":1,"n":"Dimensional Darkside Mirror"},{"c":51,"s":2,"id":10985,"u":"instant%20privacy%20fence_g%26g","p":81,"h":1,"n":"Instant Privacy Fence"},{"c":51,"s":2,"id":10986,"u":"malevolant%20mannequins_g%26g","p":81,"h":1,"n":"Malevolant Mannequins"},{"c":51,"s":2,"id":10987,"u":"steam%20vents_g%26g","p":81,"h":1,"n":"Steam Vents"},{"c":51,"s":37,"id":10988,"u":"precarious%20pile_ltiba","p":3,"h":1,"n":"Precarious Pile"},{"c":51,"s":38,"id":10989,"u":"angazhan's%20rake%20trap_sli","p":29,"h":1,"n":"Angazhan's Rake Trap"},{"c":51,"s":38,"id":10990,"u":"fiendripping%20blast%20trap_sli","p":32,"h":1,"n":"Fiendripping Blast Trap"},{"c":51,"s":38,"id":10991,"u":"scroll%20shock%20trap_sli","p":47,"h":1,"n":"Scroll Shock Trap"},{"c":51,"s":38,"id":10992,"u":"stalker%20summoning%20rune_sli","p":15,"h":1,"n":"Stalker Summoning Rune"},{"c":51,"s":39,"id":10993,"u":"centipede%20carcasses%20trap_sot1","p":50,"h":1,"n":"Centipede Carcasses Trap"},{"c":51,"s":40,"id":10994,"u":"agitated%20carnivorous%20plants_sot2","p":36,"h":1,"n":"Agitated Carnivorous Plants"},{"c":51,"s":40,"id":10995,"u":"boulder%20deadfall%20trap_sot2","p":40,"h":1,"n":"Boulder Deadfall Trap"},{"c":51,"s":40,"id":10996,"u":"electrified%20water%20ward_sot2","p":57,"h":1,"n":"Electrified Water Ward"},{"c":51,"s":40,"id":10997,"u":"serpent%20ward_sot2","p":9,"h":1,"n":"Serpent Ward"},{"c":51,"s":41,"id":10998,"u":"collapsing%20porch_tio","p":14,"h":1,"n":"Collapsing Porch"},{"c":51,"s":41,"id":10999,"u":"magic%20starknives%20trap_tio","p":28,"h":1,"n":"Magic Starknives Trap"},{"c":51,"s":41,"id":11000,"u":"nightmare%20terrain_tio","p":41,"h":1,"n":"Nightmare Terrain"},{"c":51,"s":41,"id":11001,"u":"tongues%20of%20flame_tio","p":44,"h":1,"n":"Tongues Of Flame"},{"c":51,"s":41,"id":11002,"u":"viper%20urn_tio","p":31,"h":1,"n":"Viper Urn"},{"c":51,"s":41,"id":11003,"u":"web%20lurker%20noose_tio","p":17,"h":1,"n":"Web Lurker Noose"},{"c":13,"s":5,"id":11004,"u":"ability%20modifiers_crb","p":20,"h":1,"n":"1-1: Ability Modifiers"},{"c":13,"s":5,"id":11005,"u":"adventuring%20gear_crb","p":288,"h":1,"n":"6-9: Adventuring Gear"},{"c":13,"s":5,"id":11006,"u":"alchemical%20gear_crb","p":292,"h":1,"n":"6-11: Alchemical Gear"},{"c":13,"s":5,"id":11007,"u":"alignment%20aura_crb","p":328,"h":1,"n":"Alignment Aura"},{"c":13,"s":5,"id":11008,"u":"animal%20instincts_crb","p":86,"h":1,"n":"3-3: Animal Instincts"},{"c":13,"s":5,"id":11009,"u":"animals_crb","p":294,"h":1,"n":"6-17: Animals"},{"c":13,"s":5,"id":11010,"u":"armor_crb","p":275,"h":1,"n":"6-4: Armor"},{"c":13,"s":5,"id":11011,"u":"armor%20upgrade%20prices_crb","p":582,"h":1,"n":"11-5: Armor Upgrade Prices"},{"c":13,"s":5,"id":11012,"u":"barding_crb","p":294,"h":1,"n":"6-18: Barding"},{"c":13,"s":5,"id":11013,"u":"basic%20services%20and%20consumables_crb","p":294,"h":1,"n":"6-14: Basic Services and Consumables"},{"c":13,"s":5,"id":11014,"u":"bulk%20conversions_crb","p":295,"h":1,"n":"6-19: Bulk conversions"},{"c":13,"s":5,"id":11015,"u":"bulk%20of%20creatures_crb","p":273,"h":1,"n":"Bulk of Creatures"},{"c":13,"s":5,"id":11016,"u":"changing%20equipment_crb","p":274,"h":1,"n":"6-2: Changing Equipment"},{"c":13,"s":5,"id":11017,"u":"character%20wealth_crb","p":511,"h":1,"n":"10-10: Character Wealth"},{"c":13,"s":5,"id":11018,"u":"climb%20and%20swim%20distance_crb","p":242,"h":1,"n":"4-4: Climb and Swim Distance"},{"c":13,"s":5,"id":11019,"u":"coin%20values_crb","p":271,"h":1,"n":"6-1: Coin Values"},{"c":13,"s":5,"id":11020,"u":"common%20languages_crb","p":65,"h":1,"n":"2-1: Common Languages"},{"c":13,"s":5,"id":11021,"u":"cost%20of%20living_crb","p":294,"h":1,"n":"6-16: Cost of Living"},{"c":13,"s":5,"id":11022,"u":"creature%20creation%20rituals_crb","p":408,"h":1,"n":"7-1: Creature Creation Rituals"},{"c":13,"s":5,"id":11023,"u":"creature%20identification%20skills_crb","p":506,"h":1,"n":"10-7: Creature Identification Skills"},{"c":13,"s":5,"id":11024,"u":"creature%20xp%20and%20role_crb","p":489,"h":1,"n":"10-2: Creature XP and Role"},{"c":13,"s":5,"id":11025,"u":"damaging%20armor_crb","p":276,"h":1,"n":"Damaging Armor"},{"c":13,"s":5,"id":11026,"u":"dc%20adjustments_crb","p":504,"h":1,"n":"10-6: DC Adjustments"},{"c":13,"s":5,"id":11027,"u":"dcs%20by%20level_crb","p":503,"h":1,"n":"10-5: DCs by Level"},{"c":13,"s":5,"id":11028,"u":"differently%20sized%20items_crb","p":295,"h":1,"n":"6-20: Differently Sized Items"},{"c":13,"s":5,"id":11029,"u":"domains_crb","p":441,"h":1,"n":"8-2: Domains"},{"c":13,"s":5,"id":11030,"u":"dragon%20instincts_crb","p":86,"h":1,"n":"3-4: Dragon Instincts"},{"c":13,"s":5,"id":11031,"u":"encounter%20budget_crb","p":489,"h":1,"n":"10-1: Encounter Budget"},{"c":13,"s":5,"id":11032,"u":"enviromental%20damage_crb","p":512,"h":1,"n":"10-11: Enviromental Damage"},{"c":13,"s":5,"id":11033,"u":"enviromental%20features_crb","p":513,"h":1,"n":"10-12: Enviromental Features"},{"c":13,"s":5,"id":11034,"u":"formulas_crb","p":293,"h":1,"n":"6-13: Formulas"},{"c":13,"s":5,"id":11035,"u":"fundamental%20runes_crb","p":580,"h":1,"n":"Fundamental Runes"},{"c":13,"s":5,"id":11036,"u":"general%20feats_crb","p":255,"h":1,"n":"5-1: General Feats"},{"c":13,"s":5,"id":11037,"u":"general%20skill%20feats_crb","p":255,"h":1,"n":"5-2: General Skill Feats"},{"c":13,"s":5,"id":11038,"u":"hazard%20xp_crb","p":521,"h":1,"n":"10-14: Hazard XP"},{"c":13,"s":5,"id":11039,"u":"income%20earned_crb","p":236,"h":1,"n":"4-2: Income Earned"},{"c":13,"s":5,"id":11040,"u":"learning%20a%20spell_crb","p":238,"h":1,"n":"4-3: Learning a Spell"},{"c":13,"s":5,"id":11041,"u":"magical%20gear_crb","p":293,"h":1,"n":"6-12: Magical Gear"},{"c":13,"s":5,"id":11042,"u":"material%20hardness%2c%20hit%20points%2c%20and%20broken%20threshold_crb","p":577,"h":1,"n":"11-4: Material Hardness, Hit Points, and Broken Threshold"},{"c":13,"s":5,"id":11043,"u":"melee%20weapons_crb","p":280,"h":1,"n":"6-7: Melee Weapons"},{"c":13,"s":5,"id":11044,"u":"monk%20unarmed%20attacks_crb","p":159,"h":1,"n":"Monk Unarmed Attacks"},{"c":13,"s":5,"id":11045,"u":"party%20treasure%20by%20level_crb","p":509,"h":1,"n":"10-9: Party Treasure by Level"},{"c":13,"s":5,"id":11046,"u":"ranged%20weapons_crb","p":280,"h":1,"n":"6-8: Ranged Weapons"},{"c":13,"s":5,"id":11047,"u":"regional%20languages_crb","p":432,"h":1,"n":"8-1: Regional Languages"},{"c":13,"s":5,"id":11048,"u":"rituals%20by%20level_crb","p":409,"h":1,"n":"7-2: Rituals by Level"},{"c":13,"s":5,"id":11049,"u":"scroll%20statistics_crb","p":565,"h":1,"n":"11-3: Scroll Statistics"},{"c":13,"s":5,"id":11050,"u":"secret%20language_crb","p":65,"h":1,"n":"2-3: Secret Language"},{"c":13,"s":5,"id":11051,"u":"shields_crb","p":277,"h":1,"n":"6-5: Shields"},{"c":13,"s":5,"id":11052,"u":"simple%20dcs_crb","p":503,"h":1,"n":"10-4: Simple DCs"},{"c":13,"s":5,"id":11053,"u":"size%20and%20reach_crb","p":474,"h":1,"n":"9-1: Size and Reach"},{"c":13,"s":5,"id":11054,"u":"skills%2c%20key%20abilities%2c%20and%20actions_crb","p":235,"h":1,"n":"4-1: Skills, Key Abilities, and Actions"},{"c":13,"s":5,"id":11055,"u":"spellcasting%20services_crb","p":294,"h":1,"n":"6-15: Spellcasting Services"},{"c":13,"s":5,"id":11056,"u":"temperature%20effects_crb","p":518,"h":1,"n":"10-13: Temperature Effects"},{"c":13,"s":5,"id":11057,"u":"the%20nine%20alignments_crb","p":29,"h":1,"n":"1-2: The Nine Alignments"},{"c":13,"s":5,"id":11058,"u":"travel%20speed_crb","p":479,"h":1,"n":"9-2: Travel Speed"},{"c":13,"s":5,"id":11059,"u":"unarmed%20attacks_crb","p":280,"h":1,"n":"6-6: Unarmed Attacks"},{"c":13,"s":5,"id":11060,"u":"unarmored%20defense_crb","p":275,"h":1,"n":"6-3: Unarmored Defense"},{"c":13,"s":5,"id":11061,"u":"uncommon%20adventuring%20gear_crb","p":288,"h":1,"n":"6-10: Uncommon Adventuring Gear"},{"c":13,"s":5,"id":11062,"u":"uncommon%20languages_crb","p":65,"h":1,"n":"2-2: Uncommon Languages"},{"c":13,"s":5,"id":11063,"u":"watches%20and%20rest_crb","p":500,"h":1,"n":"10-3: Watches and Rest"},{"c":13,"s":5,"id":11064,"u":"weapon%20upgrade%20price_crb","p":582,"h":1,"n":"11-6: Weapon Upgrade Price"},{"c":13,"s":5,"id":11065,"u":"xp%20awards_crb","p":508,"h":1,"n":"10-8: XP Awards"},{"c":13,"s":12,"id":11066,"u":"automatic%20bonus%20progression_gmg","p":196,"h":1,"n":"4-11: Automatic Bonus Progression"},{"c":13,"s":12,"id":11067,"u":"cost%20to%20increase%20rank_gmg","p":199,"h":1,"n":"4-20: Cost to Increase Rank"},{"c":13,"s":12,"id":11068,"u":"creature%20xp%20(no%20level)_gmg","p":198,"h":1,"n":"4-18: Creature XP (No Level)"},{"c":13,"s":12,"id":11069,"u":"devastating%20weapons_gmg","p":197,"h":1,"n":"4-14: Devastating Weapons"},{"c":13,"s":12,"id":11070,"u":"high-quality%20armor_gmg","p":197,"h":1,"n":"4-13: High-Quality Armor"},{"c":13,"s":12,"id":11071,"u":"high-quality%20skill%20item_gmg","p":197,"h":1,"n":"4-16: High-Quality Skill Item"},{"c":13,"s":12,"id":11072,"u":"high-quality%20weapons_gmg","p":197,"h":1,"n":"4-12: High-Quality Weapons"},{"c":13,"s":12,"id":11073,"u":"resilient%20armor_gmg","p":197,"h":1,"n":"4-15: Resilient Armor"},{"c":13,"s":12,"id":11074,"u":"simple%20skill%20dcs%20(no%20level)_gmg","p":198,"h":1,"n":"4-17: Simple Skill DCs (No Level)"},{"c":13,"s":12,"id":11075,"u":"skill%20points%20by%20level_gmg","p":199,"h":1,"n":"4-19: Skill Points by Level"},{"c":13,"s":12,"id":11076,"u":"stamina%20and%20hit%20points%20by%20class_gmg","p":200,"h":1,"n":"4-20: Stamina and Hit Points by Class"},{"c":13,"s":2,"id":11077,"u":"innovation%20armor%20statistics_g%26g","p":16,"h":1,"n":"2-2: Innovation Armor Statistics"},{"c":13,"s":51,"id":11078,"u":"domains_logm","p":112,"h":1,"n":"1: Domains"},{"c":13,"s":49,"id":11079,"u":"wellspring%20surges_som","p":250,"h":1,"n":"5-2: Wellspring Surges"},{"c":8,"s":4,"id":11080,"u":"clue%20in_apg","p":56,"h":1,"n":"Clue In"},{"c":8,"s":4,"id":11081,"u":"confident%20finisher_apg","p":85,"h":1,"n":"Confident Finisher"},{"c":8,"s":4,"id":11082,"u":"destructive%20vengeance_apg","p":116,"h":1,"n":"Destructive Vengeance"},{"c":8,"s":4,"id":11083,"u":"devise%20a%20stratagem_apg","p":56,"h":1,"n":"Devise a Stratagem"},{"c":8,"s":4,"id":11084,"u":"expeditious%20inspection_apg","p":57,"h":1,"n":"Expeditious Inspection"},{"c":8,"s":4,"id":11085,"u":"iron%20command_apg","p":116,"h":1,"n":"Iron Command"},{"c":8,"s":4,"id":11086,"u":"opportune%20riposte_apg","p":86,"h":1,"n":"Opportune Riposte"},{"c":8,"s":4,"id":11087,"u":"pointed%20question_apg","p":58,"h":1,"n":"Pointed Question"},{"c":8,"s":4,"id":11088,"u":"pursue%20a%20lead_apg","p":56,"h":1,"n":"Pursue a Lead"},{"c":8,"s":4,"id":11089,"u":"quick%20tincture_apg","p":57,"h":1,"n":"Quick Tincture"},{"c":8,"s":4,"id":11090,"u":"selfish%20shield_apg","p":116,"h":1,"n":"Selfish Shield"},{"c":8,"s":4,"id":11091,"u":"tail%20toxin_apg","p":14,"h":1,"n":"Tail Toxin"},{"c":8,"s":5,"id":11092,"u":"activate%20an%20item_crb","p":532,"h":1,"n":"Activate an Item"},{"c":8,"s":5,"id":11093,"u":"administer%20first%20aid_crb","p":248,"h":1,"n":"Administer First Aid"},{"c":8,"s":5,"id":11094,"u":"affix%20a%20talisman_crb","p":565,"h":1,"n":"Affix a Talisman"},{"c":8,"s":5,"id":11095,"u":"aid_crb","p":470,"h":1,"n":"Aid"},{"c":8,"s":5,"id":11096,"u":"arrest%20a%20fall_crb","p":472,"h":1,"n":"Arrest a Fall"},{"c":8,"s":5,"id":11097,"u":"attack%20of%20opportunity_crb","p":474,"h":1,"n":"Attack of Opportunity"},{"c":8,"s":5,"id":11098,"u":"avert%20gaze_crb","p":472,"h":1,"n":"Avert Gaze"},{"c":8,"s":5,"id":11099,"u":"avoid%20notice_crb","p":479,"h":1,"n":"Avoid Notice"},{"c":8,"s":5,"id":11100,"u":"balance_crb","p":240,"h":1,"n":"Balance"},{"c":8,"s":5,"id":11101,"u":"borrow%20an%20arcane%20spell_crb","p":241,"h":1,"n":"Borrow an Arcane Spell"},{"c":8,"s":5,"id":11102,"u":"burrow_crb","p":472,"h":1,"n":"Burrow"},{"c":8,"s":5,"id":11103,"u":"call%20on%20ancient%20blood_crb","p":35,"h":1,"n":"Call on Ancient Blood"},{"c":8,"s":5,"id":11104,"u":"cast%20a%20spell_crb","p":302,"h":1,"n":"Cast a Spell"},{"c":8,"s":5,"id":11105,"u":"climb_crb","p":241,"h":1,"n":"Climb"},{"c":8,"s":5,"id":11106,"u":"coerce_crb","p":247,"h":1,"n":"Coerce"},{"c":8,"s":5,"id":11107,"u":"command%20an%20animal_crb","p":249,"h":1,"n":"Command an Animal"},{"c":8,"s":5,"id":11108,"u":"conceal%20an%20object_crb","p":251,"h":1,"n":"Conceal an Object"},{"c":8,"s":5,"id":11109,"u":"cover%20tracks_crb","p":252,"h":1,"n":"Cover Tracks"},{"c":8,"s":5,"id":11110,"u":"craft_crb","p":244,"h":1,"n":"Craft"},{"c":8,"s":5,"id":11111,"u":"crawl_crb","p":470,"h":1,"n":"Crawl"},{"c":8,"s":5,"id":11112,"u":"create%20a%20diversion_crb","p":245,"h":1,"n":"Create a Diversion"},{"c":8,"s":5,"id":11113,"u":"create%20forgery_crb","p":251,"h":1,"n":"Create Forgery"},{"c":8,"s":5,"id":11114,"u":"debilitating%20strike_crb","p":182,"h":1,"n":"Debilitating Strike"},{"c":8,"s":5,"id":11115,"u":"decipher%20writing_crb","p":234,"h":1,"n":"Decipher Writing"},{"c":8,"s":5,"id":11116,"u":"defend_crb","p":479,"h":1,"n":"Defend"},{"c":8,"s":5,"id":11117,"u":"delay_crb","p":470,"h":1,"n":"Delay"},{"c":8,"s":5,"id":11118,"u":"demoralize_crb","p":247,"h":1,"n":"Demoralize"},{"c":8,"s":5,"id":11119,"u":"detect%20magic_crb","p":479,"h":1,"n":"Detect Magic"},{"c":8,"s":5,"id":11120,"u":"disable%20a%20device_crb","p":253,"h":1,"n":"Disable a Device"},{"c":8,"s":5,"id":11121,"u":"disarm_crb","p":243,"h":1,"n":"Disarm"},{"c":8,"s":5,"id":11122,"u":"dismiss_crb","p":305,"h":1,"n":"Dismiss"},{"c":8,"s":5,"id":11123,"u":"drain%20bonded%20item_crb","p":205,"h":1,"n":"Drain Bonded Item"},{"c":8,"s":5,"id":11124,"u":"drop%20prone_crb","p":470,"h":1,"n":"Drop Prone"},{"c":8,"s":5,"id":11125,"u":"earn%20income_crb","p":236,"h":1,"n":"Earn Income"},{"c":8,"s":5,"id":11126,"u":"escape_crb","p":470,"h":1,"n":"Escape"},{"c":8,"s":5,"id":11127,"u":"feint_crb","p":246,"h":1,"n":"Feint"},{"c":8,"s":5,"id":11128,"u":"flurry%20of%20blows_crb","p":156,"h":1,"n":"Flurry of Blows"},{"c":8,"s":5,"id":11129,"u":"fly_crb","p":305,"h":1,"n":"Fly"},{"c":8,"s":5,"id":11130,"u":"follow%20the%20expert_crb","p":479,"h":1,"n":"Follow the Expert"},{"c":8,"s":5,"id":11131,"u":"force%20open_crb","p":242,"h":1,"n":"Force Open"},{"c":8,"s":5,"id":11132,"u":"gather%20information_crb","p":246,"h":1,"n":"Gather Information"},{"c":8,"s":5,"id":11133,"u":"glimpse%20of%20redemption_crb","p":107,"h":1,"n":"Glimpse of Redemption"},{"c":8,"s":5,"id":11134,"u":"grab%20an%20edge_crb","p":472,"h":1,"n":"Grab an Edge"},{"c":8,"s":5,"id":11135,"u":"grapple_crb","p":242,"h":1,"n":"Grapple"},{"c":8,"s":5,"id":11136,"u":"hide_crb","p":251,"h":1,"n":"Hide"},{"c":8,"s":5,"id":11137,"u":"high%20jump_crb","p":242,"h":1,"n":"High Jump"},{"c":8,"s":5,"id":11138,"u":"hunt%20prey_crb","p":168,"h":1,"n":"Hunt Prey"},{"c":8,"s":5,"id":11139,"u":"hustle_crb","p":480,"h":1,"n":"Hustle"},{"c":8,"s":5,"id":11140,"u":"identify%20alchemy_crb","p":245,"h":1,"n":"Identify Alchemy"},{"c":8,"s":5,"id":11141,"u":"identify%20magic_crb","p":238,"h":1,"n":"Identify Magic"},{"c":8,"s":5,"id":11142,"u":"impersonate_crb","p":245,"h":1,"n":"Impersonate"},{"c":8,"s":5,"id":11143,"u":"interact_crb","p":470,"h":1,"n":"Interact"},{"c":8,"s":5,"id":11144,"u":"invest%20an%20item_crb","p":531,"h":1,"n":"Invest an Item"},{"c":8,"s":5,"id":11145,"u":"investigate_crb","p":480,"h":1,"n":"Investigate"},{"c":8,"s":5,"id":11146,"u":"invoke%20celestial%20privilege_crb","p":123,"h":1,"n":"Invoke Celestial Privilege"},{"c":8,"s":5,"id":11147,"u":"leap_crb","p":470,"h":1,"n":"Leap"},{"c":8,"s":5,"id":11148,"u":"learn%20a%20spell_crb","p":238,"h":1,"n":"Learn a Spell"},{"c":8,"s":5,"id":11149,"u":"liberating%20step_crb","p":107,"h":1,"n":"Liberating Step"},{"c":8,"s":5,"id":11150,"u":"lie_crb","p":246,"h":1,"n":"Lie"},{"c":8,"s":5,"id":11151,"u":"long%20jump_crb","p":242,"h":1,"n":"Long Jump"},{"c":8,"s":5,"id":11152,"u":"long-term%20rest_crb","p":481,"h":1,"n":"Long-Term Rest"},{"c":8,"s":5,"id":11153,"u":"make%20an%20impression_crb","p":246,"h":1,"n":"Make an Impression"},{"c":8,"s":5,"id":11154,"u":"maneuver%20in%20flight_crb","p":240,"h":1,"n":"Maneuver in Flight"},{"c":8,"s":5,"id":11155,"u":"master%20strike_crb","p":182,"h":1,"n":"Master Strike"},{"c":8,"s":5,"id":11156,"u":"mighty%20rage_crb","p":85,"h":1,"n":"Mighty Rage"},{"c":8,"s":5,"id":11157,"u":"mount_crb","p":472,"h":1,"n":"Mount"},{"c":8,"s":5,"id":11158,"u":"mutagenic%20flashback_crb","p":73,"h":1,"n":"Mutagenic Flashback"},{"c":8,"s":5,"id":11159,"u":"palm%20an%20object_crb","p":253,"h":1,"n":"Palm an Object"},{"c":8,"s":5,"id":11160,"u":"perform_crb","p":250,"h":1,"n":"Perform"},{"c":8,"s":5,"id":11161,"u":"pick%20a%20lock_crb","p":253,"h":1,"n":"Pick a Lock"},{"c":8,"s":5,"id":11162,"u":"point%20out_crb","p":472,"h":1,"n":"Point Out"},{"c":8,"s":5,"id":11163,"u":"quick%20alchemy_crb","p":72,"h":1,"n":"Quick Alchemy"},{"c":8,"s":5,"id":11164,"u":"rage_crb","p":84,"h":1,"n":"Rage"},{"c":8,"s":5,"id":11165,"u":"raise%20a%20shield_crb","p":472,"h":1,"n":"Raise a Shield"},{"c":8,"s":5,"id":11166,"u":"ready_crb","p":470,"h":1,"n":"Ready"},{"c":8,"s":5,"id":11167,"u":"recall%20knowledge_crb","p":239,"h":1,"n":"Recall Knowledge"},{"c":8,"s":5,"id":11168,"u":"refocus_crb","p":300,"h":1,"n":"Refocus"},{"c":8,"s":5,"id":11169,"u":"release_crb","p":470,"h":1,"n":"Release"},{"c":8,"s":5,"id":11170,"u":"repair_crb","p":243,"h":1,"n":"Repair"},{"c":8,"s":5,"id":11171,"u":"repeat%20a%20spell_crb","p":480,"h":1,"n":"Repeat a Spell"},{"c":8,"s":5,"id":11172,"u":"request_crb","p":247,"h":1,"n":"Request"},{"c":8,"s":5,"id":11173,"u":"retraining_crb","p":481,"h":1,"n":"Retraining"},{"c":8,"s":5,"id":11174,"u":"retributive%20strike_crb","p":107,"h":1,"n":"Retributive Strike"},{"c":8,"s":5,"id":11175,"u":"scout_crb","p":480,"h":1,"n":"Scout"},{"c":8,"s":5,"id":11176,"u":"search_crb","p":480,"h":1,"n":"Search"},{"c":8,"s":5,"id":11177,"u":"seek_crb","p":471,"h":1,"n":"Seek"},{"c":8,"s":5,"id":11178,"u":"sense%20direction_crb","p":252,"h":1,"n":"Sense Direction"},{"c":8,"s":5,"id":11179,"u":"sense%20motive_crb","p":471,"h":1,"n":"Sense Motive"},{"c":8,"s":5,"id":11180,"u":"shove_crb","p":243,"h":1,"n":"Shove"},{"c":8,"s":5,"id":11181,"u":"sneak_crb","p":252,"h":1,"n":"Sneak"},{"c":8,"s":5,"id":11182,"u":"squeeze_crb","p":241,"h":1,"n":"Squeeze"},{"c":8,"s":5,"id":11183,"u":"stand_crb","p":471,"h":1,"n":"Stand"},{"c":8,"s":5,"id":11184,"u":"steal_crb","p":253,"h":1,"n":"Steal"},{"c":8,"s":5,"id":11185,"u":"step_crb","p":471,"h":1,"n":"Step"},{"c":8,"s":5,"id":11186,"u":"stride_crb","p":471,"h":1,"n":"Stride"},{"c":8,"s":5,"id":11187,"u":"strike_crb","p":471,"h":1,"n":"Strike"},{"c":8,"s":5,"id":11188,"u":"subsist_crb","p":240,"h":1,"n":"Subsist"},{"c":8,"s":5,"id":11189,"u":"sustain%20a%20spell_crb","p":304,"h":1,"n":"Sustain a Spell"},{"c":8,"s":5,"id":11190,"u":"sustain%20an%20activation_crb","p":534,"h":1,"n":"Sustain an Activation"},{"c":8,"s":5,"id":11191,"u":"swim_crb","p":243,"h":1,"n":"Swim"},{"c":8,"s":5,"id":11192,"u":"take%20cover_crb","p":471,"h":1,"n":"Take Cover"},{"c":8,"s":5,"id":11193,"u":"track_crb","p":252,"h":1,"n":"Track"},{"c":8,"s":5,"id":11194,"u":"treat%20disease_crb","p":248,"h":1,"n":"Treat Disease"},{"c":8,"s":5,"id":11195,"u":"treat%20poison_crb","p":248,"h":1,"n":"Treat Poison"},{"c":8,"s":5,"id":11196,"u":"treat%20wounds_crb","p":248,"h":1,"n":"Treat Wounds"},{"c":8,"s":5,"id":11197,"u":"trip_crb","p":243,"h":1,"n":"Trip"},{"c":8,"s":5,"id":11198,"u":"tumble%20through_crb","p":240,"h":1,"n":"Tumble Through"},{"c":8,"s":12,"id":11199,"u":"board_gmg","p":175,"h":1,"n":"Board"},{"c":8,"s":12,"id":11200,"u":"bribe%20contact_gmg","p":163,"h":1,"n":"Bribe Contact"},{"c":8,"s":12,"id":11201,"u":"bullying%20press_gmg","p":167,"h":1,"n":"Bullying Press"},{"c":8,"s":12,"id":11202,"u":"change%20tradition%20focus_gmg","p":167,"h":1,"n":"Change Tradition Focus"},{"c":8,"s":12,"id":11203,"u":"deceptive%20sidestep_gmg","p":167,"h":1,"n":"Deceptive Sidestep"},{"c":8,"s":12,"id":11204,"u":"discover_gmg","p":151,"h":1,"n":"Discover"},{"c":8,"s":12,"id":11205,"u":"drive_gmg","p":175,"h":1,"n":"Drive"},{"c":8,"s":12,"id":11206,"u":"dueling%20counter_gmg","p":167,"h":1,"n":"Dueling Counter"},{"c":8,"s":12,"id":11207,"u":"forge%20documents_gmg","p":163,"h":1,"n":"Forge Documents"},{"c":8,"s":12,"id":11208,"u":"fortify%20camp_gmg","p":173,"h":1,"n":"Fortify Camp"},{"c":8,"s":12,"id":11209,"u":"gain%20contact_gmg","p":163,"h":1,"n":"Gain Contact"},{"c":8,"s":12,"id":11210,"u":"gossip_gmg","p":163,"h":1,"n":"Gossip"},{"c":8,"s":12,"id":11211,"u":"influence_gmg","p":151,"h":1,"n":"Influence"},{"c":8,"s":12,"id":11212,"u":"map%20the%20area_gmg","p":173,"h":1,"n":"Map the Area"},{"c":8,"s":12,"id":11213,"u":"rally_gmg","p":201,"h":1,"n":"Rally"},{"c":8,"s":12,"id":11214,"u":"reconnoiter_gmg","p":173,"h":1,"n":"Reconnoiter"},{"c":8,"s":12,"id":11215,"u":"research_gmg","p":154,"h":1,"n":"Research"},{"c":8,"s":12,"id":11216,"u":"run%20over_gmg","p":176,"h":1,"n":"Run Over"},{"c":8,"s":12,"id":11217,"u":"scout%20location_gmg","p":163,"h":1,"n":"Scout Location"},{"c":8,"s":12,"id":11218,"u":"secure%20disguises_gmg","p":163,"h":1,"n":"Secure Disguises"},{"c":8,"s":12,"id":11219,"u":"sense%20weakness_gmg","p":167,"h":1,"n":"Sense Weakness"},{"c":8,"s":12,"id":11220,"u":"stop_gmg","p":176,"h":1,"n":"Stop"},{"c":8,"s":12,"id":11221,"u":"take%20a%20breather_gmg","p":200,"h":1,"n":"Take a Breather"},{"c":8,"s":12,"id":11222,"u":"take%20control_gmg","p":176,"h":1,"n":"Take Control"},{"c":8,"s":12,"id":11223,"u":"travel_gmg","p":172,"h":1,"n":"Travel"},{"c":8,"s":2,"id":11224,"u":"accidental%20shot_g%26g","p":142,"h":1,"n":"Accidental Shot"},{"c":8,"s":2,"id":11225,"u":"automaton%20aim_g%26g","p":39,"h":1,"n":"Automaton Aim"},{"c":8,"s":2,"id":11226,"u":"clear%20a%20path_g%26g","p":110,"h":1,"n":"Clear a Path"},{"c":8,"s":2,"id":11227,"u":"covered%20reload_g%26g","p":109,"h":1,"n":"Covered Reload"},{"c":8,"s":2,"id":11228,"u":"dispelling%20bullet_g%26g","p":140,"h":1,"n":"Dispelling Bullet"},{"c":8,"s":2,"id":11229,"u":"drifter's%20wake_g%26g","p":109,"h":1,"n":"Drifter's Wake"},{"c":8,"s":2,"id":11230,"u":"energy%20shot_g%26g","p":140,"h":1,"n":"Energy Shot"},{"c":8,"s":2,"id":11231,"u":"explode_g%26g","p":19,"h":1,"n":"Explode"},{"c":8,"s":2,"id":11232,"u":"finish%20the%20job_g%26g","p":108,"h":1,"n":"Finish the Job"},{"c":8,"s":2,"id":11233,"u":"ghost%20shot_g%26g","p":110,"h":1,"n":"Ghost Shot"},{"c":8,"s":2,"id":11234,"u":"grim%20swagger_g%26g","p":109,"h":1,"n":"Grim Swagger"},{"c":8,"s":2,"id":11235,"u":"into%20the%20fray_g%26g","p":108,"h":1,"n":"Into the Fray"},{"c":8,"s":2,"id":11236,"u":"living%20fortification_g%26g","p":110,"h":1,"n":"Living Fortification"},{"c":8,"s":2,"id":11237,"u":"one%20shot%2c%20one%20kill_g%26g","p":110,"h":1,"n":"One Shot, One Kill"},{"c":8,"s":2,"id":11238,"u":"overdrive_g%26g","p":16,"h":1,"n":"Overdrive"},{"c":8,"s":2,"id":11239,"u":"pistolero's%20retort_g%26g","p":108,"h":1,"n":"Pistolero's Retort"},{"c":8,"s":2,"id":11240,"u":"raconteur's%20reload_g%26g","p":109,"h":1,"n":"Raconteur's Reload"},{"c":8,"s":2,"id":11241,"u":"recall%20ammunition_g%26g","p":140,"h":1,"n":"Recall Ammunition"},{"c":8,"s":2,"id":11242,"u":"reloading%20strike_g%26g","p":108,"h":1,"n":"Reloading Strike"},{"c":8,"s":2,"id":11243,"u":"siegebreaker_g%26g","p":110,"h":1,"n":"Siegebreaker"},{"c":8,"s":2,"id":11244,"u":"spinning%20crush_g%26g","p":110,"h":1,"n":"Spinning Crush"},{"c":8,"s":2,"id":11245,"u":"ten%20paces_g%26g","p":109,"h":1,"n":"Ten Paces"},{"c":8,"s":2,"id":11246,"u":"thoughtful%20reload_g%26g","p":140,"h":1,"n":"Thoughtful Reload"},{"c":8,"s":2,"id":11247,"u":"vital%20shot_g%26g","p":108,"h":1,"n":"Vital Shot"},{"c":8,"s":1,"id":11248,"u":"change%20shape%20(kitsune)_loag","a":"kitsune","h":1,"n":"Change Shape"},{"c":8,"s":1,"id":11249,"u":"change%20shape%20(beastkin)_loag","p":79,"a":"Beastkin","h":1,"n":"Change Shape"},{"c":8,"s":1,"id":11250,"u":"conduct%20energy_loag","p":139,"h":1,"n":"Conduct Energy"},{"c":8,"s":1,"id":11251,"u":"invigorating%20fear_loag","p":123,"h":1,"n":"Invigorating Fear"},{"c":8,"s":6,"id":11252,"u":"energy%20emanation_locg","p":19,"h":1,"n":"Energy Emanation"},{"c":8,"s":6,"id":11253,"u":"threatening%20approach_locg","p":57,"h":1,"n":"Threatening Approach"},{"c":8,"s":0,"id":11254,"u":"anadi%20venom_lome","p":119,"h":1,"n":"Anadi Venom"},{"c":8,"s":0,"id":11255,"u":"barbed%20quills_lome","p":123,"h":1,"n":"Barbed Quills"},{"c":8,"s":0,"id":11256,"u":"call%20to%20axis_lome","p":107,"h":1,"n":"Call to Axis"},{"c":8,"s":0,"id":11257,"u":"toxic%20skin_lome","p":119,"h":1,"n":"Toxic Skin"},{"c":8,"s":49,"id":11258,"u":"act%20together_som","p":53,"h":1,"n":"Act Together"},{"c":8,"s":49,"id":11259,"u":"affix%20a%20fulu_som","p":158,"h":1,"n":"Affix a Fulu"},{"c":8,"s":49,"id":11260,"u":"arcane%20cascade_som","p":38,"h":1,"n":"Arcane Cascade"},{"c":8,"s":49,"id":11261,"u":"cleanse%20soul%20path_som","p":234,"h":1,"n":"Cleanse Soul Path"},{"c":8,"s":49,"id":11262,"u":"learn%20name_som","p":245,"h":1,"n":"Learn Name"},{"c":8,"s":49,"id":11263,"u":"manifest%20eidolon_som","p":52,"h":1,"n":"Manifest Eidolon"},{"c":8,"s":49,"id":11264,"u":"share%20senses_som","p":53,"h":1,"n":"Share Senses"},{"c":8,"s":49,"id":11265,"u":"spellstrike_som","p":37,"h":1,"n":"Spellstrike"},{"c":8,"s":49,"id":11266,"u":"tap%20ley%20line_som","p":215,"h":1,"n":"Tap Ley Line"},{"c":8,"s":39,"id":11267,"u":"cram_sot1","p":63,"h":1,"n":"Cram"},{"c":8,"s":39,"id":11268,"u":"practical%20research_sot1","p":63,"h":1,"n":"Practical Research"},{"c":8,"s":39,"id":11269,"u":"study_sot1","p":63,"h":1,"n":"Study"},{"c":64,"s":9,"id":11270,"u":"all-around%20vision_bst","p":342,"h":1,"n":"All-Around Vision"},{"c":64,"s":9,"id":11271,"u":"aquatic%20ambush_bst","p":342,"h":1,"n":"Aquatic Ambush"},{"c":64,"s":9,"id":11272,"u":"at-will%20spells_bst","p":342,"h":1,"n":"At-Will Spells"},{"c":64,"s":9,"id":11273,"u":"attack%20of%20opportunity_bst","p":342,"h":1,"n":"Attack of Opportunity"},{"c":64,"s":9,"id":11274,"u":"aura_bst","p":342,"h":1,"n":"Aura"},{"c":64,"s":9,"id":11275,"u":"buck_bst","p":342,"h":1,"n":"Buck"},{"c":64,"s":9,"id":11276,"u":"catch%20rock_bst","p":342,"h":1,"n":"Catch Rock"},{"c":64,"s":9,"id":11277,"u":"change%20shape_bst","p":342,"h":1,"n":"Change Shape"},{"c":64,"s":9,"id":11278,"u":"constant%20spells_bst","p":342,"h":1,"n":"Constant Spells"},{"c":64,"s":9,"id":11279,"u":"constrict_bst","p":342,"h":1,"n":"Constrict"},{"c":64,"s":9,"id":11280,"u":"coven_bst","p":342,"h":1,"n":"Coven"},{"c":64,"s":9,"id":11281,"u":"curse%20of%20the%20werecreature_bst","p":329,"h":1,"n":"Curse of the Werecreature"},{"c":64,"s":9,"id":11282,"u":"darkvision_bst","p":343,"h":1,"n":"Darkvision"},{"c":64,"s":9,"id":11283,"u":"disease_bst","p":343,"h":1,"n":"Disease"},{"c":64,"s":9,"id":11284,"u":"engulf_bst","p":343,"h":1,"n":"Engulf"},{"c":64,"s":9,"id":11285,"u":"fast%20healing_bst","p":343,"h":1,"n":"Fast Healing"},{"c":64,"s":9,"id":11286,"u":"ferocity_bst","p":343,"h":1,"n":"Ferocity"},{"c":64,"s":9,"id":11287,"u":"frightful%20presence_bst","p":343,"h":1,"n":"Frightful Presence"},{"c":64,"s":9,"id":11288,"u":"golem%20antimagic_bst","p":184,"h":1,"n":"Golem Antimagic"},{"c":64,"s":9,"id":11289,"u":"grab_bst","p":343,"h":1,"n":"Grab"},{"c":64,"s":9,"id":11290,"u":"greater%20constrict_bst","p":343,"h":1,"n":"Greater Constrict"},{"c":64,"s":9,"id":11291,"u":"improved%20grab_bst","p":343,"h":1,"n":"Improved Grab"},{"c":64,"s":9,"id":11292,"u":"improved%20knockdown_bst","p":343,"h":1,"n":"Improved Knockdown"},{"c":64,"s":9,"id":11293,"u":"improved%20push_bst","p":343,"h":1,"n":"Improved Push"},{"c":64,"s":9,"id":11294,"u":"knockdown_bst","p":343,"h":1,"n":"Knockdown"},{"c":64,"s":9,"id":11295,"u":"lifesense_bst","p":343,"h":1,"n":"Lifesense"},{"c":64,"s":9,"id":11296,"u":"light%20blindness_bst","p":343,"h":1,"n":"Light Blindness"},{"c":64,"s":9,"id":11297,"u":"low-light%20vision_bst","p":343,"h":1,"n":"Low-Light Vision"},{"c":64,"s":9,"id":11298,"u":"moon%20frenzy_bst","p":329,"h":1,"n":"Moon Frenzy"},{"c":64,"s":9,"id":11299,"u":"poison_bst","p":343,"h":1,"n":"Poison"},{"c":64,"s":9,"id":11300,"u":"push_bst","p":343,"h":1,"n":"Push"},{"c":64,"s":9,"id":11301,"u":"regeneration_bst","p":343,"h":1,"n":"Regeneration"},{"c":64,"s":9,"id":11302,"u":"rend_bst","p":344,"h":1,"n":"Rend"},{"c":64,"s":9,"id":11303,"u":"retributive%20strike_bst","p":344,"h":1,"n":"Retributive Strike"},{"c":64,"s":9,"id":11304,"u":"scent_bst","p":344,"h":1,"n":"Scent"},{"c":64,"s":9,"id":11305,"u":"shield%20block_bst","p":344,"h":1,"n":"Shield Block"},{"c":64,"s":9,"id":11306,"u":"sneak%20attack_bst","p":344,"h":1,"n":"Sneak Attack"},{"c":64,"s":9,"id":11307,"u":"swallow%20whole_bst","p":344,"h":1,"n":"Swallow Whole"},{"c":64,"s":9,"id":11308,"u":"swarm%20mind_bst","p":344,"h":1,"n":"Swarm Mind"},{"c":64,"s":9,"id":11309,"u":"telepathy_bst","p":344,"h":1,"n":"Telepathy"},{"c":64,"s":9,"id":11310,"u":"throw%20rock_bst","p":344,"h":1,"n":"Throw Rock"},{"c":64,"s":9,"id":11311,"u":"trample_bst","p":344,"h":1,"n":"Trample"},{"c":64,"s":9,"id":11312,"u":"tremorsense_bst","p":344,"h":1,"n":"Tremorsense"},{"c":64,"s":9,"id":11313,"u":"wavesense_bst","p":344,"h":1,"n":"Wavesense"},{"c":64,"s":10,"id":11314,"u":"negative%20healing_bst2","p":305,"h":1,"n":"Negative Healing"},{"c":64,"s":12,"id":11315,"u":"butter%20up_gmg","p":204,"h":1,"n":"Butter Up"},{"c":64,"s":12,"id":11316,"u":"call%20your%20bluf_gmg","p":205,"h":1,"n":"Call Your Bluf"},{"c":64,"s":12,"id":11317,"u":"child%20care_gmg","p":205,"h":1,"n":"Child Care"},{"c":64,"s":12,"id":11318,"u":"find%20footing_gmg","p":205,"h":1,"n":"Find Footing"},{"c":64,"s":12,"id":11319,"u":"gone%20fishing_gmg","p":205,"h":1,"n":"Gone Fishing"},{"c":64,"s":12,"id":11320,"u":"local%20lore_gmg","p":205,"h":1,"n":"Local Lore"},{"c":64,"s":12,"id":11321,"u":"quick%20transcription_gmg","p":205,"h":1,"n":"Quick Transcription"},{"c":64,"s":24,"id":11322,"u":"warpwave_aoe6","p":81,"h":1,"n":"Warpwave"},{"c":65,"s":4,"id":11323,"u":"ysoki_apg","p":21,"h":1,"n":"Ysoki"},{"c":65,"s":9,"id":11324,"u":"alghollthu_bst","p":348,"h":1,"n":"Alghollthu"},{"c":65,"s":9,"id":11325,"u":"amurrun_bst","p":348,"h":1,"n":"Amurrun"},{"c":65,"s":9,"id":11326,"u":"arboreal_bst","p":348,"h":1,"n":"Arboreal"},{"c":65,"s":9,"id":11327,"u":"boggard_bst","p":348,"h":1,"n":"Boggard"},{"c":65,"s":9,"id":11328,"u":"caligni_bst","p":348,"h":1,"n":"Caligni"},{"c":65,"s":9,"id":11329,"u":"cyclops_bst","p":348,"h":1,"n":"Cyclops"},{"c":65,"s":9,"id":11330,"u":"daemonic_bst","p":348,"h":1,"n":"Daemonic"},{"c":65,"s":9,"id":11331,"u":"iruxi_bst","p":348,"h":1,"n":"Iruxi"},{"c":65,"s":9,"id":11332,"u":"protean_bst","p":348,"h":1,"n":"Protean"},{"c":65,"s":9,"id":11333,"u":"requian_bst","p":348,"h":1,"n":"Requian"},{"c":65,"s":9,"id":11334,"u":"sphinx_bst","p":348,"h":1,"n":"Sphinx"},{"c":65,"s":9,"id":11335,"u":"tengu_bst","p":310,"h":1,"n":"Tengu"},{"c":65,"s":9,"id":11336,"u":"utopian_bst","p":348,"h":1,"n":"Utopian"},{"c":65,"s":10,"id":11337,"u":"d'ziriak_bst2","p":311,"h":1,"n":"D'ziriak"},{"c":65,"s":10,"id":11338,"u":"destrachan_bst2","p":311,"h":1,"n":"Destrachan"},{"c":65,"s":10,"id":11339,"u":"grippli_bst2","p":311,"h":1,"n":"Grippli"},{"c":65,"s":10,"id":11340,"u":"jistkan_bst2","p":311,"h":1,"n":"Jistkan"},{"c":65,"s":10,"id":11341,"u":"jyoti_bst2","p":311,"h":1,"n":"Jyoti"},{"c":65,"s":11,"id":11342,"u":"adlet_bst3","p":311,"h":1,"n":"Adlet"},{"c":65,"s":11,"id":11343,"u":"girtabrilu_bst3","p":311,"h":1,"n":"Girtabrilu"},{"c":65,"s":11,"id":11344,"u":"grioth_bst3","p":311,"h":1,"n":"Grioth"},{"c":65,"s":11,"id":11345,"u":"kovintal_bst3","p":311,"h":1,"n":"Kovintal"},{"c":65,"s":11,"id":11346,"u":"mi-go_bst3","p":311,"h":1,"n":"Mi-Go"},{"c":65,"s":11,"id":11347,"u":"munavri_bst3","p":311,"h":1,"n":"Munavri"},{"c":65,"s":11,"id":11348,"u":"samsaran_bst3","p":311,"h":1,"n":"Samsaran"},{"c":65,"s":11,"id":11349,"u":"sasquatch_bst3","p":311,"h":1,"n":"Sasquatch"},{"c":65,"s":11,"id":11350,"u":"shae_bst3","p":311,"h":1,"n":"Shae"},{"c":65,"s":11,"id":11351,"u":"vanara_bst3","p":311,"h":1,"n":"Vanara"},{"c":65,"s":11,"id":11352,"u":"vishkanyan_bst3","p":311,"h":1,"n":"Vishkanyan"},{"c":65,"s":11,"id":11353,"u":"yithian_bst3","p":311,"h":1,"n":"Yithian"},{"c":65,"s":5,"id":11354,"u":"abyssal_crb","p":65,"h":1,"n":"Abyssal"},{"c":65,"s":5,"id":11355,"u":"aklo_crb","p":65,"h":1,"n":"Aklo"},{"c":65,"s":5,"id":11356,"u":"aquan_crb","p":65,"h":1,"n":"Aquan"},{"c":65,"s":5,"id":11357,"u":"auran_crb","p":65,"h":1,"n":"Auran"},{"c":65,"s":5,"id":11358,"u":"celestial_crb","p":65,"h":1,"n":"Celestial"},{"c":65,"s":5,"id":11359,"u":"common_crb","p":65,"h":1,"n":"Common"},{"c":65,"s":5,"id":11360,"u":"draconic_crb","p":65,"h":1,"n":"Draconic"},{"c":65,"s":5,"id":11361,"u":"druidic_crb","p":65,"h":1,"n":"Druidic"},{"c":65,"s":5,"id":11362,"u":"dwarven_crb","p":65,"h":1,"n":"Dwarven"},{"c":65,"s":5,"id":11363,"u":"elven_crb","p":65,"h":1,"n":"Elven"},{"c":65,"s":5,"id":11364,"u":"gnoll_crb","p":65,"h":1,"n":"Gnoll"},{"c":65,"s":5,"id":11365,"u":"gnomish_crb","p":65,"h":1,"n":"Gnomish"},{"c":65,"s":5,"id":11366,"u":"goblin_crb","p":65,"h":1,"n":"Goblin"},{"c":65,"s":5,"id":11367,"u":"halfling_crb","p":65,"h":1,"n":"Halfling"},{"c":65,"s":5,"id":11368,"u":"hallit_crb","p":432,"h":1,"n":"Hallit"},{"c":65,"s":5,"id":11369,"u":"ignan_crb","p":65,"h":1,"n":"Ignan"},{"c":65,"s":5,"id":11370,"u":"infernal_crb","p":65,"h":1,"n":"Infernal"},{"c":65,"s":5,"id":11371,"u":"jotun_crb","p":65,"h":1,"n":"Jotun"},{"c":65,"s":5,"id":11372,"u":"kelish_crb","p":432,"h":1,"n":"Kelish"},{"c":65,"s":5,"id":11373,"u":"mwangi_crb","p":432,"h":1,"n":"Mwangi"},{"c":65,"s":5,"id":11374,"u":"necril_crb","p":65,"h":1,"n":"Necril"},{"c":65,"s":5,"id":11375,"u":"orcish_crb","p":65,"h":1,"n":"Orcish"},{"c":65,"s":5,"id":11376,"u":"osiriani_crb","p":432,"h":1,"n":"Osiriani"},{"c":65,"s":5,"id":11377,"u":"shadowtongue_crb","p":65,"h":1,"n":"Shadowtongue"},{"c":65,"s":5,"id":11378,"u":"shoanti_crb","p":432,"h":1,"n":"Shoanti"},{"c":65,"s":5,"id":11379,"u":"skald_crb","p":432,"h":1,"n":"Skald"},{"c":65,"s":5,"id":11380,"u":"sylvan_crb","p":65,"h":1,"n":"Sylvan"},{"c":65,"s":5,"id":11381,"u":"terran_crb","p":65,"h":1,"n":"Terran"},{"c":65,"s":5,"id":11382,"u":"tien_crb","p":432,"h":1,"n":"Tien"},{"c":65,"s":5,"id":11383,"u":"undercommon_crb","p":65,"h":1,"n":"Undercommon"},{"c":65,"s":5,"id":11384,"u":"varisian_crb","p":432,"h":1,"n":"Varisian"},{"c":65,"s":5,"id":11385,"u":"vudrani_crb","p":432,"h":1,"n":"Vudrani"},{"c":65,"s":13,"id":11386,"u":"anadi_aoa1","p":84,"h":1,"n":"Anadi"},{"c":65,"s":15,"id":11387,"u":"strix_aoa3","p":72,"h":1,"n":"Strix"},{"c":65,"s":8,"id":11388,"u":"shoony_ec3","p":72,"h":1,"n":"Shoony"},{"c":65,"s":46,"id":11389,"u":"minatan_frp0","p":11,"h":1,"n":"Minatan"},{"c":65,"s":46,"id":11390,"u":"minkaian_frp0","p":11,"h":1,"n":"Minkaian"},{"c":65,"s":46,"id":11391,"u":"nagaji_frp0","p":11,"h":1,"n":"Nagaji"},{"c":65,"s":46,"id":11392,"u":"senzar_frp0","p":11,"h":1,"n":"Senzar"},{"c":65,"s":46,"id":11393,"u":"wayang_frp0","p":11,"h":1,"n":"Wayang"},{"c":65,"s":34,"id":11394,"u":"anugobu_frp1","p":80,"h":1,"n":"Anugobu"},{"c":65,"s":35,"id":11395,"u":"arcadian_frp2","p":34,"h":1,"n":"Arcadian"},{"c":65,"s":1,"id":11396,"u":"androffan_loag","p":69,"h":1,"n":"Androffan"},{"c":65,"s":0,"id":11397,"u":"calda_lome","p":265,"h":1,"n":"Calda"},{"c":65,"s":0,"id":11398,"u":"ekujae_lome","p":23,"h":1,"n":"Ekujae"},{"c":65,"s":0,"id":11399,"u":"goloma_lome","p":115,"h":1,"n":"Goloma"},{"c":65,"s":0,"id":11400,"u":"kibwani_lome","p":217,"h":1,"n":"Kibwani"},{"c":65,"s":0,"id":11401,"u":"lirgeni_lome","p":217,"h":1,"n":"Lirgeni"},{"c":65,"s":0,"id":11402,"u":"mzunu_lome","p":228,"h":1,"n":"Mzunu"},{"c":65,"s":0,"id":11403,"u":"ocotan_lome","p":23,"h":1,"n":"Ocotan"},{"c":65,"s":0,"id":11404,"u":"rasu_lome","p":23,"h":1,"n":"Rasu"},{"c":65,"s":0,"id":11405,"u":"shisk_lome","p":123,"h":1,"n":"Shisk"},{"c":65,"s":0,"id":11406,"u":"xanmba_lome","p":242,"h":1,"n":"Xanmba"},{"c":65,"s":48,"id":11407,"u":"ancient%20osirion_lowg","p":59,"h":1,"n":"Ancient Osirion"},{"c":65,"s":48,"id":11408,"u":"azlanti_lowg","p":60,"h":1,"n":"Azlanti"},{"c":65,"s":48,"id":11409,"u":"garundi_lowg","p":84,"h":1,"n":"Garundi"},{"c":65,"s":48,"id":11410,"u":"thassilonian_lowg","p":108,"h":1,"n":"Thassilonian"},{"c":4,"s":4,"id":11411,"u":"aasimar","p":266,"h":1,"n":"Aasimar"},{"c":4,"s":4,"id":11412,"u":"cursebound","p":267,"h":1,"n":"Cursebound"},{"c":4,"s":4,"id":11413,"u":"duskwalker","p":267,"h":1,"n":"Duskwalker"},{"c":4,"s":4,"id":11414,"u":"finisher","p":267,"h":1,"n":"Finisher"},{"c":4,"s":4,"id":11415,"u":"hex","p":101,"h":1,"n":"Hex"},{"c":4,"s":4,"id":11416,"u":"investigator","p":268,"h":1,"n":"Investigator"},{"c":4,"s":4,"id":11417,"u":"lineage","p":268,"h":1,"n":"Lineage"},{"c":4,"s":4,"id":11418,"u":"oracle","p":269,"h":1,"n":"Oracle"},{"c":4,"s":4,"id":11419,"u":"swashbuckler","p":270,"h":1,"n":"Swashbuckler"},{"c":4,"s":4,"id":11420,"u":"vigilante","p":271,"h":1,"n":"Vigilante"},{"c":4,"s":4,"id":11421,"u":"witch","p":271,"h":1,"n":"Witch"},{"c":4,"s":9,"id":11422,"u":"%5bmagical%20tradition%5d","p":342,"h":1,"n":"[Magical Tradition]"},{"c":4,"s":9,"id":11423,"u":"aeon","p":345,"h":1,"n":"Aeon"},{"c":4,"s":9,"id":11424,"u":"amphibious","p":345,"h":1,"n":"Amphibious"},{"c":4,"s":9,"id":11425,"u":"any","p":345,"h":1,"n":"Any"},{"c":4,"s":9,"id":11426,"u":"aquatic","p":345,"h":1,"n":"Aquatic"},{"c":4,"s":9,"id":11427,"u":"astral","p":345,"h":1,"n":"Astral"},{"c":4,"s":9,"id":11428,"u":"boggard","p":345,"h":1,"n":"Boggard"},{"c":4,"s":9,"id":11429,"u":"caligni","p":345,"h":1,"n":"Caligni"},{"c":4,"s":9,"id":11430,"u":"catfolk","p":345,"h":1,"n":"Catfolk"},{"c":4,"s":9,"id":11431,"u":"ce","p":345,"h":1,"n":"CE"},{"c":4,"s":9,"id":11432,"u":"cg","p":345,"h":1,"n":"CG"},{"c":4,"s":9,"id":11433,"u":"changeling","p":123,"h":1,"n":"Changeling"},{"c":4,"s":9,"id":11434,"u":"charm","p":77,"h":1,"n":"Charm"},{"c":4,"s":9,"id":11435,"u":"cn","p":345,"h":1,"n":"CN"},{"c":4,"s":9,"id":11436,"u":"daemon","p":346,"h":1,"n":"Daemon"},{"c":4,"s":9,"id":11437,"u":"dero","p":346,"h":1,"n":"Dero"},{"c":4,"s":9,"id":11438,"u":"dhampir","p":346,"h":1,"n":"Dhampir"},{"c":4,"s":9,"id":11439,"u":"fungus","p":345,"h":1,"n":"Fungus"},{"c":4,"s":9,"id":11440,"u":"gargantuan","p":345,"h":1,"n":"Gargantuan"},{"c":4,"s":9,"id":11441,"u":"genie","p":346,"h":1,"n":"Genie"},{"c":4,"s":9,"id":11442,"u":"ghost","p":346,"h":1,"n":"Ghost"},{"c":4,"s":9,"id":11443,"u":"ghoul","p":346,"h":1,"n":"Ghoul"},{"c":4,"s":9,"id":11444,"u":"gnoll","p":346,"h":1,"n":"Gnoll"},{"c":4,"s":9,"id":11445,"u":"golem","p":346,"h":1,"n":"Golem"},{"c":4,"s":9,"id":11446,"u":"gremlin","p":346,"h":1,"n":"Gremlin"},{"c":4,"s":9,"id":11447,"u":"huge","p":345,"h":1,"n":"Huge"},{"c":4,"s":9,"id":11448,"u":"incorporeal","p":346,"h":1,"n":"Incorporeal"},{"c":4,"s":9,"id":11449,"u":"inevitable","p":347,"h":1,"n":"Inevitable"},{"c":4,"s":9,"id":11450,"u":"kobold","p":347,"h":1,"n":"Kobold"},{"c":4,"s":9,"id":11451,"u":"large","p":345,"h":1,"n":"Large"},{"c":4,"s":9,"id":11452,"u":"le","p":345,"h":1,"n":"LE"},{"c":4,"s":9,"id":11453,"u":"leshy","p":347,"h":1,"n":"Leshy"},{"c":4,"s":9,"id":11454,"u":"lg","p":345,"h":1,"n":"LG"},{"c":4,"s":9,"id":11455,"u":"lizardfolk","p":347,"h":1,"n":"Lizardfolk"},{"c":4,"s":9,"id":11456,"u":"ln","p":345,"h":1,"n":"LN"},{"c":4,"s":9,"id":11457,"u":"medium","p":345,"h":1,"n":"Medium"},{"c":4,"s":9,"id":11458,"u":"merfolk","p":347,"h":1,"n":"Merfolk"},{"c":4,"s":9,"id":11459,"u":"mummy","p":347,"h":1,"n":"Mummy"},{"c":4,"s":9,"id":11460,"u":"mutant","p":347,"h":1,"n":"Mutant"},{"c":4,"s":9,"id":11461,"u":"n","p":345,"h":1,"n":"N"},{"c":4,"s":9,"id":11462,"u":"ne","p":345,"h":1,"n":"NE"},{"c":4,"s":9,"id":11463,"u":"ng","p":345,"h":1,"n":"NG"},{"c":4,"s":9,"id":11464,"u":"nymph","p":347,"h":1,"n":"Nymph"},{"c":4,"s":9,"id":11465,"u":"olfactory","p":168,"h":1,"n":"Olfactory"},{"c":4,"s":9,"id":11466,"u":"protean","p":347,"h":1,"n":"Protean"},{"c":4,"s":9,"id":11467,"u":"psychopomp","p":347,"h":1,"n":"Psychopomp"},{"c":4,"s":9,"id":11468,"u":"rakshasa","p":347,"h":1,"n":"Rakshasa"},{"c":4,"s":9,"id":11469,"u":"ranged%20trip","p":85,"h":1,"n":"Ranged Trip"},{"c":4,"s":9,"id":11470,"u":"ratfolk","p":347,"h":1,"n":"Ratfolk"},{"c":4,"s":9,"id":11471,"u":"sea%20devil","p":347,"h":1,"n":"Sea Devil"},{"c":4,"s":9,"id":11472,"u":"skeleton","p":347,"h":1,"n":"Skeleton"},{"c":4,"s":9,"id":11473,"u":"small","p":345,"h":1,"n":"Small"},{"c":4,"s":9,"id":11474,"u":"soulbound","p":347,"h":1,"n":"Soulbound"},{"c":4,"s":9,"id":11475,"u":"sprite","p":347,"h":1,"n":"Sprite"},{"c":4,"s":9,"id":11476,"u":"swarm","p":347,"h":1,"n":"Swarm"},{"c":4,"s":9,"id":11477,"u":"tengu","p":270,"h":1,"n":"Tengu"},{"c":4,"s":9,"id":11478,"u":"tethered","p":85,"h":1,"n":"Tethered"},{"c":4,"s":9,"id":11479,"u":"tiefling","p":270,"h":1,"n":"Tiefling"},{"c":4,"s":9,"id":11480,"u":"tiny","p":345,"h":1,"n":"Tiny"},{"c":4,"s":9,"id":11481,"u":"troll","p":347,"h":1,"n":"Troll"},{"c":4,"s":9,"id":11482,"u":"vampire","p":347,"h":1,"n":"Vampire"},{"c":4,"s":9,"id":11483,"u":"werecreature","p":347,"h":1,"n":"Werecreature"},{"c":4,"s":9,"id":11484,"u":"wight","p":332,"h":1,"n":"Wight"},{"c":4,"s":9,"id":11485,"u":"wraith","p":335,"h":1,"n":"Wraith"},{"c":4,"s":9,"id":11486,"u":"xulgath","p":347,"h":1,"n":"Xulgath"},{"c":4,"s":9,"id":11487,"u":"zombie","p":347,"h":1,"n":"Zombie"},{"c":4,"s":10,"id":11488,"u":"brutal","p":310,"h":1,"n":"Brutal"},{"c":4,"s":10,"id":11489,"u":"couatl","p":308,"h":1,"n":"Couatl"},{"c":4,"s":10,"id":11490,"u":"dream","p":308,"h":1,"n":"Dream"},{"c":4,"s":10,"id":11491,"u":"fetchling","p":308,"h":1,"n":"Fetchling"},{"c":4,"s":10,"id":11492,"u":"grippli","p":309,"h":1,"n":"Grippli"},{"c":4,"s":10,"id":11493,"u":"ifrit","p":308,"h":1,"n":"Ifrit"},{"c":4,"s":10,"id":11494,"u":"morlock","p":308,"h":1,"n":"Morlock"},{"c":4,"s":10,"id":11495,"u":"oni","p":309,"h":1,"n":"Oni"},{"c":4,"s":10,"id":11496,"u":"oread","p":309,"h":1,"n":"Oread"},{"c":4,"s":10,"id":11497,"u":"petitioner","p":309,"h":1,"n":"Petitioner"},{"c":4,"s":10,"id":11498,"u":"qlippoth","p":309,"h":1,"n":"Qlippoth"},{"c":4,"s":10,"id":11499,"u":"serpentfolk","p":309,"h":1,"n":"Serpentfolk"},{"c":4,"s":10,"id":11500,"u":"skulk","p":309,"h":1,"n":"Skulk"},{"c":4,"s":10,"id":11501,"u":"spriggan","p":310,"h":1,"n":"Spriggan"},{"c":4,"s":10,"id":11502,"u":"suli","p":310,"h":1,"n":"Suli"},{"c":4,"s":10,"id":11503,"u":"sylph","p":309,"h":1,"n":"Sylph"},{"c":4,"s":10,"id":11504,"u":"tane","p":310,"h":1,"n":"Tane"},{"c":4,"s":10,"id":11505,"u":"time","p":310,"h":1,"n":"Time"},{"c":4,"s":10,"id":11506,"u":"undine","p":310,"h":1,"n":"Undine"},{"c":4,"s":10,"id":11507,"u":"urdefhan","p":310,"h":1,"n":"Urdefhan"},{"c":4,"s":10,"id":11508,"u":"velstrac","p":310,"h":1,"n":"Velstrac"},{"c":4,"s":5,"id":11509,"u":"aberration","p":266,"h":1,"n":"Aberration"},{"c":4,"s":5,"id":11510,"u":"abjuration","p":628,"h":1,"n":"Abjuration"},{"c":4,"s":5,"id":11511,"u":"acid","p":628,"h":1,"n":"Acid"},{"c":4,"s":5,"id":11512,"u":"additive","p":75,"h":1,"n":"Additive"},{"c":4,"s":5,"id":11513,"u":"agile","p":282,"h":1,"n":"Agile"},{"c":4,"s":5,"id":11514,"u":"air","p":628,"h":1,"n":"Air"},{"c":4,"s":5,"id":11515,"u":"alchemical","p":628,"h":1,"n":"Alchemical"},{"c":4,"s":5,"id":11516,"u":"alchemist","p":628,"h":1,"n":"Alchemist"},{"c":4,"s":5,"id":11517,"u":"angel","p":628,"h":1,"n":"Angel"},{"c":4,"s":5,"id":11518,"u":"animal","p":628,"h":1,"n":"Animal"},{"c":4,"s":5,"id":11519,"u":"apex","p":628,"h":1,"n":"Apex"},{"c":4,"s":5,"id":11520,"u":"arcane","p":628,"h":1,"n":"Arcane"},{"c":4,"s":5,"id":11521,"u":"archetype","p":628,"h":1,"n":"Archetype"},{"c":4,"s":5,"id":11522,"u":"archon","p":628,"h":1,"n":"Archon"},{"c":4,"s":5,"id":11523,"u":"attached","p":282,"h":1,"n":"Attached"},{"c":4,"s":5,"id":11524,"u":"attack","p":629,"h":1,"n":"Attack"},{"c":4,"s":5,"id":11525,"u":"auditory","p":629,"h":1,"n":"Auditory"},{"c":4,"s":5,"id":11526,"u":"aura","p":629,"h":1,"n":"Aura"},{"c":4,"s":5,"id":11527,"u":"azata","p":629,"h":1,"n":"Azata"},{"c":4,"s":5,"id":11528,"u":"backstabber","p":282,"h":1,"n":"Backstabber"},{"c":4,"s":5,"id":11529,"u":"backswing","p":282,"h":1,"n":"Backswing"},{"c":4,"s":5,"id":11530,"u":"barbarian","p":629,"h":1,"n":"Barbarian"},{"c":4,"s":5,"id":11531,"u":"bard","p":629,"h":1,"n":"Bard"},{"c":4,"s":5,"id":11532,"u":"beast","p":629,"h":1,"n":"Beast"},{"c":4,"s":5,"id":11533,"u":"bomb","p":629,"h":1,"n":"Bomb"},{"c":4,"s":5,"id":11534,"u":"bulwark","p":274,"h":1,"n":"Bulwark"},{"c":4,"s":5,"id":11535,"u":"cantrip","p":629,"h":1,"n":"Cantrip"},{"c":4,"s":5,"id":11536,"u":"celestial","p":629,"h":1,"n":"Celestial"},{"c":4,"s":5,"id":11537,"u":"champion","p":629,"h":1,"n":"Champion"},{"c":4,"s":5,"id":11538,"u":"chaotic","p":629,"h":1,"n":"Chaotic"},{"c":4,"s":5,"id":11539,"u":"cleric","p":629,"h":1,"n":"Cleric"},{"c":4,"s":5,"id":11540,"u":"cold","p":629,"h":1,"n":"Cold"},{"c":4,"s":5,"id":11541,"u":"comfort","p":275,"h":1,"n":"Comfort"},{"c":4,"s":5,"id":11542,"u":"common","p":629,"h":1,"n":"Common"},{"c":4,"s":5,"id":11543,"u":"companion","p":629,"h":1,"n":"Companion"},{"c":4,"s":5,"id":11544,"u":"complex","p":629,"h":1,"n":"Complex"},{"c":4,"s":5,"id":11545,"u":"composition","p":629,"h":1,"n":"Composition"},{"c":4,"s":5,"id":11546,"u":"concentrate","p":630,"h":1,"n":"Concentrate"},{"c":4,"s":5,"id":11547,"u":"conjuration","p":630,"h":1,"n":"Conjuration"},{"c":4,"s":5,"id":11548,"u":"consecration","p":630,"h":1,"n":"Consecration"},{"c":4,"s":5,"id":11549,"u":"construct","p":630,"h":1,"n":"Construct"},{"c":4,"s":5,"id":11550,"u":"consumable","p":630,"h":1,"n":"Consumable"},{"c":4,"s":5,"id":11551,"u":"contact","p":550,"h":1,"n":"Contact"},{"c":4,"s":5,"id":11552,"u":"curse","p":630,"h":1,"n":"Curse"},{"c":4,"s":5,"id":11553,"u":"darkness","p":630,"h":1,"n":"Darkness"},{"c":4,"s":5,"id":11554,"u":"deadly","p":282,"h":1,"n":"Deadly"},{"c":4,"s":5,"id":11555,"u":"death","p":630,"h":1,"n":"Death"},{"c":4,"s":5,"id":11556,"u":"dedication","p":630,"h":1,"n":"Dedication"},{"c":4,"s":5,"id":11557,"u":"demon","p":630,"h":1,"n":"Demon"},{"c":4,"s":5,"id":11558,"u":"detection","p":630,"h":1,"n":"Detection"},{"c":4,"s":5,"id":11559,"u":"devil","p":630,"h":1,"n":"Devil"},{"c":4,"s":5,"id":11560,"u":"dinosaur","p":630,"h":1,"n":"Dinosaur"},{"c":4,"s":5,"id":11561,"u":"disarm","p":282,"h":1,"n":"Disarm"},{"c":4,"s":5,"id":11562,"u":"disease","p":631,"h":1,"n":"Disease"},{"c":4,"s":5,"id":11563,"u":"divination","p":631,"h":1,"n":"Divination"},{"c":4,"s":5,"id":11564,"u":"divine","p":631,"h":1,"n":"Divine"},{"c":4,"s":5,"id":11565,"u":"downtime","p":631,"h":1,"n":"Downtime"},{"c":4,"s":5,"id":11566,"u":"dragon","p":631,"h":1,"n":"Dragon"},{"c":4,"s":5,"id":11567,"u":"drow","p":631,"h":1,"n":"Drow"},{"c":4,"s":5,"id":11568,"u":"druid","p":631,"h":1,"n":"Druid"},{"c":4,"s":5,"id":11569,"u":"duergar","p":631,"h":1,"n":"Duergar"},{"c":4,"s":5,"id":11570,"u":"dwarf","p":631,"h":1,"n":"Dwarf"},{"c":4,"s":5,"id":11571,"u":"earth","p":631,"h":1,"n":"Earth"},{"c":4,"s":5,"id":11572,"u":"electricity","p":631,"h":1,"n":"Electricity"},{"c":4,"s":5,"id":11573,"u":"elemental","p":631,"h":1,"n":"Elemental"},{"c":4,"s":5,"id":11574,"u":"elf","p":631,"h":1,"n":"Elf"},{"c":4,"s":5,"id":11575,"u":"elixir","p":631,"h":1,"n":"Elixir"},{"c":4,"s":5,"id":11576,"u":"emotion","p":631,"h":1,"n":"Emotion"},{"c":4,"s":5,"id":11577,"u":"enchantment","p":631,"h":1,"n":"Enchantment"},{"c":4,"s":5,"id":11578,"u":"environmental","p":631,"h":1,"n":"Environmental"},{"c":4,"s":5,"id":11579,"u":"ethereal","p":631,"h":1,"n":"Ethereal"},{"c":4,"s":5,"id":11580,"u":"evil","p":631,"h":1,"n":"Evil"},{"c":4,"s":5,"id":11581,"u":"evocation","p":634,"h":1,"n":"Evocation"},{"c":4,"s":5,"id":11582,"u":"exploration","p":631,"h":1,"n":"Exploration"},{"c":4,"s":5,"id":11583,"u":"extradimensional","p":631,"h":1,"n":"Extradimensional"},{"c":4,"s":5,"id":11584,"u":"fatal","p":282,"h":1,"n":"Fatal"},{"c":4,"s":5,"id":11585,"u":"fear","p":631,"h":1,"n":"Fear"},{"c":4,"s":5,"id":11586,"u":"fey","p":631,"h":1,"n":"Fey"},{"c":4,"s":5,"id":11587,"u":"fiend","p":631,"h":1,"n":"Fiend"},{"c":4,"s":5,"id":11588,"u":"fighter","p":632,"h":1,"n":"Fighter"},{"c":4,"s":5,"id":11589,"u":"finesse","p":282,"h":1,"n":"Finesse"},{"c":4,"s":5,"id":11590,"u":"fire","p":632,"h":1,"n":"Fire"},{"c":4,"s":5,"id":11591,"u":"flexible","p":275,"h":1,"n":"Flexible"},{"c":4,"s":5,"id":11592,"u":"flourish","p":632,"h":1,"n":"Flourish"},{"c":4,"s":5,"id":11593,"u":"focused","p":632,"h":1,"n":"Focused"},{"c":4,"s":5,"id":11594,"u":"force","p":632,"h":1,"n":"Force"},{"c":4,"s":5,"id":11595,"u":"forceful","p":282,"h":1,"n":"Forceful"},{"c":4,"s":5,"id":11596,"u":"fortune","p":632,"h":1,"n":"Fortune"},{"c":4,"s":5,"id":11597,"u":"free-hand","p":282,"h":1,"n":"Free-Hand"},{"c":4,"s":5,"id":11598,"u":"general","p":632,"h":1,"n":"General"},{"c":4,"s":5,"id":11599,"u":"giant","p":632,"h":1,"n":"Giant"},{"c":4,"s":5,"id":11600,"u":"gnome","p":632,"h":1,"n":"Gnome"},{"c":4,"s":5,"id":11601,"u":"goblin","p":632,"h":1,"n":"Goblin"},{"c":4,"s":5,"id":11602,"u":"good","p":632,"h":1,"n":"Good"},{"c":4,"s":5,"id":11603,"u":"grapple","p":283,"h":1,"n":"Grapple"},{"c":4,"s":5,"id":11604,"u":"hag","p":632,"h":1,"n":"Hag"},{"c":4,"s":5,"id":11605,"u":"half-elf","p":632,"h":1,"n":"Half-Elf"},{"c":4,"s":5,"id":11606,"u":"half-orc","p":632,"h":1,"n":"Half-Orc"},{"c":4,"s":5,"id":11607,"u":"halfling","p":632,"h":1,"n":"Halfling"},{"c":4,"s":5,"id":11608,"u":"haunt","p":632,"h":1,"n":"Haunt"},{"c":4,"s":5,"id":11609,"u":"healing","p":632,"h":1,"n":"Healing"},{"c":4,"s":5,"id":11610,"u":"human","p":633,"h":1,"n":"Human"},{"c":4,"s":5,"id":11611,"u":"humanoid","p":633,"h":1,"n":"Humanoid"},{"c":4,"s":5,"id":11612,"u":"illusion","p":633,"h":1,"n":"Illusion"},{"c":4,"s":5,"id":11613,"u":"incapacitation","p":633,"h":1,"n":"Incapacitation"},{"c":4,"s":5,"id":11614,"u":"infused","p":75,"h":1,"n":"Infused"},{"c":4,"s":5,"id":11615,"u":"ingested","p":550,"h":1,"n":"Ingested"},{"c":4,"s":5,"id":11616,"u":"inhaled","p":550,"h":1,"n":"Inhaled"},{"c":4,"s":5,"id":11617,"u":"injury","p":550,"h":1,"n":"Injury"},{"c":4,"s":5,"id":11618,"u":"instinct","p":87,"h":1,"n":"Instinct"},{"c":4,"s":5,"id":11619,"u":"invested","p":633,"h":1,"n":"Invested"},{"c":4,"s":5,"id":11620,"u":"jousting","p":283,"h":1,"n":"Jousting"},{"c":4,"s":5,"id":11621,"u":"lawful","p":633,"h":1,"n":"Lawful"},{"c":4,"s":5,"id":11622,"u":"light","p":633,"h":1,"n":"Light"},{"c":4,"s":5,"id":11623,"u":"linguistic","p":633,"h":1,"n":"Linguistic"},{"c":4,"s":5,"id":11624,"u":"litany","p":633,"h":1,"n":"Litany"},{"c":4,"s":5,"id":11625,"u":"magical","p":633,"h":1,"n":"Magical"},{"c":4,"s":5,"id":11626,"u":"manipulate","p":633,"h":1,"n":"Manipulate"},{"c":4,"s":5,"id":11627,"u":"mechanical","p":634,"h":1,"n":"Mechanical"},{"c":4,"s":5,"id":11628,"u":"mental","p":634,"h":1,"n":"Mental"},{"c":4,"s":5,"id":11629,"u":"metamagic","p":634,"h":1,"n":"Metamagic"},{"c":4,"s":5,"id":11630,"u":"mindless","p":634,"h":1,"n":"Mindless"},{"c":4,"s":5,"id":11631,"u":"minion","p":634,"h":1,"n":"Minion"},{"c":4,"s":5,"id":11632,"u":"misfortune","p":634,"h":1,"n":"Misfortune"},{"c":4,"s":5,"id":11633,"u":"monitor","p":634,"h":1,"n":"Monitor"},{"c":4,"s":5,"id":11634,"u":"monk","p":634,"h":1,"n":"Monk"},{"c":4,"s":5,"id":11635,"u":"morph","p":634,"h":1,"n":"Morph"},{"c":4,"s":5,"id":11636,"u":"move","p":634,"h":1,"n":"Move"},{"c":4,"s":5,"id":11637,"u":"multiclass","p":635,"h":1,"n":"Multiclass"},{"c":4,"s":5,"id":11638,"u":"mutagen","p":634,"h":1,"n":"Mutagen"},{"c":4,"s":5,"id":11639,"u":"necromancy","p":634,"h":1,"n":"Necromancy"},{"c":4,"s":5,"id":11640,"u":"negative","p":630,"h":1,"n":"Negative"},{"c":4,"s":5,"id":11641,"u":"noisy","p":275,"h":1,"n":"Noisy"},{"c":4,"s":5,"id":11642,"u":"nonlethal","p":283,"h":1,"n":"Nonlethal"},{"c":4,"s":5,"id":11643,"u":"oath","p":109,"h":1,"n":"Oath"},{"c":4,"s":5,"id":11644,"u":"occult","p":634,"h":1,"n":"Occult"},{"c":4,"s":5,"id":11645,"u":"oil","p":634,"h":1,"n":"Oil"},{"c":4,"s":5,"id":11646,"u":"ooze","p":634,"h":1,"n":"Ooze"},{"c":4,"s":5,"id":11647,"u":"open","p":634,"h":1,"n":"Open"},{"c":4,"s":5,"id":11648,"u":"orc","p":634,"h":1,"n":"Orc"},{"c":4,"s":5,"id":11649,"u":"parry","p":283,"h":1,"n":"Parry"},{"c":4,"s":5,"id":11650,"u":"plant","p":635,"h":1,"n":"Plant"},{"c":4,"s":5,"id":11651,"u":"poison","p":635,"h":1,"n":"Poison"},{"c":4,"s":5,"id":11652,"u":"polymorph","p":635,"h":1,"n":"Polymorph"},{"c":4,"s":5,"id":11653,"u":"positive","p":635,"h":1,"n":"Positive"},{"c":4,"s":5,"id":11654,"u":"possession","p":635,"h":1,"n":"Possession"},{"c":4,"s":5,"id":11655,"u":"potion","p":635,"h":1,"n":"Potion"},{"c":4,"s":5,"id":11656,"u":"precious","p":635,"h":1,"n":"Precious"},{"c":4,"s":5,"id":11657,"u":"prediction","p":635,"h":1,"n":"Prediction"},{"c":4,"s":5,"id":11658,"u":"press","p":635,"h":1,"n":"Press"},{"c":4,"s":5,"id":11659,"u":"primal","p":635,"h":1,"n":"Primal"},{"c":4,"s":5,"id":11660,"u":"propulsive","p":283,"h":1,"n":"Propulsive"},{"c":4,"s":5,"id":11661,"u":"rage","p":87,"h":1,"n":"Rage"},{"c":4,"s":5,"id":11662,"u":"ranger","p":635,"h":1,"n":"Ranger"},{"c":4,"s":5,"id":11663,"u":"rare","p":635,"h":1,"n":"Rare"},{"c":4,"s":5,"id":11664,"u":"reach","p":283,"h":1,"n":"Reach"},{"c":4,"s":5,"id":11665,"u":"revelation","p":635,"h":1,"n":"Revelation"},{"c":4,"s":5,"id":11666,"u":"rogue","p":635,"h":1,"n":"Rogue"},{"c":4,"s":5,"id":11667,"u":"scroll","p":636,"h":1,"n":"Scroll"},{"c":4,"s":5,"id":11668,"u":"scrying","p":636,"h":1,"n":"Scrying"},{"c":4,"s":5,"id":11669,"u":"secret","p":636,"h":1,"n":"Secret"},{"c":4,"s":5,"id":11670,"u":"shadow","p":636,"h":1,"n":"Shadow"},{"c":4,"s":5,"id":11671,"u":"shove","p":283,"h":1,"n":"Shove"},{"c":4,"s":5,"id":11672,"u":"skill","p":636,"h":1,"n":"Skill"},{"c":4,"s":5,"id":11673,"u":"sleep","p":636,"h":1,"n":"Sleep"},{"c":4,"s":5,"id":11674,"u":"snare","p":636,"h":1,"n":"Snare"},{"c":4,"s":5,"id":11675,"u":"sonic","p":636,"h":1,"n":"Sonic"},{"c":4,"s":5,"id":11676,"u":"sorcerer","p":636,"h":1,"n":"Sorcerer"},{"c":4,"s":5,"id":11677,"u":"spirit","p":636,"h":1,"n":"Spirit"},{"c":4,"s":5,"id":11678,"u":"splash","p":637,"h":1,"n":"Splash"},{"c":4,"s":5,"id":11679,"u":"staff","p":637,"h":1,"n":"Staff"},{"c":4,"s":5,"id":11680,"u":"stance","p":637,"h":1,"n":"Stance"},{"c":4,"s":5,"id":11681,"u":"structure","p":596,"h":1,"n":"Structure"},{"c":4,"s":5,"id":11682,"u":"summoned","p":637,"h":1,"n":"Summoned"},{"c":4,"s":5,"id":11683,"u":"sweep","p":283,"h":1,"n":"Sweep"},{"c":4,"s":5,"id":11684,"u":"talisman","p":637,"h":1,"n":"Talisman"},{"c":4,"s":5,"id":11685,"u":"teleportation","p":637,"h":1,"n":"Teleportation"},{"c":4,"s":5,"id":11686,"u":"thrown","p":283,"h":1,"n":"Thrown"},{"c":4,"s":5,"id":11687,"u":"transmutation","p":637,"h":1,"n":"Transmutation"},{"c":4,"s":5,"id":11688,"u":"trap","p":637,"h":1,"n":"Trap"},{"c":4,"s":5,"id":11689,"u":"trip","p":283,"h":1,"n":"Trip"},{"c":4,"s":5,"id":11690,"u":"twin","p":283,"h":1,"n":"Twin"},{"c":4,"s":5,"id":11691,"u":"two-hand","p":283,"h":1,"n":"Two-Hand"},{"c":4,"s":5,"id":11692,"u":"unarmed","p":283,"h":1,"n":"Unarmed"},{"c":4,"s":5,"id":11693,"u":"uncommon","p":637,"h":1,"n":"Uncommon"},{"c":4,"s":5,"id":11694,"u":"undead","p":283,"h":1,"n":"Undead"},{"c":4,"s":5,"id":11695,"u":"unique","p":637,"h":1,"n":"Unique"},{"c":4,"s":5,"id":11696,"u":"versatile","p":283,"h":1,"n":"Versatile"},{"c":4,"s":5,"id":11697,"u":"virulent","p":638,"h":1,"n":"Virulent"},{"c":4,"s":5,"id":11698,"u":"visual","p":638,"h":1,"n":"Visual"},{"c":4,"s":5,"id":11699,"u":"volley","p":283,"h":1,"n":"Volley"},{"c":4,"s":5,"id":11700,"u":"wand","p":638,"h":1,"n":"Wand"},{"c":4,"s":5,"id":11701,"u":"water","p":638,"h":1,"n":"Water"},{"c":4,"s":5,"id":11702,"u":"wizard","p":638,"h":1,"n":"Wizard"},{"c":4,"s":12,"id":11703,"u":"artifact","p":250,"h":1,"n":"Artifact"},{"c":4,"s":12,"id":11704,"u":"city","p":250,"h":1,"n":"City"},{"c":4,"s":12,"id":11705,"u":"cursed","p":251,"h":1,"n":"Cursed"},{"c":4,"s":12,"id":11706,"u":"drug","p":251,"h":1,"n":"Drug"},{"c":4,"s":12,"id":11707,"u":"erratic","p":251,"h":1,"n":"Erratic"},{"c":4,"s":12,"id":11708,"u":"finite","p":251,"h":1,"n":"Finite"},{"c":4,"s":12,"id":11709,"u":"flowing","p":251,"h":1,"n":"Flowing"},{"c":4,"s":12,"id":11710,"u":"high%20gravity","p":252,"h":1,"n":"High Gravity"},{"c":4,"s":12,"id":11711,"u":"immeasurable","p":252,"h":1,"n":"Immeasurable"},{"c":4,"s":12,"id":11712,"u":"intelligent","p":252,"h":1,"n":"Intelligent"},{"c":4,"s":12,"id":11713,"u":"low%20gravity","p":252,"h":1,"n":"Low Gravity"},{"c":4,"s":12,"id":11714,"u":"metamorphic","p":253,"h":1,"n":"Metamorphic"},{"c":4,"s":12,"id":11715,"u":"metropolis","p":253,"h":1,"n":"Metropolis"},{"c":4,"s":12,"id":11716,"u":"microgravity","p":253,"h":1,"n":"Microgravity"},{"c":4,"s":12,"id":11717,"u":"reckless","p":254,"h":1,"n":"Reckless"},{"c":4,"s":12,"id":11718,"u":"sentient","p":254,"h":1,"n":"Sentient"},{"c":4,"s":12,"id":11719,"u":"static","p":254,"h":1,"n":"Static"},{"c":4,"s":12,"id":11720,"u":"strange%20gravity","p":254,"h":1,"n":"Strange Gravity"},{"c":4,"s":12,"id":11721,"u":"subjective%20gravity","p":254,"h":1,"n":"Subjective Gravity"},{"c":4,"s":12,"id":11722,"u":"timeless","p":254,"h":1,"n":"Timeless"},{"c":4,"s":12,"id":11723,"u":"town","p":254,"h":1,"n":"Town"},{"c":4,"s":12,"id":11724,"u":"unbounded","p":255,"h":1,"n":"Unbounded"},{"c":4,"s":12,"id":11725,"u":"village","p":255,"h":1,"n":"Village"},{"c":4,"s":8,"id":11726,"u":"shoony","p":82,"h":1,"n":"Shoony"},{"c":4,"s":35,"id":11727,"u":"kaiju","p":89,"h":1,"n":"Kaiju"},{"c":4,"s":2,"id":11728,"u":"automaton","p":230,"h":1,"n":"Automaton"},{"c":4,"s":2,"id":11729,"u":"capacity","p":150,"h":1,"n":"Capacity"},{"c":4,"s":2,"id":11730,"u":"clockwork","p":231,"h":1,"n":"Clockwork"},{"c":4,"s":2,"id":11731,"u":"cobbled","p":231,"h":1,"n":"Cobbled"},{"c":4,"s":2,"id":11732,"u":"combination","p":231,"h":1,"n":"Combination"},{"c":4,"s":2,"id":11733,"u":"concealable","p":231,"h":1,"n":"Concealable"},{"c":4,"s":2,"id":11734,"u":"concussive","p":231,"h":1,"n":"Concussive"},{"c":4,"s":2,"id":11735,"u":"critical%20fusion","p":231,"h":1,"n":"Critical Fusion"},{"c":4,"s":2,"id":11736,"u":"double%20barrel","p":232,"h":1,"n":"Double Barrel"},{"c":4,"s":2,"id":11737,"u":"fatal%20aim","p":150,"h":1,"n":"Fatal Aim"},{"c":4,"s":2,"id":11738,"u":"gadget","p":233,"h":1,"n":"Gadget"},{"c":4,"s":2,"id":11739,"u":"gunslinger","p":108,"h":1,"n":"Gunslinger"},{"c":4,"s":2,"id":11740,"u":"injection","p":233,"h":1,"n":"Injection"},{"c":4,"s":2,"id":11741,"u":"inventor","p":16,"h":1,"n":"Inventor"},{"c":4,"s":2,"id":11742,"u":"kickback","p":234,"h":1,"n":"Kickback"},{"c":4,"s":2,"id":11743,"u":"modification","p":234,"h":1,"n":"Modification"},{"c":4,"s":2,"id":11744,"u":"mounted","p":234,"h":1,"n":"Mounted"},{"c":4,"s":2,"id":11745,"u":"portable","p":235,"h":1,"n":"Portable"},{"c":4,"s":2,"id":11746,"u":"repeating","p":62,"h":1,"n":"Repeating"},{"c":4,"s":2,"id":11747,"u":"scatter","p":235,"h":1,"n":"Scatter"},{"c":4,"s":2,"id":11748,"u":"steam","p":236,"h":1,"n":"Steam"},{"c":4,"s":2,"id":11749,"u":"unstable","p":236,"h":1,"n":"Unstable"},{"c":4,"s":1,"id":11750,"u":"android","p":140,"h":1,"n":"Android"},{"c":4,"s":1,"id":11751,"u":"aphorite","p":140,"h":1,"n":"Aphorite"},{"c":4,"s":1,"id":11752,"u":"azarketi","p":140,"h":1,"n":"Azarketi"},{"c":4,"s":1,"id":11753,"u":"beastkin","p":140,"h":1,"n":"Beastkin"},{"c":4,"s":1,"id":11754,"u":"conrasu","p":138,"h":1,"n":"Conrasu"},{"c":4,"s":1,"id":11755,"u":"energy","p":139,"h":1,"n":"Energy"},{"c":4,"s":1,"id":11756,"u":"fleshwarp","p":141,"h":1,"n":"Fleshwarp"},{"c":4,"s":1,"id":11757,"u":"ganzi","p":141,"h":1,"n":"Ganzi"},{"c":4,"s":1,"id":11758,"u":"geniekin","p":138,"h":1,"n":"Geniekin"},{"c":4,"s":1,"id":11759,"u":"hampering","p":139,"h":1,"n":"Hampering"},{"c":4,"s":1,"id":11760,"u":"kitsune","p":141,"h":1,"n":"Kitsune"},{"c":4,"s":1,"id":11761,"u":"resonant","p":139,"h":1,"n":"Resonant"},{"c":4,"s":1,"id":11762,"u":"strix","p":142,"h":1,"n":"Strix"},{"c":4,"s":6,"id":11763,"u":"academic","p":132,"h":1,"n":"Academic"},{"c":4,"s":6,"id":11764,"u":"hellknight","p":133,"h":1,"n":"Hellknight"},{"c":4,"s":6,"id":11765,"u":"hobgoblin","p":133,"h":1,"n":"Hobgoblin"},{"c":4,"s":6,"id":11766,"u":"militaristic","p":133,"h":1,"n":"Militaristic"},{"c":4,"s":6,"id":11767,"u":"militaristic","p":133,"h":1,"n":"Militaristic"},{"c":4,"s":6,"id":11768,"u":"revolutionary","p":134,"h":1,"n":"Revolutionary"},{"c":4,"s":6,"id":11769,"u":"wayfaring","p":135,"h":1,"n":"Wayfaring"},{"c":4,"s":6,"id":11770,"u":"wayfaring","p":135,"h":1,"n":"Wayfaring"},{"c":4,"s":51,"id":11771,"u":"modular","p":120,"h":1,"n":"Modular"},{"c":4,"s":52,"id":11772,"u":"contract","p":126,"h":1,"n":"Contract"},{"c":4,"s":0,"id":11773,"u":"anadi","p":308,"h":1,"n":"Anadi"},{"c":4,"s":0,"id":11774,"u":"goloma","p":309,"h":1,"n":"Goloma"},{"c":4,"s":0,"id":11775,"u":"shisk","p":310,"h":1,"n":"Shisk"},{"c":4,"s":7,"id":11776,"u":"adjustment","p":133,"h":1,"n":"Adjustment"},{"c":4,"s":7,"id":11777,"u":"poppet","p":134,"h":1,"n":"Poppet"},{"c":4,"s":7,"id":11778,"u":"tattoo","p":135,"h":1,"n":"Tattoo"},{"c":4,"s":48,"id":11779,"u":"tattoo","p":124,"h":1,"n":"Tattoo"},{"c":4,"s":49,"id":11780,"u":"%5bclass%5d","p":219,"h":1,"n":"[Class]"},{"c":4,"s":49,"id":11781,"u":"catalyst","p":168,"h":1,"n":"Catalyst"},{"c":4,"s":49,"id":11782,"u":"class","p":193,"h":1,"n":"Class"},{"c":4,"s":49,"id":11783,"u":"contingency","p":252,"h":1,"n":"Contingency"},{"c":4,"s":49,"id":11784,"u":"eidolon","p":57,"h":1,"n":"Eidolon"},{"c":4,"s":49,"id":11785,"u":"evolution","p":57,"h":1,"n":"Evolution"},{"c":4,"s":49,"id":11786,"u":"fulu","p":253,"h":1,"n":"Fulu"},{"c":4,"s":49,"id":11787,"u":"grimoire","p":162,"h":1,"n":"Grimoire"},{"c":4,"s":49,"id":11788,"u":"incarnate","p":132,"h":1,"n":"Incarnate"},{"c":4,"s":49,"id":11789,"u":"magus","p":253,"h":1,"n":"Magus"},{"c":4,"s":49,"id":11790,"u":"pervasive%20magic","p":218,"h":1,"n":"Pervasive Magic"},{"c":4,"s":49,"id":11791,"u":"phantom","p":254,"h":1,"n":"Phantom"},{"c":4,"s":49,"id":11792,"u":"spellheart","p":170,"h":1,"n":"Spellheart"},{"c":4,"s":49,"id":11793,"u":"summoner","p":254,"h":1,"n":"Summoner"},{"c":4,"s":49,"id":11794,"u":"tandem","p":57,"h":1,"n":"Tandem"},{"c":4,"s":49,"id":11795,"u":"true%20name","p":244,"h":1,"n":"True Name"},{"c":26,"s":4,"id":11796,"u":"ape_apg","p":144,"h":1,"n":"Ape"},{"c":26,"s":4,"id":11797,"u":"arboreal%20sapling_apg","p":144,"h":1,"n":"Arboreal Sapling"},{"c":26,"s":4,"id":11798,"u":"bat_apg","p":144,"h":1,"n":"Bat"},{"c":26,"s":4,"id":11799,"u":"boar_apg","p":144,"h":1,"n":"Boar"},{"c":26,"s":4,"id":11800,"u":"crocodile_apg","p":145,"h":1,"n":"Crocodile"},{"c":26,"s":4,"id":11801,"u":"riding%20drake_apg","p":145,"h":1,"n":"Riding Drake"},{"c":26,"s":4,"id":11802,"u":"scorpion_apg","p":145,"h":1,"n":"Scorpion"},{"c":26,"s":4,"id":11803,"u":"shark_apg","p":145,"h":1,"n":"Shark"},{"c":26,"s":5,"id":11804,"u":"badger_crb","p":215,"h":1,"n":"Badger"},{"c":26,"s":5,"id":11805,"u":"bear_crb","p":215,"h":1,"n":"Bear"},{"c":26,"s":5,"id":11806,"u":"bird_crb","p":215,"h":1,"n":"Bird"},{"c":26,"s":5,"id":11807,"u":"cat_crb","p":215,"h":1,"n":"Cat"},{"c":26,"s":5,"id":11808,"u":"dromaeosaur_crb","p":216,"h":1,"n":"Dromaeosaur"},{"c":26,"s":5,"id":11809,"u":"horse_crb","p":216,"h":1,"n":"Horse"},{"c":26,"s":5,"id":11810,"u":"snake_crb","p":216,"h":1,"n":"Snake"},{"c":26,"s":5,"id":11811,"u":"wolf_crb","p":216,"h":1,"n":"Wolf"},{"c":26,"s":17,"id":11812,"u":"camel_aoa5","p":80,"h":1,"n":"Camel"},{"c":26,"s":17,"id":11813,"u":"hyena_aoa5","p":80,"h":1,"n":"Hyena"},{"c":26,"s":17,"id":11814,"u":"vulture_aoa5","p":80,"h":1,"n":"Vulture"},{"c":26,"s":30,"id":11815,"u":"cave%20gecko_ec4","p":73,"h":1,"n":"Cave Gecko"},{"c":26,"s":30,"id":11816,"u":"cave%20pterosaur_ec4","p":74,"h":1,"n":"Cave Pterosaur"},{"c":26,"s":30,"id":11817,"u":"monitor%20lizard_ec4","p":73,"h":1,"n":"Monitor Lizard"},{"c":26,"s":7,"id":11818,"u":"beetle_lotgb","p":54,"h":1,"n":"Beetle"},{"c":26,"s":7,"id":11819,"u":"capybara_lotgb","p":54,"h":1,"n":"Capybara"},{"c":26,"s":7,"id":11820,"u":"moth_lotgb","p":54,"h":1,"n":"Moth"},{"c":26,"s":7,"id":11821,"u":"pangolin_lotgb","p":55,"h":1,"n":"Pangolin"},{"c":26,"s":7,"id":11822,"u":"terror%20bird_lotgb","p":55,"h":1,"n":"Terror Bird"},{"c":26,"s":49,"id":11823,"u":"shadow%20hound_som","p":228,"h":1,"n":"Shadow Hound"},{"c":27,"s":4,"id":11824,"u":"faerie%20dragon_apg","p":147,"h":1,"n":"Faerie Dragon"},{"c":27,"s":4,"id":11825,"u":"imp_apg","p":147,"h":1,"n":"Imp"},{"c":27,"s":4,"id":11826,"u":"spellslime_apg","p":147,"h":1,"n":"Spellslime"},{"c":27,"s":47,"id":11827,"u":"aeon%20wyrd_lopsg","p":122,"h":1,"n":"Aeon Wyrd"},{"c":27,"s":47,"id":11828,"u":"calligraphy%20wyrm_lopsg","p":122,"h":1,"n":"Calligraphy Wyrm"},{"c":27,"s":47,"id":11829,"u":"dweomercat%20cub_lopsg","p":122,"h":1,"n":"Dweomercat Cub"},{"c":27,"s":47,"id":11830,"u":"poppet_lopsg","p":123,"h":1,"n":"Poppet"},{"c":27,"s":7,"id":11831,"u":"clockwork%20familiar_lotgb","p":23,"h":1,"n":"Clockwork Familiar"},{"c":27,"s":7,"id":11832,"u":"elemental%20wisp_lotgb","p":35,"h":1,"n":"Elemental Wisp"},{"c":27,"s":7,"id":11833,"u":"nosoi_lotgb","p":35,"h":1,"n":"Nosoi"},{"c":27,"s":7,"id":11834,"u":"pipefox_lotgb","p":35,"h":1,"n":"Pipefox"},{"c":27,"s":49,"id":11835,"u":"shadow%20familiar_som","p":229,"h":1,"n":"Shadow Familiar"},{"c":28,"s":49,"id":11836,"u":"angel%20eidolon_som","p":59,"h":1,"n":"Angel Eidolon"},{"c":28,"s":49,"id":11837,"u":"anger%20phantom%20eidolon_som","p":59,"h":1,"n":"Anger Phantom Eidolon"},{"c":28,"s":49,"id":11838,"u":"beast%20eidolon_som","p":61,"h":1,"n":"Beast Eidolon"},{"c":28,"s":49,"id":11839,"u":"construct%20eidolon_som","p":61,"h":1,"n":"Construct Eidolon"},{"c":28,"s":49,"id":11840,"u":"demon%20eidolon_som","p":62,"h":1,"n":"Demon Eidolon"},{"c":28,"s":49,"id":11841,"u":"devotion%20phantom%20eidolon_som","p":63,"h":1,"n":"Devotion Phantom Eidolon"},{"c":28,"s":49,"id":11842,"u":"dragon%20eidolon_som","p":63,"h":1,"n":"Dragon Eidolon"},{"c":28,"s":49,"id":11843,"u":"fey%20eidolon_som","p":64,"h":1,"n":"Fey Eidolon"},{"c":28,"s":49,"id":11844,"u":"plant%20eidolon_som","p":65,"h":1,"n":"Plant Eidolon"},{"c":28,"s":49,"id":11845,"u":"psychopomp%20eidolon_som","p":66,"h":1,"n":"Psychopomp Eidolon"},{"c":50,"s":59,"id":11846,"u":"id","n":"ID: Adventure"},{"c":70,"s":4,"id":11847,"u":"astral%20projection_apg","p":240,"h":1,"n":"Astral Projection"},{"c":70,"s":4,"id":11848,"u":"clone_apg","p":240,"h":1,"n":"Clone"},{"c":70,"s":4,"id":11849,"u":"create%20demiplane_apg","p":241,"h":1,"n":"Create Demiplane"},{"c":70,"s":4,"id":11850,"u":"fantastic%20fa%c3%a7ade_apg","p":240,"h":1,"n":"Fantastic Façade"},{"c":70,"s":4,"id":11851,"u":"heartbond_apg","p":311,"h":1,"n":"Heartbond"},{"c":70,"s":4,"id":11852,"u":"heroes'%20feast_apg","p":242,"h":1,"n":"Heroes' Feast"},{"c":70,"s":4,"id":11853,"u":"reincarnate_apg","p":242,"h":1,"n":"Reincarnate"},{"c":70,"s":4,"id":11854,"u":"rest%20eternal_apg","p":244,"h":1,"n":"Rest Eternal"},{"c":70,"s":4,"id":11855,"u":"simulacrum_apg","p":244,"h":1,"n":"Simulacrum"},{"c":70,"s":4,"id":11856,"u":"teleportation%20circle_apg","p":244,"h":1,"n":"Teleportation Circle"},{"c":70,"s":4,"id":11857,"u":"unseen%20custodians_apg","p":245,"h":1,"n":"Unseen Custodians"},{"c":70,"s":4,"id":11858,"u":"ward%20domain_apg","p":245,"h":1,"n":"Ward Domain"},{"c":70,"s":4,"id":11859,"u":"word%20of%20recall_apg","p":245,"h":1,"n":"Word of Recall"},{"c":70,"s":9,"id":11860,"u":"abyssal%20pact_bst","p":347,"h":1,"n":"Abyssal Pact"},{"c":70,"s":9,"id":11861,"u":"angelic%20messenger_bst","p":348,"h":1,"n":"Angelic Messenger"},{"c":70,"s":9,"id":11862,"u":"infernal%20pact_bst","p":348,"h":1,"n":"Infernal Pact"},{"c":70,"s":10,"id":11863,"u":"daemonic%20pact_bst2","p":311,"h":1,"n":"Daemonic Pact"},{"c":70,"s":10,"id":11864,"u":"ravenous%20reanimation_bst2","p":223,"h":1,"n":"Ravenous Reanimation"},{"c":70,"s":11,"id":11865,"u":"div%20pact_bst3","p":311,"h":1,"n":"Div Pact"},{"c":70,"s":11,"id":11866,"u":"owb%20pact_bst3","p":41,"h":1,"n":"Owb Pact"},{"c":70,"s":5,"id":11867,"u":"animate%20object_crb","p":409,"h":1,"n":"Animate Object"},{"c":70,"s":5,"id":11868,"u":"atone_crb","p":409,"h":1,"n":"Atone"},{"c":70,"s":5,"id":11869,"u":"awaken%20animal_crb","p":409,"h":1,"n":"Awaken Animal"},{"c":70,"s":5,"id":11870,"u":"blight_crb","p":410,"h":1,"n":"Blight"},{"c":70,"s":5,"id":11871,"u":"call%20spirit_crb","p":410,"h":1,"n":"Call Spirit"},{"c":70,"s":5,"id":11872,"u":"commune_crb","p":410,"h":1,"n":"Commune"},{"c":70,"s":5,"id":11873,"u":"commune%20with%20nature_crb","p":410,"h":1,"n":"Commune With Nature"},{"c":70,"s":5,"id":11874,"u":"consecrate_crb","p":410,"h":1,"n":"Consecrate"},{"c":70,"s":5,"id":11875,"u":"control%20weather_crb","p":411,"h":1,"n":"Control Weather"},{"c":70,"s":5,"id":11876,"u":"create%20undead_crb","p":411,"h":1,"n":"Create Undead"},{"c":70,"s":5,"id":11877,"u":"freedom_crb","p":411,"h":1,"n":"Freedom"},{"c":70,"s":5,"id":11878,"u":"geas_crb","p":412,"h":1,"n":"Geas"},{"c":70,"s":5,"id":11879,"u":"imprisonment_crb","p":412,"h":1,"n":"Imprisonment"},{"c":70,"s":5,"id":11880,"u":"inveigle_crb","p":413,"h":1,"n":"Inveigle"},{"c":70,"s":5,"id":11881,"u":"legend%20lore_crb","p":413,"h":1,"n":"Legend Lore"},{"c":70,"s":5,"id":11882,"u":"planar%20ally_crb","p":413,"h":1,"n":"Planar Ally"},{"c":70,"s":5,"id":11883,"u":"planar%20binding_crb","p":414,"h":1,"n":"Planar Binding"},{"c":70,"s":5,"id":11884,"u":"plant%20growth_crb","p":415,"h":1,"n":"Plant Growth"},{"c":70,"s":5,"id":11885,"u":"primal%20call_crb","p":415,"h":1,"n":"Primal Call"},{"c":70,"s":5,"id":11886,"u":"resurrect_crb","p":415,"h":1,"n":"Resurrect"},{"c":70,"s":18,"id":11887,"u":"anima%20invocation%20(modified)_aoa6","p":75,"h":1,"n":"Anima Invocation (Modified)"},{"c":70,"s":20,"id":11888,"u":"create%20skinstitch_aoe2","p":76,"h":1,"n":"Create Skinstitch"},{"c":70,"s":23,"id":11889,"u":"unfettered%20mark_aoe5","p":80,"h":1,"n":"Unfettered Mark"},{"c":70,"s":25,"id":11890,"u":"awaken%20portal_av1","p":79,"h":1,"n":"Awaken Portal"},{"c":70,"s":30,"id":11891,"u":"statuette_ec4","p":75,"h":1,"n":"Statuette"},{"c":70,"s":31,"id":11892,"u":"terminate%20bloodline_ec5","p":74,"h":1,"n":"Terminate Bloodline"},{"c":70,"s":49,"id":11893,"u":"asmodean%20wager_som","p":147,"h":1,"n":"Asmodean Wager"},{"c":70,"s":49,"id":11894,"u":"awaken%20object_som","p":147,"h":1,"n":"Awaken Object"},{"c":70,"s":49,"id":11895,"u":"bathe%20in%20blood_som","p":148,"h":1,"n":"Bathe In Blood"},{"c":70,"s":49,"id":11896,"u":"concealment's%20curtain_som","p":148,"h":1,"n":"Concealment's Curtain"},{"c":70,"s":49,"id":11897,"u":"dread%20ambience_som","p":149,"h":1,"n":"Dread Ambience"},{"c":70,"s":49,"id":11898,"u":"elemental%20sentinel_som","p":150,"h":1,"n":"Elemental Sentinel"},{"c":70,"s":49,"id":11899,"u":"empower%20ley%20line_som","p":216,"h":1,"n":"Empower Ley Line"},{"c":70,"s":49,"id":11900,"u":"establish%20nexus_som","p":217,"h":1,"n":"Establish Nexus"},{"c":70,"s":49,"id":11901,"u":"garden%20of%20death_som","p":150,"h":1,"n":"Garden Of Death"},{"c":70,"s":49,"id":11902,"u":"guardian's%20aegis_som","p":150,"h":1,"n":"Guardian's Aegis"},{"c":70,"s":49,"id":11903,"u":"ideal%20mimicry_som","p":151,"h":1,"n":"Ideal Mimicry"},{"c":70,"s":49,"id":11904,"u":"mind%20swap_som","p":151,"h":1,"n":"Mind Swap"},{"c":70,"s":49,"id":11905,"u":"mystic%20carriage_som","p":152,"h":1,"n":"Mystic Carriage"},{"c":70,"s":49,"id":11906,"u":"portrait%20of%20spite_som","p":153,"h":1,"n":"Portrait Of Spite"},{"c":70,"s":49,"id":11907,"u":"purify%20soul%20path_som","p":234,"h":1,"n":"Purify Soul Path"},{"c":70,"s":49,"id":11908,"u":"the%20world's%20a%20stage_som","p":153,"h":1,"n":"The World's A Stage"},{"c":70,"s":39,"id":11909,"u":"arcane%20weaving_sot1","p":79,"h":1,"n":"Arcane Weaving"},{"c":70,"s":39,"id":11910,"u":"fey%20abeyance_sot1","p":23,"h":1,"n":"Fey Abeyance"},{"c":70,"s":39,"id":11911,"u":"tattoo%20whispers_sot1","p":38,"h":1,"n":"Tattoo Whispers"},{"c":70,"s":40,"id":11912,"u":"community%20repair_sot2","p":75,"h":1,"n":"Community Repair"},{"c":30,"s":2,"id":11923,"u":"accelerated%20mobility_g%26g","p":17,"h":1,"n":"Accelerated Mobility"},{"c":30,"s":2,"id":11924,"u":"advanced%20rangefinder_g%26g","p":21,"h":1,"n":"Advanced Rangefinder"},{"c":30,"s":2,"id":11925,"u":"advanced%20weaponry_g%26g","p":21,"h":1,"n":"Advanced Weaponry"},{"c":30,"s":2,"id":11926,"u":"aerodynamic%20construction_g%26g","p":21,"h":1,"n":"Aerodynamic Construction"},{"c":30,"s":2,"id":11927,"u":"amphibious%20construction_g%26g","p":17,"h":1,"n":"Amphibious Construction"},{"c":30,"s":2,"id":11928,"u":"antimagic%20construction_g%26g","p":21,"h":1,"n":"Antimagic Construction"},{"c":30,"s":2,"id":11929,"u":"antimagic%20plating_g%26g","p":20,"h":1,"n":"Antimagic Plating"},{"c":30,"s":2,"id":11930,"u":"attack%20refiner_g%26g","p":23,"h":1,"n":"Attack Refiner"},{"c":30,"s":2,"id":11931,"u":"automated%20impediments_g%26g","p":23,"h":1,"n":"Automated Impediments"},{"c":30,"s":2,"id":11932,"u":"blunt%20shot_g%26g","p":17,"h":1,"n":"Blunt Shot"},{"c":30,"s":2,"id":11933,"u":"camouflage%20pigmentation_g%26g","p":20,"h":1,"n":"Camouflage Pigmentation"},{"c":30,"s":2,"id":11934,"u":"climbing%20limbs_g%26g","p":21,"h":1,"n":"Climbing Limbs"},{"c":30,"s":2,"id":11935,"u":"complex%20simplicity_g%26g","p":17,"h":1,"n":"Complex Simplicity"},{"c":30,"s":2,"id":11936,"u":"deadly%20strike_g%26g","p":23,"h":1,"n":"Deadly Strike"},{"c":30,"s":2,"id":11937,"u":"dense%20plating_g%26g","p":20,"h":1,"n":"Dense Plating"},{"c":30,"s":2,"id":11938,"u":"durable%20construction_g%26g","p":21,"h":1,"n":"Durable Construction"},{"c":30,"s":2,"id":11939,"u":"dynamic%20weighting_g%26g","p":17,"h":1,"n":"Dynamic Weighting"},{"c":30,"s":2,"id":11940,"u":"energy%20barrier_g%26g","p":23,"h":1,"n":"Energy Barrier"},{"c":30,"s":2,"id":11941,"u":"enhanced%20damage_g%26g","p":23,"h":1,"n":"Enhanced Damage"},{"c":30,"s":2,"id":11942,"u":"enhanced%20resistance_g%26g","p":20,"h":1,"n":"Enhanced Resistance"},{"c":30,"s":2,"id":11943,"u":"entangling%20form_g%26g","p":17,"h":1,"n":"Entangling Form"},{"c":30,"s":2,"id":11944,"u":"extensible%20weapon_g%26g","p":23,"h":1,"n":"Extensible Weapon"},{"c":30,"s":2,"id":11945,"u":"flight%20chassis_g%26g","p":23,"h":1,"n":"Flight Chassis"},{"c":30,"s":2,"id":11946,"u":"hampering%20spikes_g%26g","p":17,"h":1,"n":"Hampering Spikes"},{"c":30,"s":2,"id":11947,"u":"harmonic%20oscillator_g%26g","p":16,"h":1,"n":"Harmonic Oscillator"},{"c":30,"s":2,"id":11948,"u":"heavy%20construction_g%26g","p":20,"h":1,"n":"Heavy Construction"},{"c":30,"s":2,"id":11949,"u":"hefty%20composition_g%26g","p":17,"h":1,"n":"Hefty Composition"},{"c":30,"s":2,"id":11950,"u":"hyper%20boosters_g%26g","p":20,"h":1,"n":"Hyper Boosters"},{"c":30,"s":2,"id":11951,"u":"impossible%20alloy_g%26g","p":23,"h":1,"n":"Impossible Alloy"},{"c":30,"s":2,"id":11952,"u":"inconspicuous%20appearance_g%26g","p":21,"h":1,"n":"Inconspicuous Appearance"},{"c":30,"s":2,"id":11953,"u":"increased%20size_g%26g","p":17,"h":1,"n":"Increased Size"},{"c":30,"s":2,"id":11954,"u":"incredible%20resistance_g%26g","p":23,"h":1,"n":"Incredible Resistance"},{"c":30,"s":2,"id":11955,"u":"integrated%20gauntlet_g%26g","p":21,"h":1,"n":"Integrated Gauntlet"},{"c":30,"s":2,"id":11956,"u":"layered%20mesh_g%26g","p":20,"h":1,"n":"Layered Mesh"},{"c":30,"s":2,"id":11957,"u":"manifold%20alloy_g%26g","p":21,"h":1,"n":"Manifold Alloy"},{"c":30,"s":2,"id":11958,"u":"manual%20dexterity_g%26g","p":17,"h":1,"n":"Manual Dexterity"},{"c":30,"s":2,"id":11959,"u":"marvelous%20gears_g%26g","p":21,"h":1,"n":"Marvelous Gears"},{"c":30,"s":2,"id":11960,"u":"metallic%20reactance_g%26g","p":16,"h":1,"n":"Metallic Reactance"},{"c":30,"s":2,"id":11961,"u":"miracle%20gears_g%26g","p":23,"h":1,"n":"Miracle Gears"},{"c":30,"s":2,"id":11962,"u":"modular%20head_g%26g","p":17,"h":1,"n":"Modular Head"},{"c":30,"s":2,"id":11963,"u":"momentum%20retainer_g%26g","p":23,"h":1,"n":"Momentum Retainer"},{"c":30,"s":2,"id":11964,"u":"multisensory%20mask_g%26g","p":23,"h":1,"n":"Multisensory Mask"},{"c":30,"s":2,"id":11965,"u":"muscular%20exoskeleton_g%26g","p":16,"h":1,"n":"Muscular Exoskeleton"},{"c":30,"s":2,"id":11966,"u":"omnirange%20stabilizers_g%26g","p":23,"h":1,"n":"Omnirange Stabilizers"},{"c":30,"s":2,"id":11967,"u":"otherworldly%20protection_g%26g","p":16,"h":1,"n":"Otherworldly Protection"},{"c":30,"s":2,"id":11968,"u":"pacification%20tools_g%26g","p":17,"h":1,"n":"Pacification Tools"},{"c":30,"s":2,"id":11969,"u":"perfect%20fortification_g%26g","p":23,"h":1,"n":"Perfect Fortification"},{"c":30,"s":2,"id":11970,"u":"phlogistonic%20regulator_g%26g","p":16,"h":1,"n":"Phlogistonic Regulator"},{"c":30,"s":2,"id":11971,"u":"physical%20protections_g%26g","p":23,"h":1,"n":"Physical Protections"},{"c":30,"s":2,"id":11972,"u":"projectile%20launcher_g%26g","p":17,"h":1,"n":"Projectile Launcher"},{"c":30,"s":2,"id":11973,"u":"razor%20prongs_g%26g","p":17,"h":1,"n":"Razor Prongs"},{"c":30,"s":2,"id":11974,"u":"resistant%20coating_g%26g","p":23,"h":1,"n":"Resistant Coating"},{"c":30,"s":2,"id":11975,"u":"rope%20shot_g%26g","p":21,"h":1,"n":"Rope Shot"},{"c":30,"s":2,"id":11976,"u":"rune%20capacity_g%26g","p":23,"h":1,"n":"Rune Capacity"},{"c":30,"s":2,"id":11977,"u":"rune%20capacity_g%26g","p":23,"h":1,"n":"Rune Capacity"},{"c":30,"s":2,"id":11978,"u":"runic%20keystone_g%26g","p":23,"h":1,"n":"Runic Keystone"},{"c":30,"s":2,"id":11979,"u":"segmented%20frame_g%26g","p":17,"h":1,"n":"Segmented Frame"},{"c":30,"s":2,"id":11980,"u":"sensory%20array_g%26g","p":17,"h":1,"n":"Sensory Array"},{"c":30,"s":2,"id":11981,"u":"speed%20boosters_g%26g","p":16,"h":1,"n":"Speed Boosters"},{"c":30,"s":2,"id":11982,"u":"subtle%20dampeners_g%26g","p":16,"h":1,"n":"Subtle Dampeners"},{"c":30,"s":2,"id":11983,"u":"tangle%20line_g%26g","p":21,"h":1,"n":"Tangle Line"},{"c":30,"s":2,"id":11984,"u":"tensile%20absorption_g%26g","p":20,"h":1,"n":"Tensile Absorption"},{"c":30,"s":2,"id":11985,"u":"turret%20configuration_g%26g","p":21,"h":1,"n":"Turret Configuration"},{"c":30,"s":2,"id":11986,"u":"wall%20configuration_g%26g","p":23,"h":1,"n":"Wall Configuration"},{"c":30,"s":2,"id":11987,"u":"wonder%20gears_g%26g","p":17,"h":1,"n":"Wonder Gears"},{"c":30,"s":4,"id":11990,"u":"lesson%20of%20death_apg","p":100,"h":1,"n":"Lesson of Death"},{"c":30,"s":4,"id":11991,"u":"lesson%20of%20dreams_apg","p":100,"h":1,"n":"Lesson of Dreams"},{"c":30,"s":4,"id":11992,"u":"lesson%20of%20life_apg","p":100,"h":1,"n":"Lesson of Life"},{"c":30,"s":4,"id":11993,"u":"lesson%20of%20mischief_apg","p":100,"h":1,"n":"Lesson of Mischief"},{"c":30,"s":4,"id":11994,"u":"lesson%20of%20protection_apg","p":100,"h":1,"n":"Lesson of Protection"},{"c":30,"s":4,"id":11995,"u":"lesson%20of%20renewal_apg","p":100,"h":1,"n":"Lesson of Renewal"},{"c":30,"s":4,"id":11996,"u":"lesson%20of%20shadow_apg","p":100,"h":1,"n":"Lesson of Shadow"},{"c":30,"s":4,"id":11997,"u":"lesson%20of%20snow_apg","p":100,"h":1,"n":"Lesson of Snow"},{"c":30,"s":4,"id":11998,"u":"lesson%20of%20the%20elements_apg","p":100,"h":1,"n":"Lesson of the Elements"},{"c":30,"s":4,"id":11999,"u":"lesson%20of%20vengeance_apg","p":100,"h":1,"n":"Lesson of Vengeance"},{"c":30,"s":52,"id":12065,"u":"lesson%20of%20the%20frozen%20queen_lol","p":32,"h":1,"n":"Lesson of the Frozen Queen"},{"c":30,"s":39,"id":12066,"u":"lesson%20of%20calamity_sot1","p":100,"h":1,"n":"Lesson of Calamity"},{"n":"Bestiary","c":99,"u":"bestiary.html","id":12067},{"n":"Spells","c":99,"u":"spells.html","id":12068},{"n":"Backgrounds","c":99,"u":"backgrounds.html","id":12069},{"n":"Items","c":99,"u":"items.html","id":12070},{"n":"Classes","c":99,"u":"classes.html","id":12071},{"n":"Conditions","c":99,"u":"conditions.html","id":12072},{"n":"Afflictions","c":99,"u":"afflictions.html","id":12073},{"n":"Feats","c":99,"u":"feats.html","id":12074},{"n":"Companions and Familiars","c":99,"u":"companionsfamiliars.html","id":12075},{"n":"Ancestries","c":99,"u":"ancestries.html","id":12076},{"n":"Archetypes","c":99,"u":"archetypes.html","id":12077},{"n":"Variant Rules","c":99,"u":"variantrules.html","id":12078},{"n":"Adventures","c":99,"u":"adventures.html","id":12079},{"n":"Books","c":99,"u":"books.html","id":12080},{"n":"Deities","c":99,"u":"deities.html","id":12081},{"n":"Hazards","c":99,"u":"hazards.html","id":12082},{"n":"Quick Reference","c":99,"u":"quickreference.html","id":12083},{"n":"Homebrew Manager","c":99,"u":"managebrew.html","id":12084},{"n":"Renderer Demo","c":99,"u":"renderdemo.html","id":12085},{"n":"Tables","c":99,"u":"tables.html","id":12086},{"n":"Organizations","c":99,"u":"organizations.html","id":12087},{"n":"Actions","c":99,"u":"actions.html","id":12088},{"n":"Creature Abilities","c":99,"u":"abilities.html","id":12089},{"n":"Languages","c":99,"u":"languages.html","id":12090},{"n":"GM Screen","c":99,"u":"gmscreen.html","id":12091},{"n":"Changelog","c":99,"u":"changelog.html","id":12092},{"n":"Planes and Places","c":99,"u":"places.html","id":12093},{"n":"Optional Features","c":99,"u":"optionalfeatures.html","id":12094}],"m":{"s":{"LOME":0,"LOAG":1,"G&G":2,"AAWS":3,"APG":4,"CRB":5,"LOCG":6,"LOTGB":7,"EC3":8,"Bst":9,"Bst2":10,"Bst3":11,"GMG":12,"AoA1":13,"AoA2":14,"AoA3":15,"AoA4":16,"AoA5":17,"AoA6":18,"AoE1":19,"AoE2":20,"AoE3":21,"AoE4":22,"AoE5":23,"AoE6":24,"AV1":25,"AV2":26,"AV3":27,"EC1":28,"EC2":29,"EC4":30,"EC5":31,"EC6":32,"FoP":33,"FRP1":34,"FRP2":35,"FRP3":36,"LTiBA":37,"Sli":38,"SoT1":39,"SoT2":40,"TiO":41,"AoA0":42,"AoE0":43,"AV0":44,"EC0":45,"FRP0":46,"LOPSG":47,"LOWG":48,"SoM":49,"SoT0":50,"LOGM":51,"LOL":52,"AOA5":53,"AOE1":54,"AOE3":55,"NGD":56,"SOT2":57,"undefined":58,"ID":59}}} \ No newline at end of file diff --git a/sw.js b/sw.js index 69dbb66dd9..41e8bc33ec 100644 --- a/sw.js +++ b/sw.js @@ -1,2509 +1,2 @@ -(() => { - // node_modules/workbox-core/_version.js - try { - self["workbox:core:6.5.2"] && _(); - } catch (e) { - } - - // node_modules/workbox-core/models/messages/messages.js - var messages = { - "invalid-value": ({ paramName, validValueDescription, value }) => { - if (!paramName || !validValueDescription) { - throw new Error(`Unexpected input to 'invalid-value' error.`); - } - return `The '${paramName}' parameter was given a value with an unexpected value. ${validValueDescription} Received a value of ${JSON.stringify(value)}.`; - }, - "not-an-array": ({ moduleName, className, funcName, paramName }) => { - if (!moduleName || !className || !funcName || !paramName) { - throw new Error(`Unexpected input to 'not-an-array' error.`); - } - return `The parameter '${paramName}' passed into '${moduleName}.${className}.${funcName}()' must be an array.`; - }, - "incorrect-type": ({ expectedType, paramName, moduleName, className, funcName }) => { - if (!expectedType || !paramName || !moduleName || !funcName) { - throw new Error(`Unexpected input to 'incorrect-type' error.`); - } - const classNameStr = className ? `${className}.` : ""; - return `The parameter '${paramName}' passed into '${moduleName}.${classNameStr}${funcName}()' must be of type ${expectedType}.`; - }, - "incorrect-class": ({ expectedClassName, paramName, moduleName, className, funcName, isReturnValueProblem }) => { - if (!expectedClassName || !moduleName || !funcName) { - throw new Error(`Unexpected input to 'incorrect-class' error.`); - } - const classNameStr = className ? `${className}.` : ""; - if (isReturnValueProblem) { - return `The return value from '${moduleName}.${classNameStr}${funcName}()' must be an instance of class ${expectedClassName}.`; - } - return `The parameter '${paramName}' passed into '${moduleName}.${classNameStr}${funcName}()' must be an instance of class ${expectedClassName}.`; - }, - "missing-a-method": ({ expectedMethod, paramName, moduleName, className, funcName }) => { - if (!expectedMethod || !paramName || !moduleName || !className || !funcName) { - throw new Error(`Unexpected input to 'missing-a-method' error.`); - } - return `${moduleName}.${className}.${funcName}() expected the '${paramName}' parameter to expose a '${expectedMethod}' method.`; - }, - "add-to-cache-list-unexpected-type": ({ entry }) => { - return `An unexpected entry was passed to 'workbox-precaching.PrecacheController.addToCacheList()' The entry '${JSON.stringify(entry)}' isn't supported. You must supply an array of strings with one or more characters, objects with a url property or Request objects.`; - }, - "add-to-cache-list-conflicting-entries": ({ firstEntry, secondEntry }) => { - if (!firstEntry || !secondEntry) { - throw new Error(`Unexpected input to 'add-to-cache-list-duplicate-entries' error.`); - } - return `Two of the entries passed to 'workbox-precaching.PrecacheController.addToCacheList()' had the URL ${firstEntry} but different revision details. Workbox is unable to cache and version the asset correctly. Please remove one of the entries.`; - }, - "plugin-error-request-will-fetch": ({ thrownErrorMessage }) => { - if (!thrownErrorMessage) { - throw new Error(`Unexpected input to 'plugin-error-request-will-fetch', error.`); - } - return `An error was thrown by a plugins 'requestWillFetch()' method. The thrown error message was: '${thrownErrorMessage}'.`; - }, - "invalid-cache-name": ({ cacheNameId, value }) => { - if (!cacheNameId) { - throw new Error(`Expected a 'cacheNameId' for error 'invalid-cache-name'`); - } - return `You must provide a name containing at least one character for setCacheDetails({${cacheNameId}: '...'}). Received a value of '${JSON.stringify(value)}'`; - }, - "unregister-route-but-not-found-with-method": ({ method }) => { - if (!method) { - throw new Error(`Unexpected input to 'unregister-route-but-not-found-with-method' error.`); - } - return `The route you're trying to unregister was not previously registered for the method type '${method}'.`; - }, - "unregister-route-route-not-registered": () => { - return `The route you're trying to unregister was not previously registered.`; - }, - "queue-replay-failed": ({ name }) => { - return `Replaying the background sync queue '${name}' failed.`; - }, - "duplicate-queue-name": ({ name }) => { - return `The Queue name '${name}' is already being used. All instances of backgroundSync.Queue must be given unique names.`; - }, - "expired-test-without-max-age": ({ methodName, paramName }) => { - return `The '${methodName}()' method can only be used when the '${paramName}' is used in the constructor.`; - }, - "unsupported-route-type": ({ moduleName, className, funcName, paramName }) => { - return `The supplied '${paramName}' parameter was an unsupported type. Please check the docs for ${moduleName}.${className}.${funcName} for valid input types.`; - }, - "not-array-of-class": ({ value, expectedClass, moduleName, className, funcName, paramName }) => { - return `The supplied '${paramName}' parameter must be an array of '${expectedClass}' objects. Received '${JSON.stringify(value)},'. Please check the call to ${moduleName}.${className}.${funcName}() to fix the issue.`; - }, - "max-entries-or-age-required": ({ moduleName, className, funcName }) => { - return `You must define either config.maxEntries or config.maxAgeSecondsin ${moduleName}.${className}.${funcName}`; - }, - "statuses-or-headers-required": ({ moduleName, className, funcName }) => { - return `You must define either config.statuses or config.headersin ${moduleName}.${className}.${funcName}`; - }, - "invalid-string": ({ moduleName, funcName, paramName }) => { - if (!paramName || !moduleName || !funcName) { - throw new Error(`Unexpected input to 'invalid-string' error.`); - } - return `When using strings, the '${paramName}' parameter must start with 'http' (for cross-origin matches) or '/' (for same-origin matches). Please see the docs for ${moduleName}.${funcName}() for more info.`; - }, - "channel-name-required": () => { - return `You must provide a channelName to construct a BroadcastCacheUpdate instance.`; - }, - "invalid-responses-are-same-args": () => { - return `The arguments passed into responsesAreSame() appear to be invalid. Please ensure valid Responses are used.`; - }, - "expire-custom-caches-only": () => { - return `You must provide a 'cacheName' property when using the expiration plugin with a runtime caching strategy.`; - }, - "unit-must-be-bytes": ({ normalizedRangeHeader }) => { - if (!normalizedRangeHeader) { - throw new Error(`Unexpected input to 'unit-must-be-bytes' error.`); - } - return `The 'unit' portion of the Range header must be set to 'bytes'. The Range header provided was "${normalizedRangeHeader}"`; - }, - "single-range-only": ({ normalizedRangeHeader }) => { - if (!normalizedRangeHeader) { - throw new Error(`Unexpected input to 'single-range-only' error.`); - } - return `Multiple ranges are not supported. Please use a single start value, and optional end value. The Range header provided was "${normalizedRangeHeader}"`; - }, - "invalid-range-values": ({ normalizedRangeHeader }) => { - if (!normalizedRangeHeader) { - throw new Error(`Unexpected input to 'invalid-range-values' error.`); - } - return `The Range header is missing both start and end values. At least one of those values is needed. The Range header provided was "${normalizedRangeHeader}"`; - }, - "no-range-header": () => { - return `No Range header was found in the Request provided.`; - }, - "range-not-satisfiable": ({ size, start, end }) => { - return `The start (${start}) and end (${end}) values in the Range are not satisfiable by the cached response, which is ${size} bytes.`; - }, - "attempt-to-cache-non-get-request": ({ url, method }) => { - return `Unable to cache '${url}' because it is a '${method}' request and only 'GET' requests can be cached.`; - }, - "cache-put-with-no-response": ({ url }) => { - return `There was an attempt to cache '${url}' but the response was not defined.`; - }, - "no-response": ({ url, error }) => { - let message = `The strategy could not generate a response for '${url}'.`; - if (error) { - message += ` The underlying error is ${error}.`; - } - return message; - }, - "bad-precaching-response": ({ url, status }) => { - return `The precaching request for '${url}' failed` + (status ? ` with an HTTP status of ${status}.` : `.`); - }, - "non-precached-url": ({ url }) => { - return `createHandlerBoundToURL('${url}') was called, but that URL is not precached. Please pass in a URL that is precached instead.`; - }, - "add-to-cache-list-conflicting-integrities": ({ url }) => { - return `Two of the entries passed to 'workbox-precaching.PrecacheController.addToCacheList()' had the URL ${url} with different integrity values. Please remove one of them.`; - }, - "missing-precache-entry": ({ cacheName, url }) => { - return `Unable to find a precached response in ${cacheName} for ${url}.`; - }, - "cross-origin-copy-response": ({ origin }) => { - return `workbox-core.copyResponse() can only be used with same-origin responses. It was passed a response with origin ${origin}.`; - }, - "opaque-streams-source": ({ type }) => { - const message = `One of the workbox-streams sources resulted in an '${type}' response.`; - if (type === "opaqueredirect") { - return `${message} Please do not use a navigation request that results in a redirect as a source.`; - } - return `${message} Please ensure your sources are CORS-enabled.`; - } - }; - - // node_modules/workbox-core/models/messages/messageGenerator.js - var generatorFunction = (code, details = {}) => { - const message = messages[code]; - if (!message) { - throw new Error(`Unable to find message for code '${code}'.`); - } - return message(details); - }; - var messageGenerator = false ? fallback : generatorFunction; - - // node_modules/workbox-core/_private/WorkboxError.js - var WorkboxError = class extends Error { - constructor(errorCode, details) { - const message = messageGenerator(errorCode, details); - super(message); - this.name = errorCode; - this.details = details; - } - }; - - // node_modules/workbox-core/_private/assert.js - var isArray = (value, details) => { - if (!Array.isArray(value)) { - throw new WorkboxError("not-an-array", details); - } - }; - var hasMethod = (object, expectedMethod, details) => { - const type = typeof object[expectedMethod]; - if (type !== "function") { - details["expectedMethod"] = expectedMethod; - throw new WorkboxError("missing-a-method", details); - } - }; - var isType = (object, expectedType, details) => { - if (typeof object !== expectedType) { - details["expectedType"] = expectedType; - throw new WorkboxError("incorrect-type", details); - } - }; - var isInstance = (object, expectedClass, details) => { - if (!(object instanceof expectedClass)) { - details["expectedClassName"] = expectedClass.name; - throw new WorkboxError("incorrect-class", details); - } - }; - var isOneOf = (value, validValues, details) => { - if (!validValues.includes(value)) { - details["validValueDescription"] = `Valid values are ${JSON.stringify(validValues)}.`; - throw new WorkboxError("invalid-value", details); - } - }; - var isArrayOfClass = (value, expectedClass, details) => { - const error = new WorkboxError("not-array-of-class", details); - if (!Array.isArray(value)) { - throw error; - } - for (const item of value) { - if (!(item instanceof expectedClass)) { - throw error; - } - } - }; - var finalAssertExports = false ? null : { - hasMethod, - isArray, - isInstance, - isOneOf, - isType, - isArrayOfClass - }; - - // node_modules/workbox-core/_private/cacheNames.js - var _cacheNameDetails = { - googleAnalytics: "googleAnalytics", - precache: "precache-v2", - prefix: "workbox", - runtime: "runtime", - suffix: typeof registration !== "undefined" ? registration.scope : "" - }; - var _createCacheName = (cacheName) => { - return [_cacheNameDetails.prefix, cacheName, _cacheNameDetails.suffix].filter((value) => value && value.length > 0).join("-"); - }; - var eachCacheNameDetail = (fn) => { - for (const key of Object.keys(_cacheNameDetails)) { - fn(key); - } - }; - var cacheNames = { - updateDetails: (details) => { - eachCacheNameDetail((key) => { - if (typeof details[key] === "string") { - _cacheNameDetails[key] = details[key]; - } - }); - }, - getGoogleAnalyticsName: (userCacheName) => { - return userCacheName || _createCacheName(_cacheNameDetails.googleAnalytics); - }, - getPrecacheName: (userCacheName) => { - return userCacheName || _createCacheName(_cacheNameDetails.precache); - }, - getPrefix: () => { - return _cacheNameDetails.prefix; - }, - getRuntimeName: (userCacheName) => { - return userCacheName || _createCacheName(_cacheNameDetails.runtime); - }, - getSuffix: () => { - return _cacheNameDetails.suffix; - } - }; - - // node_modules/workbox-core/_private/logger.js - var logger = false ? null : (() => { - if (!("__WB_DISABLE_DEV_LOGS" in self)) { - self.__WB_DISABLE_DEV_LOGS = false; - } - let inGroup = false; - const methodToColorMap = { - debug: `#7f8c8d`, - log: `#2ecc71`, - warn: `#f39c12`, - error: `#c0392b`, - groupCollapsed: `#3498db`, - groupEnd: null - }; - const print = function(method, args) { - if (self.__WB_DISABLE_DEV_LOGS) { - return; - } - if (method === "groupCollapsed") { - if (/^((?!chrome|android).)*safari/i.test(navigator.userAgent)) { - console[method](...args); - return; - } - } - const styles = [ - `background: ${methodToColorMap[method]}`, - `border-radius: 0.5em`, - `color: white`, - `font-weight: bold`, - `padding: 2px 0.5em` - ]; - const logPrefix = inGroup ? [] : ["%cworkbox", styles.join(";")]; - console[method](...logPrefix, ...args); - if (method === "groupCollapsed") { - inGroup = true; - } - if (method === "groupEnd") { - inGroup = false; - } - }; - const api = {}; - const loggerMethods = Object.keys(methodToColorMap); - for (const key of loggerMethods) { - const method = key; - api[method] = (...args) => { - print(method, args); - }; - } - return api; - })(); - - // node_modules/workbox-core/_private/waitUntil.js - function waitUntil(event, asyncFn) { - const returnPromise = asyncFn(); - event.waitUntil(returnPromise); - return returnPromise; - } - - // node_modules/workbox-precaching/_version.js - try { - self["workbox:precaching:6.5.2"] && _(); - } catch (e) { - } - - // node_modules/workbox-precaching/utils/createCacheKey.js - var REVISION_SEARCH_PARAM = "__WB_REVISION__"; - function createCacheKey(entry) { - if (!entry) { - throw new WorkboxError("add-to-cache-list-unexpected-type", { entry }); - } - if (typeof entry === "string") { - const urlObject = new URL(entry, location.href); - return { - cacheKey: urlObject.href, - url: urlObject.href - }; - } - const { revision, url } = entry; - if (!url) { - throw new WorkboxError("add-to-cache-list-unexpected-type", { entry }); - } - if (!revision) { - const urlObject = new URL(url, location.href); - return { - cacheKey: urlObject.href, - url: urlObject.href - }; - } - const cacheKeyURL = new URL(url, location.href); - const originalURL = new URL(url, location.href); - cacheKeyURL.searchParams.set(REVISION_SEARCH_PARAM, revision); - return { - cacheKey: cacheKeyURL.href, - url: originalURL.href - }; - } - - // node_modules/workbox-precaching/utils/PrecacheInstallReportPlugin.js - var PrecacheInstallReportPlugin = class { - constructor() { - this.updatedURLs = []; - this.notUpdatedURLs = []; - this.handlerWillStart = async ({ request, state }) => { - if (state) { - state.originalRequest = request; - } - }; - this.cachedResponseWillBeUsed = async ({ event, state, cachedResponse }) => { - if (event.type === "install") { - if (state && state.originalRequest && state.originalRequest instanceof Request) { - const url = state.originalRequest.url; - if (cachedResponse) { - this.notUpdatedURLs.push(url); - } else { - this.updatedURLs.push(url); - } - } - } - return cachedResponse; - }; - } - }; - - // node_modules/workbox-precaching/utils/PrecacheCacheKeyPlugin.js - var PrecacheCacheKeyPlugin = class { - constructor({ precacheController: precacheController2 }) { - this.cacheKeyWillBeUsed = async ({ request, params }) => { - const cacheKey = (params === null || params === void 0 ? void 0 : params.cacheKey) || this._precacheController.getCacheKeyForURL(request.url); - return cacheKey ? new Request(cacheKey, { headers: request.headers }) : request; - }; - this._precacheController = precacheController2; - } - }; - - // node_modules/workbox-precaching/utils/printCleanupDetails.js - var logGroup = (groupTitle, deletedURLs) => { - logger.groupCollapsed(groupTitle); - for (const url of deletedURLs) { - logger.log(url); - } - logger.groupEnd(); - }; - function printCleanupDetails(deletedURLs) { - const deletionCount = deletedURLs.length; - if (deletionCount > 0) { - logger.groupCollapsed(`During precaching cleanup, ${deletionCount} cached request${deletionCount === 1 ? " was" : "s were"} deleted.`); - logGroup("Deleted Cache Requests", deletedURLs); - logger.groupEnd(); - } - } - - // node_modules/workbox-precaching/utils/printInstallDetails.js - function _nestedGroup(groupTitle, urls) { - if (urls.length === 0) { - return; - } - logger.groupCollapsed(groupTitle); - for (const url of urls) { - logger.log(url); - } - logger.groupEnd(); - } - function printInstallDetails(urlsToPrecache, urlsAlreadyPrecached) { - const precachedCount = urlsToPrecache.length; - const alreadyPrecachedCount = urlsAlreadyPrecached.length; - if (precachedCount || alreadyPrecachedCount) { - let message = `Precaching ${precachedCount} file${precachedCount === 1 ? "" : "s"}.`; - if (alreadyPrecachedCount > 0) { - message += ` ${alreadyPrecachedCount} file${alreadyPrecachedCount === 1 ? " is" : "s are"} already cached.`; - } - logger.groupCollapsed(message); - _nestedGroup(`View newly precached URLs.`, urlsToPrecache); - _nestedGroup(`View previously precached URLs.`, urlsAlreadyPrecached); - logger.groupEnd(); - } - } - - // node_modules/workbox-core/_private/canConstructResponseFromBodyStream.js - var supportStatus; - function canConstructResponseFromBodyStream() { - if (supportStatus === void 0) { - const testResponse = new Response(""); - if ("body" in testResponse) { - try { - new Response(testResponse.body); - supportStatus = true; - } catch (error) { - supportStatus = false; - } - } - supportStatus = false; - } - return supportStatus; - } - - // node_modules/workbox-core/copyResponse.js - async function copyResponse(response, modifier) { - let origin = null; - if (response.url) { - const responseURL = new URL(response.url); - origin = responseURL.origin; - } - if (origin !== self.location.origin) { - throw new WorkboxError("cross-origin-copy-response", { origin }); - } - const clonedResponse = response.clone(); - const responseInit = { - headers: new Headers(clonedResponse.headers), - status: clonedResponse.status, - statusText: clonedResponse.statusText - }; - const modifiedResponseInit = modifier ? modifier(responseInit) : responseInit; - const body = canConstructResponseFromBodyStream() ? clonedResponse.body : await clonedResponse.blob(); - return new Response(body, modifiedResponseInit); - } - - // node_modules/workbox-core/_private/getFriendlyURL.js - var getFriendlyURL = (url) => { - const urlObj = new URL(String(url), location.href); - return urlObj.href.replace(new RegExp(`^${location.origin}`), ""); - }; - - // node_modules/workbox-core/_private/cacheMatchIgnoreParams.js - function stripParams(fullURL, ignoreParams) { - const strippedURL = new URL(fullURL); - for (const param of ignoreParams) { - strippedURL.searchParams.delete(param); - } - return strippedURL.href; - } - async function cacheMatchIgnoreParams(cache, request, ignoreParams, matchOptions) { - const strippedRequestURL = stripParams(request.url, ignoreParams); - if (request.url === strippedRequestURL) { - return cache.match(request, matchOptions); - } - const keysOptions = Object.assign(Object.assign({}, matchOptions), { ignoreSearch: true }); - const cacheKeys = await cache.keys(request, keysOptions); - for (const cacheKey of cacheKeys) { - const strippedCacheKeyURL = stripParams(cacheKey.url, ignoreParams); - if (strippedRequestURL === strippedCacheKeyURL) { - return cache.match(cacheKey, matchOptions); - } - } - return; - } - - // node_modules/workbox-core/_private/Deferred.js - var Deferred = class { - constructor() { - this.promise = new Promise((resolve, reject) => { - this.resolve = resolve; - this.reject = reject; - }); - } - }; - - // node_modules/workbox-core/models/quotaErrorCallbacks.js - var quotaErrorCallbacks = /* @__PURE__ */ new Set(); - - // node_modules/workbox-core/_private/executeQuotaErrorCallbacks.js - async function executeQuotaErrorCallbacks() { - if (true) { - logger.log(`About to run ${quotaErrorCallbacks.size} callbacks to clean up caches.`); - } - for (const callback of quotaErrorCallbacks) { - await callback(); - if (true) { - logger.log(callback, "is complete."); - } - } - if (true) { - logger.log("Finished running callbacks."); - } - } - - // node_modules/workbox-core/_private/timeout.js - function timeout(ms) { - return new Promise((resolve) => setTimeout(resolve, ms)); - } - - // node_modules/workbox-strategies/_version.js - try { - self["workbox:strategies:6.5.2"] && _(); - } catch (e) { - } - - // node_modules/workbox-strategies/StrategyHandler.js - function toRequest(input) { - return typeof input === "string" ? new Request(input) : input; - } - var StrategyHandler = class { - constructor(strategy, options) { - this._cacheKeys = {}; - if (true) { - finalAssertExports.isInstance(options.event, ExtendableEvent, { - moduleName: "workbox-strategies", - className: "StrategyHandler", - funcName: "constructor", - paramName: "options.event" - }); - } - Object.assign(this, options); - this.event = options.event; - this._strategy = strategy; - this._handlerDeferred = new Deferred(); - this._extendLifetimePromises = []; - this._plugins = [...strategy.plugins]; - this._pluginStateMap = /* @__PURE__ */ new Map(); - for (const plugin of this._plugins) { - this._pluginStateMap.set(plugin, {}); - } - this.event.waitUntil(this._handlerDeferred.promise); - } - async fetch(input) { - const { event } = this; - let request = toRequest(input); - if (request.mode === "navigate" && event instanceof FetchEvent && event.preloadResponse) { - const possiblePreloadResponse = await event.preloadResponse; - if (possiblePreloadResponse) { - if (true) { - logger.log(`Using a preloaded navigation response for '${getFriendlyURL(request.url)}'`); - } - return possiblePreloadResponse; - } - } - const originalRequest = this.hasCallback("fetchDidFail") ? request.clone() : null; - try { - for (const cb of this.iterateCallbacks("requestWillFetch")) { - request = await cb({ request: request.clone(), event }); - } - } catch (err) { - if (err instanceof Error) { - throw new WorkboxError("plugin-error-request-will-fetch", { - thrownErrorMessage: err.message - }); - } - } - const pluginFilteredRequest = request.clone(); - try { - let fetchResponse; - fetchResponse = await fetch(request, request.mode === "navigate" ? void 0 : this._strategy.fetchOptions); - if (true) { - logger.debug(`Network request for '${getFriendlyURL(request.url)}' returned a response with status '${fetchResponse.status}'.`); - } - for (const callback of this.iterateCallbacks("fetchDidSucceed")) { - fetchResponse = await callback({ - event, - request: pluginFilteredRequest, - response: fetchResponse - }); - } - return fetchResponse; - } catch (error) { - if (true) { - logger.log(`Network request for '${getFriendlyURL(request.url)}' threw an error.`, error); - } - if (originalRequest) { - await this.runCallbacks("fetchDidFail", { - error, - event, - originalRequest: originalRequest.clone(), - request: pluginFilteredRequest.clone() - }); - } - throw error; - } - } - async fetchAndCachePut(input) { - const response = await this.fetch(input); - const responseClone = response.clone(); - void this.waitUntil(this.cachePut(input, responseClone)); - return response; - } - async cacheMatch(key) { - const request = toRequest(key); - let cachedResponse; - const { cacheName, matchOptions } = this._strategy; - const effectiveRequest = await this.getCacheKey(request, "read"); - const multiMatchOptions = Object.assign(Object.assign({}, matchOptions), { cacheName }); - cachedResponse = await caches.match(effectiveRequest, multiMatchOptions); - if (true) { - if (cachedResponse) { - logger.debug(`Found a cached response in '${cacheName}'.`); - } else { - logger.debug(`No cached response found in '${cacheName}'.`); - } - } - for (const callback of this.iterateCallbacks("cachedResponseWillBeUsed")) { - cachedResponse = await callback({ - cacheName, - matchOptions, - cachedResponse, - request: effectiveRequest, - event: this.event - }) || void 0; - } - return cachedResponse; - } - async cachePut(key, response) { - const request = toRequest(key); - await timeout(0); - const effectiveRequest = await this.getCacheKey(request, "write"); - if (true) { - if (effectiveRequest.method && effectiveRequest.method !== "GET") { - throw new WorkboxError("attempt-to-cache-non-get-request", { - url: getFriendlyURL(effectiveRequest.url), - method: effectiveRequest.method - }); - } - const vary = response.headers.get("Vary"); - if (vary) { - logger.debug(`The response for ${getFriendlyURL(effectiveRequest.url)} has a 'Vary: ${vary}' header. Consider setting the {ignoreVary: true} option on your strategy to ensure cache matching and deletion works as expected.`); - } - } - if (!response) { - if (true) { - logger.error(`Cannot cache non-existent response for '${getFriendlyURL(effectiveRequest.url)}'.`); - } - throw new WorkboxError("cache-put-with-no-response", { - url: getFriendlyURL(effectiveRequest.url) - }); - } - const responseToCache = await this._ensureResponseSafeToCache(response); - if (!responseToCache) { - if (true) { - logger.debug(`Response '${getFriendlyURL(effectiveRequest.url)}' will not be cached.`, responseToCache); - } - return false; - } - const { cacheName, matchOptions } = this._strategy; - const cache = await self.caches.open(cacheName); - const hasCacheUpdateCallback = this.hasCallback("cacheDidUpdate"); - const oldResponse = hasCacheUpdateCallback ? await cacheMatchIgnoreParams(cache, effectiveRequest.clone(), ["__WB_REVISION__"], matchOptions) : null; - if (true) { - logger.debug(`Updating the '${cacheName}' cache with a new Response for ${getFriendlyURL(effectiveRequest.url)}.`); - } - try { - await cache.put(effectiveRequest, hasCacheUpdateCallback ? responseToCache.clone() : responseToCache); - } catch (error) { - if (error instanceof Error) { - if (error.name === "QuotaExceededError") { - await executeQuotaErrorCallbacks(); - } - throw error; - } - } - for (const callback of this.iterateCallbacks("cacheDidUpdate")) { - await callback({ - cacheName, - oldResponse, - newResponse: responseToCache.clone(), - request: effectiveRequest, - event: this.event - }); - } - return true; - } - async getCacheKey(request, mode) { - const key = `${request.url} | ${mode}`; - if (!this._cacheKeys[key]) { - let effectiveRequest = request; - for (const callback of this.iterateCallbacks("cacheKeyWillBeUsed")) { - effectiveRequest = toRequest(await callback({ - mode, - request: effectiveRequest, - event: this.event, - params: this.params - })); - } - this._cacheKeys[key] = effectiveRequest; - } - return this._cacheKeys[key]; - } - hasCallback(name) { - for (const plugin of this._strategy.plugins) { - if (name in plugin) { - return true; - } - } - return false; - } - async runCallbacks(name, param) { - for (const callback of this.iterateCallbacks(name)) { - await callback(param); - } - } - *iterateCallbacks(name) { - for (const plugin of this._strategy.plugins) { - if (typeof plugin[name] === "function") { - const state = this._pluginStateMap.get(plugin); - const statefulCallback = (param) => { - const statefulParam = Object.assign(Object.assign({}, param), { state }); - return plugin[name](statefulParam); - }; - yield statefulCallback; - } - } - } - waitUntil(promise) { - this._extendLifetimePromises.push(promise); - return promise; - } - async doneWaiting() { - let promise; - while (promise = this._extendLifetimePromises.shift()) { - await promise; - } - } - destroy() { - this._handlerDeferred.resolve(null); - } - async _ensureResponseSafeToCache(response) { - let responseToCache = response; - let pluginsUsed = false; - for (const callback of this.iterateCallbacks("cacheWillUpdate")) { - responseToCache = await callback({ - request: this.request, - response: responseToCache, - event: this.event - }) || void 0; - pluginsUsed = true; - if (!responseToCache) { - break; - } - } - if (!pluginsUsed) { - if (responseToCache && responseToCache.status !== 200) { - responseToCache = void 0; - } - if (true) { - if (responseToCache) { - if (responseToCache.status !== 200) { - if (responseToCache.status === 0) { - logger.warn(`The response for '${this.request.url}' is an opaque response. The caching strategy that you're using will not cache opaque responses by default.`); - } else { - logger.debug(`The response for '${this.request.url}' returned a status code of '${response.status}' and won't be cached as a result.`); - } - } - } - } - } - return responseToCache; - } - }; - - // node_modules/workbox-strategies/Strategy.js - var Strategy = class { - constructor(options = {}) { - this.cacheName = cacheNames.getRuntimeName(options.cacheName); - this.plugins = options.plugins || []; - this.fetchOptions = options.fetchOptions; - this.matchOptions = options.matchOptions; - } - handle(options) { - const [responseDone] = this.handleAll(options); - return responseDone; - } - handleAll(options) { - if (options instanceof FetchEvent) { - options = { - event: options, - request: options.request - }; - } - const event = options.event; - const request = typeof options.request === "string" ? new Request(options.request) : options.request; - const params = "params" in options ? options.params : void 0; - const handler = new StrategyHandler(this, { event, request, params }); - const responseDone = this._getResponse(handler, request, event); - const handlerDone = this._awaitComplete(responseDone, handler, request, event); - return [responseDone, handlerDone]; - } - async _getResponse(handler, request, event) { - await handler.runCallbacks("handlerWillStart", { event, request }); - let response = void 0; - try { - response = await this._handle(request, handler); - if (!response || response.type === "error") { - throw new WorkboxError("no-response", { url: request.url }); - } - } catch (error) { - if (error instanceof Error) { - for (const callback of handler.iterateCallbacks("handlerDidError")) { - response = await callback({ error, event, request }); - if (response) { - break; - } - } - } - if (!response) { - throw error; - } else if (true) { - logger.log(`While responding to '${getFriendlyURL(request.url)}', an ${error instanceof Error ? error.toString() : ""} error occurred. Using a fallback response provided by a handlerDidError plugin.`); - } - } - for (const callback of handler.iterateCallbacks("handlerWillRespond")) { - response = await callback({ event, request, response }); - } - return response; - } - async _awaitComplete(responseDone, handler, request, event) { - let response; - let error; - try { - response = await responseDone; - } catch (error2) { - } - try { - await handler.runCallbacks("handlerDidRespond", { - event, - request, - response - }); - await handler.doneWaiting(); - } catch (waitUntilError) { - if (waitUntilError instanceof Error) { - error = waitUntilError; - } - } - await handler.runCallbacks("handlerDidComplete", { - event, - request, - response, - error - }); - handler.destroy(); - if (error) { - throw error; - } - } - }; - - // node_modules/workbox-precaching/PrecacheStrategy.js - var PrecacheStrategy = class extends Strategy { - constructor(options = {}) { - options.cacheName = cacheNames.getPrecacheName(options.cacheName); - super(options); - this._fallbackToNetwork = options.fallbackToNetwork === false ? false : true; - this.plugins.push(PrecacheStrategy.copyRedirectedCacheableResponsesPlugin); - } - async _handle(request, handler) { - const response = await handler.cacheMatch(request); - if (response) { - return response; - } - if (handler.event && handler.event.type === "install") { - return await this._handleInstall(request, handler); - } - return await this._handleFetch(request, handler); - } - async _handleFetch(request, handler) { - let response; - const params = handler.params || {}; - if (this._fallbackToNetwork) { - if (true) { - logger.warn(`The precached response for ${getFriendlyURL(request.url)} in ${this.cacheName} was not found. Falling back to the network.`); - } - const integrityInManifest = params.integrity; - const integrityInRequest = request.integrity; - const noIntegrityConflict = !integrityInRequest || integrityInRequest === integrityInManifest; - response = await handler.fetch(new Request(request, { - integrity: integrityInRequest || integrityInManifest - })); - if (integrityInManifest && noIntegrityConflict) { - this._useDefaultCacheabilityPluginIfNeeded(); - const wasCached = await handler.cachePut(request, response.clone()); - if (true) { - if (wasCached) { - logger.log(`A response for ${getFriendlyURL(request.url)} was used to "repair" the precache.`); - } - } - } - } else { - throw new WorkboxError("missing-precache-entry", { - cacheName: this.cacheName, - url: request.url - }); - } - if (true) { - const cacheKey = params.cacheKey || await handler.getCacheKey(request, "read"); - logger.groupCollapsed(`Precaching is responding to: ` + getFriendlyURL(request.url)); - logger.log(`Serving the precached url: ${getFriendlyURL(cacheKey instanceof Request ? cacheKey.url : cacheKey)}`); - logger.groupCollapsed(`View request details here.`); - logger.log(request); - logger.groupEnd(); - logger.groupCollapsed(`View response details here.`); - logger.log(response); - logger.groupEnd(); - logger.groupEnd(); - } - return response; - } - async _handleInstall(request, handler) { - this._useDefaultCacheabilityPluginIfNeeded(); - const response = await handler.fetch(request); - const wasCached = await handler.cachePut(request, response.clone()); - if (!wasCached) { - throw new WorkboxError("bad-precaching-response", { - url: request.url, - status: response.status - }); - } - return response; - } - _useDefaultCacheabilityPluginIfNeeded() { - let defaultPluginIndex = null; - let cacheWillUpdatePluginCount = 0; - for (const [index, plugin] of this.plugins.entries()) { - if (plugin === PrecacheStrategy.copyRedirectedCacheableResponsesPlugin) { - continue; - } - if (plugin === PrecacheStrategy.defaultPrecacheCacheabilityPlugin) { - defaultPluginIndex = index; - } - if (plugin.cacheWillUpdate) { - cacheWillUpdatePluginCount++; - } - } - if (cacheWillUpdatePluginCount === 0) { - this.plugins.push(PrecacheStrategy.defaultPrecacheCacheabilityPlugin); - } else if (cacheWillUpdatePluginCount > 1 && defaultPluginIndex !== null) { - this.plugins.splice(defaultPluginIndex, 1); - } - } - }; - PrecacheStrategy.defaultPrecacheCacheabilityPlugin = { - async cacheWillUpdate({ response }) { - if (!response || response.status >= 400) { - return null; - } - return response; - } - }; - PrecacheStrategy.copyRedirectedCacheableResponsesPlugin = { - async cacheWillUpdate({ response }) { - return response.redirected ? await copyResponse(response) : response; - } - }; - - // node_modules/workbox-precaching/PrecacheController.js - var PrecacheController = class { - constructor({ cacheName, plugins = [], fallbackToNetwork = true } = {}) { - this._urlsToCacheKeys = /* @__PURE__ */ new Map(); - this._urlsToCacheModes = /* @__PURE__ */ new Map(); - this._cacheKeysToIntegrities = /* @__PURE__ */ new Map(); - this._strategy = new PrecacheStrategy({ - cacheName: cacheNames.getPrecacheName(cacheName), - plugins: [ - ...plugins, - new PrecacheCacheKeyPlugin({ precacheController: this }) - ], - fallbackToNetwork - }); - this.install = this.install.bind(this); - this.activate = this.activate.bind(this); - } - get strategy() { - return this._strategy; - } - precache(entries) { - this.addToCacheList(entries); - if (!this._installAndActiveListenersAdded) { - self.addEventListener("install", this.install); - self.addEventListener("activate", this.activate); - this._installAndActiveListenersAdded = true; - } - } - addToCacheList(entries) { - if (true) { - finalAssertExports.isArray(entries, { - moduleName: "workbox-precaching", - className: "PrecacheController", - funcName: "addToCacheList", - paramName: "entries" - }); - } - const urlsToWarnAbout = []; - for (const entry of entries) { - if (typeof entry === "string") { - urlsToWarnAbout.push(entry); - } else if (entry && entry.revision === void 0) { - urlsToWarnAbout.push(entry.url); - } - const { cacheKey, url } = createCacheKey(entry); - const cacheMode = typeof entry !== "string" && entry.revision ? "reload" : "default"; - if (this._urlsToCacheKeys.has(url) && this._urlsToCacheKeys.get(url) !== cacheKey) { - throw new WorkboxError("add-to-cache-list-conflicting-entries", { - firstEntry: this._urlsToCacheKeys.get(url), - secondEntry: cacheKey - }); - } - if (typeof entry !== "string" && entry.integrity) { - if (this._cacheKeysToIntegrities.has(cacheKey) && this._cacheKeysToIntegrities.get(cacheKey) !== entry.integrity) { - throw new WorkboxError("add-to-cache-list-conflicting-integrities", { - url - }); - } - this._cacheKeysToIntegrities.set(cacheKey, entry.integrity); - } - this._urlsToCacheKeys.set(url, cacheKey); - this._urlsToCacheModes.set(url, cacheMode); - if (urlsToWarnAbout.length > 0) { - const warningMessage = `Workbox is precaching URLs without revision info: ${urlsToWarnAbout.join(", ")} -This is generally NOT safe. Learn more at https://bit.ly/wb-precache`; - if (false) { - console.warn(warningMessage); - } else { - logger.warn(warningMessage); - } - } - } - } - install(event) { - return waitUntil(event, async () => { - const installReportPlugin = new PrecacheInstallReportPlugin(); - this.strategy.plugins.push(installReportPlugin); - for (const [url, cacheKey] of this._urlsToCacheKeys) { - const integrity = this._cacheKeysToIntegrities.get(cacheKey); - const cacheMode = this._urlsToCacheModes.get(url); - const request = new Request(url, { - integrity, - cache: cacheMode, - credentials: "same-origin" - }); - await Promise.all(this.strategy.handleAll({ - params: { cacheKey }, - request, - event - })); - } - const { updatedURLs, notUpdatedURLs } = installReportPlugin; - if (true) { - printInstallDetails(updatedURLs, notUpdatedURLs); - } - return { updatedURLs, notUpdatedURLs }; - }); - } - activate(event) { - return waitUntil(event, async () => { - const cache = await self.caches.open(this.strategy.cacheName); - const currentlyCachedRequests = await cache.keys(); - const expectedCacheKeys = new Set(this._urlsToCacheKeys.values()); - const deletedURLs = []; - for (const request of currentlyCachedRequests) { - if (!expectedCacheKeys.has(request.url)) { - await cache.delete(request); - deletedURLs.push(request.url); - } - } - if (true) { - printCleanupDetails(deletedURLs); - } - return { deletedURLs }; - }); - } - getURLsToCacheKeys() { - return this._urlsToCacheKeys; - } - getCachedURLs() { - return [...this._urlsToCacheKeys.keys()]; - } - getCacheKeyForURL(url) { - const urlObject = new URL(url, location.href); - return this._urlsToCacheKeys.get(urlObject.href); - } - getIntegrityForCacheKey(cacheKey) { - return this._cacheKeysToIntegrities.get(cacheKey); - } - async matchPrecache(request) { - const url = request instanceof Request ? request.url : request; - const cacheKey = this.getCacheKeyForURL(url); - if (cacheKey) { - const cache = await self.caches.open(this.strategy.cacheName); - return cache.match(cacheKey); - } - return void 0; - } - createHandlerBoundToURL(url) { - const cacheKey = this.getCacheKeyForURL(url); - if (!cacheKey) { - throw new WorkboxError("non-precached-url", { url }); - } - return (options) => { - options.request = new Request(url); - options.params = Object.assign({ cacheKey }, options.params); - return this.strategy.handle(options); - }; - } - }; - - // node_modules/workbox-precaching/utils/getOrCreatePrecacheController.js - var precacheController; - var getOrCreatePrecacheController = () => { - if (!precacheController) { - precacheController = new PrecacheController(); - } - return precacheController; - }; - - // node_modules/workbox-routing/_version.js - try { - self["workbox:routing:6.5.2"] && _(); - } catch (e) { - } - - // node_modules/workbox-routing/utils/constants.js - var defaultMethod = "GET"; - var validMethods = [ - "DELETE", - "GET", - "HEAD", - "PATCH", - "POST", - "PUT" - ]; - - // node_modules/workbox-routing/utils/normalizeHandler.js - var normalizeHandler = (handler) => { - if (handler && typeof handler === "object") { - if (true) { - finalAssertExports.hasMethod(handler, "handle", { - moduleName: "workbox-routing", - className: "Route", - funcName: "constructor", - paramName: "handler" - }); - } - return handler; - } else { - if (true) { - finalAssertExports.isType(handler, "function", { - moduleName: "workbox-routing", - className: "Route", - funcName: "constructor", - paramName: "handler" - }); - } - return { handle: handler }; - } - }; - - // node_modules/workbox-routing/Route.js - var Route = class { - constructor(match, handler, method = defaultMethod) { - if (true) { - finalAssertExports.isType(match, "function", { - moduleName: "workbox-routing", - className: "Route", - funcName: "constructor", - paramName: "match" - }); - if (method) { - finalAssertExports.isOneOf(method, validMethods, { paramName: "method" }); - } - } - this.handler = normalizeHandler(handler); - this.match = match; - this.method = method; - } - setCatchHandler(handler) { - this.catchHandler = normalizeHandler(handler); - } - }; - - // node_modules/workbox-routing/RegExpRoute.js - var RegExpRoute = class extends Route { - constructor(regExp, handler, method) { - if (true) { - finalAssertExports.isInstance(regExp, RegExp, { - moduleName: "workbox-routing", - className: "RegExpRoute", - funcName: "constructor", - paramName: "pattern" - }); - } - const match = ({ url }) => { - const result = regExp.exec(url.href); - if (!result) { - return; - } - if (url.origin !== location.origin && result.index !== 0) { - if (true) { - logger.debug(`The regular expression '${regExp.toString()}' only partially matched against the cross-origin URL '${url.toString()}'. RegExpRoute's will only handle cross-origin requests if they match the entire URL.`); - } - return; - } - return result.slice(1); - }; - super(match, handler, method); - } - }; - - // node_modules/workbox-routing/Router.js - var Router = class { - constructor() { - this._routes = /* @__PURE__ */ new Map(); - this._defaultHandlerMap = /* @__PURE__ */ new Map(); - } - get routes() { - return this._routes; - } - addFetchListener() { - self.addEventListener("fetch", (event) => { - const { request } = event; - const responsePromise = this.handleRequest({ request, event }); - if (responsePromise) { - event.respondWith(responsePromise); - } - }); - } - addCacheListener() { - self.addEventListener("message", (event) => { - if (event.data && event.data.type === "CACHE_URLS") { - const { payload } = event.data; - if (true) { - logger.debug(`Caching URLs from the window`, payload.urlsToCache); - } - const requestPromises = Promise.all(payload.urlsToCache.map((entry) => { - if (typeof entry === "string") { - entry = [entry]; - } - const request = new Request(...entry); - return this.handleRequest({ request, event }); - })); - event.waitUntil(requestPromises); - if (event.ports && event.ports[0]) { - void requestPromises.then(() => event.ports[0].postMessage(true)); - } - } - }); - } - handleRequest({ request, event }) { - if (true) { - finalAssertExports.isInstance(request, Request, { - moduleName: "workbox-routing", - className: "Router", - funcName: "handleRequest", - paramName: "options.request" - }); - } - const url = new URL(request.url, location.href); - if (!url.protocol.startsWith("http")) { - if (true) { - logger.debug(`Workbox Router only supports URLs that start with 'http'.`); - } - return; - } - const sameOrigin = url.origin === location.origin; - const { params, route } = this.findMatchingRoute({ - event, - request, - sameOrigin, - url - }); - let handler = route && route.handler; - const debugMessages = []; - if (true) { - if (handler) { - debugMessages.push([`Found a route to handle this request:`, route]); - if (params) { - debugMessages.push([ - `Passing the following params to the route's handler:`, - params - ]); - } - } - } - const method = request.method; - if (!handler && this._defaultHandlerMap.has(method)) { - if (true) { - debugMessages.push(`Failed to find a matching route. Falling back to the default handler for ${method}.`); - } - handler = this._defaultHandlerMap.get(method); - } - if (!handler) { - if (true) { - logger.debug(`No route found for: ${getFriendlyURL(url)}`); - } - return; - } - if (true) { - logger.groupCollapsed(`Router is responding to: ${getFriendlyURL(url)}`); - debugMessages.forEach((msg) => { - if (Array.isArray(msg)) { - logger.log(...msg); - } else { - logger.log(msg); - } - }); - logger.groupEnd(); - } - let responsePromise; - try { - responsePromise = handler.handle({ url, request, event, params }); - } catch (err) { - responsePromise = Promise.reject(err); - } - const catchHandler = route && route.catchHandler; - if (responsePromise instanceof Promise && (this._catchHandler || catchHandler)) { - responsePromise = responsePromise.catch(async (err) => { - if (catchHandler) { - if (true) { - logger.groupCollapsed(`Error thrown when responding to: ${getFriendlyURL(url)}. Falling back to route's Catch Handler.`); - logger.error(`Error thrown by:`, route); - logger.error(err); - logger.groupEnd(); - } - try { - return await catchHandler.handle({ url, request, event, params }); - } catch (catchErr) { - if (catchErr instanceof Error) { - err = catchErr; - } - } - } - if (this._catchHandler) { - if (true) { - logger.groupCollapsed(`Error thrown when responding to: ${getFriendlyURL(url)}. Falling back to global Catch Handler.`); - logger.error(`Error thrown by:`, route); - logger.error(err); - logger.groupEnd(); - } - return this._catchHandler.handle({ url, request, event }); - } - throw err; - }); - } - return responsePromise; - } - findMatchingRoute({ url, sameOrigin, request, event }) { - const routes = this._routes.get(request.method) || []; - for (const route of routes) { - let params; - const matchResult = route.match({ url, sameOrigin, request, event }); - if (matchResult) { - if (true) { - if (matchResult instanceof Promise) { - logger.warn(`While routing ${getFriendlyURL(url)}, an async matchCallback function was used. Please convert the following route to use a synchronous matchCallback function:`, route); - } - } - params = matchResult; - if (Array.isArray(params) && params.length === 0) { - params = void 0; - } else if (matchResult.constructor === Object && Object.keys(matchResult).length === 0) { - params = void 0; - } else if (typeof matchResult === "boolean") { - params = void 0; - } - return { route, params }; - } - } - return {}; - } - setDefaultHandler(handler, method = defaultMethod) { - this._defaultHandlerMap.set(method, normalizeHandler(handler)); - } - setCatchHandler(handler) { - this._catchHandler = normalizeHandler(handler); - } - registerRoute(route) { - if (true) { - finalAssertExports.isType(route, "object", { - moduleName: "workbox-routing", - className: "Router", - funcName: "registerRoute", - paramName: "route" - }); - finalAssertExports.hasMethod(route, "match", { - moduleName: "workbox-routing", - className: "Router", - funcName: "registerRoute", - paramName: "route" - }); - finalAssertExports.isType(route.handler, "object", { - moduleName: "workbox-routing", - className: "Router", - funcName: "registerRoute", - paramName: "route" - }); - finalAssertExports.hasMethod(route.handler, "handle", { - moduleName: "workbox-routing", - className: "Router", - funcName: "registerRoute", - paramName: "route.handler" - }); - finalAssertExports.isType(route.method, "string", { - moduleName: "workbox-routing", - className: "Router", - funcName: "registerRoute", - paramName: "route.method" - }); - } - if (!this._routes.has(route.method)) { - this._routes.set(route.method, []); - } - this._routes.get(route.method).push(route); - } - unregisterRoute(route) { - if (!this._routes.has(route.method)) { - throw new WorkboxError("unregister-route-but-not-found-with-method", { - method: route.method - }); - } - const routeIndex = this._routes.get(route.method).indexOf(route); - if (routeIndex > -1) { - this._routes.get(route.method).splice(routeIndex, 1); - } else { - throw new WorkboxError("unregister-route-route-not-registered"); - } - } - }; - - // node_modules/workbox-routing/utils/getOrCreateDefaultRouter.js - var defaultRouter; - var getOrCreateDefaultRouter = () => { - if (!defaultRouter) { - defaultRouter = new Router(); - defaultRouter.addFetchListener(); - defaultRouter.addCacheListener(); - } - return defaultRouter; - }; - - // node_modules/workbox-routing/registerRoute.js - function registerRoute(capture, handler, method) { - let route; - if (typeof capture === "string") { - const captureUrl = new URL(capture, location.href); - if (true) { - if (!(capture.startsWith("/") || capture.startsWith("http"))) { - throw new WorkboxError("invalid-string", { - moduleName: "workbox-routing", - funcName: "registerRoute", - paramName: "capture" - }); - } - const valueToCheck = capture.startsWith("http") ? captureUrl.pathname : capture; - const wildcards = "[*:?+]"; - if (new RegExp(`${wildcards}`).exec(valueToCheck)) { - logger.debug(`The '$capture' parameter contains an Express-style wildcard character (${wildcards}). Strings are now always interpreted as exact matches; use a RegExp for partial or wildcard matches.`); - } - } - const matchCallback = ({ url }) => { - if (true) { - if (url.pathname === captureUrl.pathname && url.origin !== captureUrl.origin) { - logger.debug(`${capture} only partially matches the cross-origin URL ${url.toString()}. This route will only handle cross-origin requests if they match the entire URL.`); - } - } - return url.href === captureUrl.href; - }; - route = new Route(matchCallback, handler, method); - } else if (capture instanceof RegExp) { - route = new RegExpRoute(capture, handler, method); - } else if (typeof capture === "function") { - route = new Route(capture, handler, method); - } else if (capture instanceof Route) { - route = capture; - } else { - throw new WorkboxError("unsupported-route-type", { - moduleName: "workbox-routing", - funcName: "registerRoute", - paramName: "capture" - }); - } - const defaultRouter2 = getOrCreateDefaultRouter(); - defaultRouter2.registerRoute(route); - return route; - } - - // node_modules/workbox-precaching/utils/removeIgnoredSearchParams.js - function removeIgnoredSearchParams(urlObject, ignoreURLParametersMatching = []) { - for (const paramName of [...urlObject.searchParams.keys()]) { - if (ignoreURLParametersMatching.some((regExp) => regExp.test(paramName))) { - urlObject.searchParams.delete(paramName); - } - } - return urlObject; - } - - // node_modules/workbox-precaching/utils/generateURLVariations.js - function* generateURLVariations(url, { ignoreURLParametersMatching = [/^utm_/, /^fbclid$/], directoryIndex = "index.html", cleanURLs = true, urlManipulation } = {}) { - const urlObject = new URL(url, location.href); - urlObject.hash = ""; - yield urlObject.href; - const urlWithoutIgnoredParams = removeIgnoredSearchParams(urlObject, ignoreURLParametersMatching); - yield urlWithoutIgnoredParams.href; - if (directoryIndex && urlWithoutIgnoredParams.pathname.endsWith("/")) { - const directoryURL = new URL(urlWithoutIgnoredParams.href); - directoryURL.pathname += directoryIndex; - yield directoryURL.href; - } - if (cleanURLs) { - const cleanURL = new URL(urlWithoutIgnoredParams.href); - cleanURL.pathname += ".html"; - yield cleanURL.href; - } - if (urlManipulation) { - const additionalURLs = urlManipulation({ url: urlObject }); - for (const urlToAttempt of additionalURLs) { - yield urlToAttempt.href; - } - } - } - - // node_modules/workbox-precaching/PrecacheRoute.js - var PrecacheRoute = class extends Route { - constructor(precacheController2, options) { - const match = ({ request }) => { - const urlsToCacheKeys = precacheController2.getURLsToCacheKeys(); - for (const possibleURL of generateURLVariations(request.url, options)) { - const cacheKey = urlsToCacheKeys.get(possibleURL); - if (cacheKey) { - const integrity = precacheController2.getIntegrityForCacheKey(cacheKey); - return { cacheKey, integrity }; - } - } - if (true) { - logger.debug(`Precaching did not find a match for ` + getFriendlyURL(request.url)); - } - return; - }; - super(match, precacheController2.strategy); - } - }; - - // node_modules/workbox-precaching/addRoute.js - function addRoute(options) { - const precacheController2 = getOrCreatePrecacheController(); - const precacheRoute = new PrecacheRoute(precacheController2, options); - registerRoute(precacheRoute); - } - - // node_modules/workbox-precaching/precache.js - function precache(entries) { - const precacheController2 = getOrCreatePrecacheController(); - precacheController2.precache(entries); - } - - // node_modules/workbox-precaching/precacheAndRoute.js - function precacheAndRoute(entries, options) { - precache(entries); - addRoute(options); - } - - // node_modules/workbox-strategies/utils/messages.js - var messages2 = { - strategyStart: (strategyName, request) => `Using ${strategyName} to respond to '${getFriendlyURL(request.url)}'`, - printFinalResponse: (response) => { - if (response) { - logger.groupCollapsed(`View the final response here.`); - logger.log(response || "[No response returned]"); - logger.groupEnd(); - } - } - }; - - // node_modules/workbox-strategies/CacheFirst.js - var CacheFirst = class extends Strategy { - async _handle(request, handler) { - const logs = []; - if (true) { - finalAssertExports.isInstance(request, Request, { - moduleName: "workbox-strategies", - className: this.constructor.name, - funcName: "makeRequest", - paramName: "request" - }); - } - let response = await handler.cacheMatch(request); - let error = void 0; - if (!response) { - if (true) { - logs.push(`No response found in the '${this.cacheName}' cache. Will respond with a network request.`); - } - try { - response = await handler.fetchAndCachePut(request); - } catch (err) { - if (err instanceof Error) { - error = err; - } - } - if (true) { - if (response) { - logs.push(`Got response from network.`); - } else { - logs.push(`Unable to get a response from the network.`); - } - } - } else { - if (true) { - logs.push(`Found a cached response in the '${this.cacheName}' cache.`); - } - } - if (true) { - logger.groupCollapsed(messages2.strategyStart(this.constructor.name, request)); - for (const log of logs) { - logger.log(log); - } - messages2.printFinalResponse(response); - logger.groupEnd(); - } - if (!response) { - throw new WorkboxError("no-response", { url: request.url, error }); - } - return response; - } - }; - - // node_modules/workbox-strategies/plugins/cacheOkAndOpaquePlugin.js - var cacheOkAndOpaquePlugin = { - cacheWillUpdate: async ({ response }) => { - if (response.status === 200 || response.status === 0) { - return response; - } - return null; - } - }; - - // node_modules/workbox-strategies/NetworkFirst.js - var NetworkFirst = class extends Strategy { - constructor(options = {}) { - super(options); - if (!this.plugins.some((p) => "cacheWillUpdate" in p)) { - this.plugins.unshift(cacheOkAndOpaquePlugin); - } - this._networkTimeoutSeconds = options.networkTimeoutSeconds || 0; - if (true) { - if (this._networkTimeoutSeconds) { - finalAssertExports.isType(this._networkTimeoutSeconds, "number", { - moduleName: "workbox-strategies", - className: this.constructor.name, - funcName: "constructor", - paramName: "networkTimeoutSeconds" - }); - } - } - } - async _handle(request, handler) { - const logs = []; - if (true) { - finalAssertExports.isInstance(request, Request, { - moduleName: "workbox-strategies", - className: this.constructor.name, - funcName: "handle", - paramName: "makeRequest" - }); - } - const promises = []; - let timeoutId; - if (this._networkTimeoutSeconds) { - const { id, promise } = this._getTimeoutPromise({ request, logs, handler }); - timeoutId = id; - promises.push(promise); - } - const networkPromise = this._getNetworkPromise({ - timeoutId, - request, - logs, - handler - }); - promises.push(networkPromise); - const response = await handler.waitUntil((async () => { - return await handler.waitUntil(Promise.race(promises)) || await networkPromise; - })()); - if (true) { - logger.groupCollapsed(messages2.strategyStart(this.constructor.name, request)); - for (const log of logs) { - logger.log(log); - } - messages2.printFinalResponse(response); - logger.groupEnd(); - } - if (!response) { - throw new WorkboxError("no-response", { url: request.url }); - } - return response; - } - _getTimeoutPromise({ request, logs, handler }) { - let timeoutId; - const timeoutPromise = new Promise((resolve) => { - const onNetworkTimeout = async () => { - if (true) { - logs.push(`Timing out the network response at ${this._networkTimeoutSeconds} seconds.`); - } - resolve(await handler.cacheMatch(request)); - }; - timeoutId = setTimeout(onNetworkTimeout, this._networkTimeoutSeconds * 1e3); - }); - return { - promise: timeoutPromise, - id: timeoutId - }; - } - async _getNetworkPromise({ timeoutId, request, logs, handler }) { - let error; - let response; - try { - response = await handler.fetchAndCachePut(request); - } catch (fetchError) { - if (fetchError instanceof Error) { - error = fetchError; - } - } - if (timeoutId) { - clearTimeout(timeoutId); - } - if (true) { - if (response) { - logs.push(`Got response from network.`); - } else { - logs.push(`Unable to get a response from the network. Will respond with a cached response.`); - } - } - if (error || !response) { - response = await handler.cacheMatch(request); - if (true) { - if (response) { - logs.push(`Found a cached response in the '${this.cacheName}' cache.`); - } else { - logs.push(`No response found in the '${this.cacheName}' cache.`); - } - } - } - return response; - } - }; - - // node_modules/workbox-core/_private/dontWaitFor.js - function dontWaitFor(promise) { - void promise.then(() => { - }); - } - - // node_modules/idb/build/esm/wrap-idb-value.js - var instanceOfAny = (object, constructors) => constructors.some((c) => object instanceof c); - var idbProxyableTypes; - var cursorAdvanceMethods; - function getIdbProxyableTypes() { - return idbProxyableTypes || (idbProxyableTypes = [ - IDBDatabase, - IDBObjectStore, - IDBIndex, - IDBCursor, - IDBTransaction - ]); - } - function getCursorAdvanceMethods() { - return cursorAdvanceMethods || (cursorAdvanceMethods = [ - IDBCursor.prototype.advance, - IDBCursor.prototype.continue, - IDBCursor.prototype.continuePrimaryKey - ]); - } - var cursorRequestMap = /* @__PURE__ */ new WeakMap(); - var transactionDoneMap = /* @__PURE__ */ new WeakMap(); - var transactionStoreNamesMap = /* @__PURE__ */ new WeakMap(); - var transformCache = /* @__PURE__ */ new WeakMap(); - var reverseTransformCache = /* @__PURE__ */ new WeakMap(); - function promisifyRequest(request) { - const promise = new Promise((resolve, reject) => { - const unlisten = () => { - request.removeEventListener("success", success); - request.removeEventListener("error", error); - }; - const success = () => { - resolve(wrap(request.result)); - unlisten(); - }; - const error = () => { - reject(request.error); - unlisten(); - }; - request.addEventListener("success", success); - request.addEventListener("error", error); - }); - promise.then((value) => { - if (value instanceof IDBCursor) { - cursorRequestMap.set(value, request); - } - }).catch(() => { - }); - reverseTransformCache.set(promise, request); - return promise; - } - function cacheDonePromiseForTransaction(tx) { - if (transactionDoneMap.has(tx)) - return; - const done = new Promise((resolve, reject) => { - const unlisten = () => { - tx.removeEventListener("complete", complete); - tx.removeEventListener("error", error); - tx.removeEventListener("abort", error); - }; - const complete = () => { - resolve(); - unlisten(); - }; - const error = () => { - reject(tx.error || new DOMException("AbortError", "AbortError")); - unlisten(); - }; - tx.addEventListener("complete", complete); - tx.addEventListener("error", error); - tx.addEventListener("abort", error); - }); - transactionDoneMap.set(tx, done); - } - var idbProxyTraps = { - get(target, prop, receiver) { - if (target instanceof IDBTransaction) { - if (prop === "done") - return transactionDoneMap.get(target); - if (prop === "objectStoreNames") { - return target.objectStoreNames || transactionStoreNamesMap.get(target); - } - if (prop === "store") { - return receiver.objectStoreNames[1] ? void 0 : receiver.objectStore(receiver.objectStoreNames[0]); - } - } - return wrap(target[prop]); - }, - set(target, prop, value) { - target[prop] = value; - return true; - }, - has(target, prop) { - if (target instanceof IDBTransaction && (prop === "done" || prop === "store")) { - return true; - } - return prop in target; - } - }; - function replaceTraps(callback) { - idbProxyTraps = callback(idbProxyTraps); - } - function wrapFunction(func) { - if (func === IDBDatabase.prototype.transaction && !("objectStoreNames" in IDBTransaction.prototype)) { - return function(storeNames, ...args) { - const tx = func.call(unwrap(this), storeNames, ...args); - transactionStoreNamesMap.set(tx, storeNames.sort ? storeNames.sort() : [storeNames]); - return wrap(tx); - }; - } - if (getCursorAdvanceMethods().includes(func)) { - return function(...args) { - func.apply(unwrap(this), args); - return wrap(cursorRequestMap.get(this)); - }; - } - return function(...args) { - return wrap(func.apply(unwrap(this), args)); - }; - } - function transformCachableValue(value) { - if (typeof value === "function") - return wrapFunction(value); - if (value instanceof IDBTransaction) - cacheDonePromiseForTransaction(value); - if (instanceOfAny(value, getIdbProxyableTypes())) - return new Proxy(value, idbProxyTraps); - return value; - } - function wrap(value) { - if (value instanceof IDBRequest) - return promisifyRequest(value); - if (transformCache.has(value)) - return transformCache.get(value); - const newValue = transformCachableValue(value); - if (newValue !== value) { - transformCache.set(value, newValue); - reverseTransformCache.set(newValue, value); - } - return newValue; - } - var unwrap = (value) => reverseTransformCache.get(value); - - // node_modules/idb/build/esm/index.js - function openDB(name, version, { blocked, upgrade, blocking, terminated } = {}) { - const request = indexedDB.open(name, version); - const openPromise = wrap(request); - if (upgrade) { - request.addEventListener("upgradeneeded", (event) => { - upgrade(wrap(request.result), event.oldVersion, event.newVersion, wrap(request.transaction)); - }); - } - if (blocked) - request.addEventListener("blocked", () => blocked()); - openPromise.then((db) => { - if (terminated) - db.addEventListener("close", () => terminated()); - if (blocking) - db.addEventListener("versionchange", () => blocking()); - }).catch(() => { - }); - return openPromise; - } - function deleteDB(name, { blocked } = {}) { - const request = indexedDB.deleteDatabase(name); - if (blocked) - request.addEventListener("blocked", () => blocked()); - return wrap(request).then(() => void 0); - } - var readMethods = ["get", "getKey", "getAll", "getAllKeys", "count"]; - var writeMethods = ["put", "add", "delete", "clear"]; - var cachedMethods = /* @__PURE__ */ new Map(); - function getMethod(target, prop) { - if (!(target instanceof IDBDatabase && !(prop in target) && typeof prop === "string")) { - return; - } - if (cachedMethods.get(prop)) - return cachedMethods.get(prop); - const targetFuncName = prop.replace(/FromIndex$/, ""); - const useIndex = prop !== targetFuncName; - const isWrite = writeMethods.includes(targetFuncName); - if (!(targetFuncName in (useIndex ? IDBIndex : IDBObjectStore).prototype) || !(isWrite || readMethods.includes(targetFuncName))) { - return; - } - const method = async function(storeName, ...args) { - const tx = this.transaction(storeName, isWrite ? "readwrite" : "readonly"); - let target2 = tx.store; - if (useIndex) - target2 = target2.index(args.shift()); - return (await Promise.all([ - target2[targetFuncName](...args), - isWrite && tx.done - ]))[0]; - }; - cachedMethods.set(prop, method); - return method; - } - replaceTraps((oldTraps) => ({ - ...oldTraps, - get: (target, prop, receiver) => getMethod(target, prop) || oldTraps.get(target, prop, receiver), - has: (target, prop) => !!getMethod(target, prop) || oldTraps.has(target, prop) - })); - - // node_modules/workbox-expiration/_version.js - try { - self["workbox:expiration:6.5.2"] && _(); - } catch (e) { - } - - // node_modules/workbox-expiration/models/CacheTimestampsModel.js - var DB_NAME = "workbox-expiration"; - var CACHE_OBJECT_STORE = "cache-entries"; - var normalizeURL = (unNormalizedUrl) => { - const url = new URL(unNormalizedUrl, location.href); - url.hash = ""; - return url.href; - }; - var CacheTimestampsModel = class { - constructor(cacheName) { - this._db = null; - this._cacheName = cacheName; - } - _upgradeDb(db) { - const objStore = db.createObjectStore(CACHE_OBJECT_STORE, { keyPath: "id" }); - objStore.createIndex("cacheName", "cacheName", { unique: false }); - objStore.createIndex("timestamp", "timestamp", { unique: false }); - } - _upgradeDbAndDeleteOldDbs(db) { - this._upgradeDb(db); - if (this._cacheName) { - void deleteDB(this._cacheName); - } - } - async setTimestamp(url, timestamp) { - url = normalizeURL(url); - const entry = { - url, - timestamp, - cacheName: this._cacheName, - id: this._getId(url) - }; - const db = await this.getDb(); - const tx = db.transaction(CACHE_OBJECT_STORE, "readwrite", { - durability: "relaxed" - }); - await tx.store.put(entry); - await tx.done; - } - async getTimestamp(url) { - const db = await this.getDb(); - const entry = await db.get(CACHE_OBJECT_STORE, this._getId(url)); - return entry === null || entry === void 0 ? void 0 : entry.timestamp; - } - async expireEntries(minTimestamp, maxCount) { - const db = await this.getDb(); - let cursor = await db.transaction(CACHE_OBJECT_STORE).store.index("timestamp").openCursor(null, "prev"); - const entriesToDelete = []; - let entriesNotDeletedCount = 0; - while (cursor) { - const result = cursor.value; - if (result.cacheName === this._cacheName) { - if (minTimestamp && result.timestamp < minTimestamp || maxCount && entriesNotDeletedCount >= maxCount) { - entriesToDelete.push(cursor.value); - } else { - entriesNotDeletedCount++; - } - } - cursor = await cursor.continue(); - } - const urlsDeleted = []; - for (const entry of entriesToDelete) { - await db.delete(CACHE_OBJECT_STORE, entry.id); - urlsDeleted.push(entry.url); - } - return urlsDeleted; - } - _getId(url) { - return this._cacheName + "|" + normalizeURL(url); - } - async getDb() { - if (!this._db) { - this._db = await openDB(DB_NAME, 1, { - upgrade: this._upgradeDbAndDeleteOldDbs.bind(this) - }); - } - return this._db; - } - }; - - // node_modules/workbox-expiration/CacheExpiration.js - var CacheExpiration = class { - constructor(cacheName, config = {}) { - this._isRunning = false; - this._rerunRequested = false; - if (true) { - finalAssertExports.isType(cacheName, "string", { - moduleName: "workbox-expiration", - className: "CacheExpiration", - funcName: "constructor", - paramName: "cacheName" - }); - if (!(config.maxEntries || config.maxAgeSeconds)) { - throw new WorkboxError("max-entries-or-age-required", { - moduleName: "workbox-expiration", - className: "CacheExpiration", - funcName: "constructor" - }); - } - if (config.maxEntries) { - finalAssertExports.isType(config.maxEntries, "number", { - moduleName: "workbox-expiration", - className: "CacheExpiration", - funcName: "constructor", - paramName: "config.maxEntries" - }); - } - if (config.maxAgeSeconds) { - finalAssertExports.isType(config.maxAgeSeconds, "number", { - moduleName: "workbox-expiration", - className: "CacheExpiration", - funcName: "constructor", - paramName: "config.maxAgeSeconds" - }); - } - } - this._maxEntries = config.maxEntries; - this._maxAgeSeconds = config.maxAgeSeconds; - this._matchOptions = config.matchOptions; - this._cacheName = cacheName; - this._timestampModel = new CacheTimestampsModel(cacheName); - } - async expireEntries() { - if (this._isRunning) { - this._rerunRequested = true; - return; - } - this._isRunning = true; - const minTimestamp = this._maxAgeSeconds ? Date.now() - this._maxAgeSeconds * 1e3 : 0; - const urlsExpired = await this._timestampModel.expireEntries(minTimestamp, this._maxEntries); - const cache = await self.caches.open(this._cacheName); - for (const url of urlsExpired) { - await cache.delete(url, this._matchOptions); - } - if (true) { - if (urlsExpired.length > 0) { - logger.groupCollapsed(`Expired ${urlsExpired.length} ${urlsExpired.length === 1 ? "entry" : "entries"} and removed ${urlsExpired.length === 1 ? "it" : "them"} from the '${this._cacheName}' cache.`); - logger.log(`Expired the following ${urlsExpired.length === 1 ? "URL" : "URLs"}:`); - urlsExpired.forEach((url) => logger.log(` ${url}`)); - logger.groupEnd(); - } else { - logger.debug(`Cache expiration ran and found no entries to remove.`); - } - } - this._isRunning = false; - if (this._rerunRequested) { - this._rerunRequested = false; - dontWaitFor(this.expireEntries()); - } - } - async updateTimestamp(url) { - if (true) { - finalAssertExports.isType(url, "string", { - moduleName: "workbox-expiration", - className: "CacheExpiration", - funcName: "updateTimestamp", - paramName: "url" - }); - } - await this._timestampModel.setTimestamp(url, Date.now()); - } - async isURLExpired(url) { - if (!this._maxAgeSeconds) { - if (true) { - throw new WorkboxError(`expired-test-without-max-age`, { - methodName: "isURLExpired", - paramName: "maxAgeSeconds" - }); - } - return false; - } else { - const timestamp = await this._timestampModel.getTimestamp(url); - const expireOlderThan = Date.now() - this._maxAgeSeconds * 1e3; - return timestamp !== void 0 ? timestamp < expireOlderThan : true; - } - } - async delete() { - this._rerunRequested = false; - await this._timestampModel.expireEntries(Infinity); - } - }; - - // node_modules/workbox-core/registerQuotaErrorCallback.js - function registerQuotaErrorCallback(callback) { - if (true) { - finalAssertExports.isType(callback, "function", { - moduleName: "workbox-core", - funcName: "register", - paramName: "callback" - }); - } - quotaErrorCallbacks.add(callback); - if (true) { - logger.log("Registered a callback to respond to quota errors.", callback); - } - } - - // node_modules/workbox-expiration/ExpirationPlugin.js - var ExpirationPlugin = class { - constructor(config = {}) { - this.cachedResponseWillBeUsed = async ({ event, request, cacheName, cachedResponse }) => { - if (!cachedResponse) { - return null; - } - const isFresh = this._isResponseDateFresh(cachedResponse); - const cacheExpiration = this._getCacheExpiration(cacheName); - dontWaitFor(cacheExpiration.expireEntries()); - const updateTimestampDone = cacheExpiration.updateTimestamp(request.url); - if (event) { - try { - event.waitUntil(updateTimestampDone); - } catch (error) { - if (true) { - if ("request" in event) { - logger.warn(`Unable to ensure service worker stays alive when updating cache entry for '${getFriendlyURL(event.request.url)}'.`); - } - } - } - } - return isFresh ? cachedResponse : null; - }; - this.cacheDidUpdate = async ({ cacheName, request }) => { - if (true) { - finalAssertExports.isType(cacheName, "string", { - moduleName: "workbox-expiration", - className: "Plugin", - funcName: "cacheDidUpdate", - paramName: "cacheName" - }); - finalAssertExports.isInstance(request, Request, { - moduleName: "workbox-expiration", - className: "Plugin", - funcName: "cacheDidUpdate", - paramName: "request" - }); - } - const cacheExpiration = this._getCacheExpiration(cacheName); - await cacheExpiration.updateTimestamp(request.url); - await cacheExpiration.expireEntries(); - }; - if (true) { - if (!(config.maxEntries || config.maxAgeSeconds)) { - throw new WorkboxError("max-entries-or-age-required", { - moduleName: "workbox-expiration", - className: "Plugin", - funcName: "constructor" - }); - } - if (config.maxEntries) { - finalAssertExports.isType(config.maxEntries, "number", { - moduleName: "workbox-expiration", - className: "Plugin", - funcName: "constructor", - paramName: "config.maxEntries" - }); - } - if (config.maxAgeSeconds) { - finalAssertExports.isType(config.maxAgeSeconds, "number", { - moduleName: "workbox-expiration", - className: "Plugin", - funcName: "constructor", - paramName: "config.maxAgeSeconds" - }); - } - } - this._config = config; - this._maxAgeSeconds = config.maxAgeSeconds; - this._cacheExpirations = /* @__PURE__ */ new Map(); - if (config.purgeOnQuotaError) { - registerQuotaErrorCallback(() => this.deleteCacheAndMetadata()); - } - } - _getCacheExpiration(cacheName) { - if (cacheName === cacheNames.getRuntimeName()) { - throw new WorkboxError("expire-custom-caches-only"); - } - let cacheExpiration = this._cacheExpirations.get(cacheName); - if (!cacheExpiration) { - cacheExpiration = new CacheExpiration(cacheName, this._config); - this._cacheExpirations.set(cacheName, cacheExpiration); - } - return cacheExpiration; - } - _isResponseDateFresh(cachedResponse) { - if (!this._maxAgeSeconds) { - return true; - } - const dateHeaderTimestamp = this._getDateHeaderTimestamp(cachedResponse); - if (dateHeaderTimestamp === null) { - return true; - } - const now = Date.now(); - return dateHeaderTimestamp >= now - this._maxAgeSeconds * 1e3; - } - _getDateHeaderTimestamp(cachedResponse) { - if (!cachedResponse.headers.has("date")) { - return null; - } - const dateHeader = cachedResponse.headers.get("date"); - const parsedDate = new Date(dateHeader); - const headerTime = parsedDate.getTime(); - if (isNaN(headerTime)) { - return null; - } - return headerTime; - } - async deleteCacheAndMetadata() { - for (const [cacheName, cacheExpiration] of this._cacheExpirations) { - await self.caches.delete(cacheName); - await cacheExpiration.delete(); - } - this._cacheExpirations = /* @__PURE__ */ new Map(); - } - }; - - // sw.js - function waitUntil2(event, asyncFn) { - const returnPromise = asyncFn(); - event.waitUntil(returnPromise); - return returnPromise; - } - var offlineAlert = async (url) => { - console.log(`fetch failure - we are offline, cannot access ${url}`); - const clients = await self.clients.matchAll({ type: "window" }); - let payload = "generic"; - if (/\.(?:png|gif|webm|jpg|webp|jpeg|svg)$/m.test(url)) - payload = "image"; - else if (/\.json$/m.test(url)) - payload = "json"; - for (const client of clients) { - client.postMessage({ type: "FETCH_ERROR", payload }); - } - }; - var resetAll = async () => { - const cacheNames2 = await caches.keys(); - for (const cacheName of cacheNames2) { - await caches.delete(cacheName); - const cacheExpiration = new CacheExpiration(cacheName, { maxEntries: 1 }); - await cacheExpiration.delete(); - console.log(`deleted cache "${cacheName}"`); - } - await self.registration.unregister(); - const clients = await self.clients.matchAll(); - clients.forEach((client) => client.navigate(client.url)); - }; - addEventListener("message", (event) => { - switch (event.data.type) { - case "RESET": { - console.log("Resetting..."); - event.waitUntil(resetAll()); - break; - } - } - }); - precacheAndRoute([{ "revision": "7e949d5952ab64690b1627141158d5b5", "url": "js/abilities.js" }, { "revision": "adcb0a482e48de5b8bbb1dfd81425d64", "url": "js/actions.js" }, { "revision": "61aaeee9b159854c0f032b22105c2545", "url": "js/adventure.js" }, { "revision": "21771bc05dd0464b1aa9e4649c2e16eb", "url": "js/adventures.js" }, { "revision": "0f82e1aeb2232f77e834890e47490d77", "url": "js/afflictions.js" }, { "revision": "10535ee24e4ed8cef328e76305eb92d8", "url": "js/ancestries.js" }, { "revision": "c1f3746659b15a4a24b1172b6a68c17b", "url": "js/archetypes.js" }, { "revision": "52335573df1f6003573a124a86cdac0f", "url": "js/backgrounds.js" }, { "revision": "baf8ba92a2a04ae2bccb904c5ea2c1af", "url": "js/bestiary-encounterbuilder.js" }, { "revision": "7e8c5f59fa26334af1b927a61131e9d2", "url": "js/bestiary.js" }, { "revision": "e2f42425112f388bf1a51b5be9cf5ec2", "url": "js/blacklist.js" }, { "revision": "fdb1c3a0212bd25dd422a427812e3da1", "url": "js/book.js" }, { "revision": "9bcc769ac4898ad4ca69defd9d83814c", "url": "js/books.js" }, { "revision": "2bb08db00ab38596c02fd448c47aba99", "url": "js/bookslist.js" }, { "revision": "c3c783549c4f0fe486c6ddb290587c0c", "url": "js/bookutils.js" }, { "revision": "8bb8ed8c10d8d474a44293a4045a1be9", "url": "js/browsercheck.js" }, { "revision": "2ea73d8c42bd54c00bf0f01459a23ad5", "url": "js/classes.js" }, { "revision": "ba178b943123456b0e35a04499b82c31", "url": "js/companionsfamiliars.js" }, { "revision": "5229964912670180f3a584178628c600", "url": "js/conditions.js" }, { "revision": "19b463d35b8790b19c554f7672ce86a2", "url": "js/converter.js" }, { "revision": "6802d4b9d9fbd8089e573155a7c216ca", "url": "js/converterutils.js" }, { "revision": "16131f19f9027cf586d2bfe7e7277557", "url": "js/deepbg.js" }, { "revision": "96247cd9de97ef3f206e3f8eb8a450d2", "url": "js/deities.js" }, { "revision": "9b955e8e8bd978ae94b5700b99ba04e3", "url": "js/encountergen.js" }, { "revision": "5352d236bca92f5653eeb4759ea91bda", "url": "js/feats.js" }, { "revision": "e2c890f54802f3dc2e29d1ba7f556f88", "url": "js/filter-abilities.js" }, { "revision": "dfd57c8244d6d0409960710f43381209", "url": "js/filter-actions.js" }, { "revision": "2f6936194afe875ca23d2f0d5bd7ef14", "url": "js/filter-afflictions.js" }, { "revision": "3b3d3883e33205b5e8aa27f847a919e7", "url": "js/filter-ancestries.js" }, { "revision": "f38d67c451ece7e5c7d3b5116d1fb111", "url": "js/filter-archetypes.js" }, { "revision": "a8d67d5657213aac8172eab7f556b71f", "url": "js/filter-backgrounds.js" }, { "revision": "19a0afcb0d05ccdf451e8e3dc68b1a65", "url": "js/filter-bestiary.js" }, { "revision": "8cc995f92a4ba3ff6b4f727b45078861", "url": "js/filter-classes.js" }, { "revision": "135d34dbb90f3c5823420ae76d7b2036", "url": "js/filter-companionsfamiliars.js" }, { "revision": "be67b652c59bfca13ae2dfa1a53ff8df", "url": "js/filter-conditions.js" }, { "revision": "a8959376fd665913ee116956bd23b6a7", "url": "js/filter-deities.js" }, { "revision": "8cba93a5fde8a3a57b617e49148336c4", "url": "js/filter-feats.js" }, { "revision": "7c270870b9dfc417373a328b0cfe6403", "url": "js/filter-hazards.js" }, { "revision": "c059a71e3f5c7775a492f757829c74ae", "url": "js/filter-items.js" }, { "revision": "7d409c372a3b5679d336447894dab9cd", "url": "js/filter-languages.js" }, { "revision": "90cf0c8ea7a5490c7176fa32eba9dec2", "url": "js/filter-optionalfeatures.js" }, { "revision": "726b3fac3f53b3745e614d06482f4128", "url": "js/filter-organizations.js" }, { "revision": "ed719db1351f48c6fbe53cb735af4c11", "url": "js/filter-places.js" }, { "revision": "7e5100cb82172b0efe10d58fadc76dee", "url": "js/filter-rituals.js" }, { "revision": "a870df2f14d606023afab8cb621695a4", "url": "js/filter-spells.js" }, { "revision": "1a66c97336877234e1e95cc592934da1", "url": "js/filter-tables.js" }, { "revision": "2947025006376a0c46432272a301b110", "url": "js/filter-traits.js" }, { "revision": "ced5b81eaa6b6968aee339052d498b16", "url": "js/filter-variantrules.js" }, { "revision": "291f440dd1b34f30bce7af7c1bf4d9e0", "url": "js/filter-vehicles.js" }, { "revision": "e9e35f0e24093e87c66111992d21399c", "url": "js/filter.js" }, { "revision": "b918393b488c94f17f3aae526913be18", "url": "js/genutils.js" }, { "revision": "ce4d531479463db31e1671be891bebae", "url": "js/gmscreen-counter.js" }, { "revision": "ea02079b1955c7af12e0418561f6f4cf", "url": "js/gmscreen-initiativetracker.js" }, { "revision": "b27a0e033f574ad2efaad2f03446d967", "url": "js/gmscreen-mapper.js" }, { "revision": "7086e2c4f27fa1b6e8c18de668406a1b", "url": "js/gmscreen-moneyconverter.js" }, { "revision": "807def90ceacbd00b0da2dd6d1ba6795", "url": "js/gmscreen-playerinitiativetracker.js" }, { "revision": "6e353bbf66b1b80f210064e67af4f787", "url": "js/gmscreen-timetracker.js" }, { "revision": "71048ed1b1f007cb77900b36f544a333", "url": "js/gmscreen.js" }, { "revision": "01cf3b549851deb976708b7d7e84102f", "url": "js/hazards.js" }, { "revision": "fe621e48fa923f682d31fbf6677e838a", "url": "js/hist.js" }, { "revision": "9948771a03f77f4a1c8d4ec3ca9084b9", "url": "js/initiativetrackerutils.js" }, { "revision": "fc687277a94712c304678389dd191333", "url": "js/inittrackerplayerview.js" }, { "revision": "4515e147b7b48ef42674b3ce6c430e02", "url": "js/items-runebuilder.js" }, { "revision": "ed47bae3cfe9aa0bff48e73a1b81f22a", "url": "js/items.js" }, { "revision": "5af89260cf41c44ea047fc0275e45f96", "url": "js/langdemo.js" }, { "revision": "453df8120a0f7c7e7597177064dda26e", "url": "js/langdemo2.js" }, { "revision": "3030328d4efb34ea18e73c329c06027e", "url": "js/languages.js" }, { "revision": "324bfb789fb5128414dfec177be287a4", "url": "js/list2.js" }, { "revision": "14884bd5353c583927286dc2dedc1282", "url": "js/listpage.js" }, { "revision": "f8d0b4fcf44162e50d30aceafca7f03e", "url": "js/managebrew.js" }, { "revision": "fa7ea74e1df4e5328ac3486ddceb7cd7", "url": "js/multisource.js" }, { "revision": "450720adfe5544f4dcafa3f3f1f08fe7", "url": "js/navigation.js" }, { "revision": "64428668c97e27a7d2e9298783a34e10", "url": "js/omnidexer.js" }, { "revision": "ebf344ae9608c6c6f3123902f99cbfa9", "url": "js/omnisearch.js" }, { "revision": "78fc14c0c58b19bda726c62b8a5e325d", "url": "js/optionalfeatures.js" }, { "revision": "3f5028596820b68693994c7d87a22339", "url": "js/organizations.js" }, { "revision": "118d5feae94c68c5598634a909292fea", "url": "js/parser.js" }, { "revision": "06b625b60f6911d2b65275448f0fe5ae", "url": "js/places.js" }, { "revision": "140816e674533979f522f02970780444", "url": "js/quickreference.js" }, { "revision": "15a9b390a1b82f52342a011fbe89a3d3", "url": "js/render-dice.js" }, { "revision": "ef7adf7b06925b8143a14b1bafad3251", "url": "js/render-map.js" }, { "revision": "bb1969200b25043e577a120f0569b9ee", "url": "js/render.js" }, { "revision": "bdcd0d0ec164abbd8ae81854951614c3", "url": "js/renderdemo.js" }, { "revision": "25f700f035aa50408d9688f26f9aa46a", "url": "js/rituals.js" }, { "revision": "680994cb961eeaaa22a0a10715a9fcbd", "url": "js/rolang.js" }, { "revision": "175e532e5c51339b99fd25751563c62f", "url": "js/scalecreature.js" }, { "revision": "b823cf704b3f8a1aa3a24f0bf1c6735d", "url": "js/search.js" }, { "revision": "0c333c70f3c4d894b4785840eff3c992", "url": "js/seo-loader.js" }, { "revision": "74a399749b92e9d6c2b2f4e0b89a75ad", "url": "js/spells.js" }, { "revision": "3687490b20e78d4414d388f1f923f6d8", "url": "js/styleswitch.js" }, { "revision": "ba3ec2d14497337b47ccdf9d31738570", "url": "js/tablepage.js" }, { "revision": "8a1ab0bfa508055a179b3fa01aa7fd67", "url": "js/tables.js" }, { "revision": "fa4a762039c737de1422140258c45804", "url": "js/textconverter.js" }, { "revision": "962c9d925c78f63a24020f0f67936ff4", "url": "js/tokenizer.js" }, { "revision": "6f5d4c18beff74ca0fc15a9c69c693c7", "url": "js/traits.js" }, { "revision": "4d0c372242ba98d838d756da18dc9c0d", "url": "js/utils-changelog.js" }, { "revision": "ce389a1ad746ffd019bb30189f5bbf4a", "url": "js/utils-licenses.js" }, { "revision": "2f85195e8ff0dc06089f486f7eea14cb", "url": "js/utils-list.js" }, { "revision": "3e9239b11afe89a33d5eaad63847b5bc", "url": "js/utils-p2p.js" }, { "revision": "aff1d95a1fac35eceea351cdab89770f", "url": "js/utils-proporder.js" }, { "revision": "82adb2c24289fc25abb32163f08056b2", "url": "js/utils-ui.js" }, { "revision": "ff9f89546e8656179cf0220279e18061", "url": "js/utils.js" }, { "revision": "65d4253bd1636a9a26d4d59e9b808720", "url": "js/variantrules.js" }, { "revision": "2838d4562ea735105a75477c12c8a66e", "url": "js/vehicles.js" }, { "revision": "b36e7c94c751656285d8e977cc152b10", "url": "lib/ace.js" }, { "revision": "f841812c750b396f454daee1aa5c4213", "url": "lib/bootstrap-select.min.js" }, { "revision": "cad6941d32006acbc61f7bab05918150", "url": "lib/bootstrap.min.js" }, { "revision": "7ba761cdbfa62922c3b750ac78f866eb", "url": "lib/elasticlunr.js" }, { "revision": "28dd3c8bf663c55bc9aa3d8f92945871", "url": "lib/ext-searchbox.js" }, { "revision": "a8e8282fcf516551d39204e076624b55", "url": "lib/jquery-ui-slider-pip.js" }, { "revision": "e858f6a2725af4140c1c424cf024a808", "url": "lib/jquery-ui.js" }, { "revision": "a6b6350ee94a3ea74595c065cbf58af0", "url": "lib/jquery.js" }, { "revision": "04680cb5d0adf90731746e92ef05a87b", "url": "lib/jquery.panzoom.js" }, { "revision": "862e9e065bcfe3944871cbf66229b3fd", "url": "lib/localforage.js" }, { "revision": "522bc8c23346ddf54992d531acabcb3e", "url": "lib/lzma.js" }, { "revision": "2378a4fa58c2e66792c81641346a4a40", "url": "lib/peerjs.js" }, { "revision": "fcf66afa34d87ce0bd47437c0c31816e", "url": "css/bootstrap-select.min.css" }, { "revision": "1264a8c9b7b1a57b2213a96859326e9f", "url": "css/bootstrap.css" }, { "revision": "19ff1ffb326a869355d707f2dfe86fc3", "url": "css/classes.css" }, { "revision": "354613438d26956a4530d57badd1711d", "url": "css/fontawesome.css" }, { "revision": "01ef22f83fa30e6bed564ab061a79f54", "url": "css/jquery-ui-slider-pips.css" }, { "revision": "4ef12b83b1ef3ff34d711c6a78421f55", "url": "css/jquery-ui.css" }, { "revision": "f17f28d2b73e1ab806dead53a26a75e7", "url": "css/list-page--grouped.css" }, { "revision": "ed70b46ca096020daee5a12a29757c96", "url": "css/search.css" }, { "revision": "6e5f1cbabfca871db0e9f9a462d44635", "url": "css/style.css" }, { "revision": "f8c7f17547945d8f710506491ef99275", "url": "homebrew/index.json" }, { "revision": "028ad889fdef4735c7ce67c6b97811a1", "url": "data/abilities.json" }, { "revision": "10fc8ecdbcbbac89bfc1a324397529e2", "url": "data/actions.json" }, { "revision": "6d9a1634cfdfcaab46fa23df8dd32295", "url": "data/adventures.json" }, { "revision": "0d41660d881838980368629cdeed3ca8", "url": "data/afflictions.json" }, { "revision": "20ae3e2bf8313d65f51e007ed980bb97", "url": "data/archetypes.json" }, { "revision": "a5d127e2658052e99b38e61cb9db857a", "url": "data/books.json" }, { "revision": "b265821ec5e2f97c7a77f19cfcc0d02f", "url": "data/changelog.json" }, { "revision": "716ec7c14fb7186b2ceb4ae35232bb62", "url": "data/companionsfamiliars.json" }, { "revision": "d6f2779bd4842c1951994d4c73624d0b", "url": "data/conditions.json" }, { "revision": "24e9f3485fedd27aac4f3cdb1b0629a8", "url": "data/deities.json" }, { "revision": "d465ddfac916a507fa4da1fbd248dcdf", "url": "data/domains.json" }, { "revision": "feda92940cff4ae4aaefa9824987ed16", "url": "data/fluff-deities.json" }, { "revision": "bf70ec7a1eea74eaa370a596306b60bf", "url": "data/fluff-items.json" }, { "revision": "309b2f5c47389945fbedb5fba0d4241b", "url": "data/fluff-organizations.json" }, { "revision": "93d8f7fda4f90c3488625e3bc5b2a1be", "url": "data/generic.json" }, { "revision": "317c438dd61985f25c83ed48fa7a5955", "url": "data/groups.json" }, { "revision": "fa70e2e661c18e62507f471a7fd8c281", "url": "data/hazards.json" }, { "revision": "bc16cefe3b1219d0c7960c2f68692106", "url": "data/languages.json" }, { "revision": "60cbd4da822064baa65ee9c9724bcf50", "url": "data/licenses.json" }, { "revision": "5d98fa27005a70b26c77a6bca146a1ff", "url": "data/optionalfeatures.json" }, { "revision": "27881ff3355c10aa0b159cfbe2b8f908", "url": "data/organizations.json" }, { "revision": "678ea78039df5b0a4364890b8b688f8e", "url": "data/places.json" }, { "revision": "083265a45986d44fa401218b072dea2b", "url": "data/quickrules.json" }, { "revision": "e9496890d7fda92b17f72a84c65573c4", "url": "data/renderdemo.json" }, { "revision": "4f9d961a0e36a065799ccec6ef519829", "url": "data/rituals.json" }, { "revision": "8c40cc0410ef298d287aadc13a9eb096", "url": "data/skills.json" }, { "revision": "c17d1ab851263da9c00acfd2ba19c5e7", "url": "data/tables.json" }, { "revision": "c2db5d027ff4b7df23831dd48e0f65aa", "url": "data/traits.json" }, { "revision": "1124170687a59b80fadab70b92d13b64", "url": "data/variantrules.json" }, { "revision": "2e0eb20c67f887ea48f1566a2b55dc48", "url": "data/vehicles.json" }, { "revision": "6cbb00f88c1e8bf54f7c7ae158e61641", "url": "data/ancestries/ancestry-anadi.json" }, { "revision": "75c253ea8c28a8c7075e5e1c63f0bace", "url": "data/ancestries/ancestry-android.json" }, { "revision": "55a6800aae487c3174b293a928f2b8e9", "url": "data/ancestries/ancestry-automaton.json" }, { "revision": "606f8cc3539e4b7731e4a3f985b35b29", "url": "data/ancestries/ancestry-azarketi.json" }, { "revision": "e6aa55cf858acf62abe40c31cc2448b7", "url": "data/ancestries/ancestry-catfolk.json" }, { "revision": "c732f30a79b40e65a2b9e4db202d0fd8", "url": "data/ancestries/ancestry-conrasu.json" }, { "revision": "7109eafe41ecc48aa9c5d573ad17f8a0", "url": "data/ancestries/ancestry-dwarf.json" }, { "revision": "aa4ee24c3f8a3b7a4f2f303b4f12a74c", "url": "data/ancestries/ancestry-elf.json" }, { "revision": "f961aae4efc4ccaa185a16e18959ad25", "url": "data/ancestries/ancestry-fetchling.json" }, { "revision": "5122026ca318b68685c3b002a2ccfcb1", "url": "data/ancestries/ancestry-fleshwarp.json" }, { "revision": "dbf185b36d87b343e5b1a19c6e9b993e", "url": "data/ancestries/ancestry-gnoll.json" }, { "revision": "a3ab0bf16491c1dfac92ccad06cd2f64", "url": "data/ancestries/ancestry-gnome.json" }, { "revision": "33c5744fd8feae2f27d26b4e7d9a4bb3", "url": "data/ancestries/ancestry-goblin.json" }, { "revision": "15e0e8a145c128b71d7af88966fbec2e", "url": "data/ancestries/ancestry-goloma.json" }, { "revision": "594e7208f9a6d64592b738d7acc61466", "url": "data/ancestries/ancestry-grippli.json" }, { "revision": "22af12fc3ecd5d6c6acb87a7683e8942", "url": "data/ancestries/ancestry-halfling.json" }, { "revision": "b81dd8f4faedfc10baa952852df6c224", "url": "data/ancestries/ancestry-hobgoblin.json" }, { "revision": "2d8614180b48eb86e5312ec8dd9fb5e9", "url": "data/ancestries/ancestry-human.json" }, { "revision": "a23ddb590b228ad691f225c750a912a3", "url": "data/ancestries/ancestry-kitsune.json" }, { "revision": "b5e154121c366e7a5a9d31f6456a408a", "url": "data/ancestries/ancestry-kobold.json" }, { "revision": "ecc80ded71b994ed989bc1412ee34e72", "url": "data/ancestries/ancestry-leshy.json" }, { "revision": "bc7ee2c9a47a28d004f478b041ee5580", "url": "data/ancestries/ancestry-lizardfolk.json" }, { "revision": "3fce3a4ebb204b987da31050ce1f52af", "url": "data/ancestries/ancestry-orc.json" }, { "revision": "58588ebcf6e1ab6c2ed72952799e2480", "url": "data/ancestries/ancestry-poppet.json" }, { "revision": "30c88065602664c1db0cdbaef24984cf", "url": "data/ancestries/ancestry-ratfolk.json" }, { "revision": "209d7e523a93d86f619983c74e6f8193", "url": "data/ancestries/ancestry-shisk.json" }, { "revision": "9589fb657cfb7a2a25d2f01387330760", "url": "data/ancestries/ancestry-shoony.json" }, { "revision": "ce19577be076357992b0c3615b92a77c", "url": "data/ancestries/ancestry-sprite.json" }, { "revision": "9418b3dc6d0004d4c80674d8fbea3c2a", "url": "data/ancestries/ancestry-strix.json" }, { "revision": "836bf660271836f93fb1f47c420ae84e", "url": "data/ancestries/ancestry-tengu.json" }, { "revision": "fb580b2bac849b64ded21975ae8acaf4", "url": "data/ancestries/index.json" }, { "revision": "36a96d49c651a28caded19b8820d4363", "url": "data/ancestries/versatile-heritages.json" }, { "revision": "48a5f08aceaf321c5fb2fa7e0f0a0ae6", "url": "data/backgrounds/backgrounds-aoa0.json" }, { "revision": "18a6fc08bf3cb566a46c6535e9397e14", "url": "data/backgrounds/backgrounds-aoa4.json" }, { "revision": "e078edee16911bf4a3ccc83a7612d58a", "url": "data/backgrounds/backgrounds-aoa6.json" }, { "revision": "e7ae09fb69ba497618aff151b7f8e491", "url": "data/backgrounds/backgrounds-aoe0.json" }, { "revision": "760e7f38b5727a3c4653ed20f5cd6d66", "url": "data/backgrounds/backgrounds-aoe4.json" }, { "revision": "a6de8ebeba03cfd4c208bc9ea276b7da", "url": "data/backgrounds/backgrounds-apg.json" }, { "revision": "ed95dfaff9809b458f1291453823f43c", "url": "data/backgrounds/backgrounds-av0.json" }, { "revision": "31b8e7593bac4fc20ac9f2ddb44b972f", "url": "data/backgrounds/backgrounds-crb.json" }, { "revision": "55b2b3708dbb199a5024aadd48e95ac4", "url": "data/backgrounds/backgrounds-ec0.json" }, { "revision": "8b1a3269a92a9ab29c0b2f5caabce7dd", "url": "data/backgrounds/backgrounds-ec3.json" }, { "revision": "fd1aadd0f3706f228562645c33efa9c2", "url": "data/backgrounds/backgrounds-frp0.json" }, { "revision": "fb547891fe70a7bcc90d52caaca7d625", "url": "data/backgrounds/backgrounds-g&g.json" }, { "revision": "1b6367a8644861eef6a518f8db93aca9", "url": "data/backgrounds/backgrounds-lopsg.json" }, { "revision": "31d2ad0e100c0ec5553da4929de67c6f", "url": "data/backgrounds/backgrounds-lowg.json" }, { "revision": "806220dea90d2b4e023e1e4964f335df", "url": "data/backgrounds/backgrounds-som.json" }, { "revision": "de810bc4c27dd0a67496b2a7fddc0d1f", "url": "data/backgrounds/backgrounds-sot0.json" }, { "revision": "5c92d8542c71097c784cab0b30d3d7de", "url": "data/backgrounds/fluff-backgrounds.json" }, { "revision": "a2f92b44517232ad4ed1a4e9482a5b83", "url": "data/backgrounds/index.json" }, { "revision": "45696a5250965916e25d4c5ef3785386", "url": "data/bestiary/creatures-aoa1.json" }, { "revision": "396f468df33d2104ed372c1cf06d7bd7", "url": "data/bestiary/creatures-aoa2.json" }, { "revision": "ff35a0d9b8d9b968a8d23218634208a3", "url": "data/bestiary/creatures-aoa3.json" }, { "revision": "a6bfb49e6534019985a0f118446f1cd8", "url": "data/bestiary/creatures-aoa4.json" }, { "revision": "1de61bf3e9119244896cc482b633301f", "url": "data/bestiary/creatures-aoa5.json" }, { "revision": "98821e2bff418a54f09fdf4a8c5cad8c", "url": "data/bestiary/creatures-aoa6.json" }, { "revision": "66b474ce4aad8df29be15726c0dcac6e", "url": "data/bestiary/creatures-aoe1.json" }, { "revision": "e704e57c5eee76ebe77e4fb1daba39dd", "url": "data/bestiary/creatures-aoe2.json" }, { "revision": "2d54a6288370509621cbd7ed7bb317a4", "url": "data/bestiary/creatures-aoe3.json" }, { "revision": "662a88afad7d3661315f4ceae0287894", "url": "data/bestiary/creatures-aoe4.json" }, { "revision": "947848d3f2b45da7daa4657d62b4b065", "url": "data/bestiary/creatures-aoe5.json" }, { "revision": "1d7124d6ff3d0ea288dbe26027b3602a", "url": "data/bestiary/creatures-aoe6.json" }, { "revision": "03a498de2c86ffb106918c4bf4638b35", "url": "data/bestiary/creatures-av1.json" }, { "revision": "771dadee95cfdf1212032c46a8378094", "url": "data/bestiary/creatures-av2.json" }, { "revision": "7c6cbb4582f7cb8b922bb8ffce208fc5", "url": "data/bestiary/creatures-av3.json" }, { "revision": "4bf1da9d3f5722ecac2cfc21d0b5a5b9", "url": "data/bestiary/creatures-bst.json" }, { "revision": "85a699381c58fd494ccb60fa3b5e2fa8", "url": "data/bestiary/creatures-bst2.json" }, { "revision": "ffd9efedb96264ba019d84d1e59e071a", "url": "data/bestiary/creatures-bst3.json" }, { "revision": "8a75db30b88f5d42eb3b4a7bc4c2ce9e", "url": "data/bestiary/creatures-crb.json" }, { "revision": "e8567f6995ce72edd80bc2e8dc2d26aa", "url": "data/bestiary/creatures-ec1.json" }, { "revision": "dfcc82591b99fdf44e449a97498603a6", "url": "data/bestiary/creatures-ec2.json" }, { "revision": "156818b986816daf28d892e1566c617e", "url": "data/bestiary/creatures-ec3.json" }, { "revision": "c7c320871cb598b5adebd52d1bc2af43", "url": "data/bestiary/creatures-ec4.json" }, { "revision": "7cb02498e6b73a225b7fa2ce3eede18f", "url": "data/bestiary/creatures-ec5.json" }, { "revision": "75749c036ef9533d1c56ad89ed84c7d0", "url": "data/bestiary/creatures-ec6.json" }, { "revision": "940d03d3f52933af70f9b9863e39671a", "url": "data/bestiary/creatures-fop.json" }, { "revision": "5972a9190e60a838a0cc7da25670ef74", "url": "data/bestiary/creatures-frp1.json" }, { "revision": "2a62021c3781ca257d8f5db744845630", "url": "data/bestiary/creatures-frp2.json" }, { "revision": "3a3cd65e5eac598cbaf12b9145dd8106", "url": "data/bestiary/creatures-frp3.json" }, { "revision": "17a0c125bf09262050a73b51cb4d0b7a", "url": "data/bestiary/creatures-gmg.json" }, { "revision": "8a1096a9dd08f96871ffd1b32103bcba", "url": "data/bestiary/creatures-lome.json" }, { "revision": "c3e6eddbb8b2bd382f34fe5ef9573de1", "url": "data/bestiary/creatures-ltiba.json" }, { "revision": "242db92a3cd2ac48f101ba3e24e2140a", "url": "data/bestiary/creatures-sli.json" }, { "revision": "ce163c930dc59f0bf9aaae09f8f92546", "url": "data/bestiary/creatures-sot1.json" }, { "revision": "e4460b7ba43e505c31dc31063bb42eb5", "url": "data/bestiary/creatures-sot2.json" }, { "revision": "134c35657a94877530dfe19aa873b036", "url": "data/bestiary/creatures-tio.json" }, { "revision": "caaf16707e3febba9ac5420f425f79cd", "url": "data/bestiary/fluff-creatures-av3.json" }, { "revision": "c77d5dd026d9034e876d232ae1bb204e", "url": "data/bestiary/fluff-creatures-bst.json" }, { "revision": "c7b9ef26335299dc6f7dff2ce7df4599", "url": "data/bestiary/fluff-creatures-bst2.json" }, { "revision": "e0b1498dad9d398c42676baa017710e0", "url": "data/bestiary/fluff-creatures-bst3.json" }, { "revision": "c152becb0a3a50acc61ad3c62285a4e8", "url": "data/bestiary/fluff-creatures-gmg.json" }, { "revision": "f0b6aa97a48a31b2bd5950ff175a6f69", "url": "data/bestiary/fluff-creatures-lome.json" }, { "revision": "7bf32f0c2d3988d2dec16d3adb6a98eb", "url": "data/bestiary/fluff-creatures-sot1.json" }, { "revision": "85892ec3457a380f1b920efd7bd54fc3", "url": "data/bestiary/fluff-index.json" }, { "revision": "1ba3a93d9770376187a7d248e3cbbb74", "url": "data/bestiary/index.json" }, { "revision": "11f5d1e59daade47809c7cf14c66eb07", "url": "data/book/book-crb.json" }, { "revision": "4509b9d3735db93dacca5a4b81a7e579", "url": "data/book/book-gmg.json" }, { "revision": "71d482f2e999e734734a6c5ba18a5ad3", "url": "data/book/book-lowg.json" }, { "revision": "3d1a97431a05bf51a9d1b26273a1ca39", "url": "data/book/book-som.json" }, { "revision": "d81760a845646f79b84957d7d58fc29a", "url": "data/class/class-alchemist.json" }, { "revision": "ce7cd7c31b1acf82b66d695b92efd686", "url": "data/class/class-barbarian.json" }, { "revision": "c09c04e5c67f9776891b896688ab2899", "url": "data/class/class-bard.json" }, { "revision": "5e3d757d1aec76f30d990bde298f08c7", "url": "data/class/class-champion.json" }, { "revision": "d211c0233ce44d727f7aa4dc028409e0", "url": "data/class/class-cleric.json" }, { "revision": "808ede376b0446671ff2085940771068", "url": "data/class/class-druid.json" }, { "revision": "ddeee8c73d6ba1e36ca8bf936b5170f0", "url": "data/class/class-fighter.json" }, { "revision": "c179d68e41d1aa2004aa7b2a2f460a4e", "url": "data/class/class-gunslinger.json" }, { "revision": "20bfea743d5bc8db5f6b0d5515bd8b6c", "url": "data/class/class-inventor.json" }, { "revision": "20292b90da0f4f697017c503e6f16897", "url": "data/class/class-investigator.json" }, { "revision": "9019266635858620a2480ff16038c49f", "url": "data/class/class-magus.json" }, { "revision": "2c64baada0f2aeee7c920f315b5ffce4", "url": "data/class/class-monk.json" }, { "revision": "e80fba83b1daf23c6a6c6950c37e49e9", "url": "data/class/class-oracle.json" }, { "revision": "6ac8ccca0f2cfef46e00b3f8ff6e62f3", "url": "data/class/class-ranger.json" }, { "revision": "ac81667a5ca9509ebebcd157ec6099f8", "url": "data/class/class-rogue.json" }, { "revision": "d3d8c246444c8edfbd9a833aec2487a7", "url": "data/class/class-sorcerer.json" }, { "revision": "3216f5dfbb5241e5ec8a324bf1fc8165", "url": "data/class/class-summoner.json" }, { "revision": "44ecc62da56530b2298481e049d6893e", "url": "data/class/class-swashbuckler.json" }, { "revision": "c20a713e4cfdf262193c4efcf6f007de", "url": "data/class/class-witch.json" }, { "revision": "9345555006168001f7df42495da1d17f", "url": "data/class/class-wizard.json" }, { "revision": "394724d537ab681ff5d7725e7672bfaf", "url": "data/class/index.json" }, { "revision": "564b1e5e95b98f88beb4780726c6befc", "url": "data/feats/feats-aoa3.json" }, { "revision": "ab80eb4fecffa4e207dc960d924c97fa", "url": "data/feats/feats-aoa4.json" }, { "revision": "46f9c12cd5f088a0b58e5316ce39c7b0", "url": "data/feats/feats-aoa5.json" }, { "revision": "c00eec5f10785095d63c1019c5ac7a9c", "url": "data/feats/feats-aoa6.json" }, { "revision": "f915c88fcdc6c7090f2ef67b6b1a5030", "url": "data/feats/feats-aoe1.json" }, { "revision": "8c4c47f150adc7bd2ac7cc264d1738c5", "url": "data/feats/feats-aoe2.json" }, { "revision": "1b6c5ab64c9997e617e9224682a8d82e", "url": "data/feats/feats-aoe3.json" }, { "revision": "e9d3d73385dd29f8f40615d2ad54644d", "url": "data/feats/feats-apg.json" }, { "revision": "2d22f151d21d8b27790707d6247b56d2", "url": "data/feats/feats-av1.json" }, { "revision": "e4fb1e1fc8d52cbbee3ad2073ea6423b", "url": "data/feats/feats-av2.json" }, { "revision": "d5588bc945dd7308def53e556b6912eb", "url": "data/feats/feats-av3.json" }, { "revision": "222ed9ad81877f9439507f0fa7293f49", "url": "data/feats/feats-crb.json" }, { "revision": "f7195ecc4e9a5be7554989a73e9d0fc5", "url": "data/feats/feats-ec1.json" }, { "revision": "0a024a20a78b5dbda524c17a0916cff4", "url": "data/feats/feats-ec2.json" }, { "revision": "330dd2395fcd3a3e1d12eae48895eb8c", "url": "data/feats/feats-ec3.json" }, { "revision": "7f31c727001efdf2ad8cdabe932c008f", "url": "data/feats/feats-ec6.json" }, { "revision": "7cb4e24e5153cead893bc588640e7075", "url": "data/feats/feats-fop.json" }, { "revision": "b125f2f3aee4058f88b1723cd7e92d1e", "url": "data/feats/feats-frp1.json" }, { "revision": "f92d1ba95a4688a124f0ab2d9d7e1d72", "url": "data/feats/feats-frp2.json" }, { "revision": "62d76771f8a07c2f35dfe8d177355a8b", "url": "data/feats/feats-frp3.json" }, { "revision": "3f5223626620b0c587849212946c8db5", "url": "data/feats/feats-g&g.json" }, { "revision": "90aa7169925660c88133037ca2862b16", "url": "data/feats/feats-gmg.json" }, { "revision": "12d7a4452d76f0760c73c7a51932a5db", "url": "data/feats/feats-loag.json" }, { "revision": "4d84e856fc4f49eb69294470484823bf", "url": "data/feats/feats-locg.json" }, { "revision": "27cb93f5b8a02dbe0efaac3bfda74bff", "url": "data/feats/feats-logm.json" }, { "revision": "8f1c4e73c86335296e1e0f179208b179", "url": "data/feats/feats-lol.json" }, { "revision": "945b6f9b5ebdd91fedff6e377126bf80", "url": "data/feats/feats-lome.json" }, { "revision": "9f915de6e93f9f5f798c88ade23e9599", "url": "data/feats/feats-lopsg.json" }, { "revision": "85fe1b667c8e2efcd360118b673644a6", "url": "data/feats/feats-lotgb.json" }, { "revision": "bc55a43bfe3fedd996f826294f427ba4", "url": "data/feats/feats-lowg.json" }, { "revision": "8120b6dfff1a035457d00e443b026a5d", "url": "data/feats/feats-ltiba.json" }, { "revision": "76395bbf6fad7760da8e9a9771a94b9d", "url": "data/feats/feats-sli.json" }, { "revision": "1428f0c5d650664366d5c2cabb5436fb", "url": "data/feats/feats-som.json" }, { "revision": "197c90beb23ac311ac2c58b343492d0a", "url": "data/feats/feats-sot2.json" }, { "revision": "46bc1cbabc1cca1d6500e08f2c41dd49", "url": "data/feats/feats-sot3.json" }, { "revision": "1fe0b2a76d8ca518409e4e0869072729", "url": "data/feats/index.json" }, { "revision": "8ca2af422194ece52c9413ee7df4d86f", "url": "data/generated/bookref-gmscreen-index.json" }, { "revision": "31473e27447d1289714951b5e70ff7e8", "url": "data/generated/bookref-gmscreen.json" }, { "revision": "5e94f6d00895f631da31e6cffd75c7cf", "url": "data/generated/bookref-quick.json" }, { "revision": "688a74016f76e2edf07802a3f0ba58f4", "url": "data/generated/gendata-nav-adventure-book-index.json" }, { "revision": "7e745f2c492d553ec21fb03ad9c099b7", "url": "data/items/baseitems.json" }, { "revision": "ca81ca4408f056ea5249ed5b7895ff44", "url": "data/items/fluff-index.json" }, { "revision": "1fc0fcdbb0518e8fd10d16c8c67efd6f", "url": "data/items/fluff-items-crb.json" }, { "revision": "6fae85f819f6d19210a0c8eb3116dbcf", "url": "data/items/index.json" }, { "revision": "57763bc7a10903fb428bb3949edfaca0", "url": "data/items/items-aoa1.json" }, { "revision": "05bf8b6f43d4e31f0ada817be2d6a0cc", "url": "data/items/items-aoa2.json" }, { "revision": "1cc5fb1f62519f8d8db09dea691b2ec0", "url": "data/items/items-aoa3.json" }, { "revision": "cdd38f85a901047fcd9cc23d03f4f34c", "url": "data/items/items-aoa4.json" }, { "revision": "6d5c3365305a173f69c7db09f041172a", "url": "data/items/items-aoa5.json" }, { "revision": "d27d380e11447975d2543436b8ccaa14", "url": "data/items/items-aoa6.json" }, { "revision": "14d12700308b3f144b68c47b98448e5e", "url": "data/items/items-aoe1.json" }, { "revision": "2a889adb54ff184e69c7275b421d410e", "url": "data/items/items-aoe2.json" }, { "revision": "ea4e78794024814a38cca52e0689204f", "url": "data/items/items-aoe3.json" }, { "revision": "ea1668a62ce655dd2590c27587fb0c75", "url": "data/items/items-aoe4.json" }, { "revision": "03bbf04acc19d18f42382b497dfe1890", "url": "data/items/items-aoe5.json" }, { "revision": "412a1be30bb598fb237e1aa52ea03b64", "url": "data/items/items-aoe6.json" }, { "revision": "cf995d8f75a4456d3a9ebe43108ed637", "url": "data/items/items-apg.json" }, { "revision": "654a810f955e18896d5dd4601a8a9540", "url": "data/items/items-av1.json" }, { "revision": "0b61bf4d8b0817ef924449f6813567af", "url": "data/items/items-av2.json" }, { "revision": "f84ad98026bcf28cb9faee6b6caef44e", "url": "data/items/items-av3.json" }, { "revision": "078817cb94ea093d5db9970f909f6afb", "url": "data/items/items-crb.json" }, { "revision": "7d9c86eceb8050ead124fb9745c8d627", "url": "data/items/items-ec1.json" }, { "revision": "1181b982bbb95bc52ac31f65a06cf38d", "url": "data/items/items-ec2.json" }, { "revision": "521ac165c8df3174b1f7e7b40efc9432", "url": "data/items/items-ec3.json" }, { "revision": "086cb09f7ea6a7154c8f0dcc3486b9af", "url": "data/items/items-ec4.json" }, { "revision": "02d69315011f660ef6bc36df826eaf0f", "url": "data/items/items-ec5.json" }, { "revision": "6e0f7b404f772bf510d07628081585f2", "url": "data/items/items-ec6.json" }, { "revision": "8fcdec71f529a10ecb108d6bdc6bdc75", "url": "data/items/items-fop.json" }, { "revision": "30ddd5d4d13dd99779137aa718b3e2ed", "url": "data/items/items-frp1.json" }, { "revision": "e4f341ac6eafbe88c5629bac89017287", "url": "data/items/items-frp2.json" }, { "revision": "0b4acc987901b5fcf6c6a832b29a6828", "url": "data/items/items-g&g.json" }, { "revision": "1a565f3c3665edab5d678052947f7e2f", "url": "data/items/items-gmg.json" }, { "revision": "39b40da0da37b66d85b1649ca27ef231", "url": "data/items/items-loag.json" }, { "revision": "681febf3b660f21c2b030351bd829126", "url": "data/items/items-locg.json" }, { "revision": "09b930cb5712a3e07b8d6d9611f3bb1a", "url": "data/items/items-logm.json" }, { "revision": "fe93de984edc8e67136d34cf542d741b", "url": "data/items/items-lol.json" }, { "revision": "20a73cf06ea2340e652f72ecd739bbe6", "url": "data/items/items-lome.json" }, { "revision": "2cb87a1d87ad3f94512ee14787be18fb", "url": "data/items/items-lopsg.json" }, { "revision": "40eb51a59357640f918fc9fc34c27059", "url": "data/items/items-lotgb.json" }, { "revision": "5fc458aa024fff22e51b79635dc419f3", "url": "data/items/items-lowg.json" }, { "revision": "cf35fb704e6e806f6355deed48fe6b1d", "url": "data/items/items-ltiba.json" }, { "revision": "f4ab1784a0f20554a5d47ed978bf6430", "url": "data/items/items-sli.json" }, { "revision": "c3c38b0efff6caaef9d6da6af5210e9d", "url": "data/items/items-som.json" }, { "revision": "4376aa1db6345f1d5a28b2e59d44f7b3", "url": "data/items/items-sot1.json" }, { "revision": "7efede606cf3f03cc5d3236d79dc81a8", "url": "data/items/items-sot2.json" }, { "revision": "b2aba46af0fcc3d399d6f7214de7aee9", "url": "data/items/items-sot3.json" }, { "revision": "94431013053bbed5cedcc37a7f858e94", "url": "data/items/items-tio.json" }, { "revision": "8a80554c91d9fca8acb82f023de02f11", "url": "data/spells/fluff-index.json" }, { "revision": "b406db2efe683c1dc84157222dff6880", "url": "data/spells/index.json" }, { "revision": "7bede3adc55d0bf7800575d0bae7d385", "url": "data/spells/spells-aoa3.json" }, { "revision": "70c7e3cc8eeaf8800d50e347e0150596", "url": "data/spells/spells-aoa4.json" }, { "revision": "ce0062cd7c3bb2d5e6760b48b95c8011", "url": "data/spells/spells-aoa6.json" }, { "revision": "3ba8e77e7abbfcd7caf4df300248c140", "url": "data/spells/spells-aoe2.json" }, { "revision": "26db22cc5383d0ad8f945d76fe76ee8c", "url": "data/spells/spells-aoe4.json" }, { "revision": "1b0f8d4578f939e5b7952212a69d49a4", "url": "data/spells/spells-aoe5.json" }, { "revision": "dc87d7a7c1a1524e0edf6c79ab1f314b", "url": "data/spells/spells-aoe6.json" }, { "revision": "f084187ffa8223f0bedbd678adb67330", "url": "data/spells/spells-apg.json" }, { "revision": "0b3fc32dbe5715e7d597e905a8ba3237", "url": "data/spells/spells-av1.json" }, { "revision": "511ab491bd01d1fc13438054a051bd44", "url": "data/spells/spells-av2.json" }, { "revision": "3efa28cf371374af7fa4c9f53ac82da7", "url": "data/spells/spells-av3.json" }, { "revision": "55b414fc65f52fef4b491fcc1ac642cb", "url": "data/spells/spells-crb.json" }, { "revision": "77a5573db90ff44e49d0b3582d04a34f", "url": "data/spells/spells-ec1.json" }, { "revision": "e68aca95a6ba2b183a5c8932f383a2b9", "url": "data/spells/spells-ec2.json" }, { "revision": "4363b944273c6b61f2c71a9896910de7", "url": "data/spells/spells-ec3.json" }, { "revision": "0a033714de3e3946bab0ccf207612757", "url": "data/spells/spells-ec4.json" }, { "revision": "bd28ffe624cf2952f6d0087b959c2ae9", "url": "data/spells/spells-ec5.json" }, { "revision": "2054324fdf57d1e24dacdc961eb0a222", "url": "data/spells/spells-ec6.json" }, { "revision": "5f24d32570c27a7675546e95abbcc82a", "url": "data/spells/spells-frp1.json" }, { "revision": "785fa24e272f133c25704d13796aa578", "url": "data/spells/spells-frp3.json" }, { "revision": "9c10f0330df8fa74e706e60ecc5179cc", "url": "data/spells/spells-locg.json" }, { "revision": "4970b34824027f950ae46c675efdddbb", "url": "data/spells/spells-logm.json" }, { "revision": "42eee42bcbb8f03db24e9050601ff993", "url": "data/spells/spells-lol.json" }, { "revision": "086c1aa5a4f00139224834f7b796c528", "url": "data/spells/spells-lopsg.json" }, { "revision": "9abeb5242112a6257766c5f6bb7554a2", "url": "data/spells/spells-lowg.json" }, { "revision": "9a46a8eadb78bb72ec1204da15d383d9", "url": "data/spells/spells-som.json" }, { "revision": "8ac48f4118ae012d2727e6967b07ab6b", "url": "data/spells/spells-sot1.json" }, { "revision": "d7114a5327af86e19c1462c5739c20b7", "url": "data/spells/spells-sot3.json" }, { "revision": "4d30098a93e1b3de38ea661b3aed95a5", "url": "abilities.html" }, { "revision": "45e674213259f82f4d1724e658550935", "url": "actions.html" }, { "revision": "1df5cfea4d0143108be6df12c603d178", "url": "adventure.html" }, { "revision": "064f1aab3a0b194cc930813db2f78ed8", "url": "adventures.html" }, { "revision": "719f1b15116292a6f76f5caca717943a", "url": "afflictions.html" }, { "revision": "d685f1f9de61393bf087e93071829060", "url": "ancestries.html" }, { "revision": "e13f5275f7140000fb3847042f3e25bf", "url": "archetypes.html" }, { "revision": "c57039ea5c6c8cc8fd370d95dc6fd2ef", "url": "backgrounds.html" }, { "revision": "df834b8d68a5ff74e7585f6ff6740e1a", "url": "bestiary.html" }, { "revision": "2ca8c1914c92e7489cc1dfbe970122c6", "url": "blacklist.html" }, { "revision": "128e03c7caa7ad0de6c01965fbcbc53b", "url": "book.html" }, { "revision": "8c93c39cde65be9d90321054079b8b90", "url": "books.html" }, { "revision": "9dd45817118ec898363cb4f09f52d380", "url": "changelog.html" }, { "revision": "d573495c5d64cd000a6e98fefc99a4a2", "url": "classes.html" }, { "revision": "f58637255c12732a1eaeb091f010bb07", "url": "companionsfamiliars.html" }, { "revision": "edc076f47e0bb5deb9c4419da456fe3e", "url": "conditions.html" }, { "revision": "0f97080fcd19913b2b7681844c515f41", "url": "deities.html" }, { "revision": "f433280b3ad9d97acbc0c290b9b60682", "url": "donate.html" }, { "revision": "4b27fc77a19bf4e93fd83661dd7cb7bc", "url": "feats.html" }, { "revision": "39f97b348d41cf8a97c197ba602965d2", "url": "gmscreen.html" }, { "revision": "ff32aba6400842a60a712afef0a63b9d", "url": "hazards.html" }, { "revision": "b7b0a44ef3361b7f62f66a731b794078", "url": "index.html" }, { "revision": "298e11b359967b37d2c23d8b0942781d", "url": "inittrackerplayerview.html" }, { "revision": "7e699ee518fb89661e5ff6cf6f42dcd2", "url": "items.html" }, { "revision": "52e63b01c5697f5f68003ce4285b0553", "url": "langdemo.html" }, { "revision": "14ee89bf592cd0e18349c9469d48db78", "url": "languages.html" }, { "revision": "6c5eadde0c4fc3149a71e5e6a84921df", "url": "licenses.html" }, { "revision": "fb282ffd69f619cc583423403e82e4ae", "url": "managebrew.html" }, { "revision": "3ac875c1710306dce6431ce2549e7cae", "url": "optionalfeatures.html" }, { "revision": "fc02ecf1afb90e4e0c52d4c32817ea46", "url": "organizations.html" }, { "revision": "14cdd2d2a26bd643781d17f14217221d", "url": "Pf2eTools.html" }, { "revision": "5ff8a7cdef3e0381ddc4518fdc17d8d8", "url": "places.html" }, { "revision": "345fa1f7f5471ab11192237c03f2c86e", "url": "privacy-policy.html" }, { "revision": "4d1f7f70f7bdb4e7cb8ea28949927fd9", "url": "quickreference.html" }, { "revision": "6a155ecb78441a94b117e52df26b134c", "url": "renderdemo.html" }, { "revision": "735062d33d767fb4c2ce52917533ca2b", "url": "rituals.html" }, { "revision": "d19c1e7c1199a72d71daac27cd7f3e14", "url": "search.html" }, { "revision": "0dc24ba6fb44e77afe4ef248c913d107", "url": "spells.html" }, { "revision": "6c24153f82a044dc047001f6805254f5", "url": "tables.html" }, { "revision": "af5f4672ec879916d5a61ba628a8c29f", "url": "textconverter.html" }, { "revision": "728f8a10bb3e8afe858465f1cadf04ae", "url": "traits.html" }, { "revision": "abe874e1bebc1df6e4adaa724ae19eba", "url": "variantrules.html" }, { "revision": "1453f603d4bf89028def5efc6f96ebfb", "url": "vehicles.html" }, { "revision": "07c706820372a879332b65496ee1692f", "url": "search/index-alt-spell.json" }, { "revision": "a2c797a51147f62dc30cc0c616e035c2", "url": "search/index-item.json" }, { "revision": "475d5e0b957cee1a3779b8af67bda4c6", "url": "search/index.json" }, { "revision": "a0c289acd45fd1a51591d5a907f0a267", "url": "search/traits.json" }, { "revision": "4050573dedbe1cc64b4fdcad04351daa", "url": "manifest.webmanifest" }, { "revision": "448c34a56d699c29117adc64c43affeb", "url": "fonts/glyphicons-halflings-regular.woff2" }, { "revision": "d09e5b926b6fdb2a506e5909de33de23", "url": "fonts/good-pro-400.ttf" }, { "revision": "9f6134a15b7dfc5a119bc65376dbe269", "url": "fonts/good-pro-400.woff" }, { "revision": "ff1abe8ed0ef061106b68d844c8dab4d", "url": "fonts/good-pro-400.woff2" }, { "revision": "361e7ff40e96db6bbbfe90889d95afdc", "url": "fonts/good-pro-700.ttf" }, { "revision": "1997214212f12c3e4a68f5195e68cb5d", "url": "fonts/good-pro-700.woff" }, { "revision": "0fea4b7d69bbcb12a33f0922262c6421", "url": "fonts/good-pro-700.woff2" }, { "revision": "a11892b605845bf613d1a8bb06c00b04", "url": "fonts/good-pro-condensed-400.ttf" }, { "revision": "6421dccde27db5dba3399149e69f71d3", "url": "fonts/good-pro-condensed-400.woff" }, { "revision": "ea4d723a4099259aba94b84e333034f8", "url": "fonts/good-pro-condensed-700.ttf" }, { "revision": "fc0455882bdfe0c48aa7186da15c85f3", "url": "fonts/good-pro-condensed-700.woff" }, { "revision": "46aa1be77a9022bb5ee43a8513fb3057", "url": "fonts/good-pro-condensed-700.woff2" }, { "revision": "51853144d912fd5553eeb7d39c3b53bf", "url": "fonts/good-pro-condensed-italic-400.ttf" }, { "revision": "41d2455a8dea4aac5165b82743681efa", "url": "fonts/good-pro-condensed-italic-400.woff" }, { "revision": "5a10bdbc21e43df2acd07e2487820d60", "url": "fonts/good-pro-condensed-italic-700.ttf" }, { "revision": "556dd5c152d5b0739a5121f37a2baff4", "url": "fonts/good-pro-condensed-italic-700.woff" }, { "revision": "1bc04907c2bf079908e90e0313239bcd", "url": "fonts/good-pro-condensed-italic-700.woff2" }, { "revision": "ff1eae181861f44db0ab1431879a49f9", "url": "fonts/good-pro-italic-400.ttf" }, { "revision": "a9ed15953b80fedb8137f8f25839fb96", "url": "fonts/good-pro-italic-400.woff" }, { "revision": "1b23ad64d84c8cee844cf53e466e6eed", "url": "fonts/good-pro-italic-400.woff2" }, { "revision": "55ee8f359a01d66ab3b8b22d02d9ed55", "url": "fonts/good-pro-italic-700.ttf" }, { "revision": "6ee51b012748f002f234b578ab1268b7", "url": "fonts/good-pro-italic-700.woff" }, { "revision": "7489b33e26f603728567f2ccee7e508e", "url": "fonts/good-pro-italic-700.woff2" }, { "revision": "2640ba59a59d7dfbb88d0d477f7bdb0a", "url": "fonts/Pathfinder2eActions.ttf" }, { "revision": "b0bf2c218bf460993111010eb83a0fa8", "url": "fonts/SabonLTStd-Bold.ttf" }, { "revision": "1b97aaf6b6e56d43d0b9e370c4f50876", "url": "fonts/SabonLTStd-BoldItalic.ttf" }, { "revision": "d69ef52beb7ca47462a0f89ff028a2f3", "url": "fonts/SabonLTStd-Italic.ttf" }, { "revision": "d6e119cff761a4bee40d2f640db5af1e", "url": "fonts/SabonLTStd-Roman.ttf" }, { "revision": "778896312671ade54c606724f278bf36", "url": "fonts/AlbertusMT.ttf" }, { "revision": "183504177c2f7e2ccc6b88461af6000d", "url": "img/letter-dark.webp" }, { "revision": "43877a1bc57da60ca9a9aafeac9d8e2f", "url": "img/letter.webp" }, { "revision": "4279516591cee28c697c6d2f84d84da1", "url": "img/patreon.webp" }, { "revision": "918ab3311bf65e4da491aaba2f2ca5bc", "url": "fonts/Basing.ttf" }, { "revision": "2f95108599bc770e0fc66a063b0f5906", "url": "fonts/Taroca.ttf" }, { "revision": "09554888dac30eee041e8047d3dc75b4", "url": "sw-injector.js" }]); - var RevisionCacheFirst = class extends Strategy { - cacheRoutesAbortController = null; - constructor() { - super({ cacheName: "runtime-revision" }); - this.activate = this.activate.bind(this); - this.cacheRoutes = this.cacheRoutes.bind(this); - addEventListener("message", (event) => { - switch (event.data.type) { - case "CACHE_ROUTES": { - this.cacheRoutesAbortController = new AbortController(); - event.waitUntil(this.cacheRoutes(event.data, this.cacheRoutesAbortController.signal)); - break; - } - case "CANCEL_CACHE_ROUTES": { - console.log("aborting cache!"); - this.cacheRoutesAbortController?.abort(); - this.cacheRoutesAbortController = null; - break; - } - } - }); - } - async _handle(request, handler) { - const url = request.url; - const cacheKey = createCacheKey({ url, revision: runtimeManifest.get(url) }).cacheKey; - console.log(`trying to resolve ${url} with key ${cacheKey}`); - const cacheResponse = await handler.cacheMatch(cacheKey); - if (cacheResponse !== void 0) - return cacheResponse; - console.log(`fetching ${url} over the network for RevisionFirstCache`); - try { - const fetchResponse = await handler.fetch(request); - handler.cachePut(cacheKey, fetchResponse.clone()); - return fetchResponse; - } catch (e) { - offlineAlert(url); - return new Response(); - } - } - activate(event) { - return waitUntil2(event, async () => { - const cache = await caches.open(this.cacheName); - const currentCacheKeys = (await cache.keys()).map((request) => request.url); - const validCacheKeys = new Set(Array.from(runtimeManifest).map(([url, revision]) => createCacheKey({ url, revision }).cacheKey)); - await Promise.allSettled(currentCacheKeys.map(async (key) => { - if (!validCacheKeys.has(key)) { - console.log(`deleting ${key} from the cache because its revision does not match`); - await cache.delete(key); - } - })); - }); - } - async cacheRoutes(data, signal) { - const cache = await caches.open(this.cacheName); - const currentCacheKeys = new Set((await cache.keys()).map((request) => request.url)); - const validCacheKeys = Array.from(runtimeManifest).map(([url, revision]) => createCacheKey({ url, revision }).cacheKey); - const routeRegex = data.payload.routeRegex; - const routesToCache = validCacheKeys.filter((key) => !currentCacheKeys.has(key) && routeRegex.test(key)); - const fetchTotal = routesToCache.length; - let fetched = 0; - const postProgress = async () => { - const clients = await self.clients.matchAll({ type: "window" }); - for (const client of clients) { - client.postMessage({ type: "CACHE_ROUTES_PROGRESS", payload: { fetched, fetchTotal } }); - } - }; - await postProgress(); - if (fetchTotal === 0) - return; - const concurrentFetches = 5; - const fetchPromise = async () => { - while (true) { - const url = routesToCache.pop(); - if (url === void 0 || signal.aborted) - return; - const cleanUrl = url.replace(/\?__WB_REVISION__=\w+$/m, ""); - const response = await fetch(cleanUrl); - await cache.put(url, response); - fetched++; - postProgress(); - } - }; - const fetchPromises = []; - for (let i = 0; i < concurrentFetches; i++) { - fetchPromises.push(fetchPromise()); - } - const fetchResults = await Promise.allSettled(fetchPromises); - const errorResults = fetchResults.filter((fetchResult) => fetchResult.status === "rejected"); - if (errorResults.length > 0) { - const clients = await self.clients.matchAll({ type: "window" }); - for (const client of clients) - client.postMessage({ type: "CACHE_ROUTES_ERROR", payload: { errors: errorResults } }); - } - } - }; - var runtimeManifest = new Map([["data/adventure/adventure-id.json", "1c29701a3abdebba387f6b92237fcff5"], ["img/covers/blank.webp", "9b2781e05d13f720e91891cbb929fe20"], ["img/covers/CRB-100.webp", "7650bb7365cbf84b20ee97c6b7c0a189"], ["img/covers/CRB-25.webp", "716475fd096ad77eee0ed1b47c3a1431"], ["img/covers/CRB-33.webp", "d7ef321523e2f1321fe8a5324ed4643c"], ["img/covers/CRB.webp", "bfc8f8b52b8faeee86027947182edcf8"], ["img/covers/GMG-100.webp", "75c327c893ef10c786f963236b4fe9d0"], ["img/covers/GMG-25.webp", "a67231c72c04e4a4c018bbd33110198b"], ["img/covers/GMG-33.webp", "6b05c52c0af37ef6ae43cf6f5d719a9c"], ["img/covers/GMG.webp", "d3610c80b6d79213177340f0c5f8db06"], ["img/covers/LOWG-100.webp", "266ffa70d70230e300ed454c612e59cf"], ["img/covers/LOWG-25.webp", "61855c40cd160dcf3bc8c39dc10844c3"], ["img/covers/LOWG-33.webp", "138e39219a0a4da133f3519125e9bc3f"], ["img/covers/LOWG.webp", "1adccec87cc1324fecd5e34ebeef69d4"], ["img/covers/SoM-100.webp", "ed511ca0c38bbe1644ec1b8729e7fb9b"], ["img/covers/SoM-25.webp", "51f0a78fa32ece446abc13ada184a2bc"], ["img/covers/SoM-33.webp", "675e9f72483daeaf814cd1ac38e232c7"], ["img/covers/SoM.webp", "880dd82ad81eda61b903d28e4bdde4f9"], ["img/gmscreen/moon.webp", "c18c5f06b696ed2d4c1e5eda8cc204ca"], ["img/letter-dark.webp", "183504177c2f7e2ccc6b88461af6000d"], ["img/letter.webp", "43877a1bc57da60ca9a9aafeac9d8e2f"], ["img/logo/Background.svg", "c6ec599d06aa5b773e600881ceeb0460"], ["img/logo/No%20Background.svg", "6d3b2f0a213f7bc5beba9e88f20667f7"], ["img/logo/PF2e%20Tools.ai", "76130119768432256f57ee3e2d3d2021"], ["img/patreon.webp", "4279516591cee28c697c6d2f84d84da1"], ["img/webp.sh", "9fb3bf9ec0b75575cd3615a1ab15bf59"], ["android-chrome-192x192.png", "9c862118ab3423bc2d01ab42f755e07b"], ["android-chrome-256x256.png", "fad8c4a79079fa54737cb9532e141aa0"], ["android-chrome-384x384.png", "4f2267d39b6bd3389138f074c45dfe67"], ["apple-touch-icon-120x120.png", "fe434a800beb3381ad59197e29e68a2a"], ["apple-touch-icon-152x152.png", "3b23873f540b0c5271201c5f91a0c7ed"], ["apple-touch-icon-167x167.png", "e19815500c57552e18f8218fbdb5cb72"], ["apple-touch-icon-180x180.png", "c9ecf9df6e7f7f55974f45f7110d9890"], ["apple-touch-icon-360x360.png", "b5d0e83a94f7fbea21006b7479d8a898"], ["favicon-128x128.png", "c7b2e3d1de45c84588bc4711a4b50c6d"], ["favicon-144x144.png", "6770b376fb68b50e546e60d4a0dae9aa"], ["favicon-16x16.png", "3dbac8b48aaa087a66f7e3a16af56994"], ["favicon-256x256.png", "e31f4ad5d254f7faedf87bd8ac8e3d1c"], ["favicon-32x32.png", "61f449203da4d72d7669df93ef5d1a0c"], ["favicon-48x48.png", "5144e32c3e7170887ec5c99adeeaaed2"], ["favicon-64x64.png", "be61a655807353c6f8dcb86ff896c581"], ["mstile-144x144.png", "9f6d0f9700426867bddb7614da8ece66"], ["mstile-150x150.png", "ba04e45075fa41f85441a1d070b40710"], ["mstile-310x150.png", "e37a7cc30a0283d5357fd38901cb6f56"], ["mstile-310x310.png", "80a2fed08dac45aa2cfc55ddaa5b69fa"], ["mstile-70x70.png", "798a4847c77967a489d66a40ef1d8801"], ["favicon.svg", "959b9c72ddadfdf4a067012231a84afb"], ["safari-pinned-tab.svg", "e84a2ecd6fd15fb32fc3f75293ef467c"]].map(([ - route, - revision - ]) => [ - `${self.location.origin}/${route}`, - revision - ])); - var revisionCacheFirst = new RevisionCacheFirst(); - registerRoute(({ request }) => runtimeManifest.has(request.url), revisionCacheFirst); - addEventListener("activate", revisionCacheFirst.activate); - registerRoute(({ request }) => request.destination === "font", new CacheFirst({ - cacheName: "font-cache" - })); - registerRoute(({ request }) => request.destination === "image", new NetworkFirst({ - cacheName: "external-image-cache", - plugins: [ - new ExpirationPlugin({ maxAgeSeconds: 7 * 24 * 60 * 60, maxEntries: 100, purgeOnQuotaError: true }) - ] - })); - addEventListener("install", () => { - self.skipWaiting(); - }); - addEventListener("activate", (event) => { - event.waitUntil((async () => { - const cacheNames2 = await caches.keys(); - for (const cacheName of cacheNames2) { - if (/\d+\.\d+\.\d+/.test(cacheName)) { - await caches.delete(cacheName); - console.log(`deleted cache: ${cacheName} because it is from old service worker`); - } - } - })()); - }); -})(); +(()=>{try{self["workbox:core:6.5.2"]&&_()}catch{}var Le=(a,...e)=>{let r=a;return e.length>0&&(r+=` :: ${JSON.stringify(e)}`),r};var be=Le;var d=class extends Error{constructor(e,r){let s=be(e,r);super(s),this.name=e,this.details=r}};var v={googleAnalytics:"googleAnalytics",precache:"precache-v2",prefix:"workbox",runtime:"runtime",suffix:typeof registration<"u"?registration.scope:""},Y=a=>[v.prefix,a,v.suffix].filter(e=>e&&e.length>0).join("-"),Se=a=>{for(let e of Object.keys(v))a(e)},w={updateDetails:a=>{Se(e=>{typeof a[e]=="string"&&(v[e]=a[e])})},getGoogleAnalyticsName:a=>a||Y(v.googleAnalytics),getPrecacheName:a=>a||Y(v.precache),getPrefix:()=>v.prefix,getRuntimeName:a=>a||Y(v.runtime),getSuffix:()=>v.suffix};function X(a,e){let r=e();return a.waitUntil(r),r}try{self["workbox:precaching:6.5.2"]&&_()}catch{}var Pe="__WB_REVISION__";function R(a){if(!a)throw new d("add-to-cache-list-unexpected-type",{entry:a});if(typeof a=="string"){let o=new URL(a,location.href);return{cacheKey:o.href,url:o.href}}let{revision:e,url:r}=a;if(!r)throw new d("add-to-cache-list-unexpected-type",{entry:a});if(!e){let o=new URL(r,location.href);return{cacheKey:o.href,url:o.href}}let s=new URL(r,location.href),t=new URL(r,location.href);return s.searchParams.set(Pe,e),{cacheKey:s.href,url:t.href}}var V=class{constructor(){this.updatedURLs=[],this.notUpdatedURLs=[],this.handlerWillStart=async({request:e,state:r})=>{r&&(r.originalRequest=e)},this.cachedResponseWillBeUsed=async({event:e,state:r,cachedResponse:s})=>{if(e.type==="install"&&r&&r.originalRequest&&r.originalRequest instanceof Request){let t=r.originalRequest.url;s?this.notUpdatedURLs.push(t):this.updatedURLs.push(t)}return s}}};var F=class{constructor({precacheController:e}){this.cacheKeyWillBeUsed=async({request:r,params:s})=>{let t=s?.cacheKey||this._precacheController.getCacheKeyForURL(r.url);return t?new Request(t,{headers:r.headers}):r},this._precacheController=e}};var D;function he(){if(D===void 0){let a=new Response("");if("body"in a)try{new Response(a.body),D=!0}catch{D=!1}D=!1}return D}async function me(a,e){let r=null;if(a.url&&(r=new URL(a.url).origin),r!==self.location.origin)throw new d("cross-origin-copy-response",{origin:r});let s=a.clone(),t={headers:new Headers(s.headers),status:s.status,statusText:s.statusText},o=e?e(t):t,i=he()?s.body:await s.blob();return new Response(i,o)}var Z=a=>new URL(String(a),location.href).href.replace(new RegExp(`^${location.origin}`),"");function ge(a,e){let r=new URL(a);for(let s of e)r.searchParams.delete(s);return r.href}async function ve(a,e,r,s){let t=ge(e.url,r);if(e.url===t)return a.match(e,s);let o=Object.assign(Object.assign({},s),{ignoreSearch:!0}),i=await a.keys(e,o);for(let n of i){let c=ge(n.url,r);if(t===c)return a.match(n,s)}}var I=class{constructor(){this.promise=new Promise((e,r)=>{this.resolve=e,this.reject=r})}};var W=new Set;async function we(){for(let a of W)await a()}function ee(a){return new Promise(e=>setTimeout(e,a))}try{self["workbox:strategies:6.5.2"]&&_()}catch{}function K(a){return typeof a=="string"?new Request(a):a}var T=class{constructor(e,r){this._cacheKeys={},Object.assign(this,r),this.event=r.event,this._strategy=e,this._handlerDeferred=new I,this._extendLifetimePromises=[],this._plugins=[...e.plugins],this._pluginStateMap=new Map;for(let s of this._plugins)this._pluginStateMap.set(s,{});this.event.waitUntil(this._handlerDeferred.promise)}async fetch(e){let{event:r}=this,s=K(e);if(s.mode==="navigate"&&r instanceof FetchEvent&&r.preloadResponse){let i=await r.preloadResponse;if(i)return i}let t=this.hasCallback("fetchDidFail")?s.clone():null;try{for(let i of this.iterateCallbacks("requestWillFetch"))s=await i({request:s.clone(),event:r})}catch(i){if(i instanceof Error)throw new d("plugin-error-request-will-fetch",{thrownErrorMessage:i.message})}let o=s.clone();try{let i;i=await fetch(s,s.mode==="navigate"?void 0:this._strategy.fetchOptions);for(let n of this.iterateCallbacks("fetchDidSucceed"))i=await n({event:r,request:o,response:i});return i}catch(i){throw t&&await this.runCallbacks("fetchDidFail",{error:i,event:r,originalRequest:t.clone(),request:o.clone()}),i}}async fetchAndCachePut(e){let r=await this.fetch(e),s=r.clone();return this.waitUntil(this.cachePut(e,s)),r}async cacheMatch(e){let r=K(e),s,{cacheName:t,matchOptions:o}=this._strategy,i=await this.getCacheKey(r,"read"),n=Object.assign(Object.assign({},o),{cacheName:t});s=await caches.match(i,n);for(let c of this.iterateCallbacks("cachedResponseWillBeUsed"))s=await c({cacheName:t,matchOptions:o,cachedResponse:s,request:i,event:this.event})||void 0;return s}async cachePut(e,r){let s=K(e);await ee(0);let t=await this.getCacheKey(s,"write");if(!r)throw new d("cache-put-with-no-response",{url:Z(t.url)});let o=await this._ensureResponseSafeToCache(r);if(!o)return!1;let{cacheName:i,matchOptions:n}=this._strategy,c=await self.caches.open(i),l=this.hasCallback("cacheDidUpdate"),m=l?await ve(c,t.clone(),["__WB_REVISION__"],n):null;try{await c.put(t,l?o.clone():o)}catch(b){if(b instanceof Error)throw b.name==="QuotaExceededError"&&await we(),b}for(let b of this.iterateCallbacks("cacheDidUpdate"))await b({cacheName:i,oldResponse:m,newResponse:o.clone(),request:t,event:this.event});return!0}async getCacheKey(e,r){let s=`${e.url} | ${r}`;if(!this._cacheKeys[s]){let t=e;for(let o of this.iterateCallbacks("cacheKeyWillBeUsed"))t=K(await o({mode:r,request:t,event:this.event,params:this.params}));this._cacheKeys[s]=t}return this._cacheKeys[s]}hasCallback(e){for(let r of this._strategy.plugins)if(e in r)return!0;return!1}async runCallbacks(e,r){for(let s of this.iterateCallbacks(e))await s(r)}*iterateCallbacks(e){for(let r of this._strategy.plugins)if(typeof r[e]=="function"){let s=this._pluginStateMap.get(r);yield o=>{let i=Object.assign(Object.assign({},o),{state:s});return r[e](i)}}}waitUntil(e){return this._extendLifetimePromises.push(e),e}async doneWaiting(){let e;for(;e=this._extendLifetimePromises.shift();)await e}destroy(){this._handlerDeferred.resolve(null)}async _ensureResponseSafeToCache(e){let r=e,s=!1;for(let t of this.iterateCallbacks("cacheWillUpdate"))if(r=await t({request:this.request,response:r,event:this.event})||void 0,s=!0,!r)break;return s||r&&r.status!==200&&(r=void 0),r}};var u=class{constructor(e={}){this.cacheName=w.getRuntimeName(e.cacheName),this.plugins=e.plugins||[],this.fetchOptions=e.fetchOptions,this.matchOptions=e.matchOptions}handle(e){let[r]=this.handleAll(e);return r}handleAll(e){e instanceof FetchEvent&&(e={event:e,request:e.request});let r=e.event,s=typeof e.request=="string"?new Request(e.request):e.request,t="params"in e?e.params:void 0,o=new T(this,{event:r,request:s,params:t}),i=this._getResponse(o,s,r),n=this._awaitComplete(i,o,s,r);return[i,n]}async _getResponse(e,r,s){await e.runCallbacks("handlerWillStart",{event:s,request:r});let t;try{if(t=await this._handle(r,e),!t||t.type==="error")throw new d("no-response",{url:r.url})}catch(o){if(o instanceof Error){for(let i of e.iterateCallbacks("handlerDidError"))if(t=await i({error:o,event:s,request:r}),t)break}if(!t)throw o}for(let o of e.iterateCallbacks("handlerWillRespond"))t=await o({event:s,request:r,response:t});return t}async _awaitComplete(e,r,s,t){let o,i;try{o=await e}catch{}try{await r.runCallbacks("handlerDidRespond",{event:t,request:s,response:o}),await r.doneWaiting()}catch(n){n instanceof Error&&(i=n)}if(await r.runCallbacks("handlerDidComplete",{event:t,request:s,response:o,error:i}),r.destroy(),i)throw i}};var p=class extends u{constructor(e={}){e.cacheName=w.getPrecacheName(e.cacheName),super(e),this._fallbackToNetwork=e.fallbackToNetwork!==!1,this.plugins.push(p.copyRedirectedCacheableResponsesPlugin)}async _handle(e,r){let s=await r.cacheMatch(e);return s||(r.event&&r.event.type==="install"?await this._handleInstall(e,r):await this._handleFetch(e,r))}async _handleFetch(e,r){let s,t=r.params||{};if(this._fallbackToNetwork){let o=t.integrity,i=e.integrity,n=!i||i===o;if(s=await r.fetch(new Request(e,{integrity:i||o})),o&&n){this._useDefaultCacheabilityPluginIfNeeded();let c=await r.cachePut(e,s.clone())}}else throw new d("missing-precache-entry",{cacheName:this.cacheName,url:e.url});return s}async _handleInstall(e,r){this._useDefaultCacheabilityPluginIfNeeded();let s=await r.fetch(e);if(!await r.cachePut(e,s.clone()))throw new d("bad-precaching-response",{url:e.url,status:s.status});return s}_useDefaultCacheabilityPluginIfNeeded(){let e=null,r=0;for(let[s,t]of this.plugins.entries())t!==p.copyRedirectedCacheableResponsesPlugin&&(t===p.defaultPrecacheCacheabilityPlugin&&(e=s),t.cacheWillUpdate&&r++);r===0?this.plugins.push(p.defaultPrecacheCacheabilityPlugin):r>1&&e!==null&&this.plugins.splice(e,1)}};p.defaultPrecacheCacheabilityPlugin={async cacheWillUpdate({response:a}){return!a||a.status>=400?null:a}};p.copyRedirectedCacheableResponsesPlugin={async cacheWillUpdate({response:a}){return a.redirected?await me(a):a}};var U=class{constructor({cacheName:e,plugins:r=[],fallbackToNetwork:s=!0}={}){this._urlsToCacheKeys=new Map,this._urlsToCacheModes=new Map,this._cacheKeysToIntegrities=new Map,this._strategy=new p({cacheName:w.getPrecacheName(e),plugins:[...r,new F({precacheController:this})],fallbackToNetwork:s}),this.install=this.install.bind(this),this.activate=this.activate.bind(this)}get strategy(){return this._strategy}precache(e){this.addToCacheList(e),this._installAndActiveListenersAdded||(self.addEventListener("install",this.install),self.addEventListener("activate",this.activate),this._installAndActiveListenersAdded=!0)}addToCacheList(e){let r=[];for(let s of e){typeof s=="string"?r.push(s):s&&s.revision===void 0&&r.push(s.url);let{cacheKey:t,url:o}=R(s),i=typeof s!="string"&&s.revision?"reload":"default";if(this._urlsToCacheKeys.has(o)&&this._urlsToCacheKeys.get(o)!==t)throw new d("add-to-cache-list-conflicting-entries",{firstEntry:this._urlsToCacheKeys.get(o),secondEntry:t});if(typeof s!="string"&&s.integrity){if(this._cacheKeysToIntegrities.has(t)&&this._cacheKeysToIntegrities.get(t)!==s.integrity)throw new d("add-to-cache-list-conflicting-integrities",{url:o});this._cacheKeysToIntegrities.set(t,s.integrity)}if(this._urlsToCacheKeys.set(o,t),this._urlsToCacheModes.set(o,i),r.length>0){let n=`Workbox is precaching URLs without revision info: ${r.join(", ")} +This is generally NOT safe. Learn more at https://bit.ly/wb-precache`}}}install(e){return X(e,async()=>{let r=new V;this.strategy.plugins.push(r);for(let[o,i]of this._urlsToCacheKeys){let n=this._cacheKeysToIntegrities.get(i),c=this._urlsToCacheModes.get(o),l=new Request(o,{integrity:n,cache:c,credentials:"same-origin"});await Promise.all(this.strategy.handleAll({params:{cacheKey:i},request:l,event:e}))}let{updatedURLs:s,notUpdatedURLs:t}=r;return{updatedURLs:s,notUpdatedURLs:t}})}activate(e){return X(e,async()=>{let r=await self.caches.open(this.strategy.cacheName),s=await r.keys(),t=new Set(this._urlsToCacheKeys.values()),o=[];for(let i of s)t.has(i.url)||(await r.delete(i),o.push(i.url));return{deletedURLs:o}})}getURLsToCacheKeys(){return this._urlsToCacheKeys}getCachedURLs(){return[...this._urlsToCacheKeys.keys()]}getCacheKeyForURL(e){let r=new URL(e,location.href);return this._urlsToCacheKeys.get(r.href)}getIntegrityForCacheKey(e){return this._cacheKeysToIntegrities.get(e)}async matchPrecache(e){let r=e instanceof Request?e.url:e,s=this.getCacheKeyForURL(r);if(s)return(await self.caches.open(this.strategy.cacheName)).match(s)}createHandlerBoundToURL(e){let r=this.getCacheKeyForURL(e);if(!r)throw new d("non-precached-url",{url:e});return s=>(s.request=new Request(e),s.params=Object.assign({cacheKey:r},s.params),this.strategy.handle(s))}};var re,y=()=>(re||(re=new U),re);try{self["workbox:routing:6.5.2"]&&_()}catch{}var B="GET";var k=a=>a&&typeof a=="object"?a:{handle:a};var h=class{constructor(e,r,s=B){this.handler=k(r),this.match=e,this.method=s}setCatchHandler(e){this.catchHandler=k(e)}};var O=class extends h{constructor(e,r,s){let t=({url:o})=>{let i=e.exec(o.href);if(!!i&&!(o.origin!==location.origin&&i.index!==0))return i.slice(1)};super(t,r,s)}};var $=class{constructor(){this._routes=new Map,this._defaultHandlerMap=new Map}get routes(){return this._routes}addFetchListener(){self.addEventListener("fetch",e=>{let{request:r}=e,s=this.handleRequest({request:r,event:e});s&&e.respondWith(s)})}addCacheListener(){self.addEventListener("message",e=>{if(e.data&&e.data.type==="CACHE_URLS"){let{payload:r}=e.data,s=Promise.all(r.urlsToCache.map(t=>{typeof t=="string"&&(t=[t]);let o=new Request(...t);return this.handleRequest({request:o,event:e})}));e.waitUntil(s),e.ports&&e.ports[0]&&s.then(()=>e.ports[0].postMessage(!0))}})}handleRequest({request:e,event:r}){let s=new URL(e.url,location.href);if(!s.protocol.startsWith("http"))return;let t=s.origin===location.origin,{params:o,route:i}=this.findMatchingRoute({event:r,request:e,sameOrigin:t,url:s}),n=i&&i.handler,c=[],l=e.method;if(!n&&this._defaultHandlerMap.has(l)&&(n=this._defaultHandlerMap.get(l)),!n)return;let m;try{m=n.handle({url:s,request:e,event:r,params:o})}catch(j){m=Promise.reject(j)}let b=i&&i.catchHandler;return m instanceof Promise&&(this._catchHandler||b)&&(m=m.catch(async j=>{if(b)try{return await b.handle({url:s,request:e,event:r,params:o})}catch(C){C instanceof Error&&(j=C)}if(this._catchHandler)return this._catchHandler.handle({url:s,request:e,event:r});throw j})),m}findMatchingRoute({url:e,sameOrigin:r,request:s,event:t}){let o=this._routes.get(s.method)||[];for(let i of o){let n,c=i.match({url:e,sameOrigin:r,request:s,event:t});if(c)return n=c,(Array.isArray(n)&&n.length===0||c.constructor===Object&&Object.keys(c).length===0||typeof c=="boolean")&&(n=void 0),{route:i,params:n}}return{}}setDefaultHandler(e,r=B){this._defaultHandlerMap.set(r,k(e))}setCatchHandler(e){this._catchHandler=k(e)}registerRoute(e){this._routes.has(e.method)||this._routes.set(e.method,[]),this._routes.get(e.method).push(e)}unregisterRoute(e){if(!this._routes.has(e.method))throw new d("unregister-route-but-not-found-with-method",{method:e.method});let r=this._routes.get(e.method).indexOf(e);if(r>-1)this._routes.get(e.method).splice(r,1);else throw new d("unregister-route-route-not-registered")}};var L,H=()=>(L||(L=new $,L.addFetchListener(),L.addCacheListener()),L);function N(a,e,r){let s;if(typeof a=="string"){let o=new URL(a,location.href),i=({url:n})=>n.href===o.href;s=new h(i,e,r)}else if(a instanceof RegExp)s=new O(a,e,r);else if(typeof a=="function")s=new h(a,e,r);else if(a instanceof h)s=a;else throw new d("unsupported-route-type",{moduleName:"workbox-routing",funcName:"registerRoute",paramName:"capture"});return H().registerRoute(s),s}function ye(a,e=[]){for(let r of[...a.searchParams.keys()])e.some(s=>s.test(r))&&a.searchParams.delete(r);return a}function*je(a,{ignoreURLParametersMatching:e=[/^utm_/,/^fbclid$/],directoryIndex:r="index.html",cleanURLs:s=!0,urlManipulation:t}={}){let o=new URL(a,location.href);o.hash="",yield o.href;let i=ye(o,e);if(yield i.href,r&&i.pathname.endsWith("/")){let n=new URL(i.href);n.pathname+=r,yield n.href}if(s){let n=new URL(i.href);n.pathname+=".html",yield n.href}if(t){let n=t({url:o});for(let c of n)yield c.href}}var S=class extends h{constructor(e,r){let s=({request:t})=>{let o=e.getURLsToCacheKeys();for(let i of je(t.url,r)){let n=o.get(i);if(n){let c=e.getIntegrityForCacheKey(n);return{cacheKey:n,integrity:c}}}};super(s,e.strategy)}};function ae(a){let e=y(),r=new S(e,a);N(r)}function se(a){y().precache(a)}function te(a,e){se(a),ae(e)}var P=class extends u{async _handle(e,r){let s=[],t=await r.cacheMatch(e),o;if(!t)try{t=await r.fetchAndCachePut(e)}catch(i){i instanceof Error&&(o=i)}if(!t)throw new d("no-response",{url:e.url,error:o});return t}};var oe={cacheWillUpdate:async({response:a})=>a.status===200||a.status===0?a:null};var q=class extends u{constructor(e={}){super(e),this.plugins.some(r=>"cacheWillUpdate"in r)||this.plugins.unshift(oe),this._networkTimeoutSeconds=e.networkTimeoutSeconds||0}async _handle(e,r){let s=[],t=[],o;if(this._networkTimeoutSeconds){let{id:c,promise:l}=this._getTimeoutPromise({request:e,logs:s,handler:r});o=c,t.push(l)}let i=this._getNetworkPromise({timeoutId:o,request:e,logs:s,handler:r});t.push(i);let n=await r.waitUntil((async()=>await r.waitUntil(Promise.race(t))||await i)());if(!n)throw new d("no-response",{url:e.url});return n}_getTimeoutPromise({request:e,logs:r,handler:s}){let t;return{promise:new Promise(i=>{t=setTimeout(async()=>{i(await s.cacheMatch(e))},this._networkTimeoutSeconds*1e3)}),id:t}}async _getNetworkPromise({timeoutId:e,request:r,logs:s,handler:t}){let o,i;try{i=await t.fetchAndCachePut(r)}catch(n){n instanceof Error&&(o=n)}return e&&clearTimeout(e),(o||!i)&&(i=await t.cacheMatch(r)),i}};function G(a){a.then(()=>{})}var qe=(a,e)=>e.some(r=>a instanceof r),Ee,Ne;function Ae(){return Ee||(Ee=[IDBDatabase,IDBObjectStore,IDBIndex,IDBCursor,IDBTransaction])}function Me(){return Ne||(Ne=[IDBCursor.prototype.advance,IDBCursor.prototype.continue,IDBCursor.prototype.continuePrimaryKey])}var xe=new WeakMap,ne=new WeakMap,Re=new WeakMap,ie=new WeakMap,de=new WeakMap;function Ve(a){let e=new Promise((r,s)=>{let t=()=>{a.removeEventListener("success",o),a.removeEventListener("error",i)},o=()=>{r(g(a.result)),t()},i=()=>{s(a.error),t()};a.addEventListener("success",o),a.addEventListener("error",i)});return e.then(r=>{r instanceof IDBCursor&&xe.set(r,a)}).catch(()=>{}),de.set(e,a),e}function Fe(a){if(ne.has(a))return;let e=new Promise((r,s)=>{let t=()=>{a.removeEventListener("complete",o),a.removeEventListener("error",i),a.removeEventListener("abort",i)},o=()=>{r(),t()},i=()=>{s(a.error||new DOMException("AbortError","AbortError")),t()};a.addEventListener("complete",o),a.addEventListener("error",i),a.addEventListener("abort",i)});ne.set(a,e)}var ce={get(a,e,r){if(a instanceof IDBTransaction){if(e==="done")return ne.get(a);if(e==="objectStoreNames")return a.objectStoreNames||Re.get(a);if(e==="store")return r.objectStoreNames[1]?void 0:r.objectStore(r.objectStoreNames[0])}return g(a[e])},set(a,e,r){return a[e]=r,!0},has(a,e){return a instanceof IDBTransaction&&(e==="done"||e==="store")?!0:e in a}};function _e(a){ce=a(ce)}function Ie(a){return a===IDBDatabase.prototype.transaction&&!("objectStoreNames"in IDBTransaction.prototype)?function(e,...r){let s=a.call(z(this),e,...r);return Re.set(s,e.sort?e.sort():[e]),g(s)}:Me().includes(a)?function(...e){return a.apply(z(this),e),g(xe.get(this))}:function(...e){return g(a.apply(z(this),e))}}function We(a){return typeof a=="function"?Ie(a):(a instanceof IDBTransaction&&Fe(a),qe(a,Ae())?new Proxy(a,ce):a)}function g(a){if(a instanceof IDBRequest)return Ve(a);if(ie.has(a))return ie.get(a);let e=We(a);return e!==a&&(ie.set(a,e),de.set(e,a)),e}var z=a=>de.get(a);function Ce(a,e,{blocked:r,upgrade:s,blocking:t,terminated:o}={}){let i=indexedDB.open(a,e),n=g(i);return s&&i.addEventListener("upgradeneeded",c=>{s(g(i.result),c.oldVersion,c.newVersion,g(i.transaction))}),r&&i.addEventListener("blocked",()=>r()),n.then(c=>{o&&c.addEventListener("close",()=>o()),t&&c.addEventListener("versionchange",()=>t())}).catch(()=>{}),n}function De(a,{blocked:e}={}){let r=indexedDB.deleteDatabase(a);return e&&r.addEventListener("blocked",()=>e()),g(r).then(()=>{})}var Ke=["get","getKey","getAll","getAllKeys","count"],Be=["put","add","delete","clear"],fe=new Map;function ke(a,e){if(!(a instanceof IDBDatabase&&!(e in a)&&typeof e=="string"))return;if(fe.get(e))return fe.get(e);let r=e.replace(/FromIndex$/,""),s=e!==r,t=Be.includes(r);if(!(r in(s?IDBIndex:IDBObjectStore).prototype)||!(t||Ke.includes(r)))return;let o=async function(i,...n){let c=this.transaction(i,t?"readwrite":"readonly"),l=c.store;return s&&(l=l.index(n.shift())),(await Promise.all([l[r](...n),t&&c.done]))[0]};return fe.set(e,o),o}_e(a=>({...a,get:(e,r,s)=>ke(e,r)||a.get(e,r,s),has:(e,r)=>!!ke(e,r)||a.has(e,r)}));try{self["workbox:expiration:6.5.2"]&&_()}catch{}var He="workbox-expiration",A="cache-entries",Te=a=>{let e=new URL(a,location.href);return e.hash="",e.href},Q=class{constructor(e){this._db=null,this._cacheName=e}_upgradeDb(e){let r=e.createObjectStore(A,{keyPath:"id"});r.createIndex("cacheName","cacheName",{unique:!1}),r.createIndex("timestamp","timestamp",{unique:!1})}_upgradeDbAndDeleteOldDbs(e){this._upgradeDb(e),this._cacheName&&De(this._cacheName)}async setTimestamp(e,r){e=Te(e);let s={url:e,timestamp:r,cacheName:this._cacheName,id:this._getId(e)},o=(await this.getDb()).transaction(A,"readwrite",{durability:"relaxed"});await o.store.put(s),await o.done}async getTimestamp(e){let s=await(await this.getDb()).get(A,this._getId(e));return s?.timestamp}async expireEntries(e,r){let s=await this.getDb(),t=await s.transaction(A).store.index("timestamp").openCursor(null,"prev"),o=[],i=0;for(;t;){let c=t.value;c.cacheName===this._cacheName&&(e&&c.timestamp=r?o.push(t.value):i++),t=await t.continue()}let n=[];for(let c of o)await s.delete(A,c.id),n.push(c.url);return n}_getId(e){return this._cacheName+"|"+Te(e)}async getDb(){return this._db||(this._db=await Ce(He,1,{upgrade:this._upgradeDbAndDeleteOldDbs.bind(this)})),this._db}};var x=class{constructor(e,r={}){this._isRunning=!1,this._rerunRequested=!1,this._maxEntries=r.maxEntries,this._maxAgeSeconds=r.maxAgeSeconds,this._matchOptions=r.matchOptions,this._cacheName=e,this._timestampModel=new Q(e)}async expireEntries(){if(this._isRunning){this._rerunRequested=!0;return}this._isRunning=!0;let e=this._maxAgeSeconds?Date.now()-this._maxAgeSeconds*1e3:0,r=await this._timestampModel.expireEntries(e,this._maxEntries),s=await self.caches.open(this._cacheName);for(let t of r)await s.delete(t,this._matchOptions);this._isRunning=!1,this._rerunRequested&&(this._rerunRequested=!1,G(this.expireEntries()))}async updateTimestamp(e){await this._timestampModel.setTimestamp(e,Date.now())}async isURLExpired(e){if(this._maxAgeSeconds){let r=await this._timestampModel.getTimestamp(e),s=Date.now()-this._maxAgeSeconds*1e3;return r!==void 0?r{if(!o)return null;let i=this._isResponseDateFresh(o),n=this._getCacheExpiration(t);G(n.expireEntries());let c=n.updateTimestamp(s.url);if(r)try{r.waitUntil(c)}catch{}return i?o:null},this.cacheDidUpdate=async({cacheName:r,request:s})=>{let t=this._getCacheExpiration(r);await t.updateTimestamp(s.url),await t.expireEntries()},this._config=e,this._maxAgeSeconds=e.maxAgeSeconds,this._cacheExpirations=new Map,e.purgeOnQuotaError&&Ue(()=>this.deleteCacheAndMetadata())}_getCacheExpiration(e){if(e===w.getRuntimeName())throw new d("expire-custom-caches-only");let r=this._cacheExpirations.get(e);return r||(r=new x(e,this._config),this._cacheExpirations.set(e,r)),r}_isResponseDateFresh(e){if(!this._maxAgeSeconds)return!0;let r=this._getDateHeaderTimestamp(e);if(r===null)return!0;let s=Date.now();return r>=s-this._maxAgeSeconds*1e3}_getDateHeaderTimestamp(e){if(!e.headers.has("date"))return null;let r=e.headers.get("date"),t=new Date(r).getTime();return isNaN(t)?null:t}async deleteCacheAndMetadata(){for(let[e,r]of this._cacheExpirations)await self.caches.delete(e),await r.delete();this._cacheExpirations=new Map}};function Ge(a,e){let r=e();return a.waitUntil(r),r}var ze=async a=>{let e=await self.clients.matchAll({type:"window"}),r="generic";/\.(?:png|gif|webm|jpg|webp|jpeg|svg)$/m.test(a)?r="image":/\.json$/m.test(a)&&(r="json");for(let s of e)s.postMessage({type:"FETCH_ERROR",payload:r})},Qe=async()=>{let a=await caches.keys();for(let r of a)await caches.delete(r),await new x(r,{maxEntries:1}).delete();await self.registration.unregister(),(await self.clients.matchAll()).forEach(r=>r.navigate(r.url))};addEventListener("message",a=>{switch(a.data.type){case"RESET":{a.waitUntil(Qe());break}}});te([{revision:"7e949d5952ab64690b1627141158d5b5",url:"js/abilities.js"},{revision:"adcb0a482e48de5b8bbb1dfd81425d64",url:"js/actions.js"},{revision:"61aaeee9b159854c0f032b22105c2545",url:"js/adventure.js"},{revision:"21771bc05dd0464b1aa9e4649c2e16eb",url:"js/adventures.js"},{revision:"0f82e1aeb2232f77e834890e47490d77",url:"js/afflictions.js"},{revision:"10535ee24e4ed8cef328e76305eb92d8",url:"js/ancestries.js"},{revision:"c1f3746659b15a4a24b1172b6a68c17b",url:"js/archetypes.js"},{revision:"52335573df1f6003573a124a86cdac0f",url:"js/backgrounds.js"},{revision:"baf8ba92a2a04ae2bccb904c5ea2c1af",url:"js/bestiary-encounterbuilder.js"},{revision:"edb66ea23ead626b3c309d8bee7a5903",url:"js/bestiary.js"},{revision:"e2f42425112f388bf1a51b5be9cf5ec2",url:"js/blacklist.js"},{revision:"fdb1c3a0212bd25dd422a427812e3da1",url:"js/book.js"},{revision:"9bcc769ac4898ad4ca69defd9d83814c",url:"js/books.js"},{revision:"2bb08db00ab38596c02fd448c47aba99",url:"js/bookslist.js"},{revision:"c3c783549c4f0fe486c6ddb290587c0c",url:"js/bookutils.js"},{revision:"8bb8ed8c10d8d474a44293a4045a1be9",url:"js/browsercheck.js"},{revision:"2ea73d8c42bd54c00bf0f01459a23ad5",url:"js/classes.js"},{revision:"acac9acfa8ac82230603f38ed85b4eb9",url:"js/companionsfamiliars.js"},{revision:"5229964912670180f3a584178628c600",url:"js/conditions.js"},{revision:"19b463d35b8790b19c554f7672ce86a2",url:"js/converter.js"},{revision:"6802d4b9d9fbd8089e573155a7c216ca",url:"js/converterutils.js"},{revision:"16131f19f9027cf586d2bfe7e7277557",url:"js/deepbg.js"},{revision:"96247cd9de97ef3f206e3f8eb8a450d2",url:"js/deities.js"},{revision:"9b955e8e8bd978ae94b5700b99ba04e3",url:"js/encountergen.js"},{revision:"5352d236bca92f5653eeb4759ea91bda",url:"js/feats.js"},{revision:"e2c890f54802f3dc2e29d1ba7f556f88",url:"js/filter-abilities.js"},{revision:"dfd57c8244d6d0409960710f43381209",url:"js/filter-actions.js"},{revision:"2f6936194afe875ca23d2f0d5bd7ef14",url:"js/filter-afflictions.js"},{revision:"3b3d3883e33205b5e8aa27f847a919e7",url:"js/filter-ancestries.js"},{revision:"f38d67c451ece7e5c7d3b5116d1fb111",url:"js/filter-archetypes.js"},{revision:"a8d67d5657213aac8172eab7f556b71f",url:"js/filter-backgrounds.js"},{revision:"19a0afcb0d05ccdf451e8e3dc68b1a65",url:"js/filter-bestiary.js"},{revision:"8cc995f92a4ba3ff6b4f727b45078861",url:"js/filter-classes.js"},{revision:"135d34dbb90f3c5823420ae76d7b2036",url:"js/filter-companionsfamiliars.js"},{revision:"be67b652c59bfca13ae2dfa1a53ff8df",url:"js/filter-conditions.js"},{revision:"a8959376fd665913ee116956bd23b6a7",url:"js/filter-deities.js"},{revision:"8cba93a5fde8a3a57b617e49148336c4",url:"js/filter-feats.js"},{revision:"7c270870b9dfc417373a328b0cfe6403",url:"js/filter-hazards.js"},{revision:"c059a71e3f5c7775a492f757829c74ae",url:"js/filter-items.js"},{revision:"7d409c372a3b5679d336447894dab9cd",url:"js/filter-languages.js"},{revision:"90cf0c8ea7a5490c7176fa32eba9dec2",url:"js/filter-optionalfeatures.js"},{revision:"726b3fac3f53b3745e614d06482f4128",url:"js/filter-organizations.js"},{revision:"ed719db1351f48c6fbe53cb735af4c11",url:"js/filter-places.js"},{revision:"7e5100cb82172b0efe10d58fadc76dee",url:"js/filter-rituals.js"},{revision:"a870df2f14d606023afab8cb621695a4",url:"js/filter-spells.js"},{revision:"1a66c97336877234e1e95cc592934da1",url:"js/filter-tables.js"},{revision:"2947025006376a0c46432272a301b110",url:"js/filter-traits.js"},{revision:"ced5b81eaa6b6968aee339052d498b16",url:"js/filter-variantrules.js"},{revision:"291f440dd1b34f30bce7af7c1bf4d9e0",url:"js/filter-vehicles.js"},{revision:"e9e35f0e24093e87c66111992d21399c",url:"js/filter.js"},{revision:"b918393b488c94f17f3aae526913be18",url:"js/genutils.js"},{revision:"ce4d531479463db31e1671be891bebae",url:"js/gmscreen-counter.js"},{revision:"ea02079b1955c7af12e0418561f6f4cf",url:"js/gmscreen-initiativetracker.js"},{revision:"b27a0e033f574ad2efaad2f03446d967",url:"js/gmscreen-mapper.js"},{revision:"7086e2c4f27fa1b6e8c18de668406a1b",url:"js/gmscreen-moneyconverter.js"},{revision:"807def90ceacbd00b0da2dd6d1ba6795",url:"js/gmscreen-playerinitiativetracker.js"},{revision:"6e353bbf66b1b80f210064e67af4f787",url:"js/gmscreen-timetracker.js"},{revision:"71048ed1b1f007cb77900b36f544a333",url:"js/gmscreen.js"},{revision:"01cf3b549851deb976708b7d7e84102f",url:"js/hazards.js"},{revision:"fe621e48fa923f682d31fbf6677e838a",url:"js/hist.js"},{revision:"9948771a03f77f4a1c8d4ec3ca9084b9",url:"js/initiativetrackerutils.js"},{revision:"fc687277a94712c304678389dd191333",url:"js/inittrackerplayerview.js"},{revision:"4515e147b7b48ef42674b3ce6c430e02",url:"js/items-runebuilder.js"},{revision:"ed47bae3cfe9aa0bff48e73a1b81f22a",url:"js/items.js"},{revision:"5af89260cf41c44ea047fc0275e45f96",url:"js/langdemo.js"},{revision:"453df8120a0f7c7e7597177064dda26e",url:"js/langdemo2.js"},{revision:"3030328d4efb34ea18e73c329c06027e",url:"js/languages.js"},{revision:"324bfb789fb5128414dfec177be287a4",url:"js/list2.js"},{revision:"14884bd5353c583927286dc2dedc1282",url:"js/listpage.js"},{revision:"f8d0b4fcf44162e50d30aceafca7f03e",url:"js/managebrew.js"},{revision:"fa7ea74e1df4e5328ac3486ddceb7cd7",url:"js/multisource.js"},{revision:"450720adfe5544f4dcafa3f3f1f08fe7",url:"js/navigation.js"},{revision:"64428668c97e27a7d2e9298783a34e10",url:"js/omnidexer.js"},{revision:"ebf344ae9608c6c6f3123902f99cbfa9",url:"js/omnisearch.js"},{revision:"0068661f46e7765dcf17a573b2c19572",url:"js/optionalfeatures.js"},{revision:"3f5028596820b68693994c7d87a22339",url:"js/organizations.js"},{revision:"118d5feae94c68c5598634a909292fea",url:"js/parser.js"},{revision:"06b625b60f6911d2b65275448f0fe5ae",url:"js/places.js"},{revision:"140816e674533979f522f02970780444",url:"js/quickreference.js"},{revision:"15a9b390a1b82f52342a011fbe89a3d3",url:"js/render-dice.js"},{revision:"ef7adf7b06925b8143a14b1bafad3251",url:"js/render-map.js"},{revision:"e5bc6a605c872c4dbb6e5683b1a34f0b",url:"js/render.js"},{revision:"bdcd0d0ec164abbd8ae81854951614c3",url:"js/renderdemo.js"},{revision:"25f700f035aa50408d9688f26f9aa46a",url:"js/rituals.js"},{revision:"680994cb961eeaaa22a0a10715a9fcbd",url:"js/rolang.js"},{revision:"175e532e5c51339b99fd25751563c62f",url:"js/scalecreature.js"},{revision:"b823cf704b3f8a1aa3a24f0bf1c6735d",url:"js/search.js"},{revision:"0c333c70f3c4d894b4785840eff3c992",url:"js/seo-loader.js"},{revision:"74a399749b92e9d6c2b2f4e0b89a75ad",url:"js/spells.js"},{revision:"3687490b20e78d4414d388f1f923f6d8",url:"js/styleswitch.js"},{revision:"ba3ec2d14497337b47ccdf9d31738570",url:"js/tablepage.js"},{revision:"8a1ab0bfa508055a179b3fa01aa7fd67",url:"js/tables.js"},{revision:"fa4a762039c737de1422140258c45804",url:"js/textconverter.js"},{revision:"962c9d925c78f63a24020f0f67936ff4",url:"js/tokenizer.js"},{revision:"6f5d4c18beff74ca0fc15a9c69c693c7",url:"js/traits.js"},{revision:"4d0c372242ba98d838d756da18dc9c0d",url:"js/utils-changelog.js"},{revision:"ce389a1ad746ffd019bb30189f5bbf4a",url:"js/utils-licenses.js"},{revision:"2f85195e8ff0dc06089f486f7eea14cb",url:"js/utils-list.js"},{revision:"3e9239b11afe89a33d5eaad63847b5bc",url:"js/utils-p2p.js"},{revision:"aff1d95a1fac35eceea351cdab89770f",url:"js/utils-proporder.js"},{revision:"82adb2c24289fc25abb32163f08056b2",url:"js/utils-ui.js"},{revision:"0cc2099b3625ed6e9c6681481093bfae",url:"js/utils.js"},{revision:"65d4253bd1636a9a26d4d59e9b808720",url:"js/variantrules.js"},{revision:"2838d4562ea735105a75477c12c8a66e",url:"js/vehicles.js"},{revision:"b36e7c94c751656285d8e977cc152b10",url:"lib/ace.js"},{revision:"f841812c750b396f454daee1aa5c4213",url:"lib/bootstrap-select.min.js"},{revision:"cad6941d32006acbc61f7bab05918150",url:"lib/bootstrap.min.js"},{revision:"7ba761cdbfa62922c3b750ac78f866eb",url:"lib/elasticlunr.js"},{revision:"28dd3c8bf663c55bc9aa3d8f92945871",url:"lib/ext-searchbox.js"},{revision:"a8e8282fcf516551d39204e076624b55",url:"lib/jquery-ui-slider-pip.js"},{revision:"e858f6a2725af4140c1c424cf024a808",url:"lib/jquery-ui.js"},{revision:"a6b6350ee94a3ea74595c065cbf58af0",url:"lib/jquery.js"},{revision:"04680cb5d0adf90731746e92ef05a87b",url:"lib/jquery.panzoom.js"},{revision:"862e9e065bcfe3944871cbf66229b3fd",url:"lib/localforage.js"},{revision:"522bc8c23346ddf54992d531acabcb3e",url:"lib/lzma.js"},{revision:"2378a4fa58c2e66792c81641346a4a40",url:"lib/peerjs.js"},{revision:"fcf66afa34d87ce0bd47437c0c31816e",url:"css/bootstrap-select.min.css"},{revision:"1264a8c9b7b1a57b2213a96859326e9f",url:"css/bootstrap.css"},{revision:"de97b7db2b1195829599af9cfeb914c6",url:"css/classes.css"},{revision:"354613438d26956a4530d57badd1711d",url:"css/fontawesome.css"},{revision:"01ef22f83fa30e6bed564ab061a79f54",url:"css/jquery-ui-slider-pips.css"},{revision:"4ef12b83b1ef3ff34d711c6a78421f55",url:"css/jquery-ui.css"},{revision:"a6fc67670251132e3eb14a807aa466de",url:"css/list-page--grouped.css"},{revision:"939fd45be687b473e266348825fb5697",url:"css/search.css"},{revision:"347a099cdbbc96bee297661935b15a85",url:"css/style.css"},{revision:"f8c7f17547945d8f710506491ef99275",url:"homebrew/index.json"},{revision:"028ad889fdef4735c7ce67c6b97811a1",url:"data/abilities.json"},{revision:"10fc8ecdbcbbac89bfc1a324397529e2",url:"data/actions.json"},{revision:"6d9a1634cfdfcaab46fa23df8dd32295",url:"data/adventures.json"},{revision:"0d41660d881838980368629cdeed3ca8",url:"data/afflictions.json"},{revision:"20ae3e2bf8313d65f51e007ed980bb97",url:"data/archetypes.json"},{revision:"a5d127e2658052e99b38e61cb9db857a",url:"data/books.json"},{revision:"1ff8ce038bb418a54cdb58a9693b721e",url:"data/changelog.json"},{revision:"716ec7c14fb7186b2ceb4ae35232bb62",url:"data/companionsfamiliars.json"},{revision:"d6f2779bd4842c1951994d4c73624d0b",url:"data/conditions.json"},{revision:"24e9f3485fedd27aac4f3cdb1b0629a8",url:"data/deities.json"},{revision:"d465ddfac916a507fa4da1fbd248dcdf",url:"data/domains.json"},{revision:"feda92940cff4ae4aaefa9824987ed16",url:"data/fluff-deities.json"},{revision:"bf70ec7a1eea74eaa370a596306b60bf",url:"data/fluff-items.json"},{revision:"309b2f5c47389945fbedb5fba0d4241b",url:"data/fluff-organizations.json"},{revision:"93d8f7fda4f90c3488625e3bc5b2a1be",url:"data/generic.json"},{revision:"317c438dd61985f25c83ed48fa7a5955",url:"data/groups.json"},{revision:"fa70e2e661c18e62507f471a7fd8c281",url:"data/hazards.json"},{revision:"bc16cefe3b1219d0c7960c2f68692106",url:"data/languages.json"},{revision:"60cbd4da822064baa65ee9c9724bcf50",url:"data/licenses.json"},{revision:"5d98fa27005a70b26c77a6bca146a1ff",url:"data/optionalfeatures.json"},{revision:"27881ff3355c10aa0b159cfbe2b8f908",url:"data/organizations.json"},{revision:"678ea78039df5b0a4364890b8b688f8e",url:"data/places.json"},{revision:"083265a45986d44fa401218b072dea2b",url:"data/quickrules.json"},{revision:"51eb8da797e31575fdac2c17f00d6310",url:"data/renderdemo.json"},{revision:"4f9d961a0e36a065799ccec6ef519829",url:"data/rituals.json"},{revision:"8c40cc0410ef298d287aadc13a9eb096",url:"data/skills.json"},{revision:"c17d1ab851263da9c00acfd2ba19c5e7",url:"data/tables.json"},{revision:"be0058be4961ee126251a67956504a96",url:"data/traits.json"},{revision:"3c7d3438c8108400b916b7ea0ddf3e96",url:"data/variantrules.json"},{revision:"2e0eb20c67f887ea48f1566a2b55dc48",url:"data/vehicles.json"},{revision:"6cbb00f88c1e8bf54f7c7ae158e61641",url:"data/ancestries/ancestry-anadi.json"},{revision:"75c253ea8c28a8c7075e5e1c63f0bace",url:"data/ancestries/ancestry-android.json"},{revision:"55a6800aae487c3174b293a928f2b8e9",url:"data/ancestries/ancestry-automaton.json"},{revision:"606f8cc3539e4b7731e4a3f985b35b29",url:"data/ancestries/ancestry-azarketi.json"},{revision:"e6aa55cf858acf62abe40c31cc2448b7",url:"data/ancestries/ancestry-catfolk.json"},{revision:"c732f30a79b40e65a2b9e4db202d0fd8",url:"data/ancestries/ancestry-conrasu.json"},{revision:"7109eafe41ecc48aa9c5d573ad17f8a0",url:"data/ancestries/ancestry-dwarf.json"},{revision:"aa4ee24c3f8a3b7a4f2f303b4f12a74c",url:"data/ancestries/ancestry-elf.json"},{revision:"f961aae4efc4ccaa185a16e18959ad25",url:"data/ancestries/ancestry-fetchling.json"},{revision:"5122026ca318b68685c3b002a2ccfcb1",url:"data/ancestries/ancestry-fleshwarp.json"},{revision:"dbf185b36d87b343e5b1a19c6e9b993e",url:"data/ancestries/ancestry-gnoll.json"},{revision:"a3ab0bf16491c1dfac92ccad06cd2f64",url:"data/ancestries/ancestry-gnome.json"},{revision:"33c5744fd8feae2f27d26b4e7d9a4bb3",url:"data/ancestries/ancestry-goblin.json"},{revision:"15e0e8a145c128b71d7af88966fbec2e",url:"data/ancestries/ancestry-goloma.json"},{revision:"594e7208f9a6d64592b738d7acc61466",url:"data/ancestries/ancestry-grippli.json"},{revision:"22af12fc3ecd5d6c6acb87a7683e8942",url:"data/ancestries/ancestry-halfling.json"},{revision:"b81dd8f4faedfc10baa952852df6c224",url:"data/ancestries/ancestry-hobgoblin.json"},{revision:"2d8614180b48eb86e5312ec8dd9fb5e9",url:"data/ancestries/ancestry-human.json"},{revision:"a23ddb590b228ad691f225c750a912a3",url:"data/ancestries/ancestry-kitsune.json"},{revision:"b5e154121c366e7a5a9d31f6456a408a",url:"data/ancestries/ancestry-kobold.json"},{revision:"ecc80ded71b994ed989bc1412ee34e72",url:"data/ancestries/ancestry-leshy.json"},{revision:"bc7ee2c9a47a28d004f478b041ee5580",url:"data/ancestries/ancestry-lizardfolk.json"},{revision:"3fce3a4ebb204b987da31050ce1f52af",url:"data/ancestries/ancestry-orc.json"},{revision:"58588ebcf6e1ab6c2ed72952799e2480",url:"data/ancestries/ancestry-poppet.json"},{revision:"30c88065602664c1db0cdbaef24984cf",url:"data/ancestries/ancestry-ratfolk.json"},{revision:"209d7e523a93d86f619983c74e6f8193",url:"data/ancestries/ancestry-shisk.json"},{revision:"9589fb657cfb7a2a25d2f01387330760",url:"data/ancestries/ancestry-shoony.json"},{revision:"ce19577be076357992b0c3615b92a77c",url:"data/ancestries/ancestry-sprite.json"},{revision:"9418b3dc6d0004d4c80674d8fbea3c2a",url:"data/ancestries/ancestry-strix.json"},{revision:"836bf660271836f93fb1f47c420ae84e",url:"data/ancestries/ancestry-tengu.json"},{revision:"fb580b2bac849b64ded21975ae8acaf4",url:"data/ancestries/index.json"},{revision:"36a96d49c651a28caded19b8820d4363",url:"data/ancestries/versatile-heritages.json"},{revision:"48a5f08aceaf321c5fb2fa7e0f0a0ae6",url:"data/backgrounds/backgrounds-aoa0.json"},{revision:"18a6fc08bf3cb566a46c6535e9397e14",url:"data/backgrounds/backgrounds-aoa4.json"},{revision:"e078edee16911bf4a3ccc83a7612d58a",url:"data/backgrounds/backgrounds-aoa6.json"},{revision:"e7ae09fb69ba497618aff151b7f8e491",url:"data/backgrounds/backgrounds-aoe0.json"},{revision:"760e7f38b5727a3c4653ed20f5cd6d66",url:"data/backgrounds/backgrounds-aoe4.json"},{revision:"a6de8ebeba03cfd4c208bc9ea276b7da",url:"data/backgrounds/backgrounds-apg.json"},{revision:"ed95dfaff9809b458f1291453823f43c",url:"data/backgrounds/backgrounds-av0.json"},{revision:"31b8e7593bac4fc20ac9f2ddb44b972f",url:"data/backgrounds/backgrounds-crb.json"},{revision:"55b2b3708dbb199a5024aadd48e95ac4",url:"data/backgrounds/backgrounds-ec0.json"},{revision:"8b1a3269a92a9ab29c0b2f5caabce7dd",url:"data/backgrounds/backgrounds-ec3.json"},{revision:"fd1aadd0f3706f228562645c33efa9c2",url:"data/backgrounds/backgrounds-frp0.json"},{revision:"fb547891fe70a7bcc90d52caaca7d625",url:"data/backgrounds/backgrounds-g&g.json"},{revision:"1b6367a8644861eef6a518f8db93aca9",url:"data/backgrounds/backgrounds-lopsg.json"},{revision:"31d2ad0e100c0ec5553da4929de67c6f",url:"data/backgrounds/backgrounds-lowg.json"},{revision:"806220dea90d2b4e023e1e4964f335df",url:"data/backgrounds/backgrounds-som.json"},{revision:"de810bc4c27dd0a67496b2a7fddc0d1f",url:"data/backgrounds/backgrounds-sot0.json"},{revision:"5c92d8542c71097c784cab0b30d3d7de",url:"data/backgrounds/fluff-backgrounds.json"},{revision:"a2f92b44517232ad4ed1a4e9482a5b83",url:"data/backgrounds/index.json"},{revision:"45696a5250965916e25d4c5ef3785386",url:"data/bestiary/creatures-aoa1.json"},{revision:"396f468df33d2104ed372c1cf06d7bd7",url:"data/bestiary/creatures-aoa2.json"},{revision:"ff35a0d9b8d9b968a8d23218634208a3",url:"data/bestiary/creatures-aoa3.json"},{revision:"a6bfb49e6534019985a0f118446f1cd8",url:"data/bestiary/creatures-aoa4.json"},{revision:"1de61bf3e9119244896cc482b633301f",url:"data/bestiary/creatures-aoa5.json"},{revision:"98821e2bff418a54f09fdf4a8c5cad8c",url:"data/bestiary/creatures-aoa6.json"},{revision:"66b474ce4aad8df29be15726c0dcac6e",url:"data/bestiary/creatures-aoe1.json"},{revision:"e704e57c5eee76ebe77e4fb1daba39dd",url:"data/bestiary/creatures-aoe2.json"},{revision:"2d54a6288370509621cbd7ed7bb317a4",url:"data/bestiary/creatures-aoe3.json"},{revision:"662a88afad7d3661315f4ceae0287894",url:"data/bestiary/creatures-aoe4.json"},{revision:"947848d3f2b45da7daa4657d62b4b065",url:"data/bestiary/creatures-aoe5.json"},{revision:"1d7124d6ff3d0ea288dbe26027b3602a",url:"data/bestiary/creatures-aoe6.json"},{revision:"03a498de2c86ffb106918c4bf4638b35",url:"data/bestiary/creatures-av1.json"},{revision:"771dadee95cfdf1212032c46a8378094",url:"data/bestiary/creatures-av2.json"},{revision:"7c6cbb4582f7cb8b922bb8ffce208fc5",url:"data/bestiary/creatures-av3.json"},{revision:"4bf1da9d3f5722ecac2cfc21d0b5a5b9",url:"data/bestiary/creatures-bst.json"},{revision:"85a699381c58fd494ccb60fa3b5e2fa8",url:"data/bestiary/creatures-bst2.json"},{revision:"ffd9efedb96264ba019d84d1e59e071a",url:"data/bestiary/creatures-bst3.json"},{revision:"8a75db30b88f5d42eb3b4a7bc4c2ce9e",url:"data/bestiary/creatures-crb.json"},{revision:"e8567f6995ce72edd80bc2e8dc2d26aa",url:"data/bestiary/creatures-ec1.json"},{revision:"dfcc82591b99fdf44e449a97498603a6",url:"data/bestiary/creatures-ec2.json"},{revision:"156818b986816daf28d892e1566c617e",url:"data/bestiary/creatures-ec3.json"},{revision:"c7c320871cb598b5adebd52d1bc2af43",url:"data/bestiary/creatures-ec4.json"},{revision:"7cb02498e6b73a225b7fa2ce3eede18f",url:"data/bestiary/creatures-ec5.json"},{revision:"75749c036ef9533d1c56ad89ed84c7d0",url:"data/bestiary/creatures-ec6.json"},{revision:"940d03d3f52933af70f9b9863e39671a",url:"data/bestiary/creatures-fop.json"},{revision:"5972a9190e60a838a0cc7da25670ef74",url:"data/bestiary/creatures-frp1.json"},{revision:"2a62021c3781ca257d8f5db744845630",url:"data/bestiary/creatures-frp2.json"},{revision:"3a3cd65e5eac598cbaf12b9145dd8106",url:"data/bestiary/creatures-frp3.json"},{revision:"17a0c125bf09262050a73b51cb4d0b7a",url:"data/bestiary/creatures-gmg.json"},{revision:"8a1096a9dd08f96871ffd1b32103bcba",url:"data/bestiary/creatures-lome.json"},{revision:"c3e6eddbb8b2bd382f34fe5ef9573de1",url:"data/bestiary/creatures-ltiba.json"},{revision:"242db92a3cd2ac48f101ba3e24e2140a",url:"data/bestiary/creatures-sli.json"},{revision:"ce163c930dc59f0bf9aaae09f8f92546",url:"data/bestiary/creatures-sot1.json"},{revision:"e4460b7ba43e505c31dc31063bb42eb5",url:"data/bestiary/creatures-sot2.json"},{revision:"134c35657a94877530dfe19aa873b036",url:"data/bestiary/creatures-tio.json"},{revision:"caaf16707e3febba9ac5420f425f79cd",url:"data/bestiary/fluff-creatures-av3.json"},{revision:"c77d5dd026d9034e876d232ae1bb204e",url:"data/bestiary/fluff-creatures-bst.json"},{revision:"c7b9ef26335299dc6f7dff2ce7df4599",url:"data/bestiary/fluff-creatures-bst2.json"},{revision:"e0b1498dad9d398c42676baa017710e0",url:"data/bestiary/fluff-creatures-bst3.json"},{revision:"c152becb0a3a50acc61ad3c62285a4e8",url:"data/bestiary/fluff-creatures-gmg.json"},{revision:"f0b6aa97a48a31b2bd5950ff175a6f69",url:"data/bestiary/fluff-creatures-lome.json"},{revision:"7bf32f0c2d3988d2dec16d3adb6a98eb",url:"data/bestiary/fluff-creatures-sot1.json"},{revision:"85892ec3457a380f1b920efd7bd54fc3",url:"data/bestiary/fluff-index.json"},{revision:"1ba3a93d9770376187a7d248e3cbbb74",url:"data/bestiary/index.json"},{revision:"c7f299a8079ac81906f3a7956317ae6e",url:"data/book/book-crb.json"},{revision:"4509b9d3735db93dacca5a4b81a7e579",url:"data/book/book-gmg.json"},{revision:"71d482f2e999e734734a6c5ba18a5ad3",url:"data/book/book-lowg.json"},{revision:"3d1a97431a05bf51a9d1b26273a1ca39",url:"data/book/book-som.json"},{revision:"afcc7ee26993b519eb7bc1c87b98fe32",url:"data/class/class-alchemist.json"},{revision:"6ac8359cdd1b9254c4813b0d10f6f0de",url:"data/class/class-barbarian.json"},{revision:"c09c04e5c67f9776891b896688ab2899",url:"data/class/class-bard.json"},{revision:"1a6b057e3f3fd34e83a4d322cedad591",url:"data/class/class-champion.json"},{revision:"d211c0233ce44d727f7aa4dc028409e0",url:"data/class/class-cleric.json"},{revision:"808ede376b0446671ff2085940771068",url:"data/class/class-druid.json"},{revision:"e8e6181d11ffb9a16b264f6351f08f13",url:"data/class/class-fighter.json"},{revision:"c179d68e41d1aa2004aa7b2a2f460a4e",url:"data/class/class-gunslinger.json"},{revision:"7f011cf0941eeae16a818024cef1050b",url:"data/class/class-inventor.json"},{revision:"bb32bf415e250953797da10fa74ec804",url:"data/class/class-investigator.json"},{revision:"068cdf9bd235418bb89c461d4371175d",url:"data/class/class-magus.json"},{revision:"4f9083f694872857da95d961c89ea460",url:"data/class/class-monk.json"},{revision:"e80fba83b1daf23c6a6c6950c37e49e9",url:"data/class/class-oracle.json"},{revision:"c4783027db6d8f20d8e21d3a65ddde2a",url:"data/class/class-ranger.json"},{revision:"09c62ea26a6b7f5e4b02cef18d689631",url:"data/class/class-rogue.json"},{revision:"d3d8c246444c8edfbd9a833aec2487a7",url:"data/class/class-sorcerer.json"},{revision:"9b93a2778a02d6619c5ff65dd0993c62",url:"data/class/class-summoner.json"},{revision:"5412eabc7ef4d0ac03efae79ace1881c",url:"data/class/class-swashbuckler.json"},{revision:"c20a713e4cfdf262193c4efcf6f007de",url:"data/class/class-witch.json"},{revision:"170aa168ae264e8ea58afbf2a92f6b13",url:"data/class/class-wizard.json"},{revision:"394724d537ab681ff5d7725e7672bfaf",url:"data/class/index.json"},{revision:"564b1e5e95b98f88beb4780726c6befc",url:"data/feats/feats-aoa3.json"},{revision:"ab80eb4fecffa4e207dc960d924c97fa",url:"data/feats/feats-aoa4.json"},{revision:"46f9c12cd5f088a0b58e5316ce39c7b0",url:"data/feats/feats-aoa5.json"},{revision:"c00eec5f10785095d63c1019c5ac7a9c",url:"data/feats/feats-aoa6.json"},{revision:"f915c88fcdc6c7090f2ef67b6b1a5030",url:"data/feats/feats-aoe1.json"},{revision:"8c4c47f150adc7bd2ac7cc264d1738c5",url:"data/feats/feats-aoe2.json"},{revision:"1b6c5ab64c9997e617e9224682a8d82e",url:"data/feats/feats-aoe3.json"},{revision:"e9d3d73385dd29f8f40615d2ad54644d",url:"data/feats/feats-apg.json"},{revision:"2d22f151d21d8b27790707d6247b56d2",url:"data/feats/feats-av1.json"},{revision:"e4fb1e1fc8d52cbbee3ad2073ea6423b",url:"data/feats/feats-av2.json"},{revision:"d5588bc945dd7308def53e556b6912eb",url:"data/feats/feats-av3.json"},{revision:"222ed9ad81877f9439507f0fa7293f49",url:"data/feats/feats-crb.json"},{revision:"f7195ecc4e9a5be7554989a73e9d0fc5",url:"data/feats/feats-ec1.json"},{revision:"0a024a20a78b5dbda524c17a0916cff4",url:"data/feats/feats-ec2.json"},{revision:"330dd2395fcd3a3e1d12eae48895eb8c",url:"data/feats/feats-ec3.json"},{revision:"7f31c727001efdf2ad8cdabe932c008f",url:"data/feats/feats-ec6.json"},{revision:"7cb4e24e5153cead893bc588640e7075",url:"data/feats/feats-fop.json"},{revision:"b125f2f3aee4058f88b1723cd7e92d1e",url:"data/feats/feats-frp1.json"},{revision:"f92d1ba95a4688a124f0ab2d9d7e1d72",url:"data/feats/feats-frp2.json"},{revision:"62d76771f8a07c2f35dfe8d177355a8b",url:"data/feats/feats-frp3.json"},{revision:"3f5223626620b0c587849212946c8db5",url:"data/feats/feats-g&g.json"},{revision:"90aa7169925660c88133037ca2862b16",url:"data/feats/feats-gmg.json"},{revision:"12d7a4452d76f0760c73c7a51932a5db",url:"data/feats/feats-loag.json"},{revision:"4d84e856fc4f49eb69294470484823bf",url:"data/feats/feats-locg.json"},{revision:"27cb93f5b8a02dbe0efaac3bfda74bff",url:"data/feats/feats-logm.json"},{revision:"8f1c4e73c86335296e1e0f179208b179",url:"data/feats/feats-lol.json"},{revision:"945b6f9b5ebdd91fedff6e377126bf80",url:"data/feats/feats-lome.json"},{revision:"9f915de6e93f9f5f798c88ade23e9599",url:"data/feats/feats-lopsg.json"},{revision:"85fe1b667c8e2efcd360118b673644a6",url:"data/feats/feats-lotgb.json"},{revision:"bc55a43bfe3fedd996f826294f427ba4",url:"data/feats/feats-lowg.json"},{revision:"8120b6dfff1a035457d00e443b026a5d",url:"data/feats/feats-ltiba.json"},{revision:"76395bbf6fad7760da8e9a9771a94b9d",url:"data/feats/feats-sli.json"},{revision:"1428f0c5d650664366d5c2cabb5436fb",url:"data/feats/feats-som.json"},{revision:"197c90beb23ac311ac2c58b343492d0a",url:"data/feats/feats-sot2.json"},{revision:"46bc1cbabc1cca1d6500e08f2c41dd49",url:"data/feats/feats-sot3.json"},{revision:"1fe0b2a76d8ca518409e4e0869072729",url:"data/feats/index.json"},{revision:"07b4a3fb8b7bf167a3500545ac1abd8d",url:"data/generated/bookref-gmscreen-index.json"},{revision:"11b8f0eaef6489f894d1c3499071ae66",url:"data/generated/bookref-gmscreen.json"},{revision:"7de54024d2dffdc0fde676cf5b491abb",url:"data/generated/bookref-quick.json"},{revision:"688a74016f76e2edf07802a3f0ba58f4",url:"data/generated/gendata-nav-adventure-book-index.json"},{revision:"7a44420506c77f743fc3d220435f9dea",url:"data/items/baseitems.json"},{revision:"ca81ca4408f056ea5249ed5b7895ff44",url:"data/items/fluff-index.json"},{revision:"1fc0fcdbb0518e8fd10d16c8c67efd6f",url:"data/items/fluff-items-crb.json"},{revision:"6fae85f819f6d19210a0c8eb3116dbcf",url:"data/items/index.json"},{revision:"57763bc7a10903fb428bb3949edfaca0",url:"data/items/items-aoa1.json"},{revision:"05bf8b6f43d4e31f0ada817be2d6a0cc",url:"data/items/items-aoa2.json"},{revision:"1cc5fb1f62519f8d8db09dea691b2ec0",url:"data/items/items-aoa3.json"},{revision:"cdd38f85a901047fcd9cc23d03f4f34c",url:"data/items/items-aoa4.json"},{revision:"6d5c3365305a173f69c7db09f041172a",url:"data/items/items-aoa5.json"},{revision:"d27d380e11447975d2543436b8ccaa14",url:"data/items/items-aoa6.json"},{revision:"14d12700308b3f144b68c47b98448e5e",url:"data/items/items-aoe1.json"},{revision:"2a889adb54ff184e69c7275b421d410e",url:"data/items/items-aoe2.json"},{revision:"ea4e78794024814a38cca52e0689204f",url:"data/items/items-aoe3.json"},{revision:"ea1668a62ce655dd2590c27587fb0c75",url:"data/items/items-aoe4.json"},{revision:"03bbf04acc19d18f42382b497dfe1890",url:"data/items/items-aoe5.json"},{revision:"412a1be30bb598fb237e1aa52ea03b64",url:"data/items/items-aoe6.json"},{revision:"cf995d8f75a4456d3a9ebe43108ed637",url:"data/items/items-apg.json"},{revision:"654a810f955e18896d5dd4601a8a9540",url:"data/items/items-av1.json"},{revision:"0b61bf4d8b0817ef924449f6813567af",url:"data/items/items-av2.json"},{revision:"bbbe7259fe67a403f73eed44715a0e9f",url:"data/items/items-av3.json"},{revision:"b4c67953df9c37934bab6a2953c39404",url:"data/items/items-crb.json"},{revision:"7d9c86eceb8050ead124fb9745c8d627",url:"data/items/items-ec1.json"},{revision:"1181b982bbb95bc52ac31f65a06cf38d",url:"data/items/items-ec2.json"},{revision:"521ac165c8df3174b1f7e7b40efc9432",url:"data/items/items-ec3.json"},{revision:"086cb09f7ea6a7154c8f0dcc3486b9af",url:"data/items/items-ec4.json"},{revision:"02d69315011f660ef6bc36df826eaf0f",url:"data/items/items-ec5.json"},{revision:"6e0f7b404f772bf510d07628081585f2",url:"data/items/items-ec6.json"},{revision:"8fcdec71f529a10ecb108d6bdc6bdc75",url:"data/items/items-fop.json"},{revision:"30ddd5d4d13dd99779137aa718b3e2ed",url:"data/items/items-frp1.json"},{revision:"e4f341ac6eafbe88c5629bac89017287",url:"data/items/items-frp2.json"},{revision:"0b4acc987901b5fcf6c6a832b29a6828",url:"data/items/items-g&g.json"},{revision:"1a565f3c3665edab5d678052947f7e2f",url:"data/items/items-gmg.json"},{revision:"39b40da0da37b66d85b1649ca27ef231",url:"data/items/items-loag.json"},{revision:"681febf3b660f21c2b030351bd829126",url:"data/items/items-locg.json"},{revision:"09b930cb5712a3e07b8d6d9611f3bb1a",url:"data/items/items-logm.json"},{revision:"fe93de984edc8e67136d34cf542d741b",url:"data/items/items-lol.json"},{revision:"20a73cf06ea2340e652f72ecd739bbe6",url:"data/items/items-lome.json"},{revision:"2cb87a1d87ad3f94512ee14787be18fb",url:"data/items/items-lopsg.json"},{revision:"40eb51a59357640f918fc9fc34c27059",url:"data/items/items-lotgb.json"},{revision:"5fc458aa024fff22e51b79635dc419f3",url:"data/items/items-lowg.json"},{revision:"cf35fb704e6e806f6355deed48fe6b1d",url:"data/items/items-ltiba.json"},{revision:"f4ab1784a0f20554a5d47ed978bf6430",url:"data/items/items-sli.json"},{revision:"c3c38b0efff6caaef9d6da6af5210e9d",url:"data/items/items-som.json"},{revision:"4376aa1db6345f1d5a28b2e59d44f7b3",url:"data/items/items-sot1.json"},{revision:"7efede606cf3f03cc5d3236d79dc81a8",url:"data/items/items-sot2.json"},{revision:"b2aba46af0fcc3d399d6f7214de7aee9",url:"data/items/items-sot3.json"},{revision:"94431013053bbed5cedcc37a7f858e94",url:"data/items/items-tio.json"},{revision:"8a80554c91d9fca8acb82f023de02f11",url:"data/spells/fluff-index.json"},{revision:"b406db2efe683c1dc84157222dff6880",url:"data/spells/index.json"},{revision:"7bede3adc55d0bf7800575d0bae7d385",url:"data/spells/spells-aoa3.json"},{revision:"70c7e3cc8eeaf8800d50e347e0150596",url:"data/spells/spells-aoa4.json"},{revision:"ce0062cd7c3bb2d5e6760b48b95c8011",url:"data/spells/spells-aoa6.json"},{revision:"3ba8e77e7abbfcd7caf4df300248c140",url:"data/spells/spells-aoe2.json"},{revision:"26db22cc5383d0ad8f945d76fe76ee8c",url:"data/spells/spells-aoe4.json"},{revision:"1b0f8d4578f939e5b7952212a69d49a4",url:"data/spells/spells-aoe5.json"},{revision:"dc87d7a7c1a1524e0edf6c79ab1f314b",url:"data/spells/spells-aoe6.json"},{revision:"f084187ffa8223f0bedbd678adb67330",url:"data/spells/spells-apg.json"},{revision:"0b3fc32dbe5715e7d597e905a8ba3237",url:"data/spells/spells-av1.json"},{revision:"511ab491bd01d1fc13438054a051bd44",url:"data/spells/spells-av2.json"},{revision:"3efa28cf371374af7fa4c9f53ac82da7",url:"data/spells/spells-av3.json"},{revision:"ad1d87d884ad2bb413e9b2d3402c0b36",url:"data/spells/spells-crb.json"},{revision:"77a5573db90ff44e49d0b3582d04a34f",url:"data/spells/spells-ec1.json"},{revision:"e68aca95a6ba2b183a5c8932f383a2b9",url:"data/spells/spells-ec2.json"},{revision:"4363b944273c6b61f2c71a9896910de7",url:"data/spells/spells-ec3.json"},{revision:"0a033714de3e3946bab0ccf207612757",url:"data/spells/spells-ec4.json"},{revision:"bd28ffe624cf2952f6d0087b959c2ae9",url:"data/spells/spells-ec5.json"},{revision:"2054324fdf57d1e24dacdc961eb0a222",url:"data/spells/spells-ec6.json"},{revision:"5f24d32570c27a7675546e95abbcc82a",url:"data/spells/spells-frp1.json"},{revision:"785fa24e272f133c25704d13796aa578",url:"data/spells/spells-frp3.json"},{revision:"9c10f0330df8fa74e706e60ecc5179cc",url:"data/spells/spells-locg.json"},{revision:"4970b34824027f950ae46c675efdddbb",url:"data/spells/spells-logm.json"},{revision:"42eee42bcbb8f03db24e9050601ff993",url:"data/spells/spells-lol.json"},{revision:"086c1aa5a4f00139224834f7b796c528",url:"data/spells/spells-lopsg.json"},{revision:"9abeb5242112a6257766c5f6bb7554a2",url:"data/spells/spells-lowg.json"},{revision:"9a46a8eadb78bb72ec1204da15d383d9",url:"data/spells/spells-som.json"},{revision:"8ac48f4118ae012d2727e6967b07ab6b",url:"data/spells/spells-sot1.json"},{revision:"d7114a5327af86e19c1462c5739c20b7",url:"data/spells/spells-sot3.json"},{revision:"4d30098a93e1b3de38ea661b3aed95a5",url:"abilities.html"},{revision:"45e674213259f82f4d1724e658550935",url:"actions.html"},{revision:"1df5cfea4d0143108be6df12c603d178",url:"adventure.html"},{revision:"064f1aab3a0b194cc930813db2f78ed8",url:"adventures.html"},{revision:"719f1b15116292a6f76f5caca717943a",url:"afflictions.html"},{revision:"d685f1f9de61393bf087e93071829060",url:"ancestries.html"},{revision:"e13f5275f7140000fb3847042f3e25bf",url:"archetypes.html"},{revision:"c57039ea5c6c8cc8fd370d95dc6fd2ef",url:"backgrounds.html"},{revision:"df834b8d68a5ff74e7585f6ff6740e1a",url:"bestiary.html"},{revision:"2ca8c1914c92e7489cc1dfbe970122c6",url:"blacklist.html"},{revision:"128e03c7caa7ad0de6c01965fbcbc53b",url:"book.html"},{revision:"8c93c39cde65be9d90321054079b8b90",url:"books.html"},{revision:"9dd45817118ec898363cb4f09f52d380",url:"changelog.html"},{revision:"d573495c5d64cd000a6e98fefc99a4a2",url:"classes.html"},{revision:"f58637255c12732a1eaeb091f010bb07",url:"companionsfamiliars.html"},{revision:"edc076f47e0bb5deb9c4419da456fe3e",url:"conditions.html"},{revision:"0f97080fcd19913b2b7681844c515f41",url:"deities.html"},{revision:"f433280b3ad9d97acbc0c290b9b60682",url:"donate.html"},{revision:"4b27fc77a19bf4e93fd83661dd7cb7bc",url:"feats.html"},{revision:"39f97b348d41cf8a97c197ba602965d2",url:"gmscreen.html"},{revision:"ff32aba6400842a60a712afef0a63b9d",url:"hazards.html"},{revision:"b7b0a44ef3361b7f62f66a731b794078",url:"index.html"},{revision:"298e11b359967b37d2c23d8b0942781d",url:"inittrackerplayerview.html"},{revision:"7e699ee518fb89661e5ff6cf6f42dcd2",url:"items.html"},{revision:"52e63b01c5697f5f68003ce4285b0553",url:"langdemo.html"},{revision:"14ee89bf592cd0e18349c9469d48db78",url:"languages.html"},{revision:"6c5eadde0c4fc3149a71e5e6a84921df",url:"licenses.html"},{revision:"fb282ffd69f619cc583423403e82e4ae",url:"managebrew.html"},{revision:"3ac875c1710306dce6431ce2549e7cae",url:"optionalfeatures.html"},{revision:"fc02ecf1afb90e4e0c52d4c32817ea46",url:"organizations.html"},{revision:"14cdd2d2a26bd643781d17f14217221d",url:"Pf2eTools.html"},{revision:"5ff8a7cdef3e0381ddc4518fdc17d8d8",url:"places.html"},{revision:"345fa1f7f5471ab11192237c03f2c86e",url:"privacy-policy.html"},{revision:"4d1f7f70f7bdb4e7cb8ea28949927fd9",url:"quickreference.html"},{revision:"6a155ecb78441a94b117e52df26b134c",url:"renderdemo.html"},{revision:"735062d33d767fb4c2ce52917533ca2b",url:"rituals.html"},{revision:"d19c1e7c1199a72d71daac27cd7f3e14",url:"search.html"},{revision:"0dc24ba6fb44e77afe4ef248c913d107",url:"spells.html"},{revision:"6c24153f82a044dc047001f6805254f5",url:"tables.html"},{revision:"af5f4672ec879916d5a61ba628a8c29f",url:"textconverter.html"},{revision:"728f8a10bb3e8afe858465f1cadf04ae",url:"traits.html"},{revision:"abe874e1bebc1df6e4adaa724ae19eba",url:"variantrules.html"},{revision:"1453f603d4bf89028def5efc6f96ebfb",url:"vehicles.html"},{revision:"07c706820372a879332b65496ee1692f",url:"search/index-alt-spell.json"},{revision:"a2c797a51147f62dc30cc0c616e035c2",url:"search/index-item.json"},{revision:"dbcd82efc704d55e31477bb9536b0b38",url:"search/index.json"},{revision:"a0c289acd45fd1a51591d5a907f0a267",url:"search/traits.json"},{revision:"4050573dedbe1cc64b4fdcad04351daa",url:"manifest.webmanifest"},{revision:"448c34a56d699c29117adc64c43affeb",url:"fonts/glyphicons-halflings-regular.woff2"},{revision:"e18bbf611f2a2e43afc071aa2f4e1512",url:"fonts/glyphicons-halflings-regular.ttf"},{revision:"d09e5b926b6fdb2a506e5909de33de23",url:"fonts/good-pro-400.ttf"},{revision:"9f6134a15b7dfc5a119bc65376dbe269",url:"fonts/good-pro-400.woff"},{revision:"ff1abe8ed0ef061106b68d844c8dab4d",url:"fonts/good-pro-400.woff2"},{revision:"361e7ff40e96db6bbbfe90889d95afdc",url:"fonts/good-pro-700.ttf"},{revision:"1997214212f12c3e4a68f5195e68cb5d",url:"fonts/good-pro-700.woff"},{revision:"0fea4b7d69bbcb12a33f0922262c6421",url:"fonts/good-pro-700.woff2"},{revision:"a11892b605845bf613d1a8bb06c00b04",url:"fonts/good-pro-condensed-400.ttf"},{revision:"6421dccde27db5dba3399149e69f71d3",url:"fonts/good-pro-condensed-400.woff"},{revision:"ea4d723a4099259aba94b84e333034f8",url:"fonts/good-pro-condensed-700.ttf"},{revision:"fc0455882bdfe0c48aa7186da15c85f3",url:"fonts/good-pro-condensed-700.woff"},{revision:"46aa1be77a9022bb5ee43a8513fb3057",url:"fonts/good-pro-condensed-700.woff2"},{revision:"51853144d912fd5553eeb7d39c3b53bf",url:"fonts/good-pro-condensed-italic-400.ttf"},{revision:"41d2455a8dea4aac5165b82743681efa",url:"fonts/good-pro-condensed-italic-400.woff"},{revision:"5a10bdbc21e43df2acd07e2487820d60",url:"fonts/good-pro-condensed-italic-700.ttf"},{revision:"556dd5c152d5b0739a5121f37a2baff4",url:"fonts/good-pro-condensed-italic-700.woff"},{revision:"1bc04907c2bf079908e90e0313239bcd",url:"fonts/good-pro-condensed-italic-700.woff2"},{revision:"ff1eae181861f44db0ab1431879a49f9",url:"fonts/good-pro-italic-400.ttf"},{revision:"a9ed15953b80fedb8137f8f25839fb96",url:"fonts/good-pro-italic-400.woff"},{revision:"1b23ad64d84c8cee844cf53e466e6eed",url:"fonts/good-pro-italic-400.woff2"},{revision:"55ee8f359a01d66ab3b8b22d02d9ed55",url:"fonts/good-pro-italic-700.ttf"},{revision:"6ee51b012748f002f234b578ab1268b7",url:"fonts/good-pro-italic-700.woff"},{revision:"7489b33e26f603728567f2ccee7e508e",url:"fonts/good-pro-italic-700.woff2"},{revision:"2640ba59a59d7dfbb88d0d477f7bdb0a",url:"fonts/Pathfinder2eActions.ttf"},{revision:"c153508add58cc58db1ef0be5c9f8adf",url:"fonts/Gin-Regular.ttf"},{revision:"b0bf2c218bf460993111010eb83a0fa8",url:"fonts/SabonLTStd-Bold.ttf"},{revision:"1b97aaf6b6e56d43d0b9e370c4f50876",url:"fonts/SabonLTStd-BoldItalic.ttf"},{revision:"d69ef52beb7ca47462a0f89ff028a2f3",url:"fonts/SabonLTStd-Italic.ttf"},{revision:"d6e119cff761a4bee40d2f640db5af1e",url:"fonts/SabonLTStd-Roman.ttf"},{revision:"778896312671ade54c606724f278bf36",url:"fonts/AlbertusMT.ttf"},{revision:"918ab3311bf65e4da491aaba2f2ca5bc",url:"fonts/Basing.ttf"},{revision:"2f95108599bc770e0fc66a063b0f5906",url:"fonts/Taroca.ttf"},{revision:"c18c5f06b696ed2d4c1e5eda8cc204ca",url:"img/gmscreen/moon.webp"},{revision:"183504177c2f7e2ccc6b88461af6000d",url:"img/letter-dark.webp"},{revision:"43877a1bc57da60ca9a9aafeac9d8e2f",url:"img/letter.webp"},{revision:"4279516591cee28c697c6d2f84d84da1",url:"img/patreon.webp"},{revision:"12f8d0eeba4504e025f30e4bf6326cd6",url:"fonts/fa-light-300.eot"},{revision:"da5526bf0f7fae09080945b15da77066",url:"fonts/fa-light-300.ttf"},{revision:"83c52b7102d3b3586554677f947792e7",url:"fonts/fa-light-300.woff"},{revision:"1d4e499e402761b86c26b5fa3ad51c30",url:"fonts/fa-light-300.woff2"},{revision:"3cce3b697f11b5a95f19194484d1bb96",url:"sw-injector.js"}]);var le=class extends u{cacheRoutesAbortController=null;constructor(){super({cacheName:"runtime-revision"}),this.activate=this.activate.bind(this),this.cacheRoutes=this.cacheRoutes.bind(this),addEventListener("message",e=>{switch(e.data.type){case"CACHE_ROUTES":{this.cacheRoutesAbortController=new AbortController,e.waitUntil(this.cacheRoutes(e.data,this.cacheRoutesAbortController.signal));break}case"CANCEL_CACHE_ROUTES":{this.cacheRoutesAbortController?.abort(),this.cacheRoutesAbortController=null;break}}})}async _handle(e,r){let s=e.url,t=R({url:s,revision:J.get(s)}).cacheKey,o=await r.cacheMatch(t);if(o!==void 0)return o;try{let i=await r.fetch(e);return r.cachePut(t,i.clone()),i}catch{return ze(s),new Response}}activate(e){return Ge(e,async()=>{let r=await caches.open(this.cacheName),s=(await r.keys()).map(o=>o.url),t=new Set(Array.from(J).map(([o,i])=>R({url:o,revision:i}).cacheKey));await Promise.allSettled(s.map(async o=>{t.has(o)||await r.delete(o)}))})}async cacheRoutes(e,r){let s=await caches.open(this.cacheName),t=new Set((await s.keys()).map(f=>f.url)),o=Array.from(J).map(([f,E])=>R({url:f,revision:E}).cacheKey),i=e.payload.routeRegex,n=o.filter(f=>!t.has(f)&&i.test(f)),c=n.length,l=0,m=async()=>{let f=await self.clients.matchAll({type:"window"});for(let E of f)E.postMessage({type:"CACHE_ROUTES_PROGRESS",payload:{fetched:l,fetchTotal:c}})};if(await m(),c===0)return;let b=5,j=async()=>{for(;;){let f=n.pop();if(f===void 0||r.aborted)return;let E=f.replace(/\?__WB_REVISION__=\w+$/m,""),$e=await fetch(E);await s.put(f,$e),l++,m()}},C=[];for(let f=0;ff.status==="rejected");if(ue.length>0){let f=await self.clients.matchAll({type:"window"});for(let E of f)E.postMessage({type:"CACHE_ROUTES_ERROR",payload:{errors:ue}})}}},J=new Map([["data/adventure/adventure-id.json","1c29701a3abdebba387f6b92237fcff5"],["img/covers/blank.webp","9b2781e05d13f720e91891cbb929fe20"],["img/covers/CRB-100.webp","7650bb7365cbf84b20ee97c6b7c0a189"],["img/covers/CRB-25.webp","716475fd096ad77eee0ed1b47c3a1431"],["img/covers/CRB-33.webp","d7ef321523e2f1321fe8a5324ed4643c"],["img/covers/CRB.webp","bfc8f8b52b8faeee86027947182edcf8"],["img/covers/GMG-100.webp","75c327c893ef10c786f963236b4fe9d0"],["img/covers/GMG-25.webp","a67231c72c04e4a4c018bbd33110198b"],["img/covers/GMG-33.webp","6b05c52c0af37ef6ae43cf6f5d719a9c"],["img/covers/GMG.webp","d3610c80b6d79213177340f0c5f8db06"],["img/covers/LOWG-100.webp","266ffa70d70230e300ed454c612e59cf"],["img/covers/LOWG-25.webp","61855c40cd160dcf3bc8c39dc10844c3"],["img/covers/LOWG-33.webp","138e39219a0a4da133f3519125e9bc3f"],["img/covers/LOWG.webp","1adccec87cc1324fecd5e34ebeef69d4"],["img/covers/SoM-100.webp","ed511ca0c38bbe1644ec1b8729e7fb9b"],["img/covers/SoM-25.webp","51f0a78fa32ece446abc13ada184a2bc"],["img/covers/SoM-33.webp","675e9f72483daeaf814cd1ac38e232c7"],["img/covers/SoM.webp","880dd82ad81eda61b903d28e4bdde4f9"],["img/gmscreen/moon.webp","c18c5f06b696ed2d4c1e5eda8cc204ca"],["img/letter-dark.webp","183504177c2f7e2ccc6b88461af6000d"],["img/letter.webp","43877a1bc57da60ca9a9aafeac9d8e2f"],["img/patreon.webp","4279516591cee28c697c6d2f84d84da1"],["img/logo/Background.svg","c6ec599d06aa5b773e600881ceeb0460"],["img/logo/No%20Background.svg","6d3b2f0a213f7bc5beba9e88f20667f7"],["android-chrome-192x192.png","9c862118ab3423bc2d01ab42f755e07b"],["android-chrome-256x256.png","fad8c4a79079fa54737cb9532e141aa0"],["android-chrome-384x384.png","4f2267d39b6bd3389138f074c45dfe67"],["apple-touch-icon-120x120.png","fe434a800beb3381ad59197e29e68a2a"],["apple-touch-icon-152x152.png","3b23873f540b0c5271201c5f91a0c7ed"],["apple-touch-icon-167x167.png","e19815500c57552e18f8218fbdb5cb72"],["apple-touch-icon-180x180.png","c9ecf9df6e7f7f55974f45f7110d9890"],["apple-touch-icon-360x360.png","b5d0e83a94f7fbea21006b7479d8a898"],["favicon-128x128.png","c7b2e3d1de45c84588bc4711a4b50c6d"],["favicon-144x144.png","6770b376fb68b50e546e60d4a0dae9aa"],["favicon-16x16.png","3dbac8b48aaa087a66f7e3a16af56994"],["favicon-256x256.png","e31f4ad5d254f7faedf87bd8ac8e3d1c"],["favicon-32x32.png","61f449203da4d72d7669df93ef5d1a0c"],["favicon-48x48.png","5144e32c3e7170887ec5c99adeeaaed2"],["favicon-64x64.png","be61a655807353c6f8dcb86ff896c581"],["mstile-144x144.png","9f6d0f9700426867bddb7614da8ece66"],["mstile-150x150.png","ba04e45075fa41f85441a1d070b40710"],["mstile-310x150.png","e37a7cc30a0283d5357fd38901cb6f56"],["mstile-310x310.png","80a2fed08dac45aa2cfc55ddaa5b69fa"],["mstile-70x70.png","798a4847c77967a489d66a40ef1d8801"],["favicon.svg","959b9c72ddadfdf4a067012231a84afb"],["safari-pinned-tab.svg","e84a2ecd6fd15fb32fc3f75293ef467c"]].map(([a,e])=>[`${self.location.origin}/${a}`,e])),Oe=new le;N(({request:a})=>J.has(a.url),Oe);addEventListener("activate",Oe.activate);N(({request:a})=>a.destination==="font",new P({cacheName:"font-cache"}));N(({request:a})=>a.destination==="image",new q({cacheName:"external-image-cache",plugins:[new M({maxAgeSeconds:7*24*60*60,maxEntries:100,purgeOnQuotaError:!0})]}));addEventListener("install",()=>{self.skipWaiting()});addEventListener("activate",a=>{a.waitUntil((async()=>{let e=await caches.keys();for(let r of e)/\d+\.\d+\.\d+/.test(r)&&await caches.delete(r)})())});})(); diff --git a/test/schema-template/entry.json b/test/schema-template/entry.json index f141259aad..a41825f93f 100644 --- a/test/schema-template/entry.json +++ b/test/schema-template/entry.json @@ -393,7 +393,7 @@ "type": "object", "properties": { "type": { - "const": "statblock" + "const": "data" }, "tag": { "type": "string",